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);