summaryrefslogtreecommitdiff
path: root/gtk2_ardour/session_option_editor.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2012-02-29 20:18:18 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2012-02-29 20:18:18 +0000
commitbb98baf4136f00cdad0aa962758aa6231478344a (patch)
treea3726a7832efb9f7be042a7df753d0feaad6a6eb /gtk2_ardour/session_option_editor.cc
parentc69f050726e6110b317bf63ee2138e58b709a9ca (diff)
fix a few dangling uses of Ardour as program name, in favor of PROGRAM_NAME
git-svn-id: svn://localhost/ardour2/branches/3.0@11563 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/session_option_editor.cc')
-rw-r--r--gtk2_ardour/session_option_editor.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk2_ardour/session_option_editor.cc b/gtk2_ardour/session_option_editor.cc
index c494870d7b..b524644542 100644
--- a/gtk2_ardour/session_option_editor.cc
+++ b/gtk2_ardour/session_option_editor.cc
@@ -135,7 +135,7 @@ SessionOptionEditor::SessionOptionEditor (Session* s)
add_option (_("Timecode"), new BoolOption (
"jack-time-master",
- _("Ardour is JACK Time Master (provides Bar|Beat|Tick and other information to JACK)"),
+ string_compose (_("%1 is JACK Time Master (provides Bar|Beat|Tick and other information to JACK)"), PROGRAM_NAME),
sigc::mem_fun (*_session_config, &SessionConfiguration::get_jack_time_master),
sigc::mem_fun (*_session_config, &SessionConfiguration::set_jack_time_master)
));