summaryrefslogtreecommitdiff
path: root/gtk2_ardour/actions.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2014-04-10 07:31:06 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2014-04-10 07:31:06 -0400
commit75210a480c1ce211a7b13f88fa593047b2378dfc (patch)
treef27a91a9f015451dcf4e2b40520a80261befc0e5 /gtk2_ardour/actions.cc
parent3ca332343ed08f11d4b8e0613b621c7f2f5fce79 (diff)
don't mention ardour.menus explicitly if an error loading menu file ocurrs
Diffstat (limited to 'gtk2_ardour/actions.cc')
-rw-r--r--gtk2_ardour/actions.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk2_ardour/actions.cc b/gtk2_ardour/actions.cc
index bdb6821f89..4c4117edcb 100644
--- a/gtk2_ardour/actions.cc
+++ b/gtk2_ardour/actions.cc
@@ -85,15 +85,15 @@ ActionManager::load_menus (const string& menus_file)
info << string_compose (_("Loading menus from %1"), ui_file) << endmsg;
loaded = true;
} catch (Glib::MarkupError& err) {
- error << string_compose (_("badly formatted UI definition file: %1"), err.what()) << endmsg;
- cerr << string_compose (_("badly formatted UI definition file: %1"), err.what()) << endl;
+ error << string_compose (_("badly formatted menu definition file: %1"), err.what()) << endmsg;
+ cerr << string_compose (_("badly formatted menu definition file: %1"), err.what()) << endl;
} catch (...) {
error << string_compose (_("%1 menu definition file not found"), PROGRAM_NAME) << endmsg;
}
if (!loaded) {
- 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;
+ cerr << string_compose (_("%1 will not work without a valid menu definition file"), PROGRAM_NAME) << endl;
+ error << string_compose (_("%1 will not work without a valid menu definition file"), PROGRAM_NAME) << endmsg;
exit(1);
}
}