Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | 3x | import i18next from "i18next"
import en from "../../locales/en.json"
import frFR from "../../locales/fr-FR.json"
export async function initializeI18N() {
await i18next.init({
// debug: true,
resources: {
en: {
translation: en,
},
"fr-FR": {
translation: frFR,
},
},
})
}
|