148 lines
2.9 KiB
Dart
148 lines
2.9 KiB
Dart
// 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 appName => 'RentalDriveGo';
|
|
|
|
@override
|
|
String get tagline => 'The easiest way to find\nand reserve your perfect car';
|
|
|
|
@override
|
|
String get findYourCar => 'Find your car';
|
|
|
|
@override
|
|
String get companySignIn => 'Space Agency';
|
|
|
|
@override
|
|
String get sameDropoff => 'Same drop-off';
|
|
|
|
@override
|
|
String get differentDropoff => 'Different drop-off';
|
|
|
|
@override
|
|
String get findCarToRent => 'Find a car to rent';
|
|
|
|
@override
|
|
String get allCarTypes => 'All car types';
|
|
|
|
@override
|
|
String get search => 'Search';
|
|
|
|
@override
|
|
String get searching => 'Searching…';
|
|
|
|
@override
|
|
String vehiclesFound(num count) {
|
|
String _temp0 = intl.Intl.pluralLogic(
|
|
count,
|
|
locale: localeName,
|
|
other: '$count vehicles found',
|
|
one: '1 vehicle found',
|
|
zero: 'No vehicles found',
|
|
);
|
|
return '$_temp0';
|
|
}
|
|
|
|
@override
|
|
String get noVehiclesFound => 'No vehicles found';
|
|
|
|
@override
|
|
String get tryDifferentSearch => 'Try different dates, city, or car type';
|
|
|
|
@override
|
|
String get couldNotLoadVehicles => 'Could not load vehicles';
|
|
|
|
@override
|
|
String get checkConnectionRetry => 'Check your connection and try again';
|
|
|
|
@override
|
|
String get retry => 'Retry';
|
|
|
|
@override
|
|
String get myBookings => 'My Bookings';
|
|
|
|
@override
|
|
String get browse => 'Browse';
|
|
|
|
@override
|
|
String get signInToViewBookings => 'Sign in to view your bookings';
|
|
|
|
@override
|
|
String get carType => 'Car type';
|
|
|
|
@override
|
|
String get selectCity => 'Select city';
|
|
|
|
@override
|
|
String get allCities => 'All cities';
|
|
|
|
@override
|
|
String get searchCities => 'Search cities…';
|
|
|
|
@override
|
|
String get chooseLanguage => 'Language';
|
|
|
|
@override
|
|
String get languageName => 'English';
|
|
|
|
@override
|
|
String get perDay => '/day';
|
|
|
|
@override
|
|
String nDays(num count) {
|
|
String _temp0 = intl.Intl.pluralLogic(
|
|
count,
|
|
locale: localeName,
|
|
other: '$count days',
|
|
one: '1 day',
|
|
);
|
|
return '$_temp0';
|
|
}
|
|
|
|
@override
|
|
String get total => 'total';
|
|
|
|
@override
|
|
String get reserveThisCar => 'Reserve This Car';
|
|
|
|
@override
|
|
String get lightTheme => 'Light';
|
|
|
|
@override
|
|
String get darkTheme => 'Dark';
|
|
|
|
@override
|
|
String get settings => 'Settings';
|
|
|
|
@override
|
|
String get anyPrice => 'Any price';
|
|
|
|
@override
|
|
String get price => 'Price';
|
|
|
|
@override
|
|
String get apply => 'Apply';
|
|
|
|
@override
|
|
String get selectAll => 'Select all';
|
|
|
|
@override
|
|
String get clearAll => 'Clear all';
|
|
|
|
@override
|
|
String get pickDates => 'Pick dates';
|
|
|
|
@override
|
|
String get pickupLocation => 'Pickup location';
|
|
|
|
@override
|
|
String get dropoffLocation => 'Drop-off location';
|
|
}
|