From dccb2b650ec6bc3fab30e1cc3e0e450c3124d2d8 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Fri, 5 Jun 2020 22:52:36 +0200 Subject: [PATCH] Mark Prefs Tab action name un-translatable This is used with string_compose ("detach-%1") etc, and "preferences" may be translated by gtk or 3rd party translations (Ardour itself only has upper-case "Preferences" as translatable string) --- gtk2_ardour/rc_option_editor.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/rc_option_editor.cc b/gtk2_ardour/rc_option_editor.cc index d7d8854ae7..5cf83ae1af 100644 --- a/gtk2_ardour/rc_option_editor.cc +++ b/gtk2_ardour/rc_option_editor.cc @@ -2287,7 +2287,7 @@ MidiPortOptions::pretty_name_edit (std::string const & path, string const & new_ RCOptionEditor::RCOptionEditor () : OptionEditorContainer (Config, string_compose (_("%1 Preferences"), PROGRAM_NAME)) /* pack self-as-vbox into tabbable */ - , Tabbable (*this, _("Preferences"), _("preferences"), /* detached by default */ false) + , Tabbable (*this, _("Preferences"), X_("preferences"), /* detached by default */ false) , _rc_config (Config) , _mixer_strip_visibility ("mixer-element-visibility") {