From c7ec2bbe1f33197afd5839ed684cb7ac1c33f6ef Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Wed, 6 Jul 2022 22:56:51 +0200 Subject: [PATCH] Consistent monitor-choice text This uses uppercase like the application-name and matches the label "Record monitoring handled by: ..." --- gtk2_ardour/rc_option_editor.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gtk2_ardour/rc_option_editor.cc b/gtk2_ardour/rc_option_editor.cc index d492b50a12..499aa38131 100644 --- a/gtk2_ardour/rc_option_editor.cc +++ b/gtk2_ardour/rc_option_editor.cc @@ -4124,13 +4124,13 @@ These settings will only take effect after %1 is restarted.\n\ ); if (AudioEngine::instance()->port_engine().can_monitor_input()) { - mm->add (HardwareMonitoring, _("via Audio Driver")); + mm->add (HardwareMonitoring, _("Audio Driver")); } string prog (PROGRAM_NAME); boost::algorithm::to_lower (prog); mm->add (SoftwareMonitoring, string_compose (_("%1"), prog)); - mm->add (ExternalMonitoring, _("audio hardware")); + mm->add (ExternalMonitoring, _("Audio Hardware")); add_option (_("Monitoring"), mm);