diff options
author | Michael Vogel <icarus@dabo.de> | 2012-04-06 00:00:46 +0200 |
---|---|---|
committer | Michael Vogel <icarus@dabo.de> | 2012-04-06 00:00:46 +0200 |
commit | 34d268544e565985014ada4369e8673c87883a0a (patch) | |
tree | 49a30ed61668405d731df2e32b4548516ecb58b5 /view/theme/diabook-red/theme.php | |
parent | 81dfb61f930005f0f65b1f72935c10edc247a985 (diff) | |
parent | 9b6e91086b29554fd04362f6c87ea148718e8b1c (diff) | |
download | volse-hubzilla-34d268544e565985014ada4369e8673c87883a0a.tar.gz volse-hubzilla-34d268544e565985014ada4369e8673c87883a0a.tar.bz2 volse-hubzilla-34d268544e565985014ada4369e8673c87883a0a.zip |
Merge commit 'upstream/master'
Diffstat (limited to 'view/theme/diabook-red/theme.php')
-rwxr-xr-x | view/theme/diabook-red/theme.php | 31 |
1 files changed, 25 insertions, 6 deletions
diff --git a/view/theme/diabook-red/theme.php b/view/theme/diabook-red/theme.php index a6b2ea823..0db9818e4 100755 --- a/view/theme/diabook-red/theme.php +++ b/view/theme/diabook-red/theme.php @@ -3,7 +3,7 @@ /* * Name: Diabook-red * Description: Diabook-red: report bugs and request here: http://pad.toktan.org/p/diabook or contact me : thomas_bierey@friendica.eu - * Version: (Version: 1.011) + * Version: (Version: 1.012) * Author: */ @@ -139,7 +139,8 @@ function diabook_red_community_info(){ //nav FIND FRIENDS if(local_user()) { $nv = array(); - $nv['directory'] = Array('directory', t('Local').' '.t('Directory'), "", ""); + $nv['title'] = Array("", t('Find Friends'), "", ""); + $nv['directory'] = Array('directory', t('Local Directory'), "", ""); $nv['global_directory'] = Array('http://dir.friendica.com/', t('Global Directory'), "", ""); $nv['match'] = Array('match', t('Similar Interests'), "", ""); $nv['suggest'] = Array('suggest', t('Friend Suggestions'), "", ""); @@ -188,10 +189,28 @@ function diabook_red_community_info(){ $aside['$page'] = $page; } - //END Community Page - - - + //END Community Page + //helpers + $helpers = array(); + $helpers['title'] = Array("", t('Help or @NewHere ?'), "", ""); + + $aside['$helpers'] = $helpers; + //end helpers + //connectable services + $con_services = array(); + $con_services['title'] = Array("", t('Connect Services'), "", ""); + + $aside['$con_services'] = $con_services; + //end connectable services + //postit + $postit = array(); + $postit['title'] = Array("", t('PostIt to Friendica'), t('Post to Friendica'), ""); + $postit['text'] = Array("", t(' from anywhere by bookmarking this Link.'), "", ""); + + $aside['$postit'] = $postit; + //end postit + + //get_baseurl $url = $a->get_baseurl($ssl_state); $aside['$url'] = $url; |