summaryrefslogtreecommitdiff
path: root/gtk2_ardour/actions.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/actions.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/actions.cc')
-rw-r--r--gtk2_ardour/actions.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk2_ardour/actions.cc b/gtk2_ardour/actions.cc
index 5836a4c201..6d29737b86 100644
--- a/gtk2_ardour/actions.cc
+++ b/gtk2_ardour/actions.cc
@@ -87,12 +87,12 @@ ActionManager::init ()
error << string_compose (_("badly formatted UI definition file: %1"), err.what()) << endmsg;
cerr << string_compose (_("badly formatted UI definition file: %1"), err.what()) << endl;
} catch (...) {
- error << _("Ardour menu definition file not found") << endmsg;
+ error << string_compose (_("%1 menu definition file not found"), PROGRAM_NAME) << endmsg;
}
if (!loaded) {
- cerr << _("ardour will not work without a valid ardour.menus file") << endl;
- error << _("ardour will not work without a valid ardour.menus file") << endmsg;
+ cerr << string_compose (_("%1 will not work without a valid ardour.menus file"), PROGRAM_NAME) << endl;
+ error << string_compose (_("%1 will not work without a valid ardour.menus file"), PROGRAM_NAME) << endmsg;
exit(1);
}
}