Actions: Licenses updated [skip ci]
This commit is contained in:
@@ -95,7 +95,7 @@ abstract class AppLocalizations {
|
|||||||
/// A list of this localizations delegate's supported locales.
|
/// A list of this localizations delegate's supported locales.
|
||||||
static const List<Locale> supportedLocales = <Locale>[
|
static const List<Locale> supportedLocales = <Locale>[
|
||||||
Locale('de'),
|
Locale('de'),
|
||||||
Locale('en')
|
Locale('en'),
|
||||||
];
|
];
|
||||||
|
|
||||||
/// No description provided for @app_name.
|
/// No description provided for @app_name.
|
||||||
@@ -487,7 +487,11 @@ abstract class AppLocalizations {
|
|||||||
/// In de, this message translates to:
|
/// In de, this message translates to:
|
||||||
/// **'{playerCount, plural, =1{{names} hat exakt das Punktelimit von {pointLimit} Punkten erreicht und bekommt deshalb {bonusPoints} Punkte abgezogen!} other{{names} haben exakt das Punktelimit von {pointLimit} Punkten erreicht und bekommen deshalb jeweils {bonusPoints} Punkte abgezogen!}}'**
|
/// **'{playerCount, plural, =1{{names} hat exakt das Punktelimit von {pointLimit} Punkten erreicht und bekommt deshalb {bonusPoints} Punkte abgezogen!} other{{names} haben exakt das Punktelimit von {pointLimit} Punkten erreicht und bekommen deshalb jeweils {bonusPoints} Punkte abgezogen!}}'**
|
||||||
String bonus_points_message(
|
String bonus_points_message(
|
||||||
int playerCount, String names, int pointLimit, int bonusPoints);
|
int playerCount,
|
||||||
|
String names,
|
||||||
|
int pointLimit,
|
||||||
|
int bonusPoints,
|
||||||
|
);
|
||||||
|
|
||||||
/// No description provided for @end_of_game_title.
|
/// No description provided for @end_of_game_title.
|
||||||
///
|
///
|
||||||
@@ -778,5 +782,6 @@ AppLocalizations lookupAppLocalizations(Locale locale) {
|
|||||||
'AppLocalizations.delegate failed to load unsupported locale "$locale". This is likely '
|
'AppLocalizations.delegate failed to load unsupported locale "$locale". This is likely '
|
||||||
'an issue with the localizations generation tool. Please file an issue '
|
'an issue with the localizations generation tool. Please file an issue '
|
||||||
'on GitHub with a reproducible sample app and the gen-l10n configuration '
|
'on GitHub with a reproducible sample app and the gen-l10n configuration '
|
||||||
'that was used.');
|
'that was used.',
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -214,7 +214,11 @@ class AppLocalizationsDe extends AppLocalizations {
|
|||||||
|
|
||||||
@override
|
@override
|
||||||
String bonus_points_message(
|
String bonus_points_message(
|
||||||
int playerCount, String names, int pointLimit, int bonusPoints) {
|
int playerCount,
|
||||||
|
String names,
|
||||||
|
int pointLimit,
|
||||||
|
int bonusPoints,
|
||||||
|
) {
|
||||||
String _temp0 = intl.Intl.pluralLogic(
|
String _temp0 = intl.Intl.pluralLogic(
|
||||||
playerCount,
|
playerCount,
|
||||||
locale: localeName,
|
locale: localeName,
|
||||||
|
|||||||
@@ -211,7 +211,11 @@ class AppLocalizationsEn extends AppLocalizations {
|
|||||||
|
|
||||||
@override
|
@override
|
||||||
String bonus_points_message(
|
String bonus_points_message(
|
||||||
int playerCount, String names, int pointLimit, int bonusPoints) {
|
int playerCount,
|
||||||
|
String names,
|
||||||
|
int pointLimit,
|
||||||
|
int bonusPoints,
|
||||||
|
) {
|
||||||
String _temp0 = intl.Intl.pluralLogic(
|
String _temp0 = intl.Intl.pluralLogic(
|
||||||
playerCount,
|
playerCount,
|
||||||
locale: localeName,
|
locale: localeName,
|
||||||
@@ -363,7 +367,7 @@ class AppLocalizationsEn extends AppLocalizations {
|
|||||||
String get privacy_policy => 'Privacy Policy';
|
String get privacy_policy => 'Privacy Policy';
|
||||||
|
|
||||||
@override
|
@override
|
||||||
String get loading_games => 'Loading Games...';
|
String get loading_games => 'Loading Games ...';
|
||||||
|
|
||||||
@override
|
@override
|
||||||
String get build => 'Build No.';
|
String get build => 'Build No.';
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user