.po 为 wordpress 翻译问题?

.po translate issue for wordpress?

我正在使用 wordpress。我有一个 .po 文件。例如,我要翻译这一行。但是当我这样做时,没有任何变化。

<h3 class="title">Personal Details</h3>

--.po代码:

#: dosya/kullanici.php:16
msgid "Personal Details"
msgstr "Personel Detayları"

在 wp-config.php 中将 WPLANG 定义为您选择的语言。比如你想用french,那么你需要定义define('WPLANG','fr_FR');在 wp-config.php 文件中。同时将 .po 文件放在当前主题文件夹中。

要显示翻译文本,您必须替换:

个人资料

具有上述功能(另请参阅文档的link): esc_html_e( 字符串 $text, 字符串 $domain = 'default' )

https://developer.wordpress.org/reference/functions/esc_html_e/

例如你可以这样写:

您需要翻译功能,您需要主题的文本域。