1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-03-24 15:15:52 +01:00

TranslatableString for checkbox captions

This commit is contained in:
Paul Licameli
2019-12-04 13:52:39 -05:00
parent c23451af9d
commit 747c35645a
50 changed files with 146 additions and 147 deletions

View File

@@ -55,7 +55,7 @@ void SetLabelCommand::PopulateOrExchange(ShuttleGui & S)
S.Optional( bHasText ).TieTextBox( XO("Text:"), mText );
S.Optional( bHasT0 ).TieNumericTextBox( XO("Start:"), mT0 );
S.Optional( bHasT1 ).TieNumericTextBox( XO("End:"), mT1 );
S.Optional( bHasSelected ).TieCheckBox( _("Selected:"), mbSelected );
S.Optional( bHasSelected ).TieCheckBox( XO("Selected:"), mbSelected );
}
S.EndMultiColumn();
}