forked from minetest-mods/technic
Add german translations for all mods
This commit is contained in:
@ -2,3 +2,5 @@ default
|
||||
moreblocks
|
||||
technic_worldgen
|
||||
concrete
|
||||
intllib?
|
||||
|
||||
|
@ -1,11 +1,17 @@
|
||||
-- Minetest 0.4.6 mod: extranodes
|
||||
-- namespace: technic
|
||||
|
||||
-- Boilerplate to support localized strings if intllib mod is installed.
|
||||
local S
|
||||
if intllib then
|
||||
S = intllib.Getter()
|
||||
else
|
||||
S = function(s) return s end
|
||||
end
|
||||
--register stairslike nodes
|
||||
register_stair_slab_panel_micro("technic", "marble", "technic:marble",
|
||||
{cracky=2, not_in_creative_inventory=1},
|
||||
{"technic_marble.png"},
|
||||
"Marble",
|
||||
S("Marble"),
|
||||
"marble",
|
||||
"facedir",
|
||||
0)
|
||||
@ -13,7 +19,7 @@ register_stair_slab_panel_micro("technic", "marble", "technic:marble",
|
||||
register_stair_slab_panel_micro("technic", "marble_bricks", "technic:marble_bricks",
|
||||
{cracky=2, not_in_creative_inventory=1},
|
||||
{"technic_marble_bricks.png"},
|
||||
"Marble Bricks",
|
||||
S("Marble Bricks"),
|
||||
"marble_bricks",
|
||||
"facedir",
|
||||
0)
|
||||
@ -21,7 +27,7 @@ register_stair_slab_panel_micro("technic", "marble_bricks", "technic:marble_bric
|
||||
register_stair_slab_panel_micro("technic", "granite", "technic:granite",
|
||||
{cracky=3, not_in_creative_inventory=1},
|
||||
{"technic_granite.png"},
|
||||
"Granite",
|
||||
S("Granite"),
|
||||
"granite",
|
||||
"facedir",
|
||||
0)
|
||||
@ -29,7 +35,7 @@ register_stair_slab_panel_micro("technic", "granite", "technic:granite",
|
||||
register_stair_slab_panel_micro("technic", "concrete", "technic:concrete",
|
||||
{cracky=3, not_in_creative_inventory=1},
|
||||
{"technic_concrete_block.png"},
|
||||
"Concrete",
|
||||
S("Concrete"),
|
||||
"concrete",
|
||||
"facedir",
|
||||
0)
|
||||
|
9
extranodes/locale/de.txt
Normal file
9
extranodes/locale/de.txt
Normal file
@ -0,0 +1,9 @@
|
||||
# German Translation for technic_extranodes
|
||||
# Deutsche Übersetzung von technic_extranodes
|
||||
# by Xanthin
|
||||
|
||||
Marble = Marmor
|
||||
Marble Bricks = Marmorziegel
|
||||
Granite = Granit
|
||||
Concrete = Beton
|
||||
|
7
extranodes/locale/template.txt
Normal file
7
extranodes/locale/template.txt
Normal file
@ -0,0 +1,7 @@
|
||||
# technic_extranodes translation template
|
||||
|
||||
Marble =
|
||||
Marble Bricks =
|
||||
Granite =
|
||||
Concrete =
|
||||
|
Reference in New Issue
Block a user