From: D. Ben Knoble Date: Thu, 13 Jul 2023 22:01:22 +0000 (+0000) Subject: i18n: mark more bundle.c strings for translation X-Git-Tag: v2.42.0-rc0~36^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bbb6acd998387a31794bca834529362d289f3807;p=thirdparty%2Fgit.git 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 Signed-off-by: Junio C Hamano --- 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;