Zend Translate 是否自动检测语言?
这是我的代码,
$locale = new Zend_Locale('en_US');
Zend_Registry::set('Zend_Locale', $locale);
$GLOBALS['translate'] = new Zend_Translate(
array(
'adapter' => 'array',
'content' => array('Hello' => 'Hi'),
'locale' => 'en_US'
)
);
gb('translate')->addTranslation(
array(
'content' => array('Hello' => 'Xin chào'),
'locale' => 'vi'
)
);
gb('translate')->_('Hello'); //always print Xin chào
即使我使用网络代理(来自美国)来请求页面,它也总是打印“Xin chào”。
This is my code
$locale = new Zend_Locale('en_US');
Zend_Registry::set('Zend_Locale', $locale);
$GLOBALS['translate'] = new Zend_Translate(
array(
'adapter' => 'array',
'content' => array('Hello' => 'Hi'),
'locale' => 'en_US'
)
);
gb('translate')->addTranslation(
array(
'content' => array('Hello' => 'Xin chào'),
'locale' => 'vi'
)
);
gb('translate')->_('Hello'); //always print Xin chào
It's always print 'Xin chào' even I use web proxy (from US) to request page.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Zend_Translate
是区域设置感知的,这意味着它将使用存储在Zend_Registry
中的Zend_Locale
实例:如果您不知道使用
Zend_Registry
,它将尝试从用户的 Web 浏览器(如果可用)获取语言环境、来自主机服务器环境的信息以及 Zend Framework 设置。为了防止这种情况,您必须显式设置区域设置:请参阅自动处理一章
Zend_Translate
参考指南中的语言Zend_Translate
is locale aware, which means it will use theZend_Locale
instance stored in theZend_Registry
:If you are not using the
Zend_Registry
, it will try to get the locale from the user's web browser (if available), information from the environment of the host server, and Zend Framework settings. To prevent this, you have to set the locale explicitly:See the chapter Automatic Handling of Languages in the reference guide for
Zend_Translate