From 05bef9bf6e6c181ed2b01a2a4a6161cd125c3f4e Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Thu, 24 May 2018 22:58:31 +0200 Subject: [PATCH] Capitalize node names --- locale/de.txt | 14 +++++++------- locale/template.txt | 14 +++++++------- mummy.lua | 4 ++-- nodes.lua | 6 +++--- 4 files changed, 19 insertions(+), 19 deletions(-) diff --git a/locale/de.txt b/locale/de.txt index 6d6372d..e929d96 100644 --- a/locale/de.txt +++ b/locale/de.txt @@ -1,10 +1,10 @@ -Cracked sandstone brick = Rissiger Sandsteinziegel -Fallen cracked sandstone brick = Gefallener rissiger Sandsteinziegel -Mummy spawn-egg = Mumien-Spawn-Ei -Mummy spawner = Mumien-Spawner -Sandstone with eye engraving = Sandstein mit Augengravur -Sandstone with man engraving = Sandstein mit Manngravur -Sandstone with sun engraving = Sandstein mit Sonnengravur +Cracked Sandstone Brick = Rissiger Sandsteinziegel +Fallen Cracked Sandstone Brick = Gefallener rissiger Sandsteinziegel +Mummy Spawn Egg = Mumien-Spawn-Ei +Mummy Spawner = Mumien-Spawner +Sandstone with Eye Engraving = Sandstein mit Augengravur +Sandstone with Man Engraving = Sandstein mit Manngravur +Sandstone with Sun Engraving = Sandstein mit Sonnengravur A mummy spawner causes hostile mummies to appear in its vicinity as long it exists. = Ein Mumien-Spawner lässt feindliche Mumien in seiner näheren Umgebung auftauchen, solange er existiert. Can be used to create a hostile mummy. = Kann benutzt werden, um eine feindliche Mumie zu erzeugen (auch »spawnen« genannt). Place the egg to create a mummy on this spot. Careful, it will probably attack immediately! = Platzieren Sie das Ei, um dort eine Mumie zu erzeugen. Vorsicht, sie wird wahrscheinlich sofort angreifen! diff --git a/locale/template.txt b/locale/template.txt index 195ac55..f715b16 100644 --- a/locale/template.txt +++ b/locale/template.txt @@ -1,10 +1,10 @@ -Cracked sandstone brick = -Fallen cracked sandstone brick = -Mummy spawn-egg = -Mummy spawner = -Sandstone with eye engraving = -Sandstone with man engraving = -Sandstone with sun engraving = +Cracked Sandstone Brick = +Fallen Cracked Sandstone Brick = +Mummy Spawn Egg = +Mummy Spawner = +Sandstone with Eye Engraving = +Sandstone with Man Engraving = +Sandstone with Sun Engraving = A mummy spawner causes hostile mummies to appear in its vicinity as long it exists. = Can be used to create a hostile mummy. = Place the egg to create a mummy on this spot. Careful, it will probably attack immediately! = diff --git a/mummy.lua b/mummy.lua index d97d1ee..bc0e8dd 100644 --- a/mummy.lua +++ b/mummy.lua @@ -311,7 +311,7 @@ minetest.register_entity("tsm_pyramids:mummy_spawner", spawner_DEF) --spawn-egg/spawner minetest.register_craftitem("tsm_pyramids:spawn_egg", { - description = S("Mummy spawn-egg"), + description = S("Mummy Spawn Egg"), _doc_items_longdesc = S("Can be used to create a hostile mummy."), _doc_items_usagehelp = S("Place the egg to create a mummy on this spot. Careful, it will probably attack immediately!"), inventory_image = "tsm_pyramids_mummy_egg.png", @@ -341,7 +341,7 @@ else end minetest.register_node("tsm_pyramids:spawner_mummy", { - description = S("Mummy spawner"), + description = S("Mummy Spawner"), _doc_items_longdesc = S("A mummy spawner causes hostile mummies to appear in its vicinity as long it exists."), paramtype = "light", tiles = {"tsm_pyramids_spawner.png"}, diff --git a/nodes.lua b/nodes.lua index 619e2ef..ee19760 100644 --- a/nodes.lua +++ b/nodes.lua @@ -6,7 +6,7 @@ else S = function(s) return s end end -local desc = {S("Sandstone with eye engraving"), S("Sandstone with man engraving"), S("Sandstone with sun engraving")} +local desc = {S("Sandstone with Eye Engraving"), S("Sandstone with Man Engraving"), S("Sandstone with Sun Engraving")} local img = {"eye", "men", "sun"} local decodesc = "" @@ -42,7 +42,7 @@ local trap_on_timer = function (pos, elapsed) end minetest.register_node("tsm_pyramids:trap", { - description = S("Cracked sandstone brick"), + description = S("Cracked Sandstone Brick"), _doc_items_longdesc = S("This brick is old, porous and unstable and is barely able to hold itself. One should be careful not to disturb it."), tiles = {"default_sandstone_brick.png^tsm_pyramids_crack.png"}, is_ground_content = false, @@ -57,7 +57,7 @@ minetest.register_node("tsm_pyramids:trap", { }) minetest.register_node("tsm_pyramids:trap_2", { - description = S("Fallen cracked sandstone brick"), + description = S("Fallen Cracked Sandstone Brick"), _doc_items_longdesc = S("This old and porous brick fell to the ground. It does not hold itself anymore."), tiles = {"default_sandstone_brick.png^tsm_pyramids_crack.png^[transformR90"}, is_ground_content = false,