From 7be80e6f917a2a2e45e55115fb603d273c872df7 Mon Sep 17 00:00:00 2001 From: mathiskirchner Date: Mon, 24 Nov 2025 21:44:41 +0100 Subject: [PATCH] Translate player selection UI text to English --- lib/presentation/widgets/player_selection.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/presentation/widgets/player_selection.dart b/lib/presentation/widgets/player_selection.dart index 1c5120f..d1ea90e 100644 --- a/lib/presentation/widgets/player_selection.dart +++ b/lib/presentation/widgets/player_selection.dart @@ -98,7 +98,7 @@ class _PlayerSelectionState extends State { ), const SizedBox(height: 10), Text( - 'Ausgewählte Spieler: (${selectedPlayers.length})', + 'Selected players: (${selectedPlayers.length})', style: const TextStyle(fontSize: 16, fontWeight: FontWeight.bold), ), const SizedBox(height: 10), @@ -131,7 +131,7 @@ class _PlayerSelectionState extends State { ), const SizedBox(height: 10), const Text( - 'Alle Spieler:', + 'All players:', style: TextStyle(fontSize: 16, fontWeight: FontWeight.bold), ), const SizedBox(height: 10),