1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-04-30 15:49:41 +02:00

Don't translate empty string.

Gnu gettext complains, if you do.

"gettext("") returns the header entry with
meta information, not the empty string."
This commit is contained in:
James Crook 2021-03-27 23:29:32 +00:00
parent 7f1705ee71
commit ab8fdeacae

View File

@ -805,7 +805,7 @@ bool Importer::Import( AudacityProject &project,
.Format( fName,
!FFmpegLibsInst()
? XO("Try installing FFmpeg.\n\n")
: XO("") );
: Verbatim("") );
}
else
{