Add language menu entries (+ tr fix), increment version

This commit is contained in:
Imran Remtulla
2023-11-18 15:56:44 -05:00
parent b3ddb8658f
commit cd2857cb94
3 changed files with 14 additions and 12 deletions

View File

@@ -19,7 +19,7 @@ import 'package:easy_localization/src/easy_localization_controller.dart';
// ignore: implementation_imports
import 'package:easy_localization/src/localization.dart';
const String currentVersion = '0.14.32';
const String currentVersion = '0.14.33';
const String currentReleaseTag =
'v$currentVersion-beta'; // KEEP THIS IN SYNC WITH GITHUB RELEASES
@@ -42,6 +42,8 @@ List<MapEntry<Locale, String>> supportedLocales = const [
MapEntry(Locale('cs'), 'Česky'),
MapEntry(Locale('sv'), 'Svenska'),
MapEntry(Locale('nl'), 'Nederlands'),
MapEntry(Locale('vi'), 'Tiếng Việt'),
MapEntry(Locale('tr'), 'Türkçe'),
];
const fallbackLocale = Locale('en');
const localeDir = 'assets/translations';