diff options
Diffstat (limited to 'flowers_plus')
-rw-r--r-- | flowers_plus/init.lua | 7 | ||||
-rw-r--r-- | flowers_plus/locale/es.txt | 13 |
2 files changed, 19 insertions, 1 deletions
diff --git a/flowers_plus/init.lua b/flowers_plus/init.lua index a80778a..06b221c 100644 --- a/flowers_plus/init.lua +++ b/flowers_plus/init.lua @@ -1,4 +1,9 @@ -local S = biome_lib.intllib +local S +if minetest.get_modpath("intllib") then + S = intllib.Getter() +else + S = function(s) return s end +end -- This file supplies a few additional plants and some related crafts -- for the plantlife modpack. Last revision: 2013-04-24 diff --git a/flowers_plus/locale/es.txt b/flowers_plus/locale/es.txt new file mode 100644 index 0000000..3496a60 --- /dev/null +++ b/flowers_plus/locale/es.txt @@ -0,0 +1,13 @@ +# Traducido por Carlos Barraza + +Waterlily = Lirio de agua +Seaweed = Algas marinas +Potted Rose = Rosa en maceta +Potted Tulip = Tulipán en maceta +Potted Yellow Dandelion = Diente de león amarillo en maceta +Potted White Dandelion = Diente de león blanco en maceta +Potted Blue Geranium = Geranio azul en maceta +Potted Viola = Viola en maceta +Flower Pot = Florero + +[Flowers] Loaded. = [Flores] Cargado. |