prestashop 1.7中表单字段中错误的翻译

时间:2017-11-12 10:29:01

标签: forms field translation prestashop-1.7

在哪里可以翻译在模板classic中抛出此表单字段的错误?我在翻译中搜索过,但没有显示。

enter image description here

2 个答案:

答案 0 :(得分:1)

你不能,这条消息是由浏览器设置的,而不是PrestaShop。更多信息,请https://webdesign.tutsplus.com/tutorials/html5-form-validation-with-the-pattern-attribute--cms-25145

答案 1 :(得分:0)

您可以通过将其添加到域代码中(在tpl中搜索代码)来实现所需的行为:

oninvalid="setCustomValidity('Here put your custom text!')" oninput="setCustomValidity('')"

因此,假设您有密码字段,您将看到类似这样的内容:

<input type="password" oninvalid="setCustomValidity('Here put your custom text!')" oninput="setCustomValidity('')" />