Skip to content
Snippets Groups Projects
Commit 5212a756 authored by Carlos Barraza's avatar Carlos Barraza Committed by Diego Martínez
Browse files

Add intllib support and spanish translation.

parent eaa716df
No related branches found
No related tags found
No related merge requests found
local S = biome_lib.intllib
local S
if minetest.get_modpath("intllib") then
S = intllib.Getter()
else
S = function(s) return s end
end
-- Basket
......@@ -71,7 +76,7 @@ for i, berry in ipairs(bushes_classic.bushes) do
else
minetest.register_craftitem(":bushes:"..berry, {
description = desc,
description = S(desc),
inventory_image = "bushes_"..berry..".png",
groups = {berry = 1, [berry] = 1},
on_use = minetest.item_eat(1),
......
......@@ -3,7 +3,12 @@
--
-- License: WTFPL
local S = biome_lib.intllib
local S
if minetest.get_modpath("intllib") then
S = intllib.Getter()
else
S = function(s) return s end
end
bushes_classic = {}
......@@ -17,7 +22,7 @@ bushes_classic.bushes = {
}
bushes_classic.bushes_descriptions = {
"Strawberry",
"Strawberry",
"Blackberry",
"Blueberry",
"Raspberry",
......
# Traducido por Carlos Barraza
Strawberry = Frutilla
Blackberry = Mora
Blueberry = Arándano
Raspberry = Frambuesa
Gooseberry = Grosella
Mixed Berry = Mezcla de Baya
Basket with Strawberry Pies = Cesta con Pasteles de Frutilla
Basket with Blackberry Pies = Cesta con Pasteles de Mora
Basket with Blueberry Pies = Cesta con Pasteles de Arándano
Basket with Raspberry Pies = Cesta con Pasteles de Frambuesa
Basket with Gooseberry Pies = Cesta con Pasteles de Grosella
Basket with Mixed Berry Pies = Cesta con Pasteles de Mezcla de Baya
currently fruitless = Actualmente infructuoso
Strawberry Bush = Arbusto de Frutilla
Blackberry Bush = Arbusto de Mora
Blueberry Bush = Arbusto de Arándano
Raspberry Bush = Arbusto de Frambuesa
Gooseberry Bush = Arbusto de Grosella
Mixed Berry Bush = Arbusto de Mezcla de Baya
Basket = Cesta
Sugar = Azúcar
Raw Strawberry pie = Pastel de Frutilla Crudo
Raw Blackberry pie = Pastel de Mora Crudo
Raw Blueberry pie = Pastel de Arándano Crudo
Raw Raspberry pie = Pastel de Frambuesa Crudo
Raw Gooseberry pie = Pastel de Grosella Crudo
Raw Mixed Berry pie = Pastel de Mezcla de Bayas Cruda
Cooked Strawberry pie = Pastel de Frutilla Cocido
Cooked Blackberry pie = Pastel de Mora Cocido
Cooked Blueberry pie = Pastel de Arándano Cocido
Cooked Raspberry pie = Pastel de Frambuesa Cocido
Cooked Gooseberry pie = Pastel de Grosella Cocido
Cooked Mixed Berry pie = Pastel de Mezcla de Bayas Cocido
Slice of Strawberry pie = Rebanada de Pastel de Frutilla
Slice of Blackberry pie = Rebanada de Pastel de Mora
Slice of Blueberry pie = Rebanada de Pastel de Arándano
Slice of Raspberry pie = Rebanada de Pastel de Frambuesa
Slice of Gooseberry pie = Rebanada de Pastel de Grosella
Slice of Mixed Berry pie = Rebanada de Pastel de Mezcla de Bayas
[Bushes] Loaded. = [Arbustos] Cargado.
local S = biome_lib.intllib
local S
if minetest.get_modpath("intllib") then
S = intllib.Getter()
else
S = function(s) return s end
end
plantlife_bushes = {}
......
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
......
# 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.
-- This file supplies poison ivy for the plantlife modpack
-- Last revision: 2013-01-24
local S = biome_lib.intllib
local S
if minetest.get_modpath("intllib") then
S = intllib.Getter()
else
S = function(s) return s end
end
local SPAWN_DELAY = 1000
local SPAWN_CHANCE = 200
......
# Traducido por Carlos Barraza
Poison ivy (seedling) = Hiedra venenosa (retoño)
Poison ivy (sproutling) = Hiedra venenosa (brotes)
Poison ivy (climbing plant) = Hiedra venenosa (planta trepadora)
[Poison Ivy] Loaded. = [Hiedra venenosa] Cargado.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment