如何使用 React i18next 翻译动态句子?

How can I translate dynamic sentence with react i18next?

所以我想在我的页面上显示这样的内容:

there are ${number} monkeys living in our zoo

所以这个号码是从服务器得到的号码

我的问题是如何使用 react-18nex 中的 t 函数来完成它,我应该在我的语言环境文件中做什么以进行翻译?

非常感谢

您可以在您的语言中使用 {{ }} json 文件,例如,

hello: "hello, {{username}}"

并像这样使用它:

 i18n.t("hello",{username:"hasankzl"})