diff options
author | tomtom84 <63dc41d76451@ba77e90e49a6.anonbox.net> | 2012-04-03 12:00:24 -0700 |
---|---|---|
committer | tomtom84 <63dc41d76451@ba77e90e49a6.anonbox.net> | 2012-04-03 12:00:24 -0700 |
commit | 10c88f2a015d30948d0c85ea2b9cc4d6535097fc (patch) | |
tree | b86669aea0ffffc73e8bbd6b0adb6122033e0c8e /view/theme/diabook-aerith/theme.php | |
parent | 4b762ff923626addc10e3b90c6fef183320c84ea (diff) | |
parent | 8a71191d6d45f74e200bb6e279916375c2416b05 (diff) | |
download | volse-hubzilla-10c88f2a015d30948d0c85ea2b9cc4d6535097fc.tar.gz volse-hubzilla-10c88f2a015d30948d0c85ea2b9cc4d6535097fc.tar.bz2 volse-hubzilla-10c88f2a015d30948d0c85ea2b9cc4d6535097fc.zip |
Merge pull request #201 from tomtom84/master
fixes in diabook-themes
Diffstat (limited to 'view/theme/diabook-aerith/theme.php')
-rwxr-xr-x | view/theme/diabook-aerith/theme.php | 31 |
1 files changed, 25 insertions, 6 deletions
diff --git a/view/theme/diabook-aerith/theme.php b/view/theme/diabook-aerith/theme.php index 008e80c14..e56f0ab74 100755 --- a/view/theme/diabook-aerith/theme.php +++ b/view/theme/diabook-aerith/theme.php @@ -3,7 +3,7 @@ /* * Name: Diabook-aerith * Description: Diabook-aerith : 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_aerith_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_aerith_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; |