mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-12 23:45:18 +00:00

* feat: add riverpod based favorite album provider * feat: add album is saved, new releases and tracks providers * feat: add artist related providers * feat: add all categories providers * feat: add lyrics provider * feat: add playlist related providers * feat: add search provider * feat: add view and spotify friends provider * feat: add playlist create and update and favorite handlers * feat: use providers in home screen * chore: fix dart lint issues * feat: use new providers for playlist and albums screen * feat: use providers in artist page * feat: use providers on library page * feat: use provider for playlist and album card and heart button * feat: use provider in search page * feat: use providers in generate playlist * feat: use provider in lyrics screen * feat: use provider for create playlist * feat: use provider in add track dialog * feat: use providers in remaining pages and remove fl_query * fix: remove direct access to provider.value * fix: glitching when loading * fix: user album loading next page indicator * feat: make many provider autoDispose after 5 minutes of no usage * fix: ignore episodes in tracks
42 lines
1.1 KiB
Dart
42 lines
1.1 KiB
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
|
|
/// Stephan-P@github, SecularSteve@github => Dutch
|
|
/// doannc2212@github => Vietnamese
|
|
/// sappho192@github => Korean
|
|
library;
|
|
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('ko', 'KR'),
|
|
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'),
|
|
const Locale('vi', 'VN'),
|
|
];
|
|
}
|