Merge remote-tracking branch 'friendica/master'
3
boot.php
|
@ -9,7 +9,7 @@ require_once('include/nav.php');
|
||||||
require_once('include/cache.php');
|
require_once('include/cache.php');
|
||||||
|
|
||||||
define ( 'FRIENDICA_PLATFORM', 'Friendica');
|
define ( 'FRIENDICA_PLATFORM', 'Friendica');
|
||||||
define ( 'FRIENDICA_VERSION', '2.3.1309' );
|
define ( 'FRIENDICA_VERSION', '2.3.1310' );
|
||||||
define ( 'DFRN_PROTOCOL_VERSION', '2.23' );
|
define ( 'DFRN_PROTOCOL_VERSION', '2.23' );
|
||||||
define ( 'DB_UPDATE_VERSION', 1138 );
|
define ( 'DB_UPDATE_VERSION', 1138 );
|
||||||
|
|
||||||
|
@ -206,6 +206,7 @@ define ( 'ACTIVITY_OBJ_P_PHOTO', NAMESPACE_ACTIVITY_SCHEMA . 'profile-photo' );
|
||||||
define ( 'ACTIVITY_OBJ_ALBUM', NAMESPACE_ACTIVITY_SCHEMA . 'photo-album' );
|
define ( 'ACTIVITY_OBJ_ALBUM', NAMESPACE_ACTIVITY_SCHEMA . 'photo-album' );
|
||||||
define ( 'ACTIVITY_OBJ_EVENT', NAMESPACE_ACTIVITY_SCHEMA . 'event' );
|
define ( 'ACTIVITY_OBJ_EVENT', NAMESPACE_ACTIVITY_SCHEMA . 'event' );
|
||||||
define ( 'ACTIVITY_OBJ_TAGTERM', NAMESPACE_DFRN . '/tagterm' );
|
define ( 'ACTIVITY_OBJ_TAGTERM', NAMESPACE_DFRN . '/tagterm' );
|
||||||
|
define ( 'ACTIVITY_OBJ_PROFILE', NAMESPACE_DFRN . '/profile' );
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* item weight for query ordering
|
* item weight for query ordering
|
||||||
|
|
|
@ -173,4 +173,29 @@ function random_profile() {
|
||||||
if(count($r))
|
if(count($r))
|
||||||
return dirname($r[0]['url']);
|
return dirname($r[0]['url']);
|
||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
function contacts_not_grouped($uid,$start = 0,$count = 0) {
|
||||||
|
|
||||||
|
if(! $count) {
|
||||||
|
$r = q("select count(*) as total from contact where uid = %d and self = 0 and id not in (select distinct(`contact-id`) from group_member where uid = %d) ",
|
||||||
|
intval($uid),
|
||||||
|
intval($uid)
|
||||||
|
);
|
||||||
|
|
||||||
|
return $r;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
$r = q("select * from contact where uid = %d and self = 0 and id not in (select distinct(`contact-id`) from group_member where uid = %d) and blocked = 0 and pending = 0 limit %d, %d",
|
||||||
|
intval($uid),
|
||||||
|
intval($uid),
|
||||||
|
intval($start),
|
||||||
|
intval($count)
|
||||||
|
);
|
||||||
|
|
||||||
|
return $r;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
|
@ -212,6 +212,7 @@ function group_side($every="contacts",$each="group",$edit = false, $group_id = 0
|
||||||
'$title' => t('Groups'),
|
'$title' => t('Groups'),
|
||||||
'$edittext' => t('Edit group'),
|
'$edittext' => t('Edit group'),
|
||||||
'$createtext' => t('Create a new group'),
|
'$createtext' => t('Create a new group'),
|
||||||
|
'$ungrouped' => (($every === 'contacts') ? t('Contacts not in any group') : ''),
|
||||||
'$groups' => $groups,
|
'$groups' => $groups,
|
||||||
'$add' => t('add'),
|
'$add' => t('add'),
|
||||||
));
|
));
|
||||||
|
|
65
mod/nogroup.php
Normal file
|
@ -0,0 +1,65 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
require_once('include/Contact.php');
|
||||||
|
require_once('include/socgraph.php');
|
||||||
|
require_once('include/contact_selectors.php');
|
||||||
|
|
||||||
|
function nogroup_init(&$a) {
|
||||||
|
|
||||||
|
if(! local_user())
|
||||||
|
return;
|
||||||
|
|
||||||
|
require_once('include/group.php');
|
||||||
|
require_once('include/contact_widgets.php');
|
||||||
|
|
||||||
|
if(! x($a->page,'aside'))
|
||||||
|
$a->page['aside'] = '';
|
||||||
|
|
||||||
|
$a->page['aside'] .= group_side('contacts','group',false,0,$contact_id);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
function nogroup_content(&$a) {
|
||||||
|
|
||||||
|
if(! local_user()) {
|
||||||
|
notice( t('Permission denied.') . EOL);
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
|
||||||
|
require_once('include/Contact.php');
|
||||||
|
$r = contacts_not_grouped(local_user());
|
||||||
|
if(count($r)) {
|
||||||
|
$a->set_pager_total($r[0]['total']);
|
||||||
|
}
|
||||||
|
$r = contacts_not_grouped(local_user(),$a->pager['start'],$a->pager['itemspage']);
|
||||||
|
if(count($r)) {
|
||||||
|
foreach($r as $rr) {
|
||||||
|
|
||||||
|
|
||||||
|
$contacts[] = array(
|
||||||
|
'img_hover' => sprintf( t('Visit %s\'s profile [%s]'),$rr['name'],$rr['url']),
|
||||||
|
'edit_hover' => t('Edit contact'),
|
||||||
|
'photo_menu' => contact_photo_menu($rr),
|
||||||
|
'id' => $rr['id'],
|
||||||
|
'alt_text' => $alt_text,
|
||||||
|
'dir_icon' => $dir_icon,
|
||||||
|
'thumb' => $rr['thumb'],
|
||||||
|
'name' => $rr['name'],
|
||||||
|
'username' => $rr['name'],
|
||||||
|
'sparkle' => $sparkle,
|
||||||
|
'itemurl' => $rr['url'],
|
||||||
|
'url' => $url,
|
||||||
|
'network' => network_to_name($rr['network']),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
$tpl = get_markup_template("nogroup-template.tpl");
|
||||||
|
$o .= replace_macros($tpl,array(
|
||||||
|
'$header' => t('Contacts who are not members of a group'),
|
||||||
|
'$contacts' => $contacts,
|
||||||
|
'$paginate' => paginate($a),
|
||||||
|
));
|
||||||
|
|
||||||
|
return $o;
|
||||||
|
|
||||||
|
}
|
|
@ -198,7 +198,7 @@ function notifications_content(&$a) {
|
||||||
'$photo' => ((x($rr,'photo')) ? $rr['photo'] : "images/person-175.jpg"),
|
'$photo' => ((x($rr,'photo')) ? $rr['photo'] : "images/person-175.jpg"),
|
||||||
'$fullname' => $rr['name'],
|
'$fullname' => $rr['name'],
|
||||||
'$hidden' => array('hidden', t('Hide this contact from others'), ($rr['hidden'] == 1), ''),
|
'$hidden' => array('hidden', t('Hide this contact from others'), ($rr['hidden'] == 1), ''),
|
||||||
'$activity' => array('activity', t('Post a new friend activity'), 1, t('if applicable')),
|
'$activity' => array('activity', t('Post a new friend activity'), get_config('system','post_newfriend'), t('if applicable')),
|
||||||
'$url' => zrl($rr['url']),
|
'$url' => zrl($rr['url']),
|
||||||
'$knowyou' => $knowyou,
|
'$knowyou' => $knowyou,
|
||||||
'$approve' => t('Approve'),
|
'$approve' => t('Approve'),
|
||||||
|
|
102
mod/profiles.php
|
@ -51,6 +51,7 @@ function profiles_post(&$a) {
|
||||||
if($orig[0]['name'] != $name)
|
if($orig[0]['name'] != $name)
|
||||||
$namechanged = true;
|
$namechanged = true;
|
||||||
|
|
||||||
|
|
||||||
$pdesc = notags(trim($_POST['pdesc']));
|
$pdesc = notags(trim($_POST['pdesc']));
|
||||||
$gender = notags(trim($_POST['gender']));
|
$gender = notags(trim($_POST['gender']));
|
||||||
$address = notags(trim($_POST['address']));
|
$address = notags(trim($_POST['address']));
|
||||||
|
@ -61,15 +62,16 @@ function profiles_post(&$a) {
|
||||||
$pub_keywords = notags(trim($_POST['pub_keywords']));
|
$pub_keywords = notags(trim($_POST['pub_keywords']));
|
||||||
$prv_keywords = notags(trim($_POST['prv_keywords']));
|
$prv_keywords = notags(trim($_POST['prv_keywords']));
|
||||||
$marital = notags(trim($_POST['marital']));
|
$marital = notags(trim($_POST['marital']));
|
||||||
if($marital != $orig[0]['marital'])
|
|
||||||
$maritalchanged = true;
|
|
||||||
|
|
||||||
$with = ((x($_POST,'with')) ? notags(trim($_POST['with'])) : '');
|
$with = ((x($_POST,'with')) ? notags(trim($_POST['with'])) : '');
|
||||||
|
|
||||||
// linkify the relationship target if applicable
|
// linkify the relationship target if applicable
|
||||||
|
|
||||||
|
$withchanged = false;
|
||||||
|
|
||||||
if(strlen($with)) {
|
if(strlen($with)) {
|
||||||
if($with != strip_tags($orig[0]['with'])) {
|
if($with != strip_tags($orig[0]['with'])) {
|
||||||
|
$withchanged = true;
|
||||||
$prf = '';
|
$prf = '';
|
||||||
$lookup = $with;
|
$lookup = $with;
|
||||||
if(strpos($lookup,'@') === 0)
|
if(strpos($lookup,'@') === 0)
|
||||||
|
@ -134,6 +136,27 @@ function profiles_post(&$a) {
|
||||||
|
|
||||||
$hide_friends = (($_POST['hide-friends'] == 1) ? 1: 0);
|
$hide_friends = (($_POST['hide-friends'] == 1) ? 1: 0);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
$changes = array();
|
||||||
|
if($is_default) {
|
||||||
|
if($marital != $orig[0]['marital']) $changes[] = '♥ ' . t('Marital Status');
|
||||||
|
if($withchanged) $changes[] = '♥ ' . t('Romantic Partner');
|
||||||
|
if($work != $orig[0]['work']) $changes[] = t('Work/Employment');
|
||||||
|
if($religion != $orig[0]['religion']) $changes[] = t('Religion');
|
||||||
|
if($politic != $orig[0]['politic']) $changes[] = t('Political Views');
|
||||||
|
if($gender != $orig[0]['gender']) $changes[] = t('Gender');
|
||||||
|
if($sexual != $orig[0]['sexual']) $changes[] = t('Sexual Preference');
|
||||||
|
if($homepage != $orig[0]['homepage']) $changes[] = t('Homepage');
|
||||||
|
if($interest != $orig[0]['interest']) $changes[] = t('Interests');
|
||||||
|
if($address != $orig[0]['address'] || $locality != $orig[0]['locality'] || $region != $orig[0]['region']
|
||||||
|
|| $country_name != $orig[0]['country_name'])
|
||||||
|
$changes[] = t('Location');
|
||||||
|
|
||||||
|
profile_activity($changes);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
$r = q("UPDATE `profile`
|
$r = q("UPDATE `profile`
|
||||||
SET `profile-name` = '%s',
|
SET `profile-name` = '%s',
|
||||||
`name` = '%s',
|
`name` = '%s',
|
||||||
|
@ -195,7 +218,7 @@ function profiles_post(&$a) {
|
||||||
dbesc($education),
|
dbesc($education),
|
||||||
intval($hide_friends),
|
intval($hide_friends),
|
||||||
intval($a->argv[1]),
|
intval($a->argv[1]),
|
||||||
intval($_SESSION['uid'])
|
intval(local_user())
|
||||||
);
|
);
|
||||||
|
|
||||||
if($r)
|
if($r)
|
||||||
|
@ -222,6 +245,79 @@ function profiles_post(&$a) {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
function profile_activity($changed) {
|
||||||
|
$a = get_app();
|
||||||
|
|
||||||
|
if(! local_user() || ! is_array($changed) || ! count($changed))
|
||||||
|
return;
|
||||||
|
|
||||||
|
if($a->user['hidewall'] || get_config('system','block_public'))
|
||||||
|
return;
|
||||||
|
|
||||||
|
if(! get_pconfig(local_user(),'system','post_profilechange'))
|
||||||
|
return;
|
||||||
|
|
||||||
|
require_once('include/items.php');
|
||||||
|
|
||||||
|
$self = q("SELECT * FROM `contact` WHERE `self` = 1 AND `uid` = %d LIMIT 1",
|
||||||
|
intval(local_user())
|
||||||
|
);
|
||||||
|
|
||||||
|
if(! count($self))
|
||||||
|
return;
|
||||||
|
|
||||||
|
$arr = array();
|
||||||
|
$arr['uri'] = $arr['parent-uri'] = item_new_uri($a->get_hostname(), local_user());
|
||||||
|
$arr['uid'] = local_user();
|
||||||
|
$arr['contact-id'] = $self[0]['id'];
|
||||||
|
$arr['wall'] = 1;
|
||||||
|
$arr['type'] = 'wall';
|
||||||
|
$arr['gravity'] = 0;
|
||||||
|
$arr['origin'] = 1;
|
||||||
|
$arr['author-name'] = $arr['owner-name'] = $self[0]['name'];
|
||||||
|
$arr['author-link'] = $arr['owner-link'] = $self[0]['url'];
|
||||||
|
$arr['author-avatar'] = $arr['owner-avatar'] = $self[0]['thumb'];
|
||||||
|
$arr['verb'] = ACTIVITY_UPDATE;
|
||||||
|
$arr['object-type'] = ACTIVITY_OBJ_PROFILE;
|
||||||
|
|
||||||
|
$A = '[url=' . $self[0]['url'] . ']' . $self[0]['name'] . '[/url]';
|
||||||
|
|
||||||
|
|
||||||
|
$changes = '';
|
||||||
|
$t = count($changed);
|
||||||
|
$z = 0;
|
||||||
|
foreach($changed as $ch) {
|
||||||
|
if(strlen($changes)) {
|
||||||
|
if ($z == ($t - 1))
|
||||||
|
$changes .= ' and ';
|
||||||
|
else
|
||||||
|
$changes .= ', ';
|
||||||
|
}
|
||||||
|
$z ++;
|
||||||
|
$changes .= $ch;
|
||||||
|
}
|
||||||
|
|
||||||
|
$prof = '[url=' . $self[0]['url'] . '?tab=profile' . ']' . t('public profile') . '[/url]';
|
||||||
|
|
||||||
|
$arr['body'] = sprintf( t('%1$s has an updated %2$s, changing %3$s.'), $A, $prof, $changes);
|
||||||
|
|
||||||
|
$arr['object'] = '<object><type>' . ACTIVITY_OBJ_PROFILE . '</type><title>' . $self[0]['name'] . '</title>'
|
||||||
|
. '<id>' . $self[0]['url'] . '/' . $self[0]['name'] . '</id>';
|
||||||
|
$arr['object'] .= '<link>' . xmlify('<link rel="alternate" type="text/html" href="' . $self[0]['url'] . '?tab=profile' . '" />' . "\n");
|
||||||
|
$arr['object'] .= xmlify('<link rel="photo" type="image/jpeg" href="' . $self[0]['thumb'] . '" />' . "\n");
|
||||||
|
$arr['object'] .= '</link></object>' . "\n";
|
||||||
|
$arr['last-child'] = 1;
|
||||||
|
|
||||||
|
$arr['allow_cid'] = $a->user['allow_cid'];
|
||||||
|
$arr['allow_gid'] = $a->user['allow_gid'];
|
||||||
|
$arr['deny_cid'] = $a->user['deny_cid'];
|
||||||
|
$arr['deny_gid'] = $a->user['deny_gid'];
|
||||||
|
|
||||||
|
$i = item_store($arr);
|
||||||
|
if($i)
|
||||||
|
proc_run('php',"include/notifier.php","activity","$i");
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
function profiles_content(&$a) {
|
function profiles_content(&$a) {
|
||||||
|
|
|
@ -346,6 +346,8 @@ function settings_post(&$a) {
|
||||||
$suggestme = ((x($_POST,'suggestme')) ? intval($_POST['suggestme']) : 0);
|
$suggestme = ((x($_POST,'suggestme')) ? intval($_POST['suggestme']) : 0);
|
||||||
$hide_friends = (($_POST['hide-friends'] == 1) ? 1: 0);
|
$hide_friends = (($_POST['hide-friends'] == 1) ? 1: 0);
|
||||||
$hidewall = (($_POST['hidewall'] == 1) ? 1: 0);
|
$hidewall = (($_POST['hidewall'] == 1) ? 1: 0);
|
||||||
|
$post_newfriend = (($_POST['post_newfriend'] == 1) ? 1: 0);
|
||||||
|
$post_profilechange = (($_POST['post_profilechange'] == 1) ? 1: 0);
|
||||||
|
|
||||||
|
|
||||||
$notify = 0;
|
$notify = 0;
|
||||||
|
@ -428,6 +430,8 @@ function settings_post(&$a) {
|
||||||
set_pconfig(local_user(),'expire','photos', $expire_photos);
|
set_pconfig(local_user(),'expire','photos', $expire_photos);
|
||||||
|
|
||||||
set_pconfig(local_user(),'system','suggestme', $suggestme);
|
set_pconfig(local_user(),'system','suggestme', $suggestme);
|
||||||
|
set_pconfig(local_user(),'system','post_newfriend', $post_newfriend);
|
||||||
|
set_pconfig(local_user(),'system','post_profilechange', $post_profilechange);
|
||||||
|
|
||||||
|
|
||||||
$r = q("UPDATE `user` SET `username` = '%s', `email` = '%s', `openid` = '%s', `timezone` = '%s', `allow_cid` = '%s', `allow_gid` = '%s', `deny_cid` = '%s', `deny_gid` = '%s', `notify-flags` = %d, `page-flags` = %d, `default-location` = '%s', `allow_location` = %d, `maxreq` = %d, `expire` = %d, `openidserver` = '%s', `blockwall` = %d, `hidewall` = %d, `blocktags` = %d, `unkmail` = %d, `cntunkmail` = %d WHERE `uid` = %d LIMIT 1",
|
$r = q("UPDATE `user` SET `username` = '%s', `email` = '%s', `openid` = '%s', `timezone` = '%s', `allow_cid` = '%s', `allow_gid` = '%s', `deny_cid` = '%s', `deny_gid` = '%s', `notify-flags` = %d, `page-flags` = %d, `default-location` = '%s', `allow_location` = %d, `maxreq` = %d, `expire` = %d, `openidserver` = '%s', `blockwall` = %d, `hidewall` = %d, `blocktags` = %d, `unkmail` = %d, `cntunkmail` = %d WHERE `uid` = %d LIMIT 1",
|
||||||
|
@ -790,6 +794,11 @@ function settings_content(&$a) {
|
||||||
$suggestme = get_pconfig(local_user(), 'system','suggestme');
|
$suggestme = get_pconfig(local_user(), 'system','suggestme');
|
||||||
$suggestme = (($suggestme===false)? '0': $suggestme); // default if not set: 0
|
$suggestme = (($suggestme===false)? '0': $suggestme); // default if not set: 0
|
||||||
|
|
||||||
|
$post_newfriend = get_pconfig(local_user(), 'system','post_newfriend');
|
||||||
|
$post_newfriend = (($post_newfriend===false)? '0': $post_newfriend); // default if not set: 0
|
||||||
|
|
||||||
|
$post_profilechange = get_pconfig(local_user(), 'system','post_profilechange');
|
||||||
|
$post_profilechange = (($post_profilechange===false)? '0': $post_profilechange); // default if not set: 0
|
||||||
|
|
||||||
|
|
||||||
if(! strlen($a->user['timezone']))
|
if(! strlen($a->user['timezone']))
|
||||||
|
@ -878,6 +887,8 @@ function settings_content(&$a) {
|
||||||
));
|
));
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
$invisible = (((! $profile['publish']) && (! $profile['net-publish']))
|
$invisible = (((! $profile['publish']) && (! $profile['net-publish']))
|
||||||
? true : false);
|
? true : false);
|
||||||
|
|
||||||
|
@ -958,6 +969,9 @@ function settings_content(&$a) {
|
||||||
|
|
||||||
|
|
||||||
'$h_not' => t('Notification Settings'),
|
'$h_not' => t('Notification Settings'),
|
||||||
|
'$activity_options' => t('By default post a status message when:'),
|
||||||
|
'$post_newfriend' => array('post_newfriend', t('accepting a friend request'), $post_newfriend, ''),
|
||||||
|
'$post_profilechange' => array('post_profilechange', t('making an <em>interesting</em> profile change'), $post_profilechange, ''),
|
||||||
'$lbl_not' => t('Send a notification email when:'),
|
'$lbl_not' => t('Send a notification email when:'),
|
||||||
'$notify1' => array('notify1', t('You receive an introduction'), ($notify & NOTIFY_INTRO), NOTIFY_INTRO, ''),
|
'$notify1' => array('notify1', t('You receive an introduction'), ($notify & NOTIFY_INTRO), NOTIFY_INTRO, ''),
|
||||||
'$notify2' => array('notify2', t('Your introductions are confirmed'), ($notify & NOTIFY_CONFIRM), NOTIFY_CONFIRM, ''),
|
'$notify2' => array('notify2', t('Your introductions are confirmed'), ($notify & NOTIFY_CONFIRM), NOTIFY_CONFIRM, ''),
|
||||||
|
|
430
util/messages.po
|
@ -6,9 +6,9 @@
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: 2.3.1309\n"
|
"Project-Id-Version: 2.3.1310\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2012-04-11 10:00-0700\n"
|
"POT-Creation-Date: 2012-04-12 10:00-0700\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -39,8 +39,8 @@ msgstr ""
|
||||||
#: ../../mod/api.php:31 ../../mod/photos.php:130 ../../mod/photos.php:866
|
#: ../../mod/api.php:31 ../../mod/photos.php:130 ../../mod/photos.php:866
|
||||||
#: ../../mod/editpost.php:10 ../../mod/install.php:171
|
#: ../../mod/editpost.php:10 ../../mod/install.php:171
|
||||||
#: ../../mod/notifications.php:66 ../../mod/contacts.php:125
|
#: ../../mod/notifications.php:66 ../../mod/contacts.php:125
|
||||||
#: ../../mod/settings.php:62 ../../mod/settings.php:473
|
#: ../../mod/settings.php:99 ../../mod/settings.php:510
|
||||||
#: ../../mod/settings.php:478 ../../mod/manage.php:86 ../../mod/network.php:6
|
#: ../../mod/settings.php:515 ../../mod/manage.php:86 ../../mod/network.php:6
|
||||||
#: ../../mod/notes.php:20 ../../mod/wallmessage.php:9
|
#: ../../mod/notes.php:20 ../../mod/wallmessage.php:9
|
||||||
#: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79
|
#: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79
|
||||||
#: ../../mod/wallmessage.php:103 ../../mod/attach.php:33
|
#: ../../mod/wallmessage.php:103 ../../mod/attach.php:33
|
||||||
|
@ -55,7 +55,7 @@ msgstr ""
|
||||||
#: ../../mod/profiles.php:233 ../../mod/delegate.php:6
|
#: ../../mod/profiles.php:233 ../../mod/delegate.php:6
|
||||||
#: ../../mod/suggest.php:28 ../../mod/invite.php:13 ../../mod/invite.php:81
|
#: ../../mod/suggest.php:28 ../../mod/invite.php:13 ../../mod/invite.php:81
|
||||||
#: ../../mod/dfrn_confirm.php:53 ../../addon/facebook/facebook.php:461
|
#: ../../mod/dfrn_confirm.php:53 ../../addon/facebook/facebook.php:461
|
||||||
#: ../../include/items.php:3121 ../../index.php:305
|
#: ../../include/items.php:3132 ../../index.php:305
|
||||||
msgid "Permission denied."
|
msgid "Permission denied."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -84,8 +84,8 @@ msgstr ""
|
||||||
msgid "Return to contact editor"
|
msgid "Return to contact editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/crepair.php:148 ../../mod/settings.php:531
|
#: ../../mod/crepair.php:148 ../../mod/settings.php:530
|
||||||
#: ../../mod/settings.php:558 ../../mod/admin.php:524 ../../mod/admin.php:533
|
#: ../../mod/settings.php:556 ../../mod/admin.php:524 ../../mod/admin.php:533
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -127,8 +127,8 @@ msgstr ""
|
||||||
#: ../../mod/photos.php:1274 ../../mod/photos.php:1305
|
#: ../../mod/photos.php:1274 ../../mod/photos.php:1305
|
||||||
#: ../../mod/install.php:251 ../../mod/install.php:289
|
#: ../../mod/install.php:251 ../../mod/install.php:289
|
||||||
#: ../../mod/localtime.php:45 ../../mod/contacts.php:325
|
#: ../../mod/localtime.php:45 ../../mod/contacts.php:325
|
||||||
#: ../../mod/settings.php:529 ../../mod/settings.php:679
|
#: ../../mod/settings.php:528 ../../mod/settings.php:674
|
||||||
#: ../../mod/settings.php:741 ../../mod/settings.php:926
|
#: ../../mod/settings.php:735 ../../mod/settings.php:919
|
||||||
#: ../../mod/manage.php:109 ../../mod/group.php:85 ../../mod/admin.php:354
|
#: ../../mod/manage.php:109 ../../mod/group.php:85 ../../mod/admin.php:354
|
||||||
#: ../../mod/admin.php:521 ../../mod/admin.php:650 ../../mod/admin.php:822
|
#: ../../mod/admin.php:521 ../../mod/admin.php:650 ../../mod/admin.php:822
|
||||||
#: ../../mod/admin.php:902 ../../mod/profiles.php:402 ../../mod/invite.php:119
|
#: ../../mod/admin.php:902 ../../mod/profiles.php:402 ../../mod/invite.php:119
|
||||||
|
@ -276,8 +276,8 @@ msgid "Share this event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94
|
#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94
|
||||||
#: ../../mod/dfrn_request.php:752 ../../mod/settings.php:530
|
#: ../../mod/dfrn_request.php:752 ../../mod/settings.php:529
|
||||||
#: ../../mod/settings.php:557 ../../addon/js_upload/js_upload.php:45
|
#: ../../mod/settings.php:555 ../../addon/js_upload/js_upload.php:45
|
||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -321,23 +321,23 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/api.php:105 ../../mod/dfrn_request.php:740
|
#: ../../mod/api.php:105 ../../mod/dfrn_request.php:740
|
||||||
#: ../../mod/settings.php:841 ../../mod/settings.php:847
|
#: ../../mod/settings.php:835 ../../mod/settings.php:841
|
||||||
#: ../../mod/settings.php:855 ../../mod/settings.php:859
|
#: ../../mod/settings.php:849 ../../mod/settings.php:853
|
||||||
#: ../../mod/settings.php:864 ../../mod/settings.php:870
|
#: ../../mod/settings.php:858 ../../mod/settings.php:864
|
||||||
#: ../../mod/settings.php:876 ../../mod/settings.php:882
|
#: ../../mod/settings.php:870 ../../mod/settings.php:876
|
||||||
#: ../../mod/settings.php:916 ../../mod/settings.php:917
|
#: ../../mod/settings.php:910 ../../mod/settings.php:911
|
||||||
#: ../../mod/settings.php:918 ../../mod/settings.php:919
|
#: ../../mod/settings.php:912 ../../mod/settings.php:913
|
||||||
#: ../../mod/register.php:532 ../../mod/profiles.php:379
|
#: ../../mod/register.php:532 ../../mod/profiles.php:379
|
||||||
msgid "Yes"
|
msgid "Yes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/api.php:106 ../../mod/dfrn_request.php:741
|
#: ../../mod/api.php:106 ../../mod/dfrn_request.php:741
|
||||||
#: ../../mod/settings.php:841 ../../mod/settings.php:847
|
#: ../../mod/settings.php:835 ../../mod/settings.php:841
|
||||||
#: ../../mod/settings.php:855 ../../mod/settings.php:859
|
#: ../../mod/settings.php:849 ../../mod/settings.php:853
|
||||||
#: ../../mod/settings.php:864 ../../mod/settings.php:870
|
#: ../../mod/settings.php:858 ../../mod/settings.php:864
|
||||||
#: ../../mod/settings.php:876 ../../mod/settings.php:882
|
#: ../../mod/settings.php:870 ../../mod/settings.php:876
|
||||||
#: ../../mod/settings.php:916 ../../mod/settings.php:917
|
#: ../../mod/settings.php:910 ../../mod/settings.php:911
|
||||||
#: ../../mod/settings.php:918 ../../mod/settings.php:919
|
#: ../../mod/settings.php:912 ../../mod/settings.php:913
|
||||||
#: ../../mod/register.php:533 ../../mod/profiles.php:380
|
#: ../../mod/register.php:533 ../../mod/profiles.php:380
|
||||||
msgid "No"
|
msgid "No"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -360,7 +360,7 @@ msgstr ""
|
||||||
msgid "Upload New Photos"
|
msgid "Upload New Photos"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/photos.php:69 ../../mod/settings.php:24
|
#: ../../mod/photos.php:69 ../../mod/settings.php:20
|
||||||
msgid "everybody"
|
msgid "everybody"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -560,8 +560,8 @@ msgstr ""
|
||||||
msgid "Preview"
|
msgid "Preview"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/photos.php:1332 ../../mod/settings.php:593
|
#: ../../mod/photos.php:1332 ../../mod/settings.php:591
|
||||||
#: ../../mod/settings.php:677 ../../mod/group.php:168 ../../mod/admin.php:528
|
#: ../../mod/settings.php:672 ../../mod/group.php:168 ../../mod/admin.php:528
|
||||||
#: ../../include/conversation.php:318 ../../include/conversation.php:576
|
#: ../../include/conversation.php:318 ../../include/conversation.php:576
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -633,7 +633,7 @@ msgstr ""
|
||||||
msgid "Post to Email"
|
msgid "Post to Email"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/editpost.php:95 ../../mod/settings.php:592
|
#: ../../mod/editpost.php:95 ../../mod/settings.php:590
|
||||||
#: ../../include/conversation.php:563
|
#: ../../include/conversation.php:563
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -863,7 +863,7 @@ msgstr ""
|
||||||
msgid "StatusNet/Federated Social Web"
|
msgid "StatusNet/Federated Social Web"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/dfrn_request.php:746 ../../mod/settings.php:629
|
#: ../../mod/dfrn_request.php:746 ../../mod/settings.php:625
|
||||||
#: ../../include/contact_selectors.php:80
|
#: ../../include/contact_selectors.php:80
|
||||||
msgid "Diaspora"
|
msgid "Diaspora"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -1641,7 +1641,6 @@ msgstr ""
|
||||||
#: ../../addon/facebook/facebook.php:622
|
#: ../../addon/facebook/facebook.php:622
|
||||||
#: ../../addon/facebook/facebook.php:1076
|
#: ../../addon/facebook/facebook.php:1076
|
||||||
#: ../../addon/testdrive/testdrive.php:58 ../../include/items.php:2661
|
#: ../../addon/testdrive/testdrive.php:58 ../../include/items.php:2661
|
||||||
#: ../../boot.php:679
|
|
||||||
msgid "Administrator"
|
msgid "Administrator"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -1695,490 +1694,493 @@ msgstr ""
|
||||||
msgid "Reset"
|
msgid "Reset"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:89
|
#: ../../mod/settings.php:49 ../../view/theme/diabook-red/theme.php:288
|
||||||
msgid "Missing some important data!"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ../../mod/settings.php:92 ../../mod/settings.php:556 ../../mod/admin.php:75
|
|
||||||
msgid "Update"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ../../mod/settings.php:197
|
|
||||||
msgid "Failed to connect with email account using the settings provided."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ../../mod/settings.php:202
|
|
||||||
msgid "Email settings updated."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ../../mod/settings.php:261
|
|
||||||
msgid "Passwords do not match. Password unchanged."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ../../mod/settings.php:266
|
|
||||||
msgid "Empty passwords are not allowed. Password unchanged."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ../../mod/settings.php:277
|
|
||||||
msgid "Password changed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ../../mod/settings.php:279
|
|
||||||
msgid "Password update failed. Please try again."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ../../mod/settings.php:340
|
|
||||||
msgid " Please use a shorter name."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ../../mod/settings.php:342
|
|
||||||
msgid " Name too short."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ../../mod/settings.php:348
|
|
||||||
msgid " Not valid email."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ../../mod/settings.php:350
|
|
||||||
msgid " Cannot change to that email."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ../../mod/settings.php:420 ../../addon/facebook/facebook.php:450
|
|
||||||
#: ../../addon/impressum/impressum.php:75
|
|
||||||
#: ../../addon/openstreetmap/openstreetmap.php:80
|
|
||||||
#: ../../addon/piwik/piwik.php:105 ../../addon/twitter/twitter.php:370
|
|
||||||
msgid "Settings updated."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ../../mod/settings.php:484 ../../view/theme/diabook-red/theme.php:288
|
|
||||||
#: ../../view/theme/diabook-blue/theme.php:287
|
#: ../../view/theme/diabook-blue/theme.php:287
|
||||||
#: ../../view/theme/diabook/theme.php:298
|
#: ../../view/theme/diabook/theme.php:298
|
||||||
#: ../../view/theme/diabook-aerith/theme.php:288 ../../include/nav.php:137
|
#: ../../view/theme/diabook-aerith/theme.php:288 ../../include/nav.php:137
|
||||||
msgid "Account settings"
|
msgid "Account settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:489 ../../view/theme/diabook-red/theme.php:293
|
#: ../../mod/settings.php:54 ../../view/theme/diabook-red/theme.php:293
|
||||||
#: ../../view/theme/diabook-blue/theme.php:292
|
#: ../../view/theme/diabook-blue/theme.php:292
|
||||||
#: ../../view/theme/diabook/theme.php:303
|
#: ../../view/theme/diabook/theme.php:303
|
||||||
#: ../../view/theme/diabook-aerith/theme.php:293
|
#: ../../view/theme/diabook-aerith/theme.php:293
|
||||||
msgid "Display settings"
|
msgid "Display settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:495 ../../view/theme/diabook-red/theme.php:302
|
#: ../../mod/settings.php:60 ../../view/theme/diabook-red/theme.php:302
|
||||||
#: ../../view/theme/diabook-blue/theme.php:301
|
#: ../../view/theme/diabook-blue/theme.php:301
|
||||||
#: ../../view/theme/diabook/theme.php:312
|
#: ../../view/theme/diabook/theme.php:312
|
||||||
#: ../../view/theme/diabook-aerith/theme.php:302
|
#: ../../view/theme/diabook-aerith/theme.php:302
|
||||||
msgid "Connector settings"
|
msgid "Connector settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:500 ../../view/theme/diabook-red/theme.php:307
|
#: ../../mod/settings.php:65 ../../view/theme/diabook-red/theme.php:307
|
||||||
#: ../../view/theme/diabook-blue/theme.php:306
|
#: ../../view/theme/diabook-blue/theme.php:306
|
||||||
#: ../../view/theme/diabook/theme.php:317
|
#: ../../view/theme/diabook/theme.php:317
|
||||||
#: ../../view/theme/diabook-aerith/theme.php:307
|
#: ../../view/theme/diabook-aerith/theme.php:307
|
||||||
msgid "Plugin settings"
|
msgid "Plugin settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:505 ../../view/theme/diabook-red/theme.php:312
|
#: ../../mod/settings.php:70
|
||||||
#: ../../view/theme/diabook-blue/theme.php:311
|
msgid "Connected apps"
|
||||||
#: ../../view/theme/diabook/theme.php:322
|
|
||||||
#: ../../view/theme/diabook-aerith/theme.php:312
|
|
||||||
msgid "Connections"
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:510 ../../view/theme/diabook-red/theme.php:317
|
#: ../../mod/settings.php:75 ../../view/theme/diabook-red/theme.php:317
|
||||||
#: ../../view/theme/diabook-blue/theme.php:316
|
#: ../../view/theme/diabook-blue/theme.php:316
|
||||||
#: ../../view/theme/diabook/theme.php:327
|
#: ../../view/theme/diabook/theme.php:327
|
||||||
#: ../../view/theme/diabook-aerith/theme.php:317
|
#: ../../view/theme/diabook-aerith/theme.php:317
|
||||||
msgid "Export personal data"
|
msgid "Export personal data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:528 ../../mod/settings.php:555
|
#: ../../mod/settings.php:83 ../../mod/admin.php:611 ../../mod/admin.php:789
|
||||||
#: ../../mod/settings.php:591
|
#: ../../include/nav.php:137
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../../mod/settings.php:126
|
||||||
|
msgid "Missing some important data!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../../mod/settings.php:129 ../../mod/settings.php:554
|
||||||
|
#: ../../mod/admin.php:75
|
||||||
|
msgid "Update"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../../mod/settings.php:234
|
||||||
|
msgid "Failed to connect with email account using the settings provided."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../../mod/settings.php:239
|
||||||
|
msgid "Email settings updated."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../../mod/settings.php:298
|
||||||
|
msgid "Passwords do not match. Password unchanged."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../../mod/settings.php:303
|
||||||
|
msgid "Empty passwords are not allowed. Password unchanged."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../../mod/settings.php:314
|
||||||
|
msgid "Password changed."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../../mod/settings.php:316
|
||||||
|
msgid "Password update failed. Please try again."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../../mod/settings.php:377
|
||||||
|
msgid " Please use a shorter name."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../../mod/settings.php:379
|
||||||
|
msgid " Name too short."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../../mod/settings.php:385
|
||||||
|
msgid " Not valid email."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../../mod/settings.php:387
|
||||||
|
msgid " Cannot change to that email."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../../mod/settings.php:457 ../../addon/facebook/facebook.php:450
|
||||||
|
#: ../../addon/impressum/impressum.php:75
|
||||||
|
#: ../../addon/openstreetmap/openstreetmap.php:80
|
||||||
|
#: ../../addon/piwik/piwik.php:105 ../../addon/twitter/twitter.php:370
|
||||||
|
msgid "Settings updated."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../../mod/settings.php:527 ../../mod/settings.php:553
|
||||||
|
#: ../../mod/settings.php:589
|
||||||
msgid "Add application"
|
msgid "Add application"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:532 ../../mod/settings.php:559
|
#: ../../mod/settings.php:531 ../../mod/settings.php:557
|
||||||
#: ../../addon/statusnet/statusnet.php:547
|
#: ../../addon/statusnet/statusnet.php:547
|
||||||
msgid "Consumer Key"
|
msgid "Consumer Key"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:533 ../../mod/settings.php:560
|
#: ../../mod/settings.php:532 ../../mod/settings.php:558
|
||||||
#: ../../addon/statusnet/statusnet.php:546
|
#: ../../addon/statusnet/statusnet.php:546
|
||||||
msgid "Consumer Secret"
|
msgid "Consumer Secret"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:534 ../../mod/settings.php:561
|
#: ../../mod/settings.php:533 ../../mod/settings.php:559
|
||||||
msgid "Redirect"
|
msgid "Redirect"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:535 ../../mod/settings.php:562
|
#: ../../mod/settings.php:534 ../../mod/settings.php:560
|
||||||
msgid "Icon url"
|
msgid "Icon url"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:546
|
#: ../../mod/settings.php:545
|
||||||
msgid "You can't edit this application."
|
msgid "You can't edit this application."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:590
|
#: ../../mod/settings.php:588
|
||||||
msgid "Connected Apps"
|
msgid "Connected Apps"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:594
|
#: ../../mod/settings.php:592
|
||||||
msgid "Client key starts with"
|
msgid "Client key starts with"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:595
|
#: ../../mod/settings.php:593
|
||||||
msgid "No name"
|
msgid "No name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:596
|
#: ../../mod/settings.php:594
|
||||||
msgid "Remove authorization"
|
msgid "Remove authorization"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:608
|
#: ../../mod/settings.php:605
|
||||||
msgid "No Plugin settings configured"
|
msgid "No Plugin settings configured"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:616 ../../addon/widgets/widgets.php:123
|
#: ../../mod/settings.php:613 ../../addon/widgets/widgets.php:123
|
||||||
msgid "Plugin Settings"
|
msgid "Plugin Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:629 ../../mod/settings.php:630
|
#: ../../mod/settings.php:625 ../../mod/settings.php:626
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Built-in support for %s connectivity is %s"
|
msgid "Built-in support for %s connectivity is %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:629 ../../mod/settings.php:630
|
#: ../../mod/settings.php:625 ../../mod/settings.php:626
|
||||||
msgid "enabled"
|
msgid "enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:629 ../../mod/settings.php:630
|
#: ../../mod/settings.php:625 ../../mod/settings.php:626
|
||||||
msgid "disabled"
|
msgid "disabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:630
|
#: ../../mod/settings.php:626
|
||||||
msgid "StatusNet"
|
msgid "StatusNet"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:660
|
#: ../../mod/settings.php:656
|
||||||
msgid "Connector Settings"
|
msgid "Connector Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:666
|
#: ../../mod/settings.php:661
|
||||||
msgid "Email/Mailbox Setup"
|
msgid "Email/Mailbox Setup"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:667
|
#: ../../mod/settings.php:662
|
||||||
msgid ""
|
msgid ""
|
||||||
"If you wish to communicate with email contacts using this service "
|
"If you wish to communicate with email contacts using this service "
|
||||||
"(optional), please specify how to connect to your mailbox."
|
"(optional), please specify how to connect to your mailbox."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:668
|
#: ../../mod/settings.php:663
|
||||||
msgid "Last successful email check:"
|
msgid "Last successful email check:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:669
|
#: ../../mod/settings.php:664
|
||||||
msgid "Email access is disabled on this site."
|
msgid "Email access is disabled on this site."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:670
|
#: ../../mod/settings.php:665
|
||||||
msgid "IMAP server name:"
|
msgid "IMAP server name:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:671
|
#: ../../mod/settings.php:666
|
||||||
msgid "IMAP port:"
|
msgid "IMAP port:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:672
|
#: ../../mod/settings.php:667
|
||||||
msgid "Security:"
|
msgid "Security:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:672 ../../mod/settings.php:677
|
#: ../../mod/settings.php:667 ../../mod/settings.php:672
|
||||||
msgid "None"
|
msgid "None"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:673
|
#: ../../mod/settings.php:668
|
||||||
msgid "Email login name:"
|
msgid "Email login name:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:674
|
#: ../../mod/settings.php:669
|
||||||
msgid "Email password:"
|
msgid "Email password:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:675
|
#: ../../mod/settings.php:670
|
||||||
msgid "Reply-to address:"
|
msgid "Reply-to address:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:676
|
#: ../../mod/settings.php:671
|
||||||
msgid "Send public posts to all email contacts:"
|
msgid "Send public posts to all email contacts:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:677
|
#: ../../mod/settings.php:672
|
||||||
msgid "Action after import:"
|
msgid "Action after import:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:677
|
#: ../../mod/settings.php:672
|
||||||
msgid "Mark as seen"
|
msgid "Mark as seen"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:677
|
#: ../../mod/settings.php:672
|
||||||
msgid "Move to folder"
|
msgid "Move to folder"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:678
|
#: ../../mod/settings.php:673
|
||||||
msgid "Move to folder:"
|
msgid "Move to folder:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:739
|
#: ../../mod/settings.php:733
|
||||||
msgid "Display Settings"
|
msgid "Display Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:745
|
#: ../../mod/settings.php:739
|
||||||
msgid "Display Theme:"
|
msgid "Display Theme:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:746
|
#: ../../mod/settings.php:740
|
||||||
msgid "Update browser every xx seconds"
|
msgid "Update browser every xx seconds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:746
|
#: ../../mod/settings.php:740
|
||||||
msgid "Minimum of 10 seconds, no maximum"
|
msgid "Minimum of 10 seconds, no maximum"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:747
|
#: ../../mod/settings.php:741
|
||||||
msgid "Number of items to display on the network page:"
|
msgid "Number of items to display on the network page:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:747
|
#: ../../mod/settings.php:741
|
||||||
msgid "Maximum of 100 items"
|
msgid "Maximum of 100 items"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:748
|
#: ../../mod/settings.php:742
|
||||||
msgid "Don't show emoticons"
|
msgid "Don't show emoticons"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:808 ../../mod/admin.php:142 ../../mod/admin.php:502
|
#: ../../mod/settings.php:802 ../../mod/admin.php:142 ../../mod/admin.php:502
|
||||||
msgid "Normal Account"
|
msgid "Normal Account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:809
|
#: ../../mod/settings.php:803
|
||||||
msgid "This account is a normal personal profile"
|
msgid "This account is a normal personal profile"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:812 ../../mod/admin.php:143 ../../mod/admin.php:503
|
#: ../../mod/settings.php:806 ../../mod/admin.php:143 ../../mod/admin.php:503
|
||||||
msgid "Soapbox Account"
|
msgid "Soapbox Account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:813
|
#: ../../mod/settings.php:807
|
||||||
msgid "Automatically approve all connection/friend requests as read-only fans"
|
msgid "Automatically approve all connection/friend requests as read-only fans"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:816 ../../mod/admin.php:144 ../../mod/admin.php:504
|
#: ../../mod/settings.php:810 ../../mod/admin.php:144 ../../mod/admin.php:504
|
||||||
msgid "Community/Celebrity Account"
|
msgid "Community/Celebrity Account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:817
|
#: ../../mod/settings.php:811
|
||||||
msgid "Automatically approve all connection/friend requests as read-write fans"
|
msgid "Automatically approve all connection/friend requests as read-write fans"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:820 ../../mod/admin.php:145 ../../mod/admin.php:505
|
#: ../../mod/settings.php:814 ../../mod/admin.php:145 ../../mod/admin.php:505
|
||||||
msgid "Automatic Friend Account"
|
msgid "Automatic Friend Account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:821
|
#: ../../mod/settings.php:815
|
||||||
msgid "Automatically approve all connection/friend requests as friends"
|
msgid "Automatically approve all connection/friend requests as friends"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:831
|
#: ../../mod/settings.php:825
|
||||||
msgid "OpenID:"
|
msgid "OpenID:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:831
|
#: ../../mod/settings.php:825
|
||||||
msgid "(Optional) Allow this OpenID to login to this account."
|
msgid "(Optional) Allow this OpenID to login to this account."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:841
|
#: ../../mod/settings.php:835
|
||||||
msgid "Publish your default profile in your local site directory?"
|
msgid "Publish your default profile in your local site directory?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:847
|
#: ../../mod/settings.php:841
|
||||||
msgid "Publish your default profile in the global social directory?"
|
msgid "Publish your default profile in the global social directory?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:855
|
#: ../../mod/settings.php:849
|
||||||
msgid "Hide your contact/friend list from viewers of your default profile?"
|
msgid "Hide your contact/friend list from viewers of your default profile?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:859
|
#: ../../mod/settings.php:853
|
||||||
msgid "Hide your profile details from unknown viewers?"
|
msgid "Hide your profile details from unknown viewers?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:864
|
#: ../../mod/settings.php:858
|
||||||
msgid "Allow friends to post to your profile page?"
|
msgid "Allow friends to post to your profile page?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:870
|
#: ../../mod/settings.php:864
|
||||||
msgid "Allow friends to tag your posts?"
|
msgid "Allow friends to tag your posts?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:876
|
#: ../../mod/settings.php:870
|
||||||
msgid "Allow us to suggest you as a potential friend to new members?"
|
msgid "Allow us to suggest you as a potential friend to new members?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:882
|
#: ../../mod/settings.php:876
|
||||||
msgid "Permit unknown people to send you private mail?"
|
msgid "Permit unknown people to send you private mail?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:891
|
#: ../../mod/settings.php:885
|
||||||
msgid "Profile is <strong>not published</strong>."
|
msgid "Profile is <strong>not published</strong>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:897 ../../mod/profile_photo.php:211
|
#: ../../mod/settings.php:891 ../../mod/profile_photo.php:211
|
||||||
msgid "or"
|
msgid "or"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:902
|
#: ../../mod/settings.php:896
|
||||||
msgid "Your Identity Address is"
|
msgid "Your Identity Address is"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:913
|
#: ../../mod/settings.php:907
|
||||||
msgid "Automatically expire posts after this many days:"
|
msgid "Automatically expire posts after this many days:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:913
|
#: ../../mod/settings.php:907
|
||||||
msgid "If empty, posts will not expire. Expired posts will be deleted"
|
msgid "If empty, posts will not expire. Expired posts will be deleted"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:914
|
#: ../../mod/settings.php:908
|
||||||
msgid "Advanced expiration settings"
|
msgid "Advanced expiration settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:915
|
#: ../../mod/settings.php:909
|
||||||
msgid "Advanced Expiration"
|
msgid "Advanced Expiration"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:916
|
#: ../../mod/settings.php:910
|
||||||
msgid "Expire posts:"
|
msgid "Expire posts:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:917
|
#: ../../mod/settings.php:911
|
||||||
msgid "Expire personal notes:"
|
msgid "Expire personal notes:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:918
|
#: ../../mod/settings.php:912
|
||||||
msgid "Expire starred posts:"
|
msgid "Expire starred posts:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:919
|
#: ../../mod/settings.php:913
|
||||||
msgid "Expire photos:"
|
msgid "Expire photos:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:924
|
#: ../../mod/settings.php:917
|
||||||
msgid "Account Settings"
|
msgid "Account Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:933
|
#: ../../mod/settings.php:926
|
||||||
msgid "Password Settings"
|
msgid "Password Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:934
|
#: ../../mod/settings.php:927
|
||||||
msgid "New Password:"
|
msgid "New Password:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:935
|
#: ../../mod/settings.php:928
|
||||||
msgid "Confirm:"
|
msgid "Confirm:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:935
|
#: ../../mod/settings.php:928
|
||||||
msgid "Leave password fields blank unless changing"
|
msgid "Leave password fields blank unless changing"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:939
|
#: ../../mod/settings.php:932
|
||||||
msgid "Basic Settings"
|
msgid "Basic Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:940 ../../include/profile_advanced.php:15
|
#: ../../mod/settings.php:933 ../../include/profile_advanced.php:15
|
||||||
msgid "Full Name:"
|
msgid "Full Name:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:941
|
#: ../../mod/settings.php:934
|
||||||
msgid "Email Address:"
|
msgid "Email Address:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:942
|
#: ../../mod/settings.php:935
|
||||||
msgid "Your Timezone:"
|
msgid "Your Timezone:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:943
|
#: ../../mod/settings.php:936
|
||||||
msgid "Default Post Location:"
|
msgid "Default Post Location:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:944
|
#: ../../mod/settings.php:937
|
||||||
msgid "Use Browser Location:"
|
msgid "Use Browser Location:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:947
|
#: ../../mod/settings.php:940
|
||||||
msgid "Security and Privacy Settings"
|
msgid "Security and Privacy Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:949
|
#: ../../mod/settings.php:942
|
||||||
msgid "Maximum Friend Requests/Day:"
|
msgid "Maximum Friend Requests/Day:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:949 ../../mod/settings.php:964
|
#: ../../mod/settings.php:942 ../../mod/settings.php:957
|
||||||
msgid "(to prevent spam abuse)"
|
msgid "(to prevent spam abuse)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:950
|
#: ../../mod/settings.php:943
|
||||||
msgid "Default Post Permissions"
|
msgid "Default Post Permissions"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:951
|
#: ../../mod/settings.php:944
|
||||||
msgid "(click to open/close)"
|
msgid "(click to open/close)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:964
|
#: ../../mod/settings.php:957
|
||||||
msgid "Maximum private messages per day from unknown people:"
|
msgid "Maximum private messages per day from unknown people:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:967
|
#: ../../mod/settings.php:960
|
||||||
msgid "Notification Settings"
|
msgid "Notification Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:968
|
#: ../../mod/settings.php:961
|
||||||
msgid "Send a notification email when:"
|
msgid "Send a notification email when:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:969
|
#: ../../mod/settings.php:962
|
||||||
msgid "You receive an introduction"
|
msgid "You receive an introduction"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:970
|
#: ../../mod/settings.php:963
|
||||||
msgid "Your introductions are confirmed"
|
msgid "Your introductions are confirmed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:971
|
#: ../../mod/settings.php:964
|
||||||
msgid "Someone writes on your profile wall"
|
msgid "Someone writes on your profile wall"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:972
|
#: ../../mod/settings.php:965
|
||||||
msgid "Someone writes a followup comment"
|
msgid "Someone writes a followup comment"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:973
|
#: ../../mod/settings.php:966
|
||||||
msgid "You receive a private message"
|
msgid "You receive a private message"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:974
|
#: ../../mod/settings.php:967
|
||||||
msgid "You receive a friend suggestion"
|
msgid "You receive a friend suggestion"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:975
|
#: ../../mod/settings.php:968
|
||||||
msgid "You are tagged in a post"
|
msgid "You are tagged in a post"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:978
|
#: ../../mod/settings.php:971
|
||||||
msgid "Advanced Page Settings"
|
msgid "Advanced Page Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -2735,7 +2737,7 @@ msgstr ""
|
||||||
|
|
||||||
#: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 ../../mod/admin.php:127
|
#: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 ../../mod/admin.php:127
|
||||||
#: ../../mod/admin.php:562 ../../mod/admin.php:741 ../../mod/display.php:37
|
#: ../../mod/admin.php:562 ../../mod/admin.php:741 ../../mod/display.php:37
|
||||||
#: ../../mod/display.php:142 ../../include/items.php:3033
|
#: ../../mod/display.php:142 ../../include/items.php:3044
|
||||||
msgid "Item not found."
|
msgid "Item not found."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -3354,10 +3356,6 @@ msgstr ""
|
||||||
msgid "Toggle"
|
msgid "Toggle"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:611 ../../mod/admin.php:789 ../../include/nav.php:137
|
|
||||||
msgid "Settings"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ../../mod/admin.php:618 ../../mod/admin.php:798
|
#: ../../mod/admin.php:618 ../../mod/admin.php:798
|
||||||
msgid "Author: "
|
msgid "Author: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -5407,6 +5405,13 @@ msgstr ""
|
||||||
msgid "Your personal photos"
|
msgid "Your personal photos"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../../view/theme/diabook-red/theme.php:312
|
||||||
|
#: ../../view/theme/diabook-blue/theme.php:311
|
||||||
|
#: ../../view/theme/diabook/theme.php:322
|
||||||
|
#: ../../view/theme/diabook-aerith/theme.php:312
|
||||||
|
msgid "Connections"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ../../view/theme/quattro/config.php:23
|
#: ../../view/theme/quattro/config.php:23
|
||||||
msgid "Theme settings"
|
msgid "Theme settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -6283,26 +6288,10 @@ msgid "Image/photo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/dba.php:41
|
#: ../../include/dba.php:41
|
||||||
msgid "Server name of user name are missing. "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ../../include/dba.php:50
|
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Cannot locate DNS info for database server '%s'"
|
msgid "Cannot locate DNS info for database server '%s'"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/dba.php:84
|
|
||||||
msgid "There is no db connection. "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ../../include/dba.php:107 ../../include/dba.php:109
|
|
||||||
msgid " results"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ../../include/dba.php:113
|
|
||||||
msgid "SQL returned "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ../../include/message.php:15 ../../include/message.php:171
|
#: ../../include/message.php:15 ../../include/message.php:171
|
||||||
msgid "[no subject]"
|
msgid "[no subject]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -6542,28 +6531,28 @@ msgid ""
|
||||||
"form has been opened for too long (>3 hours) before subitting it."
|
"form has been opened for too long (>3 hours) before subitting it."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/Contact.php:137 ../../include/conversation.php:813
|
#: ../../include/Contact.php:145 ../../include/conversation.php:813
|
||||||
msgid "View Status"
|
msgid "View Status"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/Contact.php:138 ../../include/conversation.php:814
|
#: ../../include/Contact.php:146 ../../include/conversation.php:814
|
||||||
msgid "View Profile"
|
msgid "View Profile"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/Contact.php:139 ../../include/conversation.php:815
|
#: ../../include/Contact.php:147 ../../include/conversation.php:815
|
||||||
msgid "View Photos"
|
msgid "View Photos"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/Contact.php:140 ../../include/Contact.php:153
|
#: ../../include/Contact.php:148 ../../include/Contact.php:161
|
||||||
#: ../../include/conversation.php:816
|
#: ../../include/conversation.php:816
|
||||||
msgid "Network Posts"
|
msgid "Network Posts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/Contact.php:141 ../../include/conversation.php:817
|
#: ../../include/Contact.php:149 ../../include/conversation.php:817
|
||||||
msgid "Edit Contact"
|
msgid "Edit Contact"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/Contact.php:142 ../../include/Contact.php:153
|
#: ../../include/Contact.php:150 ../../include/Contact.php:161
|
||||||
#: ../../include/conversation.php:818
|
#: ../../include/conversation.php:818
|
||||||
msgid "Send PM"
|
msgid "Send PM"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -6766,11 +6755,6 @@ msgstr ""
|
||||||
msgid "show fewer"
|
msgid "show fewer"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../boot.php:676
|
|
||||||
#, php-format
|
|
||||||
msgid "Update Error at %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ../../boot.php:773
|
#: ../../boot.php:773
|
||||||
msgid "Create a New Account"
|
msgid "Create a New Account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
|
@ -23,6 +23,11 @@
|
||||||
<div id="sidebar-new-group">
|
<div id="sidebar-new-group">
|
||||||
<a href="group/new">$createtext</a>
|
<a href="group/new">$createtext</a>
|
||||||
</div>
|
</div>
|
||||||
|
{{ if $ungrouped }}
|
||||||
|
<div id="sidebar-ungrouped">
|
||||||
|
<a href="nogroup">$ungrouped</a>
|
||||||
|
</div>
|
||||||
|
{{ endif }}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
12
view/nogroup-template.tpl
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
<h1>$header</h1>
|
||||||
|
|
||||||
|
{{ for $contacts as $contact }}
|
||||||
|
{{ inc contact_template.tpl }}{{ endinc }}
|
||||||
|
{{ endfor }}
|
||||||
|
<div id="contact-edit-end"></div>
|
||||||
|
|
||||||
|
$paginate
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -99,7 +99,13 @@ $unkmail
|
||||||
|
|
||||||
<h3 class="settings-heading">$h_not</h3>
|
<h3 class="settings-heading">$h_not</h3>
|
||||||
|
|
||||||
<div id="settings-notify-desc">$lbl_not </div>
|
<strong>$activity_options</strong>
|
||||||
|
|
||||||
|
{{inc field_checkbox.tpl with $field=$post_newfriend }}{{endinc}}
|
||||||
|
{{inc field_checkbox.tpl with $field=$post_profilechange }}{{endinc}}
|
||||||
|
|
||||||
|
|
||||||
|
<div id="settings-notify-desc"><strong>$lbl_not </strong></div>
|
||||||
|
|
||||||
<div class="group">
|
<div class="group">
|
||||||
{{inc field_intcheckbox.tpl with $field=$notify1 }}{{endinc}}
|
{{inc field_intcheckbox.tpl with $field=$notify1 }}{{endinc}}
|
||||||
|
|
11
view/theme/diabook-aerith/generic_links_widget.tpl
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
<div id="widget_$title">
|
||||||
|
{{if $title}}<h3 style="border-bottom: 1px solid #D2D2D2;">$title</h3>{{endif}}
|
||||||
|
{{if $desc}}<div class="desc">$desc</div>{{endif}}
|
||||||
|
|
||||||
|
<ul class="rs_tabs">
|
||||||
|
{{ for $items as $item }}
|
||||||
|
<li><a href="$item.url" class="rs_tab button {{ if $item.selected }}selected{{ endif }}">$item.label</a></li>
|
||||||
|
{{ endfor }}
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
Before Width: | Height: | Size: 680 B After Width: | Height: | Size: 774 B |
Before Width: | Height: | Size: 663 B After Width: | Height: | Size: 723 B |
Before Width: | Height: | Size: 722 B After Width: | Height: | Size: 706 B |
Before Width: | Height: | Size: 664 B After Width: | Height: | Size: 637 B |
Before Width: | Height: | Size: 739 B After Width: | Height: | Size: 764 B |
Before Width: | Height: | Size: 710 B After Width: | Height: | Size: 664 B |
Before Width: | Height: | Size: 781 B After Width: | Height: | Size: 688 B |
11
view/theme/diabook-aerith/nets.tpl
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
<div id="nets-sidebar" class="widget">
|
||||||
|
<h3>$title</h3>
|
||||||
|
<div id="nets-desc">$desc</div>
|
||||||
|
|
||||||
|
<ul class="nets-ul">
|
||||||
|
<li><a style="text-decoration: none;" class="tool" href="$base" class="nets-link{{ if $sel_all }} nets-selected{{ endif }} nets-all">$all</a></li>
|
||||||
|
{{ for $nets as $net }}
|
||||||
|
<li class="tool"><a href="$base?nets=$net.ref" class="nets-link{{ if $net.selected }} nets-selected{{ endif }}">$net.name</a></li>
|
||||||
|
{{ endfor }}
|
||||||
|
</ul>
|
||||||
|
</div>
|
|
@ -7,13 +7,13 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<ul id="profile-side-menu" class="menu-profile-side">
|
<ul id="profile-side-menu" class="menu-profile-side">
|
||||||
<li id="profile-side-status" class="menu-profile-list home"><a class="menu-profile-list-item" href="$ps.usermenu.status.0">$ps.usermenu.status.1</a></li>
|
<li id="profile-side-status" class="menu-profile-list"><a class="menu-profile-list-item" href="$ps.usermenu.status.0">$ps.usermenu.status.1<span class="menu-profile-icon home"></span></a></li>
|
||||||
<li id="profile-side-photos" class="menu-profile-list photos"><a class="menu-profile-list-item" href="$ps.usermenu.photos.0">$ps.usermenu.photos.1</a></li>
|
<li id="profile-side-photos" class="menu-profile-list photos"><a class="menu-profile-list-item" href="$ps.usermenu.photos.0">$ps.usermenu.photos.1<span class="menu-profile-icon photos"></span></a></li>
|
||||||
<li id="profile-side-photos" class="menu-profile-list pscontacts"><a class="menu-profile-list-item" href="$ps.usermenu.contacts.0">$ps.usermenu.contacts.1</a></li>
|
<li id="profile-side-photos" class="menu-profile-list pscontacts"><a class="menu-profile-list-item" href="$ps.usermenu.contacts.0">$ps.usermenu.contacts.1<span class="menu-profile-icon pscontacts"></span></a></li>
|
||||||
<li id="profile-side-events" class="menu-profile-list events"><a class="menu-profile-list-item" href="$ps.usermenu.events.0">$ps.usermenu.events.1</a></li>
|
<li id="profile-side-events" class="menu-profile-list events"><a class="menu-profile-list-item" href="$ps.usermenu.events.0">$ps.usermenu.events.1<span class="menu-profile-icon events"></span></a></li>
|
||||||
<li id="profile-side-notes" class="menu-profile-list notes"><a class="menu-profile-list-item" href="$ps.usermenu.notes.0">$ps.usermenu.notes.1</a></li>
|
<li id="profile-side-notes" class="menu-profile-list notes"><a class="menu-profile-list-item" href="$ps.usermenu.notes.0">$ps.usermenu.notes.1<span class="menu-profile-icon notes"></span></a></li>
|
||||||
<li id="profile-side-foren" class="menu-profile-list foren"><a class="menu-profile-list-item" href="$ps.usermenu.pgroups.0" target="blanc">$ps.usermenu.pgroups.1</a></li>
|
<li id="profile-side-foren" class="menu-profile-list foren"><a class="menu-profile-list-item" href="$ps.usermenu.pgroups.0" target="blanc">$ps.usermenu.pgroups.1<span class="menu-profile-icon foren"></span></a></li>
|
||||||
<li id="profile-side-foren" class="menu-profile-list com_side"><a class="menu-profile-list-item" href="$ps.usermenu.community.0">$ps.usermenu.community.1</a></li>
|
<li id="profile-side-foren" class="menu-profile-list com_side"><a class="menu-profile-list-item" href="$ps.usermenu.community.0">$ps.usermenu.community.1<span class="menu-profile-icon com_side"></span></a></li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -1,6 +0,0 @@
|
||||||
<h3 style="border-bottom: 1px solid #D2D2D2;">Settings Menu</h3>
|
|
||||||
<ul class="rs_tabs">
|
|
||||||
{{ for $tabs as $tab }}
|
|
||||||
<li><a href="$tab.url" class="rs_tab button $tab.sel">$tab.label</a></li>
|
|
||||||
{{ endfor }}
|
|
||||||
</ul>
|
|
|
@ -482,8 +482,9 @@ code {
|
||||||
}
|
}
|
||||||
#saved-search-ul .tool:hover,
|
#saved-search-ul .tool:hover,
|
||||||
#nets-sidebar .tool:hover,
|
#nets-sidebar .tool:hover,
|
||||||
#sidebar-group-list .tool:hover {
|
#sidebar-group-list .tool:hover ,
|
||||||
background: #EEE;
|
#fileas-sidebar .tool:hover {
|
||||||
|
background: aliceBlue;
|
||||||
}
|
}
|
||||||
.tool .label {
|
.tool .label {
|
||||||
float: left;
|
float: left;
|
||||||
|
@ -940,44 +941,58 @@ ul.menu-popup .empty {
|
||||||
}
|
}
|
||||||
.menu-profile-list{
|
.menu-profile-list{
|
||||||
height: auto;
|
height: auto;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
padding-top: 3px;
|
|
||||||
padding-bottom: 3px;
|
|
||||||
padding-left: 16px;
|
|
||||||
min-height: 16px;
|
min-height: 16px;
|
||||||
list-style: none;
|
list-style: none;
|
||||||
}
|
}
|
||||||
.menu-profile-list:hover{
|
.menu-profile-list:hover{
|
||||||
background: #EEE;
|
background: aliceBlue;
|
||||||
}
|
}
|
||||||
.menu-profile-list-item{
|
.menu-profile-list-item{
|
||||||
padding-left: 5px;
|
padding-left: 5px;
|
||||||
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
.menu-profile-list-item:hover{
|
.menu-profile-list-item:hover{
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
/*http://prothemedesign.com/circular-icons/*/
|
/*http://prothemedesign.com/circular-icons/*/
|
||||||
.menu-profile-list.home{
|
.menu-profile-icon.home{
|
||||||
background: url("../../../view/theme/diabook-aerith/icons/home.png") no-repeat;
|
background: url("../../../view/theme/diabook-aerith/icons/home.png") no-repeat;
|
||||||
|
float: left;
|
||||||
|
height: 22px;
|
||||||
|
width: 22px;
|
||||||
}
|
}
|
||||||
.menu-profile-list.photos{
|
.menu-profile-icon.photos{
|
||||||
background: url("../../../view/theme/diabook-aerith/icons/mess_side.png") no-repeat;
|
background: url("../../../view/theme/diabook-aerith/icons/mess_side.png") no-repeat;
|
||||||
}
|
float: left;
|
||||||
.menu-profile-list.events{
|
height: 22px;
|
||||||
|
width: 22px;}
|
||||||
|
.menu-profile-icon.events{
|
||||||
background: url("../../../view/theme/diabook-aerith/icons/events.png") no-repeat;
|
background: url("../../../view/theme/diabook-aerith/icons/events.png") no-repeat;
|
||||||
}
|
float: left;
|
||||||
.menu-profile-list.notes{
|
height: 22px;
|
||||||
|
width: 22px;}
|
||||||
|
.menu-profile-icon.notes{
|
||||||
background: url("../../../view/theme/diabook-aerith/icons/notes.png") no-repeat;
|
background: url("../../../view/theme/diabook-aerith/icons/notes.png") no-repeat;
|
||||||
}
|
float: left;
|
||||||
.menu-profile-list.foren{
|
height: 22px;
|
||||||
|
width: 22px;}
|
||||||
|
.menu-profile-icon.foren{
|
||||||
background: url("../../../view/theme/diabook-aerith/icons/pubgroups.png") no-repeat;
|
background: url("../../../view/theme/diabook-aerith/icons/pubgroups.png") no-repeat;
|
||||||
}
|
float: left;
|
||||||
.menu-profile-list.com_side{
|
height: 22px;
|
||||||
|
width: 22px;}
|
||||||
|
.menu-profile-icon.com_side{
|
||||||
background: url("../../../view/theme/diabook-aerith/icons/com_side.png") no-repeat;
|
background: url("../../../view/theme/diabook-aerith/icons/com_side.png") no-repeat;
|
||||||
}
|
float: left;
|
||||||
.menu-profile-list.pscontacts{
|
height: 22px;
|
||||||
|
width: 22px;}
|
||||||
|
.menu-profile-icon.pscontacts{
|
||||||
background: url("../../../view/theme/diabook-aerith/icons/pscontacts.png") no-repeat;
|
background: url("../../../view/theme/diabook-aerith/icons/pscontacts.png") no-repeat;
|
||||||
}
|
float: left;
|
||||||
|
height: 22px;
|
||||||
|
width: 22px;}
|
||||||
|
|
||||||
/* aside */
|
/* aside */
|
||||||
aside {
|
aside {
|
||||||
display: table-cell;
|
display: table-cell;
|
||||||
|
|
|
@ -527,8 +527,9 @@ code {
|
||||||
}
|
}
|
||||||
#saved-search-ul .tool:hover,
|
#saved-search-ul .tool:hover,
|
||||||
#nets-sidebar .tool:hover,
|
#nets-sidebar .tool:hover,
|
||||||
#sidebar-group-list .tool:hover {
|
#sidebar-group-list .tool:hover,
|
||||||
background: #EEE;
|
#fileas-sidebar .tool:hover {
|
||||||
|
background: aliceBlue;
|
||||||
}
|
}
|
||||||
.tool .label {
|
.tool .label {
|
||||||
float: left;
|
float: left;
|
||||||
|
@ -1061,44 +1062,57 @@ ul.menu-popup .empty {
|
||||||
}
|
}
|
||||||
.menu-profile-list{
|
.menu-profile-list{
|
||||||
height: auto;
|
height: auto;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
padding-top: 3px;
|
|
||||||
padding-bottom: 3px;
|
|
||||||
padding-left: 16px;
|
|
||||||
min-height: 16px;
|
min-height: 16px;
|
||||||
list-style: none;
|
list-style: none;
|
||||||
}
|
}
|
||||||
.menu-profile-list:hover{
|
.menu-profile-list:hover{
|
||||||
background: #EEE;
|
background: aliceBlue;
|
||||||
}
|
}
|
||||||
.menu-profile-list-item{
|
.menu-profile-list-item{
|
||||||
padding-left: 5px;
|
padding-left: 5px;
|
||||||
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
.menu-profile-list-item:hover{
|
.menu-profile-list-item:hover{
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
/*http://prothemedesign.com/circular-icons/*/
|
/*http://prothemedesign.com/circular-icons/*/
|
||||||
.menu-profile-list.home{
|
.menu-profile-icon.home{
|
||||||
background: url("../../../view/theme/diabook-aerith/icons/home.png") no-repeat;
|
background: url("../../../view/theme/diabook-aerith/icons/home.png") no-repeat;
|
||||||
|
float: left;
|
||||||
|
height: 22px;
|
||||||
|
width: 22px;
|
||||||
}
|
}
|
||||||
.menu-profile-list.photos{
|
.menu-profile-icon.photos{
|
||||||
background: url("../../../view/theme/diabook-aerith/icons/mess_side.png") no-repeat;
|
background: url("../../../view/theme/diabook-aerith/icons/mess_side.png") no-repeat;
|
||||||
}
|
float: left;
|
||||||
.menu-profile-list.events{
|
height: 22px;
|
||||||
|
width: 22px;}
|
||||||
|
.menu-profile-icon.events{
|
||||||
background: url("../../../view/theme/diabook-aerith/icons/events.png") no-repeat;
|
background: url("../../../view/theme/diabook-aerith/icons/events.png") no-repeat;
|
||||||
}
|
float: left;
|
||||||
.menu-profile-list.notes{
|
height: 22px;
|
||||||
|
width: 22px;}
|
||||||
|
.menu-profile-icon.notes{
|
||||||
background: url("../../../view/theme/diabook-aerith/icons/notes.png") no-repeat;
|
background: url("../../../view/theme/diabook-aerith/icons/notes.png") no-repeat;
|
||||||
}
|
float: left;
|
||||||
.menu-profile-list.foren{
|
height: 22px;
|
||||||
|
width: 22px;}
|
||||||
|
.menu-profile-icon.foren{
|
||||||
background: url("../../../view/theme/diabook-aerith/icons/pubgroups.png") no-repeat;
|
background: url("../../../view/theme/diabook-aerith/icons/pubgroups.png") no-repeat;
|
||||||
}
|
float: left;
|
||||||
.menu-profile-list.com_side{
|
height: 22px;
|
||||||
|
width: 22px;}
|
||||||
|
.menu-profile-icon.com_side{
|
||||||
background: url("../../../view/theme/diabook-aerith/icons/com_side.png") no-repeat;
|
background: url("../../../view/theme/diabook-aerith/icons/com_side.png") no-repeat;
|
||||||
}
|
float: left;
|
||||||
.menu-profile-list.pscontacts{
|
height: 22px;
|
||||||
|
width: 22px;}
|
||||||
|
.menu-profile-icon.pscontacts{
|
||||||
background: url("../../../view/theme/diabook-aerith/icons/pscontacts.png") no-repeat;
|
background: url("../../../view/theme/diabook-aerith/icons/pscontacts.png") no-repeat;
|
||||||
}
|
float: left;
|
||||||
|
height: 22px;
|
||||||
|
width: 22px;}
|
||||||
/* aside */
|
/* aside */
|
||||||
aside {
|
aside {
|
||||||
display: table-cell;
|
display: table-cell;
|
||||||
|
@ -2147,6 +2161,41 @@ ul.tabs li .active {
|
||||||
box-shadow: 2px 2px 2px #CFCFCF;
|
box-shadow: 2px 2px 2px #CFCFCF;
|
||||||
margin-left: 5px;
|
margin-left: 5px;
|
||||||
}
|
}
|
||||||
|
//settings tabs
|
||||||
|
ul.rs_tabs {
|
||||||
|
list-style-type: none;
|
||||||
|
font-size: 11px;
|
||||||
|
}
|
||||||
|
ul.rs_tabs li {
|
||||||
|
float: left;
|
||||||
|
margin-bottom: 30px;
|
||||||
|
clear: both;
|
||||||
|
}
|
||||||
|
ul.rs_tabs li .selected {
|
||||||
|
background-color: #3465A4;
|
||||||
|
border: 1px solid #777777;
|
||||||
|
color: white;
|
||||||
|
border-radius: 3px 3px 3px 3px;
|
||||||
|
box-shadow: 2px 2px 2px #CFCFCF;
|
||||||
|
font-size: 13px;
|
||||||
|
}
|
||||||
|
.rs_tabs {
|
||||||
|
list-style-type: none;
|
||||||
|
font-size: 11px;
|
||||||
|
background-position: 0 -20px;
|
||||||
|
background-repeat: repeat-x;
|
||||||
|
height: 27px;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.rs_tab.button {
|
||||||
|
/*background: none repeat scroll 0 0 #F8F8F8;*/
|
||||||
|
border: 1px solid #CCCCCC;
|
||||||
|
border-radius: 3px 3px 3px 3px;
|
||||||
|
font-weight: bolder;
|
||||||
|
padding: 3px;
|
||||||
|
color: #333333;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
/**
|
/**
|
||||||
* Form fields
|
* Form fields
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -3,13 +3,13 @@
|
||||||
/*
|
/*
|
||||||
* Name: Diabook-aerith
|
* Name: Diabook-aerith
|
||||||
* Description: Diabook-aerith : report bugs and request here: http://pad.toktan.org/p/diabook or contact me : thomas_bierey@friendica.eu
|
* Description: Diabook-aerith : report bugs and request here: http://pad.toktan.org/p/diabook or contact me : thomas_bierey@friendica.eu
|
||||||
* Version: (Version: 1.016)
|
* Version: (Version: 1.017)
|
||||||
* Author:
|
* Author:
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
//print diabook-version for debugging
|
//print diabook-version for debugging
|
||||||
$diabook_version = "Diabook-aerith (Version: 1.016)";
|
$diabook_version = "Diabook-aerith (Version: 1.017)";
|
||||||
$a->page['htmlhead'] .= sprintf('<script "%s" ></script>', $diabook_version);
|
$a->page['htmlhead'] .= sprintf('<script "%s" ></script>', $diabook_version);
|
||||||
|
|
||||||
|
|
||||||
|
@ -22,7 +22,6 @@ $cssFile = null;
|
||||||
*/
|
*/
|
||||||
function diabook_aerith_community_info(){
|
function diabook_aerith_community_info(){
|
||||||
$a = get_app();
|
$a = get_app();
|
||||||
//right_aside at networkpages
|
|
||||||
|
|
||||||
// last 12 users
|
// last 12 users
|
||||||
$aside['$lastusers_title'] = t('Last users');
|
$aside['$lastusers_title'] = t('Last users');
|
||||||
|
@ -280,55 +279,6 @@ if ($a->argv[0].$a->argv[1] === "profile".$a->user['nickname']){
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//tabs at right_aside on settings page
|
|
||||||
if ($a->argv[0] === "settings"){
|
|
||||||
|
|
||||||
$tabs = array(
|
|
||||||
array(
|
|
||||||
'label' => t('Account settings'),
|
|
||||||
'url' => $a->get_baseurl(true).'/settings',
|
|
||||||
'sel' => (($a->argc == 1)?'active':''),
|
|
||||||
),
|
|
||||||
array(
|
|
||||||
'label' => t('Display settings'),
|
|
||||||
'url' => $a->get_baseurl(true).'/settings/display',
|
|
||||||
'sel' => (($a->argc > 1) && ($a->argv[1] === 'display')?'active':''),
|
|
||||||
),
|
|
||||||
array(
|
|
||||||
'label' => t('Edit/Manage Profiles'),
|
|
||||||
'url' => $a->get_baseurl(true).'/profiles',
|
|
||||||
),
|
|
||||||
array(
|
|
||||||
'label' => t('Connector settings'),
|
|
||||||
'url' => $a->get_baseurl(true).'/settings/connectors',
|
|
||||||
'sel' => (($a->argc > 1) && ($a->argv[1] === 'connectors')?'active':''),
|
|
||||||
),
|
|
||||||
array(
|
|
||||||
'label' => t('Plugin settings'),
|
|
||||||
'url' => $a->get_baseurl(true).'/settings/addon',
|
|
||||||
'sel' => (($a->argc > 1) && ($a->argv[1] === 'addon')?'active':''),
|
|
||||||
),
|
|
||||||
array(
|
|
||||||
'label' => t('Connections'),
|
|
||||||
'url' => $a->get_baseurl(true) . '/settings/oauth',
|
|
||||||
'sel' => (($a->argc > 1) && ($a->argv[1] === 'oauth')?'active':''),
|
|
||||||
),
|
|
||||||
array(
|
|
||||||
'label' => t('Export personal data'),
|
|
||||||
'url' => $a->get_baseurl(true) . '/uexport',
|
|
||||||
'sel' => ''
|
|
||||||
)
|
|
||||||
);
|
|
||||||
$tabtpl = file_get_contents(dirname(__file__).'/rs_common_tabs.tpl') ;
|
|
||||||
$a->page['aside'] = replace_macros($tabtpl, array(
|
|
||||||
'$tabs' => $tabs,
|
|
||||||
));
|
|
||||||
|
|
||||||
|
|
||||||
// CUSTOM CSS
|
|
||||||
$cssFile = $a->get_baseurl($ssl_state)."/view/theme/diabook-aerith/style-settings.css";
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// custom css
|
// custom css
|
||||||
|
|
11
view/theme/diabook-blue/generic_links_widget.tpl
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
<div id="widget_$title">
|
||||||
|
{{if $title}}<h3 style="border-bottom: 1px solid #D2D2D2;">$title</h3>{{endif}}
|
||||||
|
{{if $desc}}<div class="desc">$desc</div>{{endif}}
|
||||||
|
|
||||||
|
<ul class="rs_tabs">
|
||||||
|
{{ for $items as $item }}
|
||||||
|
<li><a href="$item.url" class="rs_tab button {{ if $item.selected }}selected{{ endif }}">$item.label</a></li>
|
||||||
|
{{ endfor }}
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
Before Width: | Height: | Size: 680 B After Width: | Height: | Size: 774 B |
Before Width: | Height: | Size: 663 B After Width: | Height: | Size: 723 B |
Before Width: | Height: | Size: 722 B After Width: | Height: | Size: 706 B |
Before Width: | Height: | Size: 664 B After Width: | Height: | Size: 637 B |
Before Width: | Height: | Size: 739 B After Width: | Height: | Size: 764 B |
Before Width: | Height: | Size: 710 B After Width: | Height: | Size: 664 B |
Before Width: | Height: | Size: 781 B After Width: | Height: | Size: 688 B |
11
view/theme/diabook-blue/nets.tpl
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
<div id="nets-sidebar" class="widget">
|
||||||
|
<h3>$title</h3>
|
||||||
|
<div id="nets-desc">$desc</div>
|
||||||
|
|
||||||
|
<ul class="nets-ul">
|
||||||
|
<li><a style="text-decoration: none;" class="tool" href="$base" class="nets-link{{ if $sel_all }} nets-selected{{ endif }} nets-all">$all</a></li>
|
||||||
|
{{ for $nets as $net }}
|
||||||
|
<li class="tool"><a href="$base?nets=$net.ref" class="nets-link{{ if $net.selected }} nets-selected{{ endif }}">$net.name</a></li>
|
||||||
|
{{ endfor }}
|
||||||
|
</ul>
|
||||||
|
</div>
|
|
@ -7,13 +7,13 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<ul id="profile-side-menu" class="menu-profile-side">
|
<ul id="profile-side-menu" class="menu-profile-side">
|
||||||
<li id="profile-side-status" class="menu-profile-list home"><a class="menu-profile-list-item" href="$ps.usermenu.status.0">$ps.usermenu.status.1</a></li>
|
<li id="profile-side-status" class="menu-profile-list"><a class="menu-profile-list-item" href="$ps.usermenu.status.0">$ps.usermenu.status.1<span class="menu-profile-icon home"></span></a></li>
|
||||||
<li id="profile-side-photos" class="menu-profile-list photos"><a class="menu-profile-list-item" href="$ps.usermenu.photos.0">$ps.usermenu.photos.1</a></li>
|
<li id="profile-side-photos" class="menu-profile-list photos"><a class="menu-profile-list-item" href="$ps.usermenu.photos.0">$ps.usermenu.photos.1<span class="menu-profile-icon photos"></span></a></li>
|
||||||
<li id="profile-side-photos" class="menu-profile-list pscontacts"><a class="menu-profile-list-item" href="$ps.usermenu.contacts.0">$ps.usermenu.contacts.1</a></li>
|
<li id="profile-side-photos" class="menu-profile-list pscontacts"><a class="menu-profile-list-item" href="$ps.usermenu.contacts.0">$ps.usermenu.contacts.1<span class="menu-profile-icon pscontacts"></span></a></li>
|
||||||
<li id="profile-side-events" class="menu-profile-list events"><a class="menu-profile-list-item" href="$ps.usermenu.events.0">$ps.usermenu.events.1</a></li>
|
<li id="profile-side-events" class="menu-profile-list events"><a class="menu-profile-list-item" href="$ps.usermenu.events.0">$ps.usermenu.events.1<span class="menu-profile-icon events"></span></a></li>
|
||||||
<li id="profile-side-notes" class="menu-profile-list notes"><a class="menu-profile-list-item" href="$ps.usermenu.notes.0">$ps.usermenu.notes.1</a></li>
|
<li id="profile-side-notes" class="menu-profile-list notes"><a class="menu-profile-list-item" href="$ps.usermenu.notes.0">$ps.usermenu.notes.1<span class="menu-profile-icon notes"></span></a></li>
|
||||||
<li id="profile-side-foren" class="menu-profile-list foren"><a class="menu-profile-list-item" href="$ps.usermenu.pgroups.0" target="blanc">$ps.usermenu.pgroups.1</a></li>
|
<li id="profile-side-foren" class="menu-profile-list foren"><a class="menu-profile-list-item" href="$ps.usermenu.pgroups.0" target="blanc">$ps.usermenu.pgroups.1<span class="menu-profile-icon foren"></span></a></li>
|
||||||
<li id="profile-side-foren" class="menu-profile-list com_side"><a class="menu-profile-list-item" href="$ps.usermenu.community.0">$ps.usermenu.community.1</a></li>
|
<li id="profile-side-foren" class="menu-profile-list com_side"><a class="menu-profile-list-item" href="$ps.usermenu.community.0">$ps.usermenu.community.1<span class="menu-profile-icon com_side"></span></a></li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -1,6 +0,0 @@
|
||||||
<h3 style="border-bottom: 1px solid #D2D2D2;">Settings Menu</h3>
|
|
||||||
<ul class="rs_tabs">
|
|
||||||
{{ for $tabs as $tab }}
|
|
||||||
<li><a href="$tab.url" class="rs_tab button $tab.sel">$tab.label</a></li>
|
|
||||||
{{ endfor }}
|
|
||||||
</ul>
|
|
|
@ -482,8 +482,9 @@ code {
|
||||||
}
|
}
|
||||||
#saved-search-ul .tool:hover,
|
#saved-search-ul .tool:hover,
|
||||||
#nets-sidebar .tool:hover,
|
#nets-sidebar .tool:hover,
|
||||||
#sidebar-group-list .tool:hover {
|
#sidebar-group-list .tool:hover,
|
||||||
background: #EEE;
|
#fileas-sidebar .tool:hover {
|
||||||
|
background: #308DBF;
|
||||||
}
|
}
|
||||||
.tool .label {
|
.tool .label {
|
||||||
float: left;
|
float: left;
|
||||||
|
@ -907,43 +908,57 @@ ul.menu-popup .empty {
|
||||||
.menu-profile-list{
|
.menu-profile-list{
|
||||||
height: auto;
|
height: auto;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
padding-top: 3px;
|
|
||||||
padding-bottom: 3px;
|
|
||||||
padding-left: 16px;
|
|
||||||
min-height: 16px;
|
min-height: 16px;
|
||||||
list-style: none;
|
list-style: none;
|
||||||
}
|
}
|
||||||
.menu-profile-list:hover{
|
.menu-profile-list:hover{
|
||||||
background: #EEE;
|
background: #308DBF;
|
||||||
}
|
}
|
||||||
.menu-profile-list-item{
|
.menu-profile-list-item{
|
||||||
padding-left: 5px;
|
padding-left: 5px;
|
||||||
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
.menu-profile-list-item:hover{
|
.menu-profile-list-item:hover{
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
|
||||||
}
|
}
|
||||||
/*http://prothemedesign.com/circular-icons/*/
|
/*http://prothemedesign.com/circular-icons/*/
|
||||||
.menu-profile-list.home{
|
.menu-profile-icon.home{
|
||||||
background: url("../../../view/theme/diabook-blue/icons/home.png") no-repeat;
|
background: url("../../../view/theme/diabook-blue/icons/home.png") no-repeat;
|
||||||
|
float: left;
|
||||||
|
height: 22px;
|
||||||
|
width: 22px;
|
||||||
}
|
}
|
||||||
.menu-profile-list.photos{
|
.menu-profile-icon.photos{
|
||||||
background: url("../../../view/theme/diabook-blue/icons/mess_side.png") no-repeat;
|
background: url("../../../view/theme/diabook-blue/icons/mess_side.png") no-repeat;
|
||||||
}
|
float: left;
|
||||||
.menu-profile-list.events{
|
height: 22px;
|
||||||
|
width: 22px;}
|
||||||
|
.menu-profile-icon.events{
|
||||||
background: url("../../../view/theme/diabook-blue/icons/events.png") no-repeat;
|
background: url("../../../view/theme/diabook-blue/icons/events.png") no-repeat;
|
||||||
}
|
float: left;
|
||||||
.menu-profile-list.notes{
|
height: 22px;
|
||||||
|
width: 22px;}
|
||||||
|
.menu-profile-icon.notes{
|
||||||
background: url("../../../view/theme/diabook-blue/icons/notes.png") no-repeat;
|
background: url("../../../view/theme/diabook-blue/icons/notes.png") no-repeat;
|
||||||
}
|
float: left;
|
||||||
.menu-profile-list.foren{
|
height: 22px;
|
||||||
|
width: 22px;}
|
||||||
|
.menu-profile-icon.foren{
|
||||||
background: url("../../../view/theme/diabook-blue/icons/pubgroups.png") no-repeat;
|
background: url("../../../view/theme/diabook-blue/icons/pubgroups.png") no-repeat;
|
||||||
}
|
float: left;
|
||||||
.menu-profile-list.com_side{
|
height: 22px;
|
||||||
|
width: 22px;}
|
||||||
|
.menu-profile-icon.com_side{
|
||||||
background: url("../../../view/theme/diabook-blue/icons/com_side.png") no-repeat;
|
background: url("../../../view/theme/diabook-blue/icons/com_side.png") no-repeat;
|
||||||
}
|
float: left;
|
||||||
.menu-profile-list.pscontacts{
|
height: 22px;
|
||||||
|
width: 22px;}
|
||||||
|
.menu-profile-icon.pscontacts{
|
||||||
background: url("../../../view/theme/diabook-blue/icons/pscontacts.png") no-repeat;
|
background: url("../../../view/theme/diabook-blue/icons/pscontacts.png") no-repeat;
|
||||||
}
|
float: left;
|
||||||
|
height: 22px;
|
||||||
|
width: 22px;}
|
||||||
/* aside */
|
/* aside */
|
||||||
aside {
|
aside {
|
||||||
display: table-cell;
|
display: table-cell;
|
||||||
|
|
|
@ -526,8 +526,9 @@ code {
|
||||||
}
|
}
|
||||||
#saved-search-ul .tool:hover,
|
#saved-search-ul .tool:hover,
|
||||||
#nets-sidebar .tool:hover,
|
#nets-sidebar .tool:hover,
|
||||||
#sidebar-group-list .tool:hover {
|
#sidebar-group-list .tool:hover,
|
||||||
background: #EEE;
|
#fileas-sidebar .tool:hover {
|
||||||
|
background: #308DBF;
|
||||||
}
|
}
|
||||||
.tool .label {
|
.tool .label {
|
||||||
float: left;
|
float: left;
|
||||||
|
@ -1031,43 +1032,57 @@ ul.menu-popup .empty {
|
||||||
.menu-profile-list{
|
.menu-profile-list{
|
||||||
height: auto;
|
height: auto;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
padding-top: 3px;
|
|
||||||
padding-bottom: 3px;
|
|
||||||
padding-left: 16px;
|
|
||||||
min-height: 16px;
|
min-height: 16px;
|
||||||
list-style: none;
|
list-style: none;
|
||||||
}
|
}
|
||||||
.menu-profile-list:hover{
|
.menu-profile-list:hover{
|
||||||
background: #EEE;
|
background: #308DBF;
|
||||||
}
|
}
|
||||||
.menu-profile-list-item{
|
.menu-profile-list-item{
|
||||||
padding-left: 5px;
|
padding-left: 5px;
|
||||||
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
.menu-profile-list-item:hover{
|
.menu-profile-list-item:hover{
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
|
||||||
}
|
}
|
||||||
/*http://prothemedesign.com/circular-icons/*/
|
/*http://prothemedesign.com/circular-icons/*/
|
||||||
.menu-profile-list.home{
|
.menu-profile-icon.home{
|
||||||
background: url("../../../view/theme/diabook-blue/icons/home.png") no-repeat;
|
background: url("../../../view/theme/diabook-blue/icons/home.png") no-repeat;
|
||||||
|
float: left;
|
||||||
|
height: 22px;
|
||||||
|
width: 22px;
|
||||||
}
|
}
|
||||||
.menu-profile-list.photos{
|
.menu-profile-icon.photos{
|
||||||
background: url("../../../view/theme/diabook-blue/icons/mess_side.png") no-repeat;
|
background: url("../../../view/theme/diabook-blue/icons/mess_side.png") no-repeat;
|
||||||
}
|
float: left;
|
||||||
.menu-profile-list.events{
|
height: 22px;
|
||||||
|
width: 22px;}
|
||||||
|
.menu-profile-icon.events{
|
||||||
background: url("../../../view/theme/diabook-blue/icons/events.png") no-repeat;
|
background: url("../../../view/theme/diabook-blue/icons/events.png") no-repeat;
|
||||||
}
|
float: left;
|
||||||
.menu-profile-list.notes{
|
height: 22px;
|
||||||
|
width: 22px;}
|
||||||
|
.menu-profile-icon.notes{
|
||||||
background: url("../../../view/theme/diabook-blue/icons/notes.png") no-repeat;
|
background: url("../../../view/theme/diabook-blue/icons/notes.png") no-repeat;
|
||||||
}
|
float: left;
|
||||||
.menu-profile-list.foren{
|
height: 22px;
|
||||||
|
width: 22px;}
|
||||||
|
.menu-profile-icon.foren{
|
||||||
background: url("../../../view/theme/diabook-blue/icons/pubgroups.png") no-repeat;
|
background: url("../../../view/theme/diabook-blue/icons/pubgroups.png") no-repeat;
|
||||||
}
|
float: left;
|
||||||
.menu-profile-list.com_side{
|
height: 22px;
|
||||||
|
width: 22px;}
|
||||||
|
.menu-profile-icon.com_side{
|
||||||
background: url("../../../view/theme/diabook-blue/icons/com_side.png") no-repeat;
|
background: url("../../../view/theme/diabook-blue/icons/com_side.png") no-repeat;
|
||||||
}
|
float: left;
|
||||||
.menu-profile-list.pscontacts{
|
height: 22px;
|
||||||
|
width: 22px;}
|
||||||
|
.menu-profile-icon.pscontacts{
|
||||||
background: url("../../../view/theme/diabook-blue/icons/pscontacts.png") no-repeat;
|
background: url("../../../view/theme/diabook-blue/icons/pscontacts.png") no-repeat;
|
||||||
}
|
float: left;
|
||||||
|
height: 22px;
|
||||||
|
width: 22px;}
|
||||||
/* aside */
|
/* aside */
|
||||||
aside {
|
aside {
|
||||||
display: table-cell;
|
display: table-cell;
|
||||||
|
@ -2103,6 +2118,41 @@ ul.tabs li .active {
|
||||||
box-shadow: 0 1px 1px #CFCFCF;
|
box-shadow: 0 1px 1px #CFCFCF;
|
||||||
margin-left: 5px;
|
margin-left: 5px;
|
||||||
}
|
}
|
||||||
|
//settings tabs
|
||||||
|
ul.rs_tabs {
|
||||||
|
list-style-type: none;
|
||||||
|
font-size: 11px;
|
||||||
|
}
|
||||||
|
ul.rs_tabs li {
|
||||||
|
float: left;
|
||||||
|
margin-bottom: 30px;
|
||||||
|
clear: both;
|
||||||
|
}
|
||||||
|
ul.rs_tabs li .selected {
|
||||||
|
background-color: #055580;
|
||||||
|
border: 1px solid #777777;
|
||||||
|
color: white;
|
||||||
|
border-radius: 3px 3px 3px 3px;
|
||||||
|
box-shadow: 2px 2px 2px #CFCFCF;
|
||||||
|
font-size: 13px;
|
||||||
|
}
|
||||||
|
.rs_tabs {
|
||||||
|
list-style-type: none;
|
||||||
|
font-size: 11px;
|
||||||
|
background-position: 0 -20px;
|
||||||
|
background-repeat: repeat-x;
|
||||||
|
height: 27px;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.rs_tab.button {
|
||||||
|
/*background: none repeat scroll 0 0 #F8F8F8;*/
|
||||||
|
border: 1px solid #CCCCCC;
|
||||||
|
border-radius: 3px 3px 3px 3px;
|
||||||
|
font-weight: bolder;
|
||||||
|
padding: 3px;
|
||||||
|
color: #333333;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
/**
|
/**
|
||||||
* Form fields
|
* Form fields
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -3,13 +3,13 @@
|
||||||
/*
|
/*
|
||||||
* Name: Diabook-blue
|
* Name: Diabook-blue
|
||||||
* Description: Diabook-blue: report bugs and request here: http://pad.toktan.org/p/diabook or contact me : thomas_bierey@friendica.eu
|
* Description: Diabook-blue: report bugs and request here: http://pad.toktan.org/p/diabook or contact me : thomas_bierey@friendica.eu
|
||||||
* Version: (Version: 1.016)
|
* Version: (Version: 1.017)
|
||||||
* Author:
|
* Author:
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
//print diabook-version for debugging
|
//print diabook-version for debugging
|
||||||
$diabook_version = "Diabook-blue (Version: 1.016)";
|
$diabook_version = "Diabook-blue (Version: 1.017)";
|
||||||
$a->page['htmlhead'] .= sprintf('<script "%s" ></script>', $diabook_version);
|
$a->page['htmlhead'] .= sprintf('<script "%s" ></script>', $diabook_version);
|
||||||
|
|
||||||
//change css on network and profilepages
|
//change css on network and profilepages
|
||||||
|
@ -21,7 +21,6 @@ $cssFile = null;
|
||||||
*/
|
*/
|
||||||
function diabook_blue_community_info(){
|
function diabook_blue_community_info(){
|
||||||
$a = get_app();
|
$a = get_app();
|
||||||
//right_aside at networkpages
|
|
||||||
|
|
||||||
// last 12 users
|
// last 12 users
|
||||||
$aside['$lastusers_title'] = t('Last users');
|
$aside['$lastusers_title'] = t('Last users');
|
||||||
|
@ -279,56 +278,6 @@ if ($a->argv[0].$a->argv[1] === "profile".$a->user['nickname']){
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//tabs at right_aside on settings page
|
|
||||||
if ($a->argv[0] === "settings"){
|
|
||||||
|
|
||||||
$tabs = array(
|
|
||||||
array(
|
|
||||||
'label' => t('Account settings'),
|
|
||||||
'url' => $a->get_baseurl(true).'/settings',
|
|
||||||
'sel' => (($a->argc == 1)?'active':''),
|
|
||||||
),
|
|
||||||
array(
|
|
||||||
'label' => t('Display settings'),
|
|
||||||
'url' => $a->get_baseurl(true).'/settings/display',
|
|
||||||
'sel' => (($a->argc > 1) && ($a->argv[1] === 'display')?'active':''),
|
|
||||||
),
|
|
||||||
array(
|
|
||||||
'label' => t('Edit/Manage Profiles'),
|
|
||||||
'url' => $a->get_baseurl(true).'/profiles',
|
|
||||||
),
|
|
||||||
array(
|
|
||||||
'label' => t('Connector settings'),
|
|
||||||
'url' => $a->get_baseurl(true).'/settings/connectors',
|
|
||||||
'sel' => (($a->argc > 1) && ($a->argv[1] === 'connectors')?'active':''),
|
|
||||||
),
|
|
||||||
array(
|
|
||||||
'label' => t('Plugin settings'),
|
|
||||||
'url' => $a->get_baseurl(true).'/settings/addon',
|
|
||||||
'sel' => (($a->argc > 1) && ($a->argv[1] === 'addon')?'active':''),
|
|
||||||
),
|
|
||||||
array(
|
|
||||||
'label' => t('Connections'),
|
|
||||||
'url' => $a->get_baseurl(true) . '/settings/oauth',
|
|
||||||
'sel' => (($a->argc > 1) && ($a->argv[1] === 'oauth')?'active':''),
|
|
||||||
),
|
|
||||||
array(
|
|
||||||
'label' => t('Export personal data'),
|
|
||||||
'url' => $a->get_baseurl(true) . '/uexport',
|
|
||||||
'sel' => ''
|
|
||||||
)
|
|
||||||
);
|
|
||||||
$tabtpl = file_get_contents(dirname(__file__).'/rs_common_tabs.tpl') ;
|
|
||||||
$a->page['aside'] = replace_macros($tabtpl, array(
|
|
||||||
'$tabs' => $tabs,
|
|
||||||
));
|
|
||||||
|
|
||||||
|
|
||||||
// CUSTOM CSS
|
|
||||||
$cssFile = $a->get_baseurl($ssl_state)."/view/theme/diabook-blue/style-settings.css";
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// custom css
|
// custom css
|
||||||
if (!is_null($cssFile)) $a->page['htmlhead'] .= sprintf('<link rel="stylesheet" type="text/css" href="%s" />', $cssFile);
|
if (!is_null($cssFile)) $a->page['htmlhead'] .= sprintf('<link rel="stylesheet" type="text/css" href="%s" />', $cssFile);
|
||||||
|
|
11
view/theme/diabook-red/generic_links_widget.tpl
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
<div id="widget_$title">
|
||||||
|
{{if $title}}<h3 style="border-bottom: 1px solid #D2D2D2;">$title</h3>{{endif}}
|
||||||
|
{{if $desc}}<div class="desc">$desc</div>{{endif}}
|
||||||
|
|
||||||
|
<ul class="rs_tabs">
|
||||||
|
{{ for $items as $item }}
|
||||||
|
<li><a href="$item.url" class="rs_tab button {{ if $item.selected }}selected{{ endif }}">$item.label</a></li>
|
||||||
|
{{ endfor }}
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
Before Width: | Height: | Size: 680 B After Width: | Height: | Size: 774 B |
Before Width: | Height: | Size: 663 B After Width: | Height: | Size: 723 B |
Before Width: | Height: | Size: 722 B After Width: | Height: | Size: 706 B |
Before Width: | Height: | Size: 664 B After Width: | Height: | Size: 637 B |
Before Width: | Height: | Size: 739 B After Width: | Height: | Size: 764 B |
Before Width: | Height: | Size: 710 B After Width: | Height: | Size: 664 B |
Before Width: | Height: | Size: 781 B After Width: | Height: | Size: 688 B |
11
view/theme/diabook-red/nets.tpl
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
<div id="nets-sidebar" class="widget">
|
||||||
|
<h3>$title</h3>
|
||||||
|
<div id="nets-desc">$desc</div>
|
||||||
|
|
||||||
|
<ul class="nets-ul">
|
||||||
|
<li><a style="text-decoration: none;" class="tool" href="$base" class="nets-link{{ if $sel_all }} nets-selected{{ endif }} nets-all">$all</a></li>
|
||||||
|
{{ for $nets as $net }}
|
||||||
|
<li class="tool"><a href="$base?nets=$net.ref" class="nets-link{{ if $net.selected }} nets-selected{{ endif }}">$net.name</a></li>
|
||||||
|
{{ endfor }}
|
||||||
|
</ul>
|
||||||
|
</div>
|
|
@ -7,13 +7,13 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<ul id="profile-side-menu" class="menu-profile-side">
|
<ul id="profile-side-menu" class="menu-profile-side">
|
||||||
<li id="profile-side-status" class="menu-profile-list home"><a class="menu-profile-list-item" href="$ps.usermenu.status.0">$ps.usermenu.status.1</a></li>
|
<li id="profile-side-status" class="menu-profile-list"><a class="menu-profile-list-item" href="$ps.usermenu.status.0">$ps.usermenu.status.1<span class="menu-profile-icon home"></span></a></li>
|
||||||
<li id="profile-side-photos" class="menu-profile-list photos"><a class="menu-profile-list-item" href="$ps.usermenu.photos.0">$ps.usermenu.photos.1</a></li>
|
<li id="profile-side-photos" class="menu-profile-list photos"><a class="menu-profile-list-item" href="$ps.usermenu.photos.0">$ps.usermenu.photos.1<span class="menu-profile-icon photos"></span></a></li>
|
||||||
<li id="profile-side-photos" class="menu-profile-list pscontacts"><a class="menu-profile-list-item" href="$ps.usermenu.contacts.0">$ps.usermenu.contacts.1</a></li>
|
<li id="profile-side-photos" class="menu-profile-list pscontacts"><a class="menu-profile-list-item" href="$ps.usermenu.contacts.0">$ps.usermenu.contacts.1<span class="menu-profile-icon pscontacts"></span></a></li>
|
||||||
<li id="profile-side-events" class="menu-profile-list events"><a class="menu-profile-list-item" href="$ps.usermenu.events.0">$ps.usermenu.events.1</a></li>
|
<li id="profile-side-events" class="menu-profile-list events"><a class="menu-profile-list-item" href="$ps.usermenu.events.0">$ps.usermenu.events.1<span class="menu-profile-icon events"></span></a></li>
|
||||||
<li id="profile-side-notes" class="menu-profile-list notes"><a class="menu-profile-list-item" href="$ps.usermenu.notes.0">$ps.usermenu.notes.1</a></li>
|
<li id="profile-side-notes" class="menu-profile-list notes"><a class="menu-profile-list-item" href="$ps.usermenu.notes.0">$ps.usermenu.notes.1<span class="menu-profile-icon notes"></span></a></li>
|
||||||
<li id="profile-side-foren" class="menu-profile-list foren"><a class="menu-profile-list-item" href="$ps.usermenu.pgroups.0" target="blanc">$ps.usermenu.pgroups.1</a></li>
|
<li id="profile-side-foren" class="menu-profile-list foren"><a class="menu-profile-list-item" href="$ps.usermenu.pgroups.0" target="blanc">$ps.usermenu.pgroups.1<span class="menu-profile-icon foren"></span></a></li>
|
||||||
<li id="profile-side-foren" class="menu-profile-list com_side"><a class="menu-profile-list-item" href="$ps.usermenu.community.0">$ps.usermenu.community.1</a></li>
|
<li id="profile-side-foren" class="menu-profile-list com_side"><a class="menu-profile-list-item" href="$ps.usermenu.community.0">$ps.usermenu.community.1<span class="menu-profile-icon com_side"></span></a></li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -1,6 +0,0 @@
|
||||||
<h3 style="border-bottom: 1px solid #D2D2D2;">Settings Menu</h3>
|
|
||||||
<ul class="rs_tabs">
|
|
||||||
{{ for $tabs as $tab }}
|
|
||||||
<li><a href="$tab.url" class="rs_tab button $tab.sel">$tab.label</a></li>
|
|
||||||
{{ endfor }}
|
|
||||||
</ul>
|
|
|
@ -482,8 +482,9 @@ code {
|
||||||
}
|
}
|
||||||
#saved-search-ul .tool:hover,
|
#saved-search-ul .tool:hover,
|
||||||
#nets-sidebar .tool:hover,
|
#nets-sidebar .tool:hover,
|
||||||
#sidebar-group-list .tool:hover {
|
#sidebar-group-list .tool:hover,
|
||||||
background: #EEE;
|
#fileas-sidebar .tool:hover {
|
||||||
|
background: #FFE499;
|
||||||
}
|
}
|
||||||
.tool .label {
|
.tool .label {
|
||||||
float: left;
|
float: left;
|
||||||
|
@ -941,44 +942,57 @@ ul.menu-popup .empty {
|
||||||
}
|
}
|
||||||
.menu-profile-list{
|
.menu-profile-list{
|
||||||
height: auto;
|
height: auto;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
padding-top: 3px;
|
|
||||||
padding-bottom: 3px;
|
|
||||||
padding-left: 16px;
|
|
||||||
min-height: 16px;
|
min-height: 16px;
|
||||||
list-style: none;
|
list-style: none;
|
||||||
}
|
}
|
||||||
.menu-profile-list:hover{
|
.menu-profile-list:hover{
|
||||||
background: #EEE;
|
background: #FFE499;
|
||||||
}
|
}
|
||||||
.menu-profile-list-item{
|
.menu-profile-list-item{
|
||||||
padding-left: 5px;
|
padding-left: 5px;
|
||||||
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
.menu-profile-list-item:hover{
|
.menu-profile-list-item:hover{
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
/*http://prothemedesign.com/circular-icons/*/
|
/*http://prothemedesign.com/circular-icons/*/
|
||||||
.menu-profile-list.home{
|
.menu-profile-icon.home{
|
||||||
background: url("../../../view/theme/diabook-red/icons/home.png") no-repeat;
|
background: url("../../../view/theme/diabook-red/icons/home.png") no-repeat;
|
||||||
|
float: left;
|
||||||
|
height: 22px;
|
||||||
|
width: 22px;
|
||||||
}
|
}
|
||||||
.menu-profile-list.photos{
|
.menu-profile-icon.photos{
|
||||||
background: url("../../../view/theme/diabook-red/icons/mess_side.png") no-repeat;
|
background: url("../../../view/theme/diabook-red/icons/mess_side.png") no-repeat;
|
||||||
}
|
float: left;
|
||||||
.menu-profile-list.events{
|
height: 22px;
|
||||||
|
width: 22px;}
|
||||||
|
.menu-profile-icon.events{
|
||||||
background: url("../../../view/theme/diabook-red/icons/events.png") no-repeat;
|
background: url("../../../view/theme/diabook-red/icons/events.png") no-repeat;
|
||||||
}
|
float: left;
|
||||||
.menu-profile-list.notes{
|
height: 22px;
|
||||||
|
width: 22px;}
|
||||||
|
.menu-profile-icon.notes{
|
||||||
background: url("../../../view/theme/diabook-red/icons/notes.png") no-repeat;
|
background: url("../../../view/theme/diabook-red/icons/notes.png") no-repeat;
|
||||||
}
|
float: left;
|
||||||
.menu-profile-list.foren{
|
height: 22px;
|
||||||
|
width: 22px;}
|
||||||
|
.menu-profile-icon.foren{
|
||||||
background: url("../../../view/theme/diabook-red/icons/pubgroups.png") no-repeat;
|
background: url("../../../view/theme/diabook-red/icons/pubgroups.png") no-repeat;
|
||||||
}
|
float: left;
|
||||||
.menu-profile-list.com_side{
|
height: 22px;
|
||||||
|
width: 22px;}
|
||||||
|
.menu-profile-icon.com_side{
|
||||||
background: url("../../../view/theme/diabook-red/icons/com_side.png") no-repeat;
|
background: url("../../../view/theme/diabook-red/icons/com_side.png") no-repeat;
|
||||||
}
|
float: left;
|
||||||
.menu-profile-list.pscontacts{
|
height: 22px;
|
||||||
|
width: 22px;}
|
||||||
|
.menu-profile-icon.pscontacts{
|
||||||
background: url("../../../view/theme/diabook-red/icons/pscontacts.png") no-repeat;
|
background: url("../../../view/theme/diabook-red/icons/pscontacts.png") no-repeat;
|
||||||
}
|
float: left;
|
||||||
|
height: 22px;
|
||||||
|
width: 22px;}
|
||||||
/* aside */
|
/* aside */
|
||||||
aside {
|
aside {
|
||||||
display: table-cell;
|
display: table-cell;
|
||||||
|
|
|
@ -526,8 +526,9 @@ code {
|
||||||
}
|
}
|
||||||
#saved-search-ul .tool:hover,
|
#saved-search-ul .tool:hover,
|
||||||
#nets-sidebar .tool:hover,
|
#nets-sidebar .tool:hover,
|
||||||
#sidebar-group-list .tool:hover {
|
#sidebar-group-list .tool:hover,
|
||||||
background: #EEE;
|
#fileas-sidebar .tool:hover {
|
||||||
|
background: #FFE499;
|
||||||
}
|
}
|
||||||
.tool .label {
|
.tool .label {
|
||||||
float: left;
|
float: left;
|
||||||
|
@ -1060,44 +1061,57 @@ ul.menu-popup .empty {
|
||||||
}
|
}
|
||||||
.menu-profile-list{
|
.menu-profile-list{
|
||||||
height: auto;
|
height: auto;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
padding-top: 3px;
|
|
||||||
padding-bottom: 3px;
|
|
||||||
padding-left: 16px;
|
|
||||||
min-height: 16px;
|
min-height: 16px;
|
||||||
list-style: none;
|
list-style: none;
|
||||||
}
|
}
|
||||||
.menu-profile-list:hover{
|
.menu-profile-list:hover{
|
||||||
background: #EEE;
|
background: #FFE499;
|
||||||
}
|
}
|
||||||
.menu-profile-list-item{
|
.menu-profile-list-item{
|
||||||
padding-left: 5px;
|
padding-left: 5px;
|
||||||
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
.menu-profile-list-item:hover{
|
.menu-profile-list-item:hover{
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
/*http://prothemedesign.com/circular-icons/*/
|
/*http://prothemedesign.com/circular-icons/*/
|
||||||
.menu-profile-list.home{
|
.menu-profile-icon.home{
|
||||||
background: url("../../../view/theme/diabook-red/icons/home.png") no-repeat;
|
background: url("../../../view/theme/diabook-red/icons/home.png") no-repeat;
|
||||||
|
float: left;
|
||||||
|
height: 22px;
|
||||||
|
width: 22px;
|
||||||
}
|
}
|
||||||
.menu-profile-list.photos{
|
.menu-profile-icon.photos{
|
||||||
background: url("../../../view/theme/diabook-red/icons/mess_side.png") no-repeat;
|
background: url("../../../view/theme/diabook-red/icons/mess_side.png") no-repeat;
|
||||||
}
|
float: left;
|
||||||
.menu-profile-list.events{
|
height: 22px;
|
||||||
|
width: 22px;}
|
||||||
|
.menu-profile-icon.events{
|
||||||
background: url("../../../view/theme/diabook-red/icons/events.png") no-repeat;
|
background: url("../../../view/theme/diabook-red/icons/events.png") no-repeat;
|
||||||
}
|
float: left;
|
||||||
.menu-profile-list.notes{
|
height: 22px;
|
||||||
|
width: 22px;}
|
||||||
|
.menu-profile-icon.notes{
|
||||||
background: url("../../../view/theme/diabook-red/icons/notes.png") no-repeat;
|
background: url("../../../view/theme/diabook-red/icons/notes.png") no-repeat;
|
||||||
}
|
float: left;
|
||||||
.menu-profile-list.foren{
|
height: 22px;
|
||||||
|
width: 22px;}
|
||||||
|
.menu-profile-icon.foren{
|
||||||
background: url("../../../view/theme/diabook-red/icons/pubgroups.png") no-repeat;
|
background: url("../../../view/theme/diabook-red/icons/pubgroups.png") no-repeat;
|
||||||
}
|
float: left;
|
||||||
.menu-profile-list.com_side{
|
height: 22px;
|
||||||
|
width: 22px;}
|
||||||
|
.menu-profile-icon.com_side{
|
||||||
background: url("../../../view/theme/diabook-red/icons/com_side.png") no-repeat;
|
background: url("../../../view/theme/diabook-red/icons/com_side.png") no-repeat;
|
||||||
}
|
float: left;
|
||||||
.menu-profile-list.pscontacts{
|
height: 22px;
|
||||||
|
width: 22px;}
|
||||||
|
.menu-profile-icon.pscontacts{
|
||||||
background: url("../../../view/theme/diabook-red/icons/pscontacts.png") no-repeat;
|
background: url("../../../view/theme/diabook-red/icons/pscontacts.png") no-repeat;
|
||||||
}
|
float: left;
|
||||||
|
height: 22px;
|
||||||
|
width: 22px;}
|
||||||
/* aside */
|
/* aside */
|
||||||
aside {
|
aside {
|
||||||
display: table-cell;
|
display: table-cell;
|
||||||
|
@ -2132,6 +2146,41 @@ ul.tabs li .active {
|
||||||
box-shadow: 2px 2px 2px #CFCFCF;
|
box-shadow: 2px 2px 2px #CFCFCF;
|
||||||
margin-left: 5px;
|
margin-left: 5px;
|
||||||
}
|
}
|
||||||
|
//settings tabs
|
||||||
|
ul.rs_tabs {
|
||||||
|
list-style-type: none;
|
||||||
|
font-size: 11px;
|
||||||
|
}
|
||||||
|
ul.rs_tabs li {
|
||||||
|
float: left;
|
||||||
|
margin-bottom: 30px;
|
||||||
|
clear: both;
|
||||||
|
}
|
||||||
|
ul.rs_tabs li .selected {
|
||||||
|
background-color: #535353;
|
||||||
|
border: 1px solid #777777;
|
||||||
|
color: white;
|
||||||
|
border-radius: 3px 3px 3px 3px;
|
||||||
|
box-shadow: 2px 2px 2px #CFCFCF;
|
||||||
|
font-size: 13px;
|
||||||
|
}
|
||||||
|
.rs_tabs {
|
||||||
|
list-style-type: none;
|
||||||
|
font-size: 11px;
|
||||||
|
background-position: 0 -20px;
|
||||||
|
background-repeat: repeat-x;
|
||||||
|
height: 27px;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.rs_tab.button {
|
||||||
|
/*background: none repeat scroll 0 0 #F8F8F8;*/
|
||||||
|
border: 1px solid #CCCCCC;
|
||||||
|
border-radius: 3px 3px 3px 3px;
|
||||||
|
font-weight: bolder;
|
||||||
|
padding: 3px;
|
||||||
|
color: #333333;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
/**
|
/**
|
||||||
* Form fields
|
* Form fields
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -3,13 +3,13 @@
|
||||||
/*
|
/*
|
||||||
* Name: Diabook-red
|
* Name: Diabook-red
|
||||||
* Description: Diabook-red: report bugs and request here: http://pad.toktan.org/p/diabook or contact me : thomas_bierey@friendica.eu
|
* Description: Diabook-red: report bugs and request here: http://pad.toktan.org/p/diabook or contact me : thomas_bierey@friendica.eu
|
||||||
* Version: (Version: 1.016)
|
* Version: (Version: 1.017)
|
||||||
* Author:
|
* Author:
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
//print diabook-version for debugging
|
//print diabook-version for debugging
|
||||||
$diabook_version = "Diabook-red (Version: 1.016)";
|
$diabook_version = "Diabook-red (Version: 1.017)";
|
||||||
$a->page['htmlhead'] .= sprintf('<script "%s" ></script>', $diabook_version);
|
$a->page['htmlhead'] .= sprintf('<script "%s" ></script>', $diabook_version);
|
||||||
|
|
||||||
//change css on network and profilepages
|
//change css on network and profilepages
|
||||||
|
@ -21,7 +21,6 @@ $cssFile = null;
|
||||||
*/
|
*/
|
||||||
function diabook_red_community_info(){
|
function diabook_red_community_info(){
|
||||||
$a = get_app();
|
$a = get_app();
|
||||||
//right_aside at networkpages
|
|
||||||
|
|
||||||
// last 12 users
|
// last 12 users
|
||||||
$aside['$lastusers_title'] = t('Last users');
|
$aside['$lastusers_title'] = t('Last users');
|
||||||
|
@ -279,58 +278,6 @@ if ($a->argv[0].$a->argv[1] === "profile".$a->user['nickname']){
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
//tabs at right_aside on settings page
|
|
||||||
if ($a->argv[0] === "settings"){
|
|
||||||
|
|
||||||
$tabs = array(
|
|
||||||
array(
|
|
||||||
'label' => t('Account settings'),
|
|
||||||
'url' => $a->get_baseurl(true).'/settings',
|
|
||||||
'sel' => (($a->argc == 1)?'active':''),
|
|
||||||
),
|
|
||||||
array(
|
|
||||||
'label' => t('Display settings'),
|
|
||||||
'url' => $a->get_baseurl(true).'/settings/display',
|
|
||||||
'sel' => (($a->argc > 1) && ($a->argv[1] === 'display')?'active':''),
|
|
||||||
),
|
|
||||||
array(
|
|
||||||
'label' => t('Edit/Manage Profiles'),
|
|
||||||
'url' => $a->get_baseurl(true).'/profiles',
|
|
||||||
),
|
|
||||||
array(
|
|
||||||
'label' => t('Connector settings'),
|
|
||||||
'url' => $a->get_baseurl(true).'/settings/connectors',
|
|
||||||
'sel' => (($a->argc > 1) && ($a->argv[1] === 'connectors')?'active':''),
|
|
||||||
),
|
|
||||||
array(
|
|
||||||
'label' => t('Plugin settings'),
|
|
||||||
'url' => $a->get_baseurl(true).'/settings/addon',
|
|
||||||
'sel' => (($a->argc > 1) && ($a->argv[1] === 'addon')?'active':''),
|
|
||||||
),
|
|
||||||
array(
|
|
||||||
'label' => t('Connections'),
|
|
||||||
'url' => $a->get_baseurl(true) . '/settings/oauth',
|
|
||||||
'sel' => (($a->argc > 1) && ($a->argv[1] === 'oauth')?'active':''),
|
|
||||||
),
|
|
||||||
array(
|
|
||||||
'label' => t('Export personal data'),
|
|
||||||
'url' => $a->get_baseurl(true) . '/uexport',
|
|
||||||
'sel' => ''
|
|
||||||
)
|
|
||||||
);
|
|
||||||
$tabtpl = file_get_contents(dirname(__file__).'/rs_common_tabs.tpl') ;
|
|
||||||
$a->page['aside'] = replace_macros($tabtpl, array(
|
|
||||||
'$tabs' => $tabs,
|
|
||||||
));
|
|
||||||
|
|
||||||
|
|
||||||
// CUSTOM CSS
|
|
||||||
$cssFile = $a->get_baseurl($ssl_state)."/view/theme/diabook-red/style-settings.css";
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// custom css
|
// custom css
|
||||||
if (!is_null($cssFile)) $a->page['htmlhead'] .= sprintf('<link rel="stylesheet" type="text/css" href="%s" />', $cssFile);
|
if (!is_null($cssFile)) $a->page['htmlhead'] .= sprintf('<link rel="stylesheet" type="text/css" href="%s" />', $cssFile);
|
||||||
|
|
||||||
|
|
11
view/theme/diabook/generic_links_widget.tpl
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
<div id="widget_$title">
|
||||||
|
{{if $title}}<h3 style="border-bottom: 1px solid #D2D2D2;">$title</h3>{{endif}}
|
||||||
|
{{if $desc}}<div class="desc">$desc</div>{{endif}}
|
||||||
|
|
||||||
|
<ul class="rs_tabs">
|
||||||
|
{{ for $items as $item }}
|
||||||
|
<li><a href="$item.url" class="rs_tab button {{ if $item.selected }}selected{{ endif }}">$item.label</a></li>
|
||||||
|
{{ endfor }}
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
Before Width: | Height: | Size: 680 B After Width: | Height: | Size: 774 B |
Before Width: | Height: | Size: 663 B After Width: | Height: | Size: 723 B |
Before Width: | Height: | Size: 722 B After Width: | Height: | Size: 706 B |
Before Width: | Height: | Size: 664 B After Width: | Height: | Size: 637 B |
Before Width: | Height: | Size: 739 B After Width: | Height: | Size: 764 B |
Before Width: | Height: | Size: 710 B After Width: | Height: | Size: 664 B |
Before Width: | Height: | Size: 781 B After Width: | Height: | Size: 688 B |
11
view/theme/diabook/nets.tpl
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
<div id="nets-sidebar" class="widget">
|
||||||
|
<h3>$title</h3>
|
||||||
|
<div id="nets-desc">$desc</div>
|
||||||
|
|
||||||
|
<ul class="nets-ul">
|
||||||
|
<li><a style="text-decoration: none;" class="tool" href="$base" class="nets-link{{ if $sel_all }} nets-selected{{ endif }} nets-all">$all</a></li>
|
||||||
|
{{ for $nets as $net }}
|
||||||
|
<li class="tool"><a href="$base?nets=$net.ref" class="nets-link{{ if $net.selected }} nets-selected{{ endif }}">$net.name</a></li>
|
||||||
|
{{ endfor }}
|
||||||
|
</ul>
|
||||||
|
</div>
|
|
@ -7,13 +7,13 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<ul id="profile-side-menu" class="menu-profile-side">
|
<ul id="profile-side-menu" class="menu-profile-side">
|
||||||
<li id="profile-side-status" class="menu-profile-list home"><a class="menu-profile-list-item" href="$ps.usermenu.status.0">$ps.usermenu.status.1</a></li>
|
<li id="profile-side-status" class="menu-profile-list"><a class="menu-profile-list-item" href="$ps.usermenu.status.0">$ps.usermenu.status.1<span class="menu-profile-icon home"></span></a></li>
|
||||||
<li id="profile-side-photos" class="menu-profile-list photos"><a class="menu-profile-list-item" href="$ps.usermenu.photos.0">$ps.usermenu.photos.1</a></li>
|
<li id="profile-side-photos" class="menu-profile-list photos"><a class="menu-profile-list-item" href="$ps.usermenu.photos.0">$ps.usermenu.photos.1<span class="menu-profile-icon photos"></span></a></li>
|
||||||
<li id="profile-side-photos" class="menu-profile-list pscontacts"><a class="menu-profile-list-item" href="$ps.usermenu.contacts.0">$ps.usermenu.contacts.1</a></li>
|
<li id="profile-side-photos" class="menu-profile-list pscontacts"><a class="menu-profile-list-item" href="$ps.usermenu.contacts.0">$ps.usermenu.contacts.1<span class="menu-profile-icon pscontacts"></span></a></li>
|
||||||
<li id="profile-side-events" class="menu-profile-list events"><a class="menu-profile-list-item" href="$ps.usermenu.events.0">$ps.usermenu.events.1</a></li>
|
<li id="profile-side-events" class="menu-profile-list events"><a class="menu-profile-list-item" href="$ps.usermenu.events.0">$ps.usermenu.events.1<span class="menu-profile-icon events"></span></a></li>
|
||||||
<li id="profile-side-notes" class="menu-profile-list notes"><a class="menu-profile-list-item" href="$ps.usermenu.notes.0">$ps.usermenu.notes.1</a></li>
|
<li id="profile-side-notes" class="menu-profile-list notes"><a class="menu-profile-list-item" href="$ps.usermenu.notes.0">$ps.usermenu.notes.1<span class="menu-profile-icon notes"></span></a></li>
|
||||||
<li id="profile-side-foren" class="menu-profile-list foren"><a class="menu-profile-list-item" href="$ps.usermenu.pgroups.0" target="blanc">$ps.usermenu.pgroups.1</a></li>
|
<li id="profile-side-foren" class="menu-profile-list foren"><a class="menu-profile-list-item" href="$ps.usermenu.pgroups.0" target="blanc">$ps.usermenu.pgroups.1<span class="menu-profile-icon foren"></span></a></li>
|
||||||
<li id="profile-side-foren" class="menu-profile-list com_side"><a class="menu-profile-list-item" href="$ps.usermenu.community.0">$ps.usermenu.community.1</a></li>
|
<li id="profile-side-foren" class="menu-profile-list com_side"><a class="menu-profile-list-item" href="$ps.usermenu.community.0">$ps.usermenu.community.1<span class="menu-profile-icon com_side"></span></a></li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -1,6 +0,0 @@
|
||||||
<h3 style="border-bottom: 1px solid #D2D2D2;">Settings Menu</h3>
|
|
||||||
<ul class="rs_tabs">
|
|
||||||
{{ for $tabs as $tab }}
|
|
||||||
<li><a href="$tab.url" class="rs_tab button $tab.sel">$tab.label</a></li>
|
|
||||||
{{ endfor }}
|
|
||||||
</ul>
|
|
|
@ -484,8 +484,9 @@ code {
|
||||||
}
|
}
|
||||||
#saved-search-ul .tool:hover,
|
#saved-search-ul .tool:hover,
|
||||||
#nets-sidebar .tool:hover,
|
#nets-sidebar .tool:hover,
|
||||||
#sidebar-group-list .tool:hover {
|
#sidebar-group-list .tool:hover,
|
||||||
background: #EEE;
|
#fileas-sidebar .tool:hover {
|
||||||
|
background: #E7F2F7;
|
||||||
}
|
}
|
||||||
.tool .label {
|
.tool .label {
|
||||||
float: left;
|
float: left;
|
||||||
|
@ -898,44 +899,57 @@ ul.menu-popup .empty {
|
||||||
}
|
}
|
||||||
.menu-profile-list{
|
.menu-profile-list{
|
||||||
height: auto;
|
height: auto;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
padding-top: 3px;
|
|
||||||
padding-bottom: 3px;
|
|
||||||
padding-left: 16px;
|
|
||||||
min-height: 16px;
|
min-height: 16px;
|
||||||
list-style: none;
|
list-style: none;
|
||||||
}
|
}
|
||||||
.menu-profile-list:hover{
|
.menu-profile-list:hover{
|
||||||
background: #EEE;
|
background: #E7F2F7;
|
||||||
}
|
}
|
||||||
.menu-profile-list-item{
|
.menu-profile-list-item{
|
||||||
padding-left: 5px;
|
padding-left: 5px;
|
||||||
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
.menu-profile-list-item:hover{
|
.menu-profile-list-item:hover{
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
/*http://prothemedesign.com/circular-icons/*/
|
/*http://prothemedesign.com/circular-icons/*/
|
||||||
.menu-profile-list.home{
|
.menu-profile-icon.home{
|
||||||
background: url("../../../view/theme/diabook/icons/home.png") no-repeat;
|
background: url("../../../view/theme/diabook/icons/home.png") no-repeat;
|
||||||
|
float: left;
|
||||||
|
height: 22px;
|
||||||
|
width: 22px;
|
||||||
}
|
}
|
||||||
.menu-profile-list.photos{
|
.menu-profile-icon.photos{
|
||||||
background: url("../../../view/theme/diabook/icons/mess_side.png") no-repeat;
|
background: url("../../../view/theme/diabook/icons/mess_side.png") no-repeat;
|
||||||
}
|
float: left;
|
||||||
.menu-profile-list.events{
|
height: 22px;
|
||||||
|
width: 22px;}
|
||||||
|
.menu-profile-icon.events{
|
||||||
background: url("../../../view/theme/diabook/icons/events.png") no-repeat;
|
background: url("../../../view/theme/diabook/icons/events.png") no-repeat;
|
||||||
}
|
float: left;
|
||||||
.menu-profile-list.notes{
|
height: 22px;
|
||||||
|
width: 22px;}
|
||||||
|
.menu-profile-icon.notes{
|
||||||
background: url("../../../view/theme/diabook/icons/notes.png") no-repeat;
|
background: url("../../../view/theme/diabook/icons/notes.png") no-repeat;
|
||||||
}
|
float: left;
|
||||||
.menu-profile-list.foren{
|
height: 22px;
|
||||||
|
width: 22px;}
|
||||||
|
.menu-profile-icon.foren{
|
||||||
background: url("../../../view/theme/diabook/icons/pubgroups.png") no-repeat;
|
background: url("../../../view/theme/diabook/icons/pubgroups.png") no-repeat;
|
||||||
}
|
float: left;
|
||||||
.menu-profile-list.com_side{
|
height: 22px;
|
||||||
|
width: 22px;}
|
||||||
|
.menu-profile-icon.com_side{
|
||||||
background: url("../../../view/theme/diabook/icons/com_side.png") no-repeat;
|
background: url("../../../view/theme/diabook/icons/com_side.png") no-repeat;
|
||||||
}
|
float: left;
|
||||||
.menu-profile-list.pscontacts{
|
height: 22px;
|
||||||
|
width: 22px;}
|
||||||
|
.menu-profile-icon.pscontacts{
|
||||||
background: url("../../../view/theme/diabook/icons/pscontacts.png") no-repeat;
|
background: url("../../../view/theme/diabook/icons/pscontacts.png") no-repeat;
|
||||||
}
|
float: left;
|
||||||
|
height: 22px;
|
||||||
|
width: 22px;}
|
||||||
|
|
||||||
/* aside */
|
/* aside */
|
||||||
aside {
|
aside {
|
||||||
|
|
|
@ -483,8 +483,9 @@ code {
|
||||||
}
|
}
|
||||||
#saved-search-ul .tool:hover,
|
#saved-search-ul .tool:hover,
|
||||||
#nets-sidebar .tool:hover,
|
#nets-sidebar .tool:hover,
|
||||||
#sidebar-group-list .tool:hover {
|
#sidebar-group-list .tool:hover,
|
||||||
background: #EEE;
|
#fileas-sidebar .tool:hover{
|
||||||
|
background: #E7F2F7;
|
||||||
}
|
}
|
||||||
.tool .label {
|
.tool .label {
|
||||||
float: left;
|
float: left;
|
||||||
|
@ -897,8 +898,6 @@ ul.menu-popup .empty {
|
||||||
.menu-profile-list{
|
.menu-profile-list{
|
||||||
height: auto;
|
height: auto;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
padding-top: 3px;
|
|
||||||
padding-bottom: 3px;
|
|
||||||
padding-left: 16px;
|
padding-left: 16px;
|
||||||
min-height: 16px;
|
min-height: 16px;
|
||||||
list-style: none;
|
list-style: none;
|
||||||
|
@ -908,28 +907,29 @@ ul.menu-popup .empty {
|
||||||
}
|
}
|
||||||
.menu-profile-list-item{
|
.menu-profile-list-item{
|
||||||
padding-left: 5px;
|
padding-left: 5px;
|
||||||
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
.menu-profile-list-item:hover{
|
.menu-profile-list-item:hover{
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
/*http://prothemedesign.com/circular-icons/*/
|
/*http://prothemedesign.com/circular-icons/*/
|
||||||
.menu-profile-list.home{
|
.menu-profile-icon.home{
|
||||||
background: url("../../../view/theme/diabook-blue/icons/home.png") no-repeat;
|
background: url("../../../view/theme/diabook/icons/home.png") no-repeat;
|
||||||
}
|
}
|
||||||
.menu-profile-list.photos{
|
.menu-profile-icon.photos{
|
||||||
background: url("../../../view/theme/diabook-blue/icons/mess_side.png") no-repeat;
|
background: url("../../../view/theme/diabook/icons/mess_side.png") no-repeat;
|
||||||
}
|
}
|
||||||
.menu-profile-list.events{
|
.menu-profile-icon.events{
|
||||||
background: url("../../../view/theme/diabook-blue/icons/events.png") no-repeat;
|
background: url("../../../view/theme/diabook/icons/events.png") no-repeat;
|
||||||
}
|
}
|
||||||
.menu-profile-list.notes{
|
.menu-profile-icon.notes{
|
||||||
background: url("../../../view/theme/diabook-blue/icons/notes.png") no-repeat;
|
background: url("../../../view/theme/diabook/icons/notes.png") no-repeat;
|
||||||
}
|
}
|
||||||
.menu-profile-list.foren{
|
.menu-profile-icon.foren{
|
||||||
background: url("../../../view/theme/diabook-blue/icons/pubgroups.png") no-repeat;
|
background: url("../../../view/theme/diabook/icons/pubgroups.png") no-repeat;
|
||||||
}
|
}
|
||||||
.menu-profile-list.com_side{
|
.menu-profile-icon.com_side{
|
||||||
background: url("../../../view/theme/diabook-blue/icons/com_side.png") no-repeat;
|
background: url("../../../view/theme/diabook/icons/com_side.png") no-repeat;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* aside */
|
/* aside */
|
||||||
|
|
|
@ -529,8 +529,9 @@ code {
|
||||||
}
|
}
|
||||||
#saved-search-ul .tool:hover,
|
#saved-search-ul .tool:hover,
|
||||||
#nets-sidebar .tool:hover,
|
#nets-sidebar .tool:hover,
|
||||||
#sidebar-group-list .tool:hover {
|
#sidebar-group-list .tool:hover,
|
||||||
background: #EEE;
|
#fileas-sidebar .tool:hover {
|
||||||
|
background: #E7F2F7;
|
||||||
}
|
}
|
||||||
.tool .label {
|
.tool .label {
|
||||||
float: left;
|
float: left;
|
||||||
|
@ -1023,43 +1024,56 @@ ul.menu-popup .empty {
|
||||||
.menu-profile-list{
|
.menu-profile-list{
|
||||||
height: auto;
|
height: auto;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
padding-top: 3px;
|
|
||||||
padding-bottom: 3px;
|
|
||||||
padding-left: 16px;
|
|
||||||
min-height: 16px;
|
min-height: 16px;
|
||||||
list-style: none;
|
list-style: none;
|
||||||
}
|
}
|
||||||
.menu-profile-list:hover{
|
.menu-profile-list:hover{
|
||||||
background: #EEE;
|
background: #E7F2F7;
|
||||||
}
|
}
|
||||||
.menu-profile-list-item{
|
.menu-profile-list-item{
|
||||||
padding-left: 5px;
|
padding-left: 5px;
|
||||||
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
.menu-profile-list-item:hover{
|
.menu-profile-list-item:hover{
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
/*http://prothemedesign.com/circular-icons/*/
|
/*http://prothemedesign.com/circular-icons/*/
|
||||||
.menu-profile-list.home{
|
.menu-profile-icon.home{
|
||||||
background: url("../../../view/theme/diabook-blue/icons/home.png") no-repeat;
|
background: url("../../../view/theme/diabook/icons/home.png") no-repeat;
|
||||||
|
float: left;
|
||||||
|
height: 22px;
|
||||||
|
width: 22px;
|
||||||
}
|
}
|
||||||
.menu-profile-list.photos{
|
.menu-profile-icon.photos{
|
||||||
background: url("../../../view/theme/diabook-blue/icons/mess_side.png") no-repeat;
|
background: url("../../../view/theme/diabook/icons/mess_side.png") no-repeat;
|
||||||
}
|
float: left;
|
||||||
.menu-profile-list.events{
|
height: 22px;
|
||||||
background: url("../../../view/theme/diabook-blue/icons/events.png") no-repeat;
|
width: 22px;}
|
||||||
}
|
.menu-profile-icon.events{
|
||||||
.menu-profile-list.notes{
|
background: url("../../../view/theme/diabook/icons/events.png") no-repeat;
|
||||||
background: url("../../../view/theme/diabook-blue/icons/notes.png") no-repeat;
|
float: left;
|
||||||
}
|
height: 22px;
|
||||||
.menu-profile-list.foren{
|
width: 22px;}
|
||||||
background: url("../../../view/theme/diabook-blue/icons/pubgroups.png") no-repeat;
|
.menu-profile-icon.notes{
|
||||||
}
|
background: url("../../../view/theme/diabook/icons/notes.png") no-repeat;
|
||||||
.menu-profile-list.com_side{
|
float: left;
|
||||||
background: url("../../../view/theme/diabook-blue/icons/com_side.png") no-repeat;
|
height: 22px;
|
||||||
}
|
width: 22px;}
|
||||||
.menu-profile-list.pscontacts{
|
.menu-profile-icon.foren{
|
||||||
|
background: url("../../../view/theme/diabook/icons/pubgroups.png") no-repeat;
|
||||||
|
float: left;
|
||||||
|
height: 22px;
|
||||||
|
width: 22px;}
|
||||||
|
.menu-profile-icon.com_side{
|
||||||
|
background: url("../../../view/theme/diabook/icons/com_side.png") no-repeat;
|
||||||
|
float: left;
|
||||||
|
height: 22px;
|
||||||
|
width: 22px;}
|
||||||
|
.menu-profile-icon.pscontacts{
|
||||||
background: url("../../../view/theme/diabook/icons/pscontacts.png") no-repeat;
|
background: url("../../../view/theme/diabook/icons/pscontacts.png") no-repeat;
|
||||||
}
|
float: left;
|
||||||
|
height: 22px;
|
||||||
|
width: 22px;}
|
||||||
|
|
||||||
/* aside */
|
/* aside */
|
||||||
aside {
|
aside {
|
||||||
|
@ -1287,6 +1301,7 @@ body .pageheader{
|
||||||
padding: 3px;
|
padding: 3px;
|
||||||
color: #333333;
|
color: #333333;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#birthday-notice, #event-notice, #birthday-wrapper, #event-wrapper{
|
#birthday-notice, #event-notice, #birthday-wrapper, #event-wrapper{
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
|
@ -2072,6 +2087,41 @@ ul.tabs li .active {
|
||||||
box-shadow: 0 1px 1px #CFCFCF;
|
box-shadow: 0 1px 1px #CFCFCF;
|
||||||
margin-left: 5px;
|
margin-left: 5px;
|
||||||
}
|
}
|
||||||
|
//settings tabs
|
||||||
|
ul.rs_tabs {
|
||||||
|
list-style-type: none;
|
||||||
|
font-size: 11px;
|
||||||
|
}
|
||||||
|
ul.rs_tabs li {
|
||||||
|
float: left;
|
||||||
|
margin-bottom: 30px;
|
||||||
|
clear: both;
|
||||||
|
}
|
||||||
|
ul.rs_tabs li .selected {
|
||||||
|
background-color: #333;
|
||||||
|
border: 1px solid #777777;
|
||||||
|
color: white;
|
||||||
|
border-radius: 3px 3px 3px 3px;
|
||||||
|
box-shadow: 2px 2px 2px #CFCFCF;
|
||||||
|
font-size: 13px;
|
||||||
|
}
|
||||||
|
.rs_tabs {
|
||||||
|
list-style-type: none;
|
||||||
|
font-size: 11px;
|
||||||
|
background-position: 0 -20px;
|
||||||
|
background-repeat: repeat-x;
|
||||||
|
height: 27px;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.rs_tab.button {
|
||||||
|
/*background: none repeat scroll 0 0 #F8F8F8;*/
|
||||||
|
border: 1px solid #CCCCCC;
|
||||||
|
border-radius: 3px 3px 3px 3px;
|
||||||
|
font-weight: bolder;
|
||||||
|
padding: 3px;
|
||||||
|
color: #333333;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
/**
|
/**
|
||||||
* Form fields
|
* Form fields
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -3,13 +3,13 @@
|
||||||
/*
|
/*
|
||||||
* Name: Diabook
|
* Name: Diabook
|
||||||
* Description: Diabook: report bugs and request here: http://pad.toktan.org/p/diabook or contact me : thomas_bierey@friendica.eu
|
* Description: Diabook: report bugs and request here: http://pad.toktan.org/p/diabook or contact me : thomas_bierey@friendica.eu
|
||||||
* Version: (Version: 1.016)
|
* Version: (Version: 1.017)
|
||||||
* Author:
|
* Author:
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
//print diabook-version for debugging
|
//print diabook-version for debugging
|
||||||
$diabook_version = "Diabook (Version: 1.016)";
|
$diabook_version = "Diabook (Version: 1.017)";
|
||||||
$a->page['htmlhead'] .= sprintf('<script "%s" ></script>', $diabook_version);
|
$a->page['htmlhead'] .= sprintf('<script "%s" ></script>', $diabook_version);
|
||||||
|
|
||||||
//change css on network and profilepages
|
//change css on network and profilepages
|
||||||
|
@ -24,7 +24,7 @@ $cssFile = null;
|
||||||
|
|
||||||
function diabook_community_info(){
|
function diabook_community_info(){
|
||||||
$a = get_app();
|
$a = get_app();
|
||||||
//right_aside at networkpages
|
|
||||||
|
|
||||||
// last 12 users
|
// last 12 users
|
||||||
$aside['$lastusers_title'] = t('Last users');
|
$aside['$lastusers_title'] = t('Last users');
|
||||||
|
@ -288,58 +288,6 @@ if ($a->argv[0].$a->argv[1] === "profile".$a->user['nickname']){
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
//tabs at aside on settings page
|
|
||||||
if ($a->argv[0] === "settings"){
|
|
||||||
|
|
||||||
$tabs = array(
|
|
||||||
array(
|
|
||||||
'label' => t('Account settings'),
|
|
||||||
'url' => $a->get_baseurl(true).'/settings',
|
|
||||||
'sel' => (($a->argc == 1)?'active':''),
|
|
||||||
),
|
|
||||||
array(
|
|
||||||
'label' => t('Display settings'),
|
|
||||||
'url' => $a->get_baseurl(true).'/settings/display',
|
|
||||||
'sel' => (($a->argc > 1) && ($a->argv[1] === 'display')?'active':''),
|
|
||||||
),
|
|
||||||
array(
|
|
||||||
'label' => t('Edit/Manage Profiles'),
|
|
||||||
'url' => $a->get_baseurl(true).'/profiles',
|
|
||||||
),
|
|
||||||
array(
|
|
||||||
'label' => t('Connector settings'),
|
|
||||||
'url' => $a->get_baseurl(true).'/settings/connectors',
|
|
||||||
'sel' => (($a->argc > 1) && ($a->argv[1] === 'connectors')?'active':''),
|
|
||||||
),
|
|
||||||
array(
|
|
||||||
'label' => t('Plugin settings'),
|
|
||||||
'url' => $a->get_baseurl(true).'/settings/addon',
|
|
||||||
'sel' => (($a->argc > 1) && ($a->argv[1] === 'addon')?'active':''),
|
|
||||||
),
|
|
||||||
array(
|
|
||||||
'label' => t('Connections'),
|
|
||||||
'url' => $a->get_baseurl(true) . '/settings/oauth',
|
|
||||||
'sel' => (($a->argc > 1) && ($a->argv[1] === 'oauth')?'active':''),
|
|
||||||
),
|
|
||||||
array(
|
|
||||||
'label' => t('Export personal data'),
|
|
||||||
'url' => $a->get_baseurl(true) . '/uexport',
|
|
||||||
'sel' => ''
|
|
||||||
)
|
|
||||||
);
|
|
||||||
$tabtpl = file_get_contents(dirname(__file__).'/rs_common_tabs.tpl') ;
|
|
||||||
$a->page['aside'] = replace_macros($tabtpl, array(
|
|
||||||
'$tabs' => $tabs,
|
|
||||||
));
|
|
||||||
|
|
||||||
|
|
||||||
// CUSTOM CSS
|
|
||||||
$cssFile = $a->get_baseurl($ssl_state)."/view/theme/diabook/style-settings.css";
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
// custom css
|
// custom css
|
||||||
if (!is_null($cssFile)) $a->page['htmlhead'] .= sprintf('<link rel="stylesheet" type="text/css" href="%s" />', $cssFile);
|
if (!is_null($cssFile)) $a->page['htmlhead'] .= sprintf('<link rel="stylesheet" type="text/css" href="%s" />', $cssFile);
|
||||||
|
|
||||||
|
|