diff --git a/mods/ITEMS/mcl_cocoas/init.lua b/mods/ITEMS/mcl_cocoas/init.lua index cd780b917..ae9d5cf11 100644 --- a/mods/ITEMS/mcl_cocoas/init.lua +++ b/mods/ITEMS/mcl_cocoas/init.lua @@ -72,9 +72,9 @@ end --[[ TODO: Use a mesh for cocoas for perfect texture compability. ]] local crop_def = { - description = S("Premature Cocoa"), + description = S("Premature Cocoa Pod"), _doc_items_create_entry = true, - _doc_items_longdesc = S("Cocoas are plants which grow on the side of jungle trees in 3 stages."), + _doc_items_longdesc = S("Cocoa pods grow on the side of jungle trees in 3 stages."), drawtype = "nodebox", tiles = { "[combine:16x16:6,1=mcl_cocoas_cocoa_stage_0.png", "[combine:16x16:6,11=mcl_cocoas_cocoa_stage_0.png", @@ -117,7 +117,7 @@ local crop_def = { -- 2nd stage minetest.register_node("mcl_cocoas:cocoa_1", table.copy(crop_def)) -crop_def.description = S("Medium Cocoa") +crop_def.description = S("Medium Cocoa Pod") crop_def._doc_items_create_entry = false crop_def.groups.cocoa = 2 crop_def.tiles = { @@ -148,8 +148,8 @@ crop_def.selection_box = { minetest.register_node("mcl_cocoas:cocoa_2", table.copy(crop_def)) -- Final stage -crop_def.description = S("Mature Cocoa") -crop_def._doc_items_longdesc = S("A mature cocoa is a plant which grew on a jungle tree to its full size and it is ready to be harvested for cocoa beans. It won't grow any further.") +crop_def.description = S("Mature Cocoa Pod") +crop_def._doc_items_longdesc = S("A mature cocoa pod grew on a jungle tree to its full size and it is ready to be harvested for cocoa beans. It won't grow any further.") crop_def._doc_items_create_entry = true crop_def.groups.cocoa = 3 crop_def.tiles = { @@ -183,7 +183,7 @@ minetest.register_node("mcl_cocoas:cocoa_3", table.copy(crop_def)) minetest.register_abm({ - label = "Cocoa growth", + label = "Cocoa pod growth", nodenames = {"mcl_cocoas:cocoa_1", "mcl_cocoas:cocoa_2"}, -- Same as potatoes -- TODO: Tweak/balance the growth speed diff --git a/mods/ITEMS/mcl_cocoas/locale/mcl_cocoas.de.tr b/mods/ITEMS/mcl_cocoas/locale/mcl_cocoas.de.tr new file mode 100644 index 000000000..479e3845e --- /dev/null +++ b/mods/ITEMS/mcl_cocoas/locale/mcl_cocoas.de.tr @@ -0,0 +1,6 @@ +# textdomain: mcl_cocoas +Premature Cocoa Pod=Junge Kakaoschote +Cocoa pods grow on the side of jungle trees in 3 stages.=Kakaoschoten wachsen an der Seite von Dschungelbäumen in 3 Stufen. +Medium Cocoa Pod=Mittelgroße Kakaoschote +Mature Cocoa Pod=Ausgewachsene Kakaoschote +A mature cocoa pod grew on a jungle tree to its full size and it is ready to be harvested for cocoa beans. It won't grow any further.=Eine ausgewachsene Kakaoschote wuchs an einem Dschugelbaum zur vollen Größe heran. Sie ist erntereif und kann für Kakaobohnen geerntet werden. Sie wird nicht weiter wachsen. diff --git a/mods/ITEMS/mcl_cocoas/locale/template.txt b/mods/ITEMS/mcl_cocoas/locale/template.txt index ff9fb5889..f68318cae 100644 --- a/mods/ITEMS/mcl_cocoas/locale/template.txt +++ b/mods/ITEMS/mcl_cocoas/locale/template.txt @@ -1,6 +1,6 @@ # textdomain: mcl_cocoas -Premature Cocoa= -Cocoas are plants which grow on the side of jungle trees in 3 stages.= -Medium Cocoa= -Mature Cocoa= -A mature cocoa is a plant which grew on a jungle tree to its full size and it is ready to be harvested for cocoa beans. It won't grow any further.= +Premature Cocoa Pod= +Cocoa pods grow on the side of jungle trees in 3 stages.= +Medium Cocoa Pod= +Mature Cocoa Pod= +A mature cocoa pod grew on a jungle tree to its full size and it is ready to be harvested for cocoa beans. It won't grow any further.=