Skip to content

Commit 62bf7a5

Browse files
remote: use plural-only message for diverged branch status
Drop Q_() singular form and use _() with the plural string only. Signed-off-by: Harald Nordgren <haraldnordgren@gmail.com>
1 parent dc6ecd5 commit 62bf7a5

1 file changed

Lines changed: 2 additions & 7 deletions

File tree

remote.c

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2307,13 +2307,8 @@ static void format_branch_comparison(struct strbuf *sb,
23072307
_(" (use \"git pull\" to update your local branch)\n"));
23082308
} else {
23092309
strbuf_addf(sb,
2310-
Q_("Your branch and '%s' have diverged,\n"
2311-
"and have %d and %d different commit each, "
2312-
"respectively.\n",
2313-
"Your branch and '%s' have diverged,\n"
2314-
"and have %d and %d different commits each, "
2315-
"respectively.\n",
2316-
ours + theirs),
2310+
_("Your branch and '%s' have diverged,\n"
2311+
"and have %d and %d different commits each, respectively.\n"),
23172312
branch_name, ours, theirs);
23182313
if (use_divergence_advice && advice_enabled(ADVICE_STATUS_HINTS))
23192314
strbuf_addstr(sb,

0 commit comments

Comments
 (0)