1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-21 16:37:12 +01:00

TranslatableString for some maybe-useful-in-future strings

This commit is contained in:
Paul Licameli
2019-12-28 23:53:19 -05:00
parent 61161a2f00
commit eaffb4ed74
2 changed files with 7 additions and 8 deletions

View File

@@ -356,10 +356,9 @@ wxString GUIPrefs::SetLang( const wxString & lang )
wxTheApp->ProcessEvent(evt);
}
// PRL: Moved this, do it only after language intialized
// Unused strings that we want to be translated, even though
// we're not using them yet...
wxString future1 = _("Master Gain Control");
using future1 = decltype( XO("Master Gain Control") );
return result;
}