mirror of
https://git.tukaani.org/xz.git
synced 2024-04-04 12:36:23 +02:00
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:
parent
97851be2c6
commit
1ac79b4cba
1 changed files with 1 additions and 1 deletions
|
@ -667,7 +667,7 @@ progress_flush(bool finished)
|
||||||
cols[4]);
|
cols[4]);
|
||||||
} else {
|
} else {
|
||||||
// The filename is always printed.
|
// The filename is always printed.
|
||||||
fprintf(stderr, "%s: ", filename);
|
fprintf(stderr, _("%s: "), filename);
|
||||||
|
|
||||||
// Percentage is printed only if we didn't finish yet.
|
// Percentage is printed only if we didn't finish yet.
|
||||||
if (!finished) {
|
if (!finished) {
|
||||||
|
|
Loading…
Reference in a new issue