1
0
mirror of https://github.com/immich-app/immich.git synced 2024-12-19 00:32:49 +02:00
immich/mobile/lib/constants/locales.dart

25 lines
497 B
Dart
Raw Normal View History

import 'dart:ui';
const List<Locale> locales = [
// Default locale
Locale('en', 'US'),
// Additional locales
2022-12-18 14:13:37 +02:00
Locale('cs', 'CZ'),
Locale('da', 'DK'),
Locale('de', 'DE'),
Locale('es', 'ES'),
Locale('fi', 'FI'),
Locale('fr', 'FR'),
Locale('it', 'IT'),
Locale('ja', 'JP'),
2022-12-18 14:13:37 +02:00
Locale('ko', 'KR'),
2022-08-22 21:52:24 +02:00
Locale('nl', 'NL'),
Locale('pl', 'PL'),
Locale('pt', 'PR'),
2022-12-18 14:13:37 +02:00
Locale('ru', 'RU'),
Locale('sk', 'SK'),
2022-12-18 14:13:37 +02:00
Locale('zh', 'CN'),
];
const String translationsPath = 'assets/i18n';