spotube/lib/l10n/l10n.dart
Lobo 76f30a0f20
feat(translations): added Portuguese (Brazil) translation (#634)
* chore: update library credits

* chore: increase score when title matchs

* chore: adjust score for both official flag & track name in title

* chore: use scoring for non-english tracks only

* added Portuguese (Brazil) translation

---------

Co-authored-by: Kingkor Roy Tirtho <krtirtho@gmail.com>
2023-08-23 21:52:34 +06:00

25 lines
620 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('pt', 'PT'),
];
}