我没有设法从简单表单更改默认错误消息,我尝试编辑简单表单语言环境文件,但它似乎被忽略了
这是我的语言环境文件:
#config/locales/simple_form.en.yml
en:
simple_form:
error_notification:
default_message: "A custom message:"
但我仍然收到“请查看以下问题:”
有人知道我在做什么错吗?
我没有设法从简单表单更改默认错误消息,我尝试编辑简单表单语言环境文件,但它似乎被忽略了
这是我的语言环境文件:
#config/locales/simple_form.en.yml
en:
simple_form:
error_notification:
default_message: "A custom message:"
但我仍然收到“请查看以下问题:”
有人知道我在做什么错吗?
改变你:default_message
的:your_model_name
正如您在源代码中看到的,error_notification
方法用于translate_error_notification
从 YAML 文件中获取翻译。
def translate_error_notification
lookups = []
lookups << :"#{object_name}"
lookups << :default_message
lookups << "Please review the problems below:"
I18n.t(lookups.shift, scope: :"simple_form.error_notification", default: lookups)
end
对于user
模型lookups
包含:
lookups == [:user, :default_messge, "Please review the problems below:]
每个对象的翻译可能不同,因此调用此事务:
#config/locales/simple_form.en.yml
en:
simple_form:
error_notification:
user: "A custom message:"
投票是否有帮助;)