1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-01-13 08:05:52 +01: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(); auto pTrack = GetTrack();
#if defined(__WXMAC__) #if defined(__WXMAC__)
return pTrack->GetSelected() ? _("Command+Click to Unselect") : _("Select"); return pTrack->GetSelected() ? _("Command+Click to Unselect") : _("Select track");
#else #else
return pTrack->GetSelected() ? _("Ctrl+Click to Unselect") : _("Select"); return pTrack->GetSelected() ? _("Ctrl+Click to Unselect") : _("Select track");
#endif #endif
} }