1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-05-06 14:52:34 +02:00

Meter tooltip text changes.

This commit is contained in:
james.k.crook@gmail.com 2014-11-02 18:02:09 +00:00
parent 799230b882
commit 7a60ed4309
2 changed files with 3 additions and 3 deletions

View File

@ -53,12 +53,12 @@ MeterToolBar::MeterToolBar(int WhichMeters)
mWhichMeters = WhichMeters;
if( mWhichMeters == kWithRecordMeter ){
mType = RecordMeterBarID;
mLabel = _("Record Meter");
mLabel = _("Recording Meter");
mSection = wxT("RecordMeter");
}
if( mWhichMeters == kWithPlayMeter ){
mType = PlayMeterBarID;
mLabel = _("Play Meter");
mLabel = _("Playback Meter");
mSection = wxT("PlayMeter");
}
mSizer = NULL;

View File

@ -119,7 +119,7 @@ ToolBar::~ToolBar()
wxString ToolBar::GetTitle()
{
/* i18n-hint: %s will be replaced by the name of the kind of toolbar.*/
return wxString::Format( _("Audacity %s ToolBar"), GetLabel().c_str() );
return wxString::Format( _("Audacity %s Toolbar"), GetLabel().c_str() );
}
//