【发布时间】:2016-12-13 17:17:30
【问题描述】:
在我的 KnockoutJS 文件中,我有:
<a href="/policies/shipping-policy" target="_blank" data-bind="i18n: 'Shipping Policy'"></a>
我想做的是翻译这个块:
<span>
By clicking submit order you agree to our <a href="/policies/terms-and-conditions/" target="_blank">Terms and Conditions</a>
and to receive promotional emails from the Site You can
subsequently opt out of receiving such
promotional e-mails by clicking on the link at the bottom of any promotional email</span>
我已经尝试过这样做:
<span data-bind="i18n: 'By clicking submit order you agree to our <a href="/policies/terms-and-conditions/" target="_blank">Terms and Conditions</a> and to receive promotional emails from the Site You can subsequently opt out of receiving such promotional e-mails by clicking on the link at the bottom of any promotional email'"></span>
但它不起作用 - 我希望能够在该绑定中添加 href 和其他可能的信息。
【问题讨论】:
-
你使用什么 i18n 绑定处理程序?
-
Magento 2 - 不确定
-
这不能回答问题。
i18n不是内置的绑定处理程序,所以首先要做的是找出这里使用的是哪个自定义绑定处理程序以及它是如何工作的,我会说。
标签: knockout.js magento2