simple_captcha中的“翻译缺失”

时间:2013-12-01 14:47:46

标签: ruby-on-rails-3.2 captcha

我遇到某种错误,当您查看this page时,在您输入验证码的框中,它会显示“转换缺失”。我环顾四周,注意到它可能与i18n或闪光有关,但我不确定,到目前为止我发现的两件事都没有效果。有人能引导我朝着正确的方向前进吗?

2 个答案:

答案 0 :(得分: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"

从这里的文档:

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

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

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

答案 1 :(得分:1)

直接在视图中设置属性:

<%= f.simple_captcha(:label => "", :placeholder => "Enter text", :refresh_button_text => "Refresh text") %>