Make WordPress Core


Ignore:
Timestamp:
12/20/2007 05:05:06 PM (17 years ago)
Author:
ryan
Message:

Use ngettext() for plurals. Props darkdragon. see #4865

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/edit-comments.php

    r6277 r6430  
    6969    echo '<div style="background-color: rgb(207, 235, 247);" id="message" class="updated fade"><p>';
    7070    if ( !empty( $_POST['spam_button'] ) ) {
    71         printf(__ngettext('%s comment marked as spam', '%s comments marked as spam.', $i), $i);
     71        printf(__ngettext('%s comment marked as spam.', '%s comments marked as spam.', $i), $i);
    7272    } else {
    7373        printf(__ngettext('%s comment deleted.', '%s comments deleted.', $i), $i);
Note: See TracChangeset for help on using the changeset viewer.