Je ne peux pas obtenir cette ligne de traduction de code prête.
<?php
comment_form(array ('title_reply' => 'Leave a comment'));
?>
Merci beaucoup! Meilleurs voeux, Pierre
Qu'en est-il de cette façon?
<?php
comment_form(array ('title_reply' => __('Leave a Reply')));
?>
Devrait être mis à la fonction de traduction.
<?php comment_form(array ('title_reply' => __('Leave a comment', 'mytextdomain'))); ?>
Ou utilisez la traduction WordPress:
<?php comment_form(array ('title_reply' => __('Leave a comment'))); ?>