aboutsummaryrefslogtreecommitdiff
path: root/po/de
Commit message (Expand)AuthorAge
* Translated using Weblate (German)Wuzzy2016-12-22
* Run updatepo.shest312016-12-14
* Translated using Weblate (German)Wuzzy2016-12-14
* Translated using Weblate (German)Jan Sbrz2016-12-14
* Run updatepo.shest312016-08-30
* Translated using Weblate (German)bse6662016-08-30
* Run updatepo.shest312016-07-12
* Translated using Weblate (German)Wuzzy2016-05-30
* Translated using Weblate (German)Wuzzy2016-05-10
* Run updatepo.shest312016-05-05
* Translated using Weblate (German)Wuzzy2016-05-01
* Revert "Translated using Weblate (German)"est312016-03-27
* Translated using Weblate (German)Wuzzy2016-03-25
* Update po files, minetest.conf.example and settings_translation_file.cppest312016-02-27
* Translated using Weblate (German)Wuzzy2015-11-15
* Translated using Weblate (German)Wuzzy2015-11-15
* Translated using Weblate (German)Wuzzy2015-11-15
* Run util/updatepo.shest312015-11-08
* Some german translation improvementsest312015-11-08
* Translated using Weblate (German)hybriddog2015-11-08
* Translated using Weblate (German)Wuzzy2015-11-08
* Translated using Weblate (German)Jan Zabel2015-11-08
* Translated using Weblate (German)PilzAdam2015-11-08
* Translated using Weblate (German)pilino12342015-11-08
* Translated using Weblate (German)PilzAdam2015-11-08
* Translated using Weblate (German)PilzAdam2015-11-08
* Translated using Weblate (German)PilzAdam2015-11-08
* Translated using Weblate (German)Wuzzy2015-11-08
* Translated using Weblate (German)Wuzzy2015-11-08
* Translated using Weblate (German)Wuzzy2015-11-08
* Translated using Weblate (German)PilzAdam2015-11-08
* Translated using Weblate (German)PilzAdam2015-11-08
* Translated using Weblate (German)PilzAdam2015-11-08
* Translated using Weblate (German)pilzadam2015-11-08
* Run updatepo.shest312015-10-24
* Translated using Weblate (German)est312015-10-22
* Translated using Weblate (German)pilino12342015-10-05
* Translated using Weblate (German)Luca Gronmaier2015-10-05
* Translated using Weblate (German)pilino12342015-10-05
* Translated using Weblate (German)Luca Gronmaier2015-10-05
* Translated using Weblate (German)pilino12342015-10-05
* Translated using Weblate (German)Tim2015-10-05
* Translated using Weblate (German)pilino12342015-10-05
* Translated using Weblate (German)Tim2015-10-05
* Translated using Weblate (German)pilino12342015-10-05
* Run updatepo.shest312015-09-12
* Translated using Weblate (German)Tim2015-09-12
* Translated using Weblate (German)Wuzzy2015-09-12
* Translated using Weblate (German)hahoyer2015-09-12
* Translated using Weblate (German)sfan52015-08-09
color; } bool getBool(Property prop, bool def) const { const auto &val = properties[prop]; if (val.empty()) { return def; } return is_yes(val); } inline bool isNotDefault(Property prop) const { return !properties[prop].empty(); } inline bool hasProperty(Property prop) const { return property_set[prop]; } StyleSpec &operator|=(const StyleSpec &other) { for (size_t i = 0; i < NUM_PROPERTIES; i++) { auto prop = (Property)i; if (other.hasProperty(prop)) { set(prop, other.get(prop, "")); } } return *this; } StyleSpec operator|(const StyleSpec &other) const { StyleSpec newspec = *this; newspec |= other; return newspec; } };