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

Signed-off-by:  <unostar@danalan.info>
This commit is contained in:
Bharat Mediratta
2009-06-15 01:41:34 +08:00
committed by
parent b0e7dded23
commit fda706f55c

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