From e6afb646aa217452693d9a0743db47d235284189 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Thu, 7 Mar 2019 19:25:05 +0100 Subject: [PATCH] Use new translation system --- depends.txt | 1 - init.lua | 7 +------ locale/de.txt | 3 --- locale/doc_encyclopedia.de.tr | 4 ++++ 4 files changed, 5 insertions(+), 10 deletions(-) delete mode 100644 locale/de.txt create mode 100644 locale/doc_encyclopedia.de.tr diff --git a/depends.txt b/depends.txt index c8f3ef6..f574c09 100644 --- a/depends.txt +++ b/depends.txt @@ -1,3 +1,2 @@ doc -intllib? default? diff --git a/init.lua b/init.lua index dc6c705..f5cf09d 100644 --- a/init.lua +++ b/init.lua @@ -1,9 +1,4 @@ -local S -if minetest.get_modpath("intllib") then - S = intllib.Getter(minetest.get_current_modname()) -else - S = function(s) return s end -end +local S = minetest.get_translator("doc_encyclopedia") minetest.register_craftitem("doc_encyclopedia:encyclopedia", { description = S("Encyclopedia"), diff --git a/locale/de.txt b/locale/de.txt deleted file mode 100644 index aaef350..0000000 --- a/locale/de.txt +++ /dev/null @@ -1,3 +0,0 @@ -Encyclopedia = Enzyklopädie -Allows you to access the help. = Damit kann man auf die Hilfe zuzugreifen. -Wield it, then leftclick to access the help. = Halten Sie sie in der Hand und linksklicken Sie, um auf die Hilfe zuzugreifen. diff --git a/locale/doc_encyclopedia.de.tr b/locale/doc_encyclopedia.de.tr new file mode 100644 index 0000000..2ea482c --- /dev/null +++ b/locale/doc_encyclopedia.de.tr @@ -0,0 +1,4 @@ +# textdomain:doc_encyclopedia +Encyclopedia=Enzyklopädie +Allows you to access the help.=Damit kann man auf die Hilfe zuzugreifen. +Wield it, then leftclick to access the help.=Halten Sie sie in der Hand und linksklicken Sie, um auf die Hilfe zuzugreifen. -- 2.11.4.GIT