simple_captcha中的"翻译缺失"

har*_*ill 3 captcha ruby-on-rails-3.2

我有一些错误,当您查看此页面时,在您输入验证码的框中,它显示"缺少翻译".我环顾四周,注意到它可能与i18n或闪光有关,但我不确定,到目前为止我发现的两件事都没有效果.谁能够引导我朝着正确的方向前进?

Max*_*ord 7

将以下内容添加到应用程序的翻译文件中(例如myapp/config/locales/en.yml):

en:
  simple_captcha:
    placeholder: "Enter the image value"
    label: "Enter the code in the box:"
    message:
      default: "Secret Code did not match with the Image"
      user: "The secret Image and code were different"
Run Code Online (Sandbox Code Playgroud)

从这里的文档:

https://github.com/pludoni/simple-captcha#i18n

有关rails国际化(i18n)的更多信息:

http://guides.rubyonrails.org/i18n.html