Add translation for water/lava interactions

This commit is contained in:
Wuzzy 2019-03-24 08:03:50 +01:00
parent 1b24b02e31
commit a54abc7de9
3 changed files with 24 additions and 12 deletions

View File

@ -56,7 +56,6 @@ Charcoal is an alternative furnace fuel created by cooking wood in a furnace. It
Chiseled Stone Bricks=Gemeißelte Steinziegel
Chiseled Red Sandstone=Gemeißelter roter Sandstein
Chiseled Sandstone=Gemeißelter Sandstein
Chiseled Stone Bricks=Gemeißelte Steinziegel
Chiseled red sandstone is a decorative building block.=Gemeißelter roter Sandstein ist ein dekorativer Block zum Bauen.
Chiseled sandstone is a decorative building block.=Gemeißelter Sandstein ist ein dekorativer Block zum Bauen.
Clay=Ton
@ -238,3 +237,10 @@ When you hold a barrier in hand, you reveal all placed barriers in a short dista
White Stained Glass=Weißes Buntglas
Yellow Stained Glass=Gelbes Buntglas
“Coal” refers to coal lumps obtained by digging coal ore which can be found underground. Coal is your standard furnace fuel, but it can also be used to make torches, coal blocks and a few other things.=„Kohle“ meint Kohleklumpen, die herausfallen, wenn Kohleerz gegraben wird, was im Untergrund gefunden werden kann. Kohle ist der klassische Brennstoff für den Ofen, aber er kann auch benutzt werden, um Fackeln, Kohleblöcke und einige andere Dinge herzustellen.
Water interacts with lava in various ways:=Wasser reagiert mit Lava auf unterschiedliche Arten:
• When water is directly above or horizontally next to a lava source, the lava turns into obsidian.=• Wenn sich Wasser direkt über oder horizontal neben einer Wasserquelle befindet, verwandelt sich die Lava zu Obsidian.
• When flowing water touches flowing lava either from above or horizontally, the lava turns into cobblestone.=• Wenn fließendes Wasser fließende Lava von oben oder horizontal berührt, verwandelt sich die Lava zu Kopfsteinpflaster.
• When water is directly below lava, the water turns into stone.=• Wenn sich Wasser direkt unter Lava befindet, verwandelt sich das Wasser zu Stein.
Lava interacts with water various ways:=Lava reagiert mit Wasser auf verschiedene Arten:
• When a lava source is directly below or horizontally next to water, the lava turns into obsidian.=• Wenn sich eine Lavaquelle direkt unter oder horizontal neben Wasser befindet, verwandelt sich die Lava zu Obsidian.
• When lava is directly above water, the water turns into stone.=• Wenn sich Lava direkt über Wasser befindet, verwandelt sich das Wasser zu Stein.

View File

@ -56,7 +56,6 @@ Charcoal is an alternative furnace fuel created by cooking wood in a furnace. It
Chiseled Stone Bricks=
Chiseled Red Sandstone=
Chiseled Sandstone=
Chiseled Stone Bricks=
Chiseled red sandstone is a decorative building block.=
Chiseled sandstone is a decorative building block.=
Clay=
@ -237,3 +236,10 @@ When you hold a barrier in hand, you reveal all placed barriers in a short dista
White Stained Glass=
Yellow Stained Glass=
“Coal” refers to coal lumps obtained by digging coal ore which can be found underground. Coal is your standard furnace fuel, but it can also be used to make torches, coal blocks and a few other things.=
Water interacts with lava in various ways:=
• When water is directly above or horizontally next to a lava source, the lava turns into obsidian.=
• When flowing water touches flowing lava either from above or horizontally, the lava turns into cobblestone.=
• When water is directly below lava, the water turns into stone.=
Lava interacts with water various ways:=
• When a lava source is directly below or horizontally next to water, the lava turns into obsidian.=
• When lava is directly above water, the water turns into stone.=

View File

@ -58,11 +58,11 @@ minetest.register_node("mcl_core:water_source", {
description = S("Water Source"),
_doc_items_entry_name = S("Water"),
_doc_items_longdesc =
S("Water is abundant in oceans and also appears in a few springs in the ground. You can swim easily in water, but you need to catch your breath from time to time.").."\n"..
S([[Water interacts with lava in various ways:
When water is directly above or horizontally next to a lava source, the lava turns into obsidian.
When flowing water touches flowing lava either from above or horizontally, the lava turns into cobblestone.
When water is directly below lava, the water turns into stone.]]),
S("Water is abundant in oceans and also appears in a few springs in the ground. You can swim easily in water, but you need to catch your breath from time to time.").."\n\n"..
S("Water interacts with lava in various ways:").."\n"..
S("• When water is directly above or horizontally next to a lava source, the lava turns into obsidian.").."\n"..
S("• When flowing water touches flowing lava either from above or horizontally, the lava turns into cobblestone.").."\n"..
S("• When water is directly below lava, the water turns into stone."),
_doc_items_hidden = false,
drawtype = "liquid",
tiles = {
@ -150,11 +150,11 @@ minetest.register_node("mcl_core:lava_source", {
_doc_items_entry_name = "Lava",
_doc_items_longdesc =
S("Lava is hot and rather dangerous. Don't touch it, it will hurt you a lot and it is hard to get out.").."\n"..
S("A lava source sets fire to a couple of air blocks above when they're next to a flammable block.").."\n"..
S([[Lava interacts with water various ways:
When a lava source is directly below or horizontally next to water, the lava turns into obsidian.
When flowing water touches flowing lava either from above or horizontally, the lava turns into cobblestone.
When lava is directly above water, the water turns into stone.]]),
S("A lava source sets fire to a couple of air blocks above when they're next to a flammable block.").."\n\n"..
S("Lava interacts with water various ways:").."\n"..
S("• When a lava source is directly below or horizontally next to water, the lava turns into obsidian.").."\n"..
S("• When flowing water touches flowing lava either from above or horizontally, the lava turns into cobblestone.").."\n"..
S("• When lava is directly above water, the water turns into stone."),
drawtype = "liquid",
tiles = {
{name="default_lava_source_animated.png", animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=3.0}}