diff options
author | Xanthin <Xanthin@users.noreply.github.com> | 2014-04-16 19:10:00 +0200 |
---|---|---|
committer | ShadowNinja <shadowninja@minetest.net> | 2014-04-22 16:30:27 -0400 |
commit | 39c41a06f4993dc17507fb480fcabbca319ceff7 (patch) | |
tree | 63f2fad43fa39f2b1d7664a5f75cc8041e18e078 /technic_worldgen/nodes.lua | |
parent | db202503713ddd1084f188a5eac506be665e9c44 (diff) |
Add german translations for all mods
Diffstat (limited to 'technic_worldgen/nodes.lua')
-rw-r--r-- | technic_worldgen/nodes.lua | 26 |
1 files changed, 15 insertions, 11 deletions
diff --git a/technic_worldgen/nodes.lua b/technic_worldgen/nodes.lua index 7b9d385..5ecae7b 100644 --- a/technic_worldgen/nodes.lua +++ b/technic_worldgen/nodes.lua @@ -1,5 +1,8 @@ + +local S = technic.worldgen.gettext + minetest.register_node( ":technic:mineral_uranium", { - description = "Uranium Ore", + description = S("Uranium Ore"), tiles = { "default_stone.png^technic_mineral_uranium.png" }, is_ground_content = true, groups = {cracky=3}, @@ -8,7 +11,7 @@ minetest.register_node( ":technic:mineral_uranium", { }) minetest.register_node( ":technic:mineral_chromium", { - description = "Chromium Ore", + description = S("Chromium Ore"), tiles = { "default_stone.png^technic_mineral_chromium.png" }, is_ground_content = true, groups = {cracky=3}, @@ -17,7 +20,7 @@ minetest.register_node( ":technic:mineral_chromium", { }) minetest.register_node( ":technic:mineral_zinc", { - description = "Zinc Ore", + description = S("Zinc Ore"), tile_images = { "default_stone.png^technic_mineral_zinc.png" }, is_ground_content = true, groups = {cracky=3}, @@ -26,7 +29,7 @@ minetest.register_node( ":technic:mineral_zinc", { }) minetest.register_node( ":technic:granite", { - description = "Granite", + description = S("Granite"), tiles = { "technic_granite.png" }, is_ground_content = true, groups = {cracky=3}, @@ -34,7 +37,7 @@ minetest.register_node( ":technic:granite", { }) minetest.register_node( ":technic:marble", { - description = "Marble", + description = S("Marble"), tiles = { "technic_marble.png" }, is_ground_content = true, groups = {cracky=3}, @@ -42,7 +45,7 @@ minetest.register_node( ":technic:marble", { }) minetest.register_node( ":technic:marble_bricks", { - description = "Marble Bricks", + description = S("Marble Bricks"), tiles = { "technic_marble_bricks.png" }, is_ground_content = true, groups = {cracky=3}, @@ -50,7 +53,7 @@ minetest.register_node( ":technic:marble_bricks", { }) minetest.register_node(":technic:uranium_block", { - description = "Uranium Block", + description = S("Uranium Block"), tiles = { "technic_uranium_block.png" }, is_ground_content = true, groups = {cracky=1, level=2}, @@ -58,7 +61,7 @@ minetest.register_node(":technic:uranium_block", { }) minetest.register_node(":technic:chromium_block", { - description = "Chromium Block", + description = S("Chromium Block"), tiles = { "technic_chromium_block.png" }, is_ground_content = true, groups = {cracky=1, level=2}, @@ -66,7 +69,7 @@ minetest.register_node(":technic:chromium_block", { }) minetest.register_node(":technic:zinc_block", { - description = "Zinc Block", + description = S("Zinc Block"), tiles = { "technic_zinc_block.png" }, is_ground_content = true, groups = {cracky=1, level=2}, @@ -74,7 +77,7 @@ minetest.register_node(":technic:zinc_block", { }) minetest.register_node(":technic:stainless_steel_block", { - description = "Stainless Steel Block", + description = S("Stainless Steel Block"), tiles = { "technic_stainless_steel_block.png" }, is_ground_content = true, groups = {cracky=1, level=2}, @@ -82,7 +85,7 @@ minetest.register_node(":technic:stainless_steel_block", { }) minetest.register_node(":technic:brass_block", { - description = "Brass Block", + description = S("Brass Block"), tiles = { "technic_brass_block.png" }, is_ground_content = true, groups = {cracky=1, level=2}, @@ -98,3 +101,4 @@ minetest.register_craft({ }) minetest.register_alias("technic:diamond_block", "default:diamondblock") + |