Skip to content
This repository was archived by the owner on Aug 9, 2023. It is now read-only.

Commit a4c18c9

Browse files
authored
Add missing cauldron descriptions and translations (#151)
1 parent 0dbf92e commit a4c18c9

File tree

5 files changed

+7
-0
lines changed

5 files changed

+7
-0
lines changed

locale/template.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ check=
3636
Bowl=
3737
Bowl of soup=
3838
Cauldron=
39+
Cauldron (active)=
3940
Cauldron (active) - Drop foods inside to make a soup=
4041
Cauldron (active) - Use a bowl to eat the soup=
4142
Cauldron (empty)=

locale/xdecor.de.tr

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ check=Schach
3434
Bowl=Schüssel
3535
Bowl of soup=Suppenschüssel
3636
Cauldron=Kessel
37+
Cauldron (active)=Kessel (aktiv)
3738
Cauldron (active) - Drop foods inside to make a soup=Kessel (aktiv) - Nahrungsmittel einwerfen, um Suppe zu machen.
3839
Cauldron (active) - Use a bowl to eat the soup=Kessel (aktiv) - Benutze eine Schüssel, um die Suppe zu essen
3940
Cauldron (empty)=Kessel (leer)

locale/xdecor.fr.tr

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ check=échec
3636
Bowl=Bol
3737
Bowl of soup=Bol de soupe
3838
Cauldron=Chaudron
39+
Cauldron (active)=Chaudron (actif)
3940
Cauldron (active) - Drop foods inside to make a soup=Chaudron (actif) - Placez des ingrédients à l’intérieur pour faire une soupe
4041
Cauldron (active) - Use a bowl to eat the soup=Chaudron (actif) - Utilisez un bol pour boire la soupe
4142
Cauldron (empty)=Chaudron (vide)

locale/xdecor.it.tr

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ check=scacco
3636
Bowl=Ciotola
3737
Bowl of soup=Ciotola di zuppa
3838
Cauldron=Calderone
39+
Cauldron (active)=Calderone (attivo)
3940
Cauldron (active) - Drop foods inside to make a soup=Calderone (attivo) - Mettere gli ingredienti all'interno per fare una zuppa.
4041
Cauldron (active) - Use a bowl to eat the soup=Calderone (actif) - Utilizzare una ciotola per mangiare la zuppa
4142
Cauldron (empty)=Calderone (vuoto)

src/cooking.lua

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,7 @@ xdecor.register("cauldron_empty", {
173173
})
174174

175175
xdecor.register("cauldron_idle", {
176+
description = S("Cauldron (idle)"),
176177
groups = {cracky=2, oddly_breakable_by_hand=1, not_in_creative_inventory=1},
177178
on_rotate = screwdriver.rotate_simple,
178179
tiles = {"xdecor_cauldron_top_idle.png", "xdecor_cauldron_sides.png"},
@@ -185,6 +186,7 @@ xdecor.register("cauldron_idle", {
185186
})
186187

187188
xdecor.register("cauldron_boiling", {
189+
description = S("Cauldron (active)"),
188190
groups = {cracky=2, oddly_breakable_by_hand=1, not_in_creative_inventory=1},
189191
on_rotate = screwdriver.rotate_simple,
190192
drop = "xdecor:cauldron_empty",
@@ -207,6 +209,7 @@ xdecor.register("cauldron_boiling", {
207209
})
208210

209211
xdecor.register("cauldron_soup", {
212+
description = S("Cauldron (active)"),
210213
groups = {cracky = 2, oddly_breakable_by_hand = 1, not_in_creative_inventory = 1},
211214
on_rotate = screwdriver.rotate_simple,
212215
drop = "xdecor:cauldron_empty",

0 commit comments

Comments
 (0)