Translate all extended tooltips to German
This commit is contained in:
parent
03a5519d01
commit
feba60cad8
133 changed files with 323 additions and 52 deletions
|
@ -2,7 +2,7 @@ local S = minetest.get_translator("mcl_farming")
|
|||
|
||||
minetest.register_craftitem("mcl_farming:beetroot_seeds", {
|
||||
description = S("Beetroot Seeds"),
|
||||
_tt_help = S("Can be sown on farmland"),
|
||||
_tt_help = S("Grows on farmland"),
|
||||
_doc_items_longdesc = S("Grows into a beetroot plant. Chickens like beetroot seeds."),
|
||||
_doc_items_usagehelp = S("Place the beetroot seeds on farmland (which can be created with a hoe) to plant a beetroot plant. They grow in sunlight and grow faster on hydrated farmland. Rightclick an animal to feed it beetroot seeds."),
|
||||
groups = { craftitem=1 },
|
||||
|
|
|
@ -82,7 +82,7 @@ minetest.register_node("mcl_farming:carrot", {
|
|||
|
||||
minetest.register_craftitem("mcl_farming:carrot_item", {
|
||||
description = S("Carrot"),
|
||||
_tt_help = S("Can be planted on farmland"),
|
||||
_tt_help = S("Grows on farmland"),
|
||||
_doc_items_longdesc = S("Carrots can be eaten and planted. Pigs and rabbits like carrots."),
|
||||
_doc_items_usagehelp = S("Hold it in your hand and rightclick to eat it. Place it on top of farmland to plant the carrot. It grows in sunlight and grows faster on hydrated farmland. Rightclick an animal to feed it."),
|
||||
inventory_image = "farming_carrot.png",
|
||||
|
|
|
@ -91,3 +91,9 @@ Hay Bale=Heuballen
|
|||
Hay bales are decorative blocks made from wheat.=Heuballen sind dekorative Blöcke, die aus Weizen gemacht sind.
|
||||
To carve a face into the pumpkin, use the shears on the side you want to carve.=Um ein Gesicht in den Kürbis zu schnitzen, benutzen Sie die Schere an der Seite, die Sie schnitzen wollen.
|
||||
Use the “Place” key on an animal to try to feed it wheat.=Benutzen Sie die „Platzieren“-Taste auf einem Tier, um zu versuchen, es zu füttern.
|
||||
Grows on farmland=Wächst auf Ackerboden
|
||||
Turns block into farmland=Macht Block zu Ackerboden
|
||||
60% chance of poisoning=60% Vergiftungsgefahr
|
||||
Surface for crops=Boden für Nutzpflanzen
|
||||
Can become wet=Kann nass werden
|
||||
Uses: @1=Verwendungen: @1
|
||||
|
|
|
@ -91,3 +91,9 @@ Hay Bale=
|
|||
Hay bales are decorative blocks made from wheat.=
|
||||
To carve a face into the pumpkin, use the shears on the side you want to carve.=
|
||||
Use the “Place” key on an animal to try to feed it wheat.=
|
||||
Grows on farmland=
|
||||
Turns block into farmland=
|
||||
60% chance of poisoning=
|
||||
Surface for crops=
|
||||
Can become wet=
|
||||
Uses: @1=
|
||||
|
|
|
@ -3,7 +3,7 @@ local S = minetest.get_translator("mcl_farming")
|
|||
-- Seeds
|
||||
minetest.register_craftitem("mcl_farming:melon_seeds", {
|
||||
description = S("Melon Seeds"),
|
||||
_tt_help = S("Can be sown on farmland"),
|
||||
_tt_help = S("Grows on farmland"),
|
||||
_doc_items_longdesc = S("Grows into a melon stem which in turn grows melons. Chickens like melon seeds."),
|
||||
_doc_items_usagehelp = S("Place the melon seeds on farmland (which can be created with a hoe) to plant a melon stem. Melon stems grow in sunlight and grow faster on hydrated farmland. When mature, the stem will attempt to grow a melon at the side. Rightclick an animal to feed it melon seeds."),
|
||||
stack_max = 64,
|
||||
|
|
|
@ -87,7 +87,7 @@ minetest.register_node("mcl_farming:potato", {
|
|||
|
||||
minetest.register_craftitem("mcl_farming:potato_item", {
|
||||
description = S("Potato"),
|
||||
_tt_help = S("Can be planted on farmland"),
|
||||
_tt_help = S("Grows on farmland"),
|
||||
_doc_items_longdesc = S("Potatoes are food items which can be eaten, cooked in the furnace and planted. Pigs like potatoes."),
|
||||
_doc_items_usagehelp = S("Hold it in your hand and rightclick to eat it. Place it on top of farmland to plant it. It grows in sunlight and grows faster on hydrated farmland. Rightclick an animal to feed it."),
|
||||
inventory_image = "farming_potato.png",
|
||||
|
|
|
@ -9,7 +9,7 @@ end
|
|||
-- Seeds
|
||||
minetest.register_craftitem("mcl_farming:pumpkin_seeds", {
|
||||
description = S("Pumpkin Seeds"),
|
||||
_tt_help = S("Can be sown on farmland"),
|
||||
_tt_help = S("Grows on farmland"),
|
||||
_doc_items_longdesc = S("Grows into a pumpkin stem which in turn grows pumpkins. Chickens like pumpkin seeds."),
|
||||
_doc_items_usagehelp = S("Place the pumpkin seeds on farmland (which can be created with a hoe) to plant a pumpkin stem. Pumpkin stems grow in sunlight and grow faster on hydrated farmland. When mature, the stem attempts to grow a pumpkin next to it. Rightclick an animal to feed it pumpkin seeds."),
|
||||
stack_max = 64,
|
||||
|
|
|
@ -3,7 +3,7 @@ local S = minetest.get_translator("mcl_farming")
|
|||
minetest.register_node("mcl_farming:soil", {
|
||||
tiles = {"mcl_farming_farmland_dry.png", "default_dirt.png"},
|
||||
description = S("Farmland"),
|
||||
_tt_help = S("Surface for farming plants").."\n"..S("Can become wet"),
|
||||
_tt_help = S("Surface for crops").."\n"..S("Can become wet"),
|
||||
_doc_items_longdesc = S("Farmland is used for farming, a necessary surface to plant crops. It is created when a hoe is used on dirt or a similar block. Plants are able to grow on farmland, but slowly. Farmland will become hydrated farmland (on which plants grow faster) when it rains or a water source is nearby. This block will turn back to dirt when a solid block appears above it or a piston arm extends above it."),
|
||||
drop = "mcl_core:dirt",
|
||||
drawtype = "nodebox",
|
||||
|
|
|
@ -3,7 +3,7 @@ local S = minetest.get_translator("mcl_farming")
|
|||
minetest.register_craftitem("mcl_farming:wheat_seeds", {
|
||||
-- Original Minecraft name: “Seeds”
|
||||
description = S("Wheat Seeds"),
|
||||
_tt_help = S("Can be sown on farmland"),
|
||||
_tt_help = S("Grows on farmland"),
|
||||
_doc_items_longdesc = S("Grows into a wheat plant. Chickens like wheat seeds."),
|
||||
_doc_items_usagehelp = S("Place the wheat seeds on farmland (which can be created with a hoe) to plant a wheat plant. They grow in sunlight and grow faster on hydrated farmland. Rightclick an animal to feed it wheat seeds."),
|
||||
groups = { craftitem=1 },
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue