diff options
Diffstat (limited to 'vines/functions.lua')
-rw-r--r-- | vines/functions.lua | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/vines/functions.lua b/vines/functions.lua index a2f1566..2d2f529 100644 --- a/vines/functions.lua +++ b/vines/functions.lua @@ -1,3 +1,6 @@ +-- support for i18n +local S = plantlife_i18n.gettext + vines.register_vine = function( name, defs, biome ) local groups = { vines=1, snappy=3, flammable=2 } @@ -61,7 +64,7 @@ vines.register_vine = function( name, defs, biome ) }) minetest.register_node( vine_name_middle, { - description = "Matured "..defs.description, + description = S("Matured").." "..defs.description, walkable = false, climbable = true, drop = "", |