From 2c36e96c97abdd3db1e7e01c2749a7691c71cc43 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 30 Dec 2014 19:52:44 -0500 Subject: [PATCH] rename "Convert to Region In-Place" to "Separate" since it is known by that name elsehwere and in the code --- gtk2_ardour/editor.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/editor.cc b/gtk2_ardour/editor.cc index 3fc05d2f36..1077934d82 100644 --- a/gtk2_ardour/editor.cc +++ b/gtk2_ardour/editor.cc @@ -1849,7 +1849,7 @@ Editor::add_selection_context_items (Menu_Helpers::MenuList& edit_items) ); edit_items.push_back (SeparatorElem()); - edit_items.push_back (MenuElem (_("Convert to Region In-Place"), mem_fun(*this, &Editor::separate_region_from_selection))); + edit_items.push_back (MenuElem (_("Separate"), mem_fun(*this, &Editor::separate_region_from_selection))); edit_items.push_back (MenuElem (_("Convert to Region in Region List"), sigc::mem_fun(*this, &Editor::new_region_from_selection))); edit_items.push_back (SeparatorElem());