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:
@ -1227,7 +1227,7 @@ int cmd_fast_export(int argc, const char **argv, const char *prefix)
|
||||
usage_with_options (fast_export_usage, options);
|
||||
|
||||
if (anonymized_seeds.cmpfn && !anonymize)
|
||||
die(_("--anonymize-map without --anonymize does not make sense"));
|
||||
die(_("the option '%s' requires '%s'"), "--anonymize-map", "--anonymize");
|
||||
|
||||
if (refspecs_list.nr) {
|
||||
int i;
|
||||
@ -1242,7 +1242,7 @@ int cmd_fast_export(int argc, const char **argv, const char *prefix)
|
||||
printf("feature done\n");
|
||||
|
||||
if (import_filename && import_filename_if_exists)
|
||||
die(_("Cannot pass both --import-marks and --import-marks-if-exists"));
|
||||
die(_("options '%s' and '%s' cannot be used together"), "--import-marks", "--import-marks-if-exists");
|
||||
if (import_filename)
|
||||
import_marks(import_filename, 0);
|
||||
else if (import_filename_if_exists)
|
||||
|
Reference in New Issue
Block a user