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

    r6125 r6430  
    142142            if ( $num_comments ) {
    143143                echo ' ';
    144                 printf(__('(%s comments)'), $num_comments);
     144                printf( __ngettext('%s comment', '%s comments', $num_comments), $num_comments );
    145145            }
    146146            echo '</li>';
Note: See TracChangeset for help on using the changeset viewer.