Browse Source

i18n: standardise messages

Standardise messages in order to save translators some work.

Nuances fixed in this commit:
"failed to read %s"
"read of %s failed"

"detach the HEAD at named commit"
"detach HEAD at named commit"

"removing '%s' failed"
"failed to remove '%s'"

"index file corrupt"
"corrupt index file"

"failed to read %s"
"read of %s failed"

"detach the HEAD at named commit"
"detach HEAD at named commit"

Signed-off-by: Vasco Almeida <vascomalmeida@sapo.pt>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
maint
Vasco Almeida 8 years ago committed by Junio C Hamano
parent
commit
e923a8abe9
  1. 6
      builtin/apply.c
  2. 6
      builtin/checkout.c
  3. 2
      builtin/repack.c

6
builtin/apply.c

@ -3226,7 +3226,7 @@ static int load_patch_target(struct strbuf *buf,
{ {
if (cached || check_index) { if (cached || check_index) {
if (read_file_or_gitlink(ce, buf)) if (read_file_or_gitlink(ce, buf))
return error(_("read of %s failed"), name); return error(_("failed to read %s"), name);
} else if (name) { } else if (name) {
if (S_ISGITLINK(expected_mode)) { if (S_ISGITLINK(expected_mode)) {
if (ce) if (ce)
@ -3237,7 +3237,7 @@ static int load_patch_target(struct strbuf *buf,
return error(_("reading from '%s' beyond a symbolic link"), name); return error(_("reading from '%s' beyond a symbolic link"), name);
} else { } else {
if (read_old_data(st, name, buf)) if (read_old_data(st, name, buf))
return error(_("read of %s failed"), name); return error(_("failed to read %s"), name);
} }
} }
return 0; return 0;
@ -3282,7 +3282,7 @@ static int load_preimage(struct image *image,
free_fragment_list(patch->fragments); free_fragment_list(patch->fragments);
patch->fragments = NULL; patch->fragments = NULL;
} else if (status) { } else if (status) {
return error(_("read of %s failed"), patch->old_name); return error(_("failed to read %s"), patch->old_name);
} }
} }



6
builtin/checkout.c

@ -276,7 +276,7 @@ static int checkout_paths(const struct checkout_opts *opts,


hold_locked_index(lock_file, 1); hold_locked_index(lock_file, 1);
if (read_cache_preload(&opts->pathspec) < 0) if (read_cache_preload(&opts->pathspec) < 0)
return error(_("corrupt index file")); return error(_("index file corrupt"));


if (opts->source_tree) if (opts->source_tree)
read_tree_some(opts->source_tree, &opts->pathspec); read_tree_some(opts->source_tree, &opts->pathspec);
@ -470,7 +470,7 @@ static int merge_working_tree(const struct checkout_opts *opts,


hold_locked_index(lock_file, 1); hold_locked_index(lock_file, 1);
if (read_cache_preload(NULL) < 0) if (read_cache_preload(NULL) < 0)
return error(_("corrupt index file")); return error(_("index file corrupt"));


resolve_undo_clear(); resolve_undo_clear();
if (opts->force) { if (opts->force) {
@ -1138,7 +1138,7 @@ int cmd_checkout(int argc, const char **argv, const char *prefix)
OPT_STRING('B', NULL, &opts.new_branch_force, N_("branch"), OPT_STRING('B', NULL, &opts.new_branch_force, N_("branch"),
N_("create/reset and checkout a branch")), N_("create/reset and checkout a branch")),
OPT_BOOL('l', NULL, &opts.new_branch_log, N_("create reflog for new branch")), OPT_BOOL('l', NULL, &opts.new_branch_log, N_("create reflog for new branch")),
OPT_BOOL(0, "detach", &opts.force_detach, N_("detach the HEAD at named commit")), OPT_BOOL(0, "detach", &opts.force_detach, N_("detach HEAD at named commit")),
OPT_SET_INT('t', "track", &opts.track, N_("set upstream info for new branch"), OPT_SET_INT('t', "track", &opts.track, N_("set upstream info for new branch"),
BRANCH_TRACK_EXPLICIT), BRANCH_TRACK_EXPLICIT),
OPT_STRING(0, "orphan", &opts.new_orphan_branch, N_("new-branch"), N_("new unparented branch")), OPT_STRING(0, "orphan", &opts.new_orphan_branch, N_("new-branch"), N_("new unparented branch")),

2
builtin/repack.c

@ -378,7 +378,7 @@ int cmd_repack(int argc, const char **argv, const char *prefix)
item->string, item->string,
exts[ext].name); exts[ext].name);
if (remove_path(fname)) if (remove_path(fname))
warning(_("removing '%s' failed"), fname); warning(_("failed to remove '%s'"), fname);
free(fname); free(fname);
} }
} }

Loading…
Cancel
Save