Translation: Add support for a few missing items
This commit is contained in:
parent
d45d53e455
commit
cf9e440019
21 changed files with 156 additions and 1267 deletions
|
@ -28,32 +28,31 @@ mcl_stairs.register_slab("stonebrickcracked", "mcl_core:stonebrickcracked",
|
|||
S("Cracked Stone Brick Slab"),
|
||||
mcl_sounds.node_sound_stone_defaults(), 2, S("Double Cracked Stone Brick Slab"), "mcl_core:stonebrickcracked")
|
||||
|
||||
-- TODO: Localize
|
||||
local block = {}
|
||||
block.dyes = {
|
||||
{"white", "White", "white"},
|
||||
{"grey", "Grey", "dark_grey"},
|
||||
{"silver", "Light Grey", "grey"},
|
||||
{"black", "Black", "black"},
|
||||
{"red", "Red", "red"},
|
||||
{"yellow", "Yellow", "yellow"},
|
||||
{"green", "Green", "dark_green"},
|
||||
{"cyan", "Cyan", "cyan"},
|
||||
{"blue", "Blue", "blue"},
|
||||
{"magenta", "Magenta", "magenta"},
|
||||
{"orange", "Orange", "orange"},
|
||||
{"purple", "Purple", "violet"},
|
||||
{"brown", "Brown", "brown"},
|
||||
{"pink", "Pink", "pink"},
|
||||
{"lime", "Lime", "green"},
|
||||
{"light_blue", "Light Blue", "lightblue"},
|
||||
{"white", S("White Concrete Stairs"), S("White Concrete Slab"), S("Double White Concrete Slab"), "white"},
|
||||
{"grey", S("Grey Concrete Stairs"), S("Grey Concrete Slab"), S("Double Grey Concrete Slab"), "dark_grey"},
|
||||
{"silver", S("Light Grey Concrete Stairs"), S("Light Grey Concrete Slab"), S("Double Light Grey Concrete Slab"), "grey"},
|
||||
{"black", S("Black Concrete Stairs"), S("Black Concrete Slab"), S("Double Black Concrete Slab"), "black"},
|
||||
{"red", S("Red Concrete Stairs"), S("Red Concrete Slab"), S("Double Red Concrete Slab"), "red"},
|
||||
{"yellow", S("Yellow Concrete Stairs"), S("Yellow Concrete Slab"), S("Double Yellow Concrete Slab"), "yellow"},
|
||||
{"green", S("Green Concrete Stairs"), S("Green Concrete Slab"), S("Double Green Concrete Slab"), "dark_green"},
|
||||
{"cyan", S("Cyan Concrete Stairs"), S("Cyan Concrete Slab"), S("Double Cyan Concrete Slab"), "cyan"},
|
||||
{"blue", S("Blue Concrete Stairs"), S("Blue Concrete Slab"), S("Double Blue Concrete Slab"), "blue"},
|
||||
{"magenta", S("Magenta Concrete Stairs"), S("Magenta Concrete Slab"), S("Double Magenta Concrete Slab"), "magenta"},
|
||||
{"orange", S("Orange Concrete Stairs"), S("Orange Concrete Slab"), S("Double Orange Concrete Slab"), "orange"},
|
||||
{"purple", S("Purple Concrete Stairs"), S("Purple Concrete Slab"), S("Double Purple Concrete Slab"), "violet"},
|
||||
{"brown", S("Brown Concrete Stairs"), S("Brown Concrete Slab"), S("Double Brown Concrete Slab"), "brown"},
|
||||
{"pink", S("Pink Concrete Stairs"), S("Pink Concrete Slab"), S("Double Pink Concrete Slab"), "pink"},
|
||||
{"lime", S("Lime Concrete Stairs"), S("Lime Concrete Slab"), S("Double Lime Concrete Slab"), "green"},
|
||||
{"light_blue", S("Light Blue Concrete Stairs"), S("Light Blue Concrete Slab"), S("Double Light Blue Concrete Slab"), "lightblue"},
|
||||
}
|
||||
|
||||
for i=1, #block.dyes do
|
||||
local c = block.dyes[i][1]
|
||||
mcl_stairs.register_stair_and_slab_simple("concrete_"..c, "mcl_colorblocks:concrete_"..c,
|
||||
block.dyes[i][2].." Concrete Stairs",
|
||||
block.dyes[i][2].." Concrete Slab",
|
||||
"Double "..block.dyes[i][2].." Concrete Slab")
|
||||
block.dyes[i][2],
|
||||
block.dyes[i][3],
|
||||
block.dyes[i][4])
|
||||
end
|
||||
|
||||
|
|
|
@ -29,3 +29,51 @@ Stairs of Iron=Eisentreppe
|
|||
Cracked Stone Brick Stairs=Rissige Steinziegeltreppe
|
||||
Cracked Stone Brick Slab=Rissige Steinziegelplatte
|
||||
Double Cracked Stone Brick Slab=Doppelte rissige Steinziegelplatte
|
||||
White Concrete Stairs=Weiße Betontreppe
|
||||
White Concrete Slab=Weiße Betonplatte
|
||||
Double White Concrete Slab=Doppelte weiße Betonplatte
|
||||
Grey Concrete Stairs=Graue Betontreppe
|
||||
Grey Concrete Slab=Graue Betonplatte
|
||||
Double Grey Concrete Slab=Doppelte graue Betonplatte
|
||||
Light Grey Concrete Stairs=Hellgraue Betontreppe
|
||||
Light Grey Concrete Slab=Hellgraue Betonplatte
|
||||
Double Light Grey Concrete Slab=Doppelte hellgraue Betonplatte
|
||||
Black Concrete Stairs=Schwarze Betontreppe
|
||||
Black Concrete Slab=Schwarze Betonplatte
|
||||
Double Black Concrete Slab=Doppelte schwarze Betonplatte
|
||||
Red Concrete Stairs=Rote Betontreppe
|
||||
Red Concrete Slab=Rote Betonplatte
|
||||
Double Red Concrete Slab=Doppelte rote Betonplatte
|
||||
Yellow Concrete Stairs=Gelbe Betontreppe
|
||||
Yellow Concrete Slab=Gelbe Betonplatte
|
||||
Double Yellow Concrete Slab=Doppelte gelbe Betonplatte
|
||||
Green Concrete Stairs=Grüne Betontreppe
|
||||
Green Concrete Slab=Grüne Betonplatte
|
||||
Double Green Concrete Slab=Doppelte grüne Betonplatte
|
||||
Cyan Concrete Stairs=Türkise Betontreppe
|
||||
Cyan Concrete Slab=Türkise Betonplatte
|
||||
Double Cyan Concrete Slab=Doppelte Türkise Betonplatte
|
||||
Blue Concrete Stairs=Blaue Betontreppe
|
||||
Blue Concrete Slab=Blaue Betonplatte
|
||||
Double Blue Concrete Slab=Doppelte blaue Betonplatte
|
||||
Magenta Concrete Stairs=Magenta Betontreppe
|
||||
Magenta Concrete Slab=Magenta Betonplatte
|
||||
Double Magenta Concrete Slab=Doppelte magenta Betonplatte
|
||||
Orange Concrete Stairs=Orange Betontreppe
|
||||
Orange Concrete Slab=Orange Betonplatte
|
||||
Double Orange Concrete Slab=Doppelte orange Betonplatte
|
||||
Purple Concrete Stairs=Violette Betontreppe
|
||||
Purple Concrete Slab=Violette Betonplatte
|
||||
Double Purple Concrete Slab=Doppelte violette Betonplatte
|
||||
Brown Concrete Stairs=Braune Betontreppe
|
||||
Brown Concrete Slab=Braune Betonplatte
|
||||
Double Brown Concrete Slab=Doppelte braune Betonplatte
|
||||
Pink Concrete Stairs=Rosa Betontreppe
|
||||
Pink Concrete Slab=Rosa Betonplatte
|
||||
Double Pink Concrete Slab=Doppelte rosa Betonplatte
|
||||
Lime Concrete Stairs=Lindgrüne Betontreppe
|
||||
Lime Concrete Slab=Lindgrüne Betonplatte
|
||||
Double Lime Concrete Slab=Doppelte Betonplatte
|
||||
Light Blue Concrete Stairs=Hellblaue Betontreppe
|
||||
Light Blue Concrete Slab=Hellblaue Betonplatte
|
||||
Double Light Blue Concrete Slab=Doppelte hellblaue Betonplatte
|
||||
|
|
|
@ -29,3 +29,51 @@ Stairs of Iron=
|
|||
Cracked Stone Brick Stairs=
|
||||
Cracked Stone Brick Slab=
|
||||
Double Cracked Stone Brick Slab=
|
||||
White Concrete Stairs=
|
||||
White Concrete Slab=
|
||||
Double White Concrete Slab=
|
||||
Grey Concrete Stairs=
|
||||
Grey Concrete Slab=
|
||||
Double Grey Concrete Slab=
|
||||
Light Grey Concrete Stairs=
|
||||
Light Grey Concrete Slab=
|
||||
Double Light Grey Concrete Slab=
|
||||
Black Concrete Stairs=
|
||||
Black Concrete Slab=
|
||||
Double Black Concrete Slab=
|
||||
Red Concrete Stairs=
|
||||
Red Concrete Slab=
|
||||
Double Red Concrete Slab=
|
||||
Yellow Concrete Stairs=
|
||||
Yellow Concrete Slab=
|
||||
Double Yellow Concrete Slab=
|
||||
Green Concrete Stairs=
|
||||
Green Concrete Slab=
|
||||
Double Green Concrete Slab=
|
||||
Cyan Concrete Stairs=
|
||||
Cyan Concrete Slab=
|
||||
Double Cyan Concrete Slab=
|
||||
Blue Concrete Stairs=
|
||||
Blue Concrete Slab=
|
||||
Double Blue Concrete Slab=
|
||||
Magenta Concrete Stairs=
|
||||
Magenta Concrete Slab=
|
||||
Double Magenta Concrete Slab=
|
||||
Orange Concrete Stairs=
|
||||
Orange Concrete Slab=
|
||||
Double Orange Concrete Slab=
|
||||
Purple Concrete Stairs=
|
||||
Purple Concrete Slab=
|
||||
Double Purple Concrete Slab=
|
||||
Brown Concrete Stairs=
|
||||
Brown Concrete Slab=
|
||||
Double Brown Concrete Slab=
|
||||
Pink Concrete Stairs=
|
||||
Pink Concrete Slab=
|
||||
Double Pink Concrete Slab=
|
||||
Lime Concrete Stairs=
|
||||
Lime Concrete Slab=
|
||||
Double Lime Concrete Slab=
|
||||
Light Blue Concrete Stairs=
|
||||
Light Blue Concrete Slab=
|
||||
Double Light Blue Concrete Slab=
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue