如何使用i18next为不同的语言设置不同的字体?
React i18next
我在我的项目中使用英语和阿拉伯语两种语言我正在使用 i18next React 我想使用两种不同的语言 阿拉伯语和英语字体 我想使用 DIN Next LT 阿拉伯语 以及英语的 Arial、Helvetica、sans-serif
React i18next
I am using two languages English and Arabic in my project I am using i18next react i want to use two different
fonts for Arabic and English
i want to use DIN Next LT for Arabic
and Arial, Helvetica, sans-serif for English
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以通过访问 i18next.resolvedLanguage https://www.i18next.com/overview 获取当前语言/api#resolvedlanguage
因此,根据该信息,您可以使用不同的字体。
You can get the current language by accessing i18next.resolvedLanguage https://www.i18next.com/overview/api#resolvedlanguage
So based on that information you can use a different font.
在 CSS 文件中添加一个新类。并根据所选语言有条件地呈现该类。使用动态样式。
Add a new class in the CSS file. and conditionaly render that class based on the language selected. Use Dynamic styling.