Skip to content

Commit f68f180

Browse files
avargitster
authored andcommitted
i18n: mark merge CHERRY_PICK_HEAD messages for translation
Mark CHERRY_PICK_HEAD related messages in builtin/merge.c that were added in v1.7.5-rc0~88^2~2 (Introduce CHERRY_PICK_HEAD) by Jay Soffian for translation. Signed-off-by: Ævar Arnfjörð Bjarmason <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent c7f426d commit f68f180

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

builtin/merge.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1043,10 +1043,10 @@ int cmd_merge(int argc, const char **argv, const char *prefix)
10431043
}
10441044
if (file_exists(git_path("CHERRY_PICK_HEAD"))) {
10451045
if (advice_resolve_conflict)
1046-
die("You have not concluded your cherry-pick (CHERRY_PICK_HEAD exists).\n"
1047-
"Please, commit your changes before you can merge.");
1046+
die(_("You have not concluded your cherry-pick (CHERRY_PICK_HEAD exists).\n"
1047+
"Please, commit your changes before you can merge."));
10481048
else
1049-
die("You have not concluded your cherry-pick (CHERRY_PICK_HEAD exists).");
1049+
die(_("You have not concluded your cherry-pick (CHERRY_PICK_HEAD exists)."));
10501050
}
10511051
resolve_undo_clear();
10521052

0 commit comments

Comments
 (0)