mirror of
https://github.com/cookiengineer/audacity
synced 2025-09-18 17:10:55 +02:00
Remove unwanted ':' on names of scripting checkboxes.
The name comes after the checkbox, and looks better without the ':'. Made an exception for "Resize:" in SetProjectCommand. It controls 4 subordinate settings, and those settings do come after the name.
This commit is contained in:
parent
722a3f5ea5
commit
301c511422
@ -90,8 +90,8 @@ void SaveProjectCommand::PopulateOrExchange(ShuttleGui & S)
|
||||
S.StartMultiColumn(2, wxALIGN_CENTER);
|
||||
{
|
||||
S.TieTextBox(XO("File Name:"),mFileName);
|
||||
S.TieCheckBox(XO("Add to History:"), mbAddToHistory );
|
||||
S.TieCheckBox(XO("Compress:"), mbCompress );
|
||||
S.TieCheckBox(XO("Add to History"), mbAddToHistory );
|
||||
S.TieCheckBox(XO("Compress"), mbCompress );
|
||||
}
|
||||
S.EndMultiColumn();
|
||||
}
|
||||
|
@ -77,7 +77,7 @@ void SetPreferenceCommand::PopulateOrExchange(ShuttleGui & S)
|
||||
{
|
||||
S.TieTextBox(XO("Name:"),mName);
|
||||
S.TieTextBox(XO("Value:"),mValue);
|
||||
S.TieCheckBox(XO("Reload:"),mbReload);
|
||||
S.TieCheckBox(XO("Reload"),mbReload);
|
||||
}
|
||||
S.EndMultiColumn();
|
||||
}
|
||||
|
@ -131,7 +131,7 @@ void ScreenshotCommand::PopulateOrExchange(ShuttleGui & S)
|
||||
mWhat, Msgids(kCaptureWhatStrings, nCaptureWhats));
|
||||
S.TieChoice( XO("Background:"),
|
||||
mBack, Msgids(kBackgroundStrings, nBackgrounds));
|
||||
S.TieCheckBox( XO("Bring To Top:"), mbBringToTop);
|
||||
S.TieCheckBox( XO("Bring To Top"), mbBringToTop);
|
||||
}
|
||||
S.EndMultiColumn();
|
||||
}
|
||||
|
@ -52,7 +52,7 @@ void SetEnvelopeCommand::PopulateOrExchange(ShuttleGui & S)
|
||||
{
|
||||
S.Optional( bHasT ).TieNumericTextBox( XO("Time:"), mT );
|
||||
S.Optional( bHasV ).TieNumericTextBox( XO("Value:"), mV );
|
||||
S.Optional( bHasDelete ).TieCheckBox( XO("Delete:"), mbDelete );
|
||||
S.Optional( bHasDelete ).TieCheckBox( XO("Delete"), mbDelete );
|
||||
}
|
||||
S.EndMultiColumn();
|
||||
}
|
||||
|
@ -61,7 +61,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( XO("Selected:"), mbSelected );
|
||||
S.Optional( bHasSelected ).TieCheckBox( XO("Selected"), mbSelected );
|
||||
}
|
||||
S.EndMultiColumn();
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user