Ticket #4865: i18n.greymatter.#4865.patch
| File i18n.greymatter.#4865.patch, 1.0 KB (added by , 18 years ago) |
|---|
-
greymatter.php
272 272 } 273 273 if ($numAddedComments > 0) { 274 274 echo ': '; 275 printf(__('imported %d comment(s)'), $numAddedComments); 275 $zero = __('no comments'); 276 $one = __('1 comment'); 277 $more = __('% comments'); 278 $strAddedComments = wp_counted_string($numAddedComments, $zero, $one, $more); 279 280 printf(__('imported %s'), $strAddedComments); 276 281 } 277 282 $preExisting = $numComments - numAddedComments; 278 283 if ($preExisting > 0) { 279 284 echo ' '; 280 printf(__('ignored %d pre-existing comments'), $preExisting); 285 $zero = __('no pre-existing comments'); 286 $one = __('1 pre-existing comment'); 287 $more = __('% pre-existing comments'); 288 $strPreExisting = wp_counted_string($preExisting, $zero, $one, $more); 289 printf(__('ignored %s'), $strPreExisting); 281 290 } 282 291 } 283 292 echo '... <strong>'.__('Done').'</strong></li>';