diff options
author | Vasco Almeida <vascomalmeida@sapo.pt> | 2016-06-17 20:21:21 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-06-17 15:46:10 -0700 |
commit | 7ba7b9abcc6f683f3b18315495d30811a6bc9e12 (patch) | |
tree | 04c392b2060f60ebeb18255bed91898f1fdd5ba2 /builtin | |
parent | i18n: standardise messages (diff) | |
download | tgif-7ba7b9abcc6f683f3b18315495d30811a6bc9e12.tar.xz |
i18n: remote: mark URL fallback text for translation
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>
Diffstat (limited to 'builtin')
-rw-r--r-- | builtin/remote.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/builtin/remote.c b/builtin/remote.c index ae74da64b2..9f934cb7e8 100644 --- 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) - printf_ln(_(" Push URL: %s"), "(no URL)"); + printf_ln(_(" Push URL: %s"), _("(no URL)")); if (no_query) - printf_ln(_(" HEAD branch: %s"), "(not queried)"); + printf_ln(_(" HEAD branch: %s"), _("(not queried)")); 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 { |