diff --git a/lib/l10n/arb/app_de.arb b/lib/l10n/arb/app_de.arb index 3a2685e..6aee6ee 100644 --- a/lib/l10n/arb/app_de.arb +++ b/lib/l10n/arb/app_de.arb @@ -42,7 +42,6 @@ "match_in_progress": "Spiel läuft...", "match_name": "Spieltitel", "matches": "Spiele", - "menu": "Menü", "most_points": "Höchste Punkte", "no_data_available": "Keine Daten verfügbar", "no_groups_created_yet": "Noch keine Gruppen erstellt", @@ -73,6 +72,7 @@ "search_for_players": "Nach Spieler:innen suchen", "select_winner": "Gewinner:in wählen:", "selected_players": "Ausgewählte Spieler:innen", + "settings": "Einstellungen", "single_loser": "Ein:e Verlierer:in", "single_winner": "Ein:e Gewinner:in", "statistics": "Statistiken", diff --git a/lib/l10n/arb/app_en.arb b/lib/l10n/arb/app_en.arb index c080532..c311050 100644 --- a/lib/l10n/arb/app_en.arb +++ b/lib/l10n/arb/app_en.arb @@ -131,9 +131,6 @@ "@matches": { "description": "Label for matches" }, - "@menu": { - "description": "Menu label" - }, "@most_points": { "description": "Title for most points ruleset" }, @@ -229,6 +226,9 @@ "@selected_players": { "description": "Shows the number of selected players" }, + "@settings": { + "description": "Label for the App Settings" + }, "@single_loser": { "description": "Title for single loser ruleset" }, @@ -319,7 +319,6 @@ "match_in_progress": "Match in progress...", "match_name": "Match name", "matches": "Matches", - "menu": "Menu", "most_points": "Most Points", "no_data_available": "No data available", "no_groups_created_yet": "No groups created yet", @@ -350,6 +349,7 @@ "search_for_players": "Search for players", "select_winner": "Select Winner:", "selected_players": "Selected players", + "settings": "Settings", "single_loser": "Single Loser", "single_winner": "Single Winner", "statistics": "Statistics", diff --git a/lib/l10n/generated/app_localizations.dart b/lib/l10n/generated/app_localizations.dart index 30aa685..399dc85 100644 --- a/lib/l10n/generated/app_localizations.dart +++ b/lib/l10n/generated/app_localizations.dart @@ -350,12 +350,6 @@ abstract class AppLocalizations { /// **'Matches'** String get matches; - /// Menu label - /// - /// In en, this message translates to: - /// **'Menu'** - String get menu; - /// Title for most points ruleset /// /// In en, this message translates to: @@ -536,6 +530,12 @@ abstract class AppLocalizations { /// **'Selected players'** String get selected_players; + /// Label for the App Settings + /// + /// In en, this message translates to: + /// **'Settings'** + String get settings; + /// Title for single loser 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 def4859..f4d0f8c 100644 --- a/lib/l10n/generated/app_localizations_de.dart +++ b/lib/l10n/generated/app_localizations_de.dart @@ -139,9 +139,6 @@ class AppLocalizationsDe extends AppLocalizations { @override String get matches => 'Spiele'; - @override - String get menu => 'Menü'; - @override String get most_points => 'Höchste Punkte'; @@ -239,6 +236,9 @@ class AppLocalizationsDe extends AppLocalizations { @override String get selected_players => 'Ausgewählte Spieler:innen'; + @override + String get settings => 'Einstellungen'; + @override String get single_loser => 'Ein:e Verlierer:in'; diff --git a/lib/l10n/generated/app_localizations_en.dart b/lib/l10n/generated/app_localizations_en.dart index 7419e24..6c4ac74 100644 --- a/lib/l10n/generated/app_localizations_en.dart +++ b/lib/l10n/generated/app_localizations_en.dart @@ -139,9 +139,6 @@ class AppLocalizationsEn extends AppLocalizations { @override String get matches => 'Matches'; - @override - String get menu => 'Menu'; - @override String get most_points => 'Most Points'; @@ -239,6 +236,9 @@ class AppLocalizationsEn extends AppLocalizations { @override String get selected_players => 'Selected players'; + @override + String get settings => 'Settings'; + @override String get single_loser => 'Single Loser'; diff --git a/lib/presentation/views/main_menu/settings_view/settings_view.dart b/lib/presentation/views/main_menu/settings_view/settings_view.dart index 3e1df91..8b9075a 100644 --- a/lib/presentation/views/main_menu/settings_view/settings_view.dart +++ b/lib/presentation/views/main_menu/settings_view/settings_view.dart @@ -50,7 +50,7 @@ class _SettingsViewState extends State { padding: const EdgeInsets.only(left: 16, bottom: 10), child: Text( textAlign: TextAlign.start, - loc.menu, + loc.settings, style: const TextStyle( fontSize: 28, fontWeight: FontWeight.bold, diff --git a/pubspec.yaml b/pubspec.yaml index d15ae4e..24d69c3 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.5+130 +version: 0.0.5+132 environment: sdk: ^3.8.1