Symfony ReCaptcha 多翻译
我使用 symfony 1.4.11 与主义。我使用 sfFormExtraPlugin 中的 ReCaptcha。我的网站有 3 种语言。俄语、乌克兰语和英语。在形式上我得到了当前的文化: 例如:
$this->widgetSchema['captcha'] = new sfWidgetFormReCaptcha(array(
'public_key' => sfConfig::get('app_recaptcha_public_key'),
'theme'=>sfConfig::get('app_recaptcha_theme'),
'culture'=>$this->options['culture'],
));
英语和俄语都可以。但 ReCaptcha 不支持乌克兰语。因此,当我制作 custom_translations 在所有文化中我都只有一种语言。有可能解决吗?
谢谢你!
I use symfony 1.4.11 with doctrine. And I use ReCaptcha from sfFormExtraPlugin. I have 3 language in my site. Russian, Ukrainian and English. In form I get current culture:
For example:
$this->widgetSchema['captcha'] = new sfWidgetFormReCaptcha(array(
'public_key' => sfConfig::get('app_recaptcha_public_key'),
'theme'=>sfConfig::get('app_recaptcha_theme'),
'culture'=>$this->options['culture'],
));
With English and Russian it is all ok. But ReCaptcha do not support Ukrainian. So when I make custom_translations I have one language in all cultures. Is it possible to solve it?
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用某种 switch/select 语法并使用与文化相匹配的翻译怎么样?
骨架代码:
类似的东西。您不必将所有翻译放在同一页面上,因为我假设您一次只会显示一种语言?
How about using some sort of switch / select syntax and use whichever translation that matches the culture?
Skeleton code:
Something like that. You don't have to put all the translations on the same page since I assume that you will only show one language at a time?