aboutsummaryrefslogtreecommitdiff
path: root/po/da/minetest.po
Commit message (Expand)AuthorAge
* Revert "Update Russian translation"Kahrl2014-12-13
* Update po filesShadowNinja2014-12-12
* Run updatepo.shPilzAdam2013-11-23
* Run updatepo.shIlya Zhuravlev2013-09-08
* Run util/updatepo.shPilzAdam2013-08-25
* Fix i18n of some strings.arsdragonfly2013-07-02
* Update po filesPilzAdam2013-05-13
* Update po filesPilzAdam2013-03-30
* Translated using Weblate (Danish)Rune Biskopstö Christensen2013-02-28
* Translated using Weblate (Danish)Pilz Adam2013-02-08
* Translate key functions in key change menuPilzAdam2013-01-30
* Update translation filesPerttu Ahola2013-01-23
* update op PO filesConstantin Wenger2011-08-05
* added danish translation made by Frederik HelthConstantin Wenger2011-08-05
>default; KeyPress(const char *name); KeyPress(const irr::SEvent::SKeyInput &in, bool prefer_character = false); bool operator==(const KeyPress &o) const { return (Char > 0 && Char == o.Char) || (valid_kcode(Key) && Key == o.Key); } const char *sym() const; const char *name() const; protected: static bool valid_kcode(irr::EKEY_CODE k) { return k > 0 && k < irr::KEY_KEY_CODES_COUNT; } irr::EKEY_CODE Key = irr::KEY_KEY_CODES_COUNT; wchar_t Char = L'\0'; std::string m_name = ""; }; extern const KeyPress EscapeKey; extern const KeyPress CancelKey; // Key configuration getter KeyPress getKeySetting(const char *settingname); // Clear fast lookup cache void clearKeyCache(); irr::EKEY_CODE keyname_to_keycode(const char *name);