diff options
author | Pytal <24800714+Pytal@users.noreply.github.com> | 2022-07-05 10:46:32 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-05 10:46:32 -0700 |
commit | 8b23c1c6772afdd4a1709bdb85cf3b88c5b5a6a5 (patch) | |
tree | 69831365536156708e3965d88265308778e0045b /apps/files/templates | |
parent | de3504150c44af8b20bc7fad9810abc3be0b9839 (diff) | |
parent | f5236cde1a2b9ec87794768568155344fa3a4461 (diff) | |
download | nextcloud-server-8b23c1c6772afdd4a1709bdb85cf3b88c5b5a6a5.tar.gz nextcloud-server-8b23c1c6772afdd4a1709bdb85cf3b88c5b5a6a5.zip |
Merge pull request #33107 from nextcloud/enh/a11y-dynamic-grid-toggle-tooltip
Diffstat (limited to 'apps/files/templates')
-rw-r--r-- | apps/files/templates/index.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/templates/index.php b/apps/files/templates/index.php index 0d95f2694d9..e12d9fafab3 100644 --- a/apps/files/templates/index.php +++ b/apps/files/templates/index.php @@ -6,7 +6,7 @@ aria-label="<?php p($l->t('Toggle grid view'))?>" <?php if ($_['showgridview']) { ?>checked="checked" <?php } ?>/> <label id="view-toggle" for="showgridview" tabindex="0" class="button <?php p($_['showgridview'] ? 'icon-toggle-filelist' : 'icon-toggle-pictures') ?>" - title="<?php p($l->t('Toggle grid view'))?>"></label> + title="<?php p($_['showgridview'] ? $l->t('Show list view') : $l->t('Show grid view'))?>"></label> <?php foreach ($_['appContents'] as $content) { ?> <div id="app-content-<?php p($content['id']) ?>" class="hidden viewcontainer"> |