NuvioStreaming/src/constants/locales.ts
2026-02-01 01:09:27 +05:30

14 lines
No EOL
476 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' }
];