summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2009-06-15 01:41:34 +0800
committer <unostar@danalan.info>2009-06-15 04:25:41 +0800
commitfda706f55cab4bd65b90e25a82b59a83e40443ed (patch)
treee36f91603bb2a2789d1a1bcc51d8298baab0f6b9
parentb0e7dded2362de6cc7b2bfad47286de322d79064 (diff)
Get rid of the word "items" in the delete confirmation dialog.
Signed-off-by: <unostar@danalan.info>
-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));
}