Merge branch 'nd/i18n'
Many more strings are prepared for l10n. * nd/i18n: (23 commits) transport-helper.c: mark more strings for translation transport.c: mark more strings for translation sha1-file.c: mark more strings for translation sequencer.c: mark more strings for translation replace-object.c: mark more strings for translation refspec.c: mark more strings for translation refs.c: mark more strings for translation pkt-line.c: mark more strings for translation object.c: mark more strings for translation exec-cmd.c: mark more strings for translation environment.c: mark more strings for translation dir.c: mark more strings for translation convert.c: mark more strings for translation connect.c: mark more strings for translation config.c: mark more strings for translation commit-graph.c: mark more strings for translation builtin/replace.c: mark more strings for translation builtin/pack-objects.c: mark more strings for translation builtin/grep.c: mark strings for translation builtin/config.c: mark more strings for translation ...
This commit is contained in:
@ -489,7 +489,7 @@ static int grep_cache(struct grep_opt *opt, struct repository *repo,
|
||||
}
|
||||
|
||||
if (repo_read_index(repo) < 0)
|
||||
die("index file corrupt");
|
||||
die(_("index file corrupt"));
|
||||
|
||||
for (nr = 0; nr < repo->index->cache_nr; nr++) {
|
||||
const struct cache_entry *ce = repo->index->cache[nr];
|
||||
@ -963,7 +963,7 @@ int cmd_grep(int argc, const char **argv, const char *prefix)
|
||||
}
|
||||
|
||||
if (!opt.pattern_list)
|
||||
die(_("no pattern given."));
|
||||
die(_("no pattern given"));
|
||||
|
||||
/* --only-matching has no effect with --invert. */
|
||||
if (opt.invert)
|
||||
@ -1093,19 +1093,19 @@ int cmd_grep(int argc, const char **argv, const char *prefix)
|
||||
}
|
||||
|
||||
if (recurse_submodules && (!use_index || untracked))
|
||||
die(_("option not supported with --recurse-submodules."));
|
||||
die(_("option not supported with --recurse-submodules"));
|
||||
|
||||
if (!show_in_pager && !opt.status_only)
|
||||
setup_pager();
|
||||
|
||||
if (!use_index && (untracked || cached))
|
||||
die(_("--cached or --untracked cannot be used with --no-index."));
|
||||
die(_("--cached or --untracked cannot be used with --no-index"));
|
||||
|
||||
if (!use_index || untracked) {
|
||||
int use_exclude = (opt_exclude < 0) ? use_index : !!opt_exclude;
|
||||
hit = grep_directory(&opt, &pathspec, use_exclude, use_index);
|
||||
} else if (0 <= opt_exclude) {
|
||||
die(_("--[no-]exclude-standard cannot be used for tracked contents."));
|
||||
die(_("--[no-]exclude-standard cannot be used for tracked contents"));
|
||||
} else if (!list.nr) {
|
||||
if (!cached)
|
||||
setup_work_tree();
|
||||
@ -1113,7 +1113,7 @@ int cmd_grep(int argc, const char **argv, const char *prefix)
|
||||
hit = grep_cache(&opt, the_repository, &pathspec, cached);
|
||||
} else {
|
||||
if (cached)
|
||||
die(_("both --cached and trees are given."));
|
||||
die(_("both --cached and trees are given"));
|
||||
|
||||
hit = grep_objects(&opt, &pathspec, &list);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user