From e58d85dd7589351955e220351bb68e777cfc0f88 Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Fri, 23 Oct 2009 16:00:24 -0700 Subject: [PATCH] More fixing of plurals. It definitely doesn't help that we have the same messages in both "setup" and "new". Should combine those really. --- notmuch.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) 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", -- 2.43.0