Added Strings for popup
This commit is contained in:
@@ -453,6 +453,18 @@ abstract class AppLocalizations {
|
||||
String bonus_points_message(
|
||||
int playerCount, String names, int pointLimit, int bonusPoints);
|
||||
|
||||
/// No description provided for @end_of_game_title.
|
||||
///
|
||||
/// In de, this message translates to:
|
||||
/// **'Spiel beendet'**
|
||||
String get end_of_game_title;
|
||||
|
||||
/// No description provided for @end_of_game_message.
|
||||
///
|
||||
/// In de, this message translates to:
|
||||
/// **'{playerCount, plural, =1{{names} hat das Spiel mit {points} Punkten gewonnen. Glückwunsch!} other{{names} haben das Spiel mit {points} Punkten gewonnen. Glückwunsch!}}'**
|
||||
String end_of_game_message(int playerCount, String names, int points);
|
||||
|
||||
/// No description provided for @end_game.
|
||||
///
|
||||
/// In de, this message translates to:
|
||||
|
||||
@@ -208,6 +208,21 @@ class AppLocalizationsDe extends AppLocalizations {
|
||||
return '$_temp0';
|
||||
}
|
||||
|
||||
@override
|
||||
String get end_of_game_title => 'Spiel beendet';
|
||||
|
||||
@override
|
||||
String end_of_game_message(int playerCount, String names, int points) {
|
||||
String _temp0 = intl.Intl.pluralLogic(
|
||||
playerCount,
|
||||
locale: localeName,
|
||||
other:
|
||||
'$names haben das Spiel mit $points Punkten gewonnen. Glückwunsch!',
|
||||
one: '$names hat das Spiel mit $points Punkten gewonnen. Glückwunsch!',
|
||||
);
|
||||
return '$_temp0';
|
||||
}
|
||||
|
||||
@override
|
||||
String get end_game => 'Spiel beenden';
|
||||
|
||||
|
||||
@@ -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';
|
||||
|
||||
|
||||
Reference in New Issue
Block a user