-
Notifications
You must be signed in to change notification settings - Fork 0
i18n
YanQS edited this page Dec 13, 2025
·
1 revision
- 使用 WordPress i18n 工具或简单的脚本查找
__(),_e(),_x()等函数调用并提取msgid。
- .po 文件位于
languages/。更新languages/wp-comment-notify-en_US.po后,可用 Poedit 编辑或手动修改。
- 使用
msgfmt(gettext 工具链):
msgfmt -o languages/wp-comment-notify-en_US.mo languages/wp-comment-notify-en_US.po
或使用 WP-CLI 的 i18n 命令(若可用)。
注意事项
- 保持占位符(如
%s、%d)与原文一致。 - 更新
.pot(如果你维护 POT),并把.po同步到翻译平台或提交 PR。