1
0
mirror of https://github.com/git/git synced 2024-07-02 15:48:44 +00:00

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>
This commit is contained in:
D. Ben Knoble 2023-07-13 22:01:22 +00:00 committed by Junio C Hamano
parent ecaa3db171
commit bbb6acd998

View File

@ -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;