使用i18next的基本翻译功能,您可以指定一种语言,以便同时显示英语和另一种语言:
import { useTranslation } from 'react-i18next'
...
const { t } = useTranslation()
...
`${t('Official Ballot')}/${t('Official Ballot', { lng: 'es' })}` // Official Ballot/Boleta Oficial
<Trans>
组件似乎没有lng
道具/选项……还是它?(忽略没有<Trans />
标签通常使用的其他html标记。这是一个简化的示例。)
import { Trans } from 'react-i18next'
...
<Trans i18nkey="Official Ballot" /> // Official Ballot
答案 0 :(得分:0)
Trans
组件具有一个tOptions
属性,该属性将传递给t
方法。
<Trans
i18nKey={"message"}
tOptions={{ lng: "de" }} // <--
components={[<strong>placeholder</strong>]}
/>