summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhawkril <torsten.spickhofen@gmail.com>2014-03-11 12:23:56 +0100
committerhawkril <torsten.spickhofen@gmail.com>2014-03-11 12:23:56 +0100
commit2f6042c18920a3da80f72976f79bc0be993a9451 (patch)
tree61112add325c2b78fbdbc1cdafa55a492cc32b88
parentad571992c36688d0a62f98f4e3657d0782c3db77 (diff)
fixed Soups
-rw-r--r--init.lua4
-rw-r--r--locale/de.txt4
2 files changed, 6 insertions, 2 deletions
diff --git a/init.lua b/init.lua
index 07e967e..f7d4296 100644
--- a/init.lua
+++ b/init.lua
@@ -454,13 +454,13 @@ local soups = {"tomato","chicken"}
for i=1, #soups do
local flav = soups[i]
minetest.register_craftitem("food:soup_"..flav,{
- description = flav.." Soup",
+ description = S(flav.." Soup"),
inventory_image = "food_soup_"..flav..".png",
on_use = food.item_eat(4),
groups = {food=3}
})
minetest.register_craftitem("food:soup_"..flav.."_raw",{
- description = "Uncooked ".. flav.." Soup",
+ description = S("Uncooked ".. flav.." Soup"),
inventory_image = "food_soup_"..flav.."_raw.png",
})
diff --git a/locale/de.txt b/locale/de.txt
index 582ddba..8ae0062 100644
--- a/locale/de.txt
+++ b/locale/de.txt
@@ -39,3 +39,7 @@ Cake Mix = Backmischung
Chocolate Cake Mix = Backmischung fuer Schokoladenkuchen
Carrot Cake Mix = Backmischung fuer Karottenkuchen
Cheese Cake Mix = Backmischung fuer Kaesekuchen
+chicken Soup = Huehnersuppe
+tomato Soup = Tomatensuppe
+Uncooked tomato Soup = Ungekochte Huehnersuppe
+Uncooked chicken Soup = Ungekochte Tomatensuppe \ No newline at end of file