查找/检测/格式化周围文件中使用的 GetText 字符串
实际上有两个问题:
- 是否有一种方法可以以编程方式递归地获取当前目录和所有子目录中的所有 GetText 字符串(可能使用 exec 或某些)?
- 在我通过
xgettext
中的文件后,我收到了警告,例如... 国际化消息不应包含 `\r
那么如何强制 xgettext 在找到字符串时自动删除 \n、\r、\t 等以避免提到的错误,以便 .PO 文件格式友好?
感谢您提供链接和建议:)
Actually there are two questions:
- is there a way to recursively pick up all GetText strings in current directory and all child dirs programmatically (using
exec
maybe or some)? - after i passed through the files within
xgettext
i got warning such as ...
internationalized messages should not contain the `\r
So how to force xgettext to delete \n, \r, \t etc. automatically when string is found to avoid mentioned error so .PO file would be friendly formatted?
Thanks for coming links and advices :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
关闭。我看到的唯一方法 - 从 PHP 调用 xgettext 作为:
passthru('xgettext -n *.php', $result);
使用参数:
Closed. Only way i see - invoke xgettext from PHP as :
passthru('xgettext -n *.php', $result);
With params :