Make WordPress Core


Ignore:
Timestamp:
03/19/2008 04:00:09 PM (17 years ago)
Author:
ryan
Message:

ngettext fixes from nbachiyski. fixes #6261

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/import/greymatter.php

    r7072 r7397  
    270270                if ($numAddedComments > 0) {
    271271                    echo ': ';
    272                 printf(__('imported %s'), sprintf( __ngettext('%s comment', '%s comments', $numAddedComments) , $numAddedComments) );
     272                printf( __ngettext('imported %s comment', 'imported %s comments', $numAddedComments) , $numAddedComments);
    273273                }
    274274                $preExisting = $numComments - numAddedComments;
    275275                if ($preExisting > 0) {
    276276                    echo ' ';
    277                     printf(__('ignored %s'), sprintf( __ngettext( '%s pre-existing comment', '%s pre-existing comments', $preExisting ) , $preExisting) );
     277                    printf( __ngettext( 'ignored %s pre-existing comment', 'ignored %s pre-existing comments', $preExisting ) , $preExisting);
    278278                }
    279279            }
Note: See TracChangeset for help on using the changeset viewer.