Improved by resolving the last two fixme

This commit is contained in:
verboomp
2026-02-05 09:25:13 +01:00
parent cb5d0de5b2
commit bb4d7fbf68
4 changed files with 15 additions and 2 deletions

View File

@@ -144,5 +144,9 @@
"pictureWidgetLabelEvaluation": "BEWERTUNG",
"@pictureWidgetLabelEvaluation": {
"description": "Picture widget label for evaluation"
},
"pictureWidgetNotFound": "Das Bild konnte nicht gefunden werden.",
"@pictureWidgetNotFound": {
"description": "Picture not found error message"
}
}

View File

@@ -285,6 +285,12 @@ abstract class AppLocalizations {
/// In de, this message translates to:
/// **'BEWERTUNG'**
String get pictureWidgetLabelEvaluation;
/// Picture not found error message
///
/// In de, this message translates to:
/// **'Das Bild konnte nicht gefunden werden.'**
String get pictureWidgetNotFound;
}
class _AppLocalizationsDelegate

View File

@@ -111,4 +111,7 @@ class AppLocalizationsDe extends AppLocalizations {
@override
String get pictureWidgetLabelEvaluation => 'BEWERTUNG';
@override
String get pictureWidgetNotFound => 'Das Bild konnte nicht gefunden werden.';
}