From d63528bca034ada8821e6a26bc4d32b1475bc5b8 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Fri, 20 Jul 2012 15:16:45 +0000 Subject: [PATCH] fix action names for transport controllables git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@13058 d708f5d6-7413-0410-9779-e7cbd77b26cf --- gtk2_ardour/ardour_ui.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gtk2_ardour/ardour_ui.cc b/gtk2_ardour/ardour_ui.cc index a3e066bc60..ccb95616ed 100644 --- a/gtk2_ardour/ardour_ui.cc +++ b/gtk2_ardour/ardour_ui.cc @@ -3628,16 +3628,16 @@ ARDOUR_UI::TransportControllable::set_value (float val) action = X_("Stop"); break; case GotoStart: - action = X_("Goto Start"); + action = X_("GotoStart"); break; case GotoEnd: - action = X_("Goto End"); + action = X_("GotoEnd"); break; case AutoLoop: action = X_("Loop"); break; case PlaySelection: - action = X_("Play Selection"); + action = X_("PlaySelection"); break; case RecordEnable: action = X_("Record");