查找 .ctp 文件中所有未翻译的单词并将其替换为 .po 文件中相应的 msgid
我有一个像这样的 .po 文件:
msgid "Edit"
msgstr "تعديل"
msgid "Delete"
msgstr "حذف"
msgid "Are you sure you want to delete # %s?"
msgstr "هل تريد بالتأكيد حذف رقم # %s?"
我的 .tpl 文件是这样的:
<a href='#'><?php __('تعديل');?></a>
<a href='#'><?php __('حذف');?></a>
是否有蛋糕烘焙命令或任何 php 脚本可以帮助我查找 .ctp 文件中所有未翻译的单词并将其替换为其相应的 msgid .po 文件?
I have a .po file like this:
msgid "Edit"
msgstr "تعديل"
msgid "Delete"
msgstr "حذف"
msgid "Are you sure you want to delete # %s?"
msgstr "هل تريد بالتأكيد حذف رقم # %s?"
and my .tpl files are like this:
<a href='#'><?php __('تعديل');?></a>
<a href='#'><?php __('حذف');?></a>
is there any cake bake command, or any php script, can help me finding and replacing all none translated words in .ctp files with their corresponding msgid from the .po file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我所知,作为蛋糕的一部分,没有自动脚本,但我猜你可以使用自定义 PHP 脚本和“sed”来做一些事情。
There is no automated script for that as part of cake that I am aware of, but you could do something with a custom PHP script and 'sed' I would guess.