simple_captcha中的“翻译缺失”

问题描述 投票:3回答:2

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

ruby-on-rails-3.2 captcha
2个回答
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
投票

直接在视图中设置属性:

<%= f.simple_captcha(:label => "", :placeholder => "Enter text", :refresh_button_text => "Refresh text") %>
© www.soinside.com 2019 - 2024. All rights reserved.