summaryrefslogtreecommitdiff
path: root/gtk2_ardour/generic_pluginui.cc
diff options
context:
space:
mode:
Diffstat (limited to 'gtk2_ardour/generic_pluginui.cc')
-rw-r--r--gtk2_ardour/generic_pluginui.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/gtk2_ardour/generic_pluginui.cc b/gtk2_ardour/generic_pluginui.cc
index e18cdfd889..bff75800e0 100644
--- a/gtk2_ardour/generic_pluginui.cc
+++ b/gtk2_ardour/generic_pluginui.cc
@@ -122,15 +122,15 @@ GenericPluginUI::GenericPluginUI (boost::shared_ptr<PluginInsert> pi, bool scrol
}
smaller_hbox->pack_start (bypass_button, false, true, 4);
- automation_manual_all_button.set_text(_("Manual"));
+ automation_manual_all_button.set_text (GainMeterBase::astate_string (ARDOUR::Off));
automation_manual_all_button.set_name (X_("generic button"));
- automation_play_all_button.set_text(_("Play"));
+ automation_play_all_button.set_text (GainMeterBase::astate_string (ARDOUR::Play));
automation_play_all_button.set_name (X_("generic button"));
- automation_write_all_button.set_text(_("Write"));
+ automation_write_all_button.set_text (GainMeterBase::astate_string (ARDOUR::Write));
automation_write_all_button.set_name (X_("generic button"));
- automation_touch_all_button.set_text(_("Touch"));
+ automation_touch_all_button.set_text (GainMeterBase::astate_string (ARDOUR::Touch));
automation_touch_all_button.set_name (X_("generic button"));
- automation_latch_all_button.set_text(_("Touch"));
+ automation_latch_all_button.set_text (GainMeterBase::astate_string (ARDOUR::Latch));
automation_latch_all_button.set_name (X_("generic button"));
constraint_hbox->set_spacing (5);