如何将 Gettext 库与 Codeigniter for i18n 结合使用?
我终于开发了我的第一个多语言网站,该网站来自一个旧的非 CI 网站,该网站使用 Gettext,因为有很多文本而不仅仅是操作。我真的很难让 gettext 库与 CI 一起使用,阅读了 WIKI< /a> (第一个选项)但我缺乏信息和示例。
- 这里有人用过吗 gettext 库成功了吗?
- 你能发布一些控制器的例子吗 和意见?
提前致谢!
I’m finally developing my first multilingual site which came from an old no-CI site which used Gettext cause there’s a lot of text and not just actions. I’m really struggling to make the gettext library to work with CI, having read the WIKI (first option) but I lacks information and examples.
- Is there someone here who has used
the gettext library succesfully? - Can you post some examples of controller
and views?
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议不要为此使用 CI 的语言库。使用 Poedit 或其他
gettext()
/ngettext()
替换程序。相信我——您会希望所有外部化字符串都采用编译格式。从头开始做这件事的工作量远远超过其价值。
I'd recommend NOT using CI's language libraries for this. Use Poedit or another
gettext()
/ngettext()
replacement program.Trust me--you'll want all your externalized strings in a compiled format. Doing this from scratch is far more work than it's worth.