web-dev-qa-db-fra.com

Comment puis-je préparer la traduction "Leave a comment"?

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

3
Pierre Hansen

Qu'en est-il de cette façon?

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

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'))); ?>
2
Mostafa Soufi