Skip to content

Commit 650ed9d

Browse files
avargitster
authored andcommitted
i18n: mark merge "Could not read from" message for translation
Mark the "Could not read from '%s'" message that was added to builtin/merge.c in v1.7.4.2~25^2 (merge: honor prepare-commit-msg hook) by Jay Soffian for translation. Signed-off-by: Ævar Arnfjörð Bjarmason <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent ff46a49 commit 650ed9d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

builtin/merge.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -822,7 +822,7 @@ static void read_merge_msg(void)
822822
{
823823
strbuf_reset(&merge_msg);
824824
if (strbuf_read_file(&merge_msg, git_path("MERGE_MSG"), 0) < 0)
825-
die_errno("Could not read from '%s'", git_path("MERGE_MSG"));
825+
die_errno(_("Could not read from '%s'"), git_path("MERGE_MSG"));
826826
}
827827

828828
static void run_prepare_commit_msg(void)

0 commit comments

Comments
 (0)