Added Strings for popup

This commit is contained in:
2025-07-20 22:36:48 +02:00
parent 77bbb20ebe
commit ddc2d68e9b
5 changed files with 71 additions and 0 deletions

View File

@@ -205,6 +205,20 @@ class AppLocalizationsEn extends AppLocalizations {
return '$_temp0';
}
@override
String get end_of_game_title => 'End of Game';
@override
String end_of_game_message(int playerCount, String names, int points) {
String _temp0 = intl.Intl.pluralLogic(
playerCount,
locale: localeName,
other: '$names won the game with $points points. Congratulations!',
one: '$names won the game with $points points. Congratulations!',
);
return '$_temp0';
}
@override
String get end_game => 'End Game';