Changeset 7397 for trunk/wp-admin/import/greymatter.php
- Timestamp:
- 03/19/2008 04:00:09 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/import/greymatter.php
r7072 r7397 270 270 if ($numAddedComments > 0) { 271 271 echo ': '; 272 printf( __('imported %s'), sprintf( __ngettext('%s comment', '%s comments', $numAddedComments) , $numAddedComments));272 printf( __ngettext('imported %s comment', 'imported %s comments', $numAddedComments) , $numAddedComments); 273 273 } 274 274 $preExisting = $numComments - numAddedComments; 275 275 if ($preExisting > 0) { 276 276 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); 278 278 } 279 279 }
Note: See TracChangeset
for help on using the changeset viewer.