1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-27 07:43:50 +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

View File

@@ -49,12 +49,12 @@ void GUIPrefs::Populate()
mHtmlHelpChoices.Add(_("Local"));
mHtmlHelpChoices.Add(_("From Internet"));
mRangeCodes.Add(_("36"));
mRangeCodes.Add(_("48"));
mRangeCodes.Add(_("60"));
mRangeCodes.Add(_("96"));
mRangeCodes.Add(_("120"));
mRangeCodes.Add(_("145"));
mRangeCodes.Add(wxT("36"));
mRangeCodes.Add(wxT("48"));
mRangeCodes.Add(wxT("60"));
mRangeCodes.Add(wxT("96"));
mRangeCodes.Add(wxT("120"));
mRangeCodes.Add(wxT("145"));
mRangeChoices.Add(_("-36 dB (shallow range for high-amplitude editing)"));
mRangeChoices.Add(_("-48 dB (PCM range of 8 bit samples)"));

View File

@@ -157,6 +157,7 @@ void KeyConfigPrefs::PopulateOrExchange(ShuttleGui & S)
}
S.AddWindow(mKey);
/* i18n-hint: (verb)*/
S.Id(SetButtonID).AddButton(_("Set"));
S.Id(ClearButtonID).AddButton(_("Cl&ear"));
}