mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-17 01:15:17 +00:00

* refactor: remove SourcedTrack based audio player and utilize mediakit playback system * feat: implement local (loopback) server to resolve stream source and leverage the media_kit playback API * feat: add source change support and re-add prefetching tracks * fix: assign lastId when track fetch completes regardless of error * chore: remove print statements * fix: remote queue not working * fix: increase mpv network timeout to reduce auto-skipping * fix: do not pre-fetch local tracks * fix(proxy-playlist): reset collections on load * chore: fix lint warnings * fix(mobile): player overlay should not be visible when the player is not playing * chore: fix typo in turkish translation * cd: checkout PR branch * cd: upgrade flutter version * chore: fix lint errors
46 lines
1.2 KiB
Dart
46 lines
1.2 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, mikropsoft@github => Turkish
|
|
/// Stephan-P@github, SecularSteve@github => Dutch
|
|
/// doannc2212@github => Vietnamese
|
|
/// sappho192@github => Korean
|
|
/// watchakorn-18k@github => Thai
|
|
|
|
library l10n;
|
|
|
|
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('th', 'TH'),
|
|
const Locale('tr', 'TR'),
|
|
const Locale('zh', 'CN'),
|
|
const Locale('vi', 'VN'),
|
|
];
|
|
}
|