Make WordPress Core


Ignore:
Timestamp:
12/21/2006 11:06:18 PM (18 years ago)
Author:
markjaquith
Message:

i18n fixes, logic cleanup, wording clarifications, and more from nbachiyski. fixes #3474

File:
1 edited

Legend:

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

    r4656 r4658  
    6868    endforeach;
    6969    echo '<div style="background-color: rgb(207, 235, 247);" id="message" class="updated fade"><p>';
    70     if ( !empty( $_POST['spam_button'] ) )
    71         printf(__('%s comments marked as spam.'), $i);
    72     else
    73         printf(__('%s comments deleted.'), $i);
     70    if ( !empty( $_POST['spam_button'] ) ) {
     71        printf(__ngettext('%s comment marked as spam', '%s comments marked as spam.', $i), $i);
     72    } else {
     73        printf(__ngettext('%s comment deleted.', '%s comments deleted.', $i), $i);
     74    }
    7475    echo '</p></div>';
    7576endif;
Note: See TracChangeset for help on using the changeset viewer.