php源代码到PO文件生成器
我必须将所有 echo/print 字符串从我的 php 源 代码文件转换为 PO 文件(用于语言翻译), 是否有任何批量convector可用于相同的。
I have to convert all my echo/print string from my php source code file to PO file(for the language translation),
is there any batch convector available for the same.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我是如何做到这一点的:
How I do this:
您需要 http://www.poedit.net/
You need http://www.poedit.net/
可悲的是,我认为这样的工具不存在。如果你找到一个,它的功能可能会受到限制,
这是由于 php 与 html 混合的能力。很难知道特定 gettext 文件中到底应该包含什么内容。
如果您只使用“echo”语句将内容发送到浏览器,并且从不混合 html 和 php,那么编写一个脚本来解析它就非常简单。
哈特哈,
-FT
Sadly, I do not think such a tool exists. If you find one it will likely be limited in functionality
This is due to ability of php to intermingle with html. It is hard to be able to know what exactly should be included in a particular gettext file.
If you only use "echo" statements to send content to the browser and you are never mixing html and php, then it is pretty simple to write up a script to parse that out.
HTH,
-FT
是的,我得到了答案。
有一种方法可以从文件夹的给定源文件中提取所有字符串。
您可以检查以下链接:
从源代码中提取字符串进行翻译(对于 po 文件)[链接现已失效]
Poedit:跨平台 PO 到 MO 转换器和 PO 文件编辑器[链接现已失效]
Yes I got the answer.
There is a method to extract all the string from a give source file for a folder.
Here is the link you can check:
Extract the strings from source code for Translation (for po file) [link now dead]
Poedit: A cross-platform PO to MO converter and PO file editor [link now dead]