Merge branch 'ja/i18n-similar-messages'
Similar message templates have been consolidated so that translators need to work on fewer number of messages. * ja/i18n-similar-messages: i18n: turn even more messages into "cannot be used together" ones i18n: ref-filter: factorize "%(foo) atom used without %(bar) atom" i18n: factorize "--foo outside a repository" i18n: refactor "unrecognized %(foo) argument" strings i18n: factorize "no directory given for --foo" i18n: factorize "--foo requires --bar" and the like i18n: tag.c factorize i18n strings i18n: standardize "cannot open" and "cannot read" i18n: turn "options are incompatible" into "cannot be used together" i18n: refactor "%s, %s and %s are mutually exclusive" i18n: refactor "foo and bar are mutually exclusive"
This commit is contained in:
12
diff.c
12
diff.c
@ -4586,16 +4586,20 @@ void diff_setup_done(struct diff_options *options)
|
||||
options->set_default(options);
|
||||
|
||||
if (HAS_MULTI_BITS(options->output_format & check_mask))
|
||||
die(_("--name-only, --name-status, --check and -s are mutually exclusive"));
|
||||
die(_("options '%s', '%s', '%s', and '%s' cannot be used together"),
|
||||
"--name-only", "--name-status", "--check", "-s");
|
||||
|
||||
if (HAS_MULTI_BITS(options->pickaxe_opts & DIFF_PICKAXE_KINDS_MASK))
|
||||
die(_("-G, -S and --find-object are mutually exclusive"));
|
||||
die(_("options '%s', '%s', and '%s' cannot be used together"),
|
||||
"-G", "-S", "--find-object");
|
||||
|
||||
if (HAS_MULTI_BITS(options->pickaxe_opts & DIFF_PICKAXE_KINDS_G_REGEX_MASK))
|
||||
die(_("-G and --pickaxe-regex are mutually exclusive, use --pickaxe-regex with -S"));
|
||||
die(_("options '%s' and '%s' cannot be used together, use '%s' with '%s'"),
|
||||
"-G", "--pickaxe-regex", "--pickaxe-regex", "-S");
|
||||
|
||||
if (HAS_MULTI_BITS(options->pickaxe_opts & DIFF_PICKAXE_KINDS_ALL_OBJFIND_MASK))
|
||||
die(_("--pickaxe-all and --find-object are mutually exclusive, use --pickaxe-all with -G and -S"));
|
||||
die(_("options '%s' and '%s' cannot be used together, use '%s' with '%s' and '%s'"),
|
||||
"--pickaxe-all", "--find-object", "--pickaxe-all", "-G", "-S");
|
||||
|
||||
/*
|
||||
* Most of the time we can say "there are changes"
|
||||
|
Reference in New Issue
Block a user