telefonat and small fixes

This commit is contained in:
nico
2025-05-26 19:18:40 +02:00
parent 28e895b6a9
commit 953e886129
7 changed files with 49 additions and 35 deletions

View File

@@ -29,27 +29,27 @@ class LetzterNiederschlagState extends State<LetzterNiederschlag> {
child: Text(AppLocalizations.of(context)!.aktuell),
),
DropdownMenuItem<String>(
value: "selberMorgen",
value: "am selben Morgen",
child: Text(AppLocalizations.of(context)!.selberMorgen),
),
DropdownMenuItem<String>(
value: "nacht",
value: "in der Nacht",
child: Text(AppLocalizations.of(context)!.letzteNacht),
),
DropdownMenuItem<String>(
value: "vortag",
value: "am Tag oder Abend zuvor",
child: Text(AppLocalizations.of(context)!.vortag),
),
DropdownMenuItem<String>(
value: "vor23Tagen",
value: "vor 2 bis 3 Tagen",
child: Text(AppLocalizations.of(context)!.vor23Tagen),
),
DropdownMenuItem<String>(
value: "vor46Tagen",
value: "vor 4 bis 6 Tagen",
child: Text(AppLocalizations.of(context)!.vor46Tagen),
),
DropdownMenuItem<String>(
value: "vor1Woche",
value: ">=1 Woche",
child: Text(AppLocalizations.of(context)!.vor1Woche),
),
],