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/moderation.php

    r6298 r6430  
    8383
    8484        if ( $approved > 0 ) {
    85             printf( __ngettext( '%s comment approved.', '%s comments approved.', $approved ), $approved );
     85            printf( __ngettext( '%s comment approved', '%s comments approved', $approved ), $approved );
    8686            echo '<br />';
    8787        }
    8888
    8989        if ( $deleted > 0 ) {
    90             printf( __ngettext( '%s comment deleted', '%s comments deleted.', $deleted ), $deleted );
     90            printf( __ngettext( '%s comment deleted', '%s comments deleted', $deleted ), $deleted );
    9191            echo '<br />';
    9292        }
Note: See TracChangeset for help on using the changeset viewer.