Capitalize node names

This commit is contained in:
Wuzzy 2018-05-24 22:58:31 +02:00
parent c066cedd2e
commit 05bef9bf6e
4 changed files with 19 additions and 19 deletions

View File

@ -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!

View File

@ -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! =

View File

@ -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"},

View File

@ -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,