From: Junio C Hamano Date: Tue, 25 Jul 2023 19:05:24 +0000 (-0700) Subject: Merge branch 'dk/bundle-i18n-more' X-Git-Tag: v2.42.0-rc0~36 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=dd224ce15d926ec4d47a727e0f2ee3dd4cc4d5e5;p=thirdparty%2Fgit.git Merge branch 'dk/bundle-i18n-more' Update message mark-up for i18n in "git bundle". * dk/bundle-i18n-more: i18n: mark more bundle.c strings for translation --- dd224ce15d926ec4d47a727e0f2ee3dd4cc4d5e5 diff --cc bundle.c index 8d5936c421,be7c0dd77b..a9744da255 --- a/bundle.c +++ b/bundle.c @@@ -271,13 -278,12 +271,13 @@@ 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)); } +cleanup: return ret; }