i18n: mark more bundle.c strings for translation
These two messages were introduced inmaint8ba221e245
(bundle: output hash information in 'verify', 2022-03-22) and105c6f14ad
(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>
parent
ecaa3db171
commit
bbb6acd998
4
bundle.c
4
bundle.c
|
@ -278,10 +278,10 @@ int verify_bundle(struct repository *r,
|
||||||
list_refs(r, 0, NULL);
|
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);
|
header->hash_algo->name);
|
||||||
if (header->filter.choice)
|
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));
|
list_objects_filter_spec(&header->filter));
|
||||||
}
|
}
|
||||||
return ret;
|
return ret;
|
||||||
|
|
Loading…
Reference in New Issue