mirror of
https://github.com/git/git.git
synced 2024-11-24 18:33:43 +08:00
Merge branch 'ja/i18n-fix-for-2.36'
Fixes to some localizable strings. * ja/i18n-fix-for-2.36: i18n: fix some badly formatted i18n strings
This commit is contained in:
commit
33159949d2
@ -3082,7 +3082,7 @@ static int module_create_branch(int argc, const char **argv, const char *prefix)
|
||||
OPT_END()
|
||||
};
|
||||
const char *const usage[] = {
|
||||
N_("git submodule--helper create-branch [-f|--force] [--create-reflog] [-q|--quiet] [-t|--track] [-n|--dry-run] <name> <start_oid> <start_name>"),
|
||||
N_("git submodule--helper create-branch [-f|--force] [--create-reflog] [-q|--quiet] [-t|--track] [-n|--dry-run] <name> <start-oid> <start-name>"),
|
||||
NULL
|
||||
};
|
||||
|
||||
|
@ -2096,10 +2096,9 @@ sub validate_patch {
|
||||
chdir($cwd_save) or die("chdir: $!");
|
||||
}
|
||||
if ($hook_error) {
|
||||
$hook_error = sprintf(__("fatal: %s: rejected by %s hook\n" .
|
||||
$hook_error . "\n" .
|
||||
"warning: no patches were sent\n"),
|
||||
$fn, $hook_name);
|
||||
$hook_error = sprintf(
|
||||
__("fatal: %s: rejected by %s hook\n%s\nwarning: no patches were sent\n"),
|
||||
$fn, $hook_name, $hook_error);
|
||||
die $hook_error;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user