summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2011-06-07 23:09:45 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2011-06-07 23:09:45 +0000
commitf90fed23606b7bd050d3eee3979e14c05e2eb241 (patch)
tree1b2f5b23ee8c0722692500745f4046c02cc28a61
parenta56555e8b200970a364c5f341d9ad938f53553c6 (diff)
fix punch labels in time info box
git-svn-id: svn://localhost/ardour2/branches/3.0@9686 d708f5d6-7413-0410-9779-e7cbd77b26cf
-rw-r--r--gtk2_ardour/time_info_box.cc4
1 files changed, 2 insertions, 2 deletions
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 ("<span size=\"x-small\">%1</span>", _("Start")));
+ l->set_markup (string_compose ("<span size=\"x-small\">%1</span>", _("In")));
attach (*l, 2, 3, 1, 2);
attach (*punch_start, 3, 4, 1, 2);
l = manage (new Label);
- l->set_markup (string_compose ("<span size=\"x-small\">%1</span>", _("End")));
+ l->set_markup (string_compose ("<span size=\"x-small\">%1</span>", _("Out")));
attach (*l, 2, 3, 2, 3);
attach (*punch_end, 3, 4, 2, 3);