1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-02 15:13:50 +01:00

No need for a period in a tooltip that is not a complete sentence.

This commit is contained in:
windinthew@gmail.com
2014-12-20 23:27:41 +00:00
parent 6a0492e15d
commit 00af97edd6

View File

@@ -144,9 +144,9 @@ void MeterToolBar::RegenerateTooltips()
{
#if wxUSE_TOOLTIPS
if( mPlayMeter )
mPlayMeter->SetToolTip( _("Playback Level.") );
mPlayMeter->SetToolTip( _("Playback Level") );
if( mRecordMeter )
mRecordMeter->SetToolTip( _("Recording Level.") );
mRecordMeter->SetToolTip( _("Recording Level") );
#endif
}