Files
OnBudget/lib/l10n/app_localizations_en.dart
T
2026-05-27 10:36:03 +03:00

101 lines
2.0 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.';
}