1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-22 15:20:15 +02:00

Resolve gettext message

src/prefs/ModulePrefs.cpp:99: warning: Empty msgid.  It is reserved by GNU gettext:
                                       gettext("") returns the header entry with
                                       meta information, not the empty string.
This commit is contained in:
Leland Lucius 2015-04-20 01:43:07 -05:00
parent d8c8ee3076
commit 1c31dfdce1

View File

@ -96,7 +96,7 @@ void ModulePrefs::PopulateOrExchange(ShuttleGui & S)
StatusChoices.Add( _("New" ) );
S.SetBorder(2);
S.StartStatic(_(""));
S.StartStatic(wxT(""));
{
S.AddFixedText(_("These are experimental modules. Enable them only if you've read the Audacity Manual\nand know what you are doing.") );
S.AddFixedText(wxString(wxT(" ")) + _("'Ask' means Audacity will ask if you want to load the module each time it starts.") );