PHP gettext() 挪威语
我使用 PHP 的 gettext() 来简单地将网站转换为其他语言。到目前为止,该解决方案运行良好(英语/匈牙利语),因为我需要将挪威语翻译添加到新网站。
当我使用 setlocale(LC_ALL, "nb_NO.ISO8859-1");
设置挪威语言环境时,gettext()
仅返回基本字符串而不是翻译后的字符串。
这是否与我的操作系统安装的区域设置(en_US.UTF-8、hu_HU.UTF-8
)有关,因此我也需要添加挪威语或其他导致此问题的原因?
感谢您的帮助, 法布里克
I'm using PHP's gettext()
for simply transform a website to an other language. The solution worked fine (English/Hungarian) until now because i need to add a Norwegian translation to a new site.
When i set the Norwegian locale with setlocale(LC_ALL, "nb_NO.ISO8859-1");
gettext()
only returns the base string not the translated one.
Is this related with my operating systems' installed locales (en_US.UTF-8, hu_HU.UTF-8
) so i need to add the Norwegian one too or something else causing this?
Thanks for your help,
fabrik
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,IIRC,您需要在系统上设置区域设置才能使其正常工作。
Yes, IIRC, you need to have locale on the system to make it work.