如何使用 i18next 翻译属性
How to translate properties with i18next
我通常如何使用 i18next 来翻译东西
<Translation>{(t) => <span>{t('key')}</span>}</Translation>
但我不太确定如何翻译下一行中的标题值 "Dashboard" 等属性
<NavExpandable title="Dashboard" isExpanded>
我还没有找到解决方案,我不敢相信我是唯一遇到这个问题的人。
我的问题是我使用的是 import { Translation } from 'i18next';
而不是 import { Translation } from 'react-i18next';
我通常如何使用 i18next 来翻译东西
<Translation>{(t) => <span>{t('key')}</span>}</Translation>
但我不太确定如何翻译下一行中的标题值 "Dashboard" 等属性
<NavExpandable title="Dashboard" isExpanded>
我还没有找到解决方案,我不敢相信我是唯一遇到这个问题的人。
我的问题是我使用的是 import { Translation } from 'i18next';
而不是 import { Translation } from 'react-i18next';