Wording changes, per wiki:

https://wiki.audacityteam.org/wiki/Wording
This commit is contained in:
James Crook 2020-01-10 17:02:31 +00:00
parent d28967b7ad
commit 1176b61953
9 changed files with 13 additions and 13 deletions

View File

@ -509,7 +509,7 @@ void ScreenshotCommand::CaptureEffects(
"Distortion...",
"Echo...",
//"Equalization...",
"Filter Curve...",
"Filter Curve EQ...",
"Graphic EQ...",
//"Fade In",
//"Fade Out",

View File

@ -62,7 +62,7 @@ void SetClipCommand::PopulateOrExchange(ShuttleGui & S)
S.StartMultiColumn(3, wxALIGN_CENTER);
{
S.Optional( bHasContainsTime).TieNumericTextBox( XO("At:"), mContainsTime );
S.Optional( bHasColour ).TieChoice( XO("Colour:"), mColour,
S.Optional( bHasColour ).TieChoice( XO("Color:"), mColour,
Msgids( kColourStrings, nColours ) );
S.Optional( bHasT0 ).TieNumericTextBox( XO("Start:"), mT0 );
}

View File

@ -316,7 +316,7 @@ void SetTrackVisualsCommand::PopulateOrExchange(ShuttleGui & S)
{
S.SetStretchyCol( 2 );
S.Optional( bHasHeight ).TieNumericTextBox( XO("Height:"), mHeight );
S.Optional( bHasColour ).TieChoice( XO("Colour:"), mColour,
S.Optional( bHasColour ).TieChoice( XO("Color:"), mColour,
Msgids( kColourStrings, nColours ) );
S.Optional( bHasDisplayType ).TieChoice( XO("Display:"), mDisplayType,
Msgids( kDisplayTypeStrings, nDisplayTypes ) );

View File

@ -320,7 +320,7 @@ wxString EffectEqualization::ManualPage()
if( mOptions == kEqOptionGraphic )
return wxT("Graphic EQ");
if( mOptions == kEqOptionCurve )
return wxT("Filter Curve");
return wxT("Filter Curve EQ");
return wxT("Equalization");
}
@ -507,7 +507,7 @@ bool EffectEqualization::ValidateUI()
Effect::MessageBox(
XO("To use this filter curve in a macro, please choose a new name for it.\nChoose the 'Save/Manage Curves...' button and rename the 'unnamed' curve, then use that one."),
wxOK | wxCENTRE,
XO("Filter Curve needs a different name") );
XO("Filter Curve EQ needs a different name") );
return false;
}

View File

@ -27,7 +27,7 @@ ComponentInterfaceSymbol{ XO("Equalization") }
#define GRAPHIC_EQ_PLUGIN_SYMBOL \
ComponentInterfaceSymbol{ wxT("Graphic EQ"), XO("Graphic EQ") }
#define FILTER_CURVE_PLUGIN_SYMBOL \
ComponentInterfaceSymbol{ wxT("Filter Curve"), XO("Filter Curve") }
ComponentInterfaceSymbol{ wxT("Filter Curve EQ"), XO("Filter Curve EQ") }
// Flags to specialise the UI
const int kEqOptionGraphic =1;

View File

@ -270,7 +270,7 @@ void TracksPrefs::PopulateOrExchange(ShuttleGui & S)
S.TieCheckBox(XO("Auto-&fit track height"),
{wxT("/GUI/TracksFitVerticallyZoomed"),
false});
S.TieCheckBox(XO("Sho&w audio track name as overlay"),
S.TieCheckBox(XO("Sho&w track name as overlay"),
{wxT("/GUI/ShowTrackNameInWaveform"),
false});
#ifdef EXPERIMENTAL_HALF_WAVE

View File

@ -149,7 +149,7 @@ void ToolsToolBar::RegenerateTooltips()
{ slideTool, wxT("TimeShiftTool"), XO("Time Shift Tool") },
{ zoomTool, wxT("ZoomTool"), XO("Zoom Tool") },
{ drawTool, wxT("DrawTool"), XO("Draw Tool") },
{ multiTool, wxT("MultiTool"), XO("Multi Tool") },
{ multiTool, wxT("MultiTool"), XO("Multi-Tool") },
};
for (const auto &entry : table) {
@ -203,7 +203,7 @@ void ToolsToolBar::Populate()
mTool[ drawTool ] = MakeTool( this, bmpDraw, drawTool, XO("Draw Tool") );
mTool[ zoomTool ] = MakeTool( this, bmpZoom, zoomTool, XO("Zoom Tool") );
mTool[ slideTool ] = MakeTool( this, bmpTimeShift, slideTool, XO("Slide Tool") );
mTool[ multiTool ] = MakeTool( this, bmpMulti, multiTool, XO("Multi Tool") );
mTool[ multiTool ] = MakeTool( this, bmpMulti, multiTool, XO("Multi-Tool") );
mTool[mCurrentTool]->PushDown();

View File

@ -1687,11 +1687,11 @@ void LabelTrackView::ShowContextMenu( AudacityProject &project )
OnContextMenu( project, event ); }
);
menu.Append(OnCutSelectedTextID, _("Cu&t"));
menu.Append(OnCopySelectedTextID, _("&Copy"));
menu.Append(OnCutSelectedTextID, _("Cu&t label text"));
menu.Append(OnCopySelectedTextID, _("&Copy label text"));
menu.Append(OnPasteSelectedTextID, _("&Paste"));
menu.Append(OnDeleteSelectedLabelID, _("&Delete Label"));
menu.Append(OnEditSelectedLabelID, _("&Edit..."));
menu.Append(OnEditSelectedLabelID, _("&Edit label..."));
menu.Enable(OnCutSelectedTextID, IsTextSelected( project ));
menu.Enable(OnCopySelectedTextID, IsTextSelected( project ));

View File

@ -720,7 +720,7 @@ BEGIN_POPUP_MENU(WaveTrackMenuTable)
POPUP_MENU_SEPARATOR()
POPUP_MENU_CHECK_ITEM(OnMultiViewID, XO("&Multi View"), OnMultiView)
POPUP_MENU_CHECK_ITEM(OnMultiViewID, XO("&Multi-view"), OnMultiView)
if ( view.GetMultiView() ) {
POPUP_MENU_CHECK_ITEM(OnWaveformID, XO("Wa&veform"), OnSetDisplay)