mirror of
https://github.com/luanti-org/minetest_game.git
synced 2025-06-07 06:06:10 -04:00
Translation
This commit is contained in:
parent
a4d056e493
commit
f3becdac8c
45 changed files with 698 additions and 261 deletions
|
@ -2,6 +2,15 @@
|
|||
|
||||
-- Other mods can use these for looping through available colors
|
||||
dye = {}
|
||||
|
||||
local S
|
||||
if minetest.get_modpath("intllib") then
|
||||
S = intllib.Getter()
|
||||
else
|
||||
S = function(s) return s end
|
||||
end
|
||||
dye.intllib = S
|
||||
|
||||
dye.basecolors = {"white", "grey", "black", "red", "yellow", "green", "cyan", "blue", "magenta"}
|
||||
dye.excolors = {"white", "lightgrey", "grey", "darkgrey", "black", "red", "orange", "yellow", "lime", "green", "aqua", "cyan", "sky_blue", "blue", "violet", "magenta", "red_violet"}
|
||||
|
||||
|
|
16
mods/dye/locale/es.txt
Executable file
16
mods/dye/locale/es.txt
Executable file
|
@ -0,0 +1,16 @@
|
|||
#init.lua
|
||||
White dye = Tinte blanco
|
||||
Grey dye = Tinte gris
|
||||
Dark grey dye = Tinte gris oscuro
|
||||
Black dye = Tinte negro
|
||||
Violet dye = Tinte violeta
|
||||
Blue dye = Tinte azúl
|
||||
Cyan dye = Tinte cyan
|
||||
Dark green dye = Tinte verde oscuro
|
||||
Green dye = Tinte verde
|
||||
Yellow dye = Tinte amarillo
|
||||
Brown dye = Tinte marrón
|
||||
Orange dye = Tinte anaranjado
|
||||
Red dye = Tinte rojo
|
||||
Magenta dye = Tinte magenta
|
||||
Pink dye = Tinte rosa
|
Loading…
Add table
Add a link
Reference in a new issue