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

@@ -261,12 +261,12 @@ void LabelDialog::PopulateOrExchange( ShuttleGui & S )
S.EndVerticalLay();
S.StartVerticalLay(0);
{
//S.Id(ID_INSERTA).AddButton(_("&Insert"), wxALIGN_LEFT);
S.Id(ID_INSERTB).AddButton(_("&Insert"), wxALIGN_LEFT);
//S.Id(EditButtonID).AddButton(_("&Edit"), wxALIGN_LEFT);
S.Id(ID_REMOVE).AddButton(_("De&lete"), wxALIGN_LEFT);
S.Id(ID_IMPORT).AddButton(_("I&mport..."), wxALIGN_LEFT);
S.Id(ID_EXPORT).AddButton(_("&Export..."), wxALIGN_LEFT);
//S.Id(ID_INSERTA).AddButton(XO("&Insert"), wxALIGN_LEFT);
S.Id(ID_INSERTB).AddButton(XO("&Insert"), wxALIGN_LEFT);
//S.Id(EditButtonID).AddButton(XO("&Edit"), wxALIGN_LEFT);
S.Id(ID_REMOVE).AddButton(XO("De&lete"), wxALIGN_LEFT);
S.Id(ID_IMPORT).AddButton(XO("I&mport..."), wxALIGN_LEFT);
S.Id(ID_EXPORT).AddButton(XO("&Export..."), wxALIGN_LEFT);
}
S.EndVerticalLay();
}