mirror of
https://github.com/git/git.git
synced 2025-03-25 04:31:38 +00:00
merge: mark usage error strings for translation
The nearby error messages are already marked for translation, but these new ones aren't. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
042e290da6
commit
c7d227df5b
@ -1164,7 +1164,7 @@ int cmd_merge(int argc, const char **argv, const char *prefix)
|
||||
const char *nargv[] = {"reset", "--merge", NULL};
|
||||
|
||||
if (orig_argc != 2)
|
||||
usage_msg_opt("--abort expects no arguments",
|
||||
usage_msg_opt(_("--abort expects no arguments"),
|
||||
builtin_merge_usage, builtin_merge_options);
|
||||
|
||||
if (!file_exists(git_path_merge_head()))
|
||||
@ -1180,7 +1180,7 @@ int cmd_merge(int argc, const char **argv, const char *prefix)
|
||||
const char *nargv[] = {"commit", NULL};
|
||||
|
||||
if (orig_argc != 2)
|
||||
usage_msg_opt("--continue expects no arguments",
|
||||
usage_msg_opt(_("--continue expects no arguments"),
|
||||
builtin_merge_usage, builtin_merge_options);
|
||||
|
||||
if (!file_exists(git_path_merge_head()))
|
||||
|
Loading…
x
Reference in New Issue
Block a user