PoEdit 无法识别 php dgettext 函数
如何配置 PoEdit 来识别 PHP dgettext 函数?
请注意,我了解“配置->关键字”部分,但我该如何指示翻译位于函数的第二个参数中?
有人用 dgettext 进行 poEdit 工作吗?
How can I configure PoEdit to recognize PHP dgettext function ?
Note that I know about the Configure->Keywords part, but how am I suppose to indicate that the translation is in the second parameter of the function ?
Anyone got poEdit work with dgettext ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用:2 xgettext选项,所以PoEdit中必须添加的关键字是:
dgettext:2
:2 指定读取第二个参数。
如果我需要阅读第二个和第三个,那就是: :2,3
请注意,我还有另一个错误,默认情况下,xgettext(和 poEdit)支持 dgettext,因为它是标准 C/C++ gettext 函数。
希望这会有所帮助
Using the :2 xgettext option, so the keyword that must be added in PoEdit is:
dgettext:2
the :2 specify to read the 2nd parameter.
If I would need to read the 2nd and 3rd, it would be: :2,3
Note that I had another bug, by default, dgettext is supported by xgettext (and poEdit) as it's a standard C/C++ gettext function.
Hope this will help