aboutsummaryrefslogtreecommitdiff
path: root/po/sw
Commit message (Collapse)AuthorAge
* Update translation filesupdatepo.sh2020-04-03
|
* Update translation sourcesrubenwardy2020-01-24
|
* Update translation stringsupdatepo.sh2019-10-12
|
* Update from Weblate (hacky)Translators2019-10-12
|
* Update translation stringsupdatepo.sh2019-09-09
|
* Run updatepo.shTranslations2019-02-24
|
* Update minetest.conf.example, settings strings and locale files (#8230)Wuzzy2019-02-14
|
* Run updatepo.shTranslation2019-02-14
|
* Update translationsTranslations2019-02-14
|
* Cleanup translation filesLoïc Blot2019-01-28
| | | | These were broken on the previous commits
* Update translationsTranslations2019-01-27
|
* Run updatepo.shTranslations2019-01-06
|
* Update translations from WeblateTranslations2019-01-06
|
* Update minetest.conf.example and run updatepo.sh (#7947)Update Script2018-12-09
|
* Add translation of LANG_CODE in all languagesEkdohibs2017-08-24
|
* Fix updatepo.sh and run it.Ekdohibs2017-08-24
| | | | It was broken due to the presence of "µ" utf-8 characters in builtin/profiler/reporter.lua.
* Run updatepo.shLoic Blot2017-05-21
|
* Footsteps without view bobbing (#5645)Louis Pearson2017-04-25
| | | | | | | | | | | | * Remove redundant view_bobbing setting Also fixes bug where disabling view_bobbing disables footstep sounds. * Removes redundant view_bobbing setting Setting view_bobbing amount to 0 is now the only way to turn view_bobbing on and off. Also fixed a bug where footstep sounds would not play when view_bobbing was disabled.
* Correct Swahili translations (#4939)sfan52016-12-21
|
* Fix build with gettext enabledest312016-12-14
|
* Run updatepo.shest312016-12-14
|
* Translated using Weblate (Swahili)Eidy2016-12-14
| | | | | | Currently translated at 99.8% (917 of 918 strings) This is a merger of 3 commits.
* Added translation using Weblate (Swahili)Eidy2016-12-14
="hl opt">()) { return false; } str = resolveString(it->second, recursion); return true; } /** * Sets var to name key in the metadata storage * * @param name * @param var * @return true if key-value pair is created or changed */ bool Metadata::setString(const std::string &name, const std::string &var) { if (var.empty()) { m_stringvars.erase(name); return true; } StringMap::iterator it = m_stringvars.find(name); if (it != m_stringvars.end() && it->second == var) { return false; } m_stringvars[name] = var; m_modified = true; return true; } const std::string &Metadata::resolveString(const std::string &str, u16 recursion) const { if (recursion <= 1 && str.substr(0, 2) == "${" && str[str.length() - 1] == '}') { return getString(str.substr(2, str.length() - 3), recursion + 1); } return str; }