xz: Make one string simpler for translators

Leading spaces in the string can get miscounted by translators.
This commit is contained in:
Lasse Collin 2024-10-30 20:50:20 +02:00
parent 3fcf547e92
commit 4a0c4f92b8
No known key found for this signature in database
GPG Key ID: 38EE757D69184620
1 changed files with 2 additions and 2 deletions

View File

@ -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), printf(" %-*s %s\n", COLON_STR(COLON_STR_SIZES_IN_HEADERS),
xfi->all_have_sizes ? _("Yes") : _("No")); xfi->all_have_sizes ? _("Yes") : _("No"));
//printf(" %-*s %s\n", COLON_STR(COLON_STR_MINIMUM_XZ_VERSION), //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)); 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), printf(" %-*s %s\n", COLON_STR(COLON_STR_SIZES_IN_HEADERS),
totals.all_have_sizes ? _("Yes") : _("No")); totals.all_have_sizes ? _("Yes") : _("No"));
//printf(" %-*s %s\n", COLON_STR(COLON_STR_MINIMUM_XZ_VERSION), //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)); xz_ver_to_str(totals.min_version));
} }