summaryrefslogtreecommitdiff
path: root/gtk2_ardour/missing_file_dialog.cc
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2010-12-26 02:43:00 +0000
committerCarl Hetherington <carl@carlh.net>2010-12-26 02:43:00 +0000
commitbc29adf05493ff2503b230604b237b75eb7af7fa (patch)
tree389864d5f3239ba805a36c84207108bf3629e145 /gtk2_ardour/missing_file_dialog.cc
parentbffe0c4f9825b9609acba67dd574d895aa619b66 (diff)
Fix Ardour -> PROGRAM_NAME (#3627).
git-svn-id: svn://localhost/ardour2/branches/3.0@8342 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/missing_file_dialog.cc')
-rw-r--r--gtk2_ardour/missing_file_dialog.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk2_ardour/missing_file_dialog.cc b/gtk2_ardour/missing_file_dialog.cc
index df09d8c218..56139be32f 100644
--- a/gtk2_ardour/missing_file_dialog.cc
+++ b/gtk2_ardour/missing_file_dialog.cc
@@ -61,8 +61,8 @@ MissingFileDialog::MissingFileDialog (Session* s, const std::string& path, DataT
replace_all (dirstr, ":", "\n");
msg.set_justify (JUSTIFY_CENTER);
- msg.set_markup (string_compose (_("Ardour cannot find the %1 file\n\n<i>%2</i>\n\nin any of these folders:\n\n\
-<tt>%3</tt>\n\n"), typestr, path, dirstr));
+ msg.set_markup (string_compose (_("%1 cannot find the %2 file\n\n<i>%3</i>\n\nin any of these folders:\n\n\
+<tt>%4</tt>\n\n"), PROGRAM_NAME, typestr, path, dirstr));
HBox* hbox = manage (new HBox);
hbox->pack_start (msg, false, true);