diff --git a/mods/mobs/locale/mobs.de.tr b/mods/mobs/locale/mobs.de.tr index adef4e0..6b6158d 100644 --- a/mods/mobs/locale/mobs.de.tr +++ b/mods/mobs/locale/mobs.de.tr @@ -59,10 +59,10 @@ Get this thing out of my face!=Nimm dieses Ding aus meinem Gesicht! This makes seeds grow faster. Place the fertilizer on soil, then plant the seed on top of it.=Damit wachsen Samen schneller. Platziere den Dünger auf dem Boden, dann pflanze die Samen obendrauf. Sorry, I don't know how to use this. Maybe ask a farmer.=Leider weiß ich nicht, wie man das benutzt. Frag mal einen Bauern. Remember to put water near to your seeds.=Denk dran, dass du Wasser in der Nähe deiner Samen geben musst. -Try magnetizing it on iron.= -If you use it on a cotton bale, it will point to the North again.= -If you use it on wool, it will point to the North again.= -We live in a lovely place, don't we?= +Try magnetizing it on iron.=Versuch, dies an Eisen zu magnetisieren. +If you use it on a cotton bale, it will point to the North again.=Wenn du ihn an einem Baumwollballen benutzt, wird er wieder nach Norden zeigen. +If you use it on wool, it will point to the North again.=Wenn du ihn an Wolle benutzt, wird er wieder nach Norden zeigen. +We live in a lovely place, don't we?=Wir leben in einem schönen Ort, oder? It's used to capture large animals.=Damit fängt man große Tiere. Why are you carrying this around? Do you want crack open our locked chests?=Warum trägst du das hier herum? Willst du etwa unsere abgeschlossenen Truhen aufbrechen? It's used to capture small animals.=Damit fängt man kleine Tiere. diff --git a/mods/rp_default/locale/rp_default.de.tr b/mods/rp_default/locale/rp_default.de.tr index 525a127..eeeec6b 100644 --- a/mods/rp_default/locale/rp_default.de.tr +++ b/mods/rp_default/locale/rp_default.de.tr @@ -65,8 +65,8 @@ Wrought Iron Block=Schmiedeeisenblock Steel Block=Stahlblock Carbon Steel Block=Karbonstahlblock Bronze Block=Bronzeblock -Copper Block= -Tin Block= +Copper Block=Kupferblock +Tin Block=Zinnblock Dirt=Erde Dry Dirt=Trockene Erde Swamp Dirt=Sumpferde diff --git a/mods/rp_nav/locale/rp_nav.de.tr b/mods/rp_nav/locale/rp_nav.de.tr index 82d386a..e2c75ce 100644 --- a/mods/rp_nav/locale/rp_nav.de.tr +++ b/mods/rp_nav/locale/rp_nav.de.tr @@ -1,19 +1,14 @@ # textdomain: rp_nav Compass=Kompass It points to the North=Er zeigt nach Norden -Can be magnetized at magnetic blocks= -Magno Compass= -It points to a position= -Can be demagnetized at unmagnetic blocks= +Can be magnetized at magnetic blocks=Kann an magnetischen Blöcken magnetisiert werden. +Magno Compass=Magnokompass +It points to a position=Er zeigt zu einer Position +Can be demagnetized at unmagnetic blocks=Kann an unmagnetischen Blöcken entmagnetisiert werden. True Navigator=Wahrer Navigator -Magnetize a compass.= +Magnetize a compass.=Magnetisieren Sie einen Kompass. Map=Karte Keep this in your inventory and view the map with the 'minimap' key=Im Inventar behalten und Karte mit „Karte an/aus“-Taste öffnen Use the minimap key to show the map.=Taste „Karte an/aus“ benutzen, um die Karte zu betrachten. Navigator=Navigator Craft a map.=Fertigen Sie eine Karte. - - -##### not used anymore ##### - -Craft a compass.=Fertigen Sie einen Kompass. diff --git a/mods/rp_partialblocks/init.lua b/mods/rp_partialblocks/init.lua index 525984c..9f0c186 100644 --- a/mods/rp_partialblocks/init.lua +++ b/mods/rp_partialblocks/init.lua @@ -219,6 +219,9 @@ partialblocks.register_material( partialblocks.register_material( "tin", S("Tin Slab"), S("Tin Stair"), "rp_default:block_tin", { cracky = 2 }, false, adv_slab_tex("rp_default:block_tin", "block_tin"), adv_stair_tex("rp_default:block_tin", "block_tin")) +partialblocks.register_material( + "gold", S("Gold Slab"), S("Gold Stair"), "rp_gold:block_gold", { cracky = 2 }, false, adv_slab_tex("rp_gold:block_gold", "block_gold"), adv_stair_tex("rp_gold:block_gold", "block_gold")) + local cs_stair_tiles = { "default_compressed_sandstone.png", diff --git a/mods/rp_partialblocks/locale/rp_partialblocks.de.tr b/mods/rp_partialblocks/locale/rp_partialblocks.de.tr index a0c025c..b84cf10 100644 --- a/mods/rp_partialblocks/locale/rp_partialblocks.de.tr +++ b/mods/rp_partialblocks/locale/rp_partialblocks.de.tr @@ -27,9 +27,9 @@ Wrought Iron Slab=Schmiedeeisenplatte Wrought Iron Stair=Schmiedeeisentreppe Bronze Slab=Bronzeplatte Bronze Stair=Bronzetreppe -Copper Slab= -Copper Stair= -Tin Slab= -Tin Stair= +Copper Slab=Kupferplatte +Copper Stair=Kupfertreppe +Tin Slab=Zinnplatte +Tin Stair=Zinntreppe Compressed Sandstone Slab=Kompaktsandsteinplatte Compressed Sandstone Stair=Kompaktsandsteintreppe diff --git a/mods/rp_partialblocks/mod.conf b/mods/rp_partialblocks/mod.conf index 9592258..e43b227 100644 --- a/mods/rp_partialblocks/mod.conf +++ b/mods/rp_partialblocks/mod.conf @@ -1,2 +1,2 @@ name = rp_partialblocks -depends = rp_default, rp_crafting +depends = rp_default, rp_gold, rp_crafting diff --git a/mods/rp_partialblocks/textures/partialblocks_block_gold_slab.png b/mods/rp_partialblocks/textures/partialblocks_block_gold_slab.png new file mode 100644 index 0000000..8f392c6 Binary files /dev/null and b/mods/rp_partialblocks/textures/partialblocks_block_gold_slab.png differ diff --git a/mods/rp_partialblocks/textures/partialblocks_block_gold_stair.png b/mods/rp_partialblocks/textures/partialblocks_block_gold_stair.png new file mode 100644 index 0000000..7165da7 Binary files /dev/null and b/mods/rp_partialblocks/textures/partialblocks_block_gold_stair.png differ diff --git a/mods/rp_partialblocks/textures/partialblocks_glass_slab.png b/mods/rp_partialblocks/textures/partialblocks_glass_slab.png new file mode 100644 index 0000000..3f54b80 Binary files /dev/null and b/mods/rp_partialblocks/textures/partialblocks_glass_slab.png differ diff --git a/mods/rp_partialblocks/textures/partialblocks_glass_stair.png b/mods/rp_partialblocks/textures/partialblocks_glass_stair.png new file mode 100644 index 0000000..4ec71a0 Binary files /dev/null and b/mods/rp_partialblocks/textures/partialblocks_glass_stair.png differ diff --git a/mods/rp_tt/locale/rp_tt.de.tr b/mods/rp_tt/locale/rp_tt.de.tr new file mode 100644 index 0000000..b8e77d4 --- /dev/null +++ b/mods/rp_tt/locale/rp_tt.de.tr @@ -0,0 +1,3 @@ +# textdomain: rp_tt +Magnetic=Magnetisch +Unmagnetic=Unmagnetisch