Files
SpotiFLAC-Mobile/lib/l10n/supported_locales.dart
T
2026-06-04 21:03:02 +07:00

41 lines
972 B
Dart

// GENERATED FILE - DO NOT EDIT
// Generated by: dart run tool/check_translations.dart 70
// Only languages with >= 70% translation completion are included.
// Translation is measured by comparing VALUES (not just key existence).
//
// To regenerate, run: dart run tool/check_translations.dart 70
import 'package:flutter/widgets.dart';
/// Minimum translation completion threshold used to filter languages.
const int translationThreshold = 70;
/// List of locales that meet the translation threshold.
/// Only these languages will be available in the app.
const List<Locale> filteredSupportedLocales = <Locale>[
Locale('en'),
Locale('fr'),
Locale('de'),
Locale('es', 'ES'),
Locale('uk'),
Locale('ru'),
Locale('tr'),
Locale('id'),
Locale('ja'),
Locale('pt', 'PT'),
];
/// Set of locale codes for quick lookup.
const Set<String> filteredLocaleCodes = <String>{
'en',
'fr',
'de',
'es_ES',
'uk',
'ru',
'tr',
'id',
'ja',
'pt_PT',
};