HI my blog is
info-geek.com
and i use monochrome theme and i use wordpress 3.0.1 frensh my problem is when an article contain 1 comment the theme dislay "A comment" not "1Comment"
you can see this picture to understand me better :
HI my blog is
info-geek.com
and i use monochrome theme and i use wordpress 3.0.1 frensh my problem is when an article contain 1 comment the theme dislay "A comment" not "1Comment"
you can see this picture to understand me better :
You need to open index.php and look for something like
<?php comments_popup_link('Comment', 'A Comment', '% Comments'); ?>
and change 'A Comment' to '1 Comment' or whatever you want.
i find this code on index.php
<?php comments_popup_link(__('Write comment', 'monochrome'), __('1 comment', 'monochrome'), __('%s comments', 'monochrome')); ?>
Then it must be due to the translation.
I don't know how to change the translation but what you can do is replace
__('1 comment', 'monochrome')
with just
'1 commentaire'fixed !
thanks Joseph :)
This topic has been closed to new replies.