Merge pull request #308 from MikeWallaceDev/fix_readd_russian_language

fix: put back Russian language
This commit is contained in:
Nathan.fooo 2022-02-06 11:42:13 +08:00 committed by GitHub
commit cac0dcaf7f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,13 +29,16 @@ class AppWidgetTask extends LaunchTask {
runApp(
EasyLocalization(
supportedLocales: const [
// In alphabetical order
Locale('en'),
Locale('zh', 'CN'),
Locale('it', 'IT'),
Locale('fr', 'CA'),
Locale('it', 'IT'),
Locale('ru', 'RU'),
Locale('zh', 'CN'),
],
path: 'assets/translations',
fallbackLocale: const Locale('en'),
saveLocale: false,
child: app,
),
);