mirror of
https://github.com/immich-app/immich.git
synced 2024-12-20 00:38:24 +02:00
20 lines
386 B
Dart
20 lines
386 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('nl', 'NL'),
|
|
Locale('pl', 'PL'),
|
|
Locale('pt', 'PR')
|
|
];
|
|
|
|
const String translationsPath = 'assets/i18n';
|