Browse Source

remote.c: mark messages for translation

The two strings are slightly modified to be consistent with the rest:
die() and error() start with a lowercase.

Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
maint
Nguyễn Thái Ngọc Duy 6 years ago committed by Junio C Hamano
parent
commit
0b9c3afdbf
  1. 43
      remote.c

43
remote.c

@ -359,7 +359,7 @@ static int handle_config(const char *key, const char *value, void *cb)
return 0; return 0;
/* Handle remote.<name>.* variables */ /* Handle remote.<name>.* variables */
if (*name == '/') { if (*name == '/') {
warning("Config remote shorthand cannot begin with '/': %s", warning(_("config remote shorthand cannot begin with '/': %s"),
name); name);
return 0; return 0;
} }
@ -406,7 +406,7 @@ static int handle_config(const char *key, const char *value, void *cb)
if (!remote->receivepack) if (!remote->receivepack)
remote->receivepack = v; remote->receivepack = v;
else else
error("more than one receivepack given, using the first"); error(_("more than one receivepack given, using the first"));
} else if (!strcmp(subkey, "uploadpack")) { } else if (!strcmp(subkey, "uploadpack")) {
const char *v; const char *v;
if (git_config_string(&v, key, value)) if (git_config_string(&v, key, value))
@ -414,7 +414,7 @@ static int handle_config(const char *key, const char *value, void *cb)
if (!remote->uploadpack) if (!remote->uploadpack)
remote->uploadpack = v; remote->uploadpack = v;
else else
error("more than one uploadpack given, using the first"); error(_("more than one uploadpack given, using the first"));
} else if (!strcmp(subkey, "tagopt")) { } else if (!strcmp(subkey, "tagopt")) {
if (!strcmp(value, "--no-tags")) if (!strcmp(value, "--no-tags"))
remote->fetch_tags = -1; remote->fetch_tags = -1;
@ -680,7 +680,7 @@ static int match_name_with_pattern(const char *key, const char *name,
size_t namelen; size_t namelen;
int ret; int ret;
if (!kstar) if (!kstar)
die("Key '%s' of pattern had no '*'", key); die(_("key '%s' of pattern had no '*'"), key);
klen = kstar - key; klen = kstar - key;
ksuffixlen = strlen(kstar + 1); ksuffixlen = strlen(kstar + 1);
namelen = strlen(name); namelen = strlen(name);
@ -690,7 +690,7 @@ static int match_name_with_pattern(const char *key, const char *name,
struct strbuf sb = STRBUF_INIT; struct strbuf sb = STRBUF_INIT;
const char *vstar = strchr(value, '*'); const char *vstar = strchr(value, '*');
if (!vstar) if (!vstar)
die("Value '%s' of pattern has no '*'", value); die(_("value '%s' of pattern has no '*'"), value);
strbuf_add(&sb, value, vstar - value); strbuf_add(&sb, value, vstar - value);
strbuf_add(&sb, name + klen, namelen - klen - ksuffixlen); strbuf_add(&sb, name + klen, namelen - klen - ksuffixlen);
strbuf_addstr(&sb, vstar + 1); strbuf_addstr(&sb, vstar + 1);
@ -995,12 +995,12 @@ static int match_explicit_lhs(struct ref *src,
* way to delete 'other' ref at the remote end. * way to delete 'other' ref at the remote end.
*/ */
if (try_explicit_object_name(rs->src, match) < 0) if (try_explicit_object_name(rs->src, match) < 0)
return error("src refspec %s does not match any.", rs->src); return error(_("src refspec %s does not match any"), rs->src);
if (allocated_match) if (allocated_match)
*allocated_match = 1; *allocated_match = 1;
return 0; return 0;
default: default:
return error("src refspec %s matches more than one.", rs->src); return error(_("src refspec %s matches more than one"), rs->src);
} }
} }


@ -1030,7 +1030,7 @@ static int match_explicit(struct ref *src, struct ref *dst,
if (!dst_value || if (!dst_value ||
((flag & REF_ISSYMREF) && ((flag & REF_ISSYMREF) &&
!starts_with(dst_value, "refs/heads/"))) !starts_with(dst_value, "refs/heads/")))
die("%s cannot be resolved to branch.", die(_("%s cannot be resolved to branch"),
matched_src->name); matched_src->name);
} }


@ -1041,30 +1041,30 @@ static int match_explicit(struct ref *src, struct ref *dst,
if (starts_with(dst_value, "refs/")) if (starts_with(dst_value, "refs/"))
matched_dst = make_linked_ref(dst_value, dst_tail); matched_dst = make_linked_ref(dst_value, dst_tail);
else if (is_null_oid(&matched_src->new_oid)) else if (is_null_oid(&matched_src->new_oid))
error("unable to delete '%s': remote ref does not exist", error(_("unable to delete '%s': remote ref does not exist"),
dst_value); dst_value);
else if ((dst_guess = guess_ref(dst_value, matched_src))) { else if ((dst_guess = guess_ref(dst_value, matched_src))) {
matched_dst = make_linked_ref(dst_guess, dst_tail); matched_dst = make_linked_ref(dst_guess, dst_tail);
free(dst_guess); free(dst_guess);
} else } else
error("unable to push to unqualified destination: %s\n" error(_("unable to push to unqualified destination: %s\n"
"The destination refspec neither matches an " "The destination refspec neither matches an "
"existing ref on the remote nor\n" "existing ref on the remote nor\n"
"begins with refs/, and we are unable to " "begins with refs/, and we are unable to "
"guess a prefix based on the source ref.", "guess a prefix based on the source ref."),
dst_value); dst_value);
break; break;
default: default:
matched_dst = NULL; matched_dst = NULL;
error("dst refspec %s matches more than one.", error(_("dst refspec %s matches more than one"),
dst_value); dst_value);
break; break;
} }
if (!matched_dst) if (!matched_dst)
return -1; return -1;
if (matched_dst->peer_ref) if (matched_dst->peer_ref)
return error("dst ref %s receives from more than one src.", return error(_("dst ref %s receives from more than one src"),
matched_dst->name); matched_dst->name);
else { else {
matched_dst->peer_ref = allocated_src ? matched_dst->peer_ref = allocated_src ?
matched_src : matched_src :
@ -1750,7 +1750,7 @@ int get_fetch_map(const struct ref *remote_refs,
ref_map = get_remote_ref(remote_refs, name); ref_map = get_remote_ref(remote_refs, name);
} }
if (!missing_ok && !ref_map) if (!missing_ok && !ref_map)
die("Couldn't find remote ref %s", name); die(_("couldn't find remote ref %s"), name);
if (ref_map) { if (ref_map) {
ref_map->peer_ref = get_local_ref(refspec->dst); ref_map->peer_ref = get_local_ref(refspec->dst);
if (ref_map->peer_ref && refspec->force) if (ref_map->peer_ref && refspec->force)
@ -1763,7 +1763,7 @@ int get_fetch_map(const struct ref *remote_refs,
if (!starts_with((*rmp)->peer_ref->name, "refs/") || if (!starts_with((*rmp)->peer_ref->name, "refs/") ||
check_refname_format((*rmp)->peer_ref->name, 0)) { check_refname_format((*rmp)->peer_ref->name, 0)) {
struct ref *ignore = *rmp; struct ref *ignore = *rmp;
error("* Ignoring funny ref '%s' locally", error(_("* Ignoring funny ref '%s' locally"),
(*rmp)->peer_ref->name); (*rmp)->peer_ref->name);
*rmp = (*rmp)->next; *rmp = (*rmp)->next;
free(ignore->peer_ref); free(ignore->peer_ref);
@ -1858,7 +1858,7 @@ int stat_tracking_info(struct branch *branch, int *num_ours, int *num_theirs,
repo_init_revisions(the_repository, &revs, NULL); repo_init_revisions(the_repository, &revs, NULL);
setup_revisions(argv.argc, argv.argv, &revs, NULL); setup_revisions(argv.argc, argv.argv, &revs, NULL);
if (prepare_revision_walk(&revs)) if (prepare_revision_walk(&revs))
die("revision walk setup failed"); die(_("revision walk setup failed"));


/* ... and count the commits on each side. */ /* ... and count the commits on each side. */
while (1) { while (1) {
@ -2131,7 +2131,8 @@ static int parse_push_cas_option(struct push_cas_option *cas, const char *arg, i
else if (!colon[1]) else if (!colon[1])
oidclr(&entry->expect); oidclr(&entry->expect);
else if (get_oid(colon + 1, &entry->expect)) else if (get_oid(colon + 1, &entry->expect))
return error("cannot parse expected object name '%s'", colon + 1); return error(_("cannot parse expected object name '%s'"),
colon + 1);
return 0; return 0;
} }



Loading…
Cancel
Save