apskel-owner-flutter/lib/l10n/app_localizations_en.dart
2025-08-13 01:17:00 +07:00

86 lines
1.7 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 indonesian => 'Indonesian';
@override
String get english => 'English';
@override
String get language => 'Language';
@override
String get version => 'Version';
@override
String get select_language => 'Select Language';
@override
String get login_header => 'Welcome back';
@override
String get login_desc => 'Sign in to your account';
@override
String get email => 'Email';
@override
String get email_placeholder => 'Enter your email';
@override
String get password => 'Password';
@override
String get password_placeholder => 'Enter your password';
@override
String get forgot_password => 'Forgot Password';
@override
String get sign_in => 'Sign In';
@override
String get good_morning => 'Good Morning';
@override
String get good_afternoon => 'Good Afternoon';
@override
String get good_evening => 'Good Evening';
@override
String get good_night => 'Good Night';
@override
String get home_header_desc => 'Let\'s improve your business performance today';
@override
String get home => 'Home';
@override
String get transaction => 'Transaction';
@override
String get transactions => 'Transactions';
@override
String get report => 'Report';
@override
String get reports => 'Reports';
@override
String get profile => 'Profile';
@override
String get sales_today => 'Sales today';
}