fix: Use device locale for app language (Default to English) (#2488)

This commit is contained in:
aAbed 2025-05-05 19:39:42 +05:45 committed by GitHub
parent 722f2b645f
commit 3074766ff2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -325,13 +325,7 @@ class ManagerAPI {
}
String getLocale() {
final String? savedLocale = _prefs.getString('locale');
if (savedLocale != null && savedLocale.isNotEmpty) {
return savedLocale;
} else {
final Locale deviceLocale = PlatformDispatcher.instance.locale;
return deviceLocale.languageCode.isNotEmpty ? deviceLocale.languageCode : 'en';
}
return _prefs.getString('locale') ?? Platform.localeName;
}
Future<void> setLocale(String value) async {