mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-03-16 13:27:39 -04:00
See #1354 It's missing translations. Only English and French are available. Contributions wanted.
16 lines
777 B
PHTML
16 lines
777 B
PHTML
<ul class="nav nav-list aside">
|
|
<li class="nav-header"><?php echo _t('sub.menu.subscription_management'); ?></li>
|
|
|
|
<li class="item<?php echo Minz_Request::controllerName() == 'subscription' ? ' active' : ''; ?>">
|
|
<a href="<?php echo _url('subscription', 'index'); ?>"><?php echo _t('sub.menu.subscription_management'); ?></a>
|
|
</li>
|
|
|
|
<li class="item<?php echo Minz_Request::controllerName() == 'importExport' ? ' active' : ''; ?>">
|
|
<a href="<?php echo _url('importExport', 'index'); ?>"><?php echo _t('sub.menu.import_export'); ?></a>
|
|
</li>
|
|
|
|
<li class="item<?php echo Minz_Request::controllerName() == 'bookmarklet' ? ' active' : ''; ?>">
|
|
<a href="<?php echo _url('subscription', 'bookmarklet'); ?>"><?php echo _t('sub.menu.subscription_tools'); ?></a>
|
|
</li>
|
|
</ul>
|