bang/frontend/src/i18n/index.js
2023-01-28 19:55:43 +00:00

13 lines
207 B
JavaScript

import it from './it.json'
import en from './en.json'
import cs from './cs.json'
export const defaultLocale = 'it'
export const fallbackLocale = 'en'
export const languages = {
it: it,
en: en,
cs: cs
}