xz: Translate the second "%s: " in message.c since French needs "%s : ".

This string is used to print a filename when using "xz -v" and
stderr isn't a terminal.
This commit is contained in:
Lasse Collin 2023-07-18 17:37:33 +03:00
parent be644042c3
commit b6b7d06585
1 changed files with 1 additions and 1 deletions

View File

@ -668,7 +668,7 @@ progress_flush(bool finished)
cols[4]);
} else {
// The filename is always printed.
fprintf(stderr, "%s: ", filename);
fprintf(stderr, _("%s: "), filename);
// Percentage is printed only if we didn't finish yet.
if (!finished) {