summaryrefslogtreecommitdiff
path: root/modules/gallery
diff options
context:
space:
mode:
authorTim Almdal <tnalmdal@shaw.ca>2009-06-14 12:40:42 -0700
committerTim Almdal <tnalmdal@shaw.ca>2009-06-14 12:40:42 -0700
commitf18fb934427ce09896b51d49520b04fba0f1dd44 (patch)
treef3af7e63cfcc1fcdd7ea8e69a9408fcd546ae5f1 /modules/gallery
parent8b7f7a2fbe30c8e17f60177db7f371e1d1f2152c (diff)
parent80b464fdbda4a10a318fa2203dbea8d51ba83709 (diff)
Merge branch 'master' of git@github.com:gallery/gallery3
Diffstat (limited to 'modules/gallery')
-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));
}