1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-23 17:30:17 +01:00

TranslatableString for labels of ShuttleGui buttons

This commit is contained in:
Paul Licameli
2019-12-22 14:20:01 -05:00
parent c682718ee4
commit 1944ac2040
34 changed files with 183 additions and 178 deletions

View File

@@ -91,10 +91,10 @@ void MacroCommandDialog::PopulateOrExchange(ShuttleGui &S)
mCommand->SetEditable(false);
mEditParams = S.Id(EditParamsButtonID)
.Disable() // disable button as box is empty
.AddButton(_("&Edit Parameters"));
.AddButton(XO("&Edit Parameters"));
mUsePreset = S.Id(UsePresetButtonID)
.Disable() // disable button as box is empty
.AddButton(_("&Use Preset"));
.AddButton(XO("&Use Preset"));
}
S.EndMultiColumn();