1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-02-24 07:01:16 +01:00

TranslatableString for captions of text entry boxes

This commit is contained in:
Paul Licameli
2019-12-22 16:26:56 -05:00
parent b404eb7800
commit 5168d62e3d
59 changed files with 221 additions and 198 deletions

View File

@@ -49,8 +49,8 @@ void DemoCommand::PopulateOrExchange(ShuttleGui & S)
S.StartMultiColumn(2, wxALIGN_CENTER);
{
S.TieTextBox(_("Delay time (seconds):"),delay);
S.TieTextBox(_("Decay factor:"),decay);
S.TieTextBox(XO("Delay time (seconds):"),delay);
S.TieTextBox(XO("Decay factor:"),decay);
}
S.EndMultiColumn();
}