spotube/lib/l10n/l10n.dart
Henrik Sozzi c47e38debe Corrections and new textes
Corrected the wrong TAB in i10n.dart and added translations of new text items
2023-10-27 19:56:01 +02:00

32 lines
836 B
Dart

/// credits:
///
/// Kingkor Roy Tirtho => English, Bengali
/// ChatGPT (GPT 3.5) XD => Hindi, French
/// maboroshin@github => Japanese
/// iceyear@github => Simplified Chinese
/// TexturedPolak@github => Polish
/// yuri-val@github => Ukrainian
/// energywave@github => Italian
import 'package:flutter/material.dart';
class L10n {
static final all = [
const Locale('en'),
const Locale('bn', 'BD'),
const Locale('de', 'GE'),
const Locale('ca', 'AD'),
const Locale('es', 'ES'),
const Locale("fa", "IR"),
const Locale('fr', 'FR'),
const Locale('hi', 'IN'),
const locale('it', 'IT'),
const Locale('ja', 'JP'),
const Locale('zh', 'CN'),
const Locale('pl', 'PL'),
const Locale('ru', 'RU'),
const Locale('pt', 'PT'),
const Locale('uk', 'UA'),
const Locale('ar', 'SA'),
];
}