Changeset 6430 for trunk/wp-admin/import/greymatter.php
- Timestamp:
- 12/20/2007 05:05:06 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/import/greymatter.php
r6125 r6430 273 273 if ($numAddedComments > 0) { 274 274 echo ': '; 275 printf(__('imported %d comment(s)'), $numAddedComments);275 printf(__('imported %s'), sprintf( __ngettext('%s comment', '%s comments', $numAddedComments) , $numAddedComments) ); 276 276 } 277 277 $preExisting = $numComments - numAddedComments; 278 278 if ($preExisting > 0) { 279 279 echo ' '; 280 printf(__('ignored % d pre-existing comments'), $preExisting);280 printf(__('ignored %s'), sprintf( __ngettext( '%s pre-existing comment', '%s pre-existing comments', $preExisting ) , $preExisting) ); 281 281 } 282 282 }
Note: See TracChangeset
for help on using the changeset viewer.