Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
i18n: remote: mark URL fallback text for translation
author
Vasco Almeida
<vascomalmeida@sapo.pt>
Fri, 17 Jun 2016 20:21:21 +0000
(20:21 +0000)
committer
Junio C Hamano
<gitster@pobox.com>
Fri, 17 Jun 2016 22:46:10 +0000
(15:46 -0700)
Marks fallback text for translation that may be displayed in git remote
show output.
Signed-off-by: Vasco Almeida <vascomalmeida@sapo.pt>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/remote.c
patch
|
blob
|
history
raw
|
patch
|
inline
| side by side (parent:
e923a8a
)
diff --git
a/builtin/remote.c
b/builtin/remote.c
index ae74da64b2501bc58881ddb60bd29edd8720e160..9f934cb7e8218bd669bc8c53450ce4d77f069ed7 100644
(file)
--- a/
builtin/remote.c
+++ b/
builtin/remote.c
@@
-1158,11
+1158,11
@@
static int show(int argc, const char **argv)
the one in " Fetch URL: %s" translation */
printf_ln(_(" Push URL: %s"), url[i]);
if (!i)
the one in " Fetch URL: %s" translation */
printf_ln(_(" Push URL: %s"), url[i]);
if (!i)
- printf_ln(_(" Push URL: %s"),
"(no URL)"
);
+ printf_ln(_(" Push URL: %s"),
_("(no URL)")
);
if (no_query)
if (no_query)
- printf_ln(_(" HEAD branch: %s"),
"(not queried)"
);
+ printf_ln(_(" HEAD branch: %s"),
_("(not queried)")
);
else if (!states.heads.nr)
else if (!states.heads.nr)
- printf_ln(_(" HEAD branch: %s"),
"(unknown)"
);
+ printf_ln(_(" HEAD branch: %s"),
_("(unknown)")
);
else if (states.heads.nr == 1)
printf_ln(_(" HEAD branch: %s"), states.heads.items[0].string);
else {
else if (states.heads.nr == 1)
printf_ln(_(" HEAD branch: %s"), states.heads.items[0].string);
else {