aboutsummaryrefslogtreecommitdiffstats
path: root/boot.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-04-30 05:15:29 -0700
committerfriendica <info@friendica.com>2012-04-30 05:15:29 -0700
commit05df5337dd19827b1b6482e4d38db90a614101a3 (patch)
tree983b71becb99339d92ca2466cdf19b11b8bb9408 /boot.php
parent5d10672fb84e467a09c31cc06a21cc10d4082a48 (diff)
downloadvolse-hubzilla-05df5337dd19827b1b6482e4d38db90a614101a3.tar.gz
volse-hubzilla-05df5337dd19827b1b6482e4d38db90a614101a3.tar.bz2
volse-hubzilla-05df5337dd19827b1b6482e4d38db90a614101a3.zip
start adding tooltips to tab menus
Diffstat (limited to 'boot.php')
-rw-r--r--boot.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/boot.php b/boot.php
index d9bbfc136..016adfd44 100644
--- a/boot.php
+++ b/boot.php
@@ -1472,16 +1472,19 @@ if(! function_exists('profile_tabs')){
'label'=>t('Status'),
'url' => $url,
'sel' => ((!isset($tab)&&$a->argv[0]=='profile')?'active':''),
+ 'title' => t('Status Messages and Posts'),
),
array(
'label' => t('Profile'),
'url' => $url.'/?tab=profile',
'sel' => ((isset($tab) && $tab=='profile')?'active':''),
+ 'title' => t('Profile Details'),
),
array(
'label' => t('Photos'),
'url' => $a->get_baseurl() . '/photos/' . $nickname,
'sel' => ((!isset($tab)&&$a->argv[0]=='photos')?'active':''),
+ 'title' => t('Photo Albums'),
),
);
@@ -1490,11 +1493,13 @@ if(! function_exists('profile_tabs')){
'label' => t('Events'),
'url' => $a->get_baseurl() . '/events',
'sel' =>((!isset($tab)&&$a->argv[0]=='events')?'active':''),
+ 'title' => t('Events and Calendar'),
);
$tabs[] = array(
'label' => t('Personal Notes'),
'url' => $a->get_baseurl() . '/notes',
'sel' =>((!isset($tab)&&$a->argv[0]=='notes')?'active':''),
+ 'title' => t('Only You Can See This'),
);
}