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

TranslatableString for prompts of choice controls

This commit is contained in:
Paul Licameli
2019-12-22 15:21:07 -05:00
parent 1944ac2040
commit 21e7b9f2de
40 changed files with 105 additions and 104 deletions

View File

@@ -120,9 +120,9 @@ void ScreenshotCommand::PopulateOrExchange(ShuttleGui & S)
S.StartMultiColumn(2, wxALIGN_CENTER);
{
S.TieTextBox( _("Path:"), mPath);
S.TieChoice( _("Capture What:"),
S.TieChoice( XO("Capture What:"),
mWhat, Msgids(kCaptureWhatStrings, nCaptureWhats));
S.TieChoice( _("Background:"),
S.TieChoice( XO("Background:"),
mBack, Msgids(kBackgroundStrings, nBackgrounds));
S.TieCheckBox( _("Bring To Top:"), mbBringToTop);
}