WordPress翻译.po文件

时间:2017-06-01 09:35:09

标签: wordpress translate

我在代码中翻译了一行,但仍有任何结果。

这一行我需要翻译

This row I need translate

这是我放入.po文件

This is I put into the .po file

你能告诉我我做错了吗?

我需要翻译此页面上的自定义按钮“Poptávka”usb-4-logo.com/en /

1 个答案:

答案 0 :(得分:0)

对于可翻译的字符串,您需要在字符串周围使用任何WordPress翻译函数:

例如:

<a href="#">This string</a> <-- this will not be translatable
<a href="#"><?php __e('This string','your-namespace'); ?></a> <-- this will be translatable.

您可以使用多种方法进行内容翻译:{{1​​}},__()和其他方法。请阅读有关翻译的文档中的更多内容:https://codex.wordpress.org/L10n