xz: Translate also the string used to print the program name.

French needs a space before a colon, e.g. "xz : foo error".
This commit is contained in:
Lasse Collin 2011-05-21 15:12:10 +03:00
parent b94aa0c838
commit 4161d76349
1 changed files with 5 additions and 1 deletions

View File

@ -726,7 +726,11 @@ vmessage(enum message_verbosity v, const char *fmt, va_list ap)
progress_flush(false);
fprintf(stderr, "%s: ", progname);
// TRANSLATORS: This is the program name in the beginning
// of the line in messages. Usually it becomes "xz: ".
// This is a translatable string because French needs
// a space before a colon.
fprintf(stderr, _("%s: "), progname);
vfprintf(stderr, fmt, ap);
fputc('\n', stderr);