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>

D. Ben Knoble committed Jul 13, 2023 at 22:01 UTC bbb6acd998387a31794bca834529362d289f3807
1 file changed +2 -2
bundle.c
+2 -2
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;