从 .po 或 .mo 文件获取翻译
如何从 .po 或 .mo 文件中提取所有翻译? 我需要创建一个包含内部所有翻译的数组。
How can I extract all translations from a .po or .mo file?
I need to create an array of all translations that are inside.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
您可以使用 Zend Framework 中的 Zend Translate 模块。
或者你可以使用 php gettext 模块,但 Zend 更方便。
You can use Zend Translate module from Zend Framework.
or you can use php gettext module, but Zend is much more handy.
msgunfmt 是一个unix 工具,可以读取.mo 文件并生成.po 文件。
msgunfmt is a unix tool that reads .mo files and produces a .po file.
我使用 po2csv 来转换 po,然后使用
fgetcsv()
函数将 csv 读入 php。I used po2csv to convert the po, then read the csv into php using the
fgetcsv()
function.PhpWiki 1.2 中有一个小的提取 AWK 脚本,称为 translate.sh。使用它(在 Linux 上)。
它会 grep 所有 .po 文件并生成 .php array() 脚本。
There is a small extraction AWK script in PhpWiki 1.2, called translate.sh. Use that (on Linux).
It greps all .po files and generates a .php array() script.
您可以使用PEAR File_Gettext。代码将是:
You can use PEAR File_Gettext. The code would then be: