TF-1581 Support language Italian

This commit is contained in:
dab246
2023-03-10 14:03:10 +07:00
committed by Dat Vu
parent a95bf26fe5
commit 266000da91
4 changed files with 19 additions and 3 deletions
@@ -1609,6 +1609,12 @@ class AppLocalizations {
name: 'languageArabic');
}
String get languageItalian {
return Intl.message(
'Italian',
name: 'languageItalian');
}
String get messageDialogSendEmailUploadingAttachment {
return Intl.message(
'Your message could not be sent because it uploading attachment',
@@ -15,7 +15,8 @@ class LocalizationService extends Translations {
'en',
'vi',
'ru',
'ar'
'ar',
'it'
];
static const List<Locale> supportedLocales = [
@@ -23,7 +24,8 @@ class LocalizationService extends Translations {
Locale('en', 'US'),
Locale('vi', 'VN'),
Locale('ru', 'RU'),
Locale('ar', 'TN')
Locale('ar', 'TN'),
Locale('it', 'IT')
];
static final locale = _getLocaleFromLanguage();