116 lines
2.3 KiB
Dart
116 lines
2.3 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 appTitle => 'NewBudget';
|
|
|
|
@override
|
|
String get navHome => 'Home';
|
|
|
|
@override
|
|
String get navAnalytics => 'Analytics';
|
|
|
|
@override
|
|
String get navAccounts => 'Accounts';
|
|
|
|
@override
|
|
String get navProfile => 'Profile';
|
|
|
|
@override
|
|
String get allAccounts => 'All';
|
|
|
|
@override
|
|
String get comingSoon => 'Coming soon';
|
|
|
|
@override
|
|
String get budget => 'BUDGET';
|
|
|
|
@override
|
|
String get balance => 'BALANCE';
|
|
|
|
@override
|
|
String get income => 'INCOME';
|
|
|
|
@override
|
|
String get expenses => 'EXPENSES';
|
|
|
|
@override
|
|
String get transactions => 'Transactions';
|
|
|
|
@override
|
|
String transactionCount(int count) {
|
|
String _temp0 = intl.Intl.pluralLogic(
|
|
count,
|
|
locale: localeName,
|
|
other: '$count transactions',
|
|
one: '$count transaction',
|
|
);
|
|
return '$_temp0';
|
|
}
|
|
|
|
@override
|
|
String get allCategoriesFilter => 'All categories · all types';
|
|
|
|
@override
|
|
String moreCategories(int count) {
|
|
String _temp0 = intl.Intl.pluralLogic(
|
|
count,
|
|
locale: localeName,
|
|
other: '+ $count more →',
|
|
one: '+ $count more →',
|
|
);
|
|
return '$_temp0';
|
|
}
|
|
|
|
@override
|
|
String todayWithDate(String date) {
|
|
return 'Today · $date';
|
|
}
|
|
|
|
@override
|
|
String yesterdayWithDate(String date) {
|
|
return 'Yesterday · $date';
|
|
}
|
|
|
|
@override
|
|
String get analyticsTitle => 'Reports';
|
|
|
|
@override
|
|
String get analyticsSubtitle => 'Analytics';
|
|
|
|
@override
|
|
String get accountsSubtitle => 'Management';
|
|
|
|
@override
|
|
String get profileSubtitle => 'Settings';
|
|
|
|
@override
|
|
String get darkTheme => 'Dark theme';
|
|
|
|
@override
|
|
String get profileHint =>
|
|
'User profile, currency, locale and other settings will appear here.';
|
|
|
|
@override
|
|
String get onboardingTitle => 'Welcome';
|
|
|
|
@override
|
|
String get onboardingSubtitle => 'Tell us your name to get started.';
|
|
|
|
@override
|
|
String get onboardingNameLabel => 'Your name';
|
|
|
|
@override
|
|
String get onboardingNameHint => 'How should we address you?';
|
|
|
|
@override
|
|
String get onboardingContinue => 'Continue';
|
|
}
|