2013-03-31 61 views

回答

1

假設您指的是模型的錯誤消息,則可以使用activerecord.errors鍵將您的錯誤消息國際化到您的語言環境yaml文件中。例如:

en: 
    activerecord: 
    errors: 
     models: 
     user: 
      attributes: 
      name: 
       blank: can't be blank 
      email: 
       blank: can't be blank 
       invalid: is invalid 
      password: 
       too_short: is too short (minimum is 6 characters) 

有關國際化錯誤消息的更多詳細信息,請參見section 5.1.1 of the Rails i18n guide