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

* Readability changes in README.md (#625) * Made README.md introduction more readable * Underlined important reminder in README.md even though the reminder is bold, it's not visible enough * small typo fix README.md removed an unnecesary comma * Russian translation added --------- Co-authored-by: MerkomassDev <merkomass@gmail.com> Co-authored-by: Kingkor Roy Tirtho <krtirtho@gmail.com>
26 lines
650 B
Dart
26 lines
650 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('ja', 'JP'),
|
|
const Locale('zh', 'CN'),
|
|
const Locale('pl', 'PL'),
|
|
const Locale('ru', 'RU'),
|
|
const Locale('pt', 'PT'),
|
|
];
|
|
}
|