mirror of
https://github.com/cookiengineer/audacity
synced 2025-10-27 07:43:50 +01:00
TranslatableString for static text box captions
This commit is contained in:
@@ -169,7 +169,7 @@ void QuickFixDialog::PopulateOrExchange(ShuttleGui & S)
|
||||
{
|
||||
|
||||
S.StartVerticalLay(1);
|
||||
S.StartStatic( _("Quick Fixes"));
|
||||
S.StartStatic( XO("Quick Fixes"));
|
||||
|
||||
// These aren't all possible modes one can be stuck in, but they are some of them.
|
||||
bool bStuckInMode = mbSyncLocked || mbInSnapTo || mbSoundActivated;
|
||||
|
||||
@@ -515,7 +515,7 @@ void OnSetLeftSelection(const CommandContext &context)
|
||||
auto rate = settings.GetRate();
|
||||
|
||||
TimeDialog dlg(&window, XO("Set Left Selection Boundary"),
|
||||
fmt, rate, selectedRegion.t0(), _("Position"));
|
||||
fmt, rate, selectedRegion.t0(), XO("Position"));
|
||||
|
||||
if (wxID_OK == dlg.ShowModal())
|
||||
{
|
||||
@@ -554,7 +554,7 @@ void OnSetRightSelection(const CommandContext &context)
|
||||
auto rate = settings.GetRate();
|
||||
|
||||
TimeDialog dlg(&window, XO("Set Right Selection Boundary"),
|
||||
fmt, rate, selectedRegion.t1(), _("Position"));
|
||||
fmt, rate, selectedRegion.t1(), XO("Position"));
|
||||
|
||||
if (wxID_OK == dlg.ShowModal())
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user