diff options
author | zotlabs <mike@macgirvin.com> | 2017-02-06 14:32:50 -0800 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-02-06 14:32:50 -0800 |
commit | 6a083e845233475edaa711f4752e64eb42159c33 (patch) | |
tree | aeff3469648d20b3d0c05d4bf5eca44dc50118e2 /include | |
parent | 27cac334e199db13d899c00866ca9bc3cf9fc39f (diff) | |
download | volse-hubzilla-6a083e845233475edaa711f4752e64eb42159c33.tar.gz volse-hubzilla-6a083e845233475edaa711f4752e64eb42159c33.tar.bz2 volse-hubzilla-6a083e845233475edaa711f4752e64eb42159c33.zip |
bring back view links for all notification types (esp: network, channel) for easy access
Diffstat (limited to 'include')
-rw-r--r-- | include/nav.php | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/include/nav.php b/include/nav.php index a6e59a91f..35cf80340 100644 --- a/include/nav.php +++ b/include/nav.php @@ -192,9 +192,11 @@ EOT; $nav['network'] = array('network', t('Grid'), "", t('Your grid'),'network_nav_btn'); + $nav['network']['all'] = [ 'network', t('View your network/grid'), '','' ]; $nav['network']['mark'] = array('', t('Mark all grid notifications seen'), '',''); $nav['home'] = array('channel/' . $channel['channel_address'], t('Channel Home'), "", t('Channel home'),'home_nav_btn'); + $nav['home']['all'] = [ 'channel/' . $channel['channel_address'], t('View your channel home'), '' , '' ]; $nav['home']['mark'] = array('', t('Mark all channel notifications seen'), '',''); @@ -202,11 +204,11 @@ EOT; $nav['notifications'] = array('notifications/system', t('Notices'), "", t('Notifications'),'notifications_nav_btn'); - $nav['notifications']['all']=array('notifications/system', t('See all notifications'), "", ""); + $nav['notifications']['all']=array('notifications/system', t('View all notifications'), "", ""); $nav['notifications']['mark'] = array('', t('Mark all system notifications seen'), '',''); $nav['messages'] = array('mail/combined', t('Mail'), "", t('Private mail'),'mail_nav_btn'); - $nav['messages']['all']=array('mail/combined', t('See all private messages'), "", ""); + $nav['messages']['all']=array('mail/combined', t('View your private messages'), "", ""); $nav['messages']['mark'] = array('', t('Mark all private messages seen'), '',''); $nav['messages']['inbox'] = array('mail/inbox', t('Inbox'), "", t('Inbox')); $nav['messages']['outbox']= array('mail/outbox', t('Outbox'), "", t('Outbox')); @@ -214,7 +216,7 @@ EOT; $nav['all_events'] = array('events', t('Events'), "", t('Event Calendar'),'events_nav_btn'); - $nav['all_events']['all']=array('events', t('See all events'), "", ""); + $nav['all_events']['all']=array('events', t('View events'), "", ""); $nav['all_events']['mark'] = array('', t('Mark all events seen'), '',''); if(! $basic) |