summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKrock <mk939@ymail.com>2019-11-09 14:36:07 +0000
committerrubenwardy <rw@rubenwardy.com>2020-01-24 18:34:11 +0000
commit5e983a1d6e48dd17c560134e420dc40c55c8935b (patch)
tree965c9a3554e9d60137188d356de4ac47016d78c3
parent811326e2a71ab4b54f328be3275134c82720a252 (diff)
downloadminetest-5e983a1d6e48dd17c560134e420dc40c55c8935b.tar.gz
minetest-5e983a1d6e48dd17c560134e420dc40c55c8935b.tar.bz2
minetest-5e983a1d6e48dd17c560134e420dc40c55c8935b.zip
Translated using Weblate (Filipino)
Currently translated at 0.1% (1 of 1274 strings)
-rw-r--r--po/fil/minetest.po8
1 files changed, 4 insertions, 4 deletions
diff --git a/po/fil/minetest.po b/po/fil/minetest.po
index 3bf95e45e..5323fa6ed 100644
--- a/po/fil/minetest.po
+++ b/po/fil/minetest.po
@@ -3,8 +3,8 @@ msgstr ""
"Project-Id-Version: Filipino (Minetest)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-10-09 22:02+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"PO-Revision-Date: 2019-11-10 15:04+0000\n"
+"Last-Translator: Krock <mk939@ymail.com>\n"
"Language-Team: Filipino <https://hosted.weblate.org/projects/minetest/"
"minetest/fil/>\n"
"Language: fil\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1 && n != 2 && n != 3 && (n % 10 == 4 "
"|| n % 10 == 6 || n % 10 == 9);\n"
-"X-Generator: Weblate 3.9-dev\n"
+"X-Generator: Weblate 3.10-dev\n"
#: builtin/client/death_formspec.lua src/client/game.cpp
msgid "Respawn"
@@ -858,7 +858,7 @@ msgstr ""
#: src/client/fontengine.cpp
msgid "needs_fallback_font"
-msgstr ""
+msgstr "yes"
#: src/client/game.cpp
msgid ""
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #ifndef EXCEPTIONS_HEADER #define EXCEPTIONS_HEADER #include <exception> #include <string> class BaseException : public std::exception { public: BaseException(const std::string &s) throw(): m_s(s) {} ~BaseException() throw() {} virtual const char * what() const throw() { return m_s.c_str(); } protected: std::string m_s; }; class AlreadyExistsException : public BaseException { public: AlreadyExistsException(const std::string &s): BaseException(s) {} }; class VersionMismatchException : public BaseException { public: VersionMismatchException(const std::string &s): BaseException(s) {} }; class FileNotGoodException : public BaseException { public: FileNotGoodException(const std::string &s): BaseException(s) {} }; class DatabaseException : public BaseException { public: DatabaseException(const std::string &s): BaseException(s) {} }; class SerializationError : public BaseException { public: SerializationError(const std::string &s): BaseException(s) {} }; class PacketError : public BaseException { public: PacketError(const std::string &s): BaseException(s) {} }; class SettingNotFoundException : public BaseException { public: SettingNotFoundException(const std::string &s): BaseException(s) {} }; class InvalidFilenameException : public BaseException { public: InvalidFilenameException(const std::string &s): BaseException(s) {} }; class ItemNotFoundException : public BaseException { public: ItemNotFoundException(const std::string &s): BaseException(s) {} }; class ServerError : public BaseException { public: ServerError(const std::string &s): BaseException(s) {} }; class ClientStateError : public BaseException { public: ClientStateError(const std::string &s): BaseException(s) {} }; class PrngException : public BaseException { public: PrngException(const std::string &s): BaseException(s) {} }; class ModError : public BaseException { public: ModError(const std::string &s): BaseException(s) {} }; /* Some "old-style" interrupts: */ class InvalidNoiseParamsException : public BaseException { public: InvalidNoiseParamsException(): BaseException("One or more noise parameters were invalid or require " "too much memory") {} InvalidNoiseParamsException(const std::string &s): BaseException(s) {} }; class InvalidPositionException : public BaseException { public: InvalidPositionException(): BaseException("Somebody tried to get/set something in a nonexistent position.") {} InvalidPositionException(const std::string &s): BaseException(s) {} }; #endif