From 1c2803eb85dcd93d2dad90eaf11dcef12e3e2b79 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Thu, 3 Jul 2025 17:34:12 +0200 Subject: [PATCH] Deleted print --- lib/data/game_session.dart | 1 - lib/l10n/app_localizations_en.dart | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/data/game_session.dart b/lib/data/game_session.dart index ada34dc..36c4c4e 100644 --- a/lib/data/game_session.dart +++ b/lib/data/game_session.dart @@ -37,7 +37,6 @@ class GameSession extends ChangeNotifier { playerScores = List.filled(players.length, 0); var uuid = const Uuid(); id = uuid.v1(); - print('GameSession created with ID: $id'); } @override diff --git a/lib/l10n/app_localizations_en.dart b/lib/l10n/app_localizations_en.dart index 63553ff..27d675b 100644 --- a/lib/l10n/app_localizations_en.dart +++ b/lib/l10n/app_localizations_en.dart @@ -68,7 +68,7 @@ class AppLocalizationsEn extends AppLocalizations { @override String delete_game_message(String gameTitle) { - return 'Are you sure you want to delete the game $gameTitle? This action cannot be undone.'; + return 'Are you sure you want to delete the game \"$gameTitle\"? This action cannot be undone.'; } @override