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>
Vasco Almeida committed
Jun 17, 2016 at 20:21 UTC
7ba7b9abcc6f683f3b18315495d30811a6bc9e12
1 file changed
+3
-3
builtin/remote.c
+3
-3
@@ -1158,11 +1158,11 @@ static int show(int argc, const char **argv)
1158
the one in " Fetch URL: %s" translation */
1159
printf_ln(_(" Push URL: %s"), url[i]);
1160
if (!i)
1161
- printf_ln(_(" Push URL: %s"), "(no URL)");
1161
+ printf_ln(_(" Push URL: %s"), _("(no URL)"));
1162
if (no_query)
1163
- printf_ln(_(" HEAD branch: %s"), "(not queried)");
1163
+ printf_ln(_(" HEAD branch: %s"), _("(not queried)"));
1164
else if (!states.heads.nr)
1165
- printf_ln(_(" HEAD branch: %s"), "(unknown)");
1165
+ printf_ln(_(" HEAD branch: %s"), _("(unknown)"));
1166
else if (states.heads.nr == 1)
1167
printf_ln(_(" HEAD branch: %s"), states.heads.items[0].string);
1168
else {