aboutsummaryrefslogtreecommitdiffstats
path: root/files/templates
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <jan@unhosted.org>2012-04-15 17:49:40 +0200
committerJan-Christoph Borchardt <jan@unhosted.org>2012-04-15 17:49:54 +0200
commit12818093007d5bdce5519b5015e2a0748c98e24d (patch)
treeef7f3f9677af8d8778acd029a409731875361056 /files/templates
parente5cda3abcdb244bfa1f9e988cdc8089476151b03 (diff)
downloadnextcloud-server-12818093007d5bdce5519b5015e2a0748c98e24d.tar.gz
nextcloud-server-12818093007d5bdce5519b5015e2a0748c98e24d.zip
improving file actions also for multiselect
Diffstat (limited to 'files/templates')
-rw-r--r--files/templates/index.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/files/templates/index.php b/files/templates/index.php
index f591d066d8c..f423b96ba1e 100644
--- a/files/templates/index.php
+++ b/files/templates/index.php
@@ -41,14 +41,14 @@
<?php if(!isset($_['readonly']) || !$_['readonly']) { ?><input type="checkbox" id="select_all" /><?php } ?>
<span class='name'><?php echo $l->t( 'Name' ); ?></span>
<span class='selectedActions'>
- <?php if($_['allowZipDownload']) : ?>
- <a href="" title="<?php echo $l->t('Download')?>" class="download"><img class='svg' alt="Download" src="<?php echo image_path("core", "actions/download.svg"); ?>" /></a>
- <?php endif; ?>
- <a href="" title="Share" class="share"><img class='svg' alt="Share" src="<?php echo image_path("core", "actions/share.svg"); ?>" /></a>
+ <a href="" class="share"><img class='svg' alt="Share" src="<?php echo image_path("core", "actions/share.svg"); ?>" /> <?php echo $l->t('Share')?></a>
+ <?php if($_['allowZipDownload']) : ?>
+ <a href="" class="download"><img class='svg' alt="Download" src="<?php echo image_path("core", "actions/download.svg"); ?>" /> <?php echo $l->t('Download')?></a>
+ <?php endif; ?>
</span>
</th>
<th id="headerSize"><?php echo $l->t( 'Size' ); ?></th>
- <th id="headerDate"><span id="modified"><?php echo $l->t( 'Modified' ); ?></span><span class="selectedActions"><a href="" title="Delete" class="delete"><img class="svg" alt="<?php echo $l->t('Delete')?>" src="<?php echo image_path("core", "actions/delete.svg"); ?>" /></a></span></th>
+ <th id="headerDate"><span id="modified"><?php echo $l->t( 'Modified' ); ?></span><span class="selectedActions"><a href="" class="delete"><?php echo $l->t('Delete all')?> <img class="svg" alt="<?php echo $l->t('Delete')?>" src="<?php echo image_path("core", "actions/delete.svg"); ?>" /></a></span></th>
</tr>
</thead>
<tbody id="fileList" data-readonly="<?php echo $_['readonly'];?>">