4 Commits

Author SHA1 Message Date
534d19efc3 Implemented localization across the application.
Some checks failed
Pull Request Pipeline / test (pull_request) Successful in 2m5s
Pull Request Pipeline / lint (pull_request) Failing after 2m22s
2026-01-01 00:21:09 +01:00
d9a26a8cf7 Added English and German localization files containing all strings used in app 2026-01-01 00:20:44 +01:00
8e05e9d61b Added l10n.yaml for localization configuration 2026-01-01 00:20:22 +01:00
179ac2fe21 Update localization dependencies and enable code generation 2026-01-01 00:20:16 +01:00
21 changed files with 697 additions and 158 deletions

4
l10n.yaml Normal file
View File

@@ -0,0 +1,4 @@
arb-dir: lib/l10n/arb
template-arb-file: app_en.arb
output-localization-file: app_localizations.dart
output-dir: lib/l10n/generated

View File

@@ -1,3 +1,6 @@
import 'package:flutter/material.dart';
import 'package:game_tracker/l10n/generated/app_localizations.dart';
/// Button types used for styling the [CustomWidthButton] /// Button types used for styling the [CustomWidthButton]
enum ButtonType { primary, secondary, tertiary } enum ButtonType { primary, secondary, tertiary }
@@ -30,16 +33,16 @@ enum ExportResult { success, canceled, unknownException }
/// - [Ruleset.leastPoints]: The player with the fewest points wins. /// - [Ruleset.leastPoints]: The player with the fewest points wins.
enum Ruleset { singleWinner, singleLoser, mostPoints, leastPoints } enum Ruleset { singleWinner, singleLoser, mostPoints, leastPoints }
/// Translates a [Ruleset] enum value to its corresponding string representation. /// Translates a [Ruleset] enum value to its corresponding localized string.
String translateRulesetToString(Ruleset ruleset) { String translateRulesetToString(Ruleset ruleset, BuildContext context) {
switch (ruleset) { switch (ruleset) {
case Ruleset.singleWinner: case Ruleset.singleWinner:
return 'Single Winner'; return AppLocalizations.of(context)!.single_winner;
case Ruleset.singleLoser: case Ruleset.singleLoser:
return 'Single Loser'; return AppLocalizations.of(context)!.single_loser;
case Ruleset.mostPoints: case Ruleset.mostPoints:
return 'Most Points'; return AppLocalizations.of(context)!.most_points;
case Ruleset.leastPoints: case Ruleset.leastPoints:
return 'Least Points'; return AppLocalizations.of(context)!.least_points;
} }
} }

84
lib/l10n/arb/app_de.arb Normal file
View File

@@ -0,0 +1,84 @@
{
"@@locale": "de",
"choose_group": "Gruppe wählen",
"create_new_match": "Neues Match erstellen",
"choose_ruleset": "Regelwerk wählen",
"choose_game": "Spiel wählen",
"select_winner": "Gewinner wählen:",
"no_recent_matches_available": "Keine letzten Matches verfügbar",
"no_second_match_available": "Kein zweites Match verfügbar",
"delete_all_data": "Alle Daten löschen?",
"cancel": "Abbrechen",
"delete": "Löschen",
"create_new_group": "Neue Gruppe erstellen",
"error_while_creating_group_please_try_again": "Fehler beim Erstellen der Gruppe, bitte erneut versuchen",
"selected_players": "Ausgewählte Spieler: {count}",
"no_players_selected": "Keine Spieler ausgewählt",
"all_players": "Alle Spieler:",
"successfully_added_player": "Spieler {playerName} erfolgreich hinzugefügt.",
"could_not_add_player": "Spieler {playerName} konnte nicht hinzugefügt werden.",
"winner": "Gewinner: {winnerName}",
"players": "Spieler",
"player_name": "Spielername",
"no_data_available": "Keine Daten verfügbar.",
"matches": "Matches",
"groups": "Gruppen",
"recent_matches": "Letzte Matches",
"quick_create": "Schnellzugriff",
"winner_label": "Gewinner",
"ruleset_label": "Regelwerk",
"match_in_progress": "Match läuft...",
"menu": "Menü",
"settings": "Einstellungen",
"export_data": "Daten exportieren",
"import_data": "Daten importieren",
"this_cannot_be_undone": "Dies kann nicht rückgängig gemacht werden",
"data_successfully_deleted": "Daten erfolgreich gelöscht",
"data_successfully_imported": "Daten erfolgreich importiert",
"invalid_schema": "Ungültiges Schema",
"error_reading_file": "Fehler beim Lesen der Datei",
"import_canceled": "Import abgebrochen",
"format_exception": "Formatfehler (siehe Konsole)",
"unknown_exception": "Unbekannter Fehler (siehe Konsole)",
"data_successfully_exported": "Daten erfolgreich exportiert",
"export_canceled": "Export abgebrochen",
"undo": "Rückgängig",
"wins": "Siege",
"winrate": "Siegquote",
"amount_of_matches": "Anzahl der Matches",
"info": "Info",
"no_groups_created_yet": "Noch keine Gruppen erstellt",
"create_group": "Gruppe erstellen",
"group_name": "Gruppenname",
"no_matches_created_yet": "Noch keine Matches erstellt",
"create_game": "Match erstellen",
"match_name": "Matchname",
"game": "Spiel",
"ruleset": "Regelwerk",
"group": "Gruppe",
"none": "Keine",
"create_match": "Match erstellen",
"search_for_players": "Nach Spielern suchen",
"search_for_groups": "Nach Gruppen suchen",
"no_players_created_yet": "Noch keine Spieler erstellt",
"all_players_selected": "Alle Spieler ausgewählt",
"no_players_found_with_that_name": "Keine Spieler mit diesem Namen gefunden",
"today_at": "Heute um {time}",
"yesterday_at": "Gestern um {time}",
"days_ago": "vor {count} Tagen",
"home": "Startseite",
"statistics": "Statistiken",
"stats": "Statistiken",
"players_count": "{count} Spieler",
"you_have_no_groups_created_yet": "Du hast noch keine Gruppen erstellt",
"there_is_no_group_matching_your_search": "Es gibt keine Gruppe, die deiner Suche entspricht",
"game_name": "Spielname",
"ruleset_single_winner_desc": "Genau ein Gewinner wird gewählt; Unentschieden werden durch einen vordefinierten Tie-Breaker aufgelöst.",
"ruleset_single_loser_desc": "Genau ein Verlierer wird bestimmt; der letzte Platz erhält die Strafe oder Konsequenz.",
"ruleset_most_points_desc": "Traditionelles Regelwerk: Der Spieler mit den meisten Punkten gewinnt.",
"ruleset_least_points_desc": "Umgekehrte Wertung: Der Spieler mit den wenigsten Punkten gewinnt.",
"single_winner": "Ein Gewinner",
"single_loser": "Ein Verlierer",
"most_points": "Höchste Punkte",
"least_points": "Niedrigste Punkte"
}

357
lib/l10n/arb/app_en.arb Normal file
View File

@@ -0,0 +1,357 @@
{
"@@locale": "en",
"choose_group": "Choose Group",
"@choose_group": {
"description": "Label for choosing a group"
},
"create_new_match": "Create new match",
"@create_new_match": {
"description": "Button text to create a new match"
},
"choose_ruleset": "Choose Ruleset",
"@choose_ruleset": {
"description": "Label for choosing a ruleset"
},
"choose_game": "Choose Game",
"@choose_game": {
"description": "Label for choosing a game"
},
"select_winner": "Select Winner:",
"@select_winner": {
"description": "Label to select the winner"
},
"no_recent_matches_available": "No recent matches available",
"@no_recent_matches_available": {
"description": "Message when no recent matches exist"
},
"no_second_match_available": "No second match available",
"@no_second_matcb_available": {
"description": "Message when no second match exists"
},
"delete_all_data": "Delete all data?",
"@delete_all_data": {
"description": "Confirmation dialog for deleting all data"
},
"cancel": "Cancel",
"@cancel": {
"description": "Cancel button text"
},
"delete": "Delete",
"@delete": {
"description": "Delete button text"
},
"create_new_group": "Create new group",
"@create_new_group": {
"description": "Button text to create a new group"
},
"error_while_creating_group_please_try_again": "Error while creating group, please try again",
"@error_while_creating_group_please_try_again": {
"description": "Error message when group creation fails"
},
"selected_players": "Selected players: {count}",
"@selected_players": {
"description": "Shows the number of selected players",
"placeholders": {
"count": {
"type": "int",
"format": "compact"
}
}
},
"no_players_selected": "No players selected",
"@no_players_selected": {
"description": "Message when no players are selected"
},
"all_players": "All players:",
"@all_players": {
"description": "Label for all players list"
},
"successfully_added_player": "Successfully added player {playerName}.",
"@successfully_added_player": {
"description": "Success message when adding a player",
"placeholders": {
"playerName": {
"type": "String",
"example": "John"
}
}
},
"could_not_add_player": "Could not add player {playerName}.",
"@could_not_add_player": {
"description": "Error message when adding a player fails",
"placeholders": {
"playerName": {
"type": "String",
"example": "John"
}
}
},
"winner": "Winner: {winnerName}",
"@winner": {
"description": "Shows the winner's name",
"placeholders": {
"winnerName": {
"type": "String",
"example": "John"
}
}
},
"players": "Players",
"@players": {
"description": "Players label"
},
"no_data_available": "No data available.",
"@no_data_available": {
"description": "Message when no data is available"
},
"matches": "Matches",
"@matches": {
"description": "Label for matches"
},
"groups": "Groups",
"@groups": {
"description": "Label for groups"
},
"recent_matches": "Recent Matches",
"@recent_matches": {
"description": "Title for recent matches section"
},
"quick_create": "Quick Create",
"@quick_create": {
"description": "Title for quick create section"
},
"winner_label": "Winner",
"@winner_label": {
"description": "Label for winner field"
},
"ruleset_label": "Ruleset",
"@ruleset_label": {
"description": "Label for ruleset field"
},
"match_in_progress": "Match in progress...",
"@match_in_progress": {
"description": "Message when match is in progress"
},
"menu": "Menu",
"@menu": {
"description": "Menu label"
},
"settings": "Settings",
"@settings": {
"description": "Settings label"
},
"export_data": "Export data",
"@export_data": {
"description": "Export data menu item"
},
"import_data": "Import data",
"@import_data": {
"description": "Import data menu item"
},
"this_cannot_be_undone": "This can't be undone",
"@this_cannot_be_undone": {
"description": "Warning message for irreversible actions"
},
"data_successfully_deleted": "Data successfully deleted",
"@data_successfully_deleted": {
"description": "Success message after deleting data"
},
"data_successfully_imported": "Data successfully imported",
"@data_successfully_imported": {
"description": "Success message after importing data"
},
"invalid_schema": "Invalid Schema",
"@invalid_schema": {
"description": "Error message for invalid schema"
},
"error_reading_file": "Error reading file",
"@error_reading_file": {
"description": "Error message when file cannot be read"
},
"import_canceled": "Import canceled",
"@import_canceled": {
"description": "Message when import is canceled"
},
"format_exception": "Format Exception (see console)",
"@format_exception": {
"description": "Error message for format exceptions"
},
"unknown_exception": "Unknown Exception (see console)",
"@unknown_exception": {
"description": "Error message for unknown exceptions"
},
"data_successfully_exported": "Data successfully exported",
"@data_successfully_exported": {
"description": "Success message after exporting data"
},
"export_canceled": "Export canceled",
"@export_canceled": {
"description": "Message when export is canceled"
},
"undo": "Undo",
"@undo": {
"description": "Undo button text"
},
"wins": "Wins",
"@wins": {
"description": "Label for wins statistic"
},
"winrate": "Winrate",
"@winrate": {
"description": "Label for winrate statistic"
},
"amount_of_matches": "Amount of Matches",
"@amount_of_matches": {
"description": "Label for amount of matches statistic"
},
"info": "Info",
"@info": {
"description": "Info label"
},
"no_groups_created_yet": "No groups created yet",
"@no_groups_created_yet": {
"description": "Message when no groups exist"
},
"no_players_created_yet": "No players created yet",
"@no_players_created_yet": {
"description": "Message when no players exist"
},
"create_group": "Create Group",
"@create_group": {
"description": "Button text to create a group"
},
"group_name": "Group name",
"@group_name": {
"description": "Placeholder for group name input"
},
"player_name": "Player name",
"@player_name": {
"description": "Placeholder for player name input"
},
"no_matches_created_yet": "No matches created yet",
"@no_matches_created_yet": {
"description": "Message when no matches exist"
},
"match_name": "Match name",
"@match_name": {
"description": "Placeholder for match name input"
},
"game": "Game",
"@game": {
"description": "Game label"
},
"ruleset": "Ruleset",
"@ruleset": {
"description": "Ruleset label"
},
"group": "Group",
"@group": {
"description": "Group label"
},
"none": "None",
"@none": {
"description": "None option label"
},
"create_match": "Create match",
"@create_match": {
"description": "Button text to create a match"
},
"no_players_found_with_that_name": "No players found with that name",
"@no_players_found_with_that_name": {
"description": "Message when search returns no results"
},
"all_players_selected": "All players selected",
"@all_players_selected": {
"description": "Message when all players are added to selection"
},
"today_at": "Today at {time}",
"@today_at": {
"description": "Date format for today",
"placeholders": {
"time": {
"type": "String",
"example": "14:30"
}
}
},
"yesterday_at": "Yesterday at {time}",
"@yesterday_at": {
"description": "Date format for yesterday",
"placeholders": {
"time": {
"type": "String",
"example": "14:30"
}
}
},
"days_ago": "{count} days ago",
"@days_ago": {
"description": "Date format for days ago",
"placeholders": {
"count": {
"type": "int"
}
}
},
"home": "Home",
"@home": {
"description": "Home tab label"
},
"statistics": "Statistics",
"@statistics": {
"description": "Statistics tab label"
},
"stats": "Stats",
"@stats": {
"description": "Stats tab label (short)"
},
"players_count": "{count} Players",
"@players_count": {
"description": "Shows the number of players",
"placeholders": {
"count": {
"type": "int"
}
}
},
"there_is_no_group_matching_your_search": "There is no group matching your search",
"@there_is_no_group_matching_your_search": {
"description": "Message when search returns no groups"
},
"game_name": "Game Name",
"@game_name": {
"description": "Placeholder for game name search"
},
"ruleset_single_winner_desc": "Exactly one winner is chosen; ties are resolved by a predefined tiebreaker.",
"@ruleset_single_winner_desc": {
"description": "Description for single winner ruleset"
},
"ruleset_single_loser_desc": "Exactly one loser is determined; last place receives the penalty or consequence.",
"@ruleset_single_loser_desc": {
"description": "Description for single loser ruleset"
},
"ruleset_most_points_desc": "Traditional ruleset: the player with the most points wins.",
"@ruleset_most_points_desc": {
"description": "Description for most points ruleset"
},
"ruleset_least_points_desc": "Inverse scoring: the player with the fewest points wins.",
"@ruleset_least_points_desc": {
"description": "Description for least points ruleset"
},
"single_winner": "Single Winner",
"@single_winner": {
"description": "Title for single winner ruleset"
},
"single_loser": "Single Loser",
"@single_loser": {
"description": "Title for single loser ruleset"
},
"most_points": "Most Points",
"@most_points": {
"description": "Title for most points ruleset"
},
"least_points": "Least Points",
"@least_points": {
"description": "Title for least points ruleset"
}
}

View File

@@ -1,6 +1,7 @@
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:game_tracker/core/custom_theme.dart'; import 'package:game_tracker/core/custom_theme.dart';
import 'package:game_tracker/data/db/database.dart'; import 'package:game_tracker/data/db/database.dart';
import 'package:game_tracker/l10n/generated/app_localizations.dart';
import 'package:game_tracker/presentation/views/main_menu/custom_navigation_bar.dart'; import 'package:game_tracker/presentation/views/main_menu/custom_navigation_bar.dart';
import 'package:provider/provider.dart'; import 'package:provider/provider.dart';
@@ -20,6 +21,8 @@ class GameTracker extends StatelessWidget {
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return MaterialApp( return MaterialApp(
localizationsDelegates: AppLocalizations.localizationsDelegates,
supportedLocales: AppLocalizations.supportedLocales,
debugShowCheckedModeBanner: false, debugShowCheckedModeBanner: false,
title: 'Game Tracker', title: 'Game Tracker',
darkTheme: ThemeData.dark(), darkTheme: ThemeData.dark(),

View File

@@ -1,5 +1,6 @@
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:game_tracker/core/custom_theme.dart'; import 'package:game_tracker/core/custom_theme.dart';
import 'package:game_tracker/l10n/generated/app_localizations.dart';
import 'package:game_tracker/presentation/views/main_menu/group_view/groups_view.dart'; import 'package:game_tracker/presentation/views/main_menu/group_view/groups_view.dart';
import 'package:game_tracker/presentation/views/main_menu/home_view.dart'; import 'package:game_tracker/presentation/views/main_menu/home_view.dart';
import 'package:game_tracker/presentation/views/main_menu/match_view/match_view.dart'; import 'package:game_tracker/presentation/views/main_menu/match_view/match_view.dart';
@@ -89,28 +90,28 @@ class _CustomNavigationBarState extends State<CustomNavigationBar>
index: 0, index: 0,
isSelected: currentIndex == 0, isSelected: currentIndex == 0,
icon: Icons.home_rounded, icon: Icons.home_rounded,
label: 'Home', label: AppLocalizations.of(context)!.home,
onTabTapped: onTabTapped, onTabTapped: onTabTapped,
), ),
NavbarItem( NavbarItem(
index: 1, index: 1,
isSelected: currentIndex == 1, isSelected: currentIndex == 1,
icon: Icons.gamepad_rounded, icon: Icons.gamepad_rounded,
label: 'Matches', label: AppLocalizations.of(context)!.matches,
onTabTapped: onTabTapped, onTabTapped: onTabTapped,
), ),
NavbarItem( NavbarItem(
index: 2, index: 2,
isSelected: currentIndex == 2, isSelected: currentIndex == 2,
icon: Icons.group_rounded, icon: Icons.group_rounded,
label: 'Groups', label: AppLocalizations.of(context)!.groups,
onTabTapped: onTabTapped, onTabTapped: onTabTapped,
), ),
NavbarItem( NavbarItem(
index: 3, index: 3,
isSelected: currentIndex == 3, isSelected: currentIndex == 3,
icon: Icons.bar_chart_rounded, icon: Icons.bar_chart_rounded,
label: 'Stats', label: AppLocalizations.of(context)!.statistics,
onTabTapped: onTabTapped, onTabTapped: onTabTapped,
), ),
], ],
@@ -131,13 +132,13 @@ class _CustomNavigationBarState extends State<CustomNavigationBar>
String _currentTabTitle() { String _currentTabTitle() {
switch (currentIndex) { switch (currentIndex) {
case 0: case 0:
return 'Home'; return AppLocalizations.of(context)!.home;
case 1: case 1:
return 'Matches'; return AppLocalizations.of(context)!.matches;
case 2: case 2:
return 'Groups'; return AppLocalizations.of(context)!.groups;
case 3: case 3:
return 'Statistics'; return AppLocalizations.of(context)!.statistics;
default: default:
return ''; return '';
} }

View File

@@ -4,6 +4,7 @@ import 'package:game_tracker/core/enums.dart';
import 'package:game_tracker/data/db/database.dart'; import 'package:game_tracker/data/db/database.dart';
import 'package:game_tracker/data/dto/group.dart'; import 'package:game_tracker/data/dto/group.dart';
import 'package:game_tracker/data/dto/player.dart'; import 'package:game_tracker/data/dto/player.dart';
import 'package:game_tracker/l10n/generated/app_localizations.dart';
import 'package:game_tracker/presentation/widgets/buttons/custom_width_button.dart'; import 'package:game_tracker/presentation/widgets/buttons/custom_width_button.dart';
import 'package:game_tracker/presentation/widgets/player_selection.dart'; import 'package:game_tracker/presentation/widgets/player_selection.dart';
import 'package:game_tracker/presentation/widgets/text_input/text_input_field.dart'; import 'package:game_tracker/presentation/widgets/text_input/text_input_field.dart';
@@ -43,8 +44,8 @@ class _CreateGroupViewState extends State<CreateGroupView> {
appBar: AppBar( appBar: AppBar(
backgroundColor: CustomTheme.backgroundColor, backgroundColor: CustomTheme.backgroundColor,
scrolledUnderElevation: 0, scrolledUnderElevation: 0,
title: const Text( title: Text(
'Create new group', AppLocalizations.of(context)!.create_new_group,
style: TextStyle(fontSize: 20, fontWeight: FontWeight.bold), style: TextStyle(fontSize: 20, fontWeight: FontWeight.bold),
), ),
centerTitle: true, centerTitle: true,
@@ -57,7 +58,7 @@ class _CreateGroupViewState extends State<CreateGroupView> {
margin: const EdgeInsets.symmetric(horizontal: 12, vertical: 10), margin: const EdgeInsets.symmetric(horizontal: 12, vertical: 10),
child: TextInputField( child: TextInputField(
controller: _groupNameController, controller: _groupNameController,
hintText: 'Group name', hintText: AppLocalizations.of(context)!.group_name,
onChanged: (value) { onChanged: (value) {
setState(() {}); setState(() {});
}, },
@@ -73,7 +74,7 @@ class _CreateGroupViewState extends State<CreateGroupView> {
), ),
), ),
CustomWidthButton( CustomWidthButton(
text: 'Create group', text: AppLocalizations.of(context)!.create_group,
sizeRelativeToWidth: 0.95, sizeRelativeToWidth: 0.95,
buttonType: ButtonType.primary, buttonType: ButtonType.primary,
onPressed: onPressed:
@@ -94,10 +95,12 @@ class _CreateGroupViewState extends State<CreateGroupView> {
ScaffoldMessenger.of(context).showSnackBar( ScaffoldMessenger.of(context).showSnackBar(
SnackBar( SnackBar(
backgroundColor: CustomTheme.boxColor, backgroundColor: CustomTheme.boxColor,
content: const Center( content: Center(
child: Text( child: Text(
'Error while creating group, please try again', AppLocalizations.of(
style: TextStyle(color: Colors.white), context,
)!.error_while_creating_group_please_try_again,
style: const TextStyle(color: Colors.white),
), ),
), ),
), ),

View File

@@ -4,6 +4,7 @@ import 'package:game_tracker/core/custom_theme.dart';
import 'package:game_tracker/data/db/database.dart'; import 'package:game_tracker/data/db/database.dart';
import 'package:game_tracker/data/dto/group.dart'; import 'package:game_tracker/data/dto/group.dart';
import 'package:game_tracker/data/dto/player.dart'; import 'package:game_tracker/data/dto/player.dart';
import 'package:game_tracker/l10n/generated/app_localizations.dart';
import 'package:game_tracker/presentation/views/main_menu/group_view/create_group_view.dart'; import 'package:game_tracker/presentation/views/main_menu/group_view/create_group_view.dart';
import 'package:game_tracker/presentation/widgets/app_skeleton.dart'; import 'package:game_tracker/presentation/widgets/app_skeleton.dart';
import 'package:game_tracker/presentation/widgets/buttons/custom_width_button.dart'; import 'package:game_tracker/presentation/widgets/buttons/custom_width_button.dart';
@@ -49,11 +50,11 @@ class _GroupsViewState extends State<GroupsView> {
enabled: isLoading, enabled: isLoading,
child: Visibility( child: Visibility(
visible: groups.isNotEmpty, visible: groups.isNotEmpty,
replacement: const Center( replacement: Center(
child: TopCenteredMessage( child: TopCenteredMessage(
icon: Icons.info, icon: Icons.info,
title: 'Info', title: AppLocalizations.of(context)!.info,
message: 'No groups created yet', message: AppLocalizations.of(context)!.no_groups_created_yet,
), ),
), ),
child: ListView.builder( child: ListView.builder(
@@ -73,7 +74,7 @@ class _GroupsViewState extends State<GroupsView> {
Positioned( Positioned(
bottom: MediaQuery.paddingOf(context).bottom, bottom: MediaQuery.paddingOf(context).bottom,
child: CustomWidthButton( child: CustomWidthButton(
text: 'Create Group', text: AppLocalizations.of(context)!.create_group,
sizeRelativeToWidth: 0.90, sizeRelativeToWidth: 0.90,
onPressed: () async { onPressed: () async {
await Navigator.push( await Navigator.push(

View File

@@ -4,6 +4,7 @@ import 'package:game_tracker/data/db/database.dart';
import 'package:game_tracker/data/dto/group.dart'; import 'package:game_tracker/data/dto/group.dart';
import 'package:game_tracker/data/dto/match.dart'; import 'package:game_tracker/data/dto/match.dart';
import 'package:game_tracker/data/dto/player.dart'; import 'package:game_tracker/data/dto/player.dart';
import 'package:game_tracker/l10n/generated/app_localizations.dart';
import 'package:game_tracker/presentation/widgets/app_skeleton.dart'; import 'package:game_tracker/presentation/widgets/app_skeleton.dart';
import 'package:game_tracker/presentation/widgets/buttons/quick_create_button.dart'; import 'package:game_tracker/presentation/widgets/buttons/quick_create_button.dart';
import 'package:game_tracker/presentation/widgets/tiles/game_tile.dart'; import 'package:game_tracker/presentation/widgets/tiles/game_tile.dart';
@@ -86,7 +87,7 @@ class _HomeViewState extends State<HomeView> {
QuickInfoTile( QuickInfoTile(
width: constraints.maxWidth * 0.45, width: constraints.maxWidth * 0.45,
height: constraints.maxHeight * 0.15, height: constraints.maxHeight * 0.15,
title: 'Matches', title: AppLocalizations.of(context)!.matches,
icon: Icons.groups_rounded, icon: Icons.groups_rounded,
value: matchCount, value: matchCount,
), ),
@@ -94,7 +95,7 @@ class _HomeViewState extends State<HomeView> {
QuickInfoTile( QuickInfoTile(
width: constraints.maxWidth * 0.45, width: constraints.maxWidth * 0.45,
height: constraints.maxHeight * 0.15, height: constraints.maxHeight * 0.15,
title: 'Groups', title: AppLocalizations.of(context)!.groups,
icon: Icons.groups_rounded, icon: Icons.groups_rounded,
value: groupCount, value: groupCount,
), ),
@@ -104,15 +105,19 @@ class _HomeViewState extends State<HomeView> {
padding: const EdgeInsets.symmetric(vertical: 16.0), padding: const EdgeInsets.symmetric(vertical: 16.0),
child: InfoTile( child: InfoTile(
width: constraints.maxWidth * 0.95, width: constraints.maxWidth * 0.95,
title: 'Recent Matches', title: AppLocalizations.of(context)!.recent_matches,
icon: Icons.timer, icon: Icons.timer,
content: Padding( content: Padding(
padding: const EdgeInsets.symmetric(horizontal: 40.0), padding: const EdgeInsets.symmetric(horizontal: 40.0),
child: Visibility( child: Visibility(
visible: !isLoading && loadedRecentMatches.isNotEmpty, visible: !isLoading && loadedRecentMatches.isNotEmpty,
replacement: const Center( replacement: Center(
heightFactor: 12, heightFactor: 12,
child: Text('No recent games available'), child: Text(
AppLocalizations.of(
context,
)!.no_recent_matches_available,
),
), ),
child: Column( child: Column(
mainAxisAlignment: MainAxisAlignment.start, mainAxisAlignment: MainAxisAlignment.start,
@@ -120,11 +125,15 @@ class _HomeViewState extends State<HomeView> {
children: [ children: [
MatchTile( MatchTile(
matchTitle: recentMatches[0].name, matchTitle: recentMatches[0].name,
game: 'Winner', game: AppLocalizations.of(context)!.winner_label,
ruleset: 'Ruleset', ruleset: AppLocalizations.of(
context,
)!.ruleset_label,
players: _getPlayerText(recentMatches[0]), players: _getPlayerText(recentMatches[0]),
winner: recentMatches[0].winner == null winner: recentMatches[0].winner == null
? 'Match in progress...' ? AppLocalizations.of(
context,
)!.match_in_progress
: recentMatches[0].winner!.name, : recentMatches[0].winner!.name,
), ),
const Padding( const Padding(
@@ -134,18 +143,28 @@ class _HomeViewState extends State<HomeView> {
if (loadedRecentMatches.length > 1) ...[ if (loadedRecentMatches.length > 1) ...[
MatchTile( MatchTile(
matchTitle: recentMatches[1].name, matchTitle: recentMatches[1].name,
game: 'Winner', game: AppLocalizations.of(
ruleset: 'Ruleset', context,
)!.winner_label,
ruleset: AppLocalizations.of(
context,
)!.ruleset_label,
players: _getPlayerText(recentMatches[1]), players: _getPlayerText(recentMatches[1]),
winner: recentMatches[1].winner == null winner: recentMatches[1].winner == null
? 'Game in progress...' ? AppLocalizations.of(
context,
)!.match_in_progress
: recentMatches[1].winner!.name, : recentMatches[1].winner!.name,
), ),
const SizedBox(height: 8), const SizedBox(height: 8),
] else ...[ ] else ...[
const Center( Center(
heightFactor: 5.35, heightFactor: 5.35,
child: Text('No second game available'), child: Text(
AppLocalizations.of(
context,
)!.no_second_match_available,
),
), ),
], ],
], ],
@@ -156,7 +175,7 @@ class _HomeViewState extends State<HomeView> {
), ),
InfoTile( InfoTile(
width: constraints.maxWidth * 0.95, width: constraints.maxWidth * 0.95,
title: 'Quick Create', title: AppLocalizations.of(context)!.quick_create,
icon: Icons.add_box_rounded, icon: Icons.add_box_rounded,
content: Column( content: Column(
children: [ children: [
@@ -213,7 +232,7 @@ class _HomeViewState extends State<HomeView> {
String _getPlayerText(Match game) { String _getPlayerText(Match game) {
if (game.group == null) { if (game.group == null) {
final playerCount = game.players?.length ?? 0; final playerCount = game.players?.length ?? 0;
return '$playerCount Players'; return AppLocalizations.of(context)!.players_count(playerCount);
} }
if (game.players == null || game.players!.isEmpty) { if (game.players == null || game.players!.isEmpty) {
return game.group!.name; return game.group!.name;

View File

@@ -1,6 +1,7 @@
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:game_tracker/core/custom_theme.dart'; import 'package:game_tracker/core/custom_theme.dart';
import 'package:game_tracker/core/enums.dart'; import 'package:game_tracker/core/enums.dart';
import 'package:game_tracker/l10n/generated/app_localizations.dart';
import 'package:game_tracker/presentation/widgets/text_input/custom_search_bar.dart'; import 'package:game_tracker/presentation/widgets/text_input/custom_search_bar.dart';
import 'package:game_tracker/presentation/widgets/tiles/title_description_list_tile.dart'; import 'package:game_tracker/presentation/widgets/tiles/title_description_list_tile.dart';
@@ -41,8 +42,8 @@ class _ChooseGameViewState extends State<ChooseGameView> {
Navigator.of(context).pop(selectedGameIndex); Navigator.of(context).pop(selectedGameIndex);
}, },
), ),
title: const Text( title: Text(
'Choose Game', AppLocalizations.of(context)!.choose_game,
style: TextStyle(fontSize: 20, fontWeight: FontWeight.bold), style: TextStyle(fontSize: 20, fontWeight: FontWeight.bold),
), ),
centerTitle: true, centerTitle: true,
@@ -53,7 +54,7 @@ class _ChooseGameViewState extends State<ChooseGameView> {
padding: const EdgeInsets.symmetric(horizontal: 10), padding: const EdgeInsets.symmetric(horizontal: 10),
child: CustomSearchBar( child: CustomSearchBar(
controller: searchBarController, controller: searchBarController,
hintText: 'Game Name', hintText: AppLocalizations.of(context)!.game_name,
), ),
), ),
const SizedBox(height: 5), const SizedBox(height: 5),
@@ -64,8 +65,10 @@ class _ChooseGameViewState extends State<ChooseGameView> {
return TitleDescriptionListTile( return TitleDescriptionListTile(
title: widget.games[index].$1, title: widget.games[index].$1,
description: widget.games[index].$2, description: widget.games[index].$2,
badgeText: translateRulesetToString(widget.games[index].$3), badgeText: translateRulesetToString(
isHighlighted: selectedGameIndex == index, widget.games[index].$3,
context,
),
onPressed: () async { onPressed: () async {
setState(() { setState(() {
if (selectedGameIndex == index) { if (selectedGameIndex == index) {

View File

@@ -1,6 +1,7 @@
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:game_tracker/core/custom_theme.dart'; import 'package:game_tracker/core/custom_theme.dart';
import 'package:game_tracker/data/dto/group.dart'; import 'package:game_tracker/data/dto/group.dart';
import 'package:game_tracker/l10n/generated/app_localizations.dart';
import 'package:game_tracker/presentation/widgets/text_input/custom_search_bar.dart'; import 'package:game_tracker/presentation/widgets/text_input/custom_search_bar.dart';
import 'package:game_tracker/presentation/widgets/tiles/group_tile.dart'; import 'package:game_tracker/presentation/widgets/tiles/group_tile.dart';
import 'package:game_tracker/presentation/widgets/top_centered_message.dart'; import 'package:game_tracker/presentation/widgets/top_centered_message.dart';
@@ -22,7 +23,6 @@ class ChooseGroupView extends StatefulWidget {
class _ChooseGroupViewState extends State<ChooseGroupView> { class _ChooseGroupViewState extends State<ChooseGroupView> {
late String selectedGroupId; late String selectedGroupId;
final TextEditingController controller = TextEditingController(); final TextEditingController controller = TextEditingController();
final String hintText = 'Group Name';
late final List<Group> filteredGroups; late final List<Group> filteredGroups;
@override @override
@@ -51,8 +51,8 @@ class _ChooseGroupViewState extends State<ChooseGroupView> {
); );
}, },
), ),
title: const Text( title: Text(
'Choose Group', AppLocalizations.of(context)!.choose_group,
style: TextStyle(fontSize: 20, fontWeight: FontWeight.bold), style: TextStyle(fontSize: 20, fontWeight: FontWeight.bold),
), ),
centerTitle: true, centerTitle: true,
@@ -63,7 +63,7 @@ class _ChooseGroupViewState extends State<ChooseGroupView> {
padding: const EdgeInsets.symmetric(horizontal: 10), padding: const EdgeInsets.symmetric(horizontal: 10),
child: CustomSearchBar( child: CustomSearchBar(
controller: controller, controller: controller,
hintText: hintText, hintText: AppLocalizations.of(context)!.group_name,
onChanged: (value) { onChanged: (value) {
setState(() { setState(() {
filterGroups(value); filterGroups(value);
@@ -76,15 +76,17 @@ class _ChooseGroupViewState extends State<ChooseGroupView> {
visible: filteredGroups.isNotEmpty, visible: filteredGroups.isNotEmpty,
replacement: Visibility( replacement: Visibility(
visible: widget.groups.isNotEmpty, visible: widget.groups.isNotEmpty,
replacement: const TopCenteredMessage( replacement: TopCenteredMessage(
icon: Icons.info, icon: Icons.info,
title: 'Info', title: AppLocalizations.of(context)!.info,
message: 'You have no groups created yet', message: AppLocalizations.of(context)!.no_groups_created_yet,
), ),
child: const TopCenteredMessage( child: TopCenteredMessage(
icon: Icons.info, icon: Icons.info,
title: 'Info', title: AppLocalizations.of(context)!.info,
message: 'There is no group matching your search', message: AppLocalizations.of(
context,
)!.there_is_no_group_matching_your_search,
), ),
), ),
child: ListView.builder( child: ListView.builder(

View File

@@ -1,6 +1,7 @@
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:game_tracker/core/custom_theme.dart'; import 'package:game_tracker/core/custom_theme.dart';
import 'package:game_tracker/core/enums.dart'; import 'package:game_tracker/core/enums.dart';
import 'package:game_tracker/l10n/generated/app_localizations.dart';
import 'package:game_tracker/presentation/widgets/tiles/title_description_list_tile.dart'; import 'package:game_tracker/presentation/widgets/tiles/title_description_list_tile.dart';
class ChooseRulesetView extends StatefulWidget { class ChooseRulesetView extends StatefulWidget {
@@ -46,8 +47,8 @@ class _ChooseRulesetViewState extends State<ChooseRulesetView> {
); );
}, },
), ),
title: const Text( title: Text(
'Choose Ruleset', AppLocalizations.of(context)!.choose_ruleset,
style: TextStyle(fontSize: 20, fontWeight: FontWeight.bold), style: TextStyle(fontSize: 20, fontWeight: FontWeight.bold),
), ),
centerTitle: true, centerTitle: true,
@@ -66,7 +67,10 @@ class _ChooseRulesetViewState extends State<ChooseRulesetView> {
} }
}); });
}, },
title: translateRulesetToString(widget.rulesets[index].$1), title: translateRulesetToString(
widget.rulesets[index].$1,
context,
),
description: widget.rulesets[index].$2, description: widget.rulesets[index].$2,
isHighlighted: selectedRulesetIndex == index, isHighlighted: selectedRulesetIndex == index,
); );

View File

@@ -6,6 +6,7 @@ import 'package:game_tracker/data/db/database.dart';
import 'package:game_tracker/data/dto/group.dart'; import 'package:game_tracker/data/dto/group.dart';
import 'package:game_tracker/data/dto/match.dart'; import 'package:game_tracker/data/dto/match.dart';
import 'package:game_tracker/data/dto/player.dart'; import 'package:game_tracker/data/dto/player.dart';
import 'package:game_tracker/l10n/generated/app_localizations.dart';
import 'package:game_tracker/presentation/views/main_menu/match_view/create_match/choose_game_view.dart'; import 'package:game_tracker/presentation/views/main_menu/match_view/create_match/choose_game_view.dart';
import 'package:game_tracker/presentation/views/main_menu/match_view/create_match/choose_group_view.dart'; import 'package:game_tracker/presentation/views/main_menu/match_view/create_match/choose_group_view.dart';
import 'package:game_tracker/presentation/views/main_menu/match_view/create_match/choose_ruleset_view.dart'; import 'package:game_tracker/presentation/views/main_menu/match_view/create_match/choose_ruleset_view.dart';
@@ -64,34 +65,6 @@ class _CreateMatchViewState extends State<CreateMatchView> {
/// The currently selected players /// The currently selected players
List<Player>? selectedPlayers; List<Player>? selectedPlayers;
/// List of available rulesets with their descriptions
/// as tuples of (Ruleset, String)
/// TODO: Replace when rulesets are implemented
List<(Ruleset, String)> rulesets = [
(
Ruleset.singleWinner,
'Exactly one winner is chosen; ties are resolved by a predefined tiebreaker.',
),
(
Ruleset.singleLoser,
'Exactly one loser is determined; last place receives the penalty or consequence.',
),
(
Ruleset.mostPoints,
'Traditional ruleset: the player with the most points wins.',
),
(
Ruleset.leastPoints,
'Inverse scoring: the player with the fewest points wins.',
),
];
// TODO: Replace when games are implemented
List<(String, String, Ruleset)> games = [
('Example Game 1', 'This is a discription', Ruleset.leastPoints),
('Example Game 2', '', Ruleset.singleWinner),
];
@override @override
void initState() { void initState() {
super.initState(); super.initState();
@@ -111,6 +84,33 @@ class _CreateMatchViewState extends State<CreateMatchView> {
filteredPlayerList = List.from(playerList); filteredPlayerList = List.from(playerList);
} }
List<(Ruleset, String)> _getRulesets(BuildContext context) {
return [
(
Ruleset.singleWinner,
AppLocalizations.of(context)!.ruleset_single_winner_desc,
),
(
Ruleset.singleLoser,
AppLocalizations.of(context)!.ruleset_single_loser_desc,
),
(
Ruleset.mostPoints,
AppLocalizations.of(context)!.ruleset_most_points_desc,
),
(
Ruleset.leastPoints,
AppLocalizations.of(context)!.ruleset_least_points_desc,
),
];
}
// TODO: Replace when games are implemented
List<(String, String, Ruleset)> games = [
('Example Game 1', 'This is a description', Ruleset.leastPoints),
('Example Game 2', '', Ruleset.singleWinner),
];
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return Scaffold( return Scaffold(
@@ -118,8 +118,8 @@ class _CreateMatchViewState extends State<CreateMatchView> {
appBar: AppBar( appBar: AppBar(
backgroundColor: CustomTheme.backgroundColor, backgroundColor: CustomTheme.backgroundColor,
scrolledUnderElevation: 0, scrolledUnderElevation: 0,
title: const Text( title: Text(
'Create new match', AppLocalizations.of(context)!.create_new_match,
style: TextStyle(fontSize: 20, fontWeight: FontWeight.bold), style: TextStyle(fontSize: 20, fontWeight: FontWeight.bold),
), ),
centerTitle: true, centerTitle: true,
@@ -132,13 +132,13 @@ class _CreateMatchViewState extends State<CreateMatchView> {
margin: const EdgeInsets.symmetric(horizontal: 12, vertical: 5), margin: const EdgeInsets.symmetric(horizontal: 12, vertical: 5),
child: TextInputField( child: TextInputField(
controller: _matchNameController, controller: _matchNameController,
hintText: 'Match name', hintText: AppLocalizations.of(context)!.match_name,
), ),
), ),
ChooseTile( ChooseTile(
title: 'Game', title: AppLocalizations.of(context)!.game,
trailingText: selectedGameIndex == -1 trailingText: selectedGameIndex == -1
? 'None' ? AppLocalizations.of(context)!.none
: games[selectedGameIndex].$1, : games[selectedGameIndex].$1,
onPressed: () async { onPressed: () async {
selectedGameIndex = await Navigator.of(context).push( selectedGameIndex = await Navigator.of(context).push(
@@ -152,9 +152,9 @@ class _CreateMatchViewState extends State<CreateMatchView> {
setState(() { setState(() {
if (selectedGameIndex != -1) { if (selectedGameIndex != -1) {
selectedRuleset = games[selectedGameIndex].$3; selectedRuleset = games[selectedGameIndex].$3;
selectedRulesetIndex = rulesets.indexWhere( selectedRulesetIndex = _getRulesets(
(r) => r.$1 == selectedRuleset, context,
); ).indexWhere((r) => r.$1 == selectedRuleset);
} else { } else {
selectedRuleset = null; selectedRuleset = null;
} }
@@ -162,30 +162,30 @@ class _CreateMatchViewState extends State<CreateMatchView> {
}, },
), ),
ChooseTile( ChooseTile(
title: 'Ruleset', title: AppLocalizations.of(context)!.ruleset,
trailingText: selectedRuleset == null trailingText: selectedRuleset == null
? 'None' ? AppLocalizations.of(context)!.none
: translateRulesetToString(selectedRuleset!), : translateRulesetToString(selectedRuleset!, context),
onPressed: () async { onPressed: () async {
selectedRuleset = await Navigator.of(context).push( selectedRuleset = await Navigator.of(context).push(
MaterialPageRoute( MaterialPageRoute(
builder: (context) => ChooseRulesetView( builder: (context) => ChooseRulesetView(
rulesets: rulesets, rulesets: _getRulesets(context),
initialRulesetIndex: selectedRulesetIndex, initialRulesetIndex: selectedRulesetIndex,
), ),
), ),
); );
selectedRulesetIndex = rulesets.indexWhere( selectedRulesetIndex = _getRulesets(
(r) => r.$1 == selectedRuleset, context,
); ).indexWhere((r) => r.$1 == selectedRuleset);
selectedGameIndex = -1; selectedGameIndex = -1;
setState(() {}); setState(() {});
}, },
), ),
ChooseTile( ChooseTile(
title: 'Group', title: AppLocalizations.of(context)!.group,
trailingText: selectedGroup == null trailingText: selectedGroup == null
? 'None' ? AppLocalizations.of(context)!.none
: selectedGroup!.name, : selectedGroup!.name,
onPressed: () async { onPressed: () async {
selectedGroup = await Navigator.of(context).push( selectedGroup = await Navigator.of(context).push(
@@ -222,7 +222,7 @@ class _CreateMatchViewState extends State<CreateMatchView> {
), ),
), ),
CustomWidthButton( CustomWidthButton(
text: 'Create match', text: AppLocalizations.of(context)!.create_match,
sizeRelativeToWidth: 0.95, sizeRelativeToWidth: 0.95,
buttonType: ButtonType.primary, buttonType: ButtonType.primary,
onPressed: _enableCreateGameButton() onPressed: _enableCreateGameButton()

View File

@@ -3,6 +3,7 @@ import 'package:game_tracker/core/custom_theme.dart';
import 'package:game_tracker/data/db/database.dart'; import 'package:game_tracker/data/db/database.dart';
import 'package:game_tracker/data/dto/match.dart'; import 'package:game_tracker/data/dto/match.dart';
import 'package:game_tracker/data/dto/player.dart'; import 'package:game_tracker/data/dto/player.dart';
import 'package:game_tracker/l10n/generated/app_localizations.dart';
import 'package:game_tracker/presentation/widgets/tiles/custom_radio_list_tile.dart'; import 'package:game_tracker/presentation/widgets/tiles/custom_radio_list_tile.dart';
import 'package:provider/provider.dart'; import 'package:provider/provider.dart';
@@ -79,8 +80,8 @@ class _MatchResultViewState extends State<MatchResultView> {
mainAxisAlignment: MainAxisAlignment.start, mainAxisAlignment: MainAxisAlignment.start,
crossAxisAlignment: CrossAxisAlignment.start, crossAxisAlignment: CrossAxisAlignment.start,
children: [ children: [
const Text( Text(
'Select Winner:', AppLocalizations.of(context)!.select_winner,
style: TextStyle( style: TextStyle(
fontSize: 18, fontSize: 18,
fontWeight: FontWeight.bold, fontWeight: FontWeight.bold,

View File

@@ -8,6 +8,7 @@ import 'package:game_tracker/data/db/database.dart';
import 'package:game_tracker/data/dto/group.dart'; import 'package:game_tracker/data/dto/group.dart';
import 'package:game_tracker/data/dto/match.dart'; import 'package:game_tracker/data/dto/match.dart';
import 'package:game_tracker/data/dto/player.dart'; import 'package:game_tracker/data/dto/player.dart';
import 'package:game_tracker/l10n/generated/app_localizations.dart';
import 'package:game_tracker/presentation/views/main_menu/match_view/create_match/create_match_view.dart'; import 'package:game_tracker/presentation/views/main_menu/match_view/create_match/create_match_view.dart';
import 'package:game_tracker/presentation/views/main_menu/match_view/match_result_view.dart'; import 'package:game_tracker/presentation/views/main_menu/match_view/match_result_view.dart';
import 'package:game_tracker/presentation/widgets/app_skeleton.dart'; import 'package:game_tracker/presentation/widgets/app_skeleton.dart';
@@ -58,11 +59,11 @@ class _MatchViewState extends State<MatchView> {
enabled: isLoading, enabled: isLoading,
child: Visibility( child: Visibility(
visible: matches.isNotEmpty, visible: matches.isNotEmpty,
replacement: const Center( replacement: Center(
child: TopCenteredMessage( child: TopCenteredMessage(
icon: Icons.report, icon: Icons.report,
title: 'Info', title: AppLocalizations.of(context)!.info,
message: 'No games created yet', message: AppLocalizations.of(context)!.no_matches_created_yet,
), ),
), ),
child: ListView.builder( child: ListView.builder(
@@ -96,7 +97,7 @@ class _MatchViewState extends State<MatchView> {
Positioned( Positioned(
bottom: MediaQuery.paddingOf(context).bottom, bottom: MediaQuery.paddingOf(context).bottom,
child: CustomWidthButton( child: CustomWidthButton(
text: 'Create Game', text: AppLocalizations.of(context)!.create_match,
sizeRelativeToWidth: 0.90, sizeRelativeToWidth: 0.90,
onPressed: () async { onPressed: () async {
Navigator.push( Navigator.push(

View File

@@ -1,6 +1,7 @@
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:game_tracker/core/custom_theme.dart'; import 'package:game_tracker/core/custom_theme.dart';
import 'package:game_tracker/core/enums.dart'; import 'package:game_tracker/core/enums.dart';
import 'package:game_tracker/l10n/generated/app_localizations.dart';
import 'package:game_tracker/presentation/widgets/tiles/settings_list_tile.dart'; import 'package:game_tracker/presentation/widgets/tiles/settings_list_tile.dart';
import 'package:game_tracker/services/data_transfer_service.dart'; import 'package:game_tracker/services/data_transfer_service.dart';
@@ -24,30 +25,33 @@ class _SettingsViewState extends State<SettingsView> {
mainAxisAlignment: MainAxisAlignment.start, mainAxisAlignment: MainAxisAlignment.start,
crossAxisAlignment: CrossAxisAlignment.start, crossAxisAlignment: CrossAxisAlignment.start,
children: [ children: [
const Padding( Padding(
padding: EdgeInsets.fromLTRB(24, 0, 24, 10), padding: const EdgeInsets.fromLTRB(24, 0, 24, 10),
child: Text( child: Text(
textAlign: TextAlign.start, textAlign: TextAlign.start,
'Menu', AppLocalizations.of(context)!.menu,
style: TextStyle( style: const TextStyle(
fontSize: 28, fontSize: 28,
fontWeight: FontWeight.bold, fontWeight: FontWeight.bold,
), ),
), ),
), ),
const Padding( Padding(
padding: EdgeInsets.symmetric(horizontal: 24, vertical: 10), padding: const EdgeInsets.symmetric(
horizontal: 24,
vertical: 10,
),
child: Text( child: Text(
textAlign: TextAlign.start, textAlign: TextAlign.start,
'Settings', AppLocalizations.of(context)!.settings,
style: TextStyle( style: const TextStyle(
fontSize: 22, fontSize: 22,
fontWeight: FontWeight.bold, fontWeight: FontWeight.bold,
), ),
), ),
), ),
SettingsListTile( SettingsListTile(
title: 'Export data', title: AppLocalizations.of(context)!.export_data,
icon: Icons.upload_outlined, icon: Icons.upload_outlined,
suffixWidget: const Icon(Icons.arrow_forward_ios, size: 16), suffixWidget: const Icon(Icons.arrow_forward_ios, size: 16),
onPressed: () async { onPressed: () async {
@@ -62,7 +66,7 @@ class _SettingsViewState extends State<SettingsView> {
}, },
), ),
SettingsListTile( SettingsListTile(
title: 'Import data', title: AppLocalizations.of(context)!.import_data,
icon: Icons.download_outlined, icon: Icons.download_outlined,
suffixWidget: const Icon(Icons.arrow_forward_ios, size: 16), suffixWidget: const Icon(Icons.arrow_forward_ios, size: 16),
onPressed: () async { onPressed: () async {
@@ -74,23 +78,27 @@ class _SettingsViewState extends State<SettingsView> {
}, },
), ),
SettingsListTile( SettingsListTile(
title: 'Delete all data', title: AppLocalizations.of(context)!.delete_all_data,
icon: Icons.download_outlined, icon: Icons.download_outlined,
suffixWidget: const Icon(Icons.arrow_forward_ios, size: 16), suffixWidget: const Icon(Icons.arrow_forward_ios, size: 16),
onPressed: () { onPressed: () {
showDialog<bool>( showDialog<bool>(
context: context, context: context,
builder: (context) => AlertDialog( builder: (context) => AlertDialog(
title: const Text('Delete all data?'), title: Text(
content: const Text('This can\'t be undone'), AppLocalizations.of(context)!.delete_all_data,
),
content: Text(
AppLocalizations.of(context)!.this_cannot_be_undone,
),
actions: [ actions: [
TextButton( TextButton(
onPressed: () => Navigator.of(context).pop(false), onPressed: () => Navigator.of(context).pop(false),
child: const Text('Abbrechen'), child: Text(AppLocalizations.of(context)!.cancel),
), ),
TextButton( TextButton(
onPressed: () => Navigator.of(context).pop(true), onPressed: () => Navigator.of(context).pop(true),
child: const Text('Löschen'), child: Text(AppLocalizations.of(context)!.delete),
), ),
], ],
), ),
@@ -99,7 +107,9 @@ class _SettingsViewState extends State<SettingsView> {
DataTransferService.deleteAllData(context); DataTransferService.deleteAllData(context);
showSnackbar( showSnackbar(
context: context, context: context,
message: 'Daten erfolgreich gelöscht', message: AppLocalizations.of(
context,
)!.data_successfully_deleted,
); );
} }
}); });
@@ -122,22 +132,34 @@ class _SettingsViewState extends State<SettingsView> {
}) { }) {
switch (result) { switch (result) {
case ImportResult.success: case ImportResult.success:
showSnackbar(context: context, message: 'Data successfully imported'); showSnackbar(
context: context,
message: AppLocalizations.of(context)!.data_successfully_imported,
);
case ImportResult.invalidSchema: case ImportResult.invalidSchema:
showSnackbar(context: context, message: 'Invalid Schema'); showSnackbar(
context: context,
message: AppLocalizations.of(context)!.invalid_schema,
);
case ImportResult.fileReadError: case ImportResult.fileReadError:
showSnackbar(context: context, message: 'Error reading file'); showSnackbar(
context: context,
message: AppLocalizations.of(context)!.error_reading_file,
);
case ImportResult.canceled: case ImportResult.canceled:
showSnackbar(context: context, message: 'Import canceled'); showSnackbar(
context: context,
message: AppLocalizations.of(context)!.import_canceled,
);
case ImportResult.formatException: case ImportResult.formatException:
showSnackbar( showSnackbar(
context: context, context: context,
message: 'Format Exception (see console)', message: AppLocalizations.of(context)!.format_exception,
); );
case ImportResult.unknownException: case ImportResult.unknownException:
showSnackbar( showSnackbar(
context: context, context: context,
message: 'Unknown Exception (see console)', message: AppLocalizations.of(context)!.unknown_exception,
); );
} }
} }
@@ -152,13 +174,19 @@ class _SettingsViewState extends State<SettingsView> {
}) { }) {
switch (result) { switch (result) {
case ExportResult.success: case ExportResult.success:
showSnackbar(context: context, message: 'Data successfully exported'); showSnackbar(
context: context,
message: AppLocalizations.of(context)!.data_successfully_exported,
);
case ExportResult.canceled: case ExportResult.canceled:
showSnackbar(context: context, message: 'Export canceled'); showSnackbar(
context: context,
message: AppLocalizations.of(context)!.export_canceled,
);
case ExportResult.unknownException: case ExportResult.unknownException:
showSnackbar( showSnackbar(
context: context, context: context,
message: 'Unknown Exception (see console)', message: AppLocalizations.of(context)!.unknown_exception,
); );
} }
} }
@@ -183,7 +211,10 @@ class _SettingsViewState extends State<SettingsView> {
backgroundColor: CustomTheme.onBoxColor, backgroundColor: CustomTheme.onBoxColor,
duration: duration, duration: duration,
action: action != null action: action != null
? SnackBarAction(label: 'Rückgängig', onPressed: action) ? SnackBarAction(
label: AppLocalizations.of(context)!.undo,
onPressed: action,
)
: null, : null,
), ),
); );

View File

@@ -3,6 +3,7 @@ import 'package:game_tracker/core/constants.dart';
import 'package:game_tracker/data/db/database.dart'; import 'package:game_tracker/data/db/database.dart';
import 'package:game_tracker/data/dto/match.dart'; import 'package:game_tracker/data/dto/match.dart';
import 'package:game_tracker/data/dto/player.dart'; import 'package:game_tracker/data/dto/player.dart';
import 'package:game_tracker/l10n/generated/app_localizations.dart';
import 'package:game_tracker/presentation/widgets/app_skeleton.dart'; import 'package:game_tracker/presentation/widgets/app_skeleton.dart';
import 'package:game_tracker/presentation/widgets/tiles/statistics_tile.dart'; import 'package:game_tracker/presentation/widgets/tiles/statistics_tile.dart';
import 'package:provider/provider.dart'; import 'package:provider/provider.dart';
@@ -60,7 +61,7 @@ class _StatisticsViewState extends State<StatisticsView> {
SizedBox(height: constraints.maxHeight * 0.01), SizedBox(height: constraints.maxHeight * 0.01),
StatisticsTile( StatisticsTile(
icon: Icons.sports_score, icon: Icons.sports_score,
title: 'Wins', title: AppLocalizations.of(context)!.wins,
width: constraints.maxWidth * 0.95, width: constraints.maxWidth * 0.95,
values: winCounts, values: winCounts,
itemCount: 3, itemCount: 3,
@@ -69,7 +70,7 @@ class _StatisticsViewState extends State<StatisticsView> {
SizedBox(height: constraints.maxHeight * 0.02), SizedBox(height: constraints.maxHeight * 0.02),
StatisticsTile( StatisticsTile(
icon: Icons.percent, icon: Icons.percent,
title: 'Winrate', title: AppLocalizations.of(context)!.winrate,
width: constraints.maxWidth * 0.95, width: constraints.maxWidth * 0.95,
values: winRates, values: winRates,
itemCount: 5, itemCount: 5,
@@ -78,7 +79,7 @@ class _StatisticsViewState extends State<StatisticsView> {
SizedBox(height: constraints.maxHeight * 0.02), SizedBox(height: constraints.maxHeight * 0.02),
StatisticsTile( StatisticsTile(
icon: Icons.casino, icon: Icons.casino,
title: 'Amount of Matches', title: AppLocalizations.of(context)!.amount_of_matches,
width: constraints.maxWidth * 0.95, width: constraints.maxWidth * 0.95,
values: matchCounts, values: matchCounts,
itemCount: 10, itemCount: 10,

View File

@@ -3,6 +3,7 @@ import 'package:game_tracker/core/constants.dart';
import 'package:game_tracker/core/custom_theme.dart'; import 'package:game_tracker/core/custom_theme.dart';
import 'package:game_tracker/data/db/database.dart'; import 'package:game_tracker/data/db/database.dart';
import 'package:game_tracker/data/dto/player.dart'; import 'package:game_tracker/data/dto/player.dart';
import 'package:game_tracker/l10n/generated/app_localizations.dart';
import 'package:game_tracker/presentation/widgets/app_skeleton.dart'; import 'package:game_tracker/presentation/widgets/app_skeleton.dart';
import 'package:game_tracker/presentation/widgets/text_input/custom_search_bar.dart'; import 'package:game_tracker/presentation/widgets/text_input/custom_search_bar.dart';
import 'package:game_tracker/presentation/widgets/tiles/text_icon_list_tile.dart'; import 'package:game_tracker/presentation/widgets/tiles/text_icon_list_tile.dart';
@@ -129,14 +130,20 @@ class _PlayerSelectionState extends State<PlayerSelection> {
), ),
const SizedBox(height: 10), const SizedBox(height: 10),
Text( Text(
'Selected players: (${selectedPlayers.length})', AppLocalizations.of(
context,
)!.selected_players(selectedPlayers.length),
style: const TextStyle(fontSize: 16, fontWeight: FontWeight.bold), style: const TextStyle(fontSize: 16, fontWeight: FontWeight.bold),
), ),
const SizedBox(height: 10), const SizedBox(height: 10),
SizedBox( SizedBox(
height: 50, height: 50,
child: selectedPlayers.isEmpty child: selectedPlayers.isEmpty
? const Center(child: Text('No players selected')) ? Center(
child: Text(
AppLocalizations.of(context)!.no_players_selected,
),
)
: SingleChildScrollView( : SingleChildScrollView(
scrollDirection: Axis.horizontal, scrollDirection: Axis.horizontal,
child: Row( child: Row(
@@ -171,8 +178,8 @@ class _PlayerSelectionState extends State<PlayerSelection> {
), ),
), ),
const SizedBox(height: 10), const SizedBox(height: 10),
const Text( Text(
'All players:', AppLocalizations.of(context)!.all_players,
style: TextStyle(fontSize: 16, fontWeight: FontWeight.bold), style: TextStyle(fontSize: 16, fontWeight: FontWeight.bold),
), ),
const SizedBox(height: 10), const SizedBox(height: 10),
@@ -186,12 +193,14 @@ class _PlayerSelectionState extends State<PlayerSelection> {
visible: suggestedPlayers.isNotEmpty, visible: suggestedPlayers.isNotEmpty,
replacement: TopCenteredMessage( replacement: TopCenteredMessage(
icon: Icons.info, icon: Icons.info,
title: 'Info', title: AppLocalizations.of(context)!.info,
message: allPlayers.isEmpty message: allPlayers.isEmpty
? 'No players created yet' ? AppLocalizations.of(context)!.no_players_created_yet
: (selectedPlayers.length == allPlayers.length) : (selectedPlayers.length == allPlayers.length)
? 'No more players to add' ? AppLocalizations.of(context)!.all_players_selected
: 'No players found with that name', : AppLocalizations.of(
context,
)!.no_players_found_with_that_name,
), ),
child: ListView.builder( child: ListView.builder(
itemCount: suggestedPlayers.length, itemCount: suggestedPlayers.length,
@@ -243,7 +252,9 @@ class _PlayerSelectionState extends State<PlayerSelection> {
backgroundColor: CustomTheme.boxColor, backgroundColor: CustomTheme.boxColor,
content: Center( content: Center(
child: Text( child: Text(
'Successfully added player $playerName.', AppLocalizations.of(
context,
)!.successfully_added_player(playerName),
style: const TextStyle(color: Colors.white), style: const TextStyle(color: Colors.white),
), ),
), ),
@@ -255,7 +266,7 @@ class _PlayerSelectionState extends State<PlayerSelection> {
backgroundColor: CustomTheme.boxColor, backgroundColor: CustomTheme.boxColor,
content: Center( content: Center(
child: Text( child: Text(
'Could not add player $playerName.', AppLocalizations.of(context)!.could_not_add_player(playerName),
style: const TextStyle(color: Colors.white), style: const TextStyle(color: Colors.white),
), ),
), ),

View File

@@ -1,6 +1,7 @@
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:game_tracker/core/custom_theme.dart'; import 'package:game_tracker/core/custom_theme.dart';
import 'package:game_tracker/data/dto/match.dart'; import 'package:game_tracker/data/dto/match.dart';
import 'package:game_tracker/l10n/generated/app_localizations.dart';
import 'package:game_tracker/presentation/widgets/tiles/text_icon_tile.dart'; import 'package:game_tracker/presentation/widgets/tiles/text_icon_tile.dart';
import 'package:intl/intl.dart'; import 'package:intl/intl.dart';
@@ -97,7 +98,7 @@ class _GameHistoryTileState extends State<GameHistoryTile> {
const SizedBox(width: 8), const SizedBox(width: 8),
Expanded( Expanded(
child: Text( child: Text(
'Winner: ${winner.name}', AppLocalizations.of(context)!.winner(winner.name),
style: const TextStyle( style: const TextStyle(
fontSize: 14, fontSize: 14,
fontWeight: FontWeight.w600, fontWeight: FontWeight.w600,
@@ -113,8 +114,8 @@ class _GameHistoryTileState extends State<GameHistoryTile> {
], ],
if (allPlayers.isNotEmpty) ...[ if (allPlayers.isNotEmpty) ...[
const Text( Text(
'Players', AppLocalizations.of(context)!.players,
style: TextStyle( style: TextStyle(
fontSize: 13, fontSize: 13,
color: Colors.grey, color: Colors.grey,
@@ -141,11 +142,15 @@ class _GameHistoryTileState extends State<GameHistoryTile> {
final difference = now.difference(dateTime); final difference = now.difference(dateTime);
if (difference.inDays == 0) { if (difference.inDays == 0) {
return 'Today at ${DateFormat('HH:mm').format(dateTime)}'; return AppLocalizations.of(
context,
)!.today_at(DateFormat('HH:mm').format(dateTime));
} else if (difference.inDays == 1) { } else if (difference.inDays == 1) {
return 'Yesterday at ${DateFormat('HH:mm').format(dateTime)}'; return AppLocalizations.of(
context,
)!.yesterday_at(DateFormat('HH:mm').format(dateTime));
} else if (difference.inDays < 7) { } else if (difference.inDays < 7) {
return '${difference.inDays} days ago'; return AppLocalizations.of(context)!.days_ago(difference.inDays);
} else { } else {
return DateFormat('MMM d, yyyy').format(dateTime); return DateFormat('MMM d, yyyy').format(dateTime);
} }

View File

@@ -1,6 +1,7 @@
import 'dart:math'; import 'dart:math';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:game_tracker/l10n/generated/app_localizations.dart';
import 'package:game_tracker/presentation/widgets/tiles/info_tile.dart'; import 'package:game_tracker/presentation/widgets/tiles/info_tile.dart';
class StatisticsTile extends StatelessWidget { class StatisticsTile extends StatelessWidget {
@@ -33,9 +34,9 @@ class StatisticsTile extends StatelessWidget {
padding: const EdgeInsets.symmetric(horizontal: 20.0), padding: const EdgeInsets.symmetric(horizontal: 20.0),
child: Visibility( child: Visibility(
visible: values.isNotEmpty, visible: values.isNotEmpty,
replacement: const Center( replacement: Center(
heightFactor: 4, heightFactor: 4,
child: Text('No data available.'), child: Text(AppLocalizations.of(context)!.no_data_available),
), ),
child: Column( child: Column(
children: List.generate(min(values.length, itemCount), (index) { children: List.generate(min(values.length, itemCount), (index) {

View File

@@ -24,7 +24,10 @@ dependencies:
json_schema: ^5.2.2 json_schema: ^5.2.2
file_saver: ^0.3.1 file_saver: ^0.3.1
clock: ^1.1.2 clock: ^1.1.2
intl: ^0.18.0 intl: any
flutter_localizations:
sdk: flutter
auto_localize: ^0.0.5
dev_dependencies: dev_dependencies:
flutter_test: flutter_test:
@@ -35,5 +38,6 @@ dev_dependencies:
flutter: flutter:
uses-material-design: true uses-material-design: true
generate: true
assets: assets:
- assets/schema.json - assets/schema.json