1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-08-01 16:39:30 +02:00

Select -> Select track

This commit is contained in:
James Crook 2019-03-25 19:18:20 +00:00
parent 74a78bf542
commit 4762136f16

View File

@ -104,9 +104,9 @@ wxString SelectButtonHandle::Tip(const wxMouseState &) const
{
auto pTrack = GetTrack();
#if defined(__WXMAC__)
return pTrack->GetSelected() ? _("Command+Click to Unselect") : _("Select");
return pTrack->GetSelected() ? _("Command+Click to Unselect") : _("Select track");
#else
return pTrack->GetSelected() ? _("Ctrl+Click to Unselect") : _("Select");
return pTrack->GetSelected() ? _("Ctrl+Click to Unselect") : _("Select track");
#endif
}