summaryrefslogtreecommitdiff
path: root/connect.c
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2016-09-26 16:09:17 -0700
committerLibravatar Junio C Hamano <gitster@pobox.com>2016-09-26 16:09:18 -0700
commit8969feac7ee119dc3cdae0e2d8c65516aa8f4045 (patch)
tree1007bab435d4c18d829ebba5975bede43e4c9f9c /connect.c
parentMerge branch 'jt/format-patch-rfc' (diff)
parenti18n: stash: mark messages for translation (diff)
downloadtgif-8969feac7ee119dc3cdae0e2d8c65516aa8f4045.tar.xz
Merge branch 'va/i18n-more'
Even more i18n. * va/i18n-more: i18n: stash: mark messages for translation i18n: notes-merge: mark die messages for translation i18n: ident: mark hint for translation i18n: i18n: diff: mark die messages for translation i18n: connect: mark die messages for translation i18n: commit: mark message for translation
Diffstat (limited to 'connect.c')
-rw-r--r--connect.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/connect.c b/connect.c
index 7224b5ecc7..d99d6435fd 100644
--- a/connect.c
+++ b/connect.c
@@ -46,11 +46,11 @@ int check_ref_type(const struct ref *ref, int flags)
static void die_initial_contact(int unexpected)
{
if (unexpected)
- die("The remote end hung up upon initial contact");
+ die(_("The remote end hung up upon initial contact"));
else
- die("Could not read from remote repository.\n\n"
- "Please make sure you have the correct access rights\n"
- "and the repository exists.");
+ die(_("Could not read from remote repository.\n\n"
+ "Please make sure you have the correct access rights\n"
+ "and the repository exists."));
}
static void parse_one_symref_info(struct string_list *symref, const char *val, int len)