From c8b76ae0ea64c62cddc6b182b76f842ea44e07d0 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 11 Jan 2026 15:43:46 +0100 Subject: [PATCH] Updated l10n config --- .gitignore | 2 ++ l10n.yaml | 3 ++- lib/l10n/generated/app_localizations.dart | 24 ++++++++++++++++++++ lib/l10n/generated/app_localizations_de.dart | 12 ++++++++++ lib/l10n/generated/app_localizations_en.dart | 12 ++++++++++ 5 files changed, 52 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 72eb56e..1f715b9 100644 --- a/.gitignore +++ b/.gitignore @@ -196,3 +196,5 @@ app.*.map.json /android/app/profile /android/app/release /devtools_options.yaml + +untranslated_messages.json \ No newline at end of file diff --git a/l10n.yaml b/l10n.yaml index f7805c8..e72b308 100644 --- a/l10n.yaml +++ b/l10n.yaml @@ -2,4 +2,5 @@ arb-dir: lib/l10n/arb template-arb-file: app_en.arb output-localization-file: app_localizations.dart output-dir: lib/l10n/generated -nullable-getter: false \ No newline at end of file +nullable-getter: false +untranslated-messages-file: lib/l10n/untranslated_messages.json \ No newline at end of file diff --git a/lib/l10n/generated/app_localizations.dart b/lib/l10n/generated/app_localizations.dart index 1da83f8..d91be37 100644 --- a/lib/l10n/generated/app_localizations.dart +++ b/lib/l10n/generated/app_localizations.dart @@ -302,6 +302,30 @@ abstract class AppLocalizations { /// **'Invalid Schema'** String get invalid_schema; + /// Licenses menu item + /// + /// In en, this message translates to: + /// **'Licenses'** + String get licenses; + + /// Message when no licenses are found + /// + /// In en, this message translates to: + /// **'No licenses found'** + String get no_licenses_found; + + /// Message when no license text is available + /// + /// In en, this message translates to: + /// **'No license text available'** + String get no_license_text_available; + + /// Error label + /// + /// In en, this message translates to: + /// **'Error'** + String get error; + /// Title for least points ruleset /// /// In en, this message translates to: diff --git a/lib/l10n/generated/app_localizations_de.dart b/lib/l10n/generated/app_localizations_de.dart index 75a1325..fa3010d 100644 --- a/lib/l10n/generated/app_localizations_de.dart +++ b/lib/l10n/generated/app_localizations_de.dart @@ -115,6 +115,18 @@ class AppLocalizationsDe extends AppLocalizations { @override String get invalid_schema => 'Ungültiges Schema'; + @override + String get licenses => 'Lizenzen'; + + @override + String get no_licenses_found => 'Keine Lizenzen gefunden'; + + @override + String get no_license_text_available => 'Kein Lizenztext verfügbar'; + + @override + String get error => 'Fehler'; + @override String get least_points => 'Niedrigste Punkte'; diff --git a/lib/l10n/generated/app_localizations_en.dart b/lib/l10n/generated/app_localizations_en.dart index 00b933b..d6bfa25 100644 --- a/lib/l10n/generated/app_localizations_en.dart +++ b/lib/l10n/generated/app_localizations_en.dart @@ -115,6 +115,18 @@ class AppLocalizationsEn extends AppLocalizations { @override String get invalid_schema => 'Invalid Schema'; + @override + String get licenses => 'Licenses'; + + @override + String get no_licenses_found => 'No licenses found'; + + @override + String get no_license_text_available => 'No license text available'; + + @override + String get error => 'Error'; + @override String get least_points => 'Least Points';