如何在Poedit中设置gettext文本域?
我需要解析我的 php 文件,其中使用了多个文本域。我只想解析一个特定的域(其他域已经被翻译) 如何让 Poedit 做到这一点?
是否需要编译绑定到某个文本域的mo文件?如果是的话,如何在 Poedit 中做到这一点。
我使用的是 Windows,不想使用 Gettext 安装 Cigwin。
感谢您的任何帮助。
I need to parse my php files where is used several text-domains. I want to parse just one specific domain (others have been already translated) How to make Poedit to do that?
Is it required to compile mo file bounded to some text-domain? If it is, how to do it in Poedit.
I am using windows and do not want to install Cigwin with Gettext.
Thanks for any help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你不需要为 gettext 安装 Cygwin,因为 Windows 上已经可以使用 gettext: http: //gnuwin32.sourceforge.net/packages/gettext.htm
要收集翻译字符串,您需要创建 POT/PO 文件,而不是二进制 MO 文件。
通常这是通过 gettext 中的 xgettext 实用程序完成的。
You don't need install Cygwin for gettext, because there is ready to use gettext for windows: http://gnuwin32.sourceforge.net/packages/gettext.htm
To gather strings for translations you need to create POT/PO files, not binary MO files.
Usually this is done via xgettext utility from gettext.