From 39442ef38624ec3b1004cff3f54cb0d221513afa Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 22 Nov 2011 12:04:21 +0000 Subject: [PATCH] Separate visual and audio interfaces for translation. git-svn-id: svn://localhost/ardour2/branches/3.0@10765 d708f5d6-7413-0410-9779-e7cbd77b26cf --- gtk2_ardour/engine_dialog.cc | 2 +- gtk2_ardour/rc_option_editor.cc | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/gtk2_ardour/engine_dialog.cc b/gtk2_ardour/engine_dialog.cc index d6e6a52f46..46098c5ba6 100644 --- a/gtk2_ardour/engine_dialog.cc +++ b/gtk2_ardour/engine_dialog.cc @@ -179,7 +179,7 @@ EngineControl::EngineControl () basic_packer.attach (driver_combo, 1, 2, row, row + 1, FILL|EXPAND, (AttachOptions) 0); row++; - label = manage (new Label (_("Interface:"))); + label = manage (new Label (_("Audio|Interface:"))); label->set_alignment (0, 0.5); basic_packer.attach (*label, 0, 1, row, row + 1, FILL|EXPAND, (AttachOptions) 0); basic_packer.attach (interface_combo, 1, 2, row, row + 1, FILL|EXPAND, (AttachOptions) 0); diff --git a/gtk2_ardour/rc_option_editor.cc b/gtk2_ardour/rc_option_editor.cc index a82bce636e..00f56d9d88 100644 --- a/gtk2_ardour/rc_option_editor.cc +++ b/gtk2_ardour/rc_option_editor.cc @@ -1503,7 +1503,7 @@ RCOptionEditor::RCOptionEditor () /* INTERFACE */ - add_option (_("Interface"), + add_option (_("Visual|Interface"), new BoolOption ( "widget_prelight", _("Graphically indicate mouse pointer hovering over various widgets"), @@ -1513,7 +1513,7 @@ RCOptionEditor::RCOptionEditor () #ifndef GTKOSX /* font scaling does nothing with GDK/Quartz */ - add_option (_("Interface"), new FontScalingOptions (_rc_config)); + add_option (_("Visual|Interface"), new FontScalingOptions (_rc_config)); #endif /* The names of these controls must be the same as those given in MixerStrip @@ -1527,7 +1527,7 @@ RCOptionEditor::RCOptionEditor () _mixer_strip_visibility.add (0, X_("MeterPoint"), _("Meter Point")); add_option ( - _("Interface"), + _("Visual|Interface"), new VisibilityOption ( _("Mixer Strip"), &_mixer_strip_visibility, @@ -1536,7 +1536,7 @@ RCOptionEditor::RCOptionEditor () ) ); - add_option (_("Interface"), + add_option (_("Visual|Interface"), new BoolOption ( "default-narrow_ms", _("Use narrow mixer strips by default"), @@ -1544,7 +1544,7 @@ RCOptionEditor::RCOptionEditor () sigc::mem_fun (*_rc_config, &RCConfiguration::set_default_narrow_ms) )); - add_option (_("Interface"), new OptionEditorHeading (_("Metering"))); + add_option (_("Visual|Interface"), new OptionEditorHeading (_("Metering"))); ComboOption* mht = new ComboOption ( "meter-hold", @@ -1558,7 +1558,7 @@ RCOptionEditor::RCOptionEditor () mht->add (MeterHoldMedium, _("medium")); mht->add (MeterHoldLong, _("long")); - add_option (_("Interface"), mht); + add_option (_("Visual|Interface"), mht); ComboOption* mfo = new ComboOption ( "meter-falloff", @@ -1575,7 +1575,7 @@ RCOptionEditor::RCOptionEditor () mfo->add (METER_FALLOFF_FASTER, _("faster")); mfo->add (METER_FALLOFF_FASTEST, _("fastest")); - add_option (_("Interface"), mfo); + add_option (_("Visual|Interface"), mfo); } void -- 2.30.2