gpt4 book ai didi

jquery - 替换 i18next 中的变量

转载 作者:行者123 更新时间:2023-12-03 22:38:25 26 4
gpt4 key购买 nike

我已经实现了 i18next,在获得有关几个问题的帮助后,一切正常。我在理解支持网站上的部分文档时仍然遇到问题。

我正在尝试复制这部分(找到 here ):

// given resources
{
'en-US': { translation: { key: '__myVar__ are important' } }
};

i18n.t("key", { myVar: "variables" }); // -> variables are important

就我而言,这是 JSON 文件:

{
"app": {"name": "mytranslation" },
"back": "Back",
"cancel": "Cancel",
"closemenu": "Close Menu",
"closeoptions": "Close options",
"currency": "Currency symbol is __currencysymbol__",
"date": "Date",
"description": "Description"
}

和 HTML:

<body>
<div data-i18n="currency"></div>
<script src="javascript/i18next-1.7.3.min.js"></script>
<script language="javascript" type="text/javascript">
i18n.init({ preload: ['en', 'fr', 'ht', 'es', 'de', 'zh', 'vi', 'pt', 'it', 'th', 'dev'] });
i18n.init({ detectLngQS: 'lang' });
i18n.init(function(t) {
$("body").i18n();
var appName = t("app.name");
});
i18n.t("currency", { currencysymbol: "$" }); //where do I place this code???
</script>
</body>

注意:jQuery 2.1.1 和 jQuery Mobile 1.4.2 已加载到 header 中。

我确信我没有将各个部分放在它们应该去的地方,因为它不起作用(没有插入变量“currencysymbol”)。其余代码工作正常,因为我得到了所有翻译后的文本。

我真正想要实现的是能够创建作为翻译的一部分被调用的变量(货币符号、公司名称、公司地址等...... - 用于附属目的),并且能够替换那些在翻译文本中重复出现的值。

我希望将这些变量放在一处,这样它们很容易调整,并且不会受到语言环境变化的影响。

最佳答案

现在,默认情况下您不使用 __this__。您使用{{this}}

请参阅此示例:

{
"key": "{{what}} is {{how}}"
}

i18next.t('key', { what: 'i18next', how: 'great' });

https://www.i18next.com/translation-function/interpolation

插值的前缀/后缀可能会被覆盖。

i18next.init({
interpolation: {
prefix: "__",
suffix: "__"
}
});

关于jquery - 替换 i18next 中的变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24210780/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com