NuvioStreaming/src/i18n/resources.ts
2026-02-08 19:55:15 +01:00

48 lines
1.5 KiB
TypeScript

import en from './locales/en.json';
import ptBR from './locales/pt-BR.json';
import ptPT from './locales/pt-PT.json';
import ar from './locales/ar.json';
import es from './locales/es.json';
import fr from './locales/fr.json';
import it from './locales/it.json';
import de from './locales/de.json';
import hr from './locales/hr.json';
import hi from './locales/hi.json';
import zhCN from './locales/zh-CN.json';
import sr from './locales/sr.json';
import he from './locales/he.json';
import bg from './locales/bg.json';
import pl from './locales/pl.json';
import cs from './locales/cs.json';
import tr from './locales/tr.json';
import sl from './locales/sl.json';
import mk from './locales/mk.json';
import ru from './locales/ru.json';
import fil from './locales/fil.json';
import nlNL from './locales/nl-NL.json';
export const resources = {
en: { translation: en },
'pt-BR': { translation: ptBR },
'pt-PT': { translation: ptPT },
ar: { translation: ar },
es: { translation: es },
fr: { translation: fr },
it: { translation: it },
de: { translation: de },
hr: { translation: hr },
'zh-CN': { translation: zhCN },
hi: { translation: hi },
sr: { translation: sr },
he: { translation: he },
bg: { translation: bg },
pl: { translation: pl },
cs: { translation: cs },
tr: { translation: tr },
sl: { translation: sl },
mk: { translation: mk },
ru: { translation: ru },
fil: { translation: fil },
'nl-NL': { translation: nlNL },
};