Skip to content

Commit d45cbe3

Browse files
ossilatorgitster
authored andcommitted
sequencer: actually translate report in do_exec()
N_() is meant to be used on strings that are subsequently _()'d, which isn't the case here. The affected construct is a bit questionable from an i18n perspective, as it pieces together a sentence from separate strings. However, it doesn't appear to be that bad, as the "assembly instructions" are in a translatable message as well. Lacking specific complaints from translators, it doesn't seem worth changing this. Signed-off-by: Oswald Buddenhagen <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 0d1bd1d commit d45cbe3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sequencer.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3625,7 +3625,7 @@ static int do_exec(struct repository *r, const char *command_line)
36253625
" git rebase --continue\n"
36263626
"\n"),
36273627
command_line,
3628-
dirty ? N_("and made changes to the index and/or the "
3628+
dirty ? _("and made changes to the index and/or the "
36293629
"working tree\n") : "");
36303630
if (status == 127)
36313631
/* command not found */

0 commit comments

Comments
 (0)