mirror of
https://github.com/immich-app/immich.git
synced 2025-01-06 03:46:47 +01:00
33b1410d82
* properly done background backup service * new concurrency/locking management with heartbeat fix communication erros with Kotlin plugin on start/stop service methods better error handling for BackgroundService public methods Add default notification message when service is running * configurable WiFi & charging requirement for service * use translations in background service
17 lines
342 B
Dart
17 lines
342 B
Dart
import 'dart:ui';
|
|
|
|
const List<Locale> locales = [
|
|
// Default locale
|
|
Locale('en', 'US'),
|
|
// Additional locales
|
|
Locale('da', 'DK'),
|
|
Locale('de', 'DE'),
|
|
Locale('es', 'ES'),
|
|
Locale('fi', 'FI'),
|
|
Locale('fr', 'FR'),
|
|
Locale('it', 'IT'),
|
|
Locale('ja', 'JP'),
|
|
Locale('pl', 'PL')
|
|
];
|
|
|
|
const String translationsPath = 'assets/i18n';
|