mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-13 07:55:18 +00:00

* actions: Add Up for grab checkbox to issue templates. (#1074) * docs: update copyright year in README.md (#1100) year changed from 2023 to 2024 * feat(translations): add Nepali (नेपाली) translations --------- Co-authored-by: Taha Ghadirian <taha@smilecode.ir> Co-authored-by: Muhammad Jawad <70428284+m-Jawa-d@users.noreply.github.com>
37 lines
1023 B
Dart
37 lines
1023 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
|
|
/// SecularSteve@github => Dutch
|
|
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('ne', 'NP'),
|
|
const Locale('hi', 'IN'),
|
|
const Locale('it', 'IT'),
|
|
const Locale('ja', 'JP'),
|
|
const Locale('nl', 'NL'),
|
|
const Locale('pl', 'PL'),
|
|
const Locale('pt', 'PT'),
|
|
const Locale('ru', 'RU'),
|
|
const Locale('uk', 'UA'),
|
|
const Locale('tr', 'TR'),
|
|
const Locale('zh', 'CN'),
|
|
];
|
|
}
|