diff options
| author | 2020-07-23 12:15:46 +0200 | |
|---|---|---|
| committer | 2020-07-23 12:15:46 +0200 | |
| commit | a23a7f2dbbacf915be5fbb751d7e77e1609f91a5 (patch) | |
| tree | 482abf033926024f23191bc814628e35c544b7e7 /app/layout | |
| parent | 6c8120f9ba04a6c5d2808d944a3de71d91bb17b6 (diff) | |
[lang] Tags management → tag management (#3125)
* [lang] Tags management → tag management
Cf. <https://github.com/FreshRSS/FreshRSS/pull/3121#issuecomment-662922474>.
* Move tag management underneath subscription management
Diffstat (limited to 'app/layout')
| -rw-r--r-- | app/layout/aside_subscription.phtml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/app/layout/aside_subscription.phtml b/app/layout/aside_subscription.phtml index 43c60db72..15357a7d3 100644 --- a/app/layout/aside_subscription.phtml +++ b/app/layout/aside_subscription.phtml @@ -9,6 +9,10 @@ <a href="<?= _url('subscription', 'index') ?>"><?= _t('sub.menu.subscription_management') ?></a> </li> + <li class="item<?= Minz_Request::controllerName() === 'tag' ? ' active' : '' ?>"> + <a href="<?= _url('tag', 'index') ?>"><?= _t('sub.menu.tag_management') ?></a> + </li> + <li class="item<?= Minz_Request::controllerName() === 'importExport' ? ' active' : '' ?>"> <a href="<?= _url('importExport', 'index') ?>"><?= _t('sub.menu.import_export') ?></a> </li> @@ -16,8 +20,4 @@ <li class="item<?= Minz_Request::controllerName() === 'subscription' && Minz_Request::actionName() === 'bookmarklet' ? ' active' : '' ?>"> <a href="<?= _url('subscription', 'bookmarklet') ?>"><?= _t('sub.menu.subscription_tools') ?></a> </li> - - <li class="item<?= Minz_Request::controllerName() === 'tag' ? ' active' : '' ?>"> - <a href="<?= _url('tag', 'index') ?>"><?= _t('sub.menu.tag_management') ?></a> - </li> </ul> |
