From: Paul Davis Date: Tue, 7 Jun 2011 23:09:45 +0000 (+0000) Subject: fix punch labels in time info box X-Git-Tag: 3.0-alpha6~23 X-Git-Url: https://main.carlh.net/gitweb/?a=commitdiff_plain;h=f90fed23606b7bd050d3eee3979e14c05e2eb241;p=ardour.git fix punch labels in time info box git-svn-id: svn://localhost/ardour2/branches/3.0@9686 d708f5d6-7413-0410-9779-e7cbd77b26cf --- diff --git a/gtk2_ardour/time_info_box.cc b/gtk2_ardour/time_info_box.cc index d25bd16e14..ba96416fba 100644 --- a/gtk2_ardour/time_info_box.cc +++ b/gtk2_ardour/time_info_box.cc @@ -108,11 +108,11 @@ TimeInfoBox::TimeInfoBox () attach (punch_title, 2, 4, 0, 1); l = manage (new Label); - l->set_markup (string_compose ("%1", _("Start"))); + l->set_markup (string_compose ("%1", _("In"))); attach (*l, 2, 3, 1, 2); attach (*punch_start, 3, 4, 1, 2); l = manage (new Label); - l->set_markup (string_compose ("%1", _("End"))); + l->set_markup (string_compose ("%1", _("Out"))); attach (*l, 2, 3, 2, 3); attach (*punch_end, 3, 4, 2, 3);