1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-02-22 06:01:25 +01:00

Fixed more internationalisation hints.

This commit is contained in:
james.k.crook@gmail.com
2012-03-20 16:17:37 +00:00
parent 69476e785c
commit 63f0b8b09e
20 changed files with 58 additions and 15 deletions

View File

@@ -62,26 +62,27 @@ void EffectsPrefs::PopulateOrExchange(ShuttleGui & S)
true);
#endif
// JKC: LADSPA, Nyquist, VST, VAMP should not be translated.
#if USE_LADSPA
S.TieCheckBox(_("&LADSPA"),
S.TieCheckBox(wxT("&LADSPA"),
wxT("/Ladspa/Enable"),
true);
#endif
#if USE_NYQUIST
S.TieCheckBox(_("N&yquist"),
S.TieCheckBox(wxT("N&yquist"),
wxT("/Nyquist/Enable"),
true);
#endif
#if USE_VAMP
S.TieCheckBox(_("&VAMP"),
S.TieCheckBox(wxT("&VAMP"),
wxT("/VAMP/Enable"),
true);
#endif
#if USE_VST
S.TieCheckBox(_("V&ST"),
S.TieCheckBox(wxT("V&ST"),
wxT("/VST/Enable"),
true);
#endif