如何使用i18next为不同的语言设置不同的字体?

发布于 2025-01-12 10:41:19 字数 188 浏览 0 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

べ繥欢鉨o。 2025-01-19 10:41:20

您可以通过访问 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.

剩一世无双 2025-01-19 10:41:20

在 CSS 文件中添加一个新类。并根据所选语言有条件地呈现该类。使用动态样式。

const { t, i18n } = useTranslation();
<div classname={i18n.language === 'en' ?  'english-class': 'other-language'}></div>

Add a new class in the CSS file. and conditionaly render that class based on the language selected. Use Dynamic styling.

const { t, i18n } = useTranslation();
<div classname={i18n.language === 'en' ?  'english-class': 'other-language'}></div>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文