diff options
| author | 2020-03-23 23:05:01 +0100 | |
|---|---|---|
| committer | 2020-03-23 23:05:01 +0100 | |
| commit | a7b72481e7cbc14d729f85816b6851ee6fcf711c (patch) | |
| tree | 96f01bf865726a8a6a864cf75ddcf9e2b89bf0eb /app/views | |
| parent | 8fabed337a6a11d61e2ac969acc9690d296f8cb6 (diff) | |
Shortcut mark previous articles as read (#2843)
* Shortcut mark previous articles as read
Address part of https://github.com/FreshRSS/FreshRSS/issues/2836
The shortcut [shift]+[r] now marks previous articles as read;
The previous action of marking all articles as read is now achieved by
[alt]+[r]
So this is a slight breaking change, but I like the logic of the
upward-facing [shift] arrow to hint at previous articles, while [alt] is
more like "all", at least to my eyes :-)
* Update app/i18n/nl/conf.php
Co-Authored-By: Frans de Jonge <fransdejonge@gmail.com>
* [⇧ Shift] / [Alt ⎇]
With standard Unicode signs
* <kbd> + CSS styling
* Missing themes
Tested with all themes
* Travis CSS
Co-authored-by: Frans de Jonge <fransdejonge@gmail.com>
Diffstat (limited to 'app/views')
| -rw-r--r-- | app/views/configure/shortcut.phtml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app/views/configure/shortcut.phtml b/app/views/configure/shortcut.phtml index 4412266cc..598ce1eed 100644 --- a/app/views/configure/shortcut.phtml +++ b/app/views/configure/shortcut.phtml @@ -98,13 +98,15 @@ <legend><?= _t('conf.shortcut.article_action') ?></legend> <div class="form-group"> + <p class="alert alert-warn"><?= _t('conf.shortcut.shift_for_all_read') ?></p> <label class="group-name" for="mark_read"><?= _t('conf.shortcut.mark_read') ?></label> <div class="group-controls"> <input type="text" id="mark_read" name="shortcuts[mark_read]" list="keys" value="<?= $s['mark_read'] ?>" data-leave-validation="<?= $s['mark_read'] ?>"/> - <?= _t('conf.shortcut.shift_for_all_read') ?> </div> </div> + <p class="alert alert-warn"><?= _t('conf.shortcut.navigation_no_mod_help') ?></p> + <div class="form-group"> <label class="group-name" for="mark_favorite"><?= _t('conf.shortcut.mark_favorite') ?></label> <div class="group-controls"> |
