mirror of
https://github.com/tapframe/NuvioStreaming.git
synced 2026-04-18 15:22:05 +00:00
58 lines
1.8 KiB
TypeScript
58 lines
1.8 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';
|
|
import ro from './locales/ro.json';
|
|
import sq from './locales/sq.json';
|
|
import ca from './locales/ca.json';
|
|
import ja from './locales/ja.json';
|
|
import vi from './locales/vi.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 },
|
|
ro: { translation: ro },
|
|
sq: { translation: sq },
|
|
ca: { translation: ca },
|
|
ja: { translation: ja },
|
|
vi: { translation: vi }
|
|
};
|