summaryrefslogtreecommitdiff
path: root/gtk2_ardour/ardour_ui.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2012-02-29 20:18:18 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2012-02-29 20:18:18 +0000
commitbb98baf4136f00cdad0aa962758aa6231478344a (patch)
treea3726a7832efb9f7be042a7df753d0feaad6a6eb /gtk2_ardour/ardour_ui.cc
parentc69f050726e6110b317bf63ee2138e58b709a9ca (diff)
fix a few dangling uses of Ardour as program name, in favor of PROGRAM_NAME
git-svn-id: svn://localhost/ardour2/branches/3.0@11563 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/ardour_ui.cc')
-rw-r--r--gtk2_ardour/ardour_ui.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk2_ardour/ardour_ui.cc b/gtk2_ardour/ardour_ui.cc
index 77de24263a..56eced0d51 100644
--- a/gtk2_ardour/ardour_ui.cc
+++ b/gtk2_ardour/ardour_ui.cc
@@ -3110,9 +3110,9 @@ require some unused files to continue to exist."));
}
if (removed > 1) {
- txt.set_text (string_compose (plural_msg, removed, dead_directory, space_adjusted, bprefix));
+ txt.set_text (string_compose (plural_msg, removed, dead_directory, space_adjusted, bprefix, PROGRAM_NAME));
} else {
- txt.set_text (string_compose (singular_msg, removed, dead_directory, space_adjusted, bprefix));
+ txt.set_text (string_compose (singular_msg, removed, dead_directory, space_adjusted, bprefix, PROGRAM_NAME));
}
dhbox.pack_start (*dimage, true, false, 5);
@@ -3212,7 +3212,7 @@ Clean-up will move all unused files to a \"dead\" location."));
The following %1 files were not in use and \n\
have been moved to:\n\n\
%2\n\n\
-After a restart of Ardour,\n\n\
+After a restart of %5,\n\n\
Session -> Clean-up -> Flush Wastebasket\n\n\
will release an additional\n\
%3 %4bytes of disk space.\n"),
@@ -3220,7 +3220,7 @@ will release an additional\n\
The following file was not in use and \n\
has been moved to:\n \
%2\n\n\
-After a restart of Ardour,\n\n\
+After a restart of %5,\n\n\
Session -> Clean-up -> Flush Wastebasket\n\n\
will release an additional\n\
%3 %4bytes of disk space.\n"