mirror of
https://github.com/ImranR98/Obtainium.git
synced 2025-07-29 20:20:14 +02:00
Language fix for #185
This commit is contained in:
@@ -43,12 +43,16 @@ final globalNavigatorKey = GlobalKey<NavigatorState>();
|
||||
Future<void> loadTranslations() async {
|
||||
// See easy_localization/issues/210
|
||||
await EasyLocalizationController.initEasyLocation();
|
||||
var s = SettingsProvider();
|
||||
await s.initializeSettings();
|
||||
var forceLocale = s.forcedLocale;
|
||||
final controller = EasyLocalizationController(
|
||||
saveLocale: true,
|
||||
forceLocale: forceLocale != null ? Locale(forceLocale) : null,
|
||||
fallbackLocale: fallbackLocale,
|
||||
supportedLocales: supportedLocales,
|
||||
assetLoader: const RootBundleAssetLoader(),
|
||||
useOnlyLangCode: false,
|
||||
useOnlyLangCode: true,
|
||||
useFallbackTranslations: true,
|
||||
path: localeDir,
|
||||
onLoadError: (FlutterError e) {
|
||||
@@ -160,6 +164,7 @@ void main() async {
|
||||
supportedLocales: supportedLocales,
|
||||
path: localeDir,
|
||||
fallbackLocale: fallbackLocale,
|
||||
useOnlyLangCode: true,
|
||||
child: const Obtainium()),
|
||||
));
|
||||
}
|
||||
|
@@ -145,8 +145,11 @@ class _SettingsPageState extends State<SettingsPage> {
|
||||
],
|
||||
onChanged: (value) {
|
||||
settingsProvider.forcedLocale = value;
|
||||
context.setLocale(Locale(settingsProvider.forcedLocale ??
|
||||
context.fallbackLocale!.languageCode));
|
||||
if (value != null) {
|
||||
context.setLocale(Locale(value));
|
||||
} else {
|
||||
context.resetLocale();
|
||||
}
|
||||
});
|
||||
|
||||
var intervalDropdown = DropdownButtonFormField(
|
||||
|
Reference in New Issue
Block a user