1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-17 00:20:06 +02:00

Change slider mouseover tooltips wordings (was "Level") to match the drag tooltips ("Volume").

This commit is contained in:
v.audacity 2010-11-27 00:20:52 +00:00
parent f67170df5f
commit d99e15e193

View File

@ -385,19 +385,19 @@ void MixerToolBar::SetToolTips()
{
#if wxUSE_TOOLTIPS
if (mInputSlider->IsEnabled()) {
mInputSlider->SetToolTip(_("Input Level Slider"));
mInputSlider->SetToolTip(_("Input Volume Slider"));
}
else {
mInputSlider->SetToolTip(
_("Cannot control input level; use system mixer."));
_("Cannot control input volume; use system mixer."));
}
if (mOutputSlider->IsEnabled()) {
mOutputSlider->SetToolTip(_("Output Level Slider"));
mOutputSlider->SetToolTip(_("Output Volume Slider"));
}
else {
mOutputSlider->SetToolTip(
_("Cannot control output level; use system mixer."));
_("Cannot control output volume; use system mixer."));
}
#endif
}