summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2012-07-20 15:16:45 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2012-07-20 15:16:45 +0000
commitd63528bca034ada8821e6a26bc4d32b1475bc5b8 (patch)
tree9670bb70c1da2a8d6c7277577308b7991e662edb
parent253f0ae04c9678e62c9881783b0d3618cf531e28 (diff)
fix action names for transport controllables
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@13058 d708f5d6-7413-0410-9779-e7cbd77b26cf
-rw-r--r--gtk2_ardour/ardour_ui.cc6
1 files 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");