summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVasco Almeida <vascomalmeida@sapo.pt>2016-04-08 20:02:39 +0000
committerJunio C Hamano <gitster@pobox.com>2016-04-08 15:15:54 -0700
commit71d99b81dad4eaf3b25bedd5790d68df509f2a45 (patch)
tree1878456f44d818f3b82d77f2d7fcd016508dc2f3
parent90f7b16b3adc78d4bbabbd426fb69aa78c714f71 (diff)
downloadgit-71d99b81dad4eaf3b25bedd5790d68df509f2a45.tar.gz
i18n: index-pack: use plural string instead of normal one
Git could output "completed with 1 local objects", but in this case using "object" instead of "objects" is the correct form. Use Q_() instead of _(). Signed-off-by: Vasco Almeida <vascomalmeida@sapo.pt> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r--builtin/index-pack.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/builtin/index-pack.c b/builtin/index-pack.c
index 45245199ae..ec6a530159 100644
--- a/builtin/index-pack.c
+++ b/builtin/index-pack.c
@@ -1250,7 +1250,9 @@ static void conclude_pack(int fix_thin_pack, const char *curr_pack, unsigned cha
nr_unresolved * sizeof(*objects));
f = sha1fd(output_fd, curr_pack);
fix_unresolved_deltas(f);
- strbuf_addf(&msg, _("completed with %d local objects"),
+ strbuf_addf(&msg, Q_("completed with %d local object",
+ "completed with %d local objects",
+ nr_objects - nr_objects_initial),
nr_objects - nr_objects_initial);
stop_progress_msg(&progress, msg.buf);
strbuf_release(&msg);