diff options
| author | 2024-06-13 16:40:54 +0200 | |
|---|---|---|
| committer | 2024-06-13 16:40:54 +0200 | |
| commit | 20f13312d15a1408365b859b14621364009990cd (patch) | |
| tree | 7519ad4014f7000e24c0c95862d5adafc2b31317 /app/views/configure/reading.phtml | |
| parent | 35ee123dda654facadf82037675c21ca215d7fec (diff) | |
Reading view: action icons position (#6297)
* add configs in reading
* implementation into the reading view
* CSS
* i18n
* Credits to joshka
* Update article.phtml
* fix
* fix
* <br />
* Update app/i18n/fr/conf.php
Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr>
* Update app/i18n/en/conf.php
Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr>
* fix French
* show_articleicons => show_article_icons
* Update app/i18n/en/conf.php
Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr>
* Update app/i18n/en-us/conf.php
Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr>
---------
Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr>
Diffstat (limited to 'app/views/configure/reading.phtml')
| -rw-r--r-- | app/views/configure/reading.phtml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/app/views/configure/reading.phtml b/app/views/configure/reading.phtml index e475b220c..8df461ef8 100644 --- a/app/views/configure/reading.phtml +++ b/app/views/configure/reading.phtml @@ -137,6 +137,15 @@ </div> </div> <div class="form-group"> + <label class="group-name" for="show_article_icons"><?= _t('conf.reading.article.icons') ?></label> + <div class="group-controls"> + <select name="show_article_icons" id="show_article_icons" data-leave-validation="<?= FreshRSS_Context::userConf()->show_article_icons ?>"> + <option value="t" <?= FreshRSS_Context::userConf()->show_article_icons === 't' ? ' selected="selected"' : '' ?> data-input-visible="true"><?= _t('conf.reading.article.icons.above_title') ?></option> + <option value="a" <?= FreshRSS_Context::userConf()->show_article_icons === 'a' ? ' selected="selected"' : '' ?> data-input-visible="true"><?= _t('conf.reading.article.icons.with_authors') ?></option> + </select> + </div> + </div> + <div class="form-group"> <label class="group-name" for="show_tags"><?= _t('conf.reading.article.tags') ?></label> <div class="group-controls"> <select class="select-input-changer" name="show_tags" id="show_tags" data-name="show_tags_max" data-leave-validation="<?= FreshRSS_Context::userConf()->show_tags ?>"> |
