查找 .ctp 文件中所有未翻译的单词并将其替换为 .po 文件中相应的 msgid

发布于 2024-11-07 11:53:10 字数 427 浏览 5 评论 0原文

我有一个像这样的 .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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

蓝咒 2024-11-14 11:53:10

据我所知,作为蛋糕的一部分,没有自动脚本,但我猜你可以使用自定义 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文