forked from mtcontrib/food_sweet
Compare commits
No commits in common. "master" and "master" have entirely different histories.
9
init.lua
9
init.lua
@ -13,8 +13,13 @@ if not food or not food.version or food.version < 2.3 then
|
|||||||
error("You need to update your version of the Food mod - it is too old")
|
error("You need to update your version of the Food mod - it is too old")
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Boilerplate to support localized strings.
|
-- Boilerplate to support localized strings if intllib mod is installed.
|
||||||
local S = minetest.get_translator("food_sweet")
|
local S
|
||||||
|
if minetest.get_modpath("intllib") then
|
||||||
|
S = intllib.Getter()
|
||||||
|
else
|
||||||
|
S = function ( s ) return s end
|
||||||
|
end
|
||||||
|
|
||||||
food.support("strawberry", {
|
food.support("strawberry", {
|
||||||
"farming_plus:strawberry_item",
|
"farming_plus:strawberry_item",
|
||||||
|
1
locale/de.txt
Normal file
1
locale/de.txt
Normal file
@ -0,0 +1 @@
|
|||||||
|
Strawberry = Erdbeere
|
@ -1,37 +0,0 @@
|
|||||||
# textdomain: food_sweet
|
|
||||||
|
|
||||||
### init.lua ###
|
|
||||||
Walnut=
|
|
||||||
Strawberry=Strawberry
|
|
||||||
Blueberry=
|
|
||||||
Rhubarb=
|
|
||||||
Lemon=
|
|
||||||
|
|
||||||
# Cakes
|
|
||||||
Walnut and Coffee Cake=
|
|
||||||
Walnut and Coffee Cake Mix=
|
|
||||||
Strawberry Cheese Cake=
|
|
||||||
Strawberry Cheese Cake Mix=
|
|
||||||
Blueberry Cheese Cake=
|
|
||||||
Blueberry Cheese Cake Mix=
|
|
||||||
Triple Chocolate Cake=
|
|
||||||
Triple Chocolate Cake Mix=
|
|
||||||
Wedding Cake=
|
|
||||||
|
|
||||||
# Crumbles
|
|
||||||
Rhubarb Crumble=
|
|
||||||
Raw Rhubarb Crumble=
|
|
||||||
|
|
||||||
# Cupcake and derivs
|
|
||||||
Cupcake=
|
|
||||||
Cupcake Mix=
|
|
||||||
Chocolate Cupcake=
|
|
||||||
Chocolate Cupcake Mix=
|
|
||||||
Lemon Drizzle Cupcake=
|
|
||||||
Fairy Cake=
|
|
||||||
|
|
||||||
# Muffins
|
|
||||||
Blueberry Muffin=
|
|
||||||
Blueberry Muffin Mix=
|
|
||||||
Chocolate Chip Muffin=
|
|
||||||
Chocolate Chip Muffin Mix=
|
|
@ -1,41 +0,0 @@
|
|||||||
# textdomain: food_sweet
|
|
||||||
|
|
||||||
### init.lua ###
|
|
||||||
|
|
||||||
|
|
||||||
Walnut=Noix
|
|
||||||
Strawberry=Fraise
|
|
||||||
Blueberry=Myrtille
|
|
||||||
Rhubarb=Rhubarbe
|
|
||||||
Lemon=Citron
|
|
||||||
|
|
||||||
# Cakes
|
|
||||||
Walnut and Coffee Cake=Gâteau aux noix et au café
|
|
||||||
Walnut and Coffee Cake Mix=Mélange à gâteau aux noix et au café
|
|
||||||
Strawberry Cheese Cake=Gâteau au fromage et aux fraises
|
|
||||||
Strawberry Cheese Cake Mix=Mélange à gâteau au fromage et aux fraises
|
|
||||||
Blueberry Cheese Cake=Gateau au fromage et aux myrtilles
|
|
||||||
Blueberry Cheese Cake Mix=Mélange à gâteau au fromage et aux myrtilles
|
|
||||||
Triple Chocolate Cake=Gâteau aux trois chocolats
|
|
||||||
Triple Chocolate Cake Mix=Mélange à gâteau triple chocolat
|
|
||||||
Wedding Cake=Gâteau de mariage
|
|
||||||
|
|
||||||
# Crumbles
|
|
||||||
Rhubarb Crumble=Crumble à la rhubarbe
|
|
||||||
Raw Rhubarb Crumble=Crumble à la rhubarbe crue
|
|
||||||
|
|
||||||
|
|
||||||
# Cupcake and derivs
|
|
||||||
Cupcake=Cupcake
|
|
||||||
Cupcake Mix=Mélange à cupcakes
|
|
||||||
Chocolate Cupcake=Cupcake au chocolat
|
|
||||||
Chocolate Cupcake Mix=Mélange à cupcakes au chocolat
|
|
||||||
Lemon Drizzle Cupcake=Cupcake au citron
|
|
||||||
Fairy Cake=Gateau féerique
|
|
||||||
|
|
||||||
|
|
||||||
# Muffins
|
|
||||||
Blueberry Muffin=Muffin aux myrtilles
|
|
||||||
Blueberry Muffin Mix=Mélange pour muffins aux myrtilles
|
|
||||||
Chocolate Chip Muffin=Muffin aux pépites de chocolat
|
|
||||||
Chocolate Chip Muffin Mix=Mélange pour muffins aux pépites de chocolat
|
|
@ -1,6 +1,5 @@
|
|||||||
# textdomain: food_sweet
|
# template
|
||||||
|
# Supported
|
||||||
### init.lua ###
|
|
||||||
Walnut =
|
Walnut =
|
||||||
Strawberry =
|
Strawberry =
|
||||||
Blueberry =
|
Blueberry =
|
||||||
@ -31,7 +30,8 @@ Lemon Drizzle Cupcake=
|
|||||||
Fairy Cake =
|
Fairy Cake =
|
||||||
|
|
||||||
# Muffins
|
# Muffins
|
||||||
Blueberry Muffin=
|
|
||||||
Blueberry Muffin Mix=
|
|
||||||
Chocolate Chip Muffin =
|
Chocolate Chip Muffin =
|
||||||
Chocolate Chip Muffin Mix =
|
Chocolate Chip Muffin Mix =
|
||||||
|
Blueberry Muffin =
|
||||||
|
Blueberry Muffin Mix =
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user