diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-12-18 16:54:39 +0100 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-12-18 16:54:39 +0100 |
commit | 7faf3d17e58ff86c092cd33073975871c58767f6 (patch) | |
tree | bc07f8a79717256d87de7f2a673ddf01bbcc6739 /apps/files_trashbin/templates/index.php | |
parent | 43b2af7333b3b040995c6c2909327fd9a693679f (diff) | |
download | nextcloud-server-7faf3d17e58ff86c092cd33073975871c58767f6.tar.gz nextcloud-server-7faf3d17e58ff86c092cd33073975871c58767f6.zip |
fix accessibility for deleted files
Diffstat (limited to 'apps/files_trashbin/templates/index.php')
-rw-r--r-- | apps/files_trashbin/templates/index.php | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/apps/files_trashbin/templates/index.php b/apps/files_trashbin/templates/index.php index 82bc360a9f5..fe1311340c7 100644 --- a/apps/files_trashbin/templates/index.php +++ b/apps/files_trashbin/templates/index.php @@ -18,11 +18,13 @@ <th id='headerName' class="hidden column-name"> <div id="headerName-container"> <input type="checkbox" id="select_all_trash" class="select-all"/> - <label for="select_all_trash"></label> + <label for="select_all_trash"> + <span class="hidden-visually"><?php p($l->t('Select all'))?></span> + </label> <a class="name sort columntitle" data-sort="name"><span><?php p($l->t( 'Name' )); ?></span><span class="sort-indicator"></span></a> <span id="selectedActionsList" class='selectedActions'> <a href="" class="undelete"> - <img class="svg" alt="<?php p($l->t( 'Restore' )); ?>" + <img class="svg" alt="" src="<?php print_unescaped(OCP\image_path("core", "actions/history.svg")); ?>" /> <?php p($l->t('Restore'))?> </a> @@ -34,7 +36,7 @@ <span class="selectedActions"> <a href="" class="delete-selected"> <?php p($l->t('Delete'))?> - <img class="svg" alt="<?php p($l->t('Delete'))?>" + <img class="svg" alt="" src="<?php print_unescaped(OCP\image_path("core", "actions/delete.svg")); ?>" /> </a> </span> |