From: Carl Worth Date: Fri, 23 Oct 2009 23:00:24 +0000 (-0700) Subject: More fixing of plurals. X-Git-Tag: 0.1~740 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=e58d85dd7589351955e220351bb68e777cfc0f88;hp=6cccc10bf0207a6567332d83167fc73f38cc5e0d More fixing of plurals. It definitely doesn't help that we have the same messages in both "setup" and "new". Should combine those really. --- diff --git a/notmuch.c b/notmuch.c index 581cc4c0..e98b1439 100644 --- a/notmuch.c +++ b/notmuch.c @@ -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",