• I think in line 24 it should be
    comments_number(__('Comments'), __('1 Comment'), __('% Comments'));
    instead of
    comments_number(__("Comments"));
    as this function prepends the string with the number of comments.
    When using l10n I ended up with a translated “Kommentare” in case there are no comments and English “1 Comment” or “2 Comments” with comments.

Viewing 1 replies (of 1 total)
  • Thread Starter bronski

    (@bronski)

    This is only beautification, but anyway…
    Another one in index.php, line 40, there is
    edit_post_link();
    Following a similar occurance in wp-comments.php I changed it to
    edit_post_link(__("Edit This"), ' |');
    Vice versa comment_author_link() (line 39 in wp-comments.php is wrapped in <cite>...</cite> when in index.php the_author() is wrapped in <div class="meta">...</div> – beautification again.

Viewing 1 replies (of 1 total)

The topic ‘functions in wp-comments.php’ is closed to new replies.