This repository has been archived on 2021-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
gallery3-debian/modules/gallery/views/quick_delete_confirm.html.php

13 lines
461 B
PHP
Raw Normal View History

2013-04-04 09:26:00 +00:00
<?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>