13
0

Fix Ardour -> PROGRAM_NAME (#3627).

git-svn-id: svn://localhost/ardour2/branches/3.0@8342 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2010-12-26 02:43:00 +00:00
parent bffe0c4f98
commit bc29adf054

View File

@ -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);