aboutsummaryrefslogtreecommitdiff
path: root/po/pt/minetest.po
Commit message (Collapse)AuthorAge
* 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
|
* Translated using Weblate (Portuguese)Mário2017-05-04
| | | | Currently translated at 66.9% (615 of 918 strings)
* 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.
* Run updatepo.shest312016-12-14
|
* Translated using Weblate (Portuguese)João Rodrigues2016-12-14
| | | | | | Currently translated at 66.7% (613 of 918 strings) There is no need to specify that a mod is an extra.
* Run updatepo.shest312016-08-30
|
* Translated using Weblate (Portuguese)Bruno Borges2016-08-30
| | | | Currently translated at 64.9% (581 of 895 strings)
* Run updatepo.shest312016-07-12
|
* Run updatepo.shest312016-05-05
|
* Translated using Weblate (Portuguese)Fernando Reis2016-05-01
| | | | | | Currently translated at 67.5% (584 of 865 strings) This is a merger of 5 commits.
* Translated using Weblate (Portuguese)Fernando Reis2016-03-25
| | | | | | Currently translated at 34.5% (299 of 865 strings) This is a merger of 2 commits.
* Update po files, minetest.conf.example and settings_translation_file.cppest312016-02-27
|
* Translated using Weblate (Portuguese)Ian giestas pauli2016-01-25
| | | | Currently translated at 23.6% (186 of 787 strings)
* Run util/updatepo.shest312015-11-08
|
* Run updatepo.shest312015-10-24
|
* Run updatepo.shest312015-09-12
| | | | | | After this, it should hopefully not record line numbers anymore, so the diffs of updatepo.sh runs are smaller. Well, this is theory, lets see how it will turn out to be in practice.
* Run updatepo.shest312015-07-17
|
* Revert "Update Russian translation"Kahrl2014-12-13
| | | | | | | | This reverts commit e4e4324a30d6bcac5cc06c74e955e4941b14bd38. Conflicts: po/minetest.pot po/*/minetest.po
* Update po filesShadowNinja2014-12-12
|
* Translated using Weblate (Portuguese)João Farias2014-02-16
|
* Run updatepo.shPilzAdam2013-11-23
|
* Run updatepo.shIlya Zhuravlev2013-09-08
|
* Translated using Weblate (Portuguese)Leonardo Costa2013-09-07
|
* Run util/updatepo.shPilzAdam2013-08-25
|
* Fix i18n of some strings.arsdragonfly2013-07-02
|
* Translated using Weblate (Portuguese)v c2013-06-01
|
* Translated using Weblate (Portuguese)manuel joaquim2013-05-30
|
* Translated using Weblate (Portuguese)manuel duarte2013-05-29
|
* Translated using Weblate (Portuguese)manuel duarte2013-05-29
|
* Update po filesPilzAdam2013-05-13
|
* Translated using Weblate (Portuguese)Francizca Rodriguez2013-04-18
|
* Translated using Weblate (Portuguese)Dêivan Ortiz Munhoz2013-04-03
|
* Update po filesPilzAdam2013-03-30
|
* Translated using Weblate (Portuguese)Francizca Rodriguez2013-02-28
|
* Translated using Weblate (Portuguese)Pilz Adam2013-02-10
|
* Translated using Weblate (Portuguese)Francizca Rodriguez2013-02-08
|
* Translated using Weblate (Portuguese)Francizca Rodriguez2013-02-07
|
* Translated using Weblate (Portuguese)Pilz Adam2013-02-07
|
* Translated using Weblate (Portuguese)Francizca Rodriguez2013-02-07
|
* Translated using Weblate (Portuguese)Pilz Adam2013-02-07
|
* Translated using Weblate (Portuguese)Francizca Rodriguez2013-02-07
|
* Translated using Weblate (Portuguese)Pilz Adam2013-02-07
|
* Translated using Weblate (Portuguese)Francizca Rodriguez2013-02-07
|
* Add Chinese Simplified & Portuguese.Ilya Zhuravlev2013-02-02
opt">) { std::vector<std::wstring> parts; std::wstringstream sstr(str); std::wstring part; while(std::getline(sstr, part, delimiter)) parts.push_back(part); return parts; } inline std::string lowercase(const std::string &s) { std::string s2; for(size_t i=0; i<s.size(); i++) { char c = s[i]; if(c >= 'A' && c <= 'Z') c -= 'A' - 'a'; s2 += c; } return s2; } inline bool is_yes(const std::string &s) { std::string s2 = lowercase(trim(s)); if(s2 == "y" || s2 == "yes" || s2 == "true" || s2 == "1") return true; return false; } inline s32 mystoi(const std::string &s, s32 min, s32 max) { s32 i = atoi(s.c_str()); if(i < min) i = min; if(i > max) i = max; return i; } // MSVC2010 includes it's own versions of these //#if !defined(_MSC_VER) || _MSC_VER < 1600 inline s32 mystoi(const std::string &s) { return atoi(s.c_str()); } inline s32 mystoi(const std::wstring &s) { return atoi(wide_to_narrow(s).c_str()); } inline float mystof(const std::string &s) { // This crap causes a segfault in certain cases on MinGW /*float f; std::istringstream ss(s); ss>>f; return f;*/ // This works in that case return atof(s.c_str()); } //#endif #define stoi mystoi #define stof mystof inline std::string itos(s32 i) { std::ostringstream o; o<<i; return o.str(); } inline std::string ftos(float f) { std::ostringstream o; o<<f; return o.str(); } inline void str_replace(std::string & str, std::string const & pattern, std::string const & replacement) { std::string::size_type start = str.find(pattern, 0); while(start != str.npos) { str.replace(start, pattern.size(), replacement); start = str.find(pattern, start+replacement.size()); } } inline void str_replace_char(std::string & str, char from, char to) { for(unsigned int i=0; i<str.size(); i++) { if(str[i] == from) str[i] = to; } } /* Checks if a string contains only supplied characters */ inline bool string_allowed(const std::string &s, const std::string &allowed_chars) { for(u32 i=0; i<s.size(); i++) { bool confirmed = false; for(u32 j=0; j<allowed_chars.size(); j++) { if(s[i] == allowed_chars[j]) { confirmed = true; break; } } if(confirmed == false) return false; } return true; } /* Forcefully wraps string into rows using \n (no word wrap, used for showing paths in gui) */ inline std::string wrap_rows(const std::string &from, u32 rowlen) { std::string to; for(u32 i=0; i<from.size(); i++) { if(i != 0 && i%rowlen == 0) to += '\n'; to += from[i]; } return to; } std::string translatePassword(std::string playername, std::wstring password); #endif