summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2009-06-14 10:41:34 -0700
committerBharat Mediratta <bharat@menalto.com>2009-06-14 10:41:34 -0700
commitaaa215a285845b6dbfcb1eed86593dee1f557b43 (patch)
tree3780f82b97935be6f4bf083f2c0b4e38cc0c2704 /modules
parent7773d0afe835e040eb0238247b98eae305c0c9e9 (diff)
Get rid of the word "items" in the delete confirmation dialog.
Diffstat (limited to 'modules')
-rw-r--r--modules/gallery/controllers/quick.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/gallery/controllers/quick.php b/modules/gallery/controllers/quick.php
index 30383307..cff6686b 100644
--- a/modules/gallery/controllers/quick.php
+++ b/modules/gallery/controllers/quick.php
@@ -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));
}