Created Strings for popup
This commit is contained in:
@@ -175,6 +175,23 @@ class AppLocalizationsEn extends AppLocalizations {
|
||||
@override
|
||||
String get next_round => 'Next Round';
|
||||
|
||||
@override
|
||||
String get bonus_points_title => 'Bonus-Points!';
|
||||
|
||||
@override
|
||||
String bonus_points_message(
|
||||
String names, int pointLimit, int bonusPoints, num playerCount) {
|
||||
String _temp0 = intl.Intl.pluralLogic(
|
||||
playerCount,
|
||||
locale: localeName,
|
||||
other:
|
||||
'$names have reached exactly the point limit of $pointLimit points and therefore get $bonusPoints points deducted!',
|
||||
one:
|
||||
'$names has reached exactly the point limit of $pointLimit points and therefore gets $bonusPoints points deducted!',
|
||||
);
|
||||
return '$_temp0';
|
||||
}
|
||||
|
||||
@override
|
||||
String get end_game => 'End Game';
|
||||
|
||||
|
||||
Reference in New Issue
Block a user