hesabixArc/hesabixUI/hesabix_ui/lib/l10n/app_localizations_en.dart

88 lines
1.7 KiB
Dart
Raw Normal View History

2025-09-15 13:53:54 +03:30
// 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 => 'Hesabix';
@override
String get login => 'Login';
@override
String get username => 'Username';
@override
String get password => 'Password';
@override
String get submit => 'Submit';
@override
String get loginFailed => 'Login failed. Please try again.';
@override
String get homeWelcome => 'Signed in successfully!';
@override
String get language => 'Language';
@override
String get requiredField => 'is required';
@override
String get register => 'Register';
@override
String get forgotPassword => 'Forgot password';
@override
String get firstName => 'First name';
@override
String get lastName => 'Last name';
@override
String get email => 'Email';
@override
String get mobile => 'Mobile number';
@override
String get registerSuccess => 'Registration successful.';
@override
String get forgotSent => 'Reset link sent to your email.';
@override
String get identifier => 'Email or mobile';
@override
String get theme => 'Theme';
@override
String get system => 'System';
@override
String get light => 'Light';
@override
String get dark => 'Dark';
@override
String get welcomeTitle => 'Hesabix Cloud Accounting';
@override
String get welcomeSubtitle =>
'Smart, secure, and always available accounting for your business.';
@override
String get brandTagline =>
'Manage your finances anywhere, anytime with confidence.';
}