|
@@ -28,6 +28,7 @@ void main() {
|
|
|
FTrKeybookOption.EnglishOption,
|
|
|
FTrKeybookOption.RussianOption,
|
|
|
FTrKeybookOption.SpanishOption,
|
|
|
+ FTrKeybookOption.RomaniaOption,
|
|
|
];
|
|
|
await FI18n.init((loacle) => {}, bookOptions);
|
|
|
});
|
|
@@ -37,6 +38,7 @@ void main() {
|
|
|
final enLocale = Locale("en", "US");
|
|
|
final ruLocale = Locale("ru", "RU");
|
|
|
final esLocal = Locale("es", "ES");
|
|
|
+ final roLocal = Locale("ro", "RO");
|
|
|
await FI18n.load(curLocale);
|
|
|
print(i18nBook.auth.login.t);
|
|
|
print(i18nBook.common.versionNumber.translate(['1.2.11']));
|
|
@@ -52,6 +54,10 @@ void main() {
|
|
|
print(" ***Locale change to $esLang *** ");
|
|
|
print(i18nBook.auth.login.t);
|
|
|
print(i18nBook.common.versionNumber.translate(['1.2.11']));
|
|
|
+ final roLang = await FI18n.ins.switchLanguage(roLocal);
|
|
|
+ print(" ***Locale change to $esLang *** ");
|
|
|
+ print(i18nBook.auth.login.t);
|
|
|
+ print(i18nBook.common.versionNumber.translate(['1.2.11']));
|
|
|
});
|
|
|
test('test - input value', () async {
|
|
|
final curLocale = Locale("zh", "CN");
|