UNPKG

i18n-helper-babel

Version:

i18n 命令行工具。一键包裹,提取,翻译,统计。支持网页截图,翻译词条检测

16 lines (12 loc) 391 B
import i18n from 'i18next'; import Backend from 'i18next-fs-backend'; const currentLanguage = 'en'; i18n.use(Backend).init({ // debug: true, initImmediate: false, // setting initImediate to false, will load the resources synchronously lng: currentLanguage, ns: 'translation', fallbackLng: 'en', backend: { loadPath: './locales/{{lng}}/{{ns}}.json' }, }); export default i18n;