From 4a0c4f92b820b84ace625a95305a9d56cb662f4e Mon Sep 17 00:00:00 2001 From: Lasse Collin Date: Wed, 30 Oct 2024 20:50:20 +0200 Subject: [PATCH] xz: Make one string simpler for translators Leading spaces in the string can get miscounted by translators. --- src/xz/list.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/xz/list.c b/src/xz/list.c index e4a64668..40b0281a 100644 --- a/src/xz/list.c +++ b/src/xz/list.c @@ -1034,7 +1034,7 @@ print_info_adv(xz_file_info *xfi, file_pair *pair) printf(" %-*s %s\n", COLON_STR(COLON_STR_SIZES_IN_HEADERS), xfi->all_have_sizes ? _("Yes") : _("No")); //printf(" %-*s %s\n", COLON_STR(COLON_STR_MINIMUM_XZ_VERSION), - printf(_(" Minimum XZ Utils version: %s\n"), + printf(" %s %s\n", _("Minimum XZ Utils version:"), xz_ver_to_str(xfi->min_version)); } @@ -1219,7 +1219,7 @@ print_totals_adv(void) printf(" %-*s %s\n", COLON_STR(COLON_STR_SIZES_IN_HEADERS), totals.all_have_sizes ? _("Yes") : _("No")); //printf(" %-*s %s\n", COLON_STR(COLON_STR_MINIMUM_XZ_VERSION), - printf(_(" Minimum XZ Utils version: %s\n"), + printf(" %s %s\n", _("Minimum XZ Utils version:"), xz_ver_to_str(totals.min_version)); }