i18next在加载后备语言之前不应该等待语言检测结果

时间:2018-12-15 10:03:20

标签: i18next react-i18next

我以react-i18next example为基础。 我用自定义语言检测器替换了“ i18next-browser-languagedetector”:

class MyLanguageDetector {
  constructor(services, options = {}) {
    this.async = true;
    this.init(services, options);
  }

  init(services, options = {}, i18nOptions = {}) {  }

  detect(callback) {
    setTimeout(() => {
      callback('de')
    }, 5000);
  }

  cacheUserLanguage(lng, caches) {  }
}

MyLanguageDetector.type = 'languageDetector';

配置:

i18n
  .use(MyLanguageDetector)
  .use(Backend)
  .use(reactI18nextModule)

  .init({
    fallbackLng: 'en',
    debug: true,

    interpolation: { escapeValue: false },

    react: { wait: true }
  });

我看到的是:

i18next::backendConnector: loaded namespace translation for language en

大约5秒后:

i18next::backendConnector: loaded namespace translation for language de

由于检测到的语言为“ de”,我希望不会加载“ en”

1 个答案:

答案 0 :(得分:0)

fallbackLng始终会被加载,以便在当前语言翻译文件缺少特定键/资源的情况下可以使用它

请参见related issue