summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDennis Müller <dennismueller.kontakt@gmail.com>2022-02-17 13:48:42 +0100
committerSean Molenaar <SMillerDev@users.noreply.github.com>2022-02-21 17:31:49 +0100
commitdbf6db8bff43f1bd0798ac20b0a5cf733df0c7ac (patch)
tree430103d5442b8b6ab1efcd3c03e9f6f3d94e2c00
parentadb31de905565543da6ff3fe676f8a1359a5344e (diff)
Update shortcuts
Shortcut "q" is not supported anymore as stated in https://github.com/nextcloud/news/issues/1613#issuecomment-991891468 Shortcuts "c" and "v" seemed to have swapped descriptions. Signed-off-by: Dennis Müller <dennis.mueller@bib.uni-mannheim.de>
-rw-r--r--CHANGELOG.md1
-rw-r--r--templates/part.content.shortcuts.php10
2 files changed, 4 insertions, 7 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8d5c984bf..26aa30f9b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,6 +6,7 @@ The format is mostly based on [Keep a Changelog](https://keepachangelog.com/en/1
## [18.x.x]
### Changed
+- Change shortcut descriptions. (#1669)
### Fixed
diff --git a/templates/part.content.shortcuts.php b/templates/part.content.shortcuts.php
index 81c7f1b42..8c616db7d 100644
--- a/templates/part.content.shortcuts.php
+++ b/templates/part.content.shortcuts.php
@@ -55,24 +55,20 @@
</tr>
<tr>
<td>c</td>
- <td><?php p($l->t('Load next folder')); ?></td>
+ <td><?php p($l->t('Load previous folder')); ?></td>
</tr>
<tr>
<td>v</td>
- <td><?php p($l->t('Load previous folder')); ?></td>
+ <td><?php p($l->t('Load next folder')); ?></td>
</tr>
<tr>
<td>a</td>
<td><?php p($l->t('Scroll to active navigation entry')); ?></td>
</tr>
<tr>
- <td>q</td>
- <td><?php p($l->t('Focus search field')); ?></td>
- </tr>
- <tr>
<td>shift + a</td>
<td><?php p($l->t('Mark current article\'s feed/folder read')); ?></td>
</tr>
</table>
</div>
-</div> \ No newline at end of file
+</div>