blob: 176ffb964e112c9b56e1dcaa94934274a4935dd4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<?php defined("SYSPATH") or die("No direct script access.") ?>
<div class="ui-helper-clearfix">
<p>
<? if ($item->is_album()): ?>
<?= t("Delete the album <b>%title</b>? All photos and movies in the album will also be deleted.",
array("title" => html::purify($item->title))) ?>
<? else: ?>
<?= t("Are you sure you want to delete <b>%title</b>?", array("title" => html::purify($item->title))) ?>
<? endif ?>
</p>
<?= $form ?>
</div>
|