Lokalisierung implementieren #112

Merged
sneeex merged 41 commits from feature/100-lokalisierung-hinzufügen into development 2026-01-07 11:30:11 +00:00
5 changed files with 18 additions and 1 deletions
Showing only changes of commit cc23c03f6b - Show all commits

View File

@@ -79,5 +79,6 @@
"least_points": "Niedrigste Punkte",
"search_for_players": "Nach Spielern suchen",
"search_for_groups": "Nach Gruppen suchen",
"no_data_available": "Keine Daten verfügbar"
"no_data_available": "Keine Daten verfügbar",
"not_available": "Nicht verfügbar"
}

View File

@@ -365,5 +365,9 @@
"search_for_groups": "Search for groups",
"@search_for_groups": {
"description": "Hint text for group search input field"
},
"not_available": "Not available",
"@not_available": {
"description": "Abbreviation for not available"
}
}

View File

@@ -577,6 +577,12 @@ abstract class AppLocalizations {
/// In en, this message translates to:
/// **'Search for groups'**
String get search_for_groups;
/// Abbreviation for not available
///
/// In en, this message translates to:
/// **'Not available'**
String get not_available;
}
class _AppLocalizationsDelegate

View File

@@ -276,4 +276,7 @@ class AppLocalizationsDe extends AppLocalizations {
@override
String get search_for_groups => 'Nach Gruppen suchen';
@override
String get not_available => 'Nicht verfügbar';
}

View File

@@ -275,4 +275,7 @@ class AppLocalizationsEn extends AppLocalizations {
@override
String get search_for_groups => 'Search for groups';
@override
String get not_available => 'Not available';
}