Files
gallery3/modules/gallery/views/quick_delete_confirm.html.php
Johan Cwiklinski 6746792bdf Drop short_tags
2018-05-19 17:01:37 +02:00

13 lines
470 B
PHP

<?php defined("SYSPATH") or die("No direct script access.") ?>
<div class="ui-helper-clearfix">
<p>
<?php 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))) ?>
<?php else: ?>
<?= t("Are you sure you want to delete <b>%title</b>?", array("title" => html::purify($item->title))) ?>
<?php endif ?>
</p>
<?= $form ?>
</div>