6

我没有设法从简单表单更改默认错误消息,我尝试编辑简单表单语言环境文件,但它似乎被忽略了

这是我的语言环境文件:

#config/locales/simple_form.en.yml
en:
  simple_form:
    error_notification:
      default_message: "A custom message:"

但我仍然收到“请查看以下问题:”

有人知道我在做什么错吗?

4

1 回答 1

1

改变你: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:"

投票是否有帮助;)

于 2014-06-09T23:43:55.303 回答