mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 02:48:08 +01:00
More fixing of plurals.
It definitely doesn't help that we have the same messages in both "setup" and "new". Should combine those really.
This commit is contained in:
parent
6cccc10bf0
commit
e58d85dd75
1 changed files with 6 additions and 2 deletions
|
@ -439,7 +439,9 @@ setup_command (int argc, char *argv[])
|
|||
gettimeofday (&tv_now, NULL);
|
||||
elapsed = tv_elapsed (add_files_state.tv_start,
|
||||
tv_now);
|
||||
printf ("Processed %d total files in ", add_files_state.processed_files);
|
||||
printf ("Processed %d %s in ", add_files_state.processed_files,
|
||||
add_files_state.processed_files == 1 ?
|
||||
"file" : "total files");
|
||||
print_formatted_seconds (elapsed);
|
||||
if (elapsed > 1) {
|
||||
printf (" (%d files/sec.). \n",
|
||||
|
@ -501,7 +503,9 @@ new_command (int argc, char *argv[])
|
|||
elapsed = tv_elapsed (add_files_state.tv_start,
|
||||
tv_now);
|
||||
if (add_files_state.processed_files) {
|
||||
printf ("Processed %d total files in ", add_files_state.processed_files);
|
||||
printf ("Processed %d %s in ", add_files_state.processed_files,
|
||||
add_files_state.processed_files == 1 ?
|
||||
"file" : "total files");
|
||||
print_formatted_seconds (elapsed);
|
||||
if (elapsed > 1) {
|
||||
printf (" (%d files/sec.). \n",
|
||||
|
|
Loading…
Reference in a new issue