diff options
author | Björn Schießle <schiessle@owncloud.com> | 2013-01-29 10:03:04 +0100 |
---|---|---|
committer | Björn Schießle <schiessle@owncloud.com> | 2013-01-29 10:03:04 +0100 |
commit | d10e137939d8f88d3dd742ec71c653628467c51d (patch) | |
tree | 18a3a6669ca11ad5225f092133298b6b0ac481f3 /apps/files_trashbin/templates | |
parent | 320233ec3dc0bd1c3a46b8dedc4bf9f579804653 (diff) | |
download | nextcloud-server-d10e137939d8f88d3dd742ec71c653628467c51d.tar.gz nextcloud-server-d10e137939d8f88d3dd742ec71c653628467c51d.zip |
icons added; empty trash bin message added
Diffstat (limited to 'apps/files_trashbin/templates')
-rw-r--r-- | apps/files_trashbin/templates/index.php | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/apps/files_trashbin/templates/index.php b/apps/files_trashbin/templates/index.php index a9cb216b1f7..ebabec2d4d0 100644 --- a/apps/files_trashbin/templates/index.php +++ b/apps/files_trashbin/templates/index.php @@ -5,8 +5,8 @@ </div> <div id='notification'></div> -<?php if (isset($_['files']) and $_['isCreatable'] and count($_['files'])==0):?> - <div id="emptyfolder"><?php echo $l->t('Nothing in here. Upload something!')?></div> +<?php if (isset($_['files']) && count($_['files'])==0):?> + <div id="emptyfolder"><?php echo $l->t('Nothing in here. Trash bin empty!')?></div> <?php endif; ?> <table> @@ -17,9 +17,8 @@ <span class='name'><?php echo $l->t( 'Name' ); ?></span> <span class='selectedActions'> <a href="" class="undelete"> - <!-- <img class="svg" alt="Undelete" - src="<?php echo OCP\image_path("core", "actions/download.svg"); ?>" /> - --> + <img class="svg" alt="Undelete" + src="<?php echo OCP\image_path("core", "actions/undelete.png"); ?>" /> <?php echo $l->t('Undelete')?> </a> </span> |