Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorD. Ben Knoble <ben.knoble+github@gmail.com>2023-07-14 01:01:22 +0300
committerJunio C Hamano <gitster@pobox.com>2023-07-14 01:21:10 +0300
commitbbb6acd998387a31794bca834529362d289f3807 (patch)
tree3e8659c2d0f8b772a56e79cbd7bc637ae47ec916 /bundle.c
parentecaa3db17183b4a3895ccd0c0c1af01d0e6fed45 (diff)
i18n: mark more bundle.c strings for translation
These two messages were introduced in 8ba221e245 (bundle: output hash information in 'verify', 2022-03-22) and 105c6f14ad (bundle: parse filter capability, 2022-03-09) but never for translation. Signed-off-by: D. Ben Knoble <ben.knoble+github@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'bundle.c')
-rw-r--r--bundle.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundle.c b/bundle.c
index d50cfb5aa7..be7c0dd77b 100644
--- a/bundle.c
+++ b/bundle.c
@@ -278,10 +278,10 @@ int verify_bundle(struct repository *r,
list_refs(r, 0, NULL);
}
- printf_ln("The bundle uses this hash algorithm: %s",
+ printf_ln(_("The bundle uses this hash algorithm: %s"),
header->hash_algo->name);
if (header->filter.choice)
- printf_ln("The bundle uses this filter: %s",
+ printf_ln(_("The bundle uses this filter: %s"),
list_objects_filter_spec(&header->filter));
}
return ret;