mirror of
https://github.com/cookiengineer/audacity
synced 2026-03-05 22:21:15 +01: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:
@@ -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.") );
|
||||
|
||||
Reference in New Issue
Block a user