我有一些错误,当您查看此页面时 ,在您输入验证码的框中,它显示“缺少翻译”。 我环顾四周,注意到它可能与i18n或闪光有关,但我不确定,到目前为止我发现的两件事都没有效果。 谁能够引导我朝着正确的方向前进?
将以下内容添加到应用程序的翻译文件中(例如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)的更多信息:
直接在视图中设置属性:
<%= f.simple_captcha(:label => "", :placeholder => "Enter text", :refresh_button_text => "Refresh text") %>