0

我有一个使用Trans组件执行翻译的应用程序。我没有i18nKey在我的 Trans 组件上声明属性,只是使用组件内的Trans内容来生成密钥,但即使存在密钥,Trans也不会产生翻译,除非i18nKey组件上存在。t函数 from正确翻译了它的useTranslation参数,但是在这个例子中 Trans 组件不会翻译成法语。github上的完整项目在这里我的应用程序中的示例:

索引.jsx

import React from 'react';
import ReactDOM from 'react-dom';
import { I18nextProvider } from 'react-i18next';
import URLSearchParams from '@ungap/url-search-params';
import 'web/js/sentry';
import 'react-toastify/dist/ReactToastify.css';

import { Root } from 'web/js/page/root';

import i18n from 'common/i18n';

if (!window.URLSearchParams) {
  window.URLSearchParams = URLSearchParams;
}

ReactDOM.render(
  <I18nextProvider i18n={i18n}>
    <Root />
  </I18nextProvider>,
  document.querySelector('.projectroot'),
);

主题/hangul/index.jsx

import React from 'react';
import { Trans } from 'react-i18next';

import { Utterance } from 'web/js/application-hook/utterance';

import './style.scss';

export function Hangul() {
  return (
    <div styleName='root'>
      <section styleName='section'>
        <Trans>
          <Utterance text='한글'>한글</Utterance> and <Utterance text='조선글'>조선글</Utterance> are the respective names of the contemporary Korean writing system used in South Korea and North Korea.
        </Trans>
        &nbsp;
        <Trans>
          <Utterance text='훈민정음'>훈민정음</Utterance>, the original name of the writing system, was introduced and promoted in 1446 by Sejong the Great.
        </Trans>
      </section>
    </div>
  );
}

常见/i18n.js

import i18n from 'i18next';
import { initReactI18next } from 'react-i18next';

import fr from 'common/i18n/fr/translation.json';
import { SUPPORTED_LANGUAGE_IDS } from 'common/models';

i18n
.use(initReactI18next)
.init({
  preload: SUPPORTED_LANGUAGE_IDS,
  fallbackLng: 'en',
  initImmediate: false,
  returnEmptyString: false,
  resources: {
    fr: {
      translation: fr
    }
  },
  interpolation: {
    escapeValue: false
  },
  react: {
    hashTransKey: function(defaultValue) {
      console.log('missing key', defaultValue);

      return defaultValue;
    },
  }
});

export default i18n;

common/i18n/fr/translation.json

{
  "The Korean Writing System": "Le système d'écriture coréen",
  "<0>한글</0> and <2>조선글</2> are the respective names of the contemporary Korean writing system used in South Korea and North Korea.": "<0>한글</0> et <2>조선글</2> sont les noms respectifs du système d'écriture coréen contemporain utilisé en Corée du Sud et en Corée du Nord.",
  "<0>훈민정음</0>, the original name of the writing system, was introduced and promoted in 1446 by Sejong the Great.": "<0>훈민정음</0>, le nom original du système d'écriture, a été introduit et promu en 1446 par Sejong le Grand."
}
4

1 回答 1

0

我发现了为什么会发生这种情况,在i18next 的配置选项keySeparator中,默认值为.,所以我所有包含.字符的文本都没有正确计算翻译,因为它.充当了 keySeperator。

于 2019-09-29T13:07:33.697 回答