Unverified Commit 351457cd authored by Shi-Hao Hong's avatar Shi-Hao Hong Committed by GitHub

[gen_l10n] Separate out AppLocalizations classes and subclasses by language code (#52335)

parent 3fd6808b
...@@ -10,6 +10,9 @@ import 'package:flutter_localizations/flutter_localizations.dart'; ...@@ -10,6 +10,9 @@ import 'package:flutter_localizations/flutter_localizations.dart';
// ignore: unused_import // ignore: unused_import
import 'package:intl/intl.dart' as intl; import 'package:intl/intl.dart' as intl;
import 'stock_strings_en.dart';
import 'stock_strings_es.dart';
// ignore_for_file: unnecessary_brace_in_string_interps // ignore_for_file: unnecessary_brace_in_string_interps
/// Callers can lookup localized strings with an instance of StockStrings returned /// Callers can lookup localized strings with an instance of StockStrings returned
...@@ -65,10 +68,10 @@ import 'package:intl/intl.dart' as intl; ...@@ -65,10 +68,10 @@ import 'package:intl/intl.dart' as intl;
/// be consistent with the languages listed in the StockStrings.supportedLocales /// be consistent with the languages listed in the StockStrings.supportedLocales
/// property. /// property.
abstract class StockStrings { abstract class StockStrings {
StockStrings(String locale) : assert(locale != null), _localeName = intl.Intl.canonicalizedLocale(locale.toString()); StockStrings(String locale) : assert(locale != null), localeName = intl.Intl.canonicalizedLocale(locale.toString());
// ignore: unused_field // ignore: unused_field
final String _localeName; final String localeName;
static StockStrings of(BuildContext context) { static StockStrings of(BuildContext context) {
return Localizations.of<StockStrings>(context, StockStrings); return Localizations.of<StockStrings>(context, StockStrings);
...@@ -125,48 +128,6 @@ class _StockStringsDelegate extends LocalizationsDelegate<StockStrings> { ...@@ -125,48 +128,6 @@ class _StockStringsDelegate extends LocalizationsDelegate<StockStrings> {
bool shouldReload(_StockStringsDelegate old) => false; bool shouldReload(_StockStringsDelegate old) => false;
} }
/// The translations for English (`en`).
class StockStringsEn extends StockStrings {
StockStringsEn([String locale = 'en']) : super(locale);
@override
String get title => 'Stocks';
@override
String get market => 'MARKET';
@override
String get portfolio => 'PORTFOLIO';
}
/// The translations for English, as used in the United States (`en_US`).
class StockStringsEnUs extends StockStringsEn {
StockStringsEnUs([String locale = 'en_US']) : super(locale);
@override
String get title => 'Stocks';
@override
String get market => 'MARKET';
@override
String get portfolio => 'PORTFOLIO';
}
/// The translations for Spanish Castilian (`es`).
class StockStringsEs extends StockStrings {
StockStringsEs([String locale = 'es']) : super(locale);
@override
String get title => 'Acciones';
@override
String get market => 'MERCADO';
@override
String get portfolio => 'CARTERA';
}
StockStrings _lookupStockStrings(Locale locale) { StockStrings _lookupStockStrings(Locale locale) {
switch(locale.languageCode) { switch(locale.languageCode) {
case 'en': { case 'en': {
......
// Copyright 2014 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// ignore: unused_import
import 'package:intl/intl.dart' as intl;
import 'stock_strings.dart';
// ignore_for_file: unnecessary_brace_in_string_interps
/// The translations for English (`en`).
class StockStringsEn extends StockStrings {
StockStringsEn([String locale = 'en']) : super(locale);
@override
String get title => 'Stocks';
@override
String get market => 'MARKET';
@override
String get portfolio => 'PORTFOLIO';
}
/// The translations for English, as used in the United States (`en_US`).
class StockStringsEnUs extends StockStringsEn {
StockStringsEnUs(): super('en_US');
@override
String get title => 'Stocks';
@override
String get market => 'MARKET';
@override
String get portfolio => 'PORTFOLIO';
}
// Copyright 2014 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// ignore: unused_import
import 'package:intl/intl.dart' as intl;
import 'stock_strings.dart';
// ignore_for_file: unnecessary_brace_in_string_interps
/// The translations for Spanish Castilian (`es`).
class StockStringsEs extends StockStrings {
StockStringsEs([String locale = 'es']) : super(locale);
@override
String get title => 'Acciones';
@override
String get market => 'MERCADO';
@override
String get portfolio => 'CARTERA';
}
...@@ -164,11 +164,7 @@ String generateMethod(Message message, AppResourceBundle bundle) { ...@@ -164,11 +164,7 @@ String generateMethod(Message message, AppResourceBundle bundle) {
} }
} }
// Escape single and double quotes. return generateString(messageValue, escapeDollar: false);
messageValue = messageValue.replaceAll("'", '\\\'');
messageValue = messageValue.replaceAll('"', '\\\"');
return "'$messageValue'";
} }
if (message.isPlural) { if (message.isPlural) {
...@@ -197,21 +193,43 @@ String generateMethod(Message message, AppResourceBundle bundle) { ...@@ -197,21 +193,43 @@ String generateMethod(Message message, AppResourceBundle bundle) {
.replaceAll('@(message)', generateMessage()); .replaceAll('@(message)', generateMessage());
} }
String generateClass(String className, AppResourceBundle bundle, Iterable<Message> messages) { String generateBaseClassFile(
String className,
String fileName,
String header,
AppResourceBundle bundle,
Iterable<Message> messages,
) {
final LocaleInfo locale = bundle.locale; final LocaleInfo locale = bundle.locale;
final Iterable<String> methods = messages
.where((Message message) => bundle.translationFor(message) != null)
.map((Message message) => generateMethod(message, bundle));
String baseClassName = className; return classFileTemplate
if (locale.countryCode != null) { .replaceAll('@(header)', header)
baseClassName = '$className${LocaleInfo.fromString(locale.languageCode).camelCase()}'; .replaceAll('@(language)', describeLocale(locale.toString()))
} .replaceAll('@(baseClass)', className)
.replaceAll('@(fileName)', fileName)
.replaceAll('@(class)', '$className${locale.camelCase()}')
.replaceAll('@(localeName)', locale.toString())
.replaceAll('@(methods)', methods.join('\n\n'));
}
String generateSubclass({
String className,
AppResourceBundle bundle,
Iterable<Message> messages,
}) {
final LocaleInfo locale = bundle.locale;
final String baseClassName = '$className${LocaleInfo.fromString(locale.languageCode).camelCase()}';
final Iterable<String> methods = messages final Iterable<String> methods = messages
.where((Message message) => bundle.translationFor(message) != null) .where((Message message) => bundle.translationFor(message) != null)
.map((Message message) => generateMethod(message, bundle)); .map((Message message) => generateMethod(message, bundle));
return classTemplate return subclassTemplate
.replaceAll('@(language)', describeLocale(locale.toString())) .replaceAll('@(language)', describeLocale(locale.toString()))
.replaceAll('@(baseClass)', baseClassName) .replaceAll('@(baseLanguageClassName)', baseClassName)
.replaceAll('@(class)', '$className${locale.camelCase()}') .replaceAll('@(class)', '$className${locale.camelCase()}')
.replaceAll('@(localeName)', locale.toString()) .replaceAll('@(localeName)', locale.toString())
.replaceAll('@(methods)', methods.join('\n\n')); .replaceAll('@(methods)', methods.join('\n\n'));
...@@ -525,8 +543,25 @@ class LocalizationsGenerator { ...@@ -525,8 +543,25 @@ class LocalizationsGenerator {
supportedLocales.addAll(allLocales); supportedLocales.addAll(allLocales);
} }
// Generate the AppLocalizations class, its LocalizationsDelegate subclass. // Generate the AppLocalizations class, its LocalizationsDelegate subclass,
// and all AppLocalizations subclasses for every locale.
String generateCode() { String generateCode() {
bool isBaseClassLocale(LocaleInfo locale, String language) {
return locale.languageCode == language
&& locale.countryCode == null
&& locale.scriptCode == null;
}
List<LocaleInfo> getLocalesForLanguage(String language) {
return _allBundles.bundles
// Return locales for the language specified, except for the base locale itself
.where((AppResourceBundle bundle) {
final LocaleInfo locale = bundle.locale;
return !isBaseClassLocale(locale, language) && locale.languageCode == language;
})
.map((AppResourceBundle bundle) => bundle.locale).toList();
}
final String directory = path.basename(l10nDirectory.path); final String directory = path.basename(l10nDirectory.path);
final String outputFileName = path.basename(outputFile.path); final String outputFileName = path.basename(outputFile.path);
...@@ -540,15 +575,49 @@ class LocalizationsGenerator { ...@@ -540,15 +575,49 @@ class LocalizationsGenerator {
_allBundles.locales.map<String>((LocaleInfo locale) => '\'${locale.languageCode}\'') _allBundles.locales.map<String>((LocaleInfo locale) => '\'${locale.languageCode}\'')
); );
final StringBuffer allMessagesClasses = StringBuffer();
final List<LocaleInfo> allLocales = _allBundles.locales.toList()..sort(); final List<LocaleInfo> allLocales = _allBundles.locales.toList()..sort();
final String fileName = outputFileName.split('.')[0];
for (final LocaleInfo locale in allLocales) { for (final LocaleInfo locale in allLocales) {
allMessagesClasses.writeln(); if (isBaseClassLocale(locale, locale.languageCode)) {
allMessagesClasses.writeln( final File localeMessageFile = _fs.file(
generateClass(className, _allBundles.bundleFor(locale), _allMessages) path.join(l10nDirectory.path, '${fileName}_$locale.dart'),
); );
// Generate the template for the base class file. Further string
// interpolation will be done to determine if there are
// subclasses that extend the base class.
final String languageBaseClassFile = generateBaseClassFile(
className,
outputFileName,
header,
_allBundles.bundleFor(locale),
_allMessages,
);
// Every locale for the language except the base class.
final List<LocaleInfo> localesForLanguage = getLocalesForLanguage(locale.languageCode);
// Generate every subclass that is needed for the particular language
final Iterable<String> subclasses = localesForLanguage.map<String>((LocaleInfo locale) {
return generateSubclass(
className: className,
bundle: _allBundles.bundleFor(locale),
messages: _allMessages,
);
});
localeMessageFile.writeAsStringSync(
languageBaseClassFile.replaceAll('@(subclasses)', subclasses.join()),
);
}
} }
final Iterable<String> localeImports = supportedLocales
.where((LocaleInfo locale) => isBaseClassLocale(locale, locale.languageCode))
.map((LocaleInfo locale) {
return "import '${fileName}_${locale.toString()}.dart';";
});
final String lookupBody = generateLookupBody(_allBundles, className); final String lookupBody = generateLookupBody(_allBundles, className);
return fileTemplate return fileTemplate
...@@ -558,7 +627,7 @@ class LocalizationsGenerator { ...@@ -558,7 +627,7 @@ class LocalizationsGenerator {
.replaceAll('@(importFile)', '$directory/$outputFileName') .replaceAll('@(importFile)', '$directory/$outputFileName')
.replaceAll('@(supportedLocales)', supportedLocalesCode.join(',\n ')) .replaceAll('@(supportedLocales)', supportedLocalesCode.join(',\n '))
.replaceAll('@(supportedLanguageCodes)', supportedLanguageCodes.join(', ')) .replaceAll('@(supportedLanguageCodes)', supportedLanguageCodes.join(', '))
.replaceAll('@(allMessagesClasses)', allMessagesClasses.toString().trim()) .replaceAll('@(messageClassImports)', localeImports.join('\n'))
.replaceAll('@(lookupName)', '_lookup$className') .replaceAll('@(lookupName)', '_lookup$className')
.replaceAll('@(lookupBody)', lookupBody); .replaceAll('@(lookupBody)', lookupBody);
} }
......
...@@ -12,6 +12,8 @@ import 'package:flutter_localizations/flutter_localizations.dart'; ...@@ -12,6 +12,8 @@ import 'package:flutter_localizations/flutter_localizations.dart';
// ignore: unused_import // ignore: unused_import
import 'package:intl/intl.dart' as intl; import 'package:intl/intl.dart' as intl;
@(messageClassImports)
// ignore_for_file: unnecessary_brace_in_string_interps // ignore_for_file: unnecessary_brace_in_string_interps
/// Callers can lookup localized strings with an instance of @(class) returned /// Callers can lookup localized strings with an instance of @(class) returned
...@@ -67,10 +69,10 @@ import 'package:intl/intl.dart' as intl; ...@@ -67,10 +69,10 @@ import 'package:intl/intl.dart' as intl;
/// be consistent with the languages listed in the @(class).supportedLocales /// be consistent with the languages listed in the @(class).supportedLocales
/// property. /// property.
abstract class @(class) { abstract class @(class) {
@(class)(String locale) : assert(locale != null), _localeName = intl.Intl.canonicalizedLocale(locale.toString()); @(class)(String locale) : assert(locale != null), localeName = intl.Intl.canonicalizedLocale(locale.toString());
// ignore: unused_field // ignore: unused_field
final String _localeName; final String localeName;
static @(class) of(BuildContext context) { static @(class) of(BuildContext context) {
return Localizations.of<@(class)>(context, @(class)); return Localizations.of<@(class)>(context, @(class));
...@@ -117,8 +119,6 @@ class _@(class)Delegate extends LocalizationsDelegate<@(class)> { ...@@ -117,8 +119,6 @@ class _@(class)Delegate extends LocalizationsDelegate<@(class)> {
bool shouldReload(_@(class)Delegate old) => false; bool shouldReload(_@(class)Delegate old) => false;
} }
@(allMessagesClasses)
@(class) @(lookupName)(Locale locale) { @(class) @(lookupName)(Locale locale) {
switch(locale.languageCode) { switch(locale.languageCode) {
@(lookupBody) @(lookupBody)
...@@ -130,14 +130,14 @@ class _@(class)Delegate extends LocalizationsDelegate<@(class)> { ...@@ -130,14 +130,14 @@ class _@(class)Delegate extends LocalizationsDelegate<@(class)> {
const String numberFormatTemplate = ''' const String numberFormatTemplate = '''
final intl.NumberFormat @(placeholder)NumberFormat = intl.NumberFormat.@(format)( final intl.NumberFormat @(placeholder)NumberFormat = intl.NumberFormat.@(format)(
locale: _localeName, locale: localeName,
@(parameters) @(parameters)
); );
final String @(placeholder)String = @(placeholder)NumberFormat.format(@(placeholder)); final String @(placeholder)String = @(placeholder)NumberFormat.format(@(placeholder));
'''; ''';
const String dateFormatTemplate = ''' const String dateFormatTemplate = '''
final intl.DateFormat @(placeholder)DateFormat = intl.DateFormat.@(format)(_localeName); final intl.DateFormat @(placeholder)DateFormat = intl.DateFormat.@(format)(localeName);
final String @(placeholder)String = @(placeholder)DateFormat.format(@(placeholder)); final String @(placeholder)String = @(placeholder)DateFormat.format(@(placeholder));
'''; ''';
...@@ -166,18 +166,36 @@ const String pluralMethodTemplate = ''' ...@@ -166,18 +166,36 @@ const String pluralMethodTemplate = '''
@(numberFormatting) @(numberFormatting)
return intl.Intl.pluralLogic( return intl.Intl.pluralLogic(
@(count), @(count),
locale: _localeName, locale: localeName,
@(pluralLogicArgs), @(pluralLogicArgs),
); );
}'''; }''';
const String classTemplate = ''' const String classFileTemplate = '''
@(header)
// ignore: unused_import
import 'package:intl/intl.dart' as intl;
import '@(fileName)';
// ignore_for_file: unnecessary_brace_in_string_interps
/// The translations for @(language) (`@(localeName)`). /// The translations for @(language) (`@(localeName)`).
class @(class) extends @(baseClass) { class @(class) extends @(baseClass) {
@(class)([String locale = '@(localeName)']) : super(locale); @(class)([String locale = '@(localeName)']) : super(locale);
@(methods) @(methods)
}'''; }
@(subclasses)''';
const String subclassTemplate = '''
/// The translations for @(language) (`@(localeName)`).
class @(class) extends @(baseLanguageClassName) {
@(class)(): super('@(localeName)');
@(methods)
}
''';
const String baseClassGetterTemplate = ''' const String baseClassGetterTemplate = '''
// @(comment) // @(comment)
......
...@@ -104,11 +104,11 @@ const Set<String> _validNumberFormats = <String>{ ...@@ -104,11 +104,11 @@ const Set<String> _validNumberFormats = <String>{
// //
// Example of code that uses named parameters: // Example of code that uses named parameters:
// final NumberFormat format = NumberFormat.compact( // final NumberFormat format = NumberFormat.compact(
// locale: _localeName, // locale: localeName,
// ); // );
// //
// Example of code that uses positional parameters: // Example of code that uses positional parameters:
// final NumberFormat format = NumberFormat.scientificPattern(_localeName); // final NumberFormat format = NumberFormat.scientificPattern(localeName);
const Set<String> _numberFormatsWithNamedParameters = <String>{ const Set<String> _numberFormatsWithNamedParameters = <String>{
'compact', 'compact',
'compactCurrency', 'compactCurrency',
......
...@@ -371,37 +371,62 @@ String generateClassDeclaration( ...@@ -371,37 +371,62 @@ String generateClassDeclaration(
class $classNamePrefix$camelCaseName extends $superClass {'''; class $classNamePrefix$camelCaseName extends $superClass {''';
} }
/// Return `s` as a Dart-parseable string. /// Return the input string as a Dart-parseable string.
///
/// The result tries to avoid character escaping:
/// ///
/// ``` /// ```
/// foo => 'foo' /// foo => 'foo'
/// foo "bar" => 'foo "bar"' /// foo "bar" => 'foo "bar"'
/// foo 'bar' => "foo 'bar'" /// foo 'bar' => "foo 'bar'"
/// foo 'bar' "baz" => '''foo 'bar' "baz"''' /// foo 'bar' "baz" => '''foo 'bar' "baz"'''
/// foo\bar => r'foo\bar' /// foo\bar => 'foo\\bar'
/// foo\nbar => 'foo\\\\nbar'
/// ```
///
/// When [shouldEscapeDollar] is set to true, the
/// result avoids character escaping, with the
/// exception of the dollar sign:
///
/// ```
/// foo$bar = 'foo\$bar'
/// ``` /// ```
/// ///
/// When [shouldEscapeDollar] is set to false, the
/// result tries to avoid character escaping:
///
/// ```
/// foo$bar => 'foo\\\$bar'
/// ```
///
/// [shouldEscapeDollar] is true by default.
///
/// Strings with newlines are not supported. /// Strings with newlines are not supported.
String generateString(String value) { String generateString(String value, { bool escapeDollar = true }) {
assert(!value.contains('\n')); assert(escapeDollar != null);
final String rawPrefix = value.contains(r'$') || value.contains(r'\') ? 'r' : ''; assert(
if (!value.contains("'")) !value.contains('\n'),
return "$rawPrefix'$value'"; 'Since it is assumed that the input string comes '
if (!value.contains('"')) 'from a json/arb file source, messages cannot '
return '$rawPrefix"$value"'; 'contain newlines.'
if (!value.contains("'''")) );
return "$rawPrefix'''$value'''";
if (!value.contains('"""')) const String backslash = '__BACKSLASH__';
return '$rawPrefix"""$value"""'; assert(
!value.contains(backslash),
return value.split("'''") 'Input string cannot contain the sequence: '
.map(generateString) '"__BACKSLASH__", as it is used as part of '
// If value contains more than 6 consecutive single quotes some empty strings may be generated. 'backslash character processing.'
// The following map removes them. );
.map((String part) => part == "''" ? '' : part) value = value.replaceAll('\\', backslash);
.join(" \"'''\" ");
if (escapeDollar)
value = value.replaceAll('\$', '\\\$');
value = value
.replaceAll("'", "\\'")
.replaceAll('"', '\\"')
.replaceAll(backslash, '\\\\');
return "'$value'";
} }
/// Only used to generate localization strings for the Kannada locale ('kn') because /// Only used to generate localization strings for the Kannada locale ('kn') because
......
...@@ -710,6 +710,39 @@ void main() { ...@@ -710,6 +710,39 @@ void main() {
}); });
group('generateCode', () { group('generateCode', () {
test('should generate a file per language', () {
const String singleEnCaMessageArbFileString = '''
{
"title": "Canadian Title"
}''';
fs.currentDirectory.childDirectory('lib').childDirectory('l10n')..createSync(recursive: true)
..childFile(defaultTemplateArbFileName).writeAsStringSync(singleMessageArbFileString)
..childFile('app_en_CA.arb').writeAsStringSync(singleEnCaMessageArbFileString);
final LocalizationsGenerator generator = LocalizationsGenerator(fs);
try {
generator.initialize(
l10nDirectoryPath: defaultArbPathString,
templateArbFileName: defaultTemplateArbFileName,
outputFileString: defaultOutputFileString,
classNameString: defaultClassNameString,
);
generator.loadResources();
generator.writeOutputFile();
} on Exception catch (e) {
fail('Generating output files should not fail: $e');
}
expect(fs.isFileSync(path.join('lib', 'l10n', 'output-localization-file_en.dart')), true);
expect(fs.isFileSync(path.join('lib', 'l10n', 'output-localization-file_en_US.dart')), false);
final String englishLocalizationsFile = fs.file(
path.join('lib', 'l10n', 'output-localization-file_en.dart')
).readAsStringSync();
expect(englishLocalizationsFile, contains('class AppLocalizationsEnCa extends AppLocalizationsEn'));
expect(englishLocalizationsFile, contains('class AppLocalizationsEn extends AppLocalizations'));
});
group('DateTime tests', () { group('DateTime tests', () {
test('throws an exception when improperly formatted date is passed in', () { test('throws an exception when improperly formatted date is passed in', () {
const String singleDateMessageArbFileString = ''' const String singleDateMessageArbFileString = '''
...@@ -1112,37 +1145,4 @@ void main() { ...@@ -1112,37 +1145,4 @@ void main() {
}); });
}); });
}); });
group('generateString', () {
test('handles simple string', () {
expect(generateString('abc'), "'abc'");
});
test('handles string with quote', () {
expect(generateString("ab'c"), '''"ab'c"''');
});
test('handles string with double quote', () {
expect(generateString('ab"c'), """'ab"c'""");
});
test('handles string with both single and double quote', () {
expect(generateString('''a'b"c'''), """'''a'b"c'''""");
});
test('handles string with a triple single quote and a double quote', () {
expect(generateString("""a"b'''c"""), '''"""a"b\'''c"""''');
});
test('handles string with a triple double quote and a single quote', () {
expect(generateString('''a'b"""c'''), """'''a'b\"""c'''""");
});
test('handles string with both triple single and triple double quote', () {
expect(generateString('''a\'''\'''\''b"""c'''), """'a' "'''" "'''" '''''b\"""c'''""");
});
test('handles dollar', () {
expect(generateString(r'ab$c'), r"r'ab$c'");
});
test('handles back slash', () {
expect(generateString(r'ab\c'), r"r'ab\c'");
});
test("doesn't support multiline strings", () {
expect(() => generateString('ab\nc'), throwsA(isA<AssertionError>()));
});
});
} }
// Copyright 2014 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import '../../localization/localizations_utils.dart';
import '../common.dart';
void main() {
group('generateString', () {
test('handles simple string', () {
expect(generateString('abc'), "'abc'");
});
test('handles string with quote', () {
expect(generateString("ab'c"), "'ab\\\'c'");
});
test('handles string with double quote', () {
expect(generateString('ab"c'), "'ab\\\"c'");
});
test('handles string with both single and double quote', () {
expect(generateString('''a'b"c'''), '\'a\\\'b\\"c\'');
});
test('handles string with a triple single quote and a double quote', () {
expect(generateString("""a"b'''c"""), '\'a\\"b\\\'\\\'\\\'c\'');
});
test('handles string with a triple double quote and a single quote', () {
expect(generateString('''a'b"""c'''), '\'a\\\'b\\"\\"\\"c\'');
});
test('handles string with both triple single and triple double quote', () {
expect(generateString('''a\'''b"""c'''), '\'a\\\'\\\'\\\'b\\"\\"\\"c\'');
});
test('escapes dollar when escapeDollar is true', () {
expect(generateString(r'ab$c', escapeDollar: true), "'ab\\\$c'");
});
test('does not escape dollar when escapeDollar is false', () {
expect(generateString(r'ab$c', escapeDollar: false), "'ab\$c'");
});
test('handles backslash', () {
expect(generateString(r'ab\c'), "'ab\\\\c'");
});
test('handles backslash followed by "n" character', () {
expect(generateString(r'ab\nc'), "'ab\\\\nc'");
});
test('does not support multiline strings', () {
expect(() => generateString('ab\nc'), throwsA(isA<AssertionError>()));
});
});
}
...@@ -73,10 +73,10 @@ class CupertinoLocalizationAf extends GlobalCupertinoLocalizations { ...@@ -73,10 +73,10 @@ class CupertinoLocalizationAf extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelMany => null; String get datePickerHourSemanticsLabelMany => null;
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour uur'; String get datePickerHourSemanticsLabelOne => '\$hour uur';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour uur'; String get datePickerHourSemanticsLabelOther => '\$hour uur';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -94,7 +94,7 @@ class CupertinoLocalizationAf extends GlobalCupertinoLocalizations { ...@@ -94,7 +94,7 @@ class CupertinoLocalizationAf extends GlobalCupertinoLocalizations {
String get datePickerMinuteSemanticsLabelOne => '1 minuut'; String get datePickerMinuteSemanticsLabelOne => '1 minuut';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute minute'; String get datePickerMinuteSemanticsLabelOther => '\$minute minute';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -221,10 +221,10 @@ class CupertinoLocalizationAm extends GlobalCupertinoLocalizations { ...@@ -221,10 +221,10 @@ class CupertinoLocalizationAm extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelMany => null; String get datePickerHourSemanticsLabelMany => null;
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour ሰዓት'; String get datePickerHourSemanticsLabelOne => '\$hour ሰዓት';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour ሰዓት'; String get datePickerHourSemanticsLabelOther => '\$hour ሰዓት';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -242,7 +242,7 @@ class CupertinoLocalizationAm extends GlobalCupertinoLocalizations { ...@@ -242,7 +242,7 @@ class CupertinoLocalizationAm extends GlobalCupertinoLocalizations {
String get datePickerMinuteSemanticsLabelOne => '1 ደቂቃ'; String get datePickerMinuteSemanticsLabelOne => '1 ደቂቃ';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute ደቂቃዎች'; String get datePickerMinuteSemanticsLabelOther => '\$minute ደቂቃዎች';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -363,40 +363,40 @@ class CupertinoLocalizationAr extends GlobalCupertinoLocalizations { ...@@ -363,40 +363,40 @@ class CupertinoLocalizationAr extends GlobalCupertinoLocalizations {
String get datePickerDateTimeOrderString => 'date_time_dayPeriod'; String get datePickerDateTimeOrderString => 'date_time_dayPeriod';
@override @override
String get datePickerHourSemanticsLabelFew => r'$hour بالضبط'; String get datePickerHourSemanticsLabelFew => '\$hour بالضبط';
@override @override
String get datePickerHourSemanticsLabelMany => r'$hour بالضبط'; String get datePickerHourSemanticsLabelMany => '\$hour بالضبط';
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour بالضبط'; String get datePickerHourSemanticsLabelOne => '\$hour بالضبط';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour بالضبط'; String get datePickerHourSemanticsLabelOther => '\$hour بالضبط';
@override @override
String get datePickerHourSemanticsLabelTwo => r'$hour بالضبط'; String get datePickerHourSemanticsLabelTwo => '\$hour بالضبط';
@override @override
String get datePickerHourSemanticsLabelZero => r'$hour بالضبط'; String get datePickerHourSemanticsLabelZero => '\$hour بالضبط';
@override @override
String get datePickerMinuteSemanticsLabelFew => r'$minute دقائق'; String get datePickerMinuteSemanticsLabelFew => '\$minute دقائق';
@override @override
String get datePickerMinuteSemanticsLabelMany => r'$minute دقيقة​'; String get datePickerMinuteSemanticsLabelMany => '\$minute دقيقة​';
@override @override
String get datePickerMinuteSemanticsLabelOne => 'دقيقة واحدة'; String get datePickerMinuteSemanticsLabelOne => 'دقيقة واحدة';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute دقيقة​'; String get datePickerMinuteSemanticsLabelOther => '\$minute دقيقة​';
@override @override
String get datePickerMinuteSemanticsLabelTwo => r'دقيقتان ($minute)'; String get datePickerMinuteSemanticsLabelTwo => 'دقيقتان (\$minute)';
@override @override
String get datePickerMinuteSemanticsLabelZero => r'$minute دقيقة​'; String get datePickerMinuteSemanticsLabelZero => '\$minute دقيقة​';
@override @override
String get pasteButtonLabel => 'لصق'; String get pasteButtonLabel => 'لصق';
...@@ -517,10 +517,10 @@ class CupertinoLocalizationAs extends GlobalCupertinoLocalizations { ...@@ -517,10 +517,10 @@ class CupertinoLocalizationAs extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelMany => null; String get datePickerHourSemanticsLabelMany => null;
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour বাজিছে'; String get datePickerHourSemanticsLabelOne => '\$hour বাজিছে';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour বাজিছে'; String get datePickerHourSemanticsLabelOther => '\$hour বাজিছে';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -538,7 +538,7 @@ class CupertinoLocalizationAs extends GlobalCupertinoLocalizations { ...@@ -538,7 +538,7 @@ class CupertinoLocalizationAs extends GlobalCupertinoLocalizations {
String get datePickerMinuteSemanticsLabelOne => '১মিনিট'; String get datePickerMinuteSemanticsLabelOne => '১মিনিট';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minuteমিনিট'; String get datePickerMinuteSemanticsLabelOther => '\$minuteমিনিট';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -547,7 +547,7 @@ class CupertinoLocalizationAs extends GlobalCupertinoLocalizations { ...@@ -547,7 +547,7 @@ class CupertinoLocalizationAs extends GlobalCupertinoLocalizations {
String get datePickerMinuteSemanticsLabelZero => null; String get datePickerMinuteSemanticsLabelZero => null;
@override @override
String get pasteButtonLabel => "পে'ষ্ট কৰক"; String get pasteButtonLabel => 'পে\'ষ্ট কৰক';
@override @override
String get postMeridiemAbbreviation => 'অপৰাহ্ন'; String get postMeridiemAbbreviation => 'অপৰাহ্ন';
...@@ -665,10 +665,10 @@ class CupertinoLocalizationAz extends GlobalCupertinoLocalizations { ...@@ -665,10 +665,10 @@ class CupertinoLocalizationAz extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelMany => null; String get datePickerHourSemanticsLabelMany => null;
@override @override
String get datePickerHourSemanticsLabelOne => r'Saat $hour'; String get datePickerHourSemanticsLabelOne => 'Saat \$hour';
@override @override
String get datePickerHourSemanticsLabelOther => r'Saat $hour'; String get datePickerHourSemanticsLabelOther => 'Saat \$hour';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -686,7 +686,7 @@ class CupertinoLocalizationAz extends GlobalCupertinoLocalizations { ...@@ -686,7 +686,7 @@ class CupertinoLocalizationAz extends GlobalCupertinoLocalizations {
String get datePickerMinuteSemanticsLabelOne => '1 dəqiqə'; String get datePickerMinuteSemanticsLabelOne => '1 dəqiqə';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute dəqiqə'; String get datePickerMinuteSemanticsLabelOther => '\$minute dəqiqə';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -807,16 +807,16 @@ class CupertinoLocalizationBe extends GlobalCupertinoLocalizations { ...@@ -807,16 +807,16 @@ class CupertinoLocalizationBe extends GlobalCupertinoLocalizations {
String get datePickerDateTimeOrderString => 'date_time_dayPeriod'; String get datePickerDateTimeOrderString => 'date_time_dayPeriod';
@override @override
String get datePickerHourSemanticsLabelFew => r'$hour гадзіны нуль хвілін'; String get datePickerHourSemanticsLabelFew => '\$hour гадзіны нуль хвілін';
@override @override
String get datePickerHourSemanticsLabelMany => r'$hour гадзін нуль хвілін'; String get datePickerHourSemanticsLabelMany => '\$hour гадзін нуль хвілін';
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour гадзіна нуль хвілін'; String get datePickerHourSemanticsLabelOne => '\$hour гадзіна нуль хвілін';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour гадзіны нуль хвілін'; String get datePickerHourSemanticsLabelOther => '\$hour гадзіны нуль хвілін';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -825,16 +825,16 @@ class CupertinoLocalizationBe extends GlobalCupertinoLocalizations { ...@@ -825,16 +825,16 @@ class CupertinoLocalizationBe extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelZero => null; String get datePickerHourSemanticsLabelZero => null;
@override @override
String get datePickerMinuteSemanticsLabelFew => r'$minute хвіліны'; String get datePickerMinuteSemanticsLabelFew => '\$minute хвіліны';
@override @override
String get datePickerMinuteSemanticsLabelMany => r'$minute хвілін'; String get datePickerMinuteSemanticsLabelMany => '\$minute хвілін';
@override @override
String get datePickerMinuteSemanticsLabelOne => '1 хвіліна'; String get datePickerMinuteSemanticsLabelOne => '1 хвіліна';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute хвіліны'; String get datePickerMinuteSemanticsLabelOther => '\$minute хвіліны';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -961,10 +961,10 @@ class CupertinoLocalizationBg extends GlobalCupertinoLocalizations { ...@@ -961,10 +961,10 @@ class CupertinoLocalizationBg extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelMany => null; String get datePickerHourSemanticsLabelMany => null;
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour часа'; String get datePickerHourSemanticsLabelOne => '\$hour часа';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour часа'; String get datePickerHourSemanticsLabelOther => '\$hour часа';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -982,7 +982,7 @@ class CupertinoLocalizationBg extends GlobalCupertinoLocalizations { ...@@ -982,7 +982,7 @@ class CupertinoLocalizationBg extends GlobalCupertinoLocalizations {
String get datePickerMinuteSemanticsLabelOne => '1 минута'; String get datePickerMinuteSemanticsLabelOne => '1 минута';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute минути'; String get datePickerMinuteSemanticsLabelOther => '\$minute минути';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -1109,10 +1109,10 @@ class CupertinoLocalizationBn extends GlobalCupertinoLocalizations { ...@@ -1109,10 +1109,10 @@ class CupertinoLocalizationBn extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelMany => null; String get datePickerHourSemanticsLabelMany => null;
@override @override
String get datePickerHourSemanticsLabelOne => r'$hourটা বাজে'; String get datePickerHourSemanticsLabelOne => '\$hourটা বাজে';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hourটা বাজে'; String get datePickerHourSemanticsLabelOther => '\$hourটা বাজে';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -1130,7 +1130,7 @@ class CupertinoLocalizationBn extends GlobalCupertinoLocalizations { ...@@ -1130,7 +1130,7 @@ class CupertinoLocalizationBn extends GlobalCupertinoLocalizations {
String get datePickerMinuteSemanticsLabelOne => '১ মিনিট'; String get datePickerMinuteSemanticsLabelOne => '১ মিনিট';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute মিনিট'; String get datePickerMinuteSemanticsLabelOther => '\$minute মিনিট';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -1251,16 +1251,16 @@ class CupertinoLocalizationBs extends GlobalCupertinoLocalizations { ...@@ -1251,16 +1251,16 @@ class CupertinoLocalizationBs extends GlobalCupertinoLocalizations {
String get datePickerDateTimeOrderString => 'date_time_dayPeriod'; String get datePickerDateTimeOrderString => 'date_time_dayPeriod';
@override @override
String get datePickerHourSemanticsLabelFew => r'$hour sata'; String get datePickerHourSemanticsLabelFew => '\$hour sata';
@override @override
String get datePickerHourSemanticsLabelMany => null; String get datePickerHourSemanticsLabelMany => null;
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour sat'; String get datePickerHourSemanticsLabelOne => '\$hour sat';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour sati'; String get datePickerHourSemanticsLabelOther => '\$hour sati';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -1269,7 +1269,7 @@ class CupertinoLocalizationBs extends GlobalCupertinoLocalizations { ...@@ -1269,7 +1269,7 @@ class CupertinoLocalizationBs extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelZero => null; String get datePickerHourSemanticsLabelZero => null;
@override @override
String get datePickerMinuteSemanticsLabelFew => r'$minute minute'; String get datePickerMinuteSemanticsLabelFew => '\$minute minute';
@override @override
String get datePickerMinuteSemanticsLabelMany => null; String get datePickerMinuteSemanticsLabelMany => null;
...@@ -1278,7 +1278,7 @@ class CupertinoLocalizationBs extends GlobalCupertinoLocalizations { ...@@ -1278,7 +1278,7 @@ class CupertinoLocalizationBs extends GlobalCupertinoLocalizations {
String get datePickerMinuteSemanticsLabelOne => '1 minuta'; String get datePickerMinuteSemanticsLabelOne => '1 minuta';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute minuta'; String get datePickerMinuteSemanticsLabelOther => '\$minute minuta';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -1405,10 +1405,10 @@ class CupertinoLocalizationCa extends GlobalCupertinoLocalizations { ...@@ -1405,10 +1405,10 @@ class CupertinoLocalizationCa extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelMany => null; String get datePickerHourSemanticsLabelMany => null;
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour en punt'; String get datePickerHourSemanticsLabelOne => '\$hour en punt';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour en punt'; String get datePickerHourSemanticsLabelOther => '\$hour en punt';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -1426,7 +1426,7 @@ class CupertinoLocalizationCa extends GlobalCupertinoLocalizations { ...@@ -1426,7 +1426,7 @@ class CupertinoLocalizationCa extends GlobalCupertinoLocalizations {
String get datePickerMinuteSemanticsLabelOne => '1 minut'; String get datePickerMinuteSemanticsLabelOne => '1 minut';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute minuts'; String get datePickerMinuteSemanticsLabelOther => '\$minute minuts';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -1547,16 +1547,16 @@ class CupertinoLocalizationCs extends GlobalCupertinoLocalizations { ...@@ -1547,16 +1547,16 @@ class CupertinoLocalizationCs extends GlobalCupertinoLocalizations {
String get datePickerDateTimeOrderString => 'date_time_dayPeriod'; String get datePickerDateTimeOrderString => 'date_time_dayPeriod';
@override @override
String get datePickerHourSemanticsLabelFew => r'$hour hodiny'; String get datePickerHourSemanticsLabelFew => '\$hour hodiny';
@override @override
String get datePickerHourSemanticsLabelMany => r'$hour hodiny'; String get datePickerHourSemanticsLabelMany => '\$hour hodiny';
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour hodina'; String get datePickerHourSemanticsLabelOne => '\$hour hodina';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour hodin'; String get datePickerHourSemanticsLabelOther => '\$hour hodin';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -1565,16 +1565,16 @@ class CupertinoLocalizationCs extends GlobalCupertinoLocalizations { ...@@ -1565,16 +1565,16 @@ class CupertinoLocalizationCs extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelZero => null; String get datePickerHourSemanticsLabelZero => null;
@override @override
String get datePickerMinuteSemanticsLabelFew => r'$minute minuty'; String get datePickerMinuteSemanticsLabelFew => '\$minute minuty';
@override @override
String get datePickerMinuteSemanticsLabelMany => r'$minute minuty'; String get datePickerMinuteSemanticsLabelMany => '\$minute minuty';
@override @override
String get datePickerMinuteSemanticsLabelOne => '1 minuta'; String get datePickerMinuteSemanticsLabelOne => '1 minuta';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute minut'; String get datePickerMinuteSemanticsLabelOther => '\$minute minut';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -1701,10 +1701,10 @@ class CupertinoLocalizationDa extends GlobalCupertinoLocalizations { ...@@ -1701,10 +1701,10 @@ class CupertinoLocalizationDa extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelMany => null; String get datePickerHourSemanticsLabelMany => null;
@override @override
String get datePickerHourSemanticsLabelOne => r'klokken $hour'; String get datePickerHourSemanticsLabelOne => 'klokken \$hour';
@override @override
String get datePickerHourSemanticsLabelOther => r'klokken $hour'; String get datePickerHourSemanticsLabelOther => 'klokken \$hour';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -1722,7 +1722,7 @@ class CupertinoLocalizationDa extends GlobalCupertinoLocalizations { ...@@ -1722,7 +1722,7 @@ class CupertinoLocalizationDa extends GlobalCupertinoLocalizations {
String get datePickerMinuteSemanticsLabelOne => '1 minut'; String get datePickerMinuteSemanticsLabelOne => '1 minut';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute minutter'; String get datePickerMinuteSemanticsLabelOther => '\$minute minutter';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -1849,10 +1849,10 @@ class CupertinoLocalizationDe extends GlobalCupertinoLocalizations { ...@@ -1849,10 +1849,10 @@ class CupertinoLocalizationDe extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelMany => null; String get datePickerHourSemanticsLabelMany => null;
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour Uhr'; String get datePickerHourSemanticsLabelOne => '\$hour Uhr';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour Uhr'; String get datePickerHourSemanticsLabelOther => '\$hour Uhr';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -1870,7 +1870,7 @@ class CupertinoLocalizationDe extends GlobalCupertinoLocalizations { ...@@ -1870,7 +1870,7 @@ class CupertinoLocalizationDe extends GlobalCupertinoLocalizations {
String get datePickerMinuteSemanticsLabelOne => '1 Minute'; String get datePickerMinuteSemanticsLabelOne => '1 Minute';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute Minuten'; String get datePickerMinuteSemanticsLabelOther => '\$minute Minuten';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -1997,10 +1997,10 @@ class CupertinoLocalizationEl extends GlobalCupertinoLocalizations { ...@@ -1997,10 +1997,10 @@ class CupertinoLocalizationEl extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelMany => null; String get datePickerHourSemanticsLabelMany => null;
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour ακριβώς'; String get datePickerHourSemanticsLabelOne => '\$hour ακριβώς';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour ακριβώς'; String get datePickerHourSemanticsLabelOther => '\$hour ακριβώς';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -2018,7 +2018,7 @@ class CupertinoLocalizationEl extends GlobalCupertinoLocalizations { ...@@ -2018,7 +2018,7 @@ class CupertinoLocalizationEl extends GlobalCupertinoLocalizations {
String get datePickerMinuteSemanticsLabelOne => '1 λεπτό'; String get datePickerMinuteSemanticsLabelOne => '1 λεπτό';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute λεπτά'; String get datePickerMinuteSemanticsLabelOther => '\$minute λεπτά';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -2145,10 +2145,10 @@ class CupertinoLocalizationEn extends GlobalCupertinoLocalizations { ...@@ -2145,10 +2145,10 @@ class CupertinoLocalizationEn extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelMany => null; String get datePickerHourSemanticsLabelMany => null;
@override @override
String get datePickerHourSemanticsLabelOne => r"$hour o'clock"; String get datePickerHourSemanticsLabelOne => '\$hour o\'clock';
@override @override
String get datePickerHourSemanticsLabelOther => r"$hour o'clock"; String get datePickerHourSemanticsLabelOther => '\$hour o\'clock';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -2166,7 +2166,7 @@ class CupertinoLocalizationEn extends GlobalCupertinoLocalizations { ...@@ -2166,7 +2166,7 @@ class CupertinoLocalizationEn extends GlobalCupertinoLocalizations {
String get datePickerMinuteSemanticsLabelOne => '1 minute'; String get datePickerMinuteSemanticsLabelOne => '1 minute';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute minutes'; String get datePickerMinuteSemanticsLabelOther => '\$minute minutes';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -2565,10 +2565,10 @@ class CupertinoLocalizationEs extends GlobalCupertinoLocalizations { ...@@ -2565,10 +2565,10 @@ class CupertinoLocalizationEs extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelMany => null; String get datePickerHourSemanticsLabelMany => null;
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour en punto'; String get datePickerHourSemanticsLabelOne => '\$hour en punto';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour en punto'; String get datePickerHourSemanticsLabelOther => '\$hour en punto';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -2586,7 +2586,7 @@ class CupertinoLocalizationEs extends GlobalCupertinoLocalizations { ...@@ -2586,7 +2586,7 @@ class CupertinoLocalizationEs extends GlobalCupertinoLocalizations {
String get datePickerMinuteSemanticsLabelOne => '1 minuto'; String get datePickerMinuteSemanticsLabelOne => '1 minuto';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute minutos'; String get datePickerMinuteSemanticsLabelOther => '\$minute minutos';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -2689,10 +2689,10 @@ class CupertinoLocalizationEs419 extends CupertinoLocalizationEs { ...@@ -2689,10 +2689,10 @@ class CupertinoLocalizationEs419 extends CupertinoLocalizationEs {
); );
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour en punto'; String get datePickerHourSemanticsLabelOne => '\$hour en punto';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour en punto'; String get datePickerHourSemanticsLabelOther => '\$hour en punto';
@override @override
String get datePickerDateOrderString => 'mdy'; String get datePickerDateOrderString => 'mdy';
...@@ -2735,10 +2735,10 @@ class CupertinoLocalizationEsAr extends CupertinoLocalizationEs { ...@@ -2735,10 +2735,10 @@ class CupertinoLocalizationEsAr extends CupertinoLocalizationEs {
); );
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour en punto'; String get datePickerHourSemanticsLabelOne => '\$hour en punto';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour en punto'; String get datePickerHourSemanticsLabelOther => '\$hour en punto';
@override @override
String get datePickerDateOrderString => 'mdy'; String get datePickerDateOrderString => 'mdy';
...@@ -2781,10 +2781,10 @@ class CupertinoLocalizationEsBo extends CupertinoLocalizationEs { ...@@ -2781,10 +2781,10 @@ class CupertinoLocalizationEsBo extends CupertinoLocalizationEs {
); );
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour en punto'; String get datePickerHourSemanticsLabelOne => '\$hour en punto';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour en punto'; String get datePickerHourSemanticsLabelOther => '\$hour en punto';
@override @override
String get datePickerDateOrderString => 'mdy'; String get datePickerDateOrderString => 'mdy';
...@@ -2827,10 +2827,10 @@ class CupertinoLocalizationEsCl extends CupertinoLocalizationEs { ...@@ -2827,10 +2827,10 @@ class CupertinoLocalizationEsCl extends CupertinoLocalizationEs {
); );
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour en punto'; String get datePickerHourSemanticsLabelOne => '\$hour en punto';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour en punto'; String get datePickerHourSemanticsLabelOther => '\$hour en punto';
@override @override
String get datePickerDateOrderString => 'mdy'; String get datePickerDateOrderString => 'mdy';
...@@ -2873,10 +2873,10 @@ class CupertinoLocalizationEsCo extends CupertinoLocalizationEs { ...@@ -2873,10 +2873,10 @@ class CupertinoLocalizationEsCo extends CupertinoLocalizationEs {
); );
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour en punto'; String get datePickerHourSemanticsLabelOne => '\$hour en punto';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour en punto'; String get datePickerHourSemanticsLabelOther => '\$hour en punto';
@override @override
String get datePickerDateOrderString => 'mdy'; String get datePickerDateOrderString => 'mdy';
...@@ -2919,10 +2919,10 @@ class CupertinoLocalizationEsCr extends CupertinoLocalizationEs { ...@@ -2919,10 +2919,10 @@ class CupertinoLocalizationEsCr extends CupertinoLocalizationEs {
); );
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour en punto'; String get datePickerHourSemanticsLabelOne => '\$hour en punto';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour en punto'; String get datePickerHourSemanticsLabelOther => '\$hour en punto';
@override @override
String get datePickerDateOrderString => 'mdy'; String get datePickerDateOrderString => 'mdy';
...@@ -2965,10 +2965,10 @@ class CupertinoLocalizationEsDo extends CupertinoLocalizationEs { ...@@ -2965,10 +2965,10 @@ class CupertinoLocalizationEsDo extends CupertinoLocalizationEs {
); );
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour en punto'; String get datePickerHourSemanticsLabelOne => '\$hour en punto';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour en punto'; String get datePickerHourSemanticsLabelOther => '\$hour en punto';
@override @override
String get datePickerDateOrderString => 'mdy'; String get datePickerDateOrderString => 'mdy';
...@@ -3011,10 +3011,10 @@ class CupertinoLocalizationEsEc extends CupertinoLocalizationEs { ...@@ -3011,10 +3011,10 @@ class CupertinoLocalizationEsEc extends CupertinoLocalizationEs {
); );
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour en punto'; String get datePickerHourSemanticsLabelOne => '\$hour en punto';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour en punto'; String get datePickerHourSemanticsLabelOther => '\$hour en punto';
@override @override
String get datePickerDateOrderString => 'mdy'; String get datePickerDateOrderString => 'mdy';
...@@ -3057,10 +3057,10 @@ class CupertinoLocalizationEsGt extends CupertinoLocalizationEs { ...@@ -3057,10 +3057,10 @@ class CupertinoLocalizationEsGt extends CupertinoLocalizationEs {
); );
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour en punto'; String get datePickerHourSemanticsLabelOne => '\$hour en punto';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour en punto'; String get datePickerHourSemanticsLabelOther => '\$hour en punto';
@override @override
String get datePickerDateOrderString => 'mdy'; String get datePickerDateOrderString => 'mdy';
...@@ -3103,10 +3103,10 @@ class CupertinoLocalizationEsHn extends CupertinoLocalizationEs { ...@@ -3103,10 +3103,10 @@ class CupertinoLocalizationEsHn extends CupertinoLocalizationEs {
); );
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour en punto'; String get datePickerHourSemanticsLabelOne => '\$hour en punto';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour en punto'; String get datePickerHourSemanticsLabelOther => '\$hour en punto';
@override @override
String get datePickerDateOrderString => 'mdy'; String get datePickerDateOrderString => 'mdy';
...@@ -3149,10 +3149,10 @@ class CupertinoLocalizationEsMx extends CupertinoLocalizationEs { ...@@ -3149,10 +3149,10 @@ class CupertinoLocalizationEsMx extends CupertinoLocalizationEs {
); );
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour en punto'; String get datePickerHourSemanticsLabelOne => '\$hour en punto';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour en punto'; String get datePickerHourSemanticsLabelOther => '\$hour en punto';
@override @override
String get datePickerDateOrderString => 'mdy'; String get datePickerDateOrderString => 'mdy';
...@@ -3195,10 +3195,10 @@ class CupertinoLocalizationEsNi extends CupertinoLocalizationEs { ...@@ -3195,10 +3195,10 @@ class CupertinoLocalizationEsNi extends CupertinoLocalizationEs {
); );
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour en punto'; String get datePickerHourSemanticsLabelOne => '\$hour en punto';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour en punto'; String get datePickerHourSemanticsLabelOther => '\$hour en punto';
@override @override
String get datePickerDateOrderString => 'mdy'; String get datePickerDateOrderString => 'mdy';
...@@ -3241,10 +3241,10 @@ class CupertinoLocalizationEsPa extends CupertinoLocalizationEs { ...@@ -3241,10 +3241,10 @@ class CupertinoLocalizationEsPa extends CupertinoLocalizationEs {
); );
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour en punto'; String get datePickerHourSemanticsLabelOne => '\$hour en punto';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour en punto'; String get datePickerHourSemanticsLabelOther => '\$hour en punto';
@override @override
String get datePickerDateOrderString => 'mdy'; String get datePickerDateOrderString => 'mdy';
...@@ -3287,10 +3287,10 @@ class CupertinoLocalizationEsPe extends CupertinoLocalizationEs { ...@@ -3287,10 +3287,10 @@ class CupertinoLocalizationEsPe extends CupertinoLocalizationEs {
); );
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour en punto'; String get datePickerHourSemanticsLabelOne => '\$hour en punto';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour en punto'; String get datePickerHourSemanticsLabelOther => '\$hour en punto';
@override @override
String get datePickerDateOrderString => 'mdy'; String get datePickerDateOrderString => 'mdy';
...@@ -3333,10 +3333,10 @@ class CupertinoLocalizationEsPr extends CupertinoLocalizationEs { ...@@ -3333,10 +3333,10 @@ class CupertinoLocalizationEsPr extends CupertinoLocalizationEs {
); );
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour en punto'; String get datePickerHourSemanticsLabelOne => '\$hour en punto';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour en punto'; String get datePickerHourSemanticsLabelOther => '\$hour en punto';
@override @override
String get datePickerDateOrderString => 'mdy'; String get datePickerDateOrderString => 'mdy';
...@@ -3379,10 +3379,10 @@ class CupertinoLocalizationEsPy extends CupertinoLocalizationEs { ...@@ -3379,10 +3379,10 @@ class CupertinoLocalizationEsPy extends CupertinoLocalizationEs {
); );
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour en punto'; String get datePickerHourSemanticsLabelOne => '\$hour en punto';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour en punto'; String get datePickerHourSemanticsLabelOther => '\$hour en punto';
@override @override
String get datePickerDateOrderString => 'mdy'; String get datePickerDateOrderString => 'mdy';
...@@ -3425,10 +3425,10 @@ class CupertinoLocalizationEsSv extends CupertinoLocalizationEs { ...@@ -3425,10 +3425,10 @@ class CupertinoLocalizationEsSv extends CupertinoLocalizationEs {
); );
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour en punto'; String get datePickerHourSemanticsLabelOne => '\$hour en punto';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour en punto'; String get datePickerHourSemanticsLabelOther => '\$hour en punto';
@override @override
String get datePickerDateOrderString => 'mdy'; String get datePickerDateOrderString => 'mdy';
...@@ -3471,10 +3471,10 @@ class CupertinoLocalizationEsUs extends CupertinoLocalizationEs { ...@@ -3471,10 +3471,10 @@ class CupertinoLocalizationEsUs extends CupertinoLocalizationEs {
); );
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour en punto'; String get datePickerHourSemanticsLabelOne => '\$hour en punto';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour en punto'; String get datePickerHourSemanticsLabelOther => '\$hour en punto';
@override @override
String get datePickerDateOrderString => 'mdy'; String get datePickerDateOrderString => 'mdy';
...@@ -3517,10 +3517,10 @@ class CupertinoLocalizationEsUy extends CupertinoLocalizationEs { ...@@ -3517,10 +3517,10 @@ class CupertinoLocalizationEsUy extends CupertinoLocalizationEs {
); );
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour en punto'; String get datePickerHourSemanticsLabelOne => '\$hour en punto';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour en punto'; String get datePickerHourSemanticsLabelOther => '\$hour en punto';
@override @override
String get datePickerDateOrderString => 'mdy'; String get datePickerDateOrderString => 'mdy';
...@@ -3563,10 +3563,10 @@ class CupertinoLocalizationEsVe extends CupertinoLocalizationEs { ...@@ -3563,10 +3563,10 @@ class CupertinoLocalizationEsVe extends CupertinoLocalizationEs {
); );
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour en punto'; String get datePickerHourSemanticsLabelOne => '\$hour en punto';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour en punto'; String get datePickerHourSemanticsLabelOther => '\$hour en punto';
@override @override
String get datePickerDateOrderString => 'mdy'; String get datePickerDateOrderString => 'mdy';
...@@ -3633,10 +3633,10 @@ class CupertinoLocalizationEt extends GlobalCupertinoLocalizations { ...@@ -3633,10 +3633,10 @@ class CupertinoLocalizationEt extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelMany => null; String get datePickerHourSemanticsLabelMany => null;
@override @override
String get datePickerHourSemanticsLabelOne => r'Kell $hour'; String get datePickerHourSemanticsLabelOne => 'Kell \$hour';
@override @override
String get datePickerHourSemanticsLabelOther => r'Kell $hour'; String get datePickerHourSemanticsLabelOther => 'Kell \$hour';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -3654,7 +3654,7 @@ class CupertinoLocalizationEt extends GlobalCupertinoLocalizations { ...@@ -3654,7 +3654,7 @@ class CupertinoLocalizationEt extends GlobalCupertinoLocalizations {
String get datePickerMinuteSemanticsLabelOne => '1 minut'; String get datePickerMinuteSemanticsLabelOne => '1 minut';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute minutit'; String get datePickerMinuteSemanticsLabelOther => '\$minute minutit';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -3781,10 +3781,10 @@ class CupertinoLocalizationEu extends GlobalCupertinoLocalizations { ...@@ -3781,10 +3781,10 @@ class CupertinoLocalizationEu extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelMany => null; String get datePickerHourSemanticsLabelMany => null;
@override @override
String get datePickerHourSemanticsLabelOne => r'Ordu$houra da'; String get datePickerHourSemanticsLabelOne => 'Ordu\$houra da';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hourak dira'; String get datePickerHourSemanticsLabelOther => '\$hourak dira';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -3802,7 +3802,7 @@ class CupertinoLocalizationEu extends GlobalCupertinoLocalizations { ...@@ -3802,7 +3802,7 @@ class CupertinoLocalizationEu extends GlobalCupertinoLocalizations {
String get datePickerMinuteSemanticsLabelOne => 'Minutu bat'; String get datePickerMinuteSemanticsLabelOne => 'Minutu bat';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute minutu'; String get datePickerMinuteSemanticsLabelOther => '\$minute minutu';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -3929,10 +3929,10 @@ class CupertinoLocalizationFa extends GlobalCupertinoLocalizations { ...@@ -3929,10 +3929,10 @@ class CupertinoLocalizationFa extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelMany => null; String get datePickerHourSemanticsLabelMany => null;
@override @override
String get datePickerHourSemanticsLabelOne => r'ساعت $hour'; String get datePickerHourSemanticsLabelOne => 'ساعت \$hour';
@override @override
String get datePickerHourSemanticsLabelOther => r'ساعت $hour'; String get datePickerHourSemanticsLabelOther => 'ساعت \$hour';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -3950,7 +3950,7 @@ class CupertinoLocalizationFa extends GlobalCupertinoLocalizations { ...@@ -3950,7 +3950,7 @@ class CupertinoLocalizationFa extends GlobalCupertinoLocalizations {
String get datePickerMinuteSemanticsLabelOne => '۱ دقیقه'; String get datePickerMinuteSemanticsLabelOne => '۱ دقیقه';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute دقیقه'; String get datePickerMinuteSemanticsLabelOther => '\$minute دقیقه';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -4077,10 +4077,10 @@ class CupertinoLocalizationFi extends GlobalCupertinoLocalizations { ...@@ -4077,10 +4077,10 @@ class CupertinoLocalizationFi extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelMany => null; String get datePickerHourSemanticsLabelMany => null;
@override @override
String get datePickerHourSemanticsLabelOne => r'klo $hour'; String get datePickerHourSemanticsLabelOne => 'klo \$hour';
@override @override
String get datePickerHourSemanticsLabelOther => r'klo $hour'; String get datePickerHourSemanticsLabelOther => 'klo \$hour';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -4098,7 +4098,7 @@ class CupertinoLocalizationFi extends GlobalCupertinoLocalizations { ...@@ -4098,7 +4098,7 @@ class CupertinoLocalizationFi extends GlobalCupertinoLocalizations {
String get datePickerMinuteSemanticsLabelOne => '1 minuutti'; String get datePickerMinuteSemanticsLabelOne => '1 minuutti';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute minuuttia'; String get datePickerMinuteSemanticsLabelOther => '\$minute minuuttia';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -4225,10 +4225,10 @@ class CupertinoLocalizationFil extends GlobalCupertinoLocalizations { ...@@ -4225,10 +4225,10 @@ class CupertinoLocalizationFil extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelMany => null; String get datePickerHourSemanticsLabelMany => null;
@override @override
String get datePickerHourSemanticsLabelOne => r'Ala $hour'; String get datePickerHourSemanticsLabelOne => 'Ala \$hour';
@override @override
String get datePickerHourSemanticsLabelOther => r'Alas $hour'; String get datePickerHourSemanticsLabelOther => 'Alas \$hour';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -4246,7 +4246,7 @@ class CupertinoLocalizationFil extends GlobalCupertinoLocalizations { ...@@ -4246,7 +4246,7 @@ class CupertinoLocalizationFil extends GlobalCupertinoLocalizations {
String get datePickerMinuteSemanticsLabelOne => '1 minuto'; String get datePickerMinuteSemanticsLabelOne => '1 minuto';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute na minuto'; String get datePickerMinuteSemanticsLabelOther => '\$minute na minuto';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -4373,10 +4373,10 @@ class CupertinoLocalizationFr extends GlobalCupertinoLocalizations { ...@@ -4373,10 +4373,10 @@ class CupertinoLocalizationFr extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelMany => null; String get datePickerHourSemanticsLabelMany => null;
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour heure'; String get datePickerHourSemanticsLabelOne => '\$hour heure';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour heures'; String get datePickerHourSemanticsLabelOther => '\$hour heures';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -4394,7 +4394,7 @@ class CupertinoLocalizationFr extends GlobalCupertinoLocalizations { ...@@ -4394,7 +4394,7 @@ class CupertinoLocalizationFr extends GlobalCupertinoLocalizations {
String get datePickerMinuteSemanticsLabelOne => '1 minute'; String get datePickerMinuteSemanticsLabelOne => '1 minute';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute minutes'; String get datePickerMinuteSemanticsLabelOther => '\$minute minutes';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -4466,7 +4466,7 @@ class CupertinoLocalizationFr extends GlobalCupertinoLocalizations { ...@@ -4466,7 +4466,7 @@ class CupertinoLocalizationFr extends GlobalCupertinoLocalizations {
String get timerPickerSecondLabelZero => null; String get timerPickerSecondLabelZero => null;
@override @override
String get todayLabel => "aujourd'hui"; String get todayLabel => 'aujourd\'hui';
} }
/// The translations for French, as used in Canada (`fr_CA`). /// The translations for French, as used in Canada (`fr_CA`).
...@@ -4497,10 +4497,10 @@ class CupertinoLocalizationFrCa extends CupertinoLocalizationFr { ...@@ -4497,10 +4497,10 @@ class CupertinoLocalizationFrCa extends CupertinoLocalizationFr {
); );
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour heure'; String get datePickerHourSemanticsLabelOne => '\$hour heure';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour heures'; String get datePickerHourSemanticsLabelOther => '\$hour heures';
@override @override
String get anteMeridiemAbbreviation => 'am'; String get anteMeridiemAbbreviation => 'am';
...@@ -4509,7 +4509,7 @@ class CupertinoLocalizationFrCa extends CupertinoLocalizationFr { ...@@ -4509,7 +4509,7 @@ class CupertinoLocalizationFrCa extends CupertinoLocalizationFr {
String get postMeridiemAbbreviation => 'pm'; String get postMeridiemAbbreviation => 'pm';
@override @override
String get todayLabel => "Aujourd'hui"; String get todayLabel => 'Aujourd\'hui';
@override @override
String get timerPickerMinuteLabelOne => 'min'; String get timerPickerMinuteLabelOne => 'min';
...@@ -4573,10 +4573,10 @@ class CupertinoLocalizationGl extends GlobalCupertinoLocalizations { ...@@ -4573,10 +4573,10 @@ class CupertinoLocalizationGl extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelMany => null; String get datePickerHourSemanticsLabelMany => null;
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour en punto'; String get datePickerHourSemanticsLabelOne => '\$hour en punto';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour en punto'; String get datePickerHourSemanticsLabelOther => '\$hour en punto';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -4594,7 +4594,7 @@ class CupertinoLocalizationGl extends GlobalCupertinoLocalizations { ...@@ -4594,7 +4594,7 @@ class CupertinoLocalizationGl extends GlobalCupertinoLocalizations {
String get datePickerMinuteSemanticsLabelOne => '1 minuto'; String get datePickerMinuteSemanticsLabelOne => '1 minuto';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute minutos'; String get datePickerMinuteSemanticsLabelOther => '\$minute minutos';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -4721,10 +4721,10 @@ class CupertinoLocalizationGsw extends GlobalCupertinoLocalizations { ...@@ -4721,10 +4721,10 @@ class CupertinoLocalizationGsw extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelMany => null; String get datePickerHourSemanticsLabelMany => null;
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour Uhr'; String get datePickerHourSemanticsLabelOne => '\$hour Uhr';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour Uhr'; String get datePickerHourSemanticsLabelOther => '\$hour Uhr';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -4742,7 +4742,7 @@ class CupertinoLocalizationGsw extends GlobalCupertinoLocalizations { ...@@ -4742,7 +4742,7 @@ class CupertinoLocalizationGsw extends GlobalCupertinoLocalizations {
String get datePickerMinuteSemanticsLabelOne => '1 Minute'; String get datePickerMinuteSemanticsLabelOne => '1 Minute';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute Minuten'; String get datePickerMinuteSemanticsLabelOther => '\$minute Minuten';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -4869,10 +4869,10 @@ class CupertinoLocalizationGu extends GlobalCupertinoLocalizations { ...@@ -4869,10 +4869,10 @@ class CupertinoLocalizationGu extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelMany => null; String get datePickerHourSemanticsLabelMany => null;
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour વાગ્યો છે'; String get datePickerHourSemanticsLabelOne => '\$hour વાગ્યો છે';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour વાગ્યા છે'; String get datePickerHourSemanticsLabelOther => '\$hour વાગ્યા છે';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -4890,7 +4890,7 @@ class CupertinoLocalizationGu extends GlobalCupertinoLocalizations { ...@@ -4890,7 +4890,7 @@ class CupertinoLocalizationGu extends GlobalCupertinoLocalizations {
String get datePickerMinuteSemanticsLabelOne => '1 મિનિટ'; String get datePickerMinuteSemanticsLabelOne => '1 મિનિટ';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute મિનિટ'; String get datePickerMinuteSemanticsLabelOther => '\$minute મિનિટ';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -5014,16 +5014,16 @@ class CupertinoLocalizationHe extends GlobalCupertinoLocalizations { ...@@ -5014,16 +5014,16 @@ class CupertinoLocalizationHe extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelFew => null; String get datePickerHourSemanticsLabelFew => null;
@override @override
String get datePickerHourSemanticsLabelMany => r'$hour בדיוק'; String get datePickerHourSemanticsLabelMany => '\$hour בדיוק';
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour בדיוק'; String get datePickerHourSemanticsLabelOne => '\$hour בדיוק';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour בדיוק'; String get datePickerHourSemanticsLabelOther => '\$hour בדיוק';
@override @override
String get datePickerHourSemanticsLabelTwo => r'$hour בדיוק'; String get datePickerHourSemanticsLabelTwo => '\$hour בדיוק';
@override @override
String get datePickerHourSemanticsLabelZero => null; String get datePickerHourSemanticsLabelZero => null;
...@@ -5032,16 +5032,16 @@ class CupertinoLocalizationHe extends GlobalCupertinoLocalizations { ...@@ -5032,16 +5032,16 @@ class CupertinoLocalizationHe extends GlobalCupertinoLocalizations {
String get datePickerMinuteSemanticsLabelFew => null; String get datePickerMinuteSemanticsLabelFew => null;
@override @override
String get datePickerMinuteSemanticsLabelMany => r'$minute דקות'; String get datePickerMinuteSemanticsLabelMany => '\$minute דקות';
@override @override
String get datePickerMinuteSemanticsLabelOne => 'דקה אחת'; String get datePickerMinuteSemanticsLabelOne => 'דקה אחת';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute דקות'; String get datePickerMinuteSemanticsLabelOther => '\$minute דקות';
@override @override
String get datePickerMinuteSemanticsLabelTwo => r'$minute דקות'; String get datePickerMinuteSemanticsLabelTwo => '\$minute דקות';
@override @override
String get datePickerMinuteSemanticsLabelZero => null; String get datePickerMinuteSemanticsLabelZero => null;
...@@ -5165,10 +5165,10 @@ class CupertinoLocalizationHi extends GlobalCupertinoLocalizations { ...@@ -5165,10 +5165,10 @@ class CupertinoLocalizationHi extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelMany => null; String get datePickerHourSemanticsLabelMany => null;
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour बजे'; String get datePickerHourSemanticsLabelOne => '\$hour बजे';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour बजे'; String get datePickerHourSemanticsLabelOther => '\$hour बजे';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -5186,7 +5186,7 @@ class CupertinoLocalizationHi extends GlobalCupertinoLocalizations { ...@@ -5186,7 +5186,7 @@ class CupertinoLocalizationHi extends GlobalCupertinoLocalizations {
String get datePickerMinuteSemanticsLabelOne => '1 मिनट'; String get datePickerMinuteSemanticsLabelOne => '1 मिनट';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute मिनट'; String get datePickerMinuteSemanticsLabelOther => '\$minute मिनट';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -5307,16 +5307,16 @@ class CupertinoLocalizationHr extends GlobalCupertinoLocalizations { ...@@ -5307,16 +5307,16 @@ class CupertinoLocalizationHr extends GlobalCupertinoLocalizations {
String get datePickerDateTimeOrderString => 'date_time_dayPeriod'; String get datePickerDateTimeOrderString => 'date_time_dayPeriod';
@override @override
String get datePickerHourSemanticsLabelFew => r'$hour sata'; String get datePickerHourSemanticsLabelFew => '\$hour sata';
@override @override
String get datePickerHourSemanticsLabelMany => null; String get datePickerHourSemanticsLabelMany => null;
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour sat'; String get datePickerHourSemanticsLabelOne => '\$hour sat';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour sati'; String get datePickerHourSemanticsLabelOther => '\$hour sati';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -5325,7 +5325,7 @@ class CupertinoLocalizationHr extends GlobalCupertinoLocalizations { ...@@ -5325,7 +5325,7 @@ class CupertinoLocalizationHr extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelZero => null; String get datePickerHourSemanticsLabelZero => null;
@override @override
String get datePickerMinuteSemanticsLabelFew => r'$minute minute'; String get datePickerMinuteSemanticsLabelFew => '\$minute minute';
@override @override
String get datePickerMinuteSemanticsLabelMany => null; String get datePickerMinuteSemanticsLabelMany => null;
...@@ -5334,7 +5334,7 @@ class CupertinoLocalizationHr extends GlobalCupertinoLocalizations { ...@@ -5334,7 +5334,7 @@ class CupertinoLocalizationHr extends GlobalCupertinoLocalizations {
String get datePickerMinuteSemanticsLabelOne => 'Jedna minuta'; String get datePickerMinuteSemanticsLabelOne => 'Jedna minuta';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute minuta'; String get datePickerMinuteSemanticsLabelOther => '\$minute minuta';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -5461,10 +5461,10 @@ class CupertinoLocalizationHu extends GlobalCupertinoLocalizations { ...@@ -5461,10 +5461,10 @@ class CupertinoLocalizationHu extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelMany => null; String get datePickerHourSemanticsLabelMany => null;
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour óra'; String get datePickerHourSemanticsLabelOne => '\$hour óra';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour óra'; String get datePickerHourSemanticsLabelOther => '\$hour óra';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -5482,7 +5482,7 @@ class CupertinoLocalizationHu extends GlobalCupertinoLocalizations { ...@@ -5482,7 +5482,7 @@ class CupertinoLocalizationHu extends GlobalCupertinoLocalizations {
String get datePickerMinuteSemanticsLabelOne => '1 perc'; String get datePickerMinuteSemanticsLabelOne => '1 perc';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute perc'; String get datePickerMinuteSemanticsLabelOther => '\$minute perc';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -5609,10 +5609,10 @@ class CupertinoLocalizationHy extends GlobalCupertinoLocalizations { ...@@ -5609,10 +5609,10 @@ class CupertinoLocalizationHy extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelMany => null; String get datePickerHourSemanticsLabelMany => null;
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour:00'; String get datePickerHourSemanticsLabelOne => '\$hour:00';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour:00'; String get datePickerHourSemanticsLabelOther => '\$hour:00';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -5630,7 +5630,7 @@ class CupertinoLocalizationHy extends GlobalCupertinoLocalizations { ...@@ -5630,7 +5630,7 @@ class CupertinoLocalizationHy extends GlobalCupertinoLocalizations {
String get datePickerMinuteSemanticsLabelOne => '1 րոպե'; String get datePickerMinuteSemanticsLabelOne => '1 րոպե';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute րոպե'; String get datePickerMinuteSemanticsLabelOther => '\$minute րոպե';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -5757,10 +5757,10 @@ class CupertinoLocalizationId extends GlobalCupertinoLocalizations { ...@@ -5757,10 +5757,10 @@ class CupertinoLocalizationId extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelMany => null; String get datePickerHourSemanticsLabelMany => null;
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour tepat'; String get datePickerHourSemanticsLabelOne => '\$hour tepat';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour tepat'; String get datePickerHourSemanticsLabelOther => '\$hour tepat';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -5778,7 +5778,7 @@ class CupertinoLocalizationId extends GlobalCupertinoLocalizations { ...@@ -5778,7 +5778,7 @@ class CupertinoLocalizationId extends GlobalCupertinoLocalizations {
String get datePickerMinuteSemanticsLabelOne => '1 menit'; String get datePickerMinuteSemanticsLabelOne => '1 menit';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute menit'; String get datePickerMinuteSemanticsLabelOther => '\$minute menit';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -5905,10 +5905,10 @@ class CupertinoLocalizationIs extends GlobalCupertinoLocalizations { ...@@ -5905,10 +5905,10 @@ class CupertinoLocalizationIs extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelMany => null; String get datePickerHourSemanticsLabelMany => null;
@override @override
String get datePickerHourSemanticsLabelOne => r'klukkan $hour'; String get datePickerHourSemanticsLabelOne => 'klukkan \$hour';
@override @override
String get datePickerHourSemanticsLabelOther => r'klukkan $hour'; String get datePickerHourSemanticsLabelOther => 'klukkan \$hour';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -5926,7 +5926,7 @@ class CupertinoLocalizationIs extends GlobalCupertinoLocalizations { ...@@ -5926,7 +5926,7 @@ class CupertinoLocalizationIs extends GlobalCupertinoLocalizations {
String get datePickerMinuteSemanticsLabelOne => '1 mínúta'; String get datePickerMinuteSemanticsLabelOne => '1 mínúta';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute mínútur'; String get datePickerMinuteSemanticsLabelOther => '\$minute mínútur';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -6053,10 +6053,10 @@ class CupertinoLocalizationIt extends GlobalCupertinoLocalizations { ...@@ -6053,10 +6053,10 @@ class CupertinoLocalizationIt extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelMany => null; String get datePickerHourSemanticsLabelMany => null;
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour in punto'; String get datePickerHourSemanticsLabelOne => '\$hour in punto';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour in punto'; String get datePickerHourSemanticsLabelOther => '\$hour in punto';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -6074,7 +6074,7 @@ class CupertinoLocalizationIt extends GlobalCupertinoLocalizations { ...@@ -6074,7 +6074,7 @@ class CupertinoLocalizationIt extends GlobalCupertinoLocalizations {
String get datePickerMinuteSemanticsLabelOne => '1 minuto'; String get datePickerMinuteSemanticsLabelOne => '1 minuto';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute minuti'; String get datePickerMinuteSemanticsLabelOther => '\$minute minuti';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -6201,10 +6201,10 @@ class CupertinoLocalizationJa extends GlobalCupertinoLocalizations { ...@@ -6201,10 +6201,10 @@ class CupertinoLocalizationJa extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelMany => null; String get datePickerHourSemanticsLabelMany => null;
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour時'; String get datePickerHourSemanticsLabelOne => '\$hour時';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour時'; String get datePickerHourSemanticsLabelOther => '\$hour時';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -6222,7 +6222,7 @@ class CupertinoLocalizationJa extends GlobalCupertinoLocalizations { ...@@ -6222,7 +6222,7 @@ class CupertinoLocalizationJa extends GlobalCupertinoLocalizations {
String get datePickerMinuteSemanticsLabelOne => '1分'; String get datePickerMinuteSemanticsLabelOne => '1分';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute分'; String get datePickerMinuteSemanticsLabelOther => '\$minute分';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -6349,10 +6349,10 @@ class CupertinoLocalizationKa extends GlobalCupertinoLocalizations { ...@@ -6349,10 +6349,10 @@ class CupertinoLocalizationKa extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelMany => null; String get datePickerHourSemanticsLabelMany => null;
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour საათი'; String get datePickerHourSemanticsLabelOne => '\$hour საათი';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour საათი'; String get datePickerHourSemanticsLabelOther => '\$hour საათი';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -6370,7 +6370,7 @@ class CupertinoLocalizationKa extends GlobalCupertinoLocalizations { ...@@ -6370,7 +6370,7 @@ class CupertinoLocalizationKa extends GlobalCupertinoLocalizations {
String get datePickerMinuteSemanticsLabelOne => '1 წუთი'; String get datePickerMinuteSemanticsLabelOne => '1 წუთი';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute წუთი'; String get datePickerMinuteSemanticsLabelOther => '\$minute წუთი';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -6497,10 +6497,10 @@ class CupertinoLocalizationKk extends GlobalCupertinoLocalizations { ...@@ -6497,10 +6497,10 @@ class CupertinoLocalizationKk extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelMany => null; String get datePickerHourSemanticsLabelMany => null;
@override @override
String get datePickerHourSemanticsLabelOne => r'Сағат: $hour'; String get datePickerHourSemanticsLabelOne => 'Сағат: \$hour';
@override @override
String get datePickerHourSemanticsLabelOther => r'Сағат: $hour'; String get datePickerHourSemanticsLabelOther => 'Сағат: \$hour';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -6518,7 +6518,7 @@ class CupertinoLocalizationKk extends GlobalCupertinoLocalizations { ...@@ -6518,7 +6518,7 @@ class CupertinoLocalizationKk extends GlobalCupertinoLocalizations {
String get datePickerMinuteSemanticsLabelOne => '1 минут'; String get datePickerMinuteSemanticsLabelOne => '1 минут';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute минут'; String get datePickerMinuteSemanticsLabelOther => '\$minute минут';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -6645,10 +6645,10 @@ class CupertinoLocalizationKm extends GlobalCupertinoLocalizations { ...@@ -6645,10 +6645,10 @@ class CupertinoLocalizationKm extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelMany => null; String get datePickerHourSemanticsLabelMany => null;
@override @override
String get datePickerHourSemanticsLabelOne => r'ម៉ោង $hour'; String get datePickerHourSemanticsLabelOne => 'ម៉ោង \$hour';
@override @override
String get datePickerHourSemanticsLabelOther => r'ម៉ោង $hour'; String get datePickerHourSemanticsLabelOther => 'ម៉ោង \$hour';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -6666,7 +6666,7 @@ class CupertinoLocalizationKm extends GlobalCupertinoLocalizations { ...@@ -6666,7 +6666,7 @@ class CupertinoLocalizationKm extends GlobalCupertinoLocalizations {
String get datePickerMinuteSemanticsLabelOne => '1 នាទី'; String get datePickerMinuteSemanticsLabelOne => '1 នាទី';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute នាទី'; String get datePickerMinuteSemanticsLabelOther => '\$minute នាទី';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -6941,10 +6941,10 @@ class CupertinoLocalizationKo extends GlobalCupertinoLocalizations { ...@@ -6941,10 +6941,10 @@ class CupertinoLocalizationKo extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelMany => null; String get datePickerHourSemanticsLabelMany => null;
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour시 정각'; String get datePickerHourSemanticsLabelOne => '\$hour시 정각';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour시 정각'; String get datePickerHourSemanticsLabelOther => '\$hour시 정각';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -6962,7 +6962,7 @@ class CupertinoLocalizationKo extends GlobalCupertinoLocalizations { ...@@ -6962,7 +6962,7 @@ class CupertinoLocalizationKo extends GlobalCupertinoLocalizations {
String get datePickerMinuteSemanticsLabelOne => '1분'; String get datePickerMinuteSemanticsLabelOne => '1분';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute분'; String get datePickerMinuteSemanticsLabelOther => '\$minute분';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -7089,10 +7089,10 @@ class CupertinoLocalizationKy extends GlobalCupertinoLocalizations { ...@@ -7089,10 +7089,10 @@ class CupertinoLocalizationKy extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelMany => null; String get datePickerHourSemanticsLabelMany => null;
@override @override
String get datePickerHourSemanticsLabelOne => r'Саат $hour'; String get datePickerHourSemanticsLabelOne => 'Саат \$hour';
@override @override
String get datePickerHourSemanticsLabelOther => r'Саат $hour'; String get datePickerHourSemanticsLabelOther => 'Саат \$hour';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -7110,7 +7110,7 @@ class CupertinoLocalizationKy extends GlobalCupertinoLocalizations { ...@@ -7110,7 +7110,7 @@ class CupertinoLocalizationKy extends GlobalCupertinoLocalizations {
String get datePickerMinuteSemanticsLabelOne => '1 мүнөт'; String get datePickerMinuteSemanticsLabelOne => '1 мүнөт';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute мүнөт'; String get datePickerMinuteSemanticsLabelOther => '\$minute мүнөт';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -7237,10 +7237,10 @@ class CupertinoLocalizationLo extends GlobalCupertinoLocalizations { ...@@ -7237,10 +7237,10 @@ class CupertinoLocalizationLo extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelMany => null; String get datePickerHourSemanticsLabelMany => null;
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour ໂມງກົງ'; String get datePickerHourSemanticsLabelOne => '\$hour ໂມງກົງ';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour ໂມງກົງ'; String get datePickerHourSemanticsLabelOther => '\$hour ໂມງກົງ';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -7258,7 +7258,7 @@ class CupertinoLocalizationLo extends GlobalCupertinoLocalizations { ...@@ -7258,7 +7258,7 @@ class CupertinoLocalizationLo extends GlobalCupertinoLocalizations {
String get datePickerMinuteSemanticsLabelOne => '1 ນາທີ'; String get datePickerMinuteSemanticsLabelOne => '1 ນາທີ';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute ນາທີ'; String get datePickerMinuteSemanticsLabelOther => '\$minute ນາທີ';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -7379,16 +7379,16 @@ class CupertinoLocalizationLt extends GlobalCupertinoLocalizations { ...@@ -7379,16 +7379,16 @@ class CupertinoLocalizationLt extends GlobalCupertinoLocalizations {
String get datePickerDateTimeOrderString => 'date_time_dayPeriod'; String get datePickerDateTimeOrderString => 'date_time_dayPeriod';
@override @override
String get datePickerHourSemanticsLabelFew => r'$hour val.'; String get datePickerHourSemanticsLabelFew => '\$hour val.';
@override @override
String get datePickerHourSemanticsLabelMany => r'$hour val.'; String get datePickerHourSemanticsLabelMany => '\$hour val.';
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour val.'; String get datePickerHourSemanticsLabelOne => '\$hour val.';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour val.'; String get datePickerHourSemanticsLabelOther => '\$hour val.';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -7397,16 +7397,16 @@ class CupertinoLocalizationLt extends GlobalCupertinoLocalizations { ...@@ -7397,16 +7397,16 @@ class CupertinoLocalizationLt extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelZero => null; String get datePickerHourSemanticsLabelZero => null;
@override @override
String get datePickerMinuteSemanticsLabelFew => r'$minute min.'; String get datePickerMinuteSemanticsLabelFew => '\$minute min.';
@override @override
String get datePickerMinuteSemanticsLabelMany => r'$minute min.'; String get datePickerMinuteSemanticsLabelMany => '\$minute min.';
@override @override
String get datePickerMinuteSemanticsLabelOne => '1 min.'; String get datePickerMinuteSemanticsLabelOne => '1 min.';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute min.'; String get datePickerMinuteSemanticsLabelOther => '\$minute min.';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -7533,16 +7533,16 @@ class CupertinoLocalizationLv extends GlobalCupertinoLocalizations { ...@@ -7533,16 +7533,16 @@ class CupertinoLocalizationLv extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelMany => null; String get datePickerHourSemanticsLabelMany => null;
@override @override
String get datePickerHourSemanticsLabelOne => r'plkst. $hour'; String get datePickerHourSemanticsLabelOne => 'plkst. \$hour';
@override @override
String get datePickerHourSemanticsLabelOther => r'plkst. $hour'; String get datePickerHourSemanticsLabelOther => 'plkst. \$hour';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
@override @override
String get datePickerHourSemanticsLabelZero => r'plkst. $hour'; String get datePickerHourSemanticsLabelZero => 'plkst. \$hour';
@override @override
String get datePickerMinuteSemanticsLabelFew => null; String get datePickerMinuteSemanticsLabelFew => null;
...@@ -7554,13 +7554,13 @@ class CupertinoLocalizationLv extends GlobalCupertinoLocalizations { ...@@ -7554,13 +7554,13 @@ class CupertinoLocalizationLv extends GlobalCupertinoLocalizations {
String get datePickerMinuteSemanticsLabelOne => '1 minūte'; String get datePickerMinuteSemanticsLabelOne => '1 minūte';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute minūtes'; String get datePickerMinuteSemanticsLabelOther => '\$minute minūtes';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
@override @override
String get datePickerMinuteSemanticsLabelZero => r'$minute minūtes'; String get datePickerMinuteSemanticsLabelZero => '\$minute minūtes';
@override @override
String get pasteButtonLabel => 'Ielīmēt'; String get pasteButtonLabel => 'Ielīmēt';
...@@ -7681,10 +7681,10 @@ class CupertinoLocalizationMk extends GlobalCupertinoLocalizations { ...@@ -7681,10 +7681,10 @@ class CupertinoLocalizationMk extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelMany => null; String get datePickerHourSemanticsLabelMany => null;
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour часот'; String get datePickerHourSemanticsLabelOne => '\$hour часот';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour часот'; String get datePickerHourSemanticsLabelOther => '\$hour часот';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -7702,7 +7702,7 @@ class CupertinoLocalizationMk extends GlobalCupertinoLocalizations { ...@@ -7702,7 +7702,7 @@ class CupertinoLocalizationMk extends GlobalCupertinoLocalizations {
String get datePickerMinuteSemanticsLabelOne => '1 минута'; String get datePickerMinuteSemanticsLabelOne => '1 минута';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute минути'; String get datePickerMinuteSemanticsLabelOther => '\$minute минути';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -7829,10 +7829,10 @@ class CupertinoLocalizationMl extends GlobalCupertinoLocalizations { ...@@ -7829,10 +7829,10 @@ class CupertinoLocalizationMl extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelMany => null; String get datePickerHourSemanticsLabelMany => null;
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour മണി'; String get datePickerHourSemanticsLabelOne => '\$hour മണി';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour മണി'; String get datePickerHourSemanticsLabelOther => '\$hour മണി';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -7850,7 +7850,7 @@ class CupertinoLocalizationMl extends GlobalCupertinoLocalizations { ...@@ -7850,7 +7850,7 @@ class CupertinoLocalizationMl extends GlobalCupertinoLocalizations {
String get datePickerMinuteSemanticsLabelOne => 'ഒരു മിനിറ്റ്'; String get datePickerMinuteSemanticsLabelOne => 'ഒരു മിനിറ്റ്';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute മിനിറ്റ്'; String get datePickerMinuteSemanticsLabelOther => '\$minute മിനിറ്റ്';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -7977,10 +7977,10 @@ class CupertinoLocalizationMn extends GlobalCupertinoLocalizations { ...@@ -7977,10 +7977,10 @@ class CupertinoLocalizationMn extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelMany => null; String get datePickerHourSemanticsLabelMany => null;
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour цаг'; String get datePickerHourSemanticsLabelOne => '\$hour цаг';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour цаг'; String get datePickerHourSemanticsLabelOther => '\$hour цаг';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -7998,7 +7998,7 @@ class CupertinoLocalizationMn extends GlobalCupertinoLocalizations { ...@@ -7998,7 +7998,7 @@ class CupertinoLocalizationMn extends GlobalCupertinoLocalizations {
String get datePickerMinuteSemanticsLabelOne => '1 минут'; String get datePickerMinuteSemanticsLabelOne => '1 минут';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute минут'; String get datePickerMinuteSemanticsLabelOther => '\$minute минут';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -8125,10 +8125,10 @@ class CupertinoLocalizationMr extends GlobalCupertinoLocalizations { ...@@ -8125,10 +8125,10 @@ class CupertinoLocalizationMr extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelMany => null; String get datePickerHourSemanticsLabelMany => null;
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour वाजता'; String get datePickerHourSemanticsLabelOne => '\$hour वाजता';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour वाजता'; String get datePickerHourSemanticsLabelOther => '\$hour वाजता';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -8146,7 +8146,7 @@ class CupertinoLocalizationMr extends GlobalCupertinoLocalizations { ...@@ -8146,7 +8146,7 @@ class CupertinoLocalizationMr extends GlobalCupertinoLocalizations {
String get datePickerMinuteSemanticsLabelOne => 'एक मिनिट'; String get datePickerMinuteSemanticsLabelOne => 'एक मिनिट';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute मिनिटे'; String get datePickerMinuteSemanticsLabelOther => '\$minute मिनिटे';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -8273,10 +8273,10 @@ class CupertinoLocalizationMs extends GlobalCupertinoLocalizations { ...@@ -8273,10 +8273,10 @@ class CupertinoLocalizationMs extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelMany => null; String get datePickerHourSemanticsLabelMany => null;
@override @override
String get datePickerHourSemanticsLabelOne => r'Pukul $hour'; String get datePickerHourSemanticsLabelOne => 'Pukul \$hour';
@override @override
String get datePickerHourSemanticsLabelOther => r'Pukul $hour'; String get datePickerHourSemanticsLabelOther => 'Pukul \$hour';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -8294,7 +8294,7 @@ class CupertinoLocalizationMs extends GlobalCupertinoLocalizations { ...@@ -8294,7 +8294,7 @@ class CupertinoLocalizationMs extends GlobalCupertinoLocalizations {
String get datePickerMinuteSemanticsLabelOne => '1 minit'; String get datePickerMinuteSemanticsLabelOne => '1 minit';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute minit'; String get datePickerMinuteSemanticsLabelOther => '\$minute minit';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -8421,10 +8421,10 @@ class CupertinoLocalizationMy extends GlobalCupertinoLocalizations { ...@@ -8421,10 +8421,10 @@ class CupertinoLocalizationMy extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelMany => null; String get datePickerHourSemanticsLabelMany => null;
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour နာရီ'; String get datePickerHourSemanticsLabelOne => '\$hour နာရီ';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour နာရီ'; String get datePickerHourSemanticsLabelOther => '\$hour နာရီ';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -8442,7 +8442,7 @@ class CupertinoLocalizationMy extends GlobalCupertinoLocalizations { ...@@ -8442,7 +8442,7 @@ class CupertinoLocalizationMy extends GlobalCupertinoLocalizations {
String get datePickerMinuteSemanticsLabelOne => '၁ မိနစ်'; String get datePickerMinuteSemanticsLabelOne => '၁ မိနစ်';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute မိနစ်'; String get datePickerMinuteSemanticsLabelOther => '\$minute မိနစ်';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -8569,10 +8569,10 @@ class CupertinoLocalizationNb extends GlobalCupertinoLocalizations { ...@@ -8569,10 +8569,10 @@ class CupertinoLocalizationNb extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelMany => null; String get datePickerHourSemanticsLabelMany => null;
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour null-null'; String get datePickerHourSemanticsLabelOne => '\$hour null-null';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour null-null'; String get datePickerHourSemanticsLabelOther => '\$hour null-null';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -8590,7 +8590,7 @@ class CupertinoLocalizationNb extends GlobalCupertinoLocalizations { ...@@ -8590,7 +8590,7 @@ class CupertinoLocalizationNb extends GlobalCupertinoLocalizations {
String get datePickerMinuteSemanticsLabelOne => '1 minutt'; String get datePickerMinuteSemanticsLabelOne => '1 minutt';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute minutter'; String get datePickerMinuteSemanticsLabelOther => '\$minute minutter';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -8717,10 +8717,10 @@ class CupertinoLocalizationNe extends GlobalCupertinoLocalizations { ...@@ -8717,10 +8717,10 @@ class CupertinoLocalizationNe extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelMany => null; String get datePickerHourSemanticsLabelMany => null;
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour बजे'; String get datePickerHourSemanticsLabelOne => '\$hour बजे';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour बजे'; String get datePickerHourSemanticsLabelOther => '\$hour बजे';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -8738,7 +8738,7 @@ class CupertinoLocalizationNe extends GlobalCupertinoLocalizations { ...@@ -8738,7 +8738,7 @@ class CupertinoLocalizationNe extends GlobalCupertinoLocalizations {
String get datePickerMinuteSemanticsLabelOne => '१ मिनेट'; String get datePickerMinuteSemanticsLabelOne => '१ मिनेट';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute मिनेट'; String get datePickerMinuteSemanticsLabelOther => '\$minute मिनेट';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -8865,10 +8865,10 @@ class CupertinoLocalizationNl extends GlobalCupertinoLocalizations { ...@@ -8865,10 +8865,10 @@ class CupertinoLocalizationNl extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelMany => null; String get datePickerHourSemanticsLabelMany => null;
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour uur'; String get datePickerHourSemanticsLabelOne => '\$hour uur';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour uur'; String get datePickerHourSemanticsLabelOther => '\$hour uur';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -8886,7 +8886,7 @@ class CupertinoLocalizationNl extends GlobalCupertinoLocalizations { ...@@ -8886,7 +8886,7 @@ class CupertinoLocalizationNl extends GlobalCupertinoLocalizations {
String get datePickerMinuteSemanticsLabelOne => '1 minuut'; String get datePickerMinuteSemanticsLabelOne => '1 minuut';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute minuten'; String get datePickerMinuteSemanticsLabelOther => '\$minute minuten';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -9013,10 +9013,10 @@ class CupertinoLocalizationOr extends GlobalCupertinoLocalizations { ...@@ -9013,10 +9013,10 @@ class CupertinoLocalizationOr extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelMany => null; String get datePickerHourSemanticsLabelMany => null;
@override @override
String get datePickerHourSemanticsLabelOne => r'$hourଟା'; String get datePickerHourSemanticsLabelOne => '\$hourଟା';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hourଟା'; String get datePickerHourSemanticsLabelOther => '\$hourଟା';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -9034,7 +9034,7 @@ class CupertinoLocalizationOr extends GlobalCupertinoLocalizations { ...@@ -9034,7 +9034,7 @@ class CupertinoLocalizationOr extends GlobalCupertinoLocalizations {
String get datePickerMinuteSemanticsLabelOne => '1 ମିନିଟ୍'; String get datePickerMinuteSemanticsLabelOne => '1 ମିନିଟ୍';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute ମିନିଟ୍'; String get datePickerMinuteSemanticsLabelOther => '\$minute ମିନିଟ୍';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -9161,10 +9161,10 @@ class CupertinoLocalizationPa extends GlobalCupertinoLocalizations { ...@@ -9161,10 +9161,10 @@ class CupertinoLocalizationPa extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelMany => null; String get datePickerHourSemanticsLabelMany => null;
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour ਵਜੇ'; String get datePickerHourSemanticsLabelOne => '\$hour ਵਜੇ';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour ਵਜੇ'; String get datePickerHourSemanticsLabelOther => '\$hour ਵਜੇ';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -9182,7 +9182,7 @@ class CupertinoLocalizationPa extends GlobalCupertinoLocalizations { ...@@ -9182,7 +9182,7 @@ class CupertinoLocalizationPa extends GlobalCupertinoLocalizations {
String get datePickerMinuteSemanticsLabelOne => '1 ਮਿੰਟ'; String get datePickerMinuteSemanticsLabelOne => '1 ਮਿੰਟ';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute ਮਿੰਟ'; String get datePickerMinuteSemanticsLabelOther => '\$minute ਮਿੰਟ';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -9303,16 +9303,16 @@ class CupertinoLocalizationPl extends GlobalCupertinoLocalizations { ...@@ -9303,16 +9303,16 @@ class CupertinoLocalizationPl extends GlobalCupertinoLocalizations {
String get datePickerDateTimeOrderString => 'date_time_dayPeriod'; String get datePickerDateTimeOrderString => 'date_time_dayPeriod';
@override @override
String get datePickerHourSemanticsLabelFew => r'$hour'; String get datePickerHourSemanticsLabelFew => '\$hour';
@override @override
String get datePickerHourSemanticsLabelMany => r'$hour'; String get datePickerHourSemanticsLabelMany => '\$hour';
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour'; String get datePickerHourSemanticsLabelOne => '\$hour';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour'; String get datePickerHourSemanticsLabelOther => '\$hour';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -9321,16 +9321,16 @@ class CupertinoLocalizationPl extends GlobalCupertinoLocalizations { ...@@ -9321,16 +9321,16 @@ class CupertinoLocalizationPl extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelZero => null; String get datePickerHourSemanticsLabelZero => null;
@override @override
String get datePickerMinuteSemanticsLabelFew => r'$minute minuty'; String get datePickerMinuteSemanticsLabelFew => '\$minute minuty';
@override @override
String get datePickerMinuteSemanticsLabelMany => r'$minute minut'; String get datePickerMinuteSemanticsLabelMany => '\$minute minut';
@override @override
String get datePickerMinuteSemanticsLabelOne => '1 minuta'; String get datePickerMinuteSemanticsLabelOne => '1 minuta';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute minuty'; String get datePickerMinuteSemanticsLabelOther => '\$minute minuty';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -9457,10 +9457,10 @@ class CupertinoLocalizationPt extends GlobalCupertinoLocalizations { ...@@ -9457,10 +9457,10 @@ class CupertinoLocalizationPt extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelMany => null; String get datePickerHourSemanticsLabelMany => null;
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour hora'; String get datePickerHourSemanticsLabelOne => '\$hour hora';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour horas'; String get datePickerHourSemanticsLabelOther => '\$hour horas';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -9478,7 +9478,7 @@ class CupertinoLocalizationPt extends GlobalCupertinoLocalizations { ...@@ -9478,7 +9478,7 @@ class CupertinoLocalizationPt extends GlobalCupertinoLocalizations {
String get datePickerMinuteSemanticsLabelOne => '1 minuto'; String get datePickerMinuteSemanticsLabelOne => '1 minuto';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute minutos'; String get datePickerMinuteSemanticsLabelOther => '\$minute minutos';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -9581,7 +9581,7 @@ class CupertinoLocalizationPtPt extends CupertinoLocalizationPt { ...@@ -9581,7 +9581,7 @@ class CupertinoLocalizationPtPt extends CupertinoLocalizationPt {
); );
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour hora'; String get datePickerHourSemanticsLabelOther => '\$hour hora';
@override @override
String get timerPickerSecondLabelOne => 'seg'; String get timerPickerSecondLabelOne => 'seg';
...@@ -9639,16 +9639,16 @@ class CupertinoLocalizationRo extends GlobalCupertinoLocalizations { ...@@ -9639,16 +9639,16 @@ class CupertinoLocalizationRo extends GlobalCupertinoLocalizations {
String get datePickerDateTimeOrderString => 'date_time_dayPeriod'; String get datePickerDateTimeOrderString => 'date_time_dayPeriod';
@override @override
String get datePickerHourSemanticsLabelFew => r'Ora $hour'; String get datePickerHourSemanticsLabelFew => 'Ora \$hour';
@override @override
String get datePickerHourSemanticsLabelMany => null; String get datePickerHourSemanticsLabelMany => null;
@override @override
String get datePickerHourSemanticsLabelOne => r'Ora $hour'; String get datePickerHourSemanticsLabelOne => 'Ora \$hour';
@override @override
String get datePickerHourSemanticsLabelOther => r'Ora $hour'; String get datePickerHourSemanticsLabelOther => 'Ora \$hour';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -9657,7 +9657,7 @@ class CupertinoLocalizationRo extends GlobalCupertinoLocalizations { ...@@ -9657,7 +9657,7 @@ class CupertinoLocalizationRo extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelZero => null; String get datePickerHourSemanticsLabelZero => null;
@override @override
String get datePickerMinuteSemanticsLabelFew => r'$minute minute'; String get datePickerMinuteSemanticsLabelFew => '\$minute minute';
@override @override
String get datePickerMinuteSemanticsLabelMany => null; String get datePickerMinuteSemanticsLabelMany => null;
...@@ -9666,7 +9666,7 @@ class CupertinoLocalizationRo extends GlobalCupertinoLocalizations { ...@@ -9666,7 +9666,7 @@ class CupertinoLocalizationRo extends GlobalCupertinoLocalizations {
String get datePickerMinuteSemanticsLabelOne => '1 minut'; String get datePickerMinuteSemanticsLabelOne => '1 minut';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute de minute'; String get datePickerMinuteSemanticsLabelOther => '\$minute de minute';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -9787,16 +9787,16 @@ class CupertinoLocalizationRu extends GlobalCupertinoLocalizations { ...@@ -9787,16 +9787,16 @@ class CupertinoLocalizationRu extends GlobalCupertinoLocalizations {
String get datePickerDateTimeOrderString => 'date_time_dayPeriod'; String get datePickerDateTimeOrderString => 'date_time_dayPeriod';
@override @override
String get datePickerHourSemanticsLabelFew => r'$hour часа'; String get datePickerHourSemanticsLabelFew => '\$hour часа';
@override @override
String get datePickerHourSemanticsLabelMany => r'$hour часов'; String get datePickerHourSemanticsLabelMany => '\$hour часов';
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour час'; String get datePickerHourSemanticsLabelOne => '\$hour час';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour часа'; String get datePickerHourSemanticsLabelOther => '\$hour часа';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -9805,16 +9805,16 @@ class CupertinoLocalizationRu extends GlobalCupertinoLocalizations { ...@@ -9805,16 +9805,16 @@ class CupertinoLocalizationRu extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelZero => null; String get datePickerHourSemanticsLabelZero => null;
@override @override
String get datePickerMinuteSemanticsLabelFew => r'$minute минуты'; String get datePickerMinuteSemanticsLabelFew => '\$minute минуты';
@override @override
String get datePickerMinuteSemanticsLabelMany => r'$minute минут'; String get datePickerMinuteSemanticsLabelMany => '\$minute минут';
@override @override
String get datePickerMinuteSemanticsLabelOne => '1 минута'; String get datePickerMinuteSemanticsLabelOne => '1 минута';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute минуты'; String get datePickerMinuteSemanticsLabelOther => '\$minute минуты';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -9941,10 +9941,10 @@ class CupertinoLocalizationSi extends GlobalCupertinoLocalizations { ...@@ -9941,10 +9941,10 @@ class CupertinoLocalizationSi extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelMany => null; String get datePickerHourSemanticsLabelMany => null;
@override @override
String get datePickerHourSemanticsLabelOne => r'$hourයි'; String get datePickerHourSemanticsLabelOne => '\$hourයි';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hourයි'; String get datePickerHourSemanticsLabelOther => '\$hourයි';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -9962,7 +9962,7 @@ class CupertinoLocalizationSi extends GlobalCupertinoLocalizations { ...@@ -9962,7 +9962,7 @@ class CupertinoLocalizationSi extends GlobalCupertinoLocalizations {
String get datePickerMinuteSemanticsLabelOne => 'මිනිත්තු 1'; String get datePickerMinuteSemanticsLabelOne => 'මිනිත්තු 1';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'මිනිත්තු $minute'; String get datePickerMinuteSemanticsLabelOther => 'මිනිත්තු \$minute';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -10083,16 +10083,16 @@ class CupertinoLocalizationSk extends GlobalCupertinoLocalizations { ...@@ -10083,16 +10083,16 @@ class CupertinoLocalizationSk extends GlobalCupertinoLocalizations {
String get datePickerDateTimeOrderString => 'date_time_dayPeriod'; String get datePickerDateTimeOrderString => 'date_time_dayPeriod';
@override @override
String get datePickerHourSemanticsLabelFew => r'$hour hodiny'; String get datePickerHourSemanticsLabelFew => '\$hour hodiny';
@override @override
String get datePickerHourSemanticsLabelMany => r'$hour hodiny'; String get datePickerHourSemanticsLabelMany => '\$hour hodiny';
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour hodina'; String get datePickerHourSemanticsLabelOne => '\$hour hodina';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour hodín'; String get datePickerHourSemanticsLabelOther => '\$hour hodín';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -10101,16 +10101,16 @@ class CupertinoLocalizationSk extends GlobalCupertinoLocalizations { ...@@ -10101,16 +10101,16 @@ class CupertinoLocalizationSk extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelZero => null; String get datePickerHourSemanticsLabelZero => null;
@override @override
String get datePickerMinuteSemanticsLabelFew => r'$minute minúty'; String get datePickerMinuteSemanticsLabelFew => '\$minute minúty';
@override @override
String get datePickerMinuteSemanticsLabelMany => r'$minute minúty'; String get datePickerMinuteSemanticsLabelMany => '\$minute minúty';
@override @override
String get datePickerMinuteSemanticsLabelOne => '1 minúta'; String get datePickerMinuteSemanticsLabelOne => '1 minúta';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute minút'; String get datePickerMinuteSemanticsLabelOther => '\$minute minút';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -10231,25 +10231,25 @@ class CupertinoLocalizationSl extends GlobalCupertinoLocalizations { ...@@ -10231,25 +10231,25 @@ class CupertinoLocalizationSl extends GlobalCupertinoLocalizations {
String get datePickerDateTimeOrderString => 'date_time_dayPeriod'; String get datePickerDateTimeOrderString => 'date_time_dayPeriod';
@override @override
String get datePickerHourSemanticsLabelFew => r'$hour'; String get datePickerHourSemanticsLabelFew => '\$hour';
@override @override
String get datePickerHourSemanticsLabelMany => null; String get datePickerHourSemanticsLabelMany => null;
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour'; String get datePickerHourSemanticsLabelOne => '\$hour';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour'; String get datePickerHourSemanticsLabelOther => '\$hour';
@override @override
String get datePickerHourSemanticsLabelTwo => r'$hour'; String get datePickerHourSemanticsLabelTwo => '\$hour';
@override @override
String get datePickerHourSemanticsLabelZero => null; String get datePickerHourSemanticsLabelZero => null;
@override @override
String get datePickerMinuteSemanticsLabelFew => r'$minute minute'; String get datePickerMinuteSemanticsLabelFew => '\$minute minute';
@override @override
String get datePickerMinuteSemanticsLabelMany => null; String get datePickerMinuteSemanticsLabelMany => null;
...@@ -10258,10 +10258,10 @@ class CupertinoLocalizationSl extends GlobalCupertinoLocalizations { ...@@ -10258,10 +10258,10 @@ class CupertinoLocalizationSl extends GlobalCupertinoLocalizations {
String get datePickerMinuteSemanticsLabelOne => '1 minuta'; String get datePickerMinuteSemanticsLabelOne => '1 minuta';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute minut'; String get datePickerMinuteSemanticsLabelOther => '\$minute minut';
@override @override
String get datePickerMinuteSemanticsLabelTwo => r'$minute minuti'; String get datePickerMinuteSemanticsLabelTwo => '\$minute minuti';
@override @override
String get datePickerMinuteSemanticsLabelZero => null; String get datePickerMinuteSemanticsLabelZero => null;
...@@ -10385,10 +10385,10 @@ class CupertinoLocalizationSq extends GlobalCupertinoLocalizations { ...@@ -10385,10 +10385,10 @@ class CupertinoLocalizationSq extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelMany => null; String get datePickerHourSemanticsLabelMany => null;
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour fiks'; String get datePickerHourSemanticsLabelOne => '\$hour fiks';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour fiks'; String get datePickerHourSemanticsLabelOther => '\$hour fiks';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -10406,7 +10406,7 @@ class CupertinoLocalizationSq extends GlobalCupertinoLocalizations { ...@@ -10406,7 +10406,7 @@ class CupertinoLocalizationSq extends GlobalCupertinoLocalizations {
String get datePickerMinuteSemanticsLabelOne => '1 minutë'; String get datePickerMinuteSemanticsLabelOne => '1 minutë';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute minuta'; String get datePickerMinuteSemanticsLabelOther => '\$minute minuta';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -10527,16 +10527,16 @@ class CupertinoLocalizationSr extends GlobalCupertinoLocalizations { ...@@ -10527,16 +10527,16 @@ class CupertinoLocalizationSr extends GlobalCupertinoLocalizations {
String get datePickerDateTimeOrderString => 'date_time_dayPeriod'; String get datePickerDateTimeOrderString => 'date_time_dayPeriod';
@override @override
String get datePickerHourSemanticsLabelFew => r'$hour сата'; String get datePickerHourSemanticsLabelFew => '\$hour сата';
@override @override
String get datePickerHourSemanticsLabelMany => null; String get datePickerHourSemanticsLabelMany => null;
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour сат'; String get datePickerHourSemanticsLabelOne => '\$hour сат';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour сати'; String get datePickerHourSemanticsLabelOther => '\$hour сати';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -10545,7 +10545,7 @@ class CupertinoLocalizationSr extends GlobalCupertinoLocalizations { ...@@ -10545,7 +10545,7 @@ class CupertinoLocalizationSr extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelZero => null; String get datePickerHourSemanticsLabelZero => null;
@override @override
String get datePickerMinuteSemanticsLabelFew => r'$minute минута'; String get datePickerMinuteSemanticsLabelFew => '\$minute минута';
@override @override
String get datePickerMinuteSemanticsLabelMany => null; String get datePickerMinuteSemanticsLabelMany => null;
...@@ -10554,7 +10554,7 @@ class CupertinoLocalizationSr extends GlobalCupertinoLocalizations { ...@@ -10554,7 +10554,7 @@ class CupertinoLocalizationSr extends GlobalCupertinoLocalizations {
String get datePickerMinuteSemanticsLabelOne => '1 минут'; String get datePickerMinuteSemanticsLabelOne => '1 минут';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute минута'; String get datePickerMinuteSemanticsLabelOther => '\$minute минута';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -10697,22 +10697,22 @@ class CupertinoLocalizationSrLatn extends CupertinoLocalizationSr { ...@@ -10697,22 +10697,22 @@ class CupertinoLocalizationSrLatn extends CupertinoLocalizationSr {
String get cutButtonLabel => 'Iseci'; String get cutButtonLabel => 'Iseci';
@override @override
String get datePickerHourSemanticsLabelFew => r'$hour sata'; String get datePickerHourSemanticsLabelFew => '\$hour sata';
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour sat'; String get datePickerHourSemanticsLabelOne => '\$hour sat';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour sati'; String get datePickerHourSemanticsLabelOther => '\$hour sati';
@override @override
String get datePickerMinuteSemanticsLabelFew => r'$minute minuta'; String get datePickerMinuteSemanticsLabelFew => '\$minute minuta';
@override @override
String get datePickerMinuteSemanticsLabelOne => '1 minut'; String get datePickerMinuteSemanticsLabelOne => '1 minut';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute minuta'; String get datePickerMinuteSemanticsLabelOther => '\$minute minuta';
@override @override
String get pasteButtonLabel => 'Nalepi'; String get pasteButtonLabel => 'Nalepi';
...@@ -10806,10 +10806,10 @@ class CupertinoLocalizationSv extends GlobalCupertinoLocalizations { ...@@ -10806,10 +10806,10 @@ class CupertinoLocalizationSv extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelMany => null; String get datePickerHourSemanticsLabelMany => null;
@override @override
String get datePickerHourSemanticsLabelOne => r'Klockan $hour'; String get datePickerHourSemanticsLabelOne => 'Klockan \$hour';
@override @override
String get datePickerHourSemanticsLabelOther => r'Klockan $hour'; String get datePickerHourSemanticsLabelOther => 'Klockan \$hour';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -10827,7 +10827,7 @@ class CupertinoLocalizationSv extends GlobalCupertinoLocalizations { ...@@ -10827,7 +10827,7 @@ class CupertinoLocalizationSv extends GlobalCupertinoLocalizations {
String get datePickerMinuteSemanticsLabelOne => '1 minut'; String get datePickerMinuteSemanticsLabelOne => '1 minut';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute minuter'; String get datePickerMinuteSemanticsLabelOther => '\$minute minuter';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -10954,10 +10954,10 @@ class CupertinoLocalizationSw extends GlobalCupertinoLocalizations { ...@@ -10954,10 +10954,10 @@ class CupertinoLocalizationSw extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelMany => null; String get datePickerHourSemanticsLabelMany => null;
@override @override
String get datePickerHourSemanticsLabelOne => r'Saa $hour kamili'; String get datePickerHourSemanticsLabelOne => 'Saa \$hour kamili';
@override @override
String get datePickerHourSemanticsLabelOther => r'Saa $hour kamili'; String get datePickerHourSemanticsLabelOther => 'Saa \$hour kamili';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -10975,7 +10975,7 @@ class CupertinoLocalizationSw extends GlobalCupertinoLocalizations { ...@@ -10975,7 +10975,7 @@ class CupertinoLocalizationSw extends GlobalCupertinoLocalizations {
String get datePickerMinuteSemanticsLabelOne => 'Dakika 1'; String get datePickerMinuteSemanticsLabelOne => 'Dakika 1';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'Dakika $minute'; String get datePickerMinuteSemanticsLabelOther => 'Dakika \$minute';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -11102,10 +11102,10 @@ class CupertinoLocalizationTa extends GlobalCupertinoLocalizations { ...@@ -11102,10 +11102,10 @@ class CupertinoLocalizationTa extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelMany => null; String get datePickerHourSemanticsLabelMany => null;
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour மணி'; String get datePickerHourSemanticsLabelOne => '\$hour மணி';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour மணி'; String get datePickerHourSemanticsLabelOther => '\$hour மணி';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -11123,7 +11123,7 @@ class CupertinoLocalizationTa extends GlobalCupertinoLocalizations { ...@@ -11123,7 +11123,7 @@ class CupertinoLocalizationTa extends GlobalCupertinoLocalizations {
String get datePickerMinuteSemanticsLabelOne => '1 நிமிடம்'; String get datePickerMinuteSemanticsLabelOne => '1 நிமிடம்';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute நிமிடங்கள்'; String get datePickerMinuteSemanticsLabelOther => '\$minute நிமிடங்கள்';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -11250,10 +11250,10 @@ class CupertinoLocalizationTe extends GlobalCupertinoLocalizations { ...@@ -11250,10 +11250,10 @@ class CupertinoLocalizationTe extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelMany => null; String get datePickerHourSemanticsLabelMany => null;
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour అవుతుంది'; String get datePickerHourSemanticsLabelOne => '\$hour అవుతుంది';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour అవుతుంది'; String get datePickerHourSemanticsLabelOther => '\$hour అవుతుంది';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -11271,7 +11271,7 @@ class CupertinoLocalizationTe extends GlobalCupertinoLocalizations { ...@@ -11271,7 +11271,7 @@ class CupertinoLocalizationTe extends GlobalCupertinoLocalizations {
String get datePickerMinuteSemanticsLabelOne => '1 నిమిషం'; String get datePickerMinuteSemanticsLabelOne => '1 నిమిషం';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute నిమిషాలు'; String get datePickerMinuteSemanticsLabelOther => '\$minute నిమిషాలు';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -11398,10 +11398,10 @@ class CupertinoLocalizationTh extends GlobalCupertinoLocalizations { ...@@ -11398,10 +11398,10 @@ class CupertinoLocalizationTh extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelMany => null; String get datePickerHourSemanticsLabelMany => null;
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour นาฬิกา'; String get datePickerHourSemanticsLabelOne => '\$hour นาฬิกา';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour นาฬิกา'; String get datePickerHourSemanticsLabelOther => '\$hour นาฬิกา';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -11419,7 +11419,7 @@ class CupertinoLocalizationTh extends GlobalCupertinoLocalizations { ...@@ -11419,7 +11419,7 @@ class CupertinoLocalizationTh extends GlobalCupertinoLocalizations {
String get datePickerMinuteSemanticsLabelOne => '1 นาที'; String get datePickerMinuteSemanticsLabelOne => '1 นาที';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute นาที'; String get datePickerMinuteSemanticsLabelOther => '\$minute นาที';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -11546,10 +11546,10 @@ class CupertinoLocalizationTl extends GlobalCupertinoLocalizations { ...@@ -11546,10 +11546,10 @@ class CupertinoLocalizationTl extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelMany => null; String get datePickerHourSemanticsLabelMany => null;
@override @override
String get datePickerHourSemanticsLabelOne => r'Ala $hour'; String get datePickerHourSemanticsLabelOne => 'Ala \$hour';
@override @override
String get datePickerHourSemanticsLabelOther => r'Alas $hour'; String get datePickerHourSemanticsLabelOther => 'Alas \$hour';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -11567,7 +11567,7 @@ class CupertinoLocalizationTl extends GlobalCupertinoLocalizations { ...@@ -11567,7 +11567,7 @@ class CupertinoLocalizationTl extends GlobalCupertinoLocalizations {
String get datePickerMinuteSemanticsLabelOne => '1 minuto'; String get datePickerMinuteSemanticsLabelOne => '1 minuto';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute na minuto'; String get datePickerMinuteSemanticsLabelOther => '\$minute na minuto';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -11694,10 +11694,10 @@ class CupertinoLocalizationTr extends GlobalCupertinoLocalizations { ...@@ -11694,10 +11694,10 @@ class CupertinoLocalizationTr extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelMany => null; String get datePickerHourSemanticsLabelMany => null;
@override @override
String get datePickerHourSemanticsLabelOne => r'Saat $hour'; String get datePickerHourSemanticsLabelOne => 'Saat \$hour';
@override @override
String get datePickerHourSemanticsLabelOther => r'Saat $hour'; String get datePickerHourSemanticsLabelOther => 'Saat \$hour';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -11715,7 +11715,7 @@ class CupertinoLocalizationTr extends GlobalCupertinoLocalizations { ...@@ -11715,7 +11715,7 @@ class CupertinoLocalizationTr extends GlobalCupertinoLocalizations {
String get datePickerMinuteSemanticsLabelOne => '1 dakika'; String get datePickerMinuteSemanticsLabelOne => '1 dakika';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute dakika'; String get datePickerMinuteSemanticsLabelOther => '\$minute dakika';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -11836,16 +11836,16 @@ class CupertinoLocalizationUk extends GlobalCupertinoLocalizations { ...@@ -11836,16 +11836,16 @@ class CupertinoLocalizationUk extends GlobalCupertinoLocalizations {
String get datePickerDateTimeOrderString => 'date_time_dayPeriod'; String get datePickerDateTimeOrderString => 'date_time_dayPeriod';
@override @override
String get datePickerHourSemanticsLabelFew => r'$hour години'; String get datePickerHourSemanticsLabelFew => '\$hour години';
@override @override
String get datePickerHourSemanticsLabelMany => r'$hour годин'; String get datePickerHourSemanticsLabelMany => '\$hour годин';
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour година'; String get datePickerHourSemanticsLabelOne => '\$hour година';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour години'; String get datePickerHourSemanticsLabelOther => '\$hour години';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -11854,16 +11854,16 @@ class CupertinoLocalizationUk extends GlobalCupertinoLocalizations { ...@@ -11854,16 +11854,16 @@ class CupertinoLocalizationUk extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelZero => null; String get datePickerHourSemanticsLabelZero => null;
@override @override
String get datePickerMinuteSemanticsLabelFew => r'$minute хвилини'; String get datePickerMinuteSemanticsLabelFew => '\$minute хвилини';
@override @override
String get datePickerMinuteSemanticsLabelMany => r'$minute хвилин'; String get datePickerMinuteSemanticsLabelMany => '\$minute хвилин';
@override @override
String get datePickerMinuteSemanticsLabelOne => '1 хвилина'; String get datePickerMinuteSemanticsLabelOne => '1 хвилина';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute хвилини'; String get datePickerMinuteSemanticsLabelOther => '\$minute хвилини';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -11990,10 +11990,10 @@ class CupertinoLocalizationUr extends GlobalCupertinoLocalizations { ...@@ -11990,10 +11990,10 @@ class CupertinoLocalizationUr extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelMany => null; String get datePickerHourSemanticsLabelMany => null;
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour بجے'; String get datePickerHourSemanticsLabelOne => '\$hour بجے';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour بجے'; String get datePickerHourSemanticsLabelOther => '\$hour بجے';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -12011,7 +12011,7 @@ class CupertinoLocalizationUr extends GlobalCupertinoLocalizations { ...@@ -12011,7 +12011,7 @@ class CupertinoLocalizationUr extends GlobalCupertinoLocalizations {
String get datePickerMinuteSemanticsLabelOne => '1 منٹ'; String get datePickerMinuteSemanticsLabelOne => '1 منٹ';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute منٹس'; String get datePickerMinuteSemanticsLabelOther => '\$minute منٹس';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -12138,10 +12138,10 @@ class CupertinoLocalizationUz extends GlobalCupertinoLocalizations { ...@@ -12138,10 +12138,10 @@ class CupertinoLocalizationUz extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelMany => null; String get datePickerHourSemanticsLabelMany => null;
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour soat'; String get datePickerHourSemanticsLabelOne => '\$hour soat';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour soat'; String get datePickerHourSemanticsLabelOther => '\$hour soat';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -12159,7 +12159,7 @@ class CupertinoLocalizationUz extends GlobalCupertinoLocalizations { ...@@ -12159,7 +12159,7 @@ class CupertinoLocalizationUz extends GlobalCupertinoLocalizations {
String get datePickerMinuteSemanticsLabelOne => '1 daqiqa'; String get datePickerMinuteSemanticsLabelOne => '1 daqiqa';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute daqiqa'; String get datePickerMinuteSemanticsLabelOther => '\$minute daqiqa';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -12286,10 +12286,10 @@ class CupertinoLocalizationVi extends GlobalCupertinoLocalizations { ...@@ -12286,10 +12286,10 @@ class CupertinoLocalizationVi extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelMany => null; String get datePickerHourSemanticsLabelMany => null;
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour giờ'; String get datePickerHourSemanticsLabelOne => '\$hour giờ';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour giờ'; String get datePickerHourSemanticsLabelOther => '\$hour giờ';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -12307,7 +12307,7 @@ class CupertinoLocalizationVi extends GlobalCupertinoLocalizations { ...@@ -12307,7 +12307,7 @@ class CupertinoLocalizationVi extends GlobalCupertinoLocalizations {
String get datePickerMinuteSemanticsLabelOne => '1 phút'; String get datePickerMinuteSemanticsLabelOne => '1 phút';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute phút'; String get datePickerMinuteSemanticsLabelOther => '\$minute phút';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -12434,10 +12434,10 @@ class CupertinoLocalizationZh extends GlobalCupertinoLocalizations { ...@@ -12434,10 +12434,10 @@ class CupertinoLocalizationZh extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelMany => null; String get datePickerHourSemanticsLabelMany => null;
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour 点'; String get datePickerHourSemanticsLabelOne => '\$hour 点';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour 点'; String get datePickerHourSemanticsLabelOther => '\$hour 点';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -12455,7 +12455,7 @@ class CupertinoLocalizationZh extends GlobalCupertinoLocalizations { ...@@ -12455,7 +12455,7 @@ class CupertinoLocalizationZh extends GlobalCupertinoLocalizations {
String get datePickerMinuteSemanticsLabelOne => '1 分钟'; String get datePickerMinuteSemanticsLabelOne => '1 分钟';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute 分钟'; String get datePickerMinuteSemanticsLabelOther => '\$minute 分钟';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
...@@ -12598,16 +12598,16 @@ class CupertinoLocalizationZhHant extends CupertinoLocalizationZh { ...@@ -12598,16 +12598,16 @@ class CupertinoLocalizationZhHant extends CupertinoLocalizationZh {
String get datePickerDateTimeOrderString => 'date_dayPeriod_time'; String get datePickerDateTimeOrderString => 'date_dayPeriod_time';
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour 點'; String get datePickerHourSemanticsLabelOne => '\$hour 點';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour 點'; String get datePickerHourSemanticsLabelOther => '\$hour 點';
@override @override
String get datePickerMinuteSemanticsLabelOne => '1 分鐘'; String get datePickerMinuteSemanticsLabelOne => '1 分鐘';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute 分鐘'; String get datePickerMinuteSemanticsLabelOther => '\$minute 分鐘';
@override @override
String get pasteButtonLabel => '貼上'; String get pasteButtonLabel => '貼上';
...@@ -12687,7 +12687,7 @@ class CupertinoLocalizationZhHantTw extends CupertinoLocalizationZhHant { ...@@ -12687,7 +12687,7 @@ class CupertinoLocalizationZhHantTw extends CupertinoLocalizationZhHant {
String get datePickerMinuteSemanticsLabelOne => '1 分'; String get datePickerMinuteSemanticsLabelOne => '1 分';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute 分'; String get datePickerMinuteSemanticsLabelOther => '\$minute 分';
@override @override
String get datePickerDateTimeOrderString => 'date_time_dayPeriod'; String get datePickerDateTimeOrderString => 'date_time_dayPeriod';
...@@ -12754,10 +12754,10 @@ class CupertinoLocalizationZu extends GlobalCupertinoLocalizations { ...@@ -12754,10 +12754,10 @@ class CupertinoLocalizationZu extends GlobalCupertinoLocalizations {
String get datePickerHourSemanticsLabelMany => null; String get datePickerHourSemanticsLabelMany => null;
@override @override
String get datePickerHourSemanticsLabelOne => r'$hour ezimpondweni'; String get datePickerHourSemanticsLabelOne => '\$hour ezimpondweni';
@override @override
String get datePickerHourSemanticsLabelOther => r'$hour ezimpondweni'; String get datePickerHourSemanticsLabelOther => '\$hour ezimpondweni';
@override @override
String get datePickerHourSemanticsLabelTwo => null; String get datePickerHourSemanticsLabelTwo => null;
...@@ -12775,7 +12775,7 @@ class CupertinoLocalizationZu extends GlobalCupertinoLocalizations { ...@@ -12775,7 +12775,7 @@ class CupertinoLocalizationZu extends GlobalCupertinoLocalizations {
String get datePickerMinuteSemanticsLabelOne => '1 iminithi'; String get datePickerMinuteSemanticsLabelOne => '1 iminithi';
@override @override
String get datePickerMinuteSemanticsLabelOther => r'$minute amaminithi'; String get datePickerMinuteSemanticsLabelOther => '\$minute amaminithi';
@override @override
String get datePickerMinuteSemanticsLabelTwo => null; String get datePickerMinuteSemanticsLabelTwo => null;
......
This source diff could not be displayed because it is too large. You can view the blob instead.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment