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:
parent
7f1705ee71
commit
ab8fdeacae
@ -805,7 +805,7 @@ bool Importer::Import( AudacityProject &project,
|
||||
.Format( fName,
|
||||
!FFmpegLibsInst()
|
||||
? XO("Try installing FFmpeg.\n\n")
|
||||
: XO("") );
|
||||
: Verbatim("") );
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user