Filter meal suggestions by simple flavor profiles
This commit is contained in:
@@ -67,6 +67,24 @@ BUILDER_DESCRIPTIONS = {
|
||||
|
||||
BUILDER_OPTIONS = [(key, label) for key, label in BUILDER_LABELS.items()]
|
||||
|
||||
FOOD_FLAVOR_OPTIONS = [
|
||||
("neutral", "Neutral"),
|
||||
("sweet", "Süß"),
|
||||
("savory", "Herzhaft"),
|
||||
]
|
||||
|
||||
FOOD_FLAVOR_LABELS = {
|
||||
"neutral": "Neutral",
|
||||
"sweet": "Süß",
|
||||
"savory": "Herzhaft",
|
||||
}
|
||||
|
||||
FOOD_FLAVOR_DESCRIPTIONS = {
|
||||
"neutral": "Passt ruhig in beide Richtungen und bleibt flexibel.",
|
||||
"sweet": "Passt eher zu süßen Kombinationen, Frühstücksideen oder kleinen Snacks.",
|
||||
"savory": "Passt eher zu herzhaften Kombinationen und ruhigeren Hauptmahlzeiten.",
|
||||
}
|
||||
|
||||
FOOD_ROLE_LABELS = {
|
||||
"main": "Hauptbaustein",
|
||||
"base": "Basis",
|
||||
|
||||
Reference in New Issue
Block a user