spotube/lib/l10n/l10n.dart
Henrik Sozzi 6b248c9d04 Italian language added
Created and added the Italian language
2023-10-16 20:05:43 +02:00

27 lines
677 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
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('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'),
];
}