我怎样才能准备好“留下评论”的翻译?

时间:2017-08-30 作者:Pierre Hansen

我无法准备好这行代码翻译。

<?php 
  comment_form(array (\'title_reply\' => \'Leave a comment\')); 
?>
非常感谢!祝你一切顺利,皮埃尔

2 个回复
SO网友:Anton Lukin

这样怎么样?

<?php 
  comment_form(array (\'title_reply\' => __(\'Leave a Reply\'))); 
?>

SO网友:Mostafa Soufi

应将其置于翻译功能。

<?php comment_form(array (\'title_reply\' => __(\'Leave a comment\', \'mytextdomain\'))); ?>
或使用WordPress翻译:

<?php comment_form(array (\'title_reply\' => __(\'Leave a comment\'))); ?>

结束

相关推荐

Custom metabox translation

我已经创建了一个自定义的帖子类型,并添加了一些自定义的元数据库,现在我想知道我在我的网站上使用了什么样的翻译插件?我对它们都没有经验,所以我不知道谁会支持我的自定义元数据库,谁不会。