summaryrefslogtreecommitdiff
path: root/gtk2_ardour/insert_remove_time_dialog.cc
diff options
context:
space:
mode:
authorBen Loftis <ben@harrisonconsoles.com>2016-10-20 16:18:19 -0500
committerBen Loftis <ben@harrisonconsoles.com>2016-10-20 16:18:19 -0500
commit259f049adc9fc2d53996c1e34fae2bbb9759adb5 (patch)
treea7fb7ac1b2016bea6bc3a2b342a469f35b31ea93 /gtk2_ardour/insert_remove_time_dialog.cc
parent9e5811d13ede80215a6135fd6634949e1223757c (diff)
Track Insert/Remove Time dialog:
Disambiguate "glued" -> glued-to-musical-time (MIDI) regions. *Users didn't know that this is necessary to operate on MIDI regions.
Diffstat (limited to 'gtk2_ardour/insert_remove_time_dialog.cc')
-rw-r--r--gtk2_ardour/insert_remove_time_dialog.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk2_ardour/insert_remove_time_dialog.cc b/gtk2_ardour/insert_remove_time_dialog.cc
index 1202ad7bbf..f58bfdbaea 100644
--- a/gtk2_ardour/insert_remove_time_dialog.cc
+++ b/gtk2_ardour/insert_remove_time_dialog.cc
@@ -99,13 +99,13 @@ InsertRemoveTimeDialog::InsertRemoveTimeDialog (PublicEditor& e, bool remove)
_all_playlists.set_label (_("Apply to all the track's playlists"));
get_vbox()->pack_start (_all_playlists);
- _move_glued.set_label (_("Move glued regions"));
+ _move_glued.set_label (_("Move glued-to-musical-time regions (MIDI regions)"));
_move_glued.set_active();
get_vbox()->pack_start (_move_glued);
_move_markers.set_label (_("Move markers"));
get_vbox()->pack_start (_move_markers);
_move_markers.signal_toggled().connect (sigc::mem_fun (*this, &InsertRemoveTimeDialog::move_markers_toggled));
- _move_glued_markers.set_label (_("Move glued markers"));
+ _move_glued_markers.set_label (_("Move glued-to-musical-time markers"));
_move_glued_markers.set_active();
Alignment* indent = manage (new Alignment);
indent->set_padding (0, 0, 12, 0);