mirror of
https://github.com/cookiengineer/audacity
synced 2025-12-20 15:41:18 +01: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:
@@ -805,7 +805,7 @@ bool Importer::Import( AudacityProject &project,
|
|||||||
.Format( fName,
|
.Format( fName,
|
||||||
!FFmpegLibsInst()
|
!FFmpegLibsInst()
|
||||||
? XO("Try installing FFmpeg.\n\n")
|
? XO("Try installing FFmpeg.\n\n")
|
||||||
: XO("") );
|
: Verbatim("") );
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user