summaryrefslogtreecommitdiff
path: root/gtk2_ardour/main.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2010-03-15 02:31:27 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2010-03-15 02:31:27 +0000
commit44f4b84551d36ef4103d09452768f5ba53e0002c (patch)
tree831b1ce8516b74a364196d181531079960fa42b1 /gtk2_ardour/main.cc
parentb56ad64ee304c53063ddf67f0654ac10738efc68 (diff)
finalize PROGRAM_NAME change for ardour3
git-svn-id: svn://localhost/ardour2/branches/3.0@6759 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/main.cc')
-rw-r--r--gtk2_ardour/main.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk2_ardour/main.cc b/gtk2_ardour/main.cc
index 6ad5d245d8..2b16de3d70 100644
--- a/gtk2_ardour/main.cc
+++ b/gtk2_ardour/main.cc
@@ -66,7 +66,7 @@ static const char* localedir = LOCALEDIR;
void
gui_jack_error ()
{
- MessageDialog win (_("Ardour could not connect to JACK."),
+ MessageDialog win (string_compose (_("%1 could not connect to JACK."), PROGRAM_NAME),
false,
Gtk::MESSAGE_INFO,
(Gtk::ButtonsType)(Gtk::BUTTONS_NONE));
@@ -348,7 +348,7 @@ int main (int argc, char *argv[])
return curvetest (curvetest_file);
}
- cout << _("Ardour/GTK ")
+ cout << PROGRAM_NAME
<< VERSIONSTRING
<< _(" (built using ")
<< svn_revision
@@ -366,7 +366,7 @@ int main (int argc, char *argv[])
cerr << _("Copyright (C) 1999-2008 Paul Davis") << endl
<< _("Some portions Copyright (C) Steve Harris, Ari Johnson, Brett Viren, Joel Baker") << endl
<< endl
- << _("Ardour comes with ABSOLUTELY NO WARRANTY") << endl
+ << string_compose (_("%1 comes with ABSOLUTELY NO WARRANTY"), PROGRAM_NAME) << endl
<< _("not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.") << endl
<< _("This is free software, and you are welcome to redistribute it ") << endl
<< _("under certain conditions; see the source for copying conditions.")