Skip to content

Commit

Permalink
merge-recursive: separate message for common ancestors
Browse files Browse the repository at this point in the history
The function "merge_recursive" prints the count of common ancestors
as "found %u common ancestor(s):".  We should use a singular and a
plural form of this message to help translators.

Signed-off-by: Ralf Thielow <ralf.thielow@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Ralf Thielow authored and Junio C Hamano committed Aug 5, 2012
1 parent 9a7365c commit e0453cd
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion merge-recursive.c
Original file line number Diff line number Diff line change
Expand Up @@ -1915,7 +1915,10 @@ int merge_recursive(struct merge_options *o,
}

if (show(o, 5)) {
output(o, 5, _("found %u common ancestor(s):"), commit_list_count(ca));
unsigned cnt = commit_list_count(ca);

output(o, 5, Q_("found %u common ancestor:",
"found %u common ancestors:", cnt), cnt);
for (iter = ca; iter; iter = iter->next)
output_commit_title(o, iter->item);
}
Expand Down

0 comments on commit e0453cd

Please sign in to comment.