Avoid "Route" in user visible messages

Prefer "Track", "Bus" and/or "Strip" where applicable, or simply
avoid it.
This commit is contained in:
Robin Gareus 2020-05-24 19:20:45 +02:00
parent 2eb9cda9ae
commit 94085b0162
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04
7 changed files with 8 additions and 8 deletions

View File

@ -419,7 +419,7 @@ PannerUI::build_pan_menu ()
if (_send_mode) {
items.push_back (SeparatorElem());
items.push_back (CheckMenuElem (_("Link to route panner"), sigc::mem_fun(*this, &PannerUI::pan_bypass_toggle)));
items.push_back (CheckMenuElem (_("Link send and main panner"), sigc::mem_fun(*this, &PannerUI::pan_bypass_toggle)));
send_link_menu_item = static_cast<Gtk::CheckMenuItem*> (&items.back());
send_link_menu_item->set_active (_panshell->is_linked_to_route ());
send_link_menu_item->signal_toggled().connect (sigc::mem_fun(*this, &PannerUI::pan_link_toggle));

View File

@ -195,7 +195,7 @@ RouteParams_UI::route_property_changed (const PropertyChange& what_changed, boos
}
if(!found) {
error << _("route display list item for renamed route not found!") << endmsg;
error << _("Display list item for renamed track/bus was not found!") << endmsg;
}
if (route == _route) {

View File

@ -274,7 +274,7 @@ RouteTimeAxisView::set_route (boost::shared_ptr<Route> rt)
set_tooltip(*solo_button,_("Solo"));
set_tooltip(*mute_button,_("Mute"));
set_tooltip(route_group_button, _("Route Group"));
set_tooltip(route_group_button, _("Group"));
mute_button->set_tweaks(ArdourButton::TrackHeader);
solo_button->set_tweaks(ArdourButton::TrackHeader);

View File

@ -1949,7 +1949,7 @@ RouteUI::save_as_template ()
const std::string dir = ARDOUR::user_route_template_directory ();
if (g_mkdir_with_parents (dir.c_str(), 0755)) {
error << string_compose (_("Cannot create route template directory %1"), dir) << endmsg;
error << string_compose (_("Cannot create template directory %1"), dir) << endmsg;
return;
}

View File

@ -278,7 +278,7 @@ SessionOptionEditor::SessionOptionEditor (Session* s)
add_option (_("Monitoring"), new OptionEditorBlank ());
/* Meterbridge */
add_option (_("Meterbridge"), new OptionEditorHeading (_("Route Display")));
add_option (_("Meterbridge"), new OptionEditorHeading (_("Display Options")));
add_option (_("Meterbridge"), new BoolOption (
"show-midi-on-meterbridge",

View File

@ -351,7 +351,7 @@ Session::import_pt (PTFFormat& ptf, ImportStatus& status)
/* generate a unique name by adding a number if needed */
uint32_t id = 0;
if (!find_route_name (trackname.c_str (), id, trackname, false)) {
fatal << _("PTImport: UINT_MAX routes? impossible!") << endmsg;
fatal << _("PTImport: failed to generate unique Track ID!") << endmsg;
abort(); /*NOTREACHED*/
}
existing_track->set_name (trackname);

View File

@ -2885,7 +2885,7 @@ Session::new_route_from_template (uint32_t how_many, PresentationInfo::order_t i
*/
if (!find_route_name (name_base.c_str(), ++number, name, (being_added > 1))) {
fatal << _("Session: UINT_MAX routes? impossible!") << endmsg;
fatal << _("Session: Failed to create unique ID for track from template.") << endmsg;
abort(); /*NOTREACHED*/
}
@ -2895,7 +2895,7 @@ Session::new_route_from_template (uint32_t how_many, PresentationInfo::order_t i
/* generate a new name by adding a number to the end of the template name */
if (!find_route_name (route_name.c_str(), ++number, name, true)) {
fatal << _("Session: UINT_MAX routes? impossible!") << endmsg;
fatal << _("Session: Failed to generate unique name and ID for track from template.") << endmsg;
abort(); /*NOTREACHED*/
}
}