1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-09-22 15:10:23 +02:00

Make "Draw Tool" translatable.

This commit is contained in:
James Crook 2015-08-05 21:26:05 +01:00
parent 617e0713df
commit 2af3a8ca7e

View File

@ -4826,7 +4826,7 @@ bool TrackPanel::IsSampleEditingPossible( wxMouseEvent &event, Track * t )
if (WaveTrack::Waveform != display)
{
wxMessageBox(_("To use Draw, choose 'Waveform' in the Track Drop-down Menu."), wxT("Draw Tool"));
wxMessageBox(_("To use Draw, choose 'Waveform' in the Track Drop-down Menu."), _("Draw Tool"));
return false;
}
@ -4843,7 +4843,7 @@ bool TrackPanel::IsSampleEditingPossible( wxMouseEvent &event, Track * t )
//If we aren't zoomed in far enough, show a message dialog.
if(!showPoints)
{
wxMessageBox(_("To use Draw, zoom in further until you can see the individual samples."), wxT("Draw Tool"));
wxMessageBox(_("To use Draw, zoom in further until you can see the individual samples."), _("Draw Tool"));
return false;
}
return true;