mirror of
https://github.com/immich-app/immich.git
synced 2024-12-19 00:32:49 +02:00
28 lines
975 B
Dart
28 lines
975 B
Dart
|
import 'package:flutter/foundation.dart';
|
||
|
import 'package:easy_localization/src/asset_loader.dart';
|
||
|
import 'package:easy_localization/src/easy_localization_controller.dart';
|
||
|
import 'package:easy_localization/src/localization.dart';
|
||
|
import 'package:immich_mobile/constants/locales.dart';
|
||
|
|
||
|
/// Workaround to manually load translations in another Isolate
|
||
|
Future<bool> loadTranslations() async {
|
||
|
await EasyLocalizationController.initEasyLocation();
|
||
|
|
||
|
final controller = EasyLocalizationController(
|
||
|
supportedLocales: locales,
|
||
|
useFallbackTranslations: true,
|
||
|
saveLocale: true,
|
||
|
assetLoader: const RootBundleAssetLoader(),
|
||
|
path: translationsPath,
|
||
|
useOnlyLangCode: false,
|
||
|
onLoadError: (e) => debugPrint(e.toString()),
|
||
|
fallbackLocale: locales.first,
|
||
|
);
|
||
|
|
||
|
await controller.loadTranslations();
|
||
|
|
||
|
return Localization.load(controller.locale,
|
||
|
translations: controller.translations,
|
||
|
fallbackTranslations: controller.fallbackTranslations);
|
||
|
}
|