From c78b1d13548d68837db9a51b109a544c66394417 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Fri, 22 Mar 2019 22:02:23 +0100 Subject: [PATCH] Add missing translation for pumpkin usagehelp --- mods/ITEMS/mcl_farming/locale/mcl_farming.de.tr | 1 + mods/ITEMS/mcl_farming/locale/template.txt | 1 + mods/ITEMS/mcl_farming/pumpkin.lua | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/mods/ITEMS/mcl_farming/locale/mcl_farming.de.tr b/mods/ITEMS/mcl_farming/locale/mcl_farming.de.tr index 4d05bf80f..90226967f 100644 --- a/mods/ITEMS/mcl_farming/locale/mcl_farming.de.tr +++ b/mods/ITEMS/mcl_farming/locale/mcl_farming.de.tr @@ -89,3 +89,4 @@ Cookie=Keks Bread=Brot 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. diff --git a/mods/ITEMS/mcl_farming/locale/template.txt b/mods/ITEMS/mcl_farming/locale/template.txt index 089fd5069..81a52b010 100644 --- a/mods/ITEMS/mcl_farming/locale/template.txt +++ b/mods/ITEMS/mcl_farming/locale/template.txt @@ -89,3 +89,4 @@ Cookie= Bread= 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.= diff --git a/mods/ITEMS/mcl_farming/pumpkin.lua b/mods/ITEMS/mcl_farming/pumpkin.lua index acab756ff..e40d267fb 100644 --- a/mods/ITEMS/mcl_farming/pumpkin.lua +++ b/mods/ITEMS/mcl_farming/pumpkin.lua @@ -87,7 +87,7 @@ local stem_def = { local pumpkin_base_def = { description = S("Faceless Pumpkin"), _doc_items_longdesc = S("A faceless pumpkin is a decorative block. It can be carved with shears to obtain pumpkin seeds."), - _doc_items_usagehelp = "To carve a face into the pumpkin, use the shears on the side you want to carve.", + _doc_items_usagehelp = S("To carve a face into the pumpkin, use the shears on the side you want to carve."), stack_max = 64, paramtype2 = "facedir", tiles = {"farming_pumpkin_top.png", "farming_pumpkin_top.png", "farming_pumpkin_side.png"},