localization
This commit is contained in:
39
lib/l10n/app_localizations_en.dart
Normal file
39
lib/l10n/app_localizations_en.dart
Normal file
@@ -0,0 +1,39 @@
|
||||
// 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 welcomeBack(String name) {
|
||||
return 'Welcome back, $name! 👋';
|
||||
}
|
||||
|
||||
@override
|
||||
String get latestServices => 'Latest Services';
|
||||
|
||||
@override
|
||||
String get masterData => 'Master Data';
|
||||
|
||||
@override
|
||||
String get settings => 'Settings';
|
||||
|
||||
@override
|
||||
String get newService => 'Service';
|
||||
|
||||
@override
|
||||
String get expiring_contracts => 'Expiring Contracts';
|
||||
|
||||
@override
|
||||
String get sticky_notes => 'Sticky Notes';
|
||||
|
||||
@override
|
||||
String get my_tasks => 'My Tasks';
|
||||
|
||||
@override
|
||||
String get latest_service_tickets => 'Latest service tickets';
|
||||
}
|
||||
Reference in New Issue
Block a user