From da09d1dd9a820cddc0a2a0019fc65920de492702 Mon Sep 17 00:00:00 2001 From: Ben Loftis Date: Mon, 31 Jan 2022 19:58:46 -0600 Subject: [PATCH] terminology: the content in a trigger is a Trigger Clip --- gtk2_ardour/editor.cc | 2 +- gtk2_ardour/editor_ops.cc | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/gtk2_ardour/editor.cc b/gtk2_ardour/editor.cc index b1779ac6c0..ac89661561 100644 --- a/gtk2_ardour/editor.cc +++ b/gtk2_ardour/editor.cc @@ -1972,7 +1972,7 @@ Editor::add_selection_context_items (Menu_Helpers::MenuList& edit_items) edit_items.push_back (MenuElem (_("Consolidate Range with Processing"), sigc::bind (sigc::mem_fun(*this, &Editor::bounce_range_selection), ReplaceRange, true))); edit_items.push_back (MenuElem (_("Bounce Range to Source List"), sigc::bind (sigc::mem_fun(*this, &Editor::bounce_range_selection), NewSource, false))); edit_items.push_back (MenuElem (_("Bounce Range to Source List with Processing"), sigc::bind (sigc::mem_fun(*this, &Editor::bounce_range_selection), NewSource, true))); - edit_items.push_back (MenuElem (_("Bounce Range to Trigger"), sigc::bind (sigc::mem_fun(*this, &Editor::bounce_range_selection), NewTrigger, false))); + edit_items.push_back (MenuElem (_("Bounce Range to Trigger Clip"), sigc::bind (sigc::mem_fun(*this, &Editor::bounce_range_selection), NewTrigger, false))); edit_items.push_back (MenuElem (_("Export Range..."), sigc::mem_fun(*this, &Editor::export_selection))); if (ARDOUR_UI::instance()->video_timeline->get_duration() > 0) { edit_items.push_back (MenuElem (_("Export Video Range..."), sigc::bind (sigc::mem_fun(*(ARDOUR_UI::instance()), &ARDOUR_UI::export_video), true))); diff --git a/gtk2_ardour/editor_ops.cc b/gtk2_ardour/editor_ops.cc index 89ca797f01..678d8033b6 100644 --- a/gtk2_ardour/editor_ops.cc +++ b/gtk2_ardour/editor_ops.cc @@ -4128,7 +4128,7 @@ Editor::bounce_range_selection (BounceTarget target, bool enable_processing) bounce_name = "Consolidated"; break; case NewTrigger: - bounce_name = "Trigger"; + bounce_name = "Unnamed Clip"; break; } @@ -4169,7 +4169,7 @@ Editor::bounce_range_selection (BounceTarget target, bool enable_processing) dialog.add_button (_("Rename"), RESPONSE_ACCEPT); break; case NewTrigger: - dialog.set_prompt (_("Name for Trigger:")); + dialog.set_prompt (_("Name for Trigger Clip:")); dialog.add_button (_("Bounce"), RESPONSE_ACCEPT); break; }