mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-13 07:55:18 +00:00
19 lines
427 B
Dart
19 lines
427 B
Dart
/// credits:
|
|
///
|
|
/// Kingkor Roy Tirtho => English, Bengali
|
|
/// ChatGPT (GPT 3.5) XD => Hindi, French
|
|
/// maboroshin@github => Japanese
|
|
import 'package:flutter/material.dart';
|
|
|
|
class L10n {
|
|
static final all = [
|
|
const Locale('en'),
|
|
const Locale('bn', 'BD'),
|
|
const Locale('fr', 'FR'),
|
|
const Locale('hi', 'IN'),
|
|
const Locale('de', 'GE'),
|
|
const Locale('ja', 'JP'),
|
|
const Locale('zh-cn', 'CN'),
|
|
];
|
|
}
|