// ignore: unused_import import 'package:intl/intl.dart' as intl; import 'app_localizations.dart'; // ignore_for_file: type=lint /// The translations for English (`en`). class AppLocalizationsEn extends AppLocalizations { AppLocalizationsEn([String locale = 'en']) : super(locale); @override String get appTitle => 'Emergency'; @override String get selectCountryButton => 'Select country manually'; @override String get retryButton => 'Try again'; @override String get errorGeneric => 'Unknown error while loading the emergency numbers.'; @override String get countryUnknownMessage => 'Country could not be determined.'; @override String get countryNotInDatabaseMessage => 'Country not listed in the emergency number database. Only the global emergency number is available.'; @override String get pickerTitle => 'Select country'; @override String get pickerSearchHint => 'Search country'; @override String get pickerNoResults => 'No country found.'; @override String emergencyButtonSemanticLabel(String label, String number) { return '$label, call $number'; } }