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

Translation of errors in form fields in prestashop 1.7

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

不可以,这个消息是浏览器设置的,不是PrestaShop。此处有更多信息 https://webdesign.tutsplus.com/tutorials/html5-form-validation-with-the-pattern-attribute--cms-25145

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

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

假设你有密码字段,你将有这样的东西:

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