diff options
author | friendica <info@friendica.com> | 2012-04-30 05:15:29 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-04-30 05:15:29 -0700 |
commit | 05df5337dd19827b1b6482e4d38db90a614101a3 (patch) | |
tree | 983b71becb99339d92ca2466cdf19b11b8bb9408 /boot.php | |
parent | 5d10672fb84e467a09c31cc06a21cc10d4082a48 (diff) | |
download | volse-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.php | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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'), ); } |