mirror of
https://github.com/tapframe/NuvioStreaming.git
synced 2026-04-13 21:20:20 +00:00
17 lines
581 B
TypeScript
17 lines
581 B
TypeScript
export const LOCALES = [
|
|
{ code: 'en', key: 'english' },
|
|
{ code: 'pt-BR', key: 'portuguese_br' },
|
|
{ code: 'pt-PT', key: 'portuguese_pt' },
|
|
{ code: 'de', key: 'german' },
|
|
{ code: 'ar', key: 'arabic' },
|
|
{ code: 'fr', key: 'french' },
|
|
{ code: 'it', key: 'italian' },
|
|
{ code: 'es', key: 'spanish' },
|
|
{ code: 'hr', key: 'croatian' },
|
|
{ code: 'zh-CN', key: 'chinese' },
|
|
{ code: 'hi', key: 'hindi' },
|
|
{ code: 'sr', key: 'serbian' }
|
|
{ code: 'he', key: 'hebrew' }
|
|
{ code: 'bg', key: 'bulgarian' }
|
|
{ code: 'pl', key: 'polish' }
|
|
];
|