Get rid of the word "items" in the delete confirmation dialog.

This commit is contained in:
Bharat Mediratta
2009-06-14 10:41:34 -07:00
parent 7773d0afe8
commit aaa215a285
+3 -1
View File
@@ -101,7 +101,9 @@ class Quick_Controller extends Controller {
access::required("edit", $item);
if ($item->is_album()) {
print t("Delete the album <b>%title</b>? All items within the album will also be deleted.", array("title" => $item->title));
print t(
"Delete the album <b>%title</b>? All photos and movies in the album will also be deleted.",
array("title" => $item->title));
} else {
print t("Are you sure you want to delete <b>%title</b>?", array("title" => $item->title));
}