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/import/wordpress.php

    r6428 r6430  
    430430
    431431        if ( $num_comments )
    432             printf(' '.__('(%s comments)'), $num_comments);
     432            printf(' '.__ngettext('(%s comment)', '(%s comments)', $num_comments), $num_comments);
    433433
    434434        // Now for post meta
Note: See TracChangeset for help on using the changeset viewer.