mirror of
https://github.com/immich-app/immich.git
synced 2024-12-19 00:32:49 +02:00
18 lines
342 B
Dart
18 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';
|