spotube/lib/l10n/l10n.dart
Henrik Sozzi e4eb0e2596
feat: add Italian language translations (#818)
* Italian language added

Created and added the Italian language

* Corrections and new textes

Corrected the wrong TAB in i10n.dart and added translations of new text items

* Fix

it const name was lowercase

* Merged suggestions from PR #676, added credits

Added suggestions as in comments of PR #676 and added credits to @ncvescera and @OpenCode
2023-12-08 11:23:53 +06:00

34 lines
930 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, ncvescera@github, OpenCode@github => Italian
/// mdksec@github => Turkish
import 'package:flutter/material.dart';
class L10n {
static final all = [
const Locale('en'),
const Locale('ar', 'SA'),
const Locale('bn', 'BD'),
const Locale('ca', 'AD'),
const Locale('de', 'GE'),
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('pl', 'PL'),
const Locale('pt', 'PT'),
const Locale('ru', 'RU'),
const Locale('uk', 'UA'),
const Locale('tr', 'TR'),
const Locale('zh', 'CN'),
];
}