53 lines
1.2 KiB
Python
53 lines
1.2 KiB
Python
DAYPARTS = [
|
|
{"slug": "breakfast", "name": "Frühstück", "sort_order": 10},
|
|
{"slug": "morning-snack", "name": "Vormittagssnack", "sort_order": 20},
|
|
{"slug": "lunch", "name": "Mittagessen", "sort_order": 30},
|
|
{"slug": "afternoon-snack", "name": "Nachmittagssnack", "sort_order": 40},
|
|
{"slug": "dinner", "name": "Abendessen", "sort_order": 50},
|
|
{"slug": "late-snack", "name": "Später Snack", "sort_order": 60},
|
|
]
|
|
|
|
CATEGORIES = [
|
|
"Brot & Getreide",
|
|
"Milchprodukt",
|
|
"Obst",
|
|
"Gemüse",
|
|
"Eiweißquelle",
|
|
"Snack",
|
|
"Getränk",
|
|
"Vorrat & Basics",
|
|
"Warmes",
|
|
"Kleines Essen",
|
|
]
|
|
|
|
ITEM_KIND_LABELS = {
|
|
"food": "Lebensmittel",
|
|
"meal": "Mahlzeitenideen",
|
|
}
|
|
|
|
ITEM_KIND_SINGULAR_LABELS = {
|
|
"food": "Lebensmittel",
|
|
"meal": "Mahlzeitenidee",
|
|
}
|
|
|
|
AVAILABILITY_LABELS = {
|
|
"idea": "Merkliste",
|
|
"home": "Zuhause",
|
|
"archived": "Archiv",
|
|
}
|
|
|
|
ROLE_LABELS = {
|
|
"admin": "Admin",
|
|
"member": "Mitglied",
|
|
}
|
|
|
|
VISIBILITY_LABELS = {
|
|
"shared": "Für alle",
|
|
"personal": "Persönlich",
|
|
}
|
|
|
|
VISIBILITY_DESCRIPTIONS = {
|
|
"shared": "Gemeinsam im Haushalt sichtbar und nutzbar.",
|
|
"personal": "Nur für dich sichtbar und planbar.",
|
|
}
|