Merge remote branch 'upstream/master'

This commit is contained in:
Michael Vogel 2012-09-10 23:28:07 +02:00
commit 5cfb068c25
110 changed files with 8291 additions and 1531 deletions

2
.gitignore vendored
View file

@ -21,3 +21,5 @@ report/
.buildpath
.externalToolBuilders
.settings
view/theme/smoothly

View file

@ -21,7 +21,7 @@ Deny from all
# Friendica url: http://some.example.com
# RewriteBase /
# Friendica url: http://some.example.com/friendica
# RewriteBase /firendica/
# RewriteBase /friendica/
#
#RewriteBase /

View file

@ -11,7 +11,7 @@ require_once('include/cache.php');
require_once('library/Mobile_Detect/Mobile_Detect.php');
define ( 'FRIENDICA_PLATFORM', 'Friendica');
define ( 'FRIENDICA_VERSION', '3.0.1455' );
define ( 'FRIENDICA_VERSION', '3.0.1461' );
define ( 'DFRN_PROTOCOL_VERSION', '2.23' );
define ( 'DB_UPDATE_VERSION', 1154 );
@ -1025,11 +1025,29 @@ if(! function_exists('get_max_import_size')) {
if(! function_exists('profile_load')) {
function profile_load(&$a, $nickname, $profile = 0) {
if(remote_user()) {
$r = q("SELECT `profile-id` FROM `contact` WHERE `id` = %d LIMIT 1",
intval($_SESSION['visitor_id']));
if(count($r))
$profile = $r[0]['profile-id'];
$user = q("select uid from user where nickname = '%s' limit 1",
dbesc($nickname)
);
if(! ($user && count($user))) {
logger('profile error: ' . $a->query_string, LOGGER_DEBUG);
notice( t('Requested account is not available.') . EOL );
$a->error = 404;
return;
}
if(remote_user() && count($_SESSION['remote'])) {
foreach($_SESSION['remote'] as $visitor) {
if($visitor['uid'] == $user[0]['uid']) {
$r = q("SELECT `profile-id` FROM `contact` WHERE `id` = %d LIMIT 1",
intval($visitor['cid'])
);
if(count($r))
$profile = $r[0]['profile-id'];
break;
}
}
}
$r = null;
@ -1070,9 +1088,12 @@ if(! function_exists('profile_load')) {
$a->profile = $r[0];
$a->profile['mobile-theme'] = get_pconfig($profile_uid, 'system', 'mobile_theme');
$a->page['title'] = $a->profile['name'] . " @ " . $a->config['sitename'];
$_SESSION['theme'] = $a->profile['theme'];
$_SESSION['mobile-theme'] = $a->profile['mobile-theme'];
/**
* load/reload current theme info
@ -1144,8 +1165,14 @@ if(! function_exists('profile_sidebar')) {
// don't show connect link to authenticated visitors either
if((remote_user()) && ($_SESSION['visitor_visiting'] == $profile['uid']))
$connect = False;
if(remote_user() && count($_SESSION['remote'])) {
foreach($_SESSION['remote'] as $visitor) {
if($visitor['uid'] == $profile['uid']) {
$connect = false;
break;
}
}
}
if(get_my_url() && $profile['unkmail'])
$wallmessage = t('Message');
@ -1486,6 +1513,12 @@ if(! function_exists('current_theme')) {
if($is_mobile) {
$system_theme = ((isset($a->config['system']['mobile-theme'])) ? $a->config['system']['mobile-theme'] : '');
$theme_name = ((isset($_SESSION) && x($_SESSION,'mobile-theme')) ? $_SESSION['mobile-theme'] : $system_theme);
if($theme_name === '---') {
// user has selected to have the mobile theme be the same as the normal one
$system_theme = '';
$theme_name = '';
}
}
if(!$is_mobile || ($system_theme === '' && $theme_name === '')) {
$system_theme = ((isset($a->config['system']['theme'])) ? $a->config['system']['theme'] : '');

View file

@ -295,7 +295,11 @@ class Photo {
if( (! function_exists('exif_read_data')) || ($this->getType() !== 'image/jpeg') )
return;
$exif = exif_read_data($filename);
$exif = @exif_read_data($filename);
if(! $exif)
return;
$ort = $exif['Orientation'];
switch($ort)

View file

@ -563,9 +563,10 @@ function probe_url($url, $mode = PROBE_NORMAL) {
else
$poll = $tapi . '?screen_name=' . $tid;
$profile = 'http://twitter.com/#!/' . $tid;
$vcard['photo'] = 'https://api.twitter.com/1/users/profile_image/' . $tid;
//$vcard['photo'] = 'https://api.twitter.com/1/users/profile_image/' . $tid;
$vcard['photo'] = 'https://api.twitter.com/1/users/profile_image?screen_name=' . $tid . '&size=bigger';
$vcard['nick'] = $tid;
$vcard['fn'] = $tid . '@twitter';
$vcard['fn'] = $tid;
}
if($lastfm) {

View file

@ -10,14 +10,13 @@ function nuke_session() {
unset($_SESSION['administrator']);
unset($_SESSION['cid']);
unset($_SESSION['theme']);
unset($_SESSION['mobile-theme']);
unset($_SESSION['page_flags']);
unset($_SESSION['submanage']);
unset($_SESSION['my_url']);
unset($_SESSION['my_address']);
unset($_SESSION['addr']);
unset($_SESSION['return_url']);
unset($_SESSION['theme']);
unset($_SESSION['page_flags']);
}

View file

@ -142,9 +142,16 @@ function common_friends_visitor_widget($profile_uid) {
$cid = $zcid = 0;
if(can_write_wall($a,$profile_uid))
$cid = remote_user();
else {
if(is_array($_SESSION['remote'])) {
foreach($_SESSION['remote'] as $visitor) {
if($visitor['uid'] == $profile_uid) {
$cid = $visitor['cid'];
break;
}
}
}
if(! $cid) {
if(get_my_url()) {
$r = q("select id from contact where nurl = '%s' and uid = %d limit 1",
dbesc(normalise_link(get_my_url())),

View file

@ -346,7 +346,7 @@ function count_descendants($item) {
* Recursively prepare a thread for HTML
*/
function prepare_threads_body($a, $items, $cmnt_tpl, $page_writeable, $mode, $profile_owner, $alike, $dlike, $thread_level=1) {
function prepare_threads_body($a, $items, $cmnt_tpl, $page_writeable, $mode, $profile_owner, $alike, $dlike, $previewing, $thread_level=1) {
$result = array();
$wall_template = 'wall_thread.tpl';
@ -394,12 +394,34 @@ function prepare_threads_body($a, $items, $cmnt_tpl, $page_writeable, $mode, $pr
$thumb = $item['thumb'];
$indent = '';
$osparkle = '';
$visiting = false;
$lastcollapsed = false;
$firstcollapsed = false;
$total_children += count_descendants($item);
$toplevelpost = (($item['id'] == $item['parent']) ? true : false);
if($item['uid'] == local_user())
$dropping = true;
elseif(is_array($_SESSION['remote'])) {
foreach($_SESSION['remote'] as $visitor) {
if($visitor['cid'] == $item['contact-id']) {
$dropping = true;
$visiting = true;
break;
}
}
}
$item_writeable = (($item['writable'] || $item['self']) ? true : false);
// This will allow us to comment on wall-to-wall items owned by our friends
// and community forums even if somebody else wrote the post.
if($visiting && $mode == 'profile')
$item_writeable = true;
$show_comment_box = ((($page_writeable) && ($item_writeable)) ? true : false);
$lock = ((($item['private'] == 1) || (($item['uid'] == local_user()) && (strlen($item['allow_cid']) || strlen($item['allow_gid'])
|| strlen($item['deny_cid']) || strlen($item['deny_gid']))))
@ -411,8 +433,6 @@ function prepare_threads_body($a, $items, $cmnt_tpl, $page_writeable, $mode, $pr
$edpost = array($a->get_baseurl($ssl_state)."/editpost/".$item['id'], t("Edit"));
else
$edpost = false;
if((intval($item['contact-id']) && $item['contact-id'] == remote_user()) || ($item['uid'] == local_user()))
$dropping = true;
$drop = array(
'dropping' => $dropping,
@ -651,7 +671,7 @@ function prepare_threads_body($a, $items, $cmnt_tpl, $page_writeable, $mode, $pr
$item_result['children'] = array();
if(count($item['children'])) {
$item_result['children'] = prepare_threads_body($a, $item['children'], $cmnt_tpl, $page_writeable, $mode, $profile_owner, $alike, $dlike, ($thread_level + 1));
$item_result['children'] = prepare_threads_body($a, $item['children'], $cmnt_tpl, $page_writeable, $mode, $profile_owner, $alike, $dlike, $previewing, ($thread_level + 1));
}
$item_result['private'] = $item['private'];
$item_result['toplevel'] = ($toplevelpost ? 'toplevel_item' : '');
@ -901,7 +921,7 @@ function conversation(&$a, $items, $mode, $update, $preview = false) {
}
}
$threads = prepare_threads_body($a, $threads, $cmnt_tpl, $page_writeable, $mode, $profile_owner, $alike, $dlike);
$threads = prepare_threads_body($a, $threads, $cmnt_tpl, $page_writeable, $mode, $profile_owner, $alike, $dlike, $previewing);
}
}

View file

@ -328,8 +328,9 @@ function delivery_run($argv, $argc){
dbesc($nickname)
);
if(count($x)) {
if($owner['page-flags'] == PAGE_COMMUNITY && ! $x[0]['writable']) {
if($x && count($x)) {
$write_flag = ((($x[0]['rel']) && ($x[0]['rel'] != CONTACT_IS_SHARING)) ? true : false);
if((($owner['page-flags'] == PAGE_COMMUNITY) || ($write_flag)) && (! $x[0]['writable'])) {
q("update contact set writable = 1 where id = %d limit 1",
intval($x[0]['id'])
);

View file

@ -2128,8 +2128,11 @@ function local_delivery($importer,$data) {
$rawtags = $feed->get_feed_tags( NAMESPACE_DFRN, 'owner');
if(! $rawtags)
$rawtags = $feed->get_feed_tags( SIMPLEPIE_NAMESPACE_ATOM_10, 'author');
// Fallback should not be needed here. If it isn't DFRN it won't have DFRN updated tags
// if(! $rawtags)
// $rawtags = $feed->get_feed_tags( SIMPLEPIE_NAMESPACE_ATOM_10, 'author');
if($rawtags) {
$elems = $rawtags[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10];
if($elems['name'][0]['attribs'][NAMESPACE_DFRN]['updated']) {
@ -3708,9 +3711,21 @@ function drop_item($id,$interactive = true) {
$owner = $item['uid'];
$cid = 0;
// check if logged in user is either the author or owner of this item
if((local_user() == $item['uid']) || (remote_user() == $item['contact-id']) || (! $interactive)) {
if(is_array($_SESSION['remote'])) {
foreach($_SESSION['remote'] as $visitor) {
if($visitor['uid'] == $item['uid'] && $visitor['cid'] == $item['contact-id']) {
$cid = $visitor['cid'];
break;
}
}
}
if((local_user() == $item['uid']) || ($cid) || (! $interactive)) {
logger('delete item: ' . $item['id'], LOGGER_DEBUG);
// delete the item

View file

@ -295,7 +295,7 @@ function notifier_run($argv, $argc){
// a delivery fork. private groups (forum_mode == 2) do not uplink
if((intval($parent['forum_mode']) == 1) && (! $top_level) && ($cmd !== 'uplink')) {
proc_run('php','include/notifier','uplink',$item_id);
proc_run('php','include/notifier.php','uplink',$item_id);
}
$conversants = array();
@ -580,9 +580,9 @@ function notifier_run($argv, $argc){
dbesc($nickname)
);
if(count($x)) {
if($owner['page-flags'] == PAGE_COMMUNITY && ! $x[0]['writable']) {
if($x && count($x)) {
$write_flag = ((($x[0]['rel']) && ($x[0]['rel'] != CONTACT_IS_SHARING)) ? true : false);
if((($owner['page-flags'] == PAGE_COMMUNITY) || ($write_flag)) && (! $x[0]['writable'])) {
q("update contact set writable = 1 where id = %d limit 1",
intval($x[0]['id'])
);

View file

@ -145,6 +145,7 @@ class FKOAuth1 extends OAuthServer {
}
$_SESSION['uid'] = $record['uid'];
$_SESSION['theme'] = $record['theme'];
$_SESSION['mobile-theme'] = get_pconfig($record['uid'], 'system', 'mobile_theme');
$_SESSION['authenticated'] = 1;
$_SESSION['page_flags'] = $record['page-flags'];
$_SESSION['my_url'] = $a->get_baseurl() . '/profile/' . $record['nickname'];

View file

@ -6,6 +6,7 @@ function authenticate_success($user_record, $login_initial = false, $interactive
$_SESSION['uid'] = $user_record['uid'];
$_SESSION['theme'] = $user_record['theme'];
$_SESSION['mobile-theme'] = get_pconfig($user_record['uid'], 'system', 'mobile_theme');
$_SESSION['authenticated'] = 1;
$_SESSION['page_flags'] = $user_record['page-flags'];
$_SESSION['my_url'] = $a->get_baseurl() . '/profile/' . $user_record['nickname'];
@ -120,12 +121,26 @@ function can_write_wall(&$a,$owner) {
elseif($verified === 1)
return false;
else {
$cid = 0;
if(is_array($_SESSION['remote'])) {
foreach($_SESSION['remote'] as $visitor) {
if($visitor['uid'] == $owner) {
$cid = $visitor['cid'];
break;
}
}
}
if(! $cid)
return false;
$r = q("SELECT `contact`.*, `user`.`page-flags` FROM `contact` LEFT JOIN `user` on `user`.`uid` = `contact`.`uid`
WHERE `contact`.`uid` = %d AND `contact`.`id` = %d AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
AND `user`.`blockwall` = 0 AND `readonly` = 0 AND ( `contact`.`rel` IN ( %d , %d ) OR `user`.`page-flags` = %d ) LIMIT 1",
intval($owner),
intval(remote_user()),
intval($cid),
intval(CONTACT_IS_SHARING),
intval(CONTACT_IS_FRIEND),
intval(PAGE_COMMUNITY)

View file

@ -17,7 +17,7 @@ var gArCountryInfo;
var gArStateInfo;
// NOTE:
// Some editors may exhibit problems viewing 2803 characters...
var sCountryString = "|Afghanistan|Albania|Algeria|American Samoa|Angola|Anguilla|Antartica|Antigua and Barbuda|Argentina|Armenia|Aruba|Ashmore and Cartier Island|Australia|Austria|Azerbaijan|Bahamas|Bahrain|Bangladesh|Barbados|Belarus|Belgium|Belize|Benin|Bermuda|Bhutan|Bolivia|Bosnia and Herzegovina|Botswana|Brazil|British Virgin Islands|Brunei|Bulgaria|Burkina Faso|Burma|Burundi|Cambodia|Cameroon|Canada|Cape Verde|Cayman Islands|Central African Republic|Chad|Chile|China|Christmas Island|Clipperton Island|Cocos (Keeling) Islands|Colombia|Comoros|Congo, Democratic Republic of the|Congo, Republic of the|Cook Islands|Costa Rica|Cote d'Ivoire|Croatia|Cuba|Cyprus|Czech Republic|Denmark|Djibouti|Dominica|Dominican Republic|Ecuador|Egypt|El Salvador|Equatorial Guinea|Eritrea|Estonia|Ethiopia|Europa Island|Falkland Islands (Islas Malvinas)|Faroe Islands|Fiji|Finland|France|French Guiana|French Polynesia|French Southern and Antarctic Lands|Gabon|Gambia, The|Gaza Strip|Georgia|Germany|Ghana|Gibraltar|Glorioso Islands|Greece|Greenland|Grenada|Guadeloupe|Guam|Guatemala|Guernsey|Guinea|Guinea-Bissau|Guyana|Haiti|Heard Island and McDonald Islands|Holy See (Vatican City)|Honduras|Hong Kong|Howland Island|Hungary|Iceland|India|Indonesia|Iran|Iraq|Ireland|Ireland, Northern|Israel|Italy|Jamaica|Jan Mayen|Japan|Jarvis Island|Jersey|Johnston Atoll|Jordan|Juan de Nova Island|Kazakhstan|Kenya|Kiribati|Korea, North|Korea, South|Kuwait|Kyrgyzstan|Laos|Latvia|Lebanon|Lesotho|Liberia|Libya|Liechtenstein|Lithuania|Luxembourg|Macau|Macedonia, Former Yugoslav Republic of|Madagascar|Malawi|Malaysia|Maldives|Mali|Malta|Man, Isle of|Marshall Islands|Martinique|Mauritania|Mauritius|Mayotte|Mexico|Micronesia, Federated States of|Midway Islands|Moldova|Monaco|Mongolia|Montserrat|Morocco|Mozambique|Namibia|Nauru|Nepal|Netherlands|Netherlands Antilles|New Caledonia|New Zealand|Nicaragua|Niger|Nigeria|Niue|Norfolk Island|Northern Mariana Islands|Norway|Oman|Pakistan|Palau|Panama|Papua New Guinea|Paraguay|Peru|Philippines|Pitcaim Islands|Poland|Portugal|Puerto Rico|Qatar|Reunion|Romainia|Russia|Rwanda|Saint Helena|Saint Kitts and Nevis|Saint Lucia|Saint Pierre and Miquelon|Saint Vincent and the Grenadines|Samoa|San Marino|Sao Tome and Principe|Saudi Arabia|Scotland|Senegal|Seychelles|Sierra Leone|Singapore|Slovakia|Slovenia|Solomon Islands|Somalia|South Africa|South Georgia and South Sandwich Islands|Spain|Spratly Islands|Sri Lanka|Sudan|Suriname|Svalbard|Swaziland|Sweden|Switzerland|Syria|Taiwan|Tajikistan|Tanzania|Thailand|Tobago|Toga|Tokelau|Tonga|Trinidad|Tunisia|Turkey|Turkmenistan|Tuvalu|Uganda|Ukraine|United Arab Emirates|United Kingdom|Uruguay|USA|Uzbekistan|Vanuatu|Venezuela|Vietnam|Virgin Islands|Wales|Wallis and Futuna|West Bank|Western Sahara|Yemen|Yugoslavia|Zambia|Zimbabwe|Friendicaland"
var sCountryString = "|Afghanistan|Albania|Algeria|American Samoa|Angola|Anguilla|Antartica|Antigua and Barbuda|Argentina|Armenia|Aruba|Ashmore and Cartier Island|Australia|Austria|Azerbaijan|Bahamas|Bahrain|Bangladesh|Barbados|Belarus|Belgium|Belize|Benin|Bermuda|Bhutan|Bolivia|Bosnia and Herzegovina|Botswana|Brazil|British Virgin Islands|Brunei|Bulgaria|Burkina Faso|Burma|Burundi|Cambodia|Cameroon|Canada|Cape Verde|Cayman Islands|Central African Republic|Chad|Chile|China|Christmas Island|Clipperton Island|Cocos (Keeling) Islands|Colombia|Comoros|Congo, Democratic Republic of the|Congo, Republic of the|Cook Islands|Costa Rica|Cote d'Ivoire|Croatia|Cuba|Cyprus|Czech Republic|Denmark|Djibouti|Dominica|Dominican Republic|Ecuador|Egypt|El Salvador|Equatorial Guinea|Eritrea|Estonia|Ethiopia|Europa Island|Falkland Islands (Islas Malvinas)|Faroe Islands|Fiji|Finland|France|French Guiana|French Polynesia|French Southern and Antarctic Lands|Gabon|Gambia, The|Gaza Strip|Georgia|Germany|Ghana|Gibraltar|Glorioso Islands|Greece|Greenland|Grenada|Guadeloupe|Guam|Guatemala|Guernsey|Guinea|Guinea-Bissau|Guyana|Haiti|Heard Island and McDonald Islands|Holy See (Vatican City)|Honduras|Hong Kong|Howland Island|Hungary|Iceland|India|Indonesia|Iran|Iraq|Ireland|Ireland, Northern|Israel|Italy|Jamaica|Jan Mayen|Japan|Jarvis Island|Jersey|Johnston Atoll|Jordan|Juan de Nova Island|Kazakhstan|Kenya|Kiribati|Korea, North|Korea, South|Kuwait|Kyrgyzstan|Laos|Latvia|Lebanon|Lesotho|Liberia|Libya|Liechtenstein|Lithuania|Luxembourg|Macau|Macedonia, Former Yugoslav Republic of|Madagascar|Malawi|Malaysia|Maldives|Mali|Malta|Man, Isle of|Marshall Islands|Martinique|Mauritania|Mauritius|Mayotte|Mexico|Micronesia, Federated States of|Midway Islands|Moldova|Monaco|Mongolia|Montserrat|Morocco|Mozambique|Namibia|Nauru|Nepal|Netherlands|Netherlands Antilles|New Caledonia|New Zealand|Nicaragua|Niger|Nigeria|Niue|Norfolk Island|Northern Mariana Islands|Norway|Oman|Pakistan|Palau|Panama|Papua New Guinea|Paraguay|Peru|Philippines|Pitcaim Islands|Poland|Portugal|Puerto Rico|Qatar|Reunion|Romania|Russia|Rwanda|Saint Helena|Saint Kitts and Nevis|Saint Lucia|Saint Pierre and Miquelon|Saint Vincent and the Grenadines|Samoa|San Marino|Sao Tome and Principe|Saudi Arabia|Scotland|Senegal|Seychelles|Sierra Leone|Singapore|Slovakia|Slovenia|Solomon Islands|Somalia|South Africa|South Georgia and South Sandwich Islands|Spain|Spratly Islands|Sri Lanka|Sudan|Suriname|Svalbard|Swaziland|Sweden|Switzerland|Syria|Taiwan|Tajikistan|Tanzania|Thailand|Tobago|Toga|Tokelau|Tonga|Trinidad|Tunisia|Turkey|Turkmenistan|Tuvalu|Uganda|Ukraine|United Arab Emirates|United Kingdom|Uruguay|USA|Uzbekistan|Vanuatu|Venezuela|Vietnam|Virgin Islands|Wales|Wallis and Futuna|West Bank|Western Sahara|Yemen|Yugoslavia|Zambia|Zimbabwe|Friendicaland"
var aStates = new Array();
aStates[0]="";

View file

@ -329,11 +329,11 @@ function admin_page_site_post(&$a){
}
set_config('system','language', $language);
set_config('system','theme', $theme);
if ( $theme_mobile === '---' ) {
del_config('system','mobile-theme');
} else {
set_config('system','mobile-theme', $theme_mobile);
}
if ( $theme_mobile === '---' ) {
del_config('system','mobile-theme');
} else {
set_config('system','mobile-theme', $theme_mobile);
}
set_config('system','maximagesize', $maximagesize);
set_config('system','max_image_length', $maximagelength);
set_config('system','jpeg_quality', $jpegimagequality);
@ -399,16 +399,18 @@ function admin_page_site(&$a) {
/* Installed themes */
$theme_choices = array();
$theme_choices_mobile = array();
$theme_choices_mobile["---"] = t("Don't apply a special theme for mobile devices.");
$theme_choices_mobile["---"] = t("No special theme for mobile devices");
$files = glob('view/theme/*');
if($files) {
foreach($files as $file) {
$f = basename($file);
$theme_name = ((file_exists($file . '/experimental')) ? sprintf("%s - \x28Experimental\x29", $f) : $f);
$theme_choices[$f] = $theme_name;
if (file_exists($file . '/mobile')) {
$theme_choices_mobile[$f] = $theme_name;
}
if (file_exists($file . '/mobile')) {
$theme_choices_mobile[$f] = $theme_name;
}
else {
$theme_choices[$f] = $theme_name;
}
}
}

View file

@ -1,8 +1,10 @@
<?php
function community_init(&$a) {
if(! local_user())
if(! local_user()) {
unset($_SESSION['theme']);
unset($_SESSION['mobile-theme']);
}
}

View file

@ -28,28 +28,35 @@ function contacts_init(&$a) {
if($contact_id) {
$a->data['contact'] = $r[0];
$o .= '<div class="vcard">';
$o .= '<div class="fn">' . $a->data['contact']['name'] . '</div>';
$o .= '<div id="profile-photo-wrapper"><img class="photo" style="width: 175px; height: 175px;" src="' . $a->data['contact']['photo'] . '" alt="' . $a->data['contact']['name'] . '" /></div>';
$o .= '</div>';
$a->page['aside'] .= $o;
$vcard_widget = replace_macros(get_markup_template("vcard-widget.tpl"),array(
'$name' => $a->data['contact']['name'],
'$photo' => $a->data['contact']['photo']
));
$follow_widget = '';
}
else
$a->page['aside'] .= follow_widget();
else {
$vcard_widget = '';
$follow_widget = follow_widget();
}
$a->page['aside'] .= group_side('contacts','group',false,0,$contact_id);
$groups_widget .= group_side('contacts','group',false,0,$contact_id);
$findpeople_widget .= findpeople_widget();
$networks_widget .= networks_widget('contacts',$_GET['nets']);
$a->page['aside'] .= replace_macros(get_markup_template("contacts-widget-sidebar.tpl"),array(
'$vcard_widget' => $vcard_widget,
'$follow_widget' => $follow_widget,
'$groups_widget' => $groups_widget,
'$findpeople_widget' => $findpeople_widget,
'$networks_widget' => $networks_widget
));
$a->page['aside'] .= findpeople_widget();
$a->page['aside'] .= networks_widget('contacts',$_GET['nets']);
$base = $a->get_baseurl();
$tpl = get_markup_template("contacts-head.tpl");
$a->page['htmlhead'] .= replace_macros($tpl,array(
'$baseurl' => $a->get_baseurl(true),
'$base' => $base
));
$tpl = get_markup_template("contacts-end.tpl");
$a->page['end'] .= replace_macros($tpl,array(
'$baseurl' => $a->get_baseurl(true),

View file

@ -87,6 +87,11 @@ function dfrn_poll_init(&$a) {
if((int) $xml->status == 1) {
$_SESSION['authenticated'] = 1;
if(! x($_SESSION,'remote'))
$_SESSION['remote'] = array();
$_SESSION['remote'][] = array('cid' => $r[0]['id'],'uid' => $r[0]['uid'],'url' => $r[0]['url']);
$_SESSION['visitor_id'] = $r[0]['id'];
$_SESSION['visitor_home'] = $r[0]['url'];
$_SESSION['visitor_handle'] = $r[0]['addr'];
@ -516,6 +521,9 @@ function dfrn_poll_content(&$a) {
if(((int) $xml->status == 0) && ($xml->challenge == $hash) && ($xml->sec == $sec)) {
$_SESSION['authenticated'] = 1;
if(! x($_SESSION,'remote'))
$_SESSION['remote'] = array();
$_SESSION['remote'][] = array('cid' => $r[0]['id'],'uid' => $r[0]['uid'],'url' => $r[0]['url']);
$_SESSION['visitor_id'] = $r[0]['id'];
$_SESSION['visitor_home'] = $r[0]['url'];
$_SESSION['visitor_visiting'] = $r[0]['uid'];

View file

@ -756,8 +756,10 @@ function dfrn_request_content(&$a) {
*/
if((get_config('system','block_public')) && (! local_user()) && (! remote_user())) {
notice( t('Public access denied.') . EOL);
return;
if(! get_config('system','local_block')) {
notice( t('Public access denied.') . EOL);
return;
}
}

View file

@ -9,8 +9,10 @@ function directory_init(&$a) {
$a->page['aside'] .= findpeople_widget();
}
else
else {
unset($_SESSION['theme']);
unset($_SESSION['mobile-theme']);
}
}

View file

@ -35,8 +35,18 @@ function display_content(&$a) {
$contact = null;
$remote_contact = false;
if(remote_user()) {
$contact_id = $_SESSION['visitor_id'];
$contact_id = 0;
if(is_array($_SESSION['remote'])) {
foreach($_SESSION['remote'] as $v) {
if($v['uid'] == $a->profile['uid']) {
$contact_id = $v['cid'];
break;
}
}
}
if($contact_id) {
$groups = init_groups_visitor($contact_id);
$r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
intval($contact_id),

View file

@ -22,6 +22,8 @@ function home_content(&$a) {
if(x($_SESSION,'theme'))
unset($_SESSION['theme']);
if(x($_SESSION,'mobile-theme'))
unset($_SESSION['mobile-theme']);
$o .= '<h1>' . ((x($a->config,'sitename')) ? sprintf( t("Welcome to %s") ,$a->config['sitename']) : "" ) . '</h1>';
if(file_exists('home.html'))

View file

@ -306,6 +306,7 @@ function item_post(&$a) {
$author = null;
$self = false;
$contact_id = 0;
if((local_user()) && (local_user() == $profile_uid)) {
$self = true;
@ -314,9 +315,19 @@ function item_post(&$a) {
);
}
elseif(remote_user()) {
$r = q("SELECT * FROM `contact` WHERE `id` = %d LIMIT 1",
intval(remote_user())
);
if(is_array($_SESSION['remote'])) {
foreach($_SESSION['remote'] as $v) {
if($v['uid'] == $profile_uid) {
$contact_id = $v['cid'];
break;
}
}
}
if($contact_id) {
$r = q("SELECT * FROM `contact` WHERE `id` = %d LIMIT 1",
intval($contact_id)
);
}
}
if(count($r)) {
@ -608,7 +619,7 @@ function item_post(&$a) {
if($preview) {
require_once('include/conversation.php');
$o = conversation($a,array(array_merge($contact_record,$datarray)),'search', false);
$o = conversation($a,array(array_merge($contact_record,$datarray)),'search', false, true);
logger('preview: ' . $o);
echo json_encode(array('preview' => $o));
killme();

View file

@ -3,8 +3,11 @@
function login_content(&$a) {
if(x($_SESSION,'theme'))
unset($_SESSION['theme']);
if(x($_SESSION,'mobile-theme'))
unset($_SESSION['mobile-theme']);
if(local_user())
goaway(z_root());
return login(($a->config['register_policy'] == REGISTER_CLOSED) ? false : true);
}
}

View file

@ -63,6 +63,7 @@ function manage_post(&$a) {
unset($_SESSION['administrator']);
unset($_SESSION['cid']);
unset($_SESSION['theme']);
unset($_SESSION['mobile-theme']);
unset($_SESSION['page_flags']);
unset($_SESSION['return_url']);
if(x($_SESSION,'submanage'))

View file

@ -36,6 +36,9 @@ function completeurl($url, $scheme) {
if ($schemearr["port"] != "")
$complete .= ":".$schemearr["port"];
if(strpos($urlarr['path'],'/') !== 0)
$complete .= '/';
$complete .= $urlarr["path"];
if ($urlarr["query"] != "")
@ -149,17 +152,17 @@ function parseurl_getsiteinfo($url) {
}
if ($siteinfo["image"] == "") {
$list = $xpath->query("//img[@src]");
foreach ($list as $node) {
$attr = array();
if ($node->attributes->length)
foreach ($node->attributes as $attribute)
$attr[$attribute->name] = $attribute->value;
$list = $xpath->query("//img[@src]");
foreach ($list as $node) {
$attr = array();
if ($node->attributes->length)
foreach ($node->attributes as $attribute)
$attr[$attribute->name] = $attribute->value;
$src = completeurl($attr["src"], $url);
$photodata = getimagesize($src);
$photodata = @getimagesize($src);
if (($photodata[0] > 150) and ($photodata[1] > 150)) {
if (($photodata) && ($photodata[0] > 150) and ($photodata[1] > 150)) {
if ($photodata[0] > 300) {
$photodata[1] = round($photodata[1] * (300 / $photodata[0]));
$photodata[0] = 300;
@ -173,15 +176,15 @@ function parseurl_getsiteinfo($url) {
"height"=>$photodata[1]);
}
}
} else {
}
} else {
$src = completeurl($siteinfo["image"], $url);
unset($siteinfo["image"]);
$photodata = getimagesize($src);
$photodata = @getimagesize($src);
if (($photodata[0] > 10) and ($photodata[1] > 10))
if (($photodata) && ($photodata[0] > 10) and ($photodata[1] > 10))
$siteinfo["images"][] = array("src"=>$src,
"width"=>$photodata[0],
"height"=>$photodata[1]);

View file

@ -101,13 +101,25 @@ function photos_post(&$a) {
$can_post = true;
else {
if($community_page && remote_user()) {
$r = q("SELECT `uid` FROM `contact` WHERE `blocked` = 0 AND `pending` = 0 AND `id` = %d AND `uid` = %d LIMIT 1",
intval(remote_user()),
intval($page_owner_uid)
);
if(count($r)) {
$can_post = true;
$visitor = remote_user();
$cid = 0;
if(is_array($_SESSION['remote'])) {
foreach($_SESSION['remote'] as $v) {
if($v['uid'] == $page_owner_uid) {
$cid = $v['cid'];
break;
}
}
}
if($cid) {
$r = q("SELECT `uid` FROM `contact` WHERE `blocked` = 0 AND `pending` = 0 AND `id` = %d AND `uid` = %d LIMIT 1",
intval($cid),
intval($page_owner_uid)
);
if(count($r)) {
$can_post = true;
$visitor = $cid;
}
}
}
}
@ -871,6 +883,7 @@ function photos_content(&$a) {
$visitor = 0;
$contact = null;
$remote_contact = false;
$contact_id = 0;
$owner_uid = $a->data['user']['uid'];
@ -880,15 +893,26 @@ function photos_content(&$a) {
$can_post = true;
else {
if($community_page && remote_user()) {
$r = q("SELECT `uid` FROM `contact` WHERE `blocked` = 0 AND `pending` = 0 AND `id` = %d AND `uid` = %d LIMIT 1",
intval(remote_user()),
intval($owner_uid)
);
if(count($r)) {
$can_post = true;
$contact = $r[0];
$remote_contact = true;
$visitor = remote_user();
if(is_array($_SESSION['remote'])) {
foreach($_SESSION['remote'] as $v) {
if($v['uid'] == $owner_uid) {
$contact_id = $v['cid'];
break;
}
}
}
if($contact_id) {
$r = q("SELECT `uid` FROM `contact` WHERE `blocked` = 0 AND `pending` = 0 AND `id` = %d AND `uid` = %d LIMIT 1",
intval($contact_id),
intval($owner_uid)
);
if(count($r)) {
$can_post = true;
$contact = $r[0];
$remote_contact = true;
$visitor = $cid;
}
}
}
}
@ -896,15 +920,25 @@ function photos_content(&$a) {
// perhaps they're visiting - but not a community page, so they wouldn't have write access
if(remote_user() && (! $visitor)) {
$contact_id = $_SESSION['visitor_id'];
$groups = init_groups_visitor($contact_id);
$r = q("SELECT * FROM `contact` WHERE `blocked` = 0 AND `pending` = 0 AND `id` = %d AND `uid` = %d LIMIT 1",
intval(remote_user()),
intval($owner_uid)
);
if(count($r)) {
$contact = $r[0];
$remote_contact = true;
$contact_id = 0;
if(is_array($_SESSION['remote'])) {
foreach($_SESSION['remote'] as $v) {
if($v['uid'] == $owner_uid) {
$contact_id = $v['cid'];
break;
}
}
}
if($contact_id) {
$groups = init_groups_visitor($contact_id);
$r = q("SELECT * FROM `contact` WHERE `blocked` = 0 AND `pending` = 0 AND `id` = %d AND `uid` = %d LIMIT 1",
intval($contact_id),
intval($owner_uid)
);
if(count($r)) {
$contact = $r[0];
$remote_contact = true;
}
}
}
@ -1020,8 +1054,13 @@ function photos_content(&$a) {
$a->set_pager_itemspage(20);
}
if($_GET['order'] === 'posted')
$order = 'ASC';
else
$order = 'DESC';
$r = q("SELECT `resource-id`, `id`, `filename`, type, max(`scale`) AS `scale`, `desc` FROM `photo` WHERE `uid` = %d AND `album` = '%s'
AND `scale` <= 4 $sql_extra GROUP BY `resource-id` ORDER BY `created` DESC LIMIT %d , %d",
AND `scale` <= 4 $sql_extra GROUP BY `resource-id` ORDER BY `created` $order LIMIT %d , %d",
intval($owner_uid),
dbesc($album),
intval($a->pager['start']),
@ -1055,10 +1094,17 @@ function photos_content(&$a) {
}
}
if($_GET['order'] === 'posted')
$o .= '<div class="photos-upload-link" ><a href="' . $a->get_baseurl() . '/photos/' . $a->data['user']['nickname'] . '/album/' . bin2hex($album) . '" >' . t('Show Newest First') . '</a></div>';
else
$o .= '<div class="photos-upload-link" ><a href="' . $a->get_baseurl() . '/photos/' . $a->data['user']['nickname'] . '/album/' . bin2hex($album) . '?f=&order=posted" >' . t('Show Oldest First') . '</a></div>';
if($can_post) {
$o .= '<div class="photos-upload-link" ><a href="' . $a->get_baseurl() . '/photos/' . $a->data['user']['nickname'] . '/upload/' . bin2hex($album) . '" >' . t('Upload New Photos') . '</a></div>';
}
$tpl = get_markup_template('photo_album.tpl');
if(count($r))
$twist = 'rotright';
@ -1073,7 +1119,8 @@ function photos_content(&$a) {
$o .= replace_macros($tpl,array(
'$id' => $rr['id'],
'$twist' => ' ' . $twist . rand(2,4),
'$photolink' => $a->get_baseurl() . '/photos/' . $a->data['user']['nickname'] . '/image/' . $rr['resource-id'],
'$photolink' => $a->get_baseurl() . '/photos/' . $a->data['user']['nickname'] . '/image/' . $rr['resource-id']
. (($_GET['order'] === 'posted') ? '?f=&order=posted' : ''),
'$phototitle' => t('View Photo'),
'$imgsrc' => $a->get_baseurl() . '/photo/' . $rr['resource-id'] . '-' . $rr['scale'] . '.' .$ext,
'$imgalt' => template_escape($rr['filename']),
@ -1118,8 +1165,14 @@ function photos_content(&$a) {
$prevlink = '';
$nextlink = '';
if($_GET['order'] === 'posted')
$order = 'ASC';
else
$order = 'DESC';
$prvnxt = q("SELECT `resource-id` FROM `photo` WHERE `album` = '%s' AND `uid` = %d AND `scale` = 0
$sql_extra ORDER BY `created` DESC ",
$sql_extra ORDER BY `created` $order ",
dbesc($ph[0]['album']),
intval($owner_uid)
);
@ -1137,8 +1190,8 @@ function photos_content(&$a) {
}
}
$edit_suffix = ((($cmd === 'edit') && ($can_post)) ? '/edit' : '');
$prevlink = $a->get_baseurl() . '/photos/' . $a->data['user']['nickname'] . '/image/' . $prvnxt[$prv]['resource-id'] . $edit_suffix;
$nextlink = $a->get_baseurl() . '/photos/' . $a->data['user']['nickname'] . '/image/' . $prvnxt[$nxt]['resource-id'] . $edit_suffix;
$prevlink = $a->get_baseurl() . '/photos/' . $a->data['user']['nickname'] . '/image/' . $prvnxt[$prv]['resource-id'] . $edit_suffix . (($_GET['order'] === 'posted') ? '?f=&order=posted' : '');
$nextlink = $a->get_baseurl() . '/photos/' . $a->data['user']['nickname'] . '/image/' . $prvnxt[$nxt]['resource-id'] . $edit_suffix . (($_GET['order'] === 'posted') ? '?f=&order=posted' : '');
}
@ -1422,7 +1475,7 @@ function photos_content(&$a) {
$drop = '';
if(($item['contact-id'] == remote_user()) || ($item['uid'] == local_user()))
if(($item['contact-id'] == $contact_id) || ($item['uid'] == local_user()))
$drop = replace_macros(get_markup_template('photo_drop.tpl'), array('$id' => $item['id'], '$delete' => t('Delete')));

View file

@ -116,8 +116,18 @@ function profile_content(&$a, $update = 0) {
$contact = null;
$remote_contact = false;
if(remote_user()) {
$contact_id = $_SESSION['visitor_id'];
$contact_id = 0;
if(is_array($_SESSION['remote'])) {
foreach($_SESSION['remote'] as $v) {
if($v['uid'] == $a->profile['profile_uid']) {
$contact_id = $v['cid'];
break;
}
}
}
if($contact_id) {
$groups = init_groups_visitor($contact_id);
$r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
intval($contact_id),

View file

@ -193,6 +193,8 @@ function register_content(&$a) {
if(x($_SESSION,'theme'))
unset($_SESSION['theme']);
if(x($_SESSION,'mobile-theme'))
unset($_SESSION['mobile-theme']);
$username = ((x($_POST,'username')) ? $_POST['username'] : ((x($_GET,'username')) ? $_GET['username'] : ''));

View file

@ -50,8 +50,10 @@ function search_init(&$a) {
$a->page['aside'] .= search_saved_searches();
}
else
else {
unset($_SESSION['theme']);
unset($_SESSION['mobile-theme']);
}

View file

@ -236,17 +236,22 @@ function settings_post(&$a) {
check_form_security_token_redirectOnErr('/settings/display', 'settings_display');
$theme = ((x($_POST,'theme')) ? notags(trim($_POST['theme'])) : $a->user['theme']);
$mobile_theme = ((x($_POST,'mobile_theme')) ? notags(trim($_POST['mobile_theme'])) : '');
$nosmile = ((x($_POST,'nosmile')) ? intval($_POST['nosmile']) : 0);
$browser_update = ((x($_POST,'browser_update')) ? intval($_POST['browser_update']) : 0);
$browser_update = $browser_update * 1000;
if($browser_update < 10000)
$browser_update = 40000;
$browser_update = 10000;
$itemspage_network = ((x($_POST,'itemspage_network')) ? intval($_POST['itemspage_network']) : 40);
if($itemspage_network > 100)
$itemspage_network = 40;
$itemspage_network = 100;
if($mobile_theme !== '') {
set_pconfig(local_user(),'system','mobile_theme',$mobile_theme);
}
set_pconfig(local_user(),'system','update_interval', $browser_update);
set_pconfig(local_user(),'system','itemspage_network', $itemspage_network);
set_pconfig(local_user(),'system','no_smilies',$nosmile);
@ -497,10 +502,11 @@ function settings_post(&$a) {
require_once('include/profile_update.php');
profile_change();
$_SESSION['theme'] = $theme;
//$_SESSION['theme'] = $theme;
if($email_changed && $a->config['register_policy'] == REGISTER_VERIFY) {
// FIXME - set to un-verified, blocked and redirect to logout
// Why? Are we verifying people or email addresses?
}
@ -704,6 +710,9 @@ function settings_content(&$a) {
$default_theme = get_config('system','theme');
if(! $default_theme)
$default_theme = 'default';
$default_mobile_theme = get_config('system','mobile-theme');
if(! $mobile_default_theme)
$mobile_default_theme = 'none';
$allowed_themes_str = get_config('system','allowed_themes');
$allowed_themes_raw = explode(',',$allowed_themes_str);
@ -715,19 +724,27 @@ function settings_content(&$a) {
$themes = array();
$mobile_themes = array("---" => t('No special theme for mobile devices'));
$files = glob('view/theme/*');
if($allowed_themes) {
foreach($allowed_themes as $th) {
$f = $th;
$is_experimental = file_exists('view/theme/' . $th . '/experimental');
$unsupported = file_exists('view/theme/' . $th . '/unsupported');
$is_mobile = file_exists('view/theme/' . $th . '/mobile');
if (!$is_experimental or ($is_experimental && (get_config('experimentals','exp_themes')==1 or get_config('experimentals','exp_themes')===false))){
$theme_name = (($is_experimental) ? sprintf("%s - \x28Experimental\x29", $f) : $f);
$themes[$f]=$theme_name;
if($is_mobile) {
$mobile_themes[$f]=$theme_name;
}
else {
$themes[$f]=$theme_name;
}
}
}
}
$theme_selected = (!x($_SESSION,'theme')? $default_theme : $_SESSION['theme']);
$mobile_theme_selected = (!x($_SESSION,'mobile-theme')? $default_mobile_theme : $_SESSION['mobile-theme']);
$browser_update = intval(get_pconfig(local_user(), 'system','update_interval'));
$browser_update = (($browser_update == 0) ? 40 : $browser_update / 1000); // default if not set: 40 seconds
@ -753,7 +770,8 @@ function settings_content(&$a) {
'$baseurl' => $a->get_baseurl(true),
'$uid' => local_user(),
'$theme' => array('theme', t('Display Theme:'), $theme_selected, '', $themes),
'$theme' => array('theme', t('Display Theme:'), $theme_selected, '', $themes, true),
'$mobile_theme' => array('mobile_theme', t('Mobile Theme:'), $mobile_theme_selected, '', $mobile_themes, false),
'$ajaxint' => array('browser_update', t("Update browser every xx seconds"), $browser_update, t('Minimum of 10 seconds, no maximum')),
'$itemspage_network' => array('itemspage_network', t("Number of items to display per page:"), $itemspage_network, t('Maximum of 100 items')),
'$nosmile' => array('nosmile', t("Don't show emoticons"), $nosmile, ''),

View file

@ -47,17 +47,9 @@ function tagger_content(&$a) {
if(local_user() != $owner_uid)
return;
if(remote_user()) {
$r = q("select * from contact where id = %d AND `uid` = %d limit 1",
intval(remote_user()),
intval($item['uid'])
);
}
else {
$r = q("select * from contact where self = 1 and uid = %d limit 1",
intval(local_user())
);
}
$r = q("select * from contact where self = 1 and uid = %d limit 1",
intval(local_user())
);
if(count($r))
$contact = $r[0];
else {

View file

@ -29,17 +29,28 @@ function wall_attach_post(&$a) {
$can_post = true;
else {
if($community_page && remote_user()) {
$r = q("SELECT `uid` FROM `contact` WHERE `blocked` = 0 AND `pending` = 0 AND `id` = %d AND `uid` = %d LIMIT 1",
intval(remote_user()),
intval($page_owner_uid)
);
if(count($r)) {
$can_post = true;
$visitor = remote_user();
$cid = 0;
if(is_array($_SESSION['remote'])) {
foreach($_SESSION['remote'] as $v) {
if($v['uid'] == $page_owner_uid) {
$cid = $v['cid'];
break;
}
}
}
if($cid) {
$r = q("SELECT `uid` FROM `contact` WHERE `blocked` = 0 AND `pending` = 0 AND `id` = %d AND `uid` = %d LIMIT 1",
intval($cid),
intval($page_owner_uid)
);
if(count($r)) {
$can_post = true;
$visitor = $cid;
}
}
}
}
if(! $can_post) {
notice( t('Permission denied.') . EOL );
killme();

View file

@ -37,14 +37,25 @@ function wall_upload_post(&$a) {
$can_post = true;
else {
if($community_page && remote_user()) {
$r = q("SELECT `uid` FROM `contact` WHERE `blocked` = 0 AND `pending` = 0 AND `id` = %d AND `uid` = %d LIMIT 1",
intval(remote_user()),
intval($page_owner_uid)
);
if(count($r)) {
$can_post = true;
$visitor = remote_user();
$default_cid = $visitor;
$cid = 0;
if(is_array($_SESSION['remote'])) {
foreach($_SESSION['remote'] as $v) {
if($v['uid'] == $page_owner_uid) {
$cid = $v['cid'];
break;
}
}
}
if($cid) {
$r = q("SELECT `uid` FROM `contact` WHERE `blocked` = 0 AND `pending` = 0 AND `id` = %d AND `uid` = %d LIMIT 1",
intval($cid),
intval($page_owner_uid)
);
if(count($r)) {
$can_post = true;
$visitor = $cid;
}
}
}
}

View file

@ -6,9 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: 3.0.1455\n"
"Project-Id-Version: 3.0.1461\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-09-03 10:00-0700\n"
"POT-Creation-Date: 2012-09-09 10:00-0700\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -34,13 +34,13 @@ msgstr ""
msgid "Contact update failed."
msgstr ""
#: ../../mod/crepair.php:115 ../../mod/wall_attach.php:44
#: ../../mod/crepair.php:115 ../../mod/wall_attach.php:55
#: ../../mod/fsuggest.php:78 ../../mod/events.php:140 ../../mod/api.php:26
#: ../../mod/api.php:31 ../../mod/photos.php:116 ../../mod/photos.php:938
#: ../../mod/api.php:31 ../../mod/photos.php:128 ../../mod/photos.php:972
#: ../../mod/editpost.php:10 ../../mod/install.php:151 ../../mod/poke.php:135
#: ../../mod/notifications.php:66 ../../mod/contacts.php:139
#: ../../mod/settings.php:86 ../../mod/settings.php:519
#: ../../mod/settings.php:524 ../../mod/manage.php:86 ../../mod/network.php:6
#: ../../mod/notifications.php:66 ../../mod/contacts.php:146
#: ../../mod/settings.php:86 ../../mod/settings.php:525
#: ../../mod/settings.php:530 ../../mod/manage.php:87 ../../mod/network.php:6
#: ../../mod/notes.php:20 ../../mod/wallmessage.php:9
#: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79
#: ../../mod/wallmessage.php:103 ../../mod/attach.php:33
@ -51,13 +51,13 @@ msgstr ""
#: ../../mod/profile_photo.php:153 ../../mod/profile_photo.php:166
#: ../../mod/message.php:38 ../../mod/message.php:168
#: ../../mod/allfriends.php:9 ../../mod/nogroup.php:25
#: ../../mod/wall_upload.php:53 ../../mod/follow.php:9
#: ../../mod/display.php:131 ../../mod/profiles.php:7
#: ../../mod/wall_upload.php:64 ../../mod/follow.php:9
#: ../../mod/display.php:141 ../../mod/profiles.php:7
#: ../../mod/profiles.php:413 ../../mod/delegate.php:6
#: ../../mod/suggest.php:28 ../../mod/invite.php:13 ../../mod/invite.php:81
#: ../../mod/dfrn_confirm.php:53 ../../addon/facebook/facebook.php:510
#: ../../addon/facebook/facebook.php:516
#: ../../addon/dav/friendica/layout.fnk.php:354 ../../include/items.php:3819
#: ../../addon/dav/friendica/layout.fnk.php:354 ../../include/items.php:3834
#: ../../index.php:315
msgid "Permission denied."
msgstr ""
@ -87,8 +87,8 @@ msgstr ""
msgid "Return to contact editor"
msgstr ""
#: ../../mod/crepair.php:148 ../../mod/settings.php:539
#: ../../mod/settings.php:565 ../../mod/admin.php:688 ../../mod/admin.php:697
#: ../../mod/crepair.php:148 ../../mod/settings.php:545
#: ../../mod/settings.php:571 ../../mod/admin.php:690 ../../mod/admin.php:699
msgid "Name"
msgstr ""
@ -125,18 +125,19 @@ msgid "New photo from this URL"
msgstr ""
#: ../../mod/crepair.php:166 ../../mod/fsuggest.php:107
#: ../../mod/events.php:439 ../../mod/photos.php:971 ../../mod/photos.php:1042
#: ../../mod/photos.php:1285 ../../mod/photos.php:1325
#: ../../mod/photos.php:1366 ../../mod/photos.php:1398
#: ../../mod/install.php:246 ../../mod/install.php:284
#: ../../mod/localtime.php:45 ../../mod/poke.php:199 ../../mod/content.php:691
#: ../../mod/contacts.php:341 ../../mod/settings.php:537
#: ../../mod/settings.php:691 ../../mod/settings.php:752
#: ../../mod/settings.php:958 ../../mod/group.php:85 ../../mod/mood.php:137
#: ../../mod/message.php:294 ../../mod/message.php:480 ../../mod/admin.php:441
#: ../../mod/admin.php:685 ../../mod/admin.php:821 ../../mod/admin.php:1020
#: ../../mod/admin.php:1107 ../../mod/profiles.php:583
#: ../../mod/invite.php:119 ../../addon/fromgplus/fromgplus.php:40
#: ../../mod/events.php:439 ../../mod/photos.php:1005
#: ../../mod/photos.php:1081 ../../mod/photos.php:1338
#: ../../mod/photos.php:1378 ../../mod/photos.php:1419
#: ../../mod/photos.php:1451 ../../mod/install.php:246
#: ../../mod/install.php:284 ../../mod/localtime.php:45 ../../mod/poke.php:199
#: ../../mod/content.php:691 ../../mod/contacts.php:348
#: ../../mod/settings.php:543 ../../mod/settings.php:697
#: ../../mod/settings.php:769 ../../mod/settings.php:976
#: ../../mod/group.php:85 ../../mod/mood.php:137 ../../mod/message.php:294
#: ../../mod/message.php:480 ../../mod/admin.php:443 ../../mod/admin.php:687
#: ../../mod/admin.php:823 ../../mod/admin.php:1022 ../../mod/admin.php:1109
#: ../../mod/profiles.php:583 ../../mod/invite.php:119
#: ../../addon/fromgplus/fromgplus.php:40
#: ../../addon/facebook/facebook.php:619
#: ../../addon/snautofollow/snautofollow.php:64 ../../addon/bg/bg.php:90
#: ../../addon/yourls/yourls.php:76 ../../addon/ljpost/ljpost.php:93
@ -174,7 +175,7 @@ msgstr ""
#: ../../view/theme/diabook/theme.php:757
#: ../../view/theme/diabook/config.php:190
#: ../../view/theme/quattro/config.php:52 ../../view/theme/dispy/config.php:70
#: ../../include/conversation.php:571
#: ../../include/conversation.php:591
msgid "Submit"
msgstr ""
@ -195,12 +196,12 @@ msgstr ""
msgid "Page not found."
msgstr ""
#: ../../mod/wall_attach.php:58
#: ../../mod/wall_attach.php:69
#, php-format
msgid "File exceeds size limit of %d"
msgstr ""
#: ../../mod/wall_attach.php:99 ../../mod/wall_attach.php:110
#: ../../mod/wall_attach.php:110 ../../mod/wall_attach.php:121
msgid "File upload failed."
msgstr ""
@ -234,7 +235,7 @@ msgid "link to source"
msgstr ""
#: ../../mod/events.php:331 ../../view/theme/diabook/theme.php:131
#: ../../include/nav.php:52 ../../boot.php:1650
#: ../../include/nav.php:52 ../../boot.php:1683
msgid "Events"
msgstr ""
@ -288,9 +289,9 @@ msgstr ""
msgid "Description:"
msgstr ""
#: ../../mod/events.php:432 ../../mod/directory.php:132
#: ../../mod/events.php:432 ../../mod/directory.php:134
#: ../../include/event.php:40 ../../include/bb2diaspora.php:412
#: ../../boot.php:1199
#: ../../boot.php:1226
msgid "Location:"
msgstr ""
@ -303,8 +304,8 @@ msgid "Share this event"
msgstr ""
#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94
#: ../../mod/dfrn_request.php:845 ../../mod/settings.php:538
#: ../../mod/settings.php:564 ../../addon/js_upload/js_upload.php:45
#: ../../mod/dfrn_request.php:847 ../../mod/settings.php:544
#: ../../mod/settings.php:570 ../../addon/js_upload/js_upload.php:45
msgid "Cancel"
msgstr ""
@ -325,7 +326,7 @@ msgstr ""
msgid "Remove"
msgstr ""
#: ../../mod/dfrn_poll.php:94 ../../mod/dfrn_poll.php:522
#: ../../mod/dfrn_poll.php:99 ../../mod/dfrn_poll.php:530
#, php-format
msgid "%s welcomes %s"
msgstr ""
@ -348,43 +349,43 @@ msgid ""
"and/or create new posts for you?"
msgstr ""
#: ../../mod/api.php:105 ../../mod/dfrn_request.php:833
#: ../../mod/settings.php:874 ../../mod/settings.php:880
#: ../../mod/settings.php:888 ../../mod/settings.php:892
#: ../../mod/settings.php:897 ../../mod/settings.php:903
#: ../../mod/settings.php:909 ../../mod/settings.php:915
#: ../../mod/settings.php:945 ../../mod/settings.php:946
#: ../../mod/settings.php:947 ../../mod/settings.php:948
#: ../../mod/settings.php:949 ../../mod/register.php:234
#: ../../mod/api.php:105 ../../mod/dfrn_request.php:835
#: ../../mod/settings.php:892 ../../mod/settings.php:898
#: ../../mod/settings.php:906 ../../mod/settings.php:910
#: ../../mod/settings.php:915 ../../mod/settings.php:921
#: ../../mod/settings.php:927 ../../mod/settings.php:933
#: ../../mod/settings.php:963 ../../mod/settings.php:964
#: ../../mod/settings.php:965 ../../mod/settings.php:966
#: ../../mod/settings.php:967 ../../mod/register.php:236
#: ../../mod/profiles.php:563
msgid "Yes"
msgstr ""
#: ../../mod/api.php:106 ../../mod/dfrn_request.php:834
#: ../../mod/settings.php:874 ../../mod/settings.php:880
#: ../../mod/settings.php:888 ../../mod/settings.php:892
#: ../../mod/settings.php:897 ../../mod/settings.php:903
#: ../../mod/settings.php:909 ../../mod/settings.php:915
#: ../../mod/settings.php:945 ../../mod/settings.php:946
#: ../../mod/settings.php:947 ../../mod/settings.php:948
#: ../../mod/settings.php:949 ../../mod/register.php:235
#: ../../mod/api.php:106 ../../mod/dfrn_request.php:836
#: ../../mod/settings.php:892 ../../mod/settings.php:898
#: ../../mod/settings.php:906 ../../mod/settings.php:910
#: ../../mod/settings.php:915 ../../mod/settings.php:921
#: ../../mod/settings.php:927 ../../mod/settings.php:933
#: ../../mod/settings.php:963 ../../mod/settings.php:964
#: ../../mod/settings.php:965 ../../mod/settings.php:966
#: ../../mod/settings.php:967 ../../mod/register.php:237
#: ../../mod/profiles.php:564
msgid "No"
msgstr ""
#: ../../mod/photos.php:46 ../../boot.php:1643
#: ../../mod/photos.php:46 ../../boot.php:1676
msgid "Photo Albums"
msgstr ""
#: ../../mod/photos.php:54 ../../mod/photos.php:137 ../../mod/photos.php:952
#: ../../mod/photos.php:1034 ../../mod/photos.php:1049
#: ../../mod/photos.php:1477 ../../mod/photos.php:1489
#: ../../mod/photos.php:54 ../../mod/photos.php:149 ../../mod/photos.php:986
#: ../../mod/photos.php:1073 ../../mod/photos.php:1088
#: ../../mod/photos.php:1530 ../../mod/photos.php:1542
#: ../../addon/communityhome/communityhome.php:110
#: ../../view/theme/diabook/theme.php:598
msgid "Contact Photos"
msgstr ""
#: ../../mod/photos.php:61 ../../mod/photos.php:1059 ../../mod/photos.php:1527
#: ../../mod/photos.php:61 ../../mod/photos.php:1104 ../../mod/photos.php:1580
msgid "Upload New Photos"
msgstr ""
@ -392,12 +393,12 @@ msgstr ""
msgid "everybody"
msgstr ""
#: ../../mod/photos.php:126
#: ../../mod/photos.php:138
msgid "Contact information unavailable"
msgstr ""
#: ../../mod/photos.php:137 ../../mod/photos.php:641 ../../mod/photos.php:1034
#: ../../mod/photos.php:1049 ../../mod/profile_photo.php:60
#: ../../mod/photos.php:149 ../../mod/photos.php:653 ../../mod/photos.php:1073
#: ../../mod/photos.php:1088 ../../mod/profile_photo.php:60
#: ../../mod/profile_photo.php:67 ../../mod/profile_photo.php:74
#: ../../mod/profile_photo.php:177 ../../mod/profile_photo.php:261
#: ../../mod/profile_photo.php:270
@ -407,23 +408,23 @@ msgstr ""
msgid "Profile Photos"
msgstr ""
#: ../../mod/photos.php:147
#: ../../mod/photos.php:159
msgid "Album not found."
msgstr ""
#: ../../mod/photos.php:165 ../../mod/photos.php:1043
#: ../../mod/photos.php:177 ../../mod/photos.php:1082
msgid "Delete Album"
msgstr ""
#: ../../mod/photos.php:228 ../../mod/photos.php:1286
#: ../../mod/photos.php:240 ../../mod/photos.php:1339
msgid "Delete Photo"
msgstr ""
#: ../../mod/photos.php:572
#: ../../mod/photos.php:584
msgid "was tagged in a"
msgstr ""
#: ../../mod/photos.php:572 ../../mod/like.php:145 ../../mod/tagger.php:70
#: ../../mod/photos.php:584 ../../mod/like.php:145 ../../mod/tagger.php:62
#: ../../addon/communityhome/communityhome.php:163
#: ../../view/theme/diabook/theme.php:570 ../../include/text.php:1399
#: ../../include/diaspora.php:1824 ../../include/conversation.php:125
@ -431,207 +432,215 @@ msgstr ""
msgid "photo"
msgstr ""
#: ../../mod/photos.php:572
#: ../../mod/photos.php:584
msgid "by"
msgstr ""
#: ../../mod/photos.php:677 ../../addon/js_upload/js_upload.php:315
#: ../../mod/photos.php:689 ../../addon/js_upload/js_upload.php:315
msgid "Image exceeds size limit of "
msgstr ""
#: ../../mod/photos.php:685
#: ../../mod/photos.php:697
msgid "Image file is empty."
msgstr ""
#: ../../mod/photos.php:717 ../../mod/profile_photo.php:126
#: ../../mod/wall_upload.php:99
#: ../../mod/photos.php:729 ../../mod/profile_photo.php:126
#: ../../mod/wall_upload.php:110
msgid "Unable to process image."
msgstr ""
#: ../../mod/photos.php:744 ../../mod/profile_photo.php:266
#: ../../mod/wall_upload.php:125
#: ../../mod/photos.php:756 ../../mod/profile_photo.php:266
#: ../../mod/wall_upload.php:136
msgid "Image upload failed."
msgstr ""
#: ../../mod/photos.php:830 ../../mod/community.php:16
#: ../../mod/dfrn_request.php:759 ../../mod/viewcontacts.php:17
#: ../../mod/display.php:7 ../../mod/search.php:71 ../../mod/directory.php:29
#: ../../mod/photos.php:842 ../../mod/community.php:18
#: ../../mod/dfrn_request.php:760 ../../mod/viewcontacts.php:17
#: ../../mod/display.php:7 ../../mod/search.php:73 ../../mod/directory.php:31
msgid "Public access denied."
msgstr ""
#: ../../mod/photos.php:840
#: ../../mod/photos.php:852
msgid "No photos selected"
msgstr ""
#: ../../mod/photos.php:919
#: ../../mod/photos.php:953
msgid "Access to this item is restricted."
msgstr ""
#: ../../mod/photos.php:981
#: ../../mod/photos.php:1015
#, php-format
msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
msgstr ""
#: ../../mod/photos.php:984
#: ../../mod/photos.php:1018
#, php-format
msgid "You have used %1$.2f Mbytes of photo storage."
msgstr ""
#: ../../mod/photos.php:990
#: ../../mod/photos.php:1024
msgid "Upload Photos"
msgstr ""
#: ../../mod/photos.php:994 ../../mod/photos.php:1038
#: ../../mod/photos.php:1028 ../../mod/photos.php:1077
msgid "New album name: "
msgstr ""
#: ../../mod/photos.php:995
#: ../../mod/photos.php:1029
msgid "or existing album name: "
msgstr ""
#: ../../mod/photos.php:996
#: ../../mod/photos.php:1030
msgid "Do not show a status post for this upload"
msgstr ""
#: ../../mod/photos.php:998 ../../mod/photos.php:1281
#: ../../mod/photos.php:1032 ../../mod/photos.php:1334
msgid "Permissions"
msgstr ""
#: ../../mod/photos.php:1053
#: ../../mod/photos.php:1092
msgid "Edit Album"
msgstr ""
#: ../../mod/photos.php:1077 ../../mod/photos.php:1510
#: ../../mod/photos.php:1098
msgid "Show Newest First"
msgstr ""
#: ../../mod/photos.php:1100
msgid "Show Oldest First"
msgstr ""
#: ../../mod/photos.php:1124 ../../mod/photos.php:1563
msgid "View Photo"
msgstr ""
#: ../../mod/photos.php:1112
#: ../../mod/photos.php:1159
msgid "Permission denied. Access to this item may be restricted."
msgstr ""
#: ../../mod/photos.php:1114
#: ../../mod/photos.php:1161
msgid "Photo not available"
msgstr ""
#: ../../mod/photos.php:1164
#: ../../mod/photos.php:1217
msgid "View photo"
msgstr ""
#: ../../mod/photos.php:1164
#: ../../mod/photos.php:1217
msgid "Edit photo"
msgstr ""
#: ../../mod/photos.php:1165
#: ../../mod/photos.php:1218
msgid "Use as profile photo"
msgstr ""
#: ../../mod/photos.php:1171 ../../mod/content.php:601
#: ../../include/conversation.php:406
#: ../../mod/photos.php:1224 ../../mod/content.php:601
#: ../../include/conversation.php:428
msgid "Private Message"
msgstr ""
#: ../../mod/photos.php:1190
#: ../../mod/photos.php:1243
msgid "View Full Size"
msgstr ""
#: ../../mod/photos.php:1258
#: ../../mod/photos.php:1311
msgid "Tags: "
msgstr ""
#: ../../mod/photos.php:1261
#: ../../mod/photos.php:1314
msgid "[Remove any tag]"
msgstr ""
#: ../../mod/photos.php:1271
#: ../../mod/photos.php:1324
msgid "Rotate CW (right)"
msgstr ""
#: ../../mod/photos.php:1272
#: ../../mod/photos.php:1325
msgid "Rotate CCW (left)"
msgstr ""
#: ../../mod/photos.php:1274
#: ../../mod/photos.php:1327
msgid "New album name"
msgstr ""
#: ../../mod/photos.php:1277
#: ../../mod/photos.php:1330
msgid "Caption"
msgstr ""
#: ../../mod/photos.php:1279
#: ../../mod/photos.php:1332
msgid "Add a Tag"
msgstr ""
#: ../../mod/photos.php:1283
#: ../../mod/photos.php:1336
msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
msgstr ""
#: ../../mod/photos.php:1303 ../../mod/content.php:665
#: ../../include/conversation.php:545
#: ../../mod/photos.php:1356 ../../mod/content.php:665
#: ../../include/conversation.php:565
msgid "I like this (toggle)"
msgstr ""
#: ../../mod/photos.php:1304 ../../mod/content.php:666
#: ../../include/conversation.php:546
#: ../../mod/photos.php:1357 ../../mod/content.php:666
#: ../../include/conversation.php:566
msgid "I don't like this (toggle)"
msgstr ""
#: ../../mod/photos.php:1305 ../../include/conversation.php:1175
#: ../../mod/photos.php:1358 ../../include/conversation.php:1195
msgid "Share"
msgstr ""
#: ../../mod/photos.php:1306 ../../mod/editpost.php:112
#: ../../mod/photos.php:1359 ../../mod/editpost.php:112
#: ../../mod/content.php:482 ../../mod/content.php:843
#: ../../mod/wallmessage.php:152 ../../mod/message.php:293
#: ../../mod/message.php:481 ../../include/conversation.php:639
#: ../../include/conversation.php:871 ../../include/conversation.php:1194
#: ../../mod/message.php:481 ../../include/conversation.php:659
#: ../../include/conversation.php:891 ../../include/conversation.php:1214
msgid "Please wait"
msgstr ""
#: ../../mod/photos.php:1322 ../../mod/photos.php:1363
#: ../../mod/photos.php:1395 ../../mod/content.php:688
#: ../../include/conversation.php:568
#: ../../mod/photos.php:1375 ../../mod/photos.php:1416
#: ../../mod/photos.php:1448 ../../mod/content.php:688
#: ../../include/conversation.php:588
msgid "This is you"
msgstr ""
#: ../../mod/photos.php:1324 ../../mod/photos.php:1365
#: ../../mod/photos.php:1397 ../../mod/content.php:690
#: ../../include/conversation.php:570 ../../boot.php:574
#: ../../mod/photos.php:1377 ../../mod/photos.php:1418
#: ../../mod/photos.php:1450 ../../mod/content.php:690
#: ../../include/conversation.php:590 ../../boot.php:574
msgid "Comment"
msgstr ""
#: ../../mod/photos.php:1326 ../../mod/editpost.php:133
#: ../../mod/content.php:700 ../../include/conversation.php:580
#: ../../include/conversation.php:1212
#: ../../mod/photos.php:1379 ../../mod/editpost.php:133
#: ../../mod/content.php:700 ../../include/conversation.php:600
#: ../../include/conversation.php:1232
msgid "Preview"
msgstr ""
#: ../../mod/photos.php:1426 ../../mod/content.php:439
#: ../../mod/content.php:721 ../../mod/settings.php:600
#: ../../mod/settings.php:689 ../../mod/group.php:168 ../../mod/admin.php:692
#: ../../include/conversation.php:420 ../../include/conversation.php:827
#: ../../mod/photos.php:1479 ../../mod/content.php:439
#: ../../mod/content.php:721 ../../mod/settings.php:606
#: ../../mod/settings.php:695 ../../mod/group.php:168 ../../mod/admin.php:694
#: ../../include/conversation.php:440 ../../include/conversation.php:847
msgid "Delete"
msgstr ""
#: ../../mod/photos.php:1516
#: ../../mod/photos.php:1569
msgid "View Album"
msgstr ""
#: ../../mod/photos.php:1525
#: ../../mod/photos.php:1578
msgid "Recent Photos"
msgstr ""
#: ../../mod/community.php:21
#: ../../mod/community.php:23
msgid "Not available."
msgstr ""
#: ../../mod/community.php:30 ../../view/theme/diabook/theme.php:133
#: ../../mod/community.php:32 ../../view/theme/diabook/theme.php:133
#: ../../include/nav.php:101
msgid "Community"
msgstr ""
#: ../../mod/community.php:61 ../../mod/community.php:86
#: ../../mod/search.php:146 ../../mod/search.php:172
#: ../../mod/community.php:63 ../../mod/community.php:88
#: ../../mod/search.php:148 ../../mod/search.php:174
msgid "No results."
msgstr ""
@ -675,28 +684,28 @@ msgstr ""
msgid "Edit post"
msgstr ""
#: ../../mod/editpost.php:88 ../../include/conversation.php:1161
#: ../../mod/editpost.php:88 ../../include/conversation.php:1181
msgid "Post to Email"
msgstr ""
#: ../../mod/editpost.php:103 ../../mod/content.php:708
#: ../../mod/settings.php:599 ../../include/conversation.php:411
#: ../../mod/settings.php:605 ../../include/conversation.php:433
msgid "Edit"
msgstr ""
#: ../../mod/editpost.php:104 ../../mod/wallmessage.php:150
#: ../../mod/message.php:291 ../../mod/message.php:478
#: ../../include/conversation.php:1176
#: ../../include/conversation.php:1196
msgid "Upload photo"
msgstr ""
#: ../../mod/editpost.php:105 ../../include/conversation.php:1178
#: ../../mod/editpost.php:105 ../../include/conversation.php:1198
msgid "Attach file"
msgstr ""
#: ../../mod/editpost.php:106 ../../mod/wallmessage.php:151
#: ../../mod/message.php:292 ../../mod/message.php:479
#: ../../include/conversation.php:1180
#: ../../include/conversation.php:1200
msgid "Insert web link"
msgstr ""
@ -712,35 +721,35 @@ msgstr ""
msgid "Insert Vorbis [.ogg] audio"
msgstr ""
#: ../../mod/editpost.php:110 ../../include/conversation.php:1186
#: ../../mod/editpost.php:110 ../../include/conversation.php:1206
msgid "Set your location"
msgstr ""
#: ../../mod/editpost.php:111 ../../include/conversation.php:1188
#: ../../mod/editpost.php:111 ../../include/conversation.php:1208
msgid "Clear browser location"
msgstr ""
#: ../../mod/editpost.php:113 ../../include/conversation.php:1195
#: ../../mod/editpost.php:113 ../../include/conversation.php:1215
msgid "Permission settings"
msgstr ""
#: ../../mod/editpost.php:121 ../../include/conversation.php:1204
#: ../../mod/editpost.php:121 ../../include/conversation.php:1224
msgid "CC: email addresses"
msgstr ""
#: ../../mod/editpost.php:122 ../../include/conversation.php:1205
#: ../../mod/editpost.php:122 ../../include/conversation.php:1225
msgid "Public post"
msgstr ""
#: ../../mod/editpost.php:125 ../../include/conversation.php:1191
#: ../../mod/editpost.php:125 ../../include/conversation.php:1211
msgid "Set title"
msgstr ""
#: ../../mod/editpost.php:127 ../../include/conversation.php:1193
#: ../../mod/editpost.php:127 ../../include/conversation.php:1213
msgid "Categories (comma-separated list)"
msgstr ""
#: ../../mod/editpost.php:128 ../../include/conversation.php:1207
#: ../../mod/editpost.php:128 ../../include/conversation.php:1227
msgid "Example: bob@example.com, mary@example.com"
msgstr ""
@ -825,7 +834,7 @@ msgstr ""
msgid "Disallowed profile URL."
msgstr ""
#: ../../mod/dfrn_request.php:570 ../../mod/contacts.php:116
#: ../../mod/dfrn_request.php:570 ../../mod/contacts.php:123
msgid "Failed to update contact record."
msgstr ""
@ -861,75 +870,75 @@ msgstr ""
msgid "Confirm"
msgstr ""
#: ../../mod/dfrn_request.php:715 ../../include/items.php:3210
#: ../../mod/dfrn_request.php:715 ../../include/items.php:3213
msgid "[Name Withheld]"
msgstr ""
#: ../../mod/dfrn_request.php:808
#: ../../mod/dfrn_request.php:810
msgid ""
"Please enter your 'Identity Address' from one of the following supported "
"communications networks:"
msgstr ""
#: ../../mod/dfrn_request.php:824
#: ../../mod/dfrn_request.php:826
msgid "<strike>Connect as an email follower</strike> (Coming soon)"
msgstr ""
#: ../../mod/dfrn_request.php:826
#: ../../mod/dfrn_request.php:828
msgid ""
"If you are not yet a member of the free social web, <a href=\"http://dir."
"friendica.com/siteinfo\">follow this link to find a public Friendica site "
"and join us today</a>."
msgstr ""
#: ../../mod/dfrn_request.php:829
#: ../../mod/dfrn_request.php:831
msgid "Friend/Connection Request"
msgstr ""
#: ../../mod/dfrn_request.php:830
#: ../../mod/dfrn_request.php:832
msgid ""
"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
"testuser@identi.ca"
msgstr ""
#: ../../mod/dfrn_request.php:831
#: ../../mod/dfrn_request.php:833
msgid "Please answer the following:"
msgstr ""
#: ../../mod/dfrn_request.php:832
#: ../../mod/dfrn_request.php:834
#, php-format
msgid "Does %s know you?"
msgstr ""
#: ../../mod/dfrn_request.php:835
#: ../../mod/dfrn_request.php:837
msgid "Add a personal note:"
msgstr ""
#: ../../mod/dfrn_request.php:837 ../../include/contact_selectors.php:76
#: ../../mod/dfrn_request.php:839 ../../include/contact_selectors.php:76
msgid "Friendica"
msgstr ""
#: ../../mod/dfrn_request.php:838
#: ../../mod/dfrn_request.php:840
msgid "StatusNet/Federated Social Web"
msgstr ""
#: ../../mod/dfrn_request.php:839 ../../mod/settings.php:634
#: ../../mod/dfrn_request.php:841 ../../mod/settings.php:640
#: ../../include/contact_selectors.php:80
msgid "Diaspora"
msgstr ""
#: ../../mod/dfrn_request.php:840
#: ../../mod/dfrn_request.php:842
#, php-format
msgid ""
" - please do not use this form. Instead, enter %s into your Diaspora search "
"bar."
msgstr ""
#: ../../mod/dfrn_request.php:841
#: ../../mod/dfrn_request.php:843
msgid "Your Identity Address:"
msgstr ""
#: ../../mod/dfrn_request.php:844
#: ../../mod/dfrn_request.php:846
msgid "Submit Request"
msgstr ""
@ -1253,7 +1262,7 @@ msgid "is interested in:"
msgstr ""
#: ../../mod/match.php:58 ../../mod/suggest.php:59
#: ../../include/contact_widgets.php:9 ../../boot.php:1143
#: ../../include/contact_widgets.php:9 ../../boot.php:1164
msgid "Connect"
msgstr ""
@ -1282,28 +1291,28 @@ msgid "Group: "
msgstr ""
#: ../../mod/content.php:438 ../../mod/content.php:720
#: ../../include/conversation.php:419 ../../include/conversation.php:826
#: ../../include/conversation.php:439 ../../include/conversation.php:846
msgid "Select"
msgstr ""
#: ../../mod/content.php:455 ../../mod/content.php:813
#: ../../mod/content.php:814 ../../include/conversation.php:607
#: ../../include/conversation.php:608 ../../include/conversation.php:843
#: ../../mod/content.php:814 ../../include/conversation.php:627
#: ../../include/conversation.php:628 ../../include/conversation.php:863
#, php-format
msgid "View %s's profile @ %s"
msgstr ""
#: ../../mod/content.php:465 ../../mod/content.php:825
#: ../../include/conversation.php:621 ../../include/conversation.php:854
#: ../../include/conversation.php:641 ../../include/conversation.php:874
#, php-format
msgid "%s from %s"
msgstr ""
#: ../../mod/content.php:480 ../../include/conversation.php:869
#: ../../mod/content.php:480 ../../include/conversation.php:889
msgid "View in context"
msgstr ""
#: ../../mod/content.php:586 ../../include/conversation.php:648
#: ../../mod/content.php:586 ../../include/conversation.php:668
#, php-format
msgid "%d comment"
msgid_plural "%d comments"
@ -1312,96 +1321,96 @@ msgstr[1] ""
#: ../../mod/content.php:587 ../../addon/page/page.php:76
#: ../../addon/page/page.php:110 ../../addon/showmore/showmore.php:119
#: ../../include/contact_widgets.php:188 ../../include/conversation.php:649
#: ../../include/contact_widgets.php:195 ../../include/conversation.php:669
#: ../../boot.php:575
msgid "show more"
msgstr ""
#: ../../mod/content.php:665 ../../include/conversation.php:545
#: ../../mod/content.php:665 ../../include/conversation.php:565
msgid "like"
msgstr ""
#: ../../mod/content.php:666 ../../include/conversation.php:546
#: ../../mod/content.php:666 ../../include/conversation.php:566
msgid "dislike"
msgstr ""
#: ../../mod/content.php:668 ../../include/conversation.php:548
#: ../../mod/content.php:668 ../../include/conversation.php:568
msgid "Share this"
msgstr ""
#: ../../mod/content.php:668 ../../include/conversation.php:548
#: ../../mod/content.php:668 ../../include/conversation.php:568
msgid "share"
msgstr ""
#: ../../mod/content.php:692 ../../include/conversation.php:572
#: ../../mod/content.php:692 ../../include/conversation.php:592
msgid "Bold"
msgstr ""
#: ../../mod/content.php:693 ../../include/conversation.php:573
#: ../../mod/content.php:693 ../../include/conversation.php:593
msgid "Italic"
msgstr ""
#: ../../mod/content.php:694 ../../include/conversation.php:574
#: ../../mod/content.php:694 ../../include/conversation.php:594
msgid "Underline"
msgstr ""
#: ../../mod/content.php:695 ../../include/conversation.php:575
#: ../../mod/content.php:695 ../../include/conversation.php:595
msgid "Quote"
msgstr ""
#: ../../mod/content.php:696 ../../include/conversation.php:576
#: ../../mod/content.php:696 ../../include/conversation.php:596
msgid "Code"
msgstr ""
#: ../../mod/content.php:697 ../../include/conversation.php:577
#: ../../mod/content.php:697 ../../include/conversation.php:597
msgid "Image"
msgstr ""
#: ../../mod/content.php:698 ../../include/conversation.php:578
#: ../../mod/content.php:698 ../../include/conversation.php:598
msgid "Link"
msgstr ""
#: ../../mod/content.php:699 ../../include/conversation.php:579
#: ../../mod/content.php:699 ../../include/conversation.php:599
msgid "Video"
msgstr ""
#: ../../mod/content.php:733 ../../include/conversation.php:509
#: ../../mod/content.php:733 ../../include/conversation.php:529
msgid "add star"
msgstr ""
#: ../../mod/content.php:734 ../../include/conversation.php:510
#: ../../mod/content.php:734 ../../include/conversation.php:530
msgid "remove star"
msgstr ""
#: ../../mod/content.php:735 ../../include/conversation.php:511
#: ../../mod/content.php:735 ../../include/conversation.php:531
msgid "toggle star status"
msgstr ""
#: ../../mod/content.php:738 ../../include/conversation.php:514
#: ../../mod/content.php:738 ../../include/conversation.php:534
msgid "starred"
msgstr ""
#: ../../mod/content.php:739 ../../include/conversation.php:515
#: ../../mod/content.php:739 ../../include/conversation.php:535
msgid "add tag"
msgstr ""
#: ../../mod/content.php:743 ../../include/conversation.php:423
#: ../../mod/content.php:743 ../../include/conversation.php:443
msgid "save to folder"
msgstr ""
#: ../../mod/content.php:815 ../../include/conversation.php:609
#: ../../mod/content.php:815 ../../include/conversation.php:629
msgid "to"
msgstr ""
#: ../../mod/content.php:816 ../../include/conversation.php:610
#: ../../mod/content.php:816 ../../include/conversation.php:630
msgid "Wall-to-Wall"
msgstr ""
#: ../../mod/content.php:817 ../../include/conversation.php:611
#: ../../mod/content.php:817 ../../include/conversation.php:631
msgid "via Wall-To-Wall:"
msgstr ""
#: ../../mod/home.php:26 ../../addon/communityhome/communityhome.php:179
#: ../../mod/home.php:28 ../../addon/communityhome/communityhome.php:179
#, php-format
msgid "Welcome to %s"
msgstr ""
@ -1416,8 +1425,8 @@ msgid "Discard"
msgstr ""
#: ../../mod/notifications.php:51 ../../mod/notifications.php:160
#: ../../mod/notifications.php:206 ../../mod/contacts.php:314
#: ../../mod/contacts.php:368
#: ../../mod/notifications.php:206 ../../mod/contacts.php:321
#: ../../mod/contacts.php:375
msgid "Ignore"
msgstr ""
@ -1469,7 +1478,7 @@ msgid "suggested by %s"
msgstr ""
#: ../../mod/notifications.php:153 ../../mod/notifications.php:200
#: ../../mod/contacts.php:374
#: ../../mod/contacts.php:381
msgid "Hide this contact from others"
msgstr ""
@ -1482,7 +1491,7 @@ msgid "if applicable"
msgstr ""
#: ../../mod/notifications.php:157 ../../mod/notifications.php:204
#: ../../mod/admin.php:690
#: ../../mod/admin.php:692
msgid "Approve"
msgstr ""
@ -1591,307 +1600,307 @@ msgstr ""
msgid "Home Notifications"
msgstr ""
#: ../../mod/contacts.php:77 ../../mod/contacts.php:157
#: ../../mod/contacts.php:84 ../../mod/contacts.php:164
msgid "Could not access contact record."
msgstr ""
#: ../../mod/contacts.php:91
#: ../../mod/contacts.php:98
msgid "Could not locate selected profile."
msgstr ""
#: ../../mod/contacts.php:114
#: ../../mod/contacts.php:121
msgid "Contact updated."
msgstr ""
#: ../../mod/contacts.php:179
#: ../../mod/contacts.php:186
msgid "Contact has been blocked"
msgstr ""
#: ../../mod/contacts.php:179
#: ../../mod/contacts.php:186
msgid "Contact has been unblocked"
msgstr ""
#: ../../mod/contacts.php:193
#: ../../mod/contacts.php:200
msgid "Contact has been ignored"
msgstr ""
#: ../../mod/contacts.php:193
#: ../../mod/contacts.php:200
msgid "Contact has been unignored"
msgstr ""
#: ../../mod/contacts.php:209
#: ../../mod/contacts.php:216
msgid "Contact has been archived"
msgstr ""
#: ../../mod/contacts.php:209
#: ../../mod/contacts.php:216
msgid "Contact has been unarchived"
msgstr ""
#: ../../mod/contacts.php:222
#: ../../mod/contacts.php:229
msgid "Contact has been removed."
msgstr ""
#: ../../mod/contacts.php:256
#: ../../mod/contacts.php:263
#, php-format
msgid "You are mutual friends with %s"
msgstr ""
#: ../../mod/contacts.php:260
#: ../../mod/contacts.php:267
#, php-format
msgid "You are sharing with %s"
msgstr ""
#: ../../mod/contacts.php:265
#: ../../mod/contacts.php:272
#, php-format
msgid "%s is sharing with you"
msgstr ""
#: ../../mod/contacts.php:282
#: ../../mod/contacts.php:289
msgid "Private communications are not available for this contact."
msgstr ""
#: ../../mod/contacts.php:285
#: ../../mod/contacts.php:292
msgid "Never"
msgstr ""
#: ../../mod/contacts.php:289
#: ../../mod/contacts.php:296
msgid "(Update was successful)"
msgstr ""
#: ../../mod/contacts.php:289
#: ../../mod/contacts.php:296
msgid "(Update was not successful)"
msgstr ""
#: ../../mod/contacts.php:291
#: ../../mod/contacts.php:298
msgid "Suggest friends"
msgstr ""
#: ../../mod/contacts.php:295
#: ../../mod/contacts.php:302
#, php-format
msgid "Network type: %s"
msgstr ""
#: ../../mod/contacts.php:298 ../../include/contact_widgets.php:183
#: ../../mod/contacts.php:305 ../../include/contact_widgets.php:190
#, php-format
msgid "%d contact in common"
msgid_plural "%d contacts in common"
msgstr[0] ""
msgstr[1] ""
#: ../../mod/contacts.php:303
#: ../../mod/contacts.php:310
msgid "View all contacts"
msgstr ""
#: ../../mod/contacts.php:308 ../../mod/contacts.php:367
#: ../../mod/admin.php:694
#: ../../mod/contacts.php:315 ../../mod/contacts.php:374
#: ../../mod/admin.php:696
msgid "Unblock"
msgstr ""
#: ../../mod/contacts.php:308 ../../mod/contacts.php:367
#: ../../mod/admin.php:693
#: ../../mod/contacts.php:315 ../../mod/contacts.php:374
#: ../../mod/admin.php:695
msgid "Block"
msgstr ""
#: ../../mod/contacts.php:311
#: ../../mod/contacts.php:318
msgid "Toggle Blocked status"
msgstr ""
#: ../../mod/contacts.php:314 ../../mod/contacts.php:368
#: ../../mod/contacts.php:321 ../../mod/contacts.php:375
msgid "Unignore"
msgstr ""
#: ../../mod/contacts.php:317
#: ../../mod/contacts.php:324
msgid "Toggle Ignored status"
msgstr ""
#: ../../mod/contacts.php:321
#: ../../mod/contacts.php:328
msgid "Unarchive"
msgstr ""
#: ../../mod/contacts.php:321
#: ../../mod/contacts.php:328
msgid "Archive"
msgstr ""
#: ../../mod/contacts.php:324
#: ../../mod/contacts.php:331
msgid "Toggle Archive status"
msgstr ""
#: ../../mod/contacts.php:327
#: ../../mod/contacts.php:334
msgid "Repair"
msgstr ""
#: ../../mod/contacts.php:330
#: ../../mod/contacts.php:337
msgid "Advanced Contact Settings"
msgstr ""
#: ../../mod/contacts.php:336
#: ../../mod/contacts.php:343
msgid "Communications lost with this contact!"
msgstr ""
#: ../../mod/contacts.php:339
#: ../../mod/contacts.php:346
msgid "Contact Editor"
msgstr ""
#: ../../mod/contacts.php:342
#: ../../mod/contacts.php:349
msgid "Profile Visibility"
msgstr ""
#: ../../mod/contacts.php:343
#: ../../mod/contacts.php:350
#, php-format
msgid ""
"Please choose the profile you would like to display to %s when viewing your "
"profile securely."
msgstr ""
#: ../../mod/contacts.php:344
#: ../../mod/contacts.php:351
msgid "Contact Information / Notes"
msgstr ""
#: ../../mod/contacts.php:345
#: ../../mod/contacts.php:352
msgid "Edit contact notes"
msgstr ""
#: ../../mod/contacts.php:350 ../../mod/contacts.php:542
#: ../../mod/contacts.php:357 ../../mod/contacts.php:549
#: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40
#, php-format
msgid "Visit %s's profile [%s]"
msgstr ""
#: ../../mod/contacts.php:351
#: ../../mod/contacts.php:358
msgid "Block/Unblock contact"
msgstr ""
#: ../../mod/contacts.php:352
#: ../../mod/contacts.php:359
msgid "Ignore contact"
msgstr ""
#: ../../mod/contacts.php:353
#: ../../mod/contacts.php:360
msgid "Repair URL settings"
msgstr ""
#: ../../mod/contacts.php:354
#: ../../mod/contacts.php:361
msgid "View conversations"
msgstr ""
#: ../../mod/contacts.php:356
#: ../../mod/contacts.php:363
msgid "Delete contact"
msgstr ""
#: ../../mod/contacts.php:360
#: ../../mod/contacts.php:367
msgid "Last update:"
msgstr ""
#: ../../mod/contacts.php:362
#: ../../mod/contacts.php:369
msgid "Update public posts"
msgstr ""
#: ../../mod/contacts.php:364 ../../mod/admin.php:1165
#: ../../mod/contacts.php:371 ../../mod/admin.php:1167
msgid "Update now"
msgstr ""
#: ../../mod/contacts.php:371
#: ../../mod/contacts.php:378
msgid "Currently blocked"
msgstr ""
#: ../../mod/contacts.php:372
#: ../../mod/contacts.php:379
msgid "Currently ignored"
msgstr ""
#: ../../mod/contacts.php:373
#: ../../mod/contacts.php:380
msgid "Currently archived"
msgstr ""
#: ../../mod/contacts.php:374
#: ../../mod/contacts.php:381
msgid ""
"Replies/likes to your public posts <strong>may</strong> still be visible"
msgstr ""
#: ../../mod/contacts.php:427
#: ../../mod/contacts.php:434
msgid "Suggestions"
msgstr ""
#: ../../mod/contacts.php:430
#: ../../mod/contacts.php:437
msgid "Suggest potential friends"
msgstr ""
#: ../../mod/contacts.php:433 ../../mod/group.php:191
#: ../../mod/contacts.php:440 ../../mod/group.php:191
msgid "All Contacts"
msgstr ""
#: ../../mod/contacts.php:436
#: ../../mod/contacts.php:443
msgid "Show all contacts"
msgstr ""
#: ../../mod/contacts.php:439
#: ../../mod/contacts.php:446
msgid "Unblocked"
msgstr ""
#: ../../mod/contacts.php:442
#: ../../mod/contacts.php:449
msgid "Only show unblocked contacts"
msgstr ""
#: ../../mod/contacts.php:446
#: ../../mod/contacts.php:453
msgid "Blocked"
msgstr ""
#: ../../mod/contacts.php:449
#: ../../mod/contacts.php:456
msgid "Only show blocked contacts"
msgstr ""
#: ../../mod/contacts.php:453
#: ../../mod/contacts.php:460
msgid "Ignored"
msgstr ""
#: ../../mod/contacts.php:456
#: ../../mod/contacts.php:463
msgid "Only show ignored contacts"
msgstr ""
#: ../../mod/contacts.php:460
#: ../../mod/contacts.php:467
msgid "Archived"
msgstr ""
#: ../../mod/contacts.php:463
#: ../../mod/contacts.php:470
msgid "Only show archived contacts"
msgstr ""
#: ../../mod/contacts.php:467
#: ../../mod/contacts.php:474
msgid "Hidden"
msgstr ""
#: ../../mod/contacts.php:470
#: ../../mod/contacts.php:477
msgid "Only show hidden contacts"
msgstr ""
#: ../../mod/contacts.php:518
#: ../../mod/contacts.php:525
msgid "Mutual Friendship"
msgstr ""
#: ../../mod/contacts.php:522
#: ../../mod/contacts.php:529
msgid "is a fan of yours"
msgstr ""
#: ../../mod/contacts.php:526
#: ../../mod/contacts.php:533
msgid "you are a fan of"
msgstr ""
#: ../../mod/contacts.php:543 ../../mod/nogroup.php:41
#: ../../mod/contacts.php:550 ../../mod/nogroup.php:41
msgid "Edit contact"
msgstr ""
#: ../../mod/contacts.php:564 ../../view/theme/diabook/theme.php:129
#: ../../mod/contacts.php:571 ../../view/theme/diabook/theme.php:129
#: ../../include/nav.php:139
msgid "Contacts"
msgstr ""
#: ../../mod/contacts.php:568
#: ../../mod/contacts.php:575
msgid "Search your contacts"
msgstr ""
#: ../../mod/contacts.php:569 ../../mod/directory.php:57
#: ../../mod/contacts.php:576 ../../mod/directory.php:59
msgid "Finding: "
msgstr ""
#: ../../mod/contacts.php:570 ../../mod/directory.php:59
#: ../../mod/contacts.php:577 ../../mod/directory.php:61
#: ../../include/contact_widgets.php:33
msgid "Find"
msgstr ""
@ -1915,7 +1924,7 @@ msgstr ""
#: ../../addon/facebook/facebook.php:702
#: ../../addon/facebook/facebook.php:1200
#: ../../addon/public_server/public_server.php:62
#: ../../addon/testdrive/testdrive.php:67 ../../include/items.php:3219
#: ../../addon/testdrive/testdrive.php:67 ../../include/items.php:3222
#: ../../boot.php:788
msgid "Administrator"
msgstr ""
@ -1999,7 +2008,7 @@ msgid "Remove account"
msgstr ""
#: ../../mod/settings.php:69 ../../mod/newmember.php:22
#: ../../mod/admin.php:780 ../../mod/admin.php:985
#: ../../mod/admin.php:782 ../../mod/admin.php:987
#: ../../addon/dav/friendica/layout.fnk.php:225
#: ../../addon/mathjax/mathjax.php:36 ../../view/theme/diabook/theme.php:643
#: ../../view/theme/diabook/theme.php:773 ../../include/nav.php:137
@ -2010,7 +2019,7 @@ msgstr ""
msgid "Missing some important data!"
msgstr ""
#: ../../mod/settings.php:116 ../../mod/settings.php:563
#: ../../mod/settings.php:116 ../../mod/settings.php:569
msgid "Update"
msgstr ""
@ -2022,47 +2031,47 @@ msgstr ""
msgid "Email settings updated."
msgstr ""
#: ../../mod/settings.php:285
#: ../../mod/settings.php:290
msgid "Passwords do not match. Password unchanged."
msgstr ""
#: ../../mod/settings.php:290
#: ../../mod/settings.php:295
msgid "Empty passwords are not allowed. Password unchanged."
msgstr ""
#: ../../mod/settings.php:301
#: ../../mod/settings.php:306
msgid "Password changed."
msgstr ""
#: ../../mod/settings.php:303
#: ../../mod/settings.php:308
msgid "Password update failed. Please try again."
msgstr ""
#: ../../mod/settings.php:368
#: ../../mod/settings.php:373
msgid " Please use a shorter name."
msgstr ""
#: ../../mod/settings.php:370
#: ../../mod/settings.php:375
msgid " Name too short."
msgstr ""
#: ../../mod/settings.php:376
#: ../../mod/settings.php:381
msgid " Not valid email."
msgstr ""
#: ../../mod/settings.php:378
#: ../../mod/settings.php:383
msgid " Cannot change to that email."
msgstr ""
#: ../../mod/settings.php:432
#: ../../mod/settings.php:437
msgid "Private forum has no privacy permissions. Using default privacy group."
msgstr ""
#: ../../mod/settings.php:436
#: ../../mod/settings.php:441
msgid "Private forum has no privacy permissions and no default privacy group."
msgstr ""
#: ../../mod/settings.php:466 ../../addon/facebook/facebook.php:495
#: ../../mod/settings.php:471 ../../addon/facebook/facebook.php:495
#: ../../addon/impressum/impressum.php:77
#: ../../addon/openstreetmap/openstreetmap.php:80
#: ../../addon/mathjax/mathjax.php:66 ../../addon/piwik/piwik.php:105
@ -2070,444 +2079,452 @@ msgstr ""
msgid "Settings updated."
msgstr ""
#: ../../mod/settings.php:536 ../../mod/settings.php:562
#: ../../mod/settings.php:598
#: ../../mod/settings.php:542 ../../mod/settings.php:568
#: ../../mod/settings.php:604
msgid "Add application"
msgstr ""
#: ../../mod/settings.php:540 ../../mod/settings.php:566
#: ../../mod/settings.php:546 ../../mod/settings.php:572
#: ../../addon/statusnet/statusnet.php:570
msgid "Consumer Key"
msgstr ""
#: ../../mod/settings.php:541 ../../mod/settings.php:567
#: ../../mod/settings.php:547 ../../mod/settings.php:573
#: ../../addon/statusnet/statusnet.php:569
msgid "Consumer Secret"
msgstr ""
#: ../../mod/settings.php:542 ../../mod/settings.php:568
#: ../../mod/settings.php:548 ../../mod/settings.php:574
msgid "Redirect"
msgstr ""
#: ../../mod/settings.php:543 ../../mod/settings.php:569
#: ../../mod/settings.php:549 ../../mod/settings.php:575
msgid "Icon url"
msgstr ""
#: ../../mod/settings.php:554
#: ../../mod/settings.php:560
msgid "You can't edit this application."
msgstr ""
#: ../../mod/settings.php:597
#: ../../mod/settings.php:603
msgid "Connected Apps"
msgstr ""
#: ../../mod/settings.php:601
#: ../../mod/settings.php:607
msgid "Client key starts with"
msgstr ""
#: ../../mod/settings.php:602
#: ../../mod/settings.php:608
msgid "No name"
msgstr ""
#: ../../mod/settings.php:603
#: ../../mod/settings.php:609
msgid "Remove authorization"
msgstr ""
#: ../../mod/settings.php:614
#: ../../mod/settings.php:620
msgid "No Plugin settings configured"
msgstr ""
#: ../../mod/settings.php:622 ../../addon/widgets/widgets.php:123
#: ../../mod/settings.php:628 ../../addon/widgets/widgets.php:123
msgid "Plugin Settings"
msgstr ""
#: ../../mod/settings.php:634 ../../mod/settings.php:635
#: ../../mod/settings.php:640 ../../mod/settings.php:641
#, php-format
msgid "Built-in support for %s connectivity is %s"
msgstr ""
#: ../../mod/settings.php:634 ../../mod/settings.php:635
#: ../../mod/settings.php:640 ../../mod/settings.php:641
msgid "enabled"
msgstr ""
#: ../../mod/settings.php:634 ../../mod/settings.php:635
#: ../../mod/settings.php:640 ../../mod/settings.php:641
msgid "disabled"
msgstr ""
#: ../../mod/settings.php:635
#: ../../mod/settings.php:641
msgid "StatusNet"
msgstr ""
#: ../../mod/settings.php:667
#: ../../mod/settings.php:673
msgid "Email access is disabled on this site."
msgstr ""
#: ../../mod/settings.php:673
#: ../../mod/settings.php:679
msgid "Connector Settings"
msgstr ""
#: ../../mod/settings.php:678
#: ../../mod/settings.php:684
msgid "Email/Mailbox Setup"
msgstr ""
#: ../../mod/settings.php:679
#: ../../mod/settings.php:685
msgid ""
"If you wish to communicate with email contacts using this service "
"(optional), please specify how to connect to your mailbox."
msgstr ""
#: ../../mod/settings.php:680
#: ../../mod/settings.php:686
msgid "Last successful email check:"
msgstr ""
#: ../../mod/settings.php:682
#: ../../mod/settings.php:688
msgid "IMAP server name:"
msgstr ""
#: ../../mod/settings.php:683
#: ../../mod/settings.php:689
msgid "IMAP port:"
msgstr ""
#: ../../mod/settings.php:684
#: ../../mod/settings.php:690
msgid "Security:"
msgstr ""
#: ../../mod/settings.php:684 ../../mod/settings.php:689
#: ../../mod/settings.php:690 ../../mod/settings.php:695
#: ../../addon/dav/common/wdcal_edit.inc.php:191
msgid "None"
msgstr ""
#: ../../mod/settings.php:685
#: ../../mod/settings.php:691
msgid "Email login name:"
msgstr ""
#: ../../mod/settings.php:686
#: ../../mod/settings.php:692
msgid "Email password:"
msgstr ""
#: ../../mod/settings.php:687
#: ../../mod/settings.php:693
msgid "Reply-to address:"
msgstr ""
#: ../../mod/settings.php:688
#: ../../mod/settings.php:694
msgid "Send public posts to all email contacts:"
msgstr ""
#: ../../mod/settings.php:689
#: ../../mod/settings.php:695
msgid "Action after import:"
msgstr ""
#: ../../mod/settings.php:689
#: ../../mod/settings.php:695
msgid "Mark as seen"
msgstr ""
#: ../../mod/settings.php:689
#: ../../mod/settings.php:695
msgid "Move to folder"
msgstr ""
#: ../../mod/settings.php:690
#: ../../mod/settings.php:696
msgid "Move to folder:"
msgstr ""
#: ../../mod/settings.php:750
#: ../../mod/settings.php:727 ../../mod/admin.php:402
msgid "No special theme for mobile devices"
msgstr ""
#: ../../mod/settings.php:767
msgid "Display Settings"
msgstr ""
#: ../../mod/settings.php:756 ../../mod/settings.php:766
#: ../../mod/settings.php:773 ../../mod/settings.php:784
msgid "Display Theme:"
msgstr ""
#: ../../mod/settings.php:757
#: ../../mod/settings.php:774
msgid "Mobile Theme:"
msgstr ""
#: ../../mod/settings.php:775
msgid "Update browser every xx seconds"
msgstr ""
#: ../../mod/settings.php:757
#: ../../mod/settings.php:775
msgid "Minimum of 10 seconds, no maximum"
msgstr ""
#: ../../mod/settings.php:758
#: ../../mod/settings.php:776
msgid "Number of items to display per page:"
msgstr ""
#: ../../mod/settings.php:758
#: ../../mod/settings.php:776
msgid "Maximum of 100 items"
msgstr ""
#: ../../mod/settings.php:759
#: ../../mod/settings.php:777
msgid "Don't show emoticons"
msgstr ""
#: ../../mod/settings.php:835
#: ../../mod/settings.php:853
msgid "Normal Account Page"
msgstr ""
#: ../../mod/settings.php:836
#: ../../mod/settings.php:854
msgid "This account is a normal personal profile"
msgstr ""
#: ../../mod/settings.php:839
#: ../../mod/settings.php:857
msgid "Soapbox Page"
msgstr ""
#: ../../mod/settings.php:840
#: ../../mod/settings.php:858
msgid "Automatically approve all connection/friend requests as read-only fans"
msgstr ""
#: ../../mod/settings.php:843
#: ../../mod/settings.php:861
msgid "Community Forum/Celebrity Account"
msgstr ""
#: ../../mod/settings.php:844
#: ../../mod/settings.php:862
msgid "Automatically approve all connection/friend requests as read-write fans"
msgstr ""
#: ../../mod/settings.php:847
#: ../../mod/settings.php:865
msgid "Automatic Friend Page"
msgstr ""
#: ../../mod/settings.php:848
#: ../../mod/settings.php:866
msgid "Automatically approve all connection/friend requests as friends"
msgstr ""
#: ../../mod/settings.php:851
#: ../../mod/settings.php:869
msgid "Private Forum [Experimental]"
msgstr ""
#: ../../mod/settings.php:852
#: ../../mod/settings.php:870
msgid "Private forum - approved members only"
msgstr ""
#: ../../mod/settings.php:864
#: ../../mod/settings.php:882
msgid "OpenID:"
msgstr ""
#: ../../mod/settings.php:864
#: ../../mod/settings.php:882
msgid "(Optional) Allow this OpenID to login to this account."
msgstr ""
#: ../../mod/settings.php:874
#: ../../mod/settings.php:892
msgid "Publish your default profile in your local site directory?"
msgstr ""
#: ../../mod/settings.php:880
#: ../../mod/settings.php:898
msgid "Publish your default profile in the global social directory?"
msgstr ""
#: ../../mod/settings.php:888
#: ../../mod/settings.php:906
msgid "Hide your contact/friend list from viewers of your default profile?"
msgstr ""
#: ../../mod/settings.php:892
#: ../../mod/settings.php:910
msgid "Hide your profile details from unknown viewers?"
msgstr ""
#: ../../mod/settings.php:897
#: ../../mod/settings.php:915
msgid "Allow friends to post to your profile page?"
msgstr ""
#: ../../mod/settings.php:903
#: ../../mod/settings.php:921
msgid "Allow friends to tag your posts?"
msgstr ""
#: ../../mod/settings.php:909
#: ../../mod/settings.php:927
msgid "Allow us to suggest you as a potential friend to new members?"
msgstr ""
#: ../../mod/settings.php:915
#: ../../mod/settings.php:933
msgid "Permit unknown people to send you private mail?"
msgstr ""
#: ../../mod/settings.php:923
#: ../../mod/settings.php:941
msgid "Profile is <strong>not published</strong>."
msgstr ""
#: ../../mod/settings.php:926 ../../mod/profile_photo.php:214
#: ../../mod/settings.php:944 ../../mod/profile_photo.php:214
msgid "or"
msgstr ""
#: ../../mod/settings.php:931
#: ../../mod/settings.php:949
msgid "Your Identity Address is"
msgstr ""
#: ../../mod/settings.php:942
#: ../../mod/settings.php:960
msgid "Automatically expire posts after this many days:"
msgstr ""
#: ../../mod/settings.php:942
#: ../../mod/settings.php:960
msgid "If empty, posts will not expire. Expired posts will be deleted"
msgstr ""
#: ../../mod/settings.php:943
#: ../../mod/settings.php:961
msgid "Advanced expiration settings"
msgstr ""
#: ../../mod/settings.php:944
#: ../../mod/settings.php:962
msgid "Advanced Expiration"
msgstr ""
#: ../../mod/settings.php:945
#: ../../mod/settings.php:963
msgid "Expire posts:"
msgstr ""
#: ../../mod/settings.php:946
#: ../../mod/settings.php:964
msgid "Expire personal notes:"
msgstr ""
#: ../../mod/settings.php:947
#: ../../mod/settings.php:965
msgid "Expire starred posts:"
msgstr ""
#: ../../mod/settings.php:948
#: ../../mod/settings.php:966
msgid "Expire photos:"
msgstr ""
#: ../../mod/settings.php:949
#: ../../mod/settings.php:967
msgid "Only expire posts by others:"
msgstr ""
#: ../../mod/settings.php:956
#: ../../mod/settings.php:974
msgid "Account Settings"
msgstr ""
#: ../../mod/settings.php:964
#: ../../mod/settings.php:982
msgid "Password Settings"
msgstr ""
#: ../../mod/settings.php:965
#: ../../mod/settings.php:983
msgid "New Password:"
msgstr ""
#: ../../mod/settings.php:966
#: ../../mod/settings.php:984
msgid "Confirm:"
msgstr ""
#: ../../mod/settings.php:966
#: ../../mod/settings.php:984
msgid "Leave password fields blank unless changing"
msgstr ""
#: ../../mod/settings.php:970
#: ../../mod/settings.php:988
msgid "Basic Settings"
msgstr ""
#: ../../mod/settings.php:971 ../../include/profile_advanced.php:15
#: ../../mod/settings.php:989 ../../include/profile_advanced.php:15
msgid "Full Name:"
msgstr ""
#: ../../mod/settings.php:972
#: ../../mod/settings.php:990
msgid "Email Address:"
msgstr ""
#: ../../mod/settings.php:973
#: ../../mod/settings.php:991
msgid "Your Timezone:"
msgstr ""
#: ../../mod/settings.php:974
#: ../../mod/settings.php:992
msgid "Default Post Location:"
msgstr ""
#: ../../mod/settings.php:975
#: ../../mod/settings.php:993
msgid "Use Browser Location:"
msgstr ""
#: ../../mod/settings.php:978
#: ../../mod/settings.php:996
msgid "Security and Privacy Settings"
msgstr ""
#: ../../mod/settings.php:980
#: ../../mod/settings.php:998
msgid "Maximum Friend Requests/Day:"
msgstr ""
#: ../../mod/settings.php:980 ../../mod/settings.php:999
#: ../../mod/settings.php:998 ../../mod/settings.php:1017
msgid "(to prevent spam abuse)"
msgstr ""
#: ../../mod/settings.php:981
#: ../../mod/settings.php:999
msgid "Default Post Permissions"
msgstr ""
#: ../../mod/settings.php:982
#: ../../mod/settings.php:1000
msgid "(click to open/close)"
msgstr ""
#: ../../mod/settings.php:999
#: ../../mod/settings.php:1017
msgid "Maximum private messages per day from unknown people:"
msgstr ""
#: ../../mod/settings.php:1002
#: ../../mod/settings.php:1020
msgid "Notification Settings"
msgstr ""
#: ../../mod/settings.php:1003
#: ../../mod/settings.php:1021
msgid "By default post a status message when:"
msgstr ""
#: ../../mod/settings.php:1004
#: ../../mod/settings.php:1022
msgid "accepting a friend request"
msgstr ""
#: ../../mod/settings.php:1005
#: ../../mod/settings.php:1023
msgid "joining a forum/community"
msgstr ""
#: ../../mod/settings.php:1006
#: ../../mod/settings.php:1024
msgid "making an <em>interesting</em> profile change"
msgstr ""
#: ../../mod/settings.php:1007
#: ../../mod/settings.php:1025
msgid "Send a notification email when:"
msgstr ""
#: ../../mod/settings.php:1008
#: ../../mod/settings.php:1026
msgid "You receive an introduction"
msgstr ""
#: ../../mod/settings.php:1009
#: ../../mod/settings.php:1027
msgid "Your introductions are confirmed"
msgstr ""
#: ../../mod/settings.php:1010
#: ../../mod/settings.php:1028
msgid "Someone writes on your profile wall"
msgstr ""
#: ../../mod/settings.php:1011
#: ../../mod/settings.php:1029
msgid "Someone writes a followup comment"
msgstr ""
#: ../../mod/settings.php:1012
#: ../../mod/settings.php:1030
msgid "You receive a private message"
msgstr ""
#: ../../mod/settings.php:1013
#: ../../mod/settings.php:1031
msgid "You receive a friend suggestion"
msgstr ""
#: ../../mod/settings.php:1014
#: ../../mod/settings.php:1032
msgid "You are tagged in a post"
msgstr ""
#: ../../mod/settings.php:1015
#: ../../mod/settings.php:1033
msgid "You are poked/prodded/etc. in a post"
msgstr ""
#: ../../mod/settings.php:1018
#: ../../mod/settings.php:1036
msgid "Advanced Account/Page Type Settings"
msgstr ""
#: ../../mod/settings.php:1019
#: ../../mod/settings.php:1037
msgid "Change the behaviour of this account for special situations"
msgstr ""
#: ../../mod/manage.php:90
#: ../../mod/manage.php:91
msgid "Manage Identities and/or Pages"
msgstr ""
#: ../../mod/manage.php:93
#: ../../mod/manage.php:94
msgid ""
"Toggle between different identities or community/group pages which share "
"your account details or which you have been granted \"manage\" permissions"
msgstr ""
#: ../../mod/manage.php:95
#: ../../mod/manage.php:96
msgid "Select an identity to manage: "
msgstr ""
@ -2595,7 +2612,7 @@ msgstr ""
msgid "Invalid contact."
msgstr ""
#: ../../mod/notes.php:44 ../../boot.php:1657
#: ../../mod/notes.php:44 ../../boot.php:1690
msgid "Personal Notes"
msgstr ""
@ -2638,7 +2655,7 @@ msgstr ""
#: ../../mod/wallmessage.php:123 ../../mod/wallmessage.php:131
#: ../../mod/message.php:242 ../../mod/message.php:250
#: ../../include/conversation.php:1112 ../../include/conversation.php:1129
#: ../../include/conversation.php:1132 ../../include/conversation.php:1149
msgid "Please enter a link URL:"
msgstr ""
@ -2721,7 +2738,7 @@ msgstr ""
#: ../../mod/newmember.php:32 ../../mod/profperm.php:103
#: ../../view/theme/diabook/theme.php:128 ../../include/profile_advanced.php:7
#: ../../include/profile_advanced.php:84 ../../include/nav.php:50
#: ../../boot.php:1633
#: ../../boot.php:1666
msgid "Profile"
msgstr ""
@ -2979,58 +2996,58 @@ msgid ""
"Please try again tomorrow."
msgstr ""
#: ../../mod/register.php:215
#: ../../mod/register.php:217
msgid ""
"You may (optionally) fill in this form via OpenID by supplying your OpenID "
"and clicking 'Register'."
msgstr ""
#: ../../mod/register.php:216
#: ../../mod/register.php:218
msgid ""
"If you are not familiar with OpenID, please leave that field blank and fill "
"in the rest of the items."
msgstr ""
#: ../../mod/register.php:217
#: ../../mod/register.php:219
msgid "Your OpenID (optional): "
msgstr ""
#: ../../mod/register.php:231
#: ../../mod/register.php:233
msgid "Include your profile in member directory?"
msgstr ""
#: ../../mod/register.php:251
#: ../../mod/register.php:253
msgid "Membership on this site is by invitation only."
msgstr ""
#: ../../mod/register.php:252
#: ../../mod/register.php:254
msgid "Your invitation ID: "
msgstr ""
#: ../../mod/register.php:255 ../../mod/admin.php:442
#: ../../mod/register.php:257 ../../mod/admin.php:444
msgid "Registration"
msgstr ""
#: ../../mod/register.php:263
#: ../../mod/register.php:265
msgid "Your Full Name (e.g. Joe Smith): "
msgstr ""
#: ../../mod/register.php:264
#: ../../mod/register.php:266
msgid "Your Email Address: "
msgstr ""
#: ../../mod/register.php:265
#: ../../mod/register.php:267
msgid ""
"Choose a profile nickname. This must begin with a text character. Your "
"profile address on this site will then be '<strong>nickname@$sitename</"
"strong>'."
msgstr ""
#: ../../mod/register.php:266
#: ../../mod/register.php:268
msgid "Choose a nickname: "
msgstr ""
#: ../../mod/register.php:269 ../../include/nav.php:81 ../../boot.php:887
#: ../../mod/register.php:271 ../../include/nav.php:81 ../../boot.php:887
msgid "Register"
msgstr ""
@ -3038,7 +3055,7 @@ msgstr ""
msgid "People Search"
msgstr ""
#: ../../mod/like.php:145 ../../mod/like.php:298 ../../mod/tagger.php:70
#: ../../mod/like.php:145 ../../mod/like.php:298 ../../mod/tagger.php:62
#: ../../addon/facebook/facebook.php:1594
#: ../../addon/communityhome/communityhome.php:158
#: ../../addon/communityhome/communityhome.php:167
@ -3063,8 +3080,8 @@ msgid "%1$s doesn't like %2$s's %3$s"
msgstr ""
#: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 ../../mod/admin.php:159
#: ../../mod/admin.php:729 ../../mod/admin.php:928 ../../mod/display.php:29
#: ../../mod/display.php:135 ../../include/items.php:3697
#: ../../mod/admin.php:731 ../../mod/admin.php:930 ../../mod/display.php:29
#: ../../mod/display.php:145 ../../include/items.php:3700
msgid "Item not found."
msgstr ""
@ -3073,7 +3090,7 @@ msgid "Access denied."
msgstr ""
#: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:130
#: ../../include/nav.php:51 ../../boot.php:1640
#: ../../include/nav.php:51 ../../boot.php:1673
msgid "Photos"
msgstr ""
@ -3102,34 +3119,34 @@ msgstr ""
msgid "Empty post discarded."
msgstr ""
#: ../../mod/item.php:396 ../../mod/wall_upload.php:122
#: ../../mod/wall_upload.php:131 ../../mod/wall_upload.php:138
#: ../../mod/item.php:407 ../../mod/wall_upload.php:133
#: ../../mod/wall_upload.php:142 ../../mod/wall_upload.php:149
#: ../../include/message.php:144
msgid "Wall Photos"
msgstr ""
#: ../../mod/item.php:809
#: ../../mod/item.php:820
msgid "System error. Post not saved."
msgstr ""
#: ../../mod/item.php:834
#: ../../mod/item.php:845
#, php-format
msgid ""
"This message was sent to you by %s, a member of the Friendica social network."
msgstr ""
#: ../../mod/item.php:836
#: ../../mod/item.php:847
#, php-format
msgid "You may visit them online at %s"
msgstr ""
#: ../../mod/item.php:837
#: ../../mod/item.php:848
msgid ""
"Please contact the sender by replying to this post if you do not wish to "
"receive these messages."
msgstr ""
#: ../../mod/item.php:839
#: ../../mod/item.php:850
#, php-format
msgid "%s posted an update."
msgstr ""
@ -3167,7 +3184,7 @@ msgstr ""
msgid "Unable to process image"
msgstr ""
#: ../../mod/profile_photo.php:117 ../../mod/wall_upload.php:77
#: ../../mod/profile_photo.php:117 ../../mod/wall_upload.php:88
#, php-format
msgid "Image exceeds size limit of %d"
msgstr ""
@ -3304,19 +3321,19 @@ msgstr ""
msgid "Theme settings updated."
msgstr ""
#: ../../mod/admin.php:96 ../../mod/admin.php:440
#: ../../mod/admin.php:96 ../../mod/admin.php:442
msgid "Site"
msgstr ""
#: ../../mod/admin.php:97 ../../mod/admin.php:684 ../../mod/admin.php:696
#: ../../mod/admin.php:97 ../../mod/admin.php:686 ../../mod/admin.php:698
msgid "Users"
msgstr ""
#: ../../mod/admin.php:98 ../../mod/admin.php:778 ../../mod/admin.php:820
#: ../../mod/admin.php:98 ../../mod/admin.php:780 ../../mod/admin.php:822
msgid "Plugins"
msgstr ""
#: ../../mod/admin.php:99 ../../mod/admin.php:983 ../../mod/admin.php:1019
#: ../../mod/admin.php:99 ../../mod/admin.php:985 ../../mod/admin.php:1021
msgid "Themes"
msgstr ""
@ -3324,7 +3341,7 @@ msgstr ""
msgid "DB updates"
msgstr ""
#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1106
#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1108
msgid "Logs"
msgstr ""
@ -3340,19 +3357,19 @@ msgstr ""
msgid "User registrations waiting for confirmation"
msgstr ""
#: ../../mod/admin.php:183 ../../mod/admin.php:666
#: ../../mod/admin.php:183 ../../mod/admin.php:668
msgid "Normal Account"
msgstr ""
#: ../../mod/admin.php:184 ../../mod/admin.php:667
#: ../../mod/admin.php:184 ../../mod/admin.php:669
msgid "Soapbox Account"
msgstr ""
#: ../../mod/admin.php:185 ../../mod/admin.php:668
#: ../../mod/admin.php:185 ../../mod/admin.php:670
msgid "Community/Celebrity Account"
msgstr ""
#: ../../mod/admin.php:186 ../../mod/admin.php:669
#: ../../mod/admin.php:186 ../../mod/admin.php:671
msgid "Automatic Friend Account"
msgstr ""
@ -3368,9 +3385,9 @@ msgstr ""
msgid "Message queues"
msgstr ""
#: ../../mod/admin.php:212 ../../mod/admin.php:439 ../../mod/admin.php:683
#: ../../mod/admin.php:777 ../../mod/admin.php:819 ../../mod/admin.php:982
#: ../../mod/admin.php:1018 ../../mod/admin.php:1105
#: ../../mod/admin.php:212 ../../mod/admin.php:441 ../../mod/admin.php:685
#: ../../mod/admin.php:779 ../../mod/admin.php:821 ../../mod/admin.php:984
#: ../../mod/admin.php:1020 ../../mod/admin.php:1107
msgid "Administration"
msgstr ""
@ -3398,561 +3415,557 @@ msgstr ""
msgid "Site settings updated."
msgstr ""
#: ../../mod/admin.php:402
msgid "Don't apply a special theme for mobile devices."
msgstr ""
#: ../../mod/admin.php:426
#: ../../mod/admin.php:428
msgid "Closed"
msgstr ""
#: ../../mod/admin.php:427
#: ../../mod/admin.php:429
msgid "Requires approval"
msgstr ""
#: ../../mod/admin.php:428
#: ../../mod/admin.php:430
msgid "Open"
msgstr ""
#: ../../mod/admin.php:432
#: ../../mod/admin.php:434
msgid "No SSL policy, links will track page SSL state"
msgstr ""
#: ../../mod/admin.php:433
#: ../../mod/admin.php:435
msgid "Force all links to use SSL"
msgstr ""
#: ../../mod/admin.php:434
#: ../../mod/admin.php:436
msgid "Self-signed certificate, use SSL for local links only (discouraged)"
msgstr ""
#: ../../mod/admin.php:443
#: ../../mod/admin.php:445
msgid "File upload"
msgstr ""
#: ../../mod/admin.php:444
#: ../../mod/admin.php:446
msgid "Policies"
msgstr ""
#: ../../mod/admin.php:445
#: ../../mod/admin.php:447
msgid "Advanced"
msgstr ""
#: ../../mod/admin.php:449 ../../addon/statusnet/statusnet.php:567
#: ../../mod/admin.php:451 ../../addon/statusnet/statusnet.php:567
msgid "Site name"
msgstr ""
#: ../../mod/admin.php:450
#: ../../mod/admin.php:452
msgid "Banner/Logo"
msgstr ""
#: ../../mod/admin.php:451
#: ../../mod/admin.php:453
msgid "System language"
msgstr ""
#: ../../mod/admin.php:452
#: ../../mod/admin.php:454
msgid "System theme"
msgstr ""
#: ../../mod/admin.php:452
#: ../../mod/admin.php:454
msgid ""
"Default system theme - may be over-ridden by user profiles - <a href='#' "
"id='cnftheme'>change theme settings</a>"
msgstr ""
#: ../../mod/admin.php:453
#: ../../mod/admin.php:455
msgid "Mobile system theme"
msgstr ""
#: ../../mod/admin.php:453
#: ../../mod/admin.php:455
msgid "Theme for mobile devices"
msgstr ""
#: ../../mod/admin.php:454
#: ../../mod/admin.php:456
msgid "SSL link policy"
msgstr ""
#: ../../mod/admin.php:454
#: ../../mod/admin.php:456
msgid "Determines whether generated links should be forced to use SSL"
msgstr ""
#: ../../mod/admin.php:455
#: ../../mod/admin.php:457
msgid "Maximum image size"
msgstr ""
#: ../../mod/admin.php:455
#: ../../mod/admin.php:457
msgid ""
"Maximum size in bytes of uploaded images. Default is 0, which means no "
"limits."
msgstr ""
#: ../../mod/admin.php:456
#: ../../mod/admin.php:458
msgid "Maximum image length"
msgstr ""
#: ../../mod/admin.php:456
#: ../../mod/admin.php:458
msgid ""
"Maximum length in pixels of the longest side of uploaded images. Default is -"
"1, which means no limits."
msgstr ""
#: ../../mod/admin.php:457
#: ../../mod/admin.php:459
msgid "JPEG image quality"
msgstr ""
#: ../../mod/admin.php:457
#: ../../mod/admin.php:459
msgid ""
"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
"100, which is full quality."
msgstr ""
#: ../../mod/admin.php:459
#: ../../mod/admin.php:461
msgid "Register policy"
msgstr ""
#: ../../mod/admin.php:460
#: ../../mod/admin.php:462
msgid "Register text"
msgstr ""
#: ../../mod/admin.php:460
#: ../../mod/admin.php:462
msgid "Will be displayed prominently on the registration page."
msgstr ""
#: ../../mod/admin.php:461
#: ../../mod/admin.php:463
msgid "Accounts abandoned after x days"
msgstr ""
#: ../../mod/admin.php:461
#: ../../mod/admin.php:463
msgid ""
"Will not waste system resources polling external sites for abandonded "
"accounts. Enter 0 for no time limit."
msgstr ""
#: ../../mod/admin.php:462
#: ../../mod/admin.php:464
msgid "Allowed friend domains"
msgstr ""
#: ../../mod/admin.php:462
#: ../../mod/admin.php:464
msgid ""
"Comma separated list of domains which are allowed to establish friendships "
"with this site. Wildcards are accepted. Empty to allow any domains"
msgstr ""
#: ../../mod/admin.php:463
#: ../../mod/admin.php:465
msgid "Allowed email domains"
msgstr ""
#: ../../mod/admin.php:463
#: ../../mod/admin.php:465
msgid ""
"Comma separated list of domains which are allowed in email addresses for "
"registrations to this site. Wildcards are accepted. Empty to allow any "
"domains"
msgstr ""
#: ../../mod/admin.php:464
#: ../../mod/admin.php:466
msgid "Block public"
msgstr ""
#: ../../mod/admin.php:464
#: ../../mod/admin.php:466
msgid ""
"Check to block public access to all otherwise public personal pages on this "
"site unless you are currently logged in."
msgstr ""
#: ../../mod/admin.php:465
#: ../../mod/admin.php:467
msgid "Force publish"
msgstr ""
#: ../../mod/admin.php:465
#: ../../mod/admin.php:467
msgid ""
"Check to force all profiles on this site to be listed in the site directory."
msgstr ""
#: ../../mod/admin.php:466
#: ../../mod/admin.php:468
msgid "Global directory update URL"
msgstr ""
#: ../../mod/admin.php:466
#: ../../mod/admin.php:468
msgid ""
"URL to update the global directory. If this is not set, the global directory "
"is completely unavailable to the application."
msgstr ""
#: ../../mod/admin.php:467
#: ../../mod/admin.php:469
msgid "Allow threaded items"
msgstr ""
#: ../../mod/admin.php:467
#: ../../mod/admin.php:469
msgid "Allow infinite level threading for items on this site."
msgstr ""
#: ../../mod/admin.php:468
#: ../../mod/admin.php:470
msgid "No default permissions for new users"
msgstr ""
#: ../../mod/admin.php:468
#: ../../mod/admin.php:470
msgid ""
"New users will have no private permissions set for their posts by default, "
"making their posts public until they change it."
msgstr ""
#: ../../mod/admin.php:470
#: ../../mod/admin.php:472
msgid "Block multiple registrations"
msgstr ""
#: ../../mod/admin.php:470
#: ../../mod/admin.php:472
msgid "Disallow users to register additional accounts for use as pages."
msgstr ""
#: ../../mod/admin.php:471
#: ../../mod/admin.php:473
msgid "OpenID support"
msgstr ""
#: ../../mod/admin.php:471
#: ../../mod/admin.php:473
msgid "OpenID support for registration and logins."
msgstr ""
#: ../../mod/admin.php:472
#: ../../mod/admin.php:474
msgid "Fullname check"
msgstr ""
#: ../../mod/admin.php:472
#: ../../mod/admin.php:474
msgid ""
"Force users to register with a space between firstname and lastname in Full "
"name, as an antispam measure"
msgstr ""
#: ../../mod/admin.php:473
#: ../../mod/admin.php:475
msgid "UTF-8 Regular expressions"
msgstr ""
#: ../../mod/admin.php:473
#: ../../mod/admin.php:475
msgid "Use PHP UTF8 regular expressions"
msgstr ""
#: ../../mod/admin.php:474
#: ../../mod/admin.php:476
msgid "Show Community Page"
msgstr ""
#: ../../mod/admin.php:474
#: ../../mod/admin.php:476
msgid ""
"Display a Community page showing all recent public postings on this site."
msgstr ""
#: ../../mod/admin.php:475
#: ../../mod/admin.php:477
msgid "Enable OStatus support"
msgstr ""
#: ../../mod/admin.php:475
#: ../../mod/admin.php:477
msgid ""
"Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All "
"communications in OStatus are public, so privacy warnings will be "
"occasionally displayed."
msgstr ""
#: ../../mod/admin.php:476
#: ../../mod/admin.php:478
msgid "Enable Diaspora support"
msgstr ""
#: ../../mod/admin.php:476
#: ../../mod/admin.php:478
msgid "Provide built-in Diaspora network compatibility."
msgstr ""
#: ../../mod/admin.php:477
#: ../../mod/admin.php:479
msgid "Only allow Friendica contacts"
msgstr ""
#: ../../mod/admin.php:477
#: ../../mod/admin.php:479
msgid ""
"All contacts must use Friendica protocols. All other built-in communication "
"protocols disabled."
msgstr ""
#: ../../mod/admin.php:478
#: ../../mod/admin.php:480
msgid "Verify SSL"
msgstr ""
#: ../../mod/admin.php:478
#: ../../mod/admin.php:480
msgid ""
"If you wish, you can turn on strict certificate checking. This will mean you "
"cannot connect (at all) to self-signed SSL sites."
msgstr ""
#: ../../mod/admin.php:479
#: ../../mod/admin.php:481
msgid "Proxy user"
msgstr ""
#: ../../mod/admin.php:480
#: ../../mod/admin.php:482
msgid "Proxy URL"
msgstr ""
#: ../../mod/admin.php:481
#: ../../mod/admin.php:483
msgid "Network timeout"
msgstr ""
#: ../../mod/admin.php:481
#: ../../mod/admin.php:483
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
msgstr ""
#: ../../mod/admin.php:482
#: ../../mod/admin.php:484
msgid "Delivery interval"
msgstr ""
#: ../../mod/admin.php:482
#: ../../mod/admin.php:484
msgid ""
"Delay background delivery processes by this many seconds to reduce system "
"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
"for large dedicated servers."
msgstr ""
#: ../../mod/admin.php:483
#: ../../mod/admin.php:485
msgid "Poll interval"
msgstr ""
#: ../../mod/admin.php:483
#: ../../mod/admin.php:485
msgid ""
"Delay background polling processes by this many seconds to reduce system "
"load. If 0, use delivery interval."
msgstr ""
#: ../../mod/admin.php:484
#: ../../mod/admin.php:486
msgid "Maximum Load Average"
msgstr ""
#: ../../mod/admin.php:484
#: ../../mod/admin.php:486
msgid ""
"Maximum system load before delivery and poll processes are deferred - "
"default 50."
msgstr ""
#: ../../mod/admin.php:501
#: ../../mod/admin.php:503
msgid "Update has been marked successful"
msgstr ""
#: ../../mod/admin.php:511
#: ../../mod/admin.php:513
#, php-format
msgid "Executing %s failed. Check system logs."
msgstr ""
#: ../../mod/admin.php:514
#: ../../mod/admin.php:516
#, php-format
msgid "Update %s was successfully applied."
msgstr ""
#: ../../mod/admin.php:518
#: ../../mod/admin.php:520
#, php-format
msgid "Update %s did not return a status. Unknown if it succeeded."
msgstr ""
#: ../../mod/admin.php:521
#: ../../mod/admin.php:523
#, php-format
msgid "Update function %s could not be found."
msgstr ""
#: ../../mod/admin.php:536
#: ../../mod/admin.php:538
msgid "No failed updates."
msgstr ""
#: ../../mod/admin.php:540
#: ../../mod/admin.php:542
msgid "Failed Updates"
msgstr ""
#: ../../mod/admin.php:541
#: ../../mod/admin.php:543
msgid ""
"This does not include updates prior to 1139, which did not return a status."
msgstr ""
#: ../../mod/admin.php:542
#: ../../mod/admin.php:544
msgid "Mark success (if update was manually applied)"
msgstr ""
#: ../../mod/admin.php:543
#: ../../mod/admin.php:545
msgid "Attempt to execute this update step automatically"
msgstr ""
#: ../../mod/admin.php:568
#: ../../mod/admin.php:570
#, php-format
msgid "%s user blocked/unblocked"
msgid_plural "%s users blocked/unblocked"
msgstr[0] ""
msgstr[1] ""
#: ../../mod/admin.php:575
#: ../../mod/admin.php:577
#, php-format
msgid "%s user deleted"
msgid_plural "%s users deleted"
msgstr[0] ""
msgstr[1] ""
#: ../../mod/admin.php:614
#: ../../mod/admin.php:616
#, php-format
msgid "User '%s' deleted"
msgstr ""
#: ../../mod/admin.php:622
#: ../../mod/admin.php:624
#, php-format
msgid "User '%s' unblocked"
msgstr ""
#: ../../mod/admin.php:622
#: ../../mod/admin.php:624
#, php-format
msgid "User '%s' blocked"
msgstr ""
#: ../../mod/admin.php:686
#: ../../mod/admin.php:688
msgid "select all"
msgstr ""
#: ../../mod/admin.php:687
#: ../../mod/admin.php:689
msgid "User registrations waiting for confirm"
msgstr ""
#: ../../mod/admin.php:688
#: ../../mod/admin.php:690
msgid "Request date"
msgstr ""
#: ../../mod/admin.php:688 ../../mod/admin.php:697
#: ../../mod/admin.php:690 ../../mod/admin.php:699
#: ../../include/contact_selectors.php:79
msgid "Email"
msgstr ""
#: ../../mod/admin.php:689
#: ../../mod/admin.php:691
msgid "No registrations."
msgstr ""
#: ../../mod/admin.php:691
#: ../../mod/admin.php:693
msgid "Deny"
msgstr ""
#: ../../mod/admin.php:697
#: ../../mod/admin.php:699
msgid "Register date"
msgstr ""
#: ../../mod/admin.php:697
#: ../../mod/admin.php:699
msgid "Last login"
msgstr ""
#: ../../mod/admin.php:697
#: ../../mod/admin.php:699
msgid "Last item"
msgstr ""
#: ../../mod/admin.php:697
#: ../../mod/admin.php:699
msgid "Account"
msgstr ""
#: ../../mod/admin.php:699
#: ../../mod/admin.php:701
msgid ""
"Selected users will be deleted!\\n\\nEverything these users had posted on "
"this site will be permanently deleted!\\n\\nAre you sure?"
msgstr ""
#: ../../mod/admin.php:700
#: ../../mod/admin.php:702
msgid ""
"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
"site will be permanently deleted!\\n\\nAre you sure?"
msgstr ""
#: ../../mod/admin.php:741
#: ../../mod/admin.php:743
#, php-format
msgid "Plugin %s disabled."
msgstr ""
#: ../../mod/admin.php:745
#: ../../mod/admin.php:747
#, php-format
msgid "Plugin %s enabled."
msgstr ""
#: ../../mod/admin.php:755 ../../mod/admin.php:953
#: ../../mod/admin.php:757 ../../mod/admin.php:955
msgid "Disable"
msgstr ""
#: ../../mod/admin.php:757 ../../mod/admin.php:955
#: ../../mod/admin.php:759 ../../mod/admin.php:957
msgid "Enable"
msgstr ""
#: ../../mod/admin.php:779 ../../mod/admin.php:984
#: ../../mod/admin.php:781 ../../mod/admin.php:986
msgid "Toggle"
msgstr ""
#: ../../mod/admin.php:787 ../../mod/admin.php:994
#: ../../mod/admin.php:789 ../../mod/admin.php:996
msgid "Author: "
msgstr ""
#: ../../mod/admin.php:788 ../../mod/admin.php:995
#: ../../mod/admin.php:790 ../../mod/admin.php:997
msgid "Maintainer: "
msgstr ""
#: ../../mod/admin.php:917
#: ../../mod/admin.php:919
msgid "No themes found."
msgstr ""
#: ../../mod/admin.php:976
#: ../../mod/admin.php:978
msgid "Screenshot"
msgstr ""
#: ../../mod/admin.php:1024
#: ../../mod/admin.php:1026
msgid "[Experimental]"
msgstr ""
#: ../../mod/admin.php:1025
#: ../../mod/admin.php:1027
msgid "[Unsupported]"
msgstr ""
#: ../../mod/admin.php:1052
#: ../../mod/admin.php:1054
msgid "Log settings updated."
msgstr ""
#: ../../mod/admin.php:1108
#: ../../mod/admin.php:1110
msgid "Clear"
msgstr ""
#: ../../mod/admin.php:1114
#: ../../mod/admin.php:1116
msgid "Debugging"
msgstr ""
#: ../../mod/admin.php:1115
#: ../../mod/admin.php:1117
msgid "Log file"
msgstr ""
#: ../../mod/admin.php:1115
#: ../../mod/admin.php:1117
msgid ""
"Must be writable by web server. Relative to your Friendica top-level "
"directory."
msgstr ""
#: ../../mod/admin.php:1116
#: ../../mod/admin.php:1118
msgid "Log level"
msgstr ""
#: ../../mod/admin.php:1166
#: ../../mod/admin.php:1168
msgid "Close"
msgstr ""
#: ../../mod/admin.php:1172
#: ../../mod/admin.php:1174
msgid "FTP Host"
msgstr ""
#: ../../mod/admin.php:1173
#: ../../mod/admin.php:1175
msgid "FTP Path"
msgstr ""
#: ../../mod/admin.php:1174
#: ../../mod/admin.php:1176
msgid "FTP User"
msgstr ""
#: ../../mod/admin.php:1175
#: ../../mod/admin.php:1177
msgid "FTP Password"
msgstr ""
#: ../../mod/profile.php:22 ../../boot.php:1056
#: ../../mod/profile.php:22 ../../boot.php:1074
msgid "Requested profile is not available."
msgstr ""
#: ../../mod/profile.php:142 ../../mod/display.php:67
#: ../../mod/profile.php:152 ../../mod/display.php:77
msgid "Access to this profile has been restricted."
msgstr ""
#: ../../mod/profile.php:167
#: ../../mod/profile.php:177
msgid "Tips for New Members"
msgstr ""
@ -4014,8 +4027,8 @@ msgid ""
"Account not found and OpenID registration is not permitted on this site."
msgstr ""
#: ../../mod/openid.php:93 ../../include/auth.php:99
#: ../../include/auth.php:162
#: ../../mod/openid.php:93 ../../include/auth.php:98
#: ../../include/auth.php:161
msgid "Login failed."
msgstr ""
@ -4035,7 +4048,7 @@ msgstr ""
msgid "link"
msgstr ""
#: ../../mod/display.php:128
#: ../../mod/display.php:138
msgid "Item has been removed."
msgstr ""
@ -4047,7 +4060,7 @@ msgstr ""
msgid "No installed applications."
msgstr ""
#: ../../mod/search.php:83 ../../include/text.php:678
#: ../../mod/search.php:85 ../../include/text.php:678
#: ../../include/text.php:679 ../../include/nav.php:91
msgid "Search"
msgstr ""
@ -4331,7 +4344,7 @@ msgid ""
"be visible to anybody using the internet."
msgstr ""
#: ../../mod/profiles.php:638 ../../mod/directory.php:109
#: ../../mod/profiles.php:638 ../../mod/directory.php:111
msgid "Age: "
msgstr ""
@ -4339,28 +4352,28 @@ msgstr ""
msgid "Edit/Manage Profiles"
msgstr ""
#: ../../mod/profiles.php:678 ../../boot.php:1165
#: ../../mod/profiles.php:678 ../../boot.php:1192
msgid "Change profile photo"
msgstr ""
#: ../../mod/profiles.php:679 ../../boot.php:1166
#: ../../mod/profiles.php:679 ../../boot.php:1193
msgid "Create New Profile"
msgstr ""
#: ../../mod/profiles.php:690 ../../boot.php:1176
#: ../../mod/profiles.php:690 ../../boot.php:1203
msgid "Profile Image"
msgstr ""
#: ../../mod/profiles.php:692 ../../boot.php:1179
#: ../../mod/profiles.php:692 ../../boot.php:1206
msgid "visible to everybody"
msgstr ""
#: ../../mod/profiles.php:693 ../../boot.php:1180
#: ../../mod/profiles.php:693 ../../boot.php:1207
msgid "Edit visibility"
msgstr ""
#: ../../mod/filer.php:29 ../../include/conversation.php:1116
#: ../../include/conversation.php:1133
#: ../../mod/filer.php:29 ../../include/conversation.php:1136
#: ../../include/conversation.php:1153
msgid "Save to Folder:"
msgstr ""
@ -4368,7 +4381,7 @@ msgstr ""
msgid "- select -"
msgstr ""
#: ../../mod/tagger.php:103 ../../include/conversation.php:267
#: ../../mod/tagger.php:95 ../../include/conversation.php:267
#, php-format
msgid "%1$s tagged %2$s's %3$s with %4$s"
msgstr ""
@ -4467,42 +4480,42 @@ msgstr ""
msgid "Ignore/Hide"
msgstr ""
#: ../../mod/directory.php:47 ../../view/theme/diabook/theme.php:624
#: ../../mod/directory.php:49 ../../view/theme/diabook/theme.php:624
msgid "Global Directory"
msgstr ""
#: ../../mod/directory.php:55
#: ../../mod/directory.php:57
msgid "Find on this site"
msgstr ""
#: ../../mod/directory.php:58
#: ../../mod/directory.php:60
msgid "Site Directory"
msgstr ""
#: ../../mod/directory.php:112
#: ../../mod/directory.php:114
msgid "Gender: "
msgstr ""
#: ../../mod/directory.php:134 ../../include/profile_advanced.php:17
#: ../../boot.php:1201
#: ../../mod/directory.php:136 ../../include/profile_advanced.php:17
#: ../../boot.php:1228
msgid "Gender:"
msgstr ""
#: ../../mod/directory.php:136 ../../include/profile_advanced.php:37
#: ../../boot.php:1204
#: ../../mod/directory.php:138 ../../include/profile_advanced.php:37
#: ../../boot.php:1231
msgid "Status:"
msgstr ""
#: ../../mod/directory.php:138 ../../include/profile_advanced.php:48
#: ../../boot.php:1206
#: ../../mod/directory.php:140 ../../include/profile_advanced.php:48
#: ../../boot.php:1233
msgid "Homepage:"
msgstr ""
#: ../../mod/directory.php:140 ../../include/profile_advanced.php:58
#: ../../mod/directory.php:142 ../../include/profile_advanced.php:58
msgid "About:"
msgstr ""
#: ../../mod/directory.php:178
#: ../../mod/directory.php:180
msgid "No entries (some entries may be hidden)."
msgstr ""
@ -5717,7 +5730,7 @@ msgid "Extended calendar with CalDAV-support"
msgstr ""
#: ../../addon/dav/friendica/main.php:279
#: ../../addon/dav/friendica/main.php:280 ../../include/delivery.php:463
#: ../../addon/dav/friendica/main.php:280 ../../include/delivery.php:464
#: ../../include/enotify.php:28 ../../include/notifier.php:710
msgid "noreply"
msgstr ""
@ -7460,11 +7473,11 @@ msgstr ""
msgid "Finishes:"
msgstr ""
#: ../../include/delivery.php:456 ../../include/notifier.php:703
#: ../../include/delivery.php:457 ../../include/notifier.php:703
msgid "(no subject)"
msgstr ""
#: ../../include/Scrape.php:575
#: ../../include/Scrape.php:576
msgid " on Last.fm"
msgstr ""
@ -7786,7 +7799,7 @@ msgstr ""
msgid "End this session"
msgstr ""
#: ../../include/nav.php:49 ../../boot.php:1626
#: ../../include/nav.php:49 ../../boot.php:1659
msgid "Status"
msgstr ""
@ -7866,11 +7879,11 @@ msgstr ""
msgid "Manage other pages"
msgstr ""
#: ../../include/nav.php:138 ../../boot.php:1159
#: ../../include/nav.php:138 ../../boot.php:1186
msgid "Profiles"
msgstr ""
#: ../../include/nav.php:138 ../../boot.php:1159
#: ../../include/nav.php:138 ../../boot.php:1186
msgid "Manage/edit profiles"
msgstr ""
@ -7945,17 +7958,17 @@ msgstr ""
msgid "Categories"
msgstr ""
#: ../../include/auth.php:36
#: ../../include/auth.php:35
msgid "Logged out."
msgstr ""
#: ../../include/auth.php:115
#: ../../include/auth.php:114
msgid ""
"We encountered a problem while logging in with the OpenID you provided. "
"Please check the correct spelling of the ID."
msgstr ""
#: ../../include/auth.php:115
#: ../../include/auth.php:114
msgid "The error message was:"
msgstr ""
@ -8295,15 +8308,15 @@ msgstr ""
msgid "following"
msgstr ""
#: ../../include/items.php:3217
#: ../../include/items.php:3220
msgid "A new person is sharing with you at "
msgstr ""
#: ../../include/items.php:3217
#: ../../include/items.php:3220
msgid "You have a new follower at "
msgstr ""
#: ../../include/items.php:3886
#: ../../include/items.php:3901
msgid "Archives"
msgstr ""
@ -8375,19 +8388,19 @@ msgstr ""
msgid "An error occurred creating your default profile. Please try again."
msgstr ""
#: ../../include/security.php:21
#: ../../include/security.php:22
msgid "Welcome "
msgstr ""
#: ../../include/security.php:22
#: ../../include/security.php:23
msgid "Please upload a profile photo."
msgstr ""
#: ../../include/security.php:25
#: ../../include/security.php:26
msgid "Welcome back "
msgstr ""
#: ../../include/security.php:329
#: ../../include/security.php:344
msgid ""
"The form security token was not correct. This probably happened because the "
"form has been opened for too long (>3 hours) before submitting it."
@ -8397,34 +8410,34 @@ msgstr ""
msgid "stopped following"
msgstr ""
#: ../../include/Contact.php:220 ../../include/conversation.php:1013
#: ../../include/Contact.php:220 ../../include/conversation.php:1033
msgid "Poke"
msgstr ""
#: ../../include/Contact.php:221 ../../include/conversation.php:1007
#: ../../include/Contact.php:221 ../../include/conversation.php:1027
msgid "View Status"
msgstr ""
#: ../../include/Contact.php:222 ../../include/conversation.php:1008
#: ../../include/Contact.php:222 ../../include/conversation.php:1028
msgid "View Profile"
msgstr ""
#: ../../include/Contact.php:223 ../../include/conversation.php:1009
#: ../../include/Contact.php:223 ../../include/conversation.php:1029
msgid "View Photos"
msgstr ""
#: ../../include/Contact.php:224 ../../include/Contact.php:237
#: ../../include/conversation.php:1010
#: ../../include/conversation.php:1030
msgid "Network Posts"
msgstr ""
#: ../../include/Contact.php:225 ../../include/Contact.php:237
#: ../../include/conversation.php:1011
#: ../../include/conversation.php:1031
msgid "Edit Contact"
msgstr ""
#: ../../include/Contact.php:226 ../../include/Contact.php:237
#: ../../include/conversation.php:1012
#: ../../include/conversation.php:1032
msgid "Send PM"
msgstr ""
@ -8442,106 +8455,106 @@ msgstr ""
msgid "%1$s marked %2$s's %3$s as favorite"
msgstr ""
#: ../../include/conversation.php:913
#: ../../include/conversation.php:933
msgid "Delete Selected Items"
msgstr ""
#: ../../include/conversation.php:1071
#: ../../include/conversation.php:1091
#, php-format
msgid "%s likes this."
msgstr ""
#: ../../include/conversation.php:1071
#: ../../include/conversation.php:1091
#, php-format
msgid "%s doesn't like this."
msgstr ""
#: ../../include/conversation.php:1075
#: ../../include/conversation.php:1095
#, php-format
msgid "<span %1$s>%2$d people</span> like this."
msgstr ""
#: ../../include/conversation.php:1077
#: ../../include/conversation.php:1097
#, php-format
msgid "<span %1$s>%2$d people</span> don't like this."
msgstr ""
#: ../../include/conversation.php:1083
#: ../../include/conversation.php:1103
msgid "and"
msgstr ""
#: ../../include/conversation.php:1086
#: ../../include/conversation.php:1106
#, php-format
msgid ", and %d other people"
msgstr ""
#: ../../include/conversation.php:1087
#: ../../include/conversation.php:1107
#, php-format
msgid "%s like this."
msgstr ""
#: ../../include/conversation.php:1087
#: ../../include/conversation.php:1107
#, php-format
msgid "%s don't like this."
msgstr ""
#: ../../include/conversation.php:1111 ../../include/conversation.php:1128
#: ../../include/conversation.php:1131 ../../include/conversation.php:1148
msgid "Visible to <strong>everybody</strong>"
msgstr ""
#: ../../include/conversation.php:1113 ../../include/conversation.php:1130
#: ../../include/conversation.php:1133 ../../include/conversation.php:1150
msgid "Please enter a video link/URL:"
msgstr ""
#: ../../include/conversation.php:1114 ../../include/conversation.php:1131
#: ../../include/conversation.php:1134 ../../include/conversation.php:1151
msgid "Please enter an audio link/URL:"
msgstr ""
#: ../../include/conversation.php:1115 ../../include/conversation.php:1132
#: ../../include/conversation.php:1135 ../../include/conversation.php:1152
msgid "Tag term:"
msgstr ""
#: ../../include/conversation.php:1117 ../../include/conversation.php:1134
#: ../../include/conversation.php:1137 ../../include/conversation.php:1154
msgid "Where are you right now?"
msgstr ""
#: ../../include/conversation.php:1177
#: ../../include/conversation.php:1197
msgid "upload photo"
msgstr ""
#: ../../include/conversation.php:1179
#: ../../include/conversation.php:1199
msgid "attach file"
msgstr ""
#: ../../include/conversation.php:1181
#: ../../include/conversation.php:1201
msgid "web link"
msgstr ""
#: ../../include/conversation.php:1182
#: ../../include/conversation.php:1202
msgid "Insert video link"
msgstr ""
#: ../../include/conversation.php:1183
#: ../../include/conversation.php:1203
msgid "video link"
msgstr ""
#: ../../include/conversation.php:1184
#: ../../include/conversation.php:1204
msgid "Insert audio link"
msgstr ""
#: ../../include/conversation.php:1185
#: ../../include/conversation.php:1205
msgid "audio link"
msgstr ""
#: ../../include/conversation.php:1187
#: ../../include/conversation.php:1207
msgid "set location"
msgstr ""
#: ../../include/conversation.php:1189
#: ../../include/conversation.php:1209
msgid "clear location"
msgstr ""
#: ../../include/conversation.php:1196
#: ../../include/conversation.php:1216
msgid "permissions"
msgstr ""
@ -8595,58 +8608,62 @@ msgstr ""
msgid "Forgot your password?"
msgstr ""
#: ../../boot.php:1091
#: ../../boot.php:1035
msgid "Requested account is not available."
msgstr ""
#: ../../boot.php:1112
msgid "Edit profile"
msgstr ""
#: ../../boot.php:1151
#: ../../boot.php:1178
msgid "Message"
msgstr ""
#: ../../boot.php:1273 ../../boot.php:1359
#: ../../boot.php:1300 ../../boot.php:1386
msgid "g A l F d"
msgstr ""
#: ../../boot.php:1274 ../../boot.php:1360
#: ../../boot.php:1301 ../../boot.php:1387
msgid "F d"
msgstr ""
#: ../../boot.php:1319 ../../boot.php:1400
#: ../../boot.php:1346 ../../boot.php:1427
msgid "[today]"
msgstr ""
#: ../../boot.php:1331
#: ../../boot.php:1358
msgid "Birthday Reminders"
msgstr ""
#: ../../boot.php:1332
#: ../../boot.php:1359
msgid "Birthdays this week:"
msgstr ""
#: ../../boot.php:1393
#: ../../boot.php:1420
msgid "[No description]"
msgstr ""
#: ../../boot.php:1411
#: ../../boot.php:1438
msgid "Event Reminders"
msgstr ""
#: ../../boot.php:1412
#: ../../boot.php:1439
msgid "Events this week:"
msgstr ""
#: ../../boot.php:1629
#: ../../boot.php:1662
msgid "Status Messages and Posts"
msgstr ""
#: ../../boot.php:1636
#: ../../boot.php:1669
msgid "Profile Details"
msgstr ""
#: ../../boot.php:1653
#: ../../boot.php:1686
msgid "Events and Calendar"
msgstr ""
#: ../../boot.php:1660
#: ../../boot.php:1693
msgid "Only You Can See This"
msgstr ""

View file

@ -0,0 +1,6 @@
$vcard_widget
$follow_widget
$groups_widget
$findpeople_widget
$networks_widget

View file

@ -14,22 +14,22 @@
# <marmor69@web.de>, 2012.
# Martin Schmitt <mas@scsy.de>, 2012.
# Oliver <post@toktan.org>, 2012.
# <tobias.diekershoff@gmx.net>, 2011, 2012.
# <tobias.diekershoff@gmx.net>, 2011-2012.
# <transifex@zottel.net>, 2011-2012.
# <ts+transifex@ml.tschlotfeldt.de>, 2011.
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: http://bugs.friendica.com/\n"
"POT-Creation-Date: 2012-08-28 10:00-0700\n"
"PO-Revision-Date: 2012-08-31 23:04+0000\n"
"Last-Translator: zottel <transifex@zottel.net>\n"
"POT-Creation-Date: 2012-09-08 10:00-0700\n"
"PO-Revision-Date: 2012-09-09 16:28+0000\n"
"Last-Translator: bavatar <tobias.diekershoff@gmx.net>\n"
"Language-Team: German (http://www.transifex.com/projects/p/friendica/language/de/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: de\n"
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: ../../mod/oexchange.php:25
msgid "Post successful."
@ -48,13 +48,13 @@ msgstr "Einstellungen zum Kontakt angewandt."
msgid "Contact update failed."
msgstr "Konnte den Kontakt nicht aktualisieren."
#: ../../mod/crepair.php:115 ../../mod/wall_attach.php:44
#: ../../mod/crepair.php:115 ../../mod/wall_attach.php:55
#: ../../mod/fsuggest.php:78 ../../mod/events.php:140 ../../mod/api.php:26
#: ../../mod/api.php:31 ../../mod/photos.php:116 ../../mod/photos.php:938
#: ../../mod/api.php:31 ../../mod/photos.php:128 ../../mod/photos.php:972
#: ../../mod/editpost.php:10 ../../mod/install.php:151 ../../mod/poke.php:135
#: ../../mod/notifications.php:66 ../../mod/contacts.php:139
#: ../../mod/settings.php:86 ../../mod/settings.php:519
#: ../../mod/settings.php:524 ../../mod/manage.php:86 ../../mod/network.php:6
#: ../../mod/settings.php:86 ../../mod/settings.php:525
#: ../../mod/settings.php:530 ../../mod/manage.php:87 ../../mod/network.php:6
#: ../../mod/notes.php:20 ../../mod/wallmessage.php:9
#: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79
#: ../../mod/wallmessage.php:103 ../../mod/attach.php:33
@ -65,13 +65,13 @@ msgstr "Konnte den Kontakt nicht aktualisieren."
#: ../../mod/profile_photo.php:153 ../../mod/profile_photo.php:166
#: ../../mod/message.php:38 ../../mod/message.php:168
#: ../../mod/allfriends.php:9 ../../mod/nogroup.php:25
#: ../../mod/wall_upload.php:53 ../../mod/follow.php:9
#: ../../mod/display.php:131 ../../mod/profiles.php:7
#: ../../mod/wall_upload.php:64 ../../mod/follow.php:9
#: ../../mod/display.php:141 ../../mod/profiles.php:7
#: ../../mod/profiles.php:413 ../../mod/delegate.php:6
#: ../../mod/suggest.php:28 ../../mod/invite.php:13 ../../mod/invite.php:81
#: ../../mod/dfrn_confirm.php:53 ../../addon/facebook/facebook.php:510
#: ../../addon/facebook/facebook.php:516
#: ../../addon/dav/friendica/layout.fnk.php:354 ../../include/items.php:3819
#: ../../addon/dav/friendica/layout.fnk.php:354 ../../include/items.php:3834
#: ../../index.php:315
msgid "Permission denied."
msgstr "Zugriff verweigert."
@ -101,8 +101,8 @@ msgstr "Bitte nutze den Zurück-Button deines Browsers <strong>jetzt</strong>, w
msgid "Return to contact editor"
msgstr "Zurück zum Kontakteditor"
#: ../../mod/crepair.php:148 ../../mod/settings.php:539
#: ../../mod/settings.php:565 ../../mod/admin.php:679 ../../mod/admin.php:688
#: ../../mod/crepair.php:148 ../../mod/settings.php:545
#: ../../mod/settings.php:571 ../../mod/admin.php:690 ../../mod/admin.php:699
msgid "Name"
msgstr "Name"
@ -139,18 +139,19 @@ msgid "New photo from this URL"
msgstr "Neues Foto von dieser URL"
#: ../../mod/crepair.php:166 ../../mod/fsuggest.php:107
#: ../../mod/events.php:439 ../../mod/photos.php:971 ../../mod/photos.php:1042
#: ../../mod/photos.php:1285 ../../mod/photos.php:1325
#: ../../mod/photos.php:1366 ../../mod/photos.php:1398
#: ../../mod/install.php:246 ../../mod/install.php:284
#: ../../mod/localtime.php:45 ../../mod/poke.php:199 ../../mod/content.php:691
#: ../../mod/contacts.php:341 ../../mod/settings.php:537
#: ../../mod/settings.php:691 ../../mod/settings.php:752
#: ../../mod/settings.php:958 ../../mod/group.php:85 ../../mod/mood.php:137
#: ../../mod/message.php:294 ../../mod/message.php:478 ../../mod/admin.php:435
#: ../../mod/admin.php:676 ../../mod/admin.php:812 ../../mod/admin.php:1011
#: ../../mod/admin.php:1098 ../../mod/profiles.php:583
#: ../../mod/invite.php:119 ../../addon/fromgplus/fromgplus.php:40
#: ../../mod/events.php:439 ../../mod/photos.php:1005
#: ../../mod/photos.php:1076 ../../mod/photos.php:1319
#: ../../mod/photos.php:1359 ../../mod/photos.php:1400
#: ../../mod/photos.php:1432 ../../mod/install.php:246
#: ../../mod/install.php:284 ../../mod/localtime.php:45 ../../mod/poke.php:199
#: ../../mod/content.php:691 ../../mod/contacts.php:341
#: ../../mod/settings.php:543 ../../mod/settings.php:697
#: ../../mod/settings.php:769 ../../mod/settings.php:976
#: ../../mod/group.php:85 ../../mod/mood.php:137 ../../mod/message.php:294
#: ../../mod/message.php:480 ../../mod/admin.php:443 ../../mod/admin.php:687
#: ../../mod/admin.php:823 ../../mod/admin.php:1022 ../../mod/admin.php:1109
#: ../../mod/profiles.php:583 ../../mod/invite.php:119
#: ../../addon/fromgplus/fromgplus.php:40
#: ../../addon/facebook/facebook.php:619
#: ../../addon/snautofollow/snautofollow.php:64 ../../addon/bg/bg.php:90
#: ../../addon/yourls/yourls.php:76 ../../addon/ljpost/ljpost.php:93
@ -188,7 +189,7 @@ msgstr "Neues Foto von dieser URL"
#: ../../view/theme/diabook/theme.php:757
#: ../../view/theme/diabook/config.php:190
#: ../../view/theme/quattro/config.php:52 ../../view/theme/dispy/config.php:70
#: ../../include/conversation.php:560
#: ../../include/conversation.php:591
msgid "Submit"
msgstr "Senden"
@ -209,12 +210,12 @@ msgstr "Nicht gefunden"
msgid "Page not found."
msgstr "Seite nicht gefunden."
#: ../../mod/wall_attach.php:58
#: ../../mod/wall_attach.php:69
#, php-format
msgid "File exceeds size limit of %d"
msgstr "Die Datei ist größer als das erlaubte Limit von %d"
#: ../../mod/wall_attach.php:99 ../../mod/wall_attach.php:110
#: ../../mod/wall_attach.php:110 ../../mod/wall_attach.php:121
msgid "File upload failed."
msgstr "Hochladen der Datei fehlgeschlagen."
@ -248,7 +249,7 @@ msgid "link to source"
msgstr "Link zum Originalbeitrag"
#: ../../mod/events.php:331 ../../view/theme/diabook/theme.php:131
#: ../../include/nav.php:52 ../../boot.php:1659
#: ../../include/nav.php:52 ../../boot.php:1683
msgid "Events"
msgstr "Veranstaltungen"
@ -302,9 +303,9 @@ msgstr "An Zeitzone des Betrachters anpassen"
msgid "Description:"
msgstr "Beschreibung"
#: ../../mod/events.php:432 ../../mod/directory.php:132
#: ../../include/event.php:40 ../../include/bb2diaspora.php:455
#: ../../boot.php:1208
#: ../../mod/events.php:432 ../../mod/directory.php:134
#: ../../include/event.php:40 ../../include/bb2diaspora.php:412
#: ../../boot.php:1226
msgid "Location:"
msgstr "Ort:"
@ -317,8 +318,8 @@ msgid "Share this event"
msgstr "Veranstaltung teilen"
#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94
#: ../../mod/dfrn_request.php:845 ../../mod/settings.php:538
#: ../../mod/settings.php:564 ../../addon/js_upload/js_upload.php:45
#: ../../mod/dfrn_request.php:847 ../../mod/settings.php:544
#: ../../mod/settings.php:570 ../../addon/js_upload/js_upload.php:45
msgid "Cancel"
msgstr "Abbrechen"
@ -339,7 +340,7 @@ msgstr "Wähle ein Tag zum Entfernen aus: "
msgid "Remove"
msgstr "Entfernen"
#: ../../mod/dfrn_poll.php:94 ../../mod/dfrn_poll.php:522
#: ../../mod/dfrn_poll.php:99 ../../mod/dfrn_poll.php:530
#, php-format
msgid "%s welcomes %s"
msgstr "%s heißt %s herzlich willkommen"
@ -362,43 +363,43 @@ msgid ""
" and/or create new posts for you?"
msgstr "Möchtest du dieser Anwendung den Zugriff auf deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in deinem Namen gestatten?"
#: ../../mod/api.php:105 ../../mod/dfrn_request.php:833
#: ../../mod/settings.php:874 ../../mod/settings.php:880
#: ../../mod/settings.php:888 ../../mod/settings.php:892
#: ../../mod/settings.php:897 ../../mod/settings.php:903
#: ../../mod/settings.php:909 ../../mod/settings.php:915
#: ../../mod/settings.php:945 ../../mod/settings.php:946
#: ../../mod/settings.php:947 ../../mod/settings.php:948
#: ../../mod/settings.php:949 ../../mod/register.php:234
#: ../../mod/api.php:105 ../../mod/dfrn_request.php:835
#: ../../mod/settings.php:892 ../../mod/settings.php:898
#: ../../mod/settings.php:906 ../../mod/settings.php:910
#: ../../mod/settings.php:915 ../../mod/settings.php:921
#: ../../mod/settings.php:927 ../../mod/settings.php:933
#: ../../mod/settings.php:963 ../../mod/settings.php:964
#: ../../mod/settings.php:965 ../../mod/settings.php:966
#: ../../mod/settings.php:967 ../../mod/register.php:236
#: ../../mod/profiles.php:563
msgid "Yes"
msgstr "Ja"
#: ../../mod/api.php:106 ../../mod/dfrn_request.php:834
#: ../../mod/settings.php:874 ../../mod/settings.php:880
#: ../../mod/settings.php:888 ../../mod/settings.php:892
#: ../../mod/settings.php:897 ../../mod/settings.php:903
#: ../../mod/settings.php:909 ../../mod/settings.php:915
#: ../../mod/settings.php:945 ../../mod/settings.php:946
#: ../../mod/settings.php:947 ../../mod/settings.php:948
#: ../../mod/settings.php:949 ../../mod/register.php:235
#: ../../mod/api.php:106 ../../mod/dfrn_request.php:836
#: ../../mod/settings.php:892 ../../mod/settings.php:898
#: ../../mod/settings.php:906 ../../mod/settings.php:910
#: ../../mod/settings.php:915 ../../mod/settings.php:921
#: ../../mod/settings.php:927 ../../mod/settings.php:933
#: ../../mod/settings.php:963 ../../mod/settings.php:964
#: ../../mod/settings.php:965 ../../mod/settings.php:966
#: ../../mod/settings.php:967 ../../mod/register.php:237
#: ../../mod/profiles.php:564
msgid "No"
msgstr "Nein"
#: ../../mod/photos.php:46 ../../boot.php:1652
#: ../../mod/photos.php:46 ../../boot.php:1676
msgid "Photo Albums"
msgstr "Fotoalben"
#: ../../mod/photos.php:54 ../../mod/photos.php:137 ../../mod/photos.php:952
#: ../../mod/photos.php:1034 ../../mod/photos.php:1049
#: ../../mod/photos.php:1477 ../../mod/photos.php:1489
#: ../../mod/photos.php:54 ../../mod/photos.php:149 ../../mod/photos.php:986
#: ../../mod/photos.php:1068 ../../mod/photos.php:1083
#: ../../mod/photos.php:1511 ../../mod/photos.php:1523
#: ../../addon/communityhome/communityhome.php:110
#: ../../view/theme/diabook/theme.php:598
msgid "Contact Photos"
msgstr "Kontaktbilder"
#: ../../mod/photos.php:61 ../../mod/photos.php:1059 ../../mod/photos.php:1527
#: ../../mod/photos.php:61 ../../mod/photos.php:1093 ../../mod/photos.php:1561
msgid "Upload New Photos"
msgstr "Weitere Fotos hochladen"
@ -406,247 +407,247 @@ msgstr "Weitere Fotos hochladen"
msgid "everybody"
msgstr "jeder"
#: ../../mod/photos.php:126
#: ../../mod/photos.php:138
msgid "Contact information unavailable"
msgstr "Kontaktinformationen nicht verfügbar"
#: ../../mod/photos.php:137 ../../mod/photos.php:641 ../../mod/photos.php:1034
#: ../../mod/photos.php:1049 ../../mod/profile_photo.php:60
#: ../../mod/photos.php:149 ../../mod/photos.php:653 ../../mod/photos.php:1068
#: ../../mod/photos.php:1083 ../../mod/profile_photo.php:60
#: ../../mod/profile_photo.php:67 ../../mod/profile_photo.php:74
#: ../../mod/profile_photo.php:177 ../../mod/profile_photo.php:261
#: ../../mod/profile_photo.php:270
#: ../../addon/communityhome/communityhome.php:111
#: ../../view/theme/diabook/theme.php:599 ../../include/user.php:304
#: ../../include/user.php:311 ../../include/user.php:318
#: ../../view/theme/diabook/theme.php:599 ../../include/user.php:318
#: ../../include/user.php:325 ../../include/user.php:332
msgid "Profile Photos"
msgstr "Profilbilder"
#: ../../mod/photos.php:147
#: ../../mod/photos.php:159
msgid "Album not found."
msgstr "Album nicht gefunden."
#: ../../mod/photos.php:165 ../../mod/photos.php:1043
#: ../../mod/photos.php:177 ../../mod/photos.php:1077
msgid "Delete Album"
msgstr "Album löschen"
#: ../../mod/photos.php:228 ../../mod/photos.php:1286
#: ../../mod/photos.php:240 ../../mod/photos.php:1320
msgid "Delete Photo"
msgstr "Foto löschen"
#: ../../mod/photos.php:572
#: ../../mod/photos.php:584
msgid "was tagged in a"
msgstr "wurde getaggt in einem"
#: ../../mod/photos.php:572 ../../mod/like.php:145 ../../mod/tagger.php:70
#: ../../mod/photos.php:584 ../../mod/like.php:145 ../../mod/tagger.php:62
#: ../../addon/communityhome/communityhome.php:163
#: ../../view/theme/diabook/theme.php:570 ../../include/text.php:1399
#: ../../include/diaspora.php:1824 ../../include/conversation.php:114
#: ../../include/conversation.php:244
#: ../../include/diaspora.php:1824 ../../include/conversation.php:125
#: ../../include/conversation.php:255
msgid "photo"
msgstr "Foto"
#: ../../mod/photos.php:572
#: ../../mod/photos.php:584
msgid "by"
msgstr "von"
#: ../../mod/photos.php:677 ../../addon/js_upload/js_upload.php:315
#: ../../mod/photos.php:689 ../../addon/js_upload/js_upload.php:315
msgid "Image exceeds size limit of "
msgstr "Die Bildgröße übersteigt das Limit von "
#: ../../mod/photos.php:685
#: ../../mod/photos.php:697
msgid "Image file is empty."
msgstr "Bilddatei ist leer."
#: ../../mod/photos.php:717 ../../mod/profile_photo.php:126
#: ../../mod/wall_upload.php:99
#: ../../mod/photos.php:729 ../../mod/profile_photo.php:126
#: ../../mod/wall_upload.php:110
msgid "Unable to process image."
msgstr "Konnte das Bild nicht bearbeiten."
#: ../../mod/photos.php:744 ../../mod/profile_photo.php:266
#: ../../mod/wall_upload.php:125
#: ../../mod/photos.php:756 ../../mod/profile_photo.php:266
#: ../../mod/wall_upload.php:136
msgid "Image upload failed."
msgstr "Hochladen des Bildes gescheitert."
#: ../../mod/photos.php:830 ../../mod/community.php:16
#: ../../mod/dfrn_request.php:759 ../../mod/viewcontacts.php:17
#: ../../mod/display.php:7 ../../mod/search.php:71 ../../mod/directory.php:29
#: ../../mod/photos.php:842 ../../mod/community.php:18
#: ../../mod/dfrn_request.php:760 ../../mod/viewcontacts.php:17
#: ../../mod/display.php:7 ../../mod/search.php:73 ../../mod/directory.php:31
msgid "Public access denied."
msgstr "Öffentlicher Zugriff verweigert."
#: ../../mod/photos.php:840
#: ../../mod/photos.php:852
msgid "No photos selected"
msgstr "Keine Bilder ausgewählt"
#: ../../mod/photos.php:919
#: ../../mod/photos.php:953
msgid "Access to this item is restricted."
msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt."
#: ../../mod/photos.php:981
#: ../../mod/photos.php:1015
#, php-format
msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
msgstr "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers."
#: ../../mod/photos.php:984
#: ../../mod/photos.php:1018
#, php-format
msgid "You have used %1$.2f Mbytes of photo storage."
msgstr "Du verwendest %1$.2f Mbyte des Foto-Speichers."
#: ../../mod/photos.php:990
#: ../../mod/photos.php:1024
msgid "Upload Photos"
msgstr "Bilder hochladen"
#: ../../mod/photos.php:994 ../../mod/photos.php:1038
#: ../../mod/photos.php:1028 ../../mod/photos.php:1072
msgid "New album name: "
msgstr "Name des neuen Albums: "
#: ../../mod/photos.php:995
#: ../../mod/photos.php:1029
msgid "or existing album name: "
msgstr "oder existierender Albumname: "
#: ../../mod/photos.php:996
#: ../../mod/photos.php:1030
msgid "Do not show a status post for this upload"
msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen"
#: ../../mod/photos.php:998 ../../mod/photos.php:1281
#: ../../mod/photos.php:1032 ../../mod/photos.php:1315
msgid "Permissions"
msgstr "Berechtigungen"
#: ../../mod/photos.php:1053
#: ../../mod/photos.php:1087
msgid "Edit Album"
msgstr "Album bearbeiten"
#: ../../mod/photos.php:1077 ../../mod/photos.php:1510
#: ../../mod/photos.php:1111 ../../mod/photos.php:1544
msgid "View Photo"
msgstr "Fotos betrachten"
#: ../../mod/photos.php:1112
#: ../../mod/photos.php:1146
msgid "Permission denied. Access to this item may be restricted."
msgstr "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein."
#: ../../mod/photos.php:1114
#: ../../mod/photos.php:1148
msgid "Photo not available"
msgstr "Foto nicht verfügbar"
#: ../../mod/photos.php:1164
#: ../../mod/photos.php:1198
msgid "View photo"
msgstr "Fotos ansehen"
#: ../../mod/photos.php:1164
#: ../../mod/photos.php:1198
msgid "Edit photo"
msgstr "Foto bearbeiten"
#: ../../mod/photos.php:1165
#: ../../mod/photos.php:1199
msgid "Use as profile photo"
msgstr "Als Profilbild verwenden"
#: ../../mod/photos.php:1171 ../../mod/content.php:601
#: ../../include/conversation.php:395
#: ../../mod/photos.php:1205 ../../mod/content.php:601
#: ../../include/conversation.php:428
msgid "Private Message"
msgstr "Private Nachricht"
#: ../../mod/photos.php:1190
#: ../../mod/photos.php:1224
msgid "View Full Size"
msgstr "Betrachte Originalgröße"
#: ../../mod/photos.php:1258
#: ../../mod/photos.php:1292
msgid "Tags: "
msgstr "Tags: "
#: ../../mod/photos.php:1261
#: ../../mod/photos.php:1295
msgid "[Remove any tag]"
msgstr "[Tag entfernen]"
#: ../../mod/photos.php:1271
#: ../../mod/photos.php:1305
msgid "Rotate CW (right)"
msgstr "Drehen US (rechts)"
#: ../../mod/photos.php:1272
#: ../../mod/photos.php:1306
msgid "Rotate CCW (left)"
msgstr "Drehen EUS (links)"
#: ../../mod/photos.php:1274
#: ../../mod/photos.php:1308
msgid "New album name"
msgstr "Name des neuen Albums"
#: ../../mod/photos.php:1277
#: ../../mod/photos.php:1311
msgid "Caption"
msgstr "Bildunterschrift"
#: ../../mod/photos.php:1279
#: ../../mod/photos.php:1313
msgid "Add a Tag"
msgstr "Tag hinzufügen"
#: ../../mod/photos.php:1283
#: ../../mod/photos.php:1317
msgid ""
"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
#: ../../mod/photos.php:1303 ../../mod/content.php:665
#: ../../include/conversation.php:534
#: ../../mod/photos.php:1337 ../../mod/content.php:665
#: ../../include/conversation.php:565
msgid "I like this (toggle)"
msgstr "Ich mag das (toggle)"
#: ../../mod/photos.php:1304 ../../mod/content.php:666
#: ../../include/conversation.php:535
#: ../../mod/photos.php:1338 ../../mod/content.php:666
#: ../../include/conversation.php:566
msgid "I don't like this (toggle)"
msgstr "Ich mag das nicht (toggle)"
#: ../../mod/photos.php:1305 ../../include/conversation.php:1164
#: ../../mod/photos.php:1339 ../../include/conversation.php:1195
msgid "Share"
msgstr "Teilen"
#: ../../mod/photos.php:1306 ../../mod/editpost.php:112
#: ../../mod/photos.php:1340 ../../mod/editpost.php:112
#: ../../mod/content.php:482 ../../mod/content.php:843
#: ../../mod/wallmessage.php:152 ../../mod/message.php:293
#: ../../mod/message.php:479 ../../include/conversation.php:628
#: ../../include/conversation.php:860 ../../include/conversation.php:1183
#: ../../mod/message.php:481 ../../include/conversation.php:659
#: ../../include/conversation.php:891 ../../include/conversation.php:1214
msgid "Please wait"
msgstr "Bitte warten"
#: ../../mod/photos.php:1322 ../../mod/photos.php:1363
#: ../../mod/photos.php:1395 ../../mod/content.php:688
#: ../../include/conversation.php:557
#: ../../mod/photos.php:1356 ../../mod/photos.php:1397
#: ../../mod/photos.php:1429 ../../mod/content.php:688
#: ../../include/conversation.php:588
msgid "This is you"
msgstr "Das bist du"
#: ../../mod/photos.php:1324 ../../mod/photos.php:1365
#: ../../mod/photos.php:1397 ../../mod/content.php:690
#: ../../include/conversation.php:559 ../../boot.php:583
#: ../../mod/photos.php:1358 ../../mod/photos.php:1399
#: ../../mod/photos.php:1431 ../../mod/content.php:690
#: ../../include/conversation.php:590 ../../boot.php:574
msgid "Comment"
msgstr "Kommentar"
#: ../../mod/photos.php:1326 ../../mod/editpost.php:133
#: ../../mod/content.php:700 ../../include/conversation.php:569
#: ../../include/conversation.php:1201
#: ../../mod/photos.php:1360 ../../mod/editpost.php:133
#: ../../mod/content.php:700 ../../include/conversation.php:600
#: ../../include/conversation.php:1232
msgid "Preview"
msgstr "Vorschau"
#: ../../mod/photos.php:1426 ../../mod/content.php:439
#: ../../mod/content.php:721 ../../mod/settings.php:600
#: ../../mod/settings.php:689 ../../mod/group.php:168 ../../mod/admin.php:683
#: ../../include/conversation.php:409 ../../include/conversation.php:816
#: ../../mod/photos.php:1460 ../../mod/content.php:439
#: ../../mod/content.php:721 ../../mod/settings.php:606
#: ../../mod/settings.php:695 ../../mod/group.php:168 ../../mod/admin.php:694
#: ../../include/conversation.php:440 ../../include/conversation.php:847
msgid "Delete"
msgstr "Löschen"
#: ../../mod/photos.php:1516
#: ../../mod/photos.php:1550
msgid "View Album"
msgstr "Album betrachten"
#: ../../mod/photos.php:1525
#: ../../mod/photos.php:1559
msgid "Recent Photos"
msgstr "Neueste Fotos"
#: ../../mod/community.php:21
#: ../../mod/community.php:23
msgid "Not available."
msgstr "Nicht verfügbar."
#: ../../mod/community.php:30 ../../view/theme/diabook/theme.php:133
#: ../../mod/community.php:32 ../../view/theme/diabook/theme.php:133
#: ../../include/nav.php:101
msgid "Community"
msgstr "Gemeinschaft"
#: ../../mod/community.php:61 ../../mod/community.php:86
#: ../../mod/search.php:146 ../../mod/search.php:172
#: ../../mod/community.php:63 ../../mod/community.php:88
#: ../../mod/search.php:148 ../../mod/search.php:174
msgid "No results."
msgstr "Keine Ergebnisse."
@ -690,28 +691,28 @@ msgstr "Beitrag nicht gefunden"
msgid "Edit post"
msgstr "Beitrag bearbeiten"
#: ../../mod/editpost.php:88 ../../include/conversation.php:1150
#: ../../mod/editpost.php:88 ../../include/conversation.php:1181
msgid "Post to Email"
msgstr "An E-Mail senden"
#: ../../mod/editpost.php:103 ../../mod/content.php:708
#: ../../mod/settings.php:599 ../../include/conversation.php:400
#: ../../mod/settings.php:605 ../../include/conversation.php:433
msgid "Edit"
msgstr "Bearbeiten"
#: ../../mod/editpost.php:104 ../../mod/wallmessage.php:150
#: ../../mod/message.php:291 ../../mod/message.php:476
#: ../../include/conversation.php:1165
#: ../../mod/message.php:291 ../../mod/message.php:478
#: ../../include/conversation.php:1196
msgid "Upload photo"
msgstr "Foto hochladen"
#: ../../mod/editpost.php:105 ../../include/conversation.php:1167
#: ../../mod/editpost.php:105 ../../include/conversation.php:1198
msgid "Attach file"
msgstr "Datei anhängen"
#: ../../mod/editpost.php:106 ../../mod/wallmessage.php:151
#: ../../mod/message.php:292 ../../mod/message.php:477
#: ../../include/conversation.php:1169
#: ../../mod/message.php:292 ../../mod/message.php:479
#: ../../include/conversation.php:1200
msgid "Insert web link"
msgstr "einen Link einfügen"
@ -727,35 +728,35 @@ msgstr "Vorbis [.ogg] Video einfügen"
msgid "Insert Vorbis [.ogg] audio"
msgstr "Vorbis [.ogg] Audio einfügen"
#: ../../mod/editpost.php:110 ../../include/conversation.php:1175
#: ../../mod/editpost.php:110 ../../include/conversation.php:1206
msgid "Set your location"
msgstr "Deinen Standort festlegen"
#: ../../mod/editpost.php:111 ../../include/conversation.php:1177
#: ../../mod/editpost.php:111 ../../include/conversation.php:1208
msgid "Clear browser location"
msgstr "Browser-Standort leeren"
#: ../../mod/editpost.php:113 ../../include/conversation.php:1184
#: ../../mod/editpost.php:113 ../../include/conversation.php:1215
msgid "Permission settings"
msgstr "Berechtigungseinstellungen"
#: ../../mod/editpost.php:121 ../../include/conversation.php:1193
#: ../../mod/editpost.php:121 ../../include/conversation.php:1224
msgid "CC: email addresses"
msgstr "Cc:-E-Mail-Addressen"
#: ../../mod/editpost.php:122 ../../include/conversation.php:1194
#: ../../mod/editpost.php:122 ../../include/conversation.php:1225
msgid "Public post"
msgstr "Öffentlicher Beitrag"
#: ../../mod/editpost.php:125 ../../include/conversation.php:1180
#: ../../mod/editpost.php:125 ../../include/conversation.php:1211
msgid "Set title"
msgstr "Titel setzen"
#: ../../mod/editpost.php:127 ../../include/conversation.php:1182
#: ../../mod/editpost.php:127 ../../include/conversation.php:1213
msgid "Categories (comma-separated list)"
msgstr "Kategorien (kommasepariert)"
#: ../../mod/editpost.php:128 ../../include/conversation.php:1196
#: ../../mod/editpost.php:128 ../../include/conversation.php:1227
msgid "Example: bob@example.com, mary@example.com"
msgstr "Z.B.: bob@example.com, mary@example.com"
@ -876,75 +877,75 @@ msgstr "Bitte bestätige deine Kontaktanfrage bei %s."
msgid "Confirm"
msgstr "Bestätigen"
#: ../../mod/dfrn_request.php:715 ../../include/items.php:3210
#: ../../mod/dfrn_request.php:715 ../../include/items.php:3213
msgid "[Name Withheld]"
msgstr "[Name unterdrückt]"
#: ../../mod/dfrn_request.php:808
#: ../../mod/dfrn_request.php:810
msgid ""
"Please enter your 'Identity Address' from one of the following supported "
"communications networks:"
msgstr "Bitte gib die Adresse deines Profils in einem der unterstützten sozialen Netzwerke an:"
#: ../../mod/dfrn_request.php:824
#: ../../mod/dfrn_request.php:826
msgid "<strike>Connect as an email follower</strike> (Coming soon)"
msgstr "<strike>Als E-Mail-Kontakt verbinden</strike> (In Kürze verfügbar)"
#: ../../mod/dfrn_request.php:826
#: ../../mod/dfrn_request.php:828
msgid ""
"If you are not yet a member of the free social web, <a "
"href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public"
" Friendica site and join us today</a>."
msgstr "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, <a href=\"http://dir.friendica.com/siteinfo\">folge diesem Link</a> um einen öffentlichen Friendica-Server zu finden und beizutreten."
#: ../../mod/dfrn_request.php:829
#: ../../mod/dfrn_request.php:831
msgid "Friend/Connection Request"
msgstr "Freundschafts-/Kontaktanfrage"
#: ../../mod/dfrn_request.php:830
#: ../../mod/dfrn_request.php:832
msgid ""
"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
"testuser@identi.ca"
msgstr "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
#: ../../mod/dfrn_request.php:831
#: ../../mod/dfrn_request.php:833
msgid "Please answer the following:"
msgstr "Bitte beantworte Folgendes:"
#: ../../mod/dfrn_request.php:832
#: ../../mod/dfrn_request.php:834
#, php-format
msgid "Does %s know you?"
msgstr "Kennt %s dich?"
#: ../../mod/dfrn_request.php:835
#: ../../mod/dfrn_request.php:837
msgid "Add a personal note:"
msgstr "Eine persönliche Notiz beifügen:"
#: ../../mod/dfrn_request.php:837 ../../include/contact_selectors.php:76
#: ../../mod/dfrn_request.php:839 ../../include/contact_selectors.php:76
msgid "Friendica"
msgstr "Friendica"
#: ../../mod/dfrn_request.php:838
#: ../../mod/dfrn_request.php:840
msgid "StatusNet/Federated Social Web"
msgstr "StatusNet/Federated Social Web"
#: ../../mod/dfrn_request.php:839 ../../mod/settings.php:634
#: ../../mod/dfrn_request.php:841 ../../mod/settings.php:640
#: ../../include/contact_selectors.php:80
msgid "Diaspora"
msgstr "Diaspora"
#: ../../mod/dfrn_request.php:840
#: ../../mod/dfrn_request.php:842
#, php-format
msgid ""
" - please do not use this form. Instead, enter %s into your Diaspora search"
" bar."
msgstr " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in deiner Diaspora Suchleiste."
#: ../../mod/dfrn_request.php:841
#: ../../mod/dfrn_request.php:843
msgid "Your Identity Address:"
msgstr "Adresse deines Profils:"
#: ../../mod/dfrn_request.php:844
#: ../../mod/dfrn_request.php:846
msgid "Submit Request"
msgstr "Anfrage abschicken"
@ -971,7 +972,7 @@ msgid ""
msgstr "Möglicherweise musst du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren."
#: ../../mod/install.php:139 ../../mod/install.php:204
#: ../../mod/install.php:489
#: ../../mod/install.php:488
msgid "Please see the file \"INSTALL.txt\"."
msgstr "Lies bitte die \"INSTALL.txt\"."
@ -1188,22 +1189,22 @@ msgid ""
"server root."
msgstr "Die Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis deiner Friendica-Installation zu erzeugen."
#: ../../mod/install.php:476
#: ../../mod/install.php:475
msgid "Errors encountered creating database tables."
msgstr "Fehler aufgetreten während der Erzeugung der Datenbanktabellen."
#: ../../mod/install.php:487
#: ../../mod/install.php:486
msgid "<h1>What next</h1>"
msgstr "<h1>Wie geht es weiter?</h1>"
#: ../../mod/install.php:488
#: ../../mod/install.php:487
msgid ""
"IMPORTANT: You will need to [manually] setup a scheduled task for the "
"poller."
msgstr "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten."
#: ../../mod/localtime.php:12 ../../include/event.php:11
#: ../../include/bb2diaspora.php:433
#: ../../include/bb2diaspora.php:390
msgid "l F d, Y \\@ g:i A"
msgstr "l F d, Y \\@ g:i A"
@ -1269,7 +1270,7 @@ msgid "is interested in:"
msgstr "ist interessiert an:"
#: ../../mod/match.php:58 ../../mod/suggest.php:59
#: ../../include/contact_widgets.php:9 ../../boot.php:1152
#: ../../include/contact_widgets.php:9 ../../boot.php:1164
msgid "Connect"
msgstr "Verbinden"
@ -1298,28 +1299,28 @@ msgid "Group: "
msgstr "Gruppe: "
#: ../../mod/content.php:438 ../../mod/content.php:720
#: ../../include/conversation.php:408 ../../include/conversation.php:815
#: ../../include/conversation.php:439 ../../include/conversation.php:846
msgid "Select"
msgstr "Auswählen"
#: ../../mod/content.php:455 ../../mod/content.php:813
#: ../../mod/content.php:814 ../../include/conversation.php:596
#: ../../include/conversation.php:597 ../../include/conversation.php:832
#: ../../mod/content.php:814 ../../include/conversation.php:627
#: ../../include/conversation.php:628 ../../include/conversation.php:863
#, php-format
msgid "View %s's profile @ %s"
msgstr "Das Profil von %s auf %s betrachten."
#: ../../mod/content.php:465 ../../mod/content.php:825
#: ../../include/conversation.php:610 ../../include/conversation.php:843
#: ../../include/conversation.php:641 ../../include/conversation.php:874
#, php-format
msgid "%s from %s"
msgstr "%s von %s"
#: ../../mod/content.php:480 ../../include/conversation.php:858
#: ../../mod/content.php:480 ../../include/conversation.php:889
msgid "View in context"
msgstr "Im Zusammenhang betrachten"
#: ../../mod/content.php:586 ../../include/conversation.php:637
#: ../../mod/content.php:586 ../../include/conversation.php:668
#, php-format
msgid "%d comment"
msgid_plural "%d comments"
@ -1328,96 +1329,96 @@ msgstr[1] "%d Kommentare"
#: ../../mod/content.php:587 ../../addon/page/page.php:76
#: ../../addon/page/page.php:110 ../../addon/showmore/showmore.php:119
#: ../../include/contact_widgets.php:188 ../../include/conversation.php:638
#: ../../boot.php:584
#: ../../include/contact_widgets.php:195 ../../include/conversation.php:669
#: ../../boot.php:575
msgid "show more"
msgstr "mehr anzeigen"
#: ../../mod/content.php:665 ../../include/conversation.php:534
#: ../../mod/content.php:665 ../../include/conversation.php:565
msgid "like"
msgstr "mag ich"
#: ../../mod/content.php:666 ../../include/conversation.php:535
#: ../../mod/content.php:666 ../../include/conversation.php:566
msgid "dislike"
msgstr "mag ich nicht"
#: ../../mod/content.php:668 ../../include/conversation.php:537
#: ../../mod/content.php:668 ../../include/conversation.php:568
msgid "Share this"
msgstr "Weitersagen"
#: ../../mod/content.php:668 ../../include/conversation.php:537
#: ../../mod/content.php:668 ../../include/conversation.php:568
msgid "share"
msgstr "Teilen"
#: ../../mod/content.php:692 ../../include/conversation.php:561
#: ../../mod/content.php:692 ../../include/conversation.php:592
msgid "Bold"
msgstr "Fett"
#: ../../mod/content.php:693 ../../include/conversation.php:562
#: ../../mod/content.php:693 ../../include/conversation.php:593
msgid "Italic"
msgstr "Kursiv"
#: ../../mod/content.php:694 ../../include/conversation.php:563
#: ../../mod/content.php:694 ../../include/conversation.php:594
msgid "Underline"
msgstr "Unterstrichen"
#: ../../mod/content.php:695 ../../include/conversation.php:564
#: ../../mod/content.php:695 ../../include/conversation.php:595
msgid "Quote"
msgstr "Zitat"
#: ../../mod/content.php:696 ../../include/conversation.php:565
#: ../../mod/content.php:696 ../../include/conversation.php:596
msgid "Code"
msgstr "Code"
#: ../../mod/content.php:697 ../../include/conversation.php:566
#: ../../mod/content.php:697 ../../include/conversation.php:597
msgid "Image"
msgstr "Bild"
#: ../../mod/content.php:698 ../../include/conversation.php:567
#: ../../mod/content.php:698 ../../include/conversation.php:598
msgid "Link"
msgstr "Verweis"
#: ../../mod/content.php:699 ../../include/conversation.php:568
#: ../../mod/content.php:699 ../../include/conversation.php:599
msgid "Video"
msgstr "Video"
#: ../../mod/content.php:733 ../../include/conversation.php:498
#: ../../mod/content.php:733 ../../include/conversation.php:529
msgid "add star"
msgstr "markieren"
#: ../../mod/content.php:734 ../../include/conversation.php:499
#: ../../mod/content.php:734 ../../include/conversation.php:530
msgid "remove star"
msgstr "Markierung entfernen"
#: ../../mod/content.php:735 ../../include/conversation.php:500
#: ../../mod/content.php:735 ../../include/conversation.php:531
msgid "toggle star status"
msgstr "Markierung umschalten"
#: ../../mod/content.php:738 ../../include/conversation.php:503
#: ../../mod/content.php:738 ../../include/conversation.php:534
msgid "starred"
msgstr "markiert"
#: ../../mod/content.php:739 ../../include/conversation.php:504
#: ../../mod/content.php:739 ../../include/conversation.php:535
msgid "add tag"
msgstr "Tag hinzufügen"
#: ../../mod/content.php:743 ../../include/conversation.php:412
#: ../../mod/content.php:743 ../../include/conversation.php:443
msgid "save to folder"
msgstr "In Ordner speichern"
#: ../../mod/content.php:815 ../../include/conversation.php:598
#: ../../mod/content.php:815 ../../include/conversation.php:629
msgid "to"
msgstr "zu"
#: ../../mod/content.php:816 ../../include/conversation.php:599
#: ../../mod/content.php:816 ../../include/conversation.php:630
msgid "Wall-to-Wall"
msgstr "Wall-to-Wall"
#: ../../mod/content.php:817 ../../include/conversation.php:600
#: ../../mod/content.php:817 ../../include/conversation.php:631
msgid "via Wall-To-Wall:"
msgstr "via Wall-To-Wall:"
#: ../../mod/home.php:26 ../../addon/communityhome/communityhome.php:179
#: ../../mod/home.php:28 ../../addon/communityhome/communityhome.php:179
#, php-format
msgid "Welcome to %s"
msgstr "Willkommen zu %s"
@ -1498,7 +1499,7 @@ msgid "if applicable"
msgstr "falls anwendbar"
#: ../../mod/notifications.php:157 ../../mod/notifications.php:204
#: ../../mod/admin.php:681
#: ../../mod/admin.php:692
msgid "Approve"
msgstr "Genehmigen"
@ -1687,7 +1688,7 @@ msgstr "Kontakte vorschlagen"
msgid "Network type: %s"
msgstr "Netzwerktyp: %s"
#: ../../mod/contacts.php:298 ../../include/contact_widgets.php:183
#: ../../mod/contacts.php:298 ../../include/contact_widgets.php:190
#, php-format
msgid "%d contact in common"
msgid_plural "%d contacts in common"
@ -1699,12 +1700,12 @@ msgid "View all contacts"
msgstr "Alle Kontakte anzeigen"
#: ../../mod/contacts.php:308 ../../mod/contacts.php:367
#: ../../mod/admin.php:685
#: ../../mod/admin.php:696
msgid "Unblock"
msgstr "Entsperren"
#: ../../mod/contacts.php:308 ../../mod/contacts.php:367
#: ../../mod/admin.php:684
#: ../../mod/admin.php:695
msgid "Block"
msgstr "Sperren"
@ -1801,7 +1802,7 @@ msgstr "letzte Aktualisierung:"
msgid "Update public posts"
msgstr "Öffentliche Beiträge aktualisieren"
#: ../../mod/contacts.php:364 ../../mod/admin.php:1156
#: ../../mod/contacts.php:364 ../../mod/admin.php:1167
msgid "Update now"
msgstr "Jetzt aktualisieren"
@ -1903,11 +1904,11 @@ msgstr "Kontakte"
msgid "Search your contacts"
msgstr "Suche in deinen Kontakten"
#: ../../mod/contacts.php:569 ../../mod/directory.php:57
#: ../../mod/contacts.php:569 ../../mod/directory.php:59
msgid "Finding: "
msgstr "Funde: "
#: ../../mod/contacts.php:570 ../../mod/directory.php:59
#: ../../mod/contacts.php:570 ../../mod/directory.php:61
#: ../../include/contact_widgets.php:33
msgid "Find"
msgstr "Finde"
@ -1931,8 +1932,8 @@ msgstr "Anfrage zum Zurücksetzen des Passworts auf %s erhalten"
#: ../../addon/facebook/facebook.php:702
#: ../../addon/facebook/facebook.php:1200
#: ../../addon/public_server/public_server.php:62
#: ../../addon/testdrive/testdrive.php:67 ../../include/items.php:3219
#: ../../boot.php:797
#: ../../addon/testdrive/testdrive.php:67 ../../include/items.php:3222
#: ../../boot.php:788
msgid "Administrator"
msgstr "Administrator"
@ -1942,7 +1943,7 @@ msgid ""
"Password reset failed."
msgstr "Anfrage konnte nicht verifiziert werden. (Eventuell hast du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert."
#: ../../mod/lostpass.php:83 ../../boot.php:934
#: ../../mod/lostpass.php:83 ../../boot.php:925
msgid "Password Reset"
msgstr "Passwort zurücksetzen"
@ -2014,7 +2015,8 @@ msgstr "Persönliche Daten exportieren"
msgid "Remove account"
msgstr "Konto löschen"
#: ../../mod/settings.php:69 ../../mod/admin.php:771 ../../mod/admin.php:976
#: ../../mod/settings.php:69 ../../mod/newmember.php:22
#: ../../mod/admin.php:782 ../../mod/admin.php:987
#: ../../addon/dav/friendica/layout.fnk.php:225
#: ../../addon/mathjax/mathjax.php:36 ../../view/theme/diabook/theme.php:643
#: ../../view/theme/diabook/theme.php:773 ../../include/nav.php:137
@ -2025,7 +2027,7 @@ msgstr "Einstellungen"
msgid "Missing some important data!"
msgstr "Wichtige Daten fehlen!"
#: ../../mod/settings.php:116 ../../mod/settings.php:563
#: ../../mod/settings.php:116 ../../mod/settings.php:569
msgid "Update"
msgstr "Aktualisierungen"
@ -2037,47 +2039,47 @@ msgstr "Verbindung zum E-Mail-Konto mit den angegebenen Einstellungen nicht mög
msgid "Email settings updated."
msgstr "E-Mail Einstellungen bearbeitet."
#: ../../mod/settings.php:285
#: ../../mod/settings.php:290
msgid "Passwords do not match. Password unchanged."
msgstr "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert."
#: ../../mod/settings.php:290
#: ../../mod/settings.php:295
msgid "Empty passwords are not allowed. Password unchanged."
msgstr "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert."
#: ../../mod/settings.php:301
#: ../../mod/settings.php:306
msgid "Password changed."
msgstr "Passwort ändern."
#: ../../mod/settings.php:303
#: ../../mod/settings.php:308
msgid "Password update failed. Please try again."
msgstr "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal."
#: ../../mod/settings.php:368
#: ../../mod/settings.php:373
msgid " Please use a shorter name."
msgstr " Bitte verwende einen kürzeren Namen."
#: ../../mod/settings.php:370
#: ../../mod/settings.php:375
msgid " Name too short."
msgstr " Name ist zu kurz."
#: ../../mod/settings.php:376
#: ../../mod/settings.php:381
msgid " Not valid email."
msgstr " Keine gültige E-Mail."
#: ../../mod/settings.php:378
#: ../../mod/settings.php:383
msgid " Cannot change to that email."
msgstr "Ändern der E-Mail nicht möglich. "
#: ../../mod/settings.php:432
#: ../../mod/settings.php:437
msgid "Private forum has no privacy permissions. Using default privacy group."
msgstr "Für das private Forum sind keine Zugriffsrechte eingestellt. Die voreingestellte Gruppe für neue Kontakte wird benutzt."
#: ../../mod/settings.php:436
#: ../../mod/settings.php:441
msgid "Private forum has no privacy permissions and no default privacy group."
msgstr "Für das private Forum sind keine Zugriffsrechte eingestellt, und es gibt keine voreingestellte Gruppe für neue Kontakte."
#: ../../mod/settings.php:466 ../../addon/facebook/facebook.php:495
#: ../../mod/settings.php:471 ../../addon/facebook/facebook.php:495
#: ../../addon/impressum/impressum.php:77
#: ../../addon/openstreetmap/openstreetmap.php:80
#: ../../addon/mathjax/mathjax.php:66 ../../addon/piwik/piwik.php:105
@ -2085,445 +2087,453 @@ msgstr "Für das private Forum sind keine Zugriffsrechte eingestellt, und es gib
msgid "Settings updated."
msgstr "Einstellungen aktualisiert."
#: ../../mod/settings.php:536 ../../mod/settings.php:562
#: ../../mod/settings.php:598
#: ../../mod/settings.php:542 ../../mod/settings.php:568
#: ../../mod/settings.php:604
msgid "Add application"
msgstr "Programm hinzufügen"
#: ../../mod/settings.php:540 ../../mod/settings.php:566
#: ../../mod/settings.php:546 ../../mod/settings.php:572
#: ../../addon/statusnet/statusnet.php:570
msgid "Consumer Key"
msgstr "Consumer Key"
#: ../../mod/settings.php:541 ../../mod/settings.php:567
#: ../../mod/settings.php:547 ../../mod/settings.php:573
#: ../../addon/statusnet/statusnet.php:569
msgid "Consumer Secret"
msgstr "Consumer Secret"
#: ../../mod/settings.php:542 ../../mod/settings.php:568
#: ../../mod/settings.php:548 ../../mod/settings.php:574
msgid "Redirect"
msgstr "Umleiten"
#: ../../mod/settings.php:543 ../../mod/settings.php:569
#: ../../mod/settings.php:549 ../../mod/settings.php:575
msgid "Icon url"
msgstr "Icon URL"
#: ../../mod/settings.php:554
#: ../../mod/settings.php:560
msgid "You can't edit this application."
msgstr "Du kannst dieses Programm nicht bearbeiten."
#: ../../mod/settings.php:597
#: ../../mod/settings.php:603
msgid "Connected Apps"
msgstr "Verbundene Programme"
#: ../../mod/settings.php:601
#: ../../mod/settings.php:607
msgid "Client key starts with"
msgstr "Anwenderschlüssel beginnt mit"
#: ../../mod/settings.php:602
#: ../../mod/settings.php:608
msgid "No name"
msgstr "Kein Name"
#: ../../mod/settings.php:603
#: ../../mod/settings.php:609
msgid "Remove authorization"
msgstr "Autorisierung entziehen"
#: ../../mod/settings.php:614
#: ../../mod/settings.php:620
msgid "No Plugin settings configured"
msgstr "Keine Plugin-Einstellungen konfiguriert"
#: ../../mod/settings.php:622 ../../addon/widgets/widgets.php:123
#: ../../mod/settings.php:628 ../../addon/widgets/widgets.php:123
msgid "Plugin Settings"
msgstr "Plugin-Einstellungen"
#: ../../mod/settings.php:634 ../../mod/settings.php:635
#: ../../mod/settings.php:640 ../../mod/settings.php:641
#, php-format
msgid "Built-in support for %s connectivity is %s"
msgstr "Eingebaute Unterstützung für Verbindungen zu %s ist %s"
#: ../../mod/settings.php:634 ../../mod/settings.php:635
#: ../../mod/settings.php:640 ../../mod/settings.php:641
msgid "enabled"
msgstr "eingeschaltet"
#: ../../mod/settings.php:634 ../../mod/settings.php:635
#: ../../mod/settings.php:640 ../../mod/settings.php:641
msgid "disabled"
msgstr "ausgeschaltet"
#: ../../mod/settings.php:635
#: ../../mod/settings.php:641
msgid "StatusNet"
msgstr "StatusNet"
#: ../../mod/settings.php:667
#: ../../mod/settings.php:673
msgid "Email access is disabled on this site."
msgstr "Zugriff auf E-Mails für diese Seite deaktiviert."
#: ../../mod/settings.php:673
#: ../../mod/settings.php:679
msgid "Connector Settings"
msgstr "Verbindungs-Einstellungen"
#: ../../mod/settings.php:678
#: ../../mod/settings.php:684
msgid "Email/Mailbox Setup"
msgstr "E-Mail/Postfach-Einstellungen"
#: ../../mod/settings.php:679
#: ../../mod/settings.php:685
msgid ""
"If you wish to communicate with email contacts using this service "
"(optional), please specify how to connect to your mailbox."
msgstr "Wenn du mit E-Mail-Kontakten über diesen Service kommunizieren möchtest (optional), gib bitte die Einstellungen für dein Postfach an."
#: ../../mod/settings.php:680
#: ../../mod/settings.php:686
msgid "Last successful email check:"
msgstr "Letzter erfolgreicher E-Mail Check"
#: ../../mod/settings.php:682
#: ../../mod/settings.php:688
msgid "IMAP server name:"
msgstr "IMAP-Server-Name:"
#: ../../mod/settings.php:683
#: ../../mod/settings.php:689
msgid "IMAP port:"
msgstr "IMAP-Port:"
#: ../../mod/settings.php:684
#: ../../mod/settings.php:690
msgid "Security:"
msgstr "Sicherheit:"
#: ../../mod/settings.php:684 ../../mod/settings.php:689
#: ../../mod/settings.php:690 ../../mod/settings.php:695
#: ../../addon/dav/common/wdcal_edit.inc.php:191
msgid "None"
msgstr "Keine"
#: ../../mod/settings.php:685
#: ../../mod/settings.php:691
msgid "Email login name:"
msgstr "E-Mail-Login-Name:"
#: ../../mod/settings.php:686
#: ../../mod/settings.php:692
msgid "Email password:"
msgstr "E-Mail-Passwort:"
#: ../../mod/settings.php:687
#: ../../mod/settings.php:693
msgid "Reply-to address:"
msgstr "Reply-to Adresse:"
#: ../../mod/settings.php:688
#: ../../mod/settings.php:694
msgid "Send public posts to all email contacts:"
msgstr "Sende öffentliche Beiträge an alle E-Mail-Kontakte:"
#: ../../mod/settings.php:689
#: ../../mod/settings.php:695
msgid "Action after import:"
msgstr "Aktion nach Import:"
#: ../../mod/settings.php:689
#: ../../mod/settings.php:695
msgid "Mark as seen"
msgstr "Als gelesen markieren"
#: ../../mod/settings.php:689
#: ../../mod/settings.php:695
msgid "Move to folder"
msgstr "In einen Ordner verschieben"
#: ../../mod/settings.php:690
#: ../../mod/settings.php:696
msgid "Move to folder:"
msgstr "In diesen Ordner verschieben:"
#: ../../mod/settings.php:750
#: ../../mod/settings.php:727 ../../mod/admin.php:402
msgid "No special theme for mobile devices"
msgstr "Kein spezielles Theme für mobile Geräte verwenden."
#: ../../mod/settings.php:767
msgid "Display Settings"
msgstr "Anzeige-Einstellungen"
#: ../../mod/settings.php:756 ../../mod/settings.php:766
#: ../../mod/settings.php:773 ../../mod/settings.php:784
msgid "Display Theme:"
msgstr "Theme:"
#: ../../mod/settings.php:757
#: ../../mod/settings.php:774
msgid "Mobile Theme:"
msgstr "Mobiles Theme"
#: ../../mod/settings.php:775
msgid "Update browser every xx seconds"
msgstr "Browser alle xx Sekunden aktualisieren"
#: ../../mod/settings.php:757
#: ../../mod/settings.php:775
msgid "Minimum of 10 seconds, no maximum"
msgstr "Minimal 10 Sekunden, kein Maximum"
#: ../../mod/settings.php:758
msgid "Number of items to display on the network page:"
#: ../../mod/settings.php:776
msgid "Number of items to display per page:"
msgstr "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: "
#: ../../mod/settings.php:758
#: ../../mod/settings.php:776
msgid "Maximum of 100 items"
msgstr "Maximal 100 Beiträge"
#: ../../mod/settings.php:759
#: ../../mod/settings.php:777
msgid "Don't show emoticons"
msgstr "Keine Smilies anzeigen"
#: ../../mod/settings.php:835
#: ../../mod/settings.php:853
msgid "Normal Account Page"
msgstr "Normales Konto"
#: ../../mod/settings.php:836
#: ../../mod/settings.php:854
msgid "This account is a normal personal profile"
msgstr "Dieses Konto ist ein normales persönliches Profil"
#: ../../mod/settings.php:839
#: ../../mod/settings.php:857
msgid "Soapbox Page"
msgstr "Marktschreier-Konto"
#: ../../mod/settings.php:840
#: ../../mod/settings.php:858
msgid "Automatically approve all connection/friend requests as read-only fans"
msgstr "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert"
#: ../../mod/settings.php:843
#: ../../mod/settings.php:861
msgid "Community Forum/Celebrity Account"
msgstr "Forum/Promi-Konto"
#: ../../mod/settings.php:844
#: ../../mod/settings.php:862
msgid ""
"Automatically approve all connection/friend requests as read-write fans"
msgstr "Kontaktanfragen werden automatisch als Lese-und-Schreib-Fans akzeptiert"
#: ../../mod/settings.php:847
#: ../../mod/settings.php:865
msgid "Automatic Friend Page"
msgstr "Automatische Freunde Seite"
#: ../../mod/settings.php:848
#: ../../mod/settings.php:866
msgid "Automatically approve all connection/friend requests as friends"
msgstr "Kontaktanfragen werden automatisch als Freund akzeptiert"
#: ../../mod/settings.php:851
#: ../../mod/settings.php:869
msgid "Private Forum [Experimental]"
msgstr "Privates Forum [Versuchsstadium]"
#: ../../mod/settings.php:852
#: ../../mod/settings.php:870
msgid "Private forum - approved members only"
msgstr "Privates Forum, nur für Mitglieder"
#: ../../mod/settings.php:864
#: ../../mod/settings.php:882
msgid "OpenID:"
msgstr "OpenID:"
#: ../../mod/settings.php:864
#: ../../mod/settings.php:882
msgid "(Optional) Allow this OpenID to login to this account."
msgstr "(Optional) Erlaube die Anmeldung für dieses Konto mit dieser OpenID."
#: ../../mod/settings.php:874
#: ../../mod/settings.php:892
msgid "Publish your default profile in your local site directory?"
msgstr "Darf dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?"
#: ../../mod/settings.php:880
#: ../../mod/settings.php:898
msgid "Publish your default profile in the global social directory?"
msgstr "Darf dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?"
#: ../../mod/settings.php:888
#: ../../mod/settings.php:906
msgid "Hide your contact/friend list from viewers of your default profile?"
msgstr "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?"
#: ../../mod/settings.php:892
#: ../../mod/settings.php:910
msgid "Hide your profile details from unknown viewers?"
msgstr "Profil-Details vor unbekannten Betrachtern verbergen?"
#: ../../mod/settings.php:897
#: ../../mod/settings.php:915
msgid "Allow friends to post to your profile page?"
msgstr "Dürfen deine Kontakte auf deine Pinnwand schreiben?"
#: ../../mod/settings.php:903
#: ../../mod/settings.php:921
msgid "Allow friends to tag your posts?"
msgstr "Dürfen deine Kontakte deine Beiträge mit Schlagwörtern versehen?"
#: ../../mod/settings.php:909
#: ../../mod/settings.php:927
msgid "Allow us to suggest you as a potential friend to new members?"
msgstr "Dürfen wir dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?"
#: ../../mod/settings.php:915
#: ../../mod/settings.php:933
msgid "Permit unknown people to send you private mail?"
msgstr "Dürfen dir Unbekannte private Nachrichten schicken?"
#: ../../mod/settings.php:923
#: ../../mod/settings.php:941
msgid "Profile is <strong>not published</strong>."
msgstr "Profil ist <strong>nicht veröffentlicht</strong>."
#: ../../mod/settings.php:926 ../../mod/profile_photo.php:214
#: ../../mod/settings.php:944 ../../mod/profile_photo.php:214
msgid "or"
msgstr "oder"
#: ../../mod/settings.php:931
#: ../../mod/settings.php:949
msgid "Your Identity Address is"
msgstr "Die Adresse deines Profils lautet:"
#: ../../mod/settings.php:942
#: ../../mod/settings.php:960
msgid "Automatically expire posts after this many days:"
msgstr "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:"
#: ../../mod/settings.php:942
#: ../../mod/settings.php:960
msgid "If empty, posts will not expire. Expired posts will be deleted"
msgstr "Wenn leer verfallen Beiträge nie automatisch. Verfallene Beiträge werden gelöscht."
#: ../../mod/settings.php:943
#: ../../mod/settings.php:961
msgid "Advanced expiration settings"
msgstr "Erweiterte Verfallseinstellungen"
#: ../../mod/settings.php:944
#: ../../mod/settings.php:962
msgid "Advanced Expiration"
msgstr "Erweitertes Verfallen"
#: ../../mod/settings.php:945
#: ../../mod/settings.php:963
msgid "Expire posts:"
msgstr "Beiträge verfallen lassen:"
#: ../../mod/settings.php:946
#: ../../mod/settings.php:964
msgid "Expire personal notes:"
msgstr "Persönliche Notizen verfallen lassen:"
#: ../../mod/settings.php:947
#: ../../mod/settings.php:965
msgid "Expire starred posts:"
msgstr "Markierte Beiträge verfallen lassen:"
#: ../../mod/settings.php:948
#: ../../mod/settings.php:966
msgid "Expire photos:"
msgstr "Fotos verfallen lassen:"
#: ../../mod/settings.php:949
#: ../../mod/settings.php:967
msgid "Only expire posts by others:"
msgstr "Nur Beiträge anderer verfallen:"
#: ../../mod/settings.php:956
#: ../../mod/settings.php:974
msgid "Account Settings"
msgstr "Kontoeinstellungen"
#: ../../mod/settings.php:964
#: ../../mod/settings.php:982
msgid "Password Settings"
msgstr "Passwort-Einstellungen"
#: ../../mod/settings.php:965
#: ../../mod/settings.php:983
msgid "New Password:"
msgstr "Neues Passwort:"
#: ../../mod/settings.php:966
#: ../../mod/settings.php:984
msgid "Confirm:"
msgstr "Bestätigen:"
#: ../../mod/settings.php:966
#: ../../mod/settings.php:984
msgid "Leave password fields blank unless changing"
msgstr "Lass die Passwort-Felder leer, außer du willst das Passwort ändern"
#: ../../mod/settings.php:970
#: ../../mod/settings.php:988
msgid "Basic Settings"
msgstr "Grundeinstellungen"
#: ../../mod/settings.php:971 ../../include/profile_advanced.php:15
#: ../../mod/settings.php:989 ../../include/profile_advanced.php:15
msgid "Full Name:"
msgstr "Kompletter Name:"
#: ../../mod/settings.php:972
#: ../../mod/settings.php:990
msgid "Email Address:"
msgstr "E-Mail-Adresse:"
#: ../../mod/settings.php:973
#: ../../mod/settings.php:991
msgid "Your Timezone:"
msgstr "Deine Zeitzone:"
#: ../../mod/settings.php:974
#: ../../mod/settings.php:992
msgid "Default Post Location:"
msgstr "Standardstandort:"
#: ../../mod/settings.php:975
#: ../../mod/settings.php:993
msgid "Use Browser Location:"
msgstr "Standort des Browsers verwenden:"
#: ../../mod/settings.php:978
#: ../../mod/settings.php:996
msgid "Security and Privacy Settings"
msgstr "Sicherheits- und Privatsphäre-Einstellungen"
#: ../../mod/settings.php:980
#: ../../mod/settings.php:998
msgid "Maximum Friend Requests/Day:"
msgstr "Maximale Anzahl von Freundschaftsanfragen/Tag:"
#: ../../mod/settings.php:980 ../../mod/settings.php:999
#: ../../mod/settings.php:998 ../../mod/settings.php:1017
msgid "(to prevent spam abuse)"
msgstr "(um SPAM zu vermeiden)"
#: ../../mod/settings.php:981
#: ../../mod/settings.php:999
msgid "Default Post Permissions"
msgstr "Standard-Zugriffsrechte für Beiträge"
#: ../../mod/settings.php:982
#: ../../mod/settings.php:1000
msgid "(click to open/close)"
msgstr "(klicke zum öffnen/schließen)"
#: ../../mod/settings.php:999
#: ../../mod/settings.php:1017
msgid "Maximum private messages per day from unknown people:"
msgstr "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:"
#: ../../mod/settings.php:1002
#: ../../mod/settings.php:1020
msgid "Notification Settings"
msgstr "Benachrichtigungseinstellungen"
#: ../../mod/settings.php:1003
#: ../../mod/settings.php:1021
msgid "By default post a status message when:"
msgstr "Standardmäßig eine Statusnachricht posten, wenn:"
#: ../../mod/settings.php:1004
#: ../../mod/settings.php:1022
msgid "accepting a friend request"
msgstr " du eine Kontaktanfrage akzeptierst"
#: ../../mod/settings.php:1005
#: ../../mod/settings.php:1023
msgid "joining a forum/community"
msgstr " du einem Forum/einer Gemeinschaftsseite beitrittst"
#: ../../mod/settings.php:1006
#: ../../mod/settings.php:1024
msgid "making an <em>interesting</em> profile change"
msgstr " du eine <em>interessante</em> Änderung an deinem Profil durchführst"
#: ../../mod/settings.php:1007
#: ../../mod/settings.php:1025
msgid "Send a notification email when:"
msgstr "Benachrichtigungs-E-Mail senden wenn:"
#: ../../mod/settings.php:1008
#: ../../mod/settings.php:1026
msgid "You receive an introduction"
msgstr " du eine Kontaktanfrage erhältst"
#: ../../mod/settings.php:1009
#: ../../mod/settings.php:1027
msgid "Your introductions are confirmed"
msgstr " eine deiner Kontaktanfragen akzeptiert wurde"
#: ../../mod/settings.php:1010
#: ../../mod/settings.php:1028
msgid "Someone writes on your profile wall"
msgstr " jemand etwas auf deine Pinnwand schreibt"
#: ../../mod/settings.php:1011
#: ../../mod/settings.php:1029
msgid "Someone writes a followup comment"
msgstr " jemand auch einen Kommentar verfasst"
#: ../../mod/settings.php:1012
#: ../../mod/settings.php:1030
msgid "You receive a private message"
msgstr " du eine private Nachricht erhältst"
#: ../../mod/settings.php:1013
#: ../../mod/settings.php:1031
msgid "You receive a friend suggestion"
msgstr " du eine Empfehlung erhältst"
#: ../../mod/settings.php:1014
#: ../../mod/settings.php:1032
msgid "You are tagged in a post"
msgstr " du in einem Beitrag erwähnt wirst"
#: ../../mod/settings.php:1015
#: ../../mod/settings.php:1033
msgid "You are poked/prodded/etc. in a post"
msgstr " du von jemandem angestupst oder sonstwie behandelt wirst"
#: ../../mod/settings.php:1018
#: ../../mod/settings.php:1036
msgid "Advanced Account/Page Type Settings"
msgstr "Erweiterte Konto-/Seitentyp-Einstellungen"
#: ../../mod/settings.php:1019
#: ../../mod/settings.php:1037
msgid "Change the behaviour of this account for special situations"
msgstr "Verhalten dieses Kontos in bestimmten Situationen:"
#: ../../mod/manage.php:90
#: ../../mod/manage.php:91
msgid "Manage Identities and/or Pages"
msgstr "Verwalte Identitäten und/oder Seiten"
#: ../../mod/manage.php:93
#: ../../mod/manage.php:94
msgid ""
"Toggle between different identities or community/group pages which share "
"your account details or which you have been granted \"manage\" permissions"
msgstr "Zwischen verschiedenen Identitäten oder Foren wechseln, die deine Zugangsdaten (E-Mail und Passwort) teilen oder zu denen du „Verwalten“-Befugnisse bekommen hast."
#: ../../mod/manage.php:95
#: ../../mod/manage.php:96
msgid "Select an identity to manage: "
msgstr "Wähle eine Identität zum Verwalten: "
@ -2611,7 +2621,7 @@ msgstr "Private Nachrichten an diese Person könnten an die Öffentlichkeit gela
msgid "Invalid contact."
msgstr "Ungültiger Kontakt."
#: ../../mod/notes.php:44 ../../boot.php:1666
#: ../../mod/notes.php:44 ../../boot.php:1690
msgid "Personal Notes"
msgstr "Persönliche Notizen"
@ -2654,7 +2664,7 @@ msgstr "Kein Empfänger."
#: ../../mod/wallmessage.php:123 ../../mod/wallmessage.php:131
#: ../../mod/message.php:242 ../../mod/message.php:250
#: ../../include/conversation.php:1101 ../../include/conversation.php:1118
#: ../../include/conversation.php:1132 ../../include/conversation.php:1149
msgid "Please enter a link URL:"
msgstr "Bitte gib die URL des Links ein:"
@ -2670,17 +2680,17 @@ msgid ""
msgstr "Wenn du möchtest, dass %s dir antworten kann, überprüfe deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern."
#: ../../mod/wallmessage.php:140 ../../mod/message.php:279
#: ../../mod/message.php:467
#: ../../mod/message.php:469
msgid "To:"
msgstr "An:"
#: ../../mod/wallmessage.php:141 ../../mod/message.php:284
#: ../../mod/message.php:469
#: ../../mod/message.php:471
msgid "Subject:"
msgstr "Betreff:"
#: ../../mod/wallmessage.php:147 ../../mod/message.php:288
#: ../../mod/message.php:472 ../../mod/invite.php:113
#: ../../mod/message.php:474 ../../mod/invite.php:113
msgid "Your message:"
msgstr "Deine Nachricht:"
@ -2700,21 +2710,33 @@ msgid ""
"registration and then will quietly disappear."
msgstr "Wir möchten dir einige Tipps und Links anbieten, die dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden."
#: ../../mod/newmember.php:16
#: ../../mod/newmember.php:14
msgid "Getting Started"
msgstr "Einstieg"
#: ../../mod/newmember.php:18
msgid "Friendica Walk-Through"
msgstr "Friendica Rundgang"
#: ../../mod/newmember.php:18
msgid ""
"On your <em>Quick Start</em> page - find a brief introduction to your "
"profile and network tabs, make some new connections, and find some groups to"
" join."
msgstr "Auf der <em>Quick Start</em> Seite findest du eine kurze Einleitung in die einzelnen Funktionen deines Profils und die Netzwerk-Reiter, wo du interessante Foren findest und neue Kontakte knüpfst."
#: ../../mod/newmember.php:18
#: ../../mod/newmember.php:26
msgid "Go to Your Settings"
msgstr "Gehe zu deinen Einstellungen"
#: ../../mod/newmember.php:26
msgid ""
"On your <em>Settings</em> page - change your initial password. Also make a "
"note of your Identity Address. This looks just like an email address - and "
"will be useful in making friends on the free social web."
msgstr "Ändere bitte unter <em>Einstellungen</em> dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Freundschaften mit anderen im Friendica Netzwerk zu schliessen."
#: ../../mod/newmember.php:20
#: ../../mod/newmember.php:28
msgid ""
"Review the other settings, particularly the privacy settings. An unpublished"
" directory listing is like having an unlisted phone number. In general, you "
@ -2722,61 +2744,106 @@ msgid ""
"potential friends know exactly how to find you."
msgstr "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn du dein Profil nicht veröffentlichst, ist das als wenn du deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest du es veröffentlichen - außer all deine Freunde und potentiellen Freunde wissen genau, wie sie dich finden können."
#: ../../mod/newmember.php:22
#: ../../mod/newmember.php:32 ../../mod/profperm.php:103
#: ../../view/theme/diabook/theme.php:128 ../../include/profile_advanced.php:7
#: ../../include/profile_advanced.php:84 ../../include/nav.php:50
#: ../../boot.php:1666
msgid "Profile"
msgstr "Profil"
#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:211
msgid "Upload Profile Photo"
msgstr "Profilbild hochladen"
#: ../../mod/newmember.php:36
msgid ""
"Upload a profile photo if you have not done so already. Studies have shown "
"that people with real photos of themselves are ten times more likely to make"
" friends than people who do not."
msgstr "Lade ein Profilbild hoch falls du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Freunde zu finden, wenn du ein Bild von dir selbst verwendest, als wenn du dies nicht tust."
#: ../../mod/newmember.php:25
msgid ""
"Authorise the Facebook Connector if you currently have a Facebook account "
"and we will (optionally) import all your Facebook friends and conversations."
msgstr "Richte die Verbindung zu Facebook ein, wenn du im Augenblick ein Facebook-Konto hast, und (optional) deine Facebook-Freunde und -Unterhaltungen importieren willst."
#: ../../mod/newmember.php:38
msgid "Edit Your Profile"
msgstr "Editiere dein Profil"
#: ../../mod/newmember.php:27
msgid ""
"<em>If</em> this is your own personal server, installing the Facebook addon "
"may ease your transition to the free social web."
msgstr "<em>Wenn</em> dies dein privater Server ist, könnte die Installation des Facebook Connectors deinen Umzug ins freie soziale Netz angenehmer gestalten."
#: ../../mod/newmember.php:32
msgid ""
"Enter your email access information on your Connector Settings page if you "
"wish to import and interact with friends or mailing lists from your email "
"INBOX"
msgstr "Gib deine E-Mail-Zugangsinformationen auf der Connector-Einstellungsseite ein, falls du E-Mails aus deinem Posteingang importieren und mit Freunden und Mailinglisten interagieren willlst."
#: ../../mod/newmember.php:34
#: ../../mod/newmember.php:38
msgid ""
"Edit your <strong>default</strong> profile to your liking. Review the "
"settings for hiding your list of friends and hiding the profile from unknown"
" visitors."
msgstr "Editiere dein <strong>Standard</strong> Profil nach deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen deiner Freundesliste vor unbekannten Betrachtern des Profils."
#: ../../mod/newmember.php:36
#: ../../mod/newmember.php:40
msgid "Profile Keywords"
msgstr "Profil Schlüsselbegriffe"
#: ../../mod/newmember.php:40
msgid ""
"Set some public keywords for your default profile which describe your "
"interests. We may be able to find other people with similar interests and "
"suggest friendships."
msgstr "Trage ein paar öffentliche Stichwörter in dein Standardprofil ein, die deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die deine Interessen teilen und können dir dann Kontakte vorschlagen."
#: ../../mod/newmember.php:38
#: ../../mod/newmember.php:44
msgid "Connecting"
msgstr "Verbindungen knüpfen"
#: ../../mod/newmember.php:49 ../../mod/newmember.php:51
#: ../../addon/facebook/facebook.php:728
#: ../../include/contact_selectors.php:81
msgid "Facebook"
msgstr "Facebook"
#: ../../mod/newmember.php:49
msgid ""
"Authorise the Facebook Connector if you currently have a Facebook account "
"and we will (optionally) import all your Facebook friends and conversations."
msgstr "Richte die Verbindung zu Facebook ein, wenn du im Augenblick ein Facebook-Konto hast, und (optional) deine Facebook-Freunde und -Unterhaltungen importieren willst."
#: ../../mod/newmember.php:51
msgid ""
"<em>If</em> this is your own personal server, installing the Facebook addon "
"may ease your transition to the free social web."
msgstr "<em>Wenn</em> dies dein privater Server ist, könnte die Installation des Facebook Connectors deinen Umzug ins freie soziale Netz angenehmer gestalten."
#: ../../mod/newmember.php:56
msgid "Importing Emails"
msgstr "Emails Importieren"
#: ../../mod/newmember.php:56
msgid ""
"Enter your email access information on your Connector Settings page if you "
"wish to import and interact with friends or mailing lists from your email "
"INBOX"
msgstr "Gib deine E-Mail-Zugangsinformationen auf der Connector-Einstellungsseite ein, falls du E-Mails aus deinem Posteingang importieren und mit Freunden und Mailinglisten interagieren willlst."
#: ../../mod/newmember.php:58
msgid "Go to Your Contacts Page"
msgstr "Gehe zu deiner Kontakt-Seite"
#: ../../mod/newmember.php:58
msgid ""
"Your Contacts page is your gateway to managing friendships and connecting "
"with friends on other networks. Typically you enter their address or site "
"URL in the <em>Add New Contact</em> dialog."
msgstr "Die Kontakte-Seite ist die Einstiegsseite, von der aus du Kontakte verwalten und dich mit Freunden in anderen Netzwerken verbinden kannst. Normalerweise gibst du dazu einfach ihre Adresse oder die URL der Seite im Kasten <em>Neuen Kontakt hinzufügen</em> ein."
#: ../../mod/newmember.php:40
#: ../../mod/newmember.php:60
msgid "Go to Your Site's Directory"
msgstr "Gehe zum Verzeichnis deiner Friendica Instanz"
#: ../../mod/newmember.php:60
msgid ""
"The Directory page lets you find other people in this network or other "
"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
"their profile page. Provide your own Identity Address if requested."
msgstr "Über die Verzeichnisseite kannst du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem <em>Verbinden</em> oder <em>Folgen</em> Link auf deren Profilseiten Ausschau und gib deine eigene Profiladresse an, falls du danach gefragt wirst."
#: ../../mod/newmember.php:42
#: ../../mod/newmember.php:62
msgid "Finding New People"
msgstr "Neue Leute kennenlernen"
#: ../../mod/newmember.php:62
msgid ""
"On the side panel of the Contacts page are several tools to find new "
"friends. We can match people by interest, look up people by name or "
@ -2785,14 +2852,41 @@ msgid ""
"hours."
msgstr "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Freunde zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Freunde vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden."
#: ../../mod/newmember.php:44
#: ../../mod/newmember.php:66 ../../include/group.php:239
msgid "Groups"
msgstr "Gruppen"
#: ../../mod/newmember.php:70
msgid "Group Your Contacts"
msgstr "Gruppiere deine Kontakte"
#: ../../mod/newmember.php:70
msgid ""
"Once you have made some friends, organize them into private conversation "
"groups from the sidebar of your Contacts page and then you can interact with"
" each group privately on your Network page."
msgstr "Sobald du einige Freunde gefunden hast, organisiere sie in Gruppen zur privaten Kommunikation im Seitenmenü der Kontakte-Seite. Du kannst dann mit jeder dieser Gruppen von der Netzwerkseite aus privat interagieren."
#: ../../mod/newmember.php:46
#: ../../mod/newmember.php:73
msgid "Why Aren't My Posts Public?"
msgstr "Warum sind meine Beiträge nicht öffentlich?"
#: ../../mod/newmember.php:73
msgid ""
"Friendica respects your privacy. By default, your posts will only show up to"
" people you've added as friends. For more information, see the help section "
"from the link above."
msgstr "Friendica respektiert deine Privatsphäre. Mit der Grundeinstellung werden deine Beiträge ausschließlich deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch."
#: ../../mod/newmember.php:78
msgid "Getting Help"
msgstr "Hilfe bekommen"
#: ../../mod/newmember.php:82
msgid "Go to the Help Section"
msgstr "Zum Hilfe Abschnitt gehen"
#: ../../mod/newmember.php:82
msgid ""
"Our <strong>help</strong> pages may be consulted for detail on other program"
" features and resources."
@ -2862,12 +2956,6 @@ msgstr "Ungültiger Profil-Bezeichner"
msgid "Profile Visibility Editor"
msgstr "Editor für die Profil-Sichtbarkeit"
#: ../../mod/profperm.php:103 ../../view/theme/diabook/theme.php:128
#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:84
#: ../../include/nav.php:50 ../../boot.php:1642
msgid "Profile"
msgstr "Profil"
#: ../../mod/profperm.php:114
msgid "Visible To"
msgstr "Sichtbar für"
@ -2917,58 +3005,58 @@ msgid ""
"Please try again tomorrow."
msgstr "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal."
#: ../../mod/register.php:215
#: ../../mod/register.php:217
msgid ""
"You may (optionally) fill in this form via OpenID by supplying your OpenID "
"and clicking 'Register'."
msgstr "Du kannst dieses Formular auch (optional) mit deiner OpenID ausfüllen, indem du deine OpenID angibst und 'Registrieren' klickst."
#: ../../mod/register.php:216
#: ../../mod/register.php:218
msgid ""
"If you are not familiar with OpenID, please leave that field blank and fill "
"in the rest of the items."
msgstr "Wenn du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus."
#: ../../mod/register.php:217
#: ../../mod/register.php:219
msgid "Your OpenID (optional): "
msgstr "Deine OpenID (optional): "
#: ../../mod/register.php:231
#: ../../mod/register.php:233
msgid "Include your profile in member directory?"
msgstr "Soll dein Profil im Nutzerverzeichnis angezeigt werden?"
#: ../../mod/register.php:251
#: ../../mod/register.php:253
msgid "Membership on this site is by invitation only."
msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."
#: ../../mod/register.php:252
#: ../../mod/register.php:254
msgid "Your invitation ID: "
msgstr "ID deiner Einladung: "
#: ../../mod/register.php:255 ../../mod/admin.php:436
#: ../../mod/register.php:257 ../../mod/admin.php:444
msgid "Registration"
msgstr "Registrierung"
#: ../../mod/register.php:263
#: ../../mod/register.php:265
msgid "Your Full Name (e.g. Joe Smith): "
msgstr "Vollständiger Name (z.B. Max Mustermann): "
#: ../../mod/register.php:264
#: ../../mod/register.php:266
msgid "Your Email Address: "
msgstr "Deine E-Mail-Adresse: "
#: ../../mod/register.php:265
#: ../../mod/register.php:267
msgid ""
"Choose a profile nickname. This must begin with a text character. Your "
"profile address on this site will then be "
"'<strong>nickname@$sitename</strong>'."
msgstr "Wähle einen Spitznamen für dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse deines Profils auf dieser Seite wird '<strong>spitzname@$sitename</strong>' sein."
#: ../../mod/register.php:266
#: ../../mod/register.php:268
msgid "Choose a nickname: "
msgstr "Spitznamen wählen: "
#: ../../mod/register.php:269 ../../include/nav.php:81 ../../boot.php:896
#: ../../mod/register.php:271 ../../include/nav.php:81 ../../boot.php:887
msgid "Register"
msgstr "Registrieren"
@ -2976,33 +3064,33 @@ msgstr "Registrieren"
msgid "People Search"
msgstr "Personensuche"
#: ../../mod/like.php:145 ../../mod/like.php:298 ../../mod/tagger.php:70
#: ../../mod/like.php:145 ../../mod/like.php:298 ../../mod/tagger.php:62
#: ../../addon/facebook/facebook.php:1594
#: ../../addon/communityhome/communityhome.php:158
#: ../../addon/communityhome/communityhome.php:167
#: ../../view/theme/diabook/theme.php:565
#: ../../view/theme/diabook/theme.php:574 ../../include/diaspora.php:1824
#: ../../include/conversation.php:109 ../../include/conversation.php:118
#: ../../include/conversation.php:239 ../../include/conversation.php:248
#: ../../include/conversation.php:120 ../../include/conversation.php:129
#: ../../include/conversation.php:250 ../../include/conversation.php:259
msgid "status"
msgstr "Status"
#: ../../mod/like.php:162 ../../addon/facebook/facebook.php:1598
#: ../../addon/communityhome/communityhome.php:172
#: ../../view/theme/diabook/theme.php:579 ../../include/diaspora.php:1840
#: ../../include/conversation.php:126
#: ../../include/conversation.php:137
#, php-format
msgid "%1$s likes %2$s's %3$s"
msgstr "%1$s mag %2$ss %3$s"
#: ../../mod/like.php:164 ../../include/conversation.php:129
#: ../../mod/like.php:164 ../../include/conversation.php:140
#, php-format
msgid "%1$s doesn't like %2$s's %3$s"
msgstr "%1$s mag %2$ss %3$s nicht"
#: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 ../../mod/admin.php:159
#: ../../mod/admin.php:720 ../../mod/admin.php:919 ../../mod/display.php:29
#: ../../mod/display.php:135 ../../include/items.php:3697
#: ../../mod/admin.php:731 ../../mod/admin.php:930 ../../mod/display.php:29
#: ../../mod/display.php:145 ../../include/items.php:3700
msgid "Item not found."
msgstr "Beitrag nicht gefunden."
@ -3011,7 +3099,7 @@ msgid "Access denied."
msgstr "Zugriff verweigert."
#: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:130
#: ../../include/nav.php:51 ../../boot.php:1649
#: ../../include/nav.php:51 ../../boot.php:1673
msgid "Photos"
msgstr "Bilder"
@ -3040,40 +3128,40 @@ msgstr "Konnte den Originalbeitrag nicht finden."
msgid "Empty post discarded."
msgstr "Leerer Beitrag wurde verworfen."
#: ../../mod/item.php:396 ../../mod/wall_upload.php:122
#: ../../mod/wall_upload.php:131 ../../mod/wall_upload.php:138
#: ../../mod/item.php:407 ../../mod/wall_upload.php:133
#: ../../mod/wall_upload.php:142 ../../mod/wall_upload.php:149
#: ../../include/message.php:144
msgid "Wall Photos"
msgstr "Pinnwand-Bilder"
#: ../../mod/item.php:809
#: ../../mod/item.php:820
msgid "System error. Post not saved."
msgstr "Systemfehler. Beitrag konnte nicht gespeichert werden."
#: ../../mod/item.php:834
#: ../../mod/item.php:845
#, php-format
msgid ""
"This message was sent to you by %s, a member of the Friendica social "
"network."
msgstr "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica."
#: ../../mod/item.php:836
#: ../../mod/item.php:847
#, php-format
msgid "You may visit them online at %s"
msgstr "Du kannst sie online unter %s besuchen"
#: ../../mod/item.php:837
#: ../../mod/item.php:848
msgid ""
"Please contact the sender by replying to this post if you do not wish to "
"receive these messages."
msgstr "Falls du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem du auf diese Nachricht antwortest."
#: ../../mod/item.php:839
#: ../../mod/item.php:850
#, php-format
msgid "%s posted an update."
msgstr "%s hat ein Update veröffentlicht."
#: ../../mod/mood.php:62 ../../include/conversation.php:217
#: ../../mod/mood.php:62 ../../include/conversation.php:228
#, php-format
msgid "%1$s is currently %2$s"
msgstr "%1$s ist momentan %2$s"
@ -3106,7 +3194,7 @@ msgstr "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue
msgid "Unable to process image"
msgstr "Bild konnte nicht verarbeitet werden"
#: ../../mod/profile_photo.php:117 ../../mod/wall_upload.php:77
#: ../../mod/profile_photo.php:117 ../../mod/wall_upload.php:88
#, php-format
msgid "Image exceeds size limit of %d"
msgstr "Bildgröße überschreitet das Limit von %d"
@ -3115,10 +3203,6 @@ msgstr "Bildgröße überschreitet das Limit von %d"
msgid "Upload File:"
msgstr "Datei hochladen:"
#: ../../mod/profile_photo.php:211
msgid "Upload Profile Photo"
msgstr "Profilbild hochladen"
#: ../../mod/profile_photo.php:212
#: ../../addon/dav/friendica/layout.fnk.php:152
msgid "Upload"
@ -3201,7 +3285,7 @@ msgstr "Du und %s"
msgid "%s and You"
msgstr "%s und du"
#: ../../mod/message.php:350 ../../mod/message.php:460
#: ../../mod/message.php:350 ../../mod/message.php:462
msgid "Delete conversation"
msgstr "Unterhaltung löschen"
@ -3209,28 +3293,28 @@ msgstr "Unterhaltung löschen"
msgid "D, d M Y - g:i A"
msgstr "D, d. M Y - g:i A"
#: ../../mod/message.php:355
#: ../../mod/message.php:356
#, php-format
msgid "%d message"
msgid_plural "%d messages"
msgstr[0] "%d Nachricht"
msgstr[1] "%d Nachrichten"
#: ../../mod/message.php:390
#: ../../mod/message.php:391
msgid "Message not available."
msgstr "Nachricht nicht verfügbar."
#: ../../mod/message.php:443
#: ../../mod/message.php:444
msgid "Delete message"
msgstr "Nachricht löschen"
#: ../../mod/message.php:462
#: ../../mod/message.php:464
msgid ""
"No secure communications available. You <strong>may</strong> be able to "
"respond from the sender's profile page."
msgstr "Sichere Kommunikation ist nicht verfügbar. <strong>Eventuell</strong> kannst du auf der Profilseite des Absenders antworten."
#: ../../mod/message.php:466
#: ../../mod/message.php:468
msgid "Send Reply"
msgstr "Antwort senden"
@ -3247,19 +3331,19 @@ msgstr "Keine Freunde zum Anzeigen."
msgid "Theme settings updated."
msgstr "Themeneinstellungen aktualisiert."
#: ../../mod/admin.php:96 ../../mod/admin.php:434
#: ../../mod/admin.php:96 ../../mod/admin.php:442
msgid "Site"
msgstr "Seite"
#: ../../mod/admin.php:97 ../../mod/admin.php:675 ../../mod/admin.php:687
#: ../../mod/admin.php:97 ../../mod/admin.php:686 ../../mod/admin.php:698
msgid "Users"
msgstr "Nutzer"
#: ../../mod/admin.php:98 ../../mod/admin.php:769 ../../mod/admin.php:811
#: ../../mod/admin.php:98 ../../mod/admin.php:780 ../../mod/admin.php:822
msgid "Plugins"
msgstr "Plugins"
#: ../../mod/admin.php:99 ../../mod/admin.php:974 ../../mod/admin.php:1010
#: ../../mod/admin.php:99 ../../mod/admin.php:985 ../../mod/admin.php:1021
msgid "Themes"
msgstr "Themen"
@ -3267,7 +3351,7 @@ msgstr "Themen"
msgid "DB updates"
msgstr "DB Updates"
#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1097
#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1108
msgid "Logs"
msgstr "Protokolle"
@ -3283,19 +3367,19 @@ msgstr "Plugin Features"
msgid "User registrations waiting for confirmation"
msgstr "Nutzeranmeldungen die auf Bestätigung warten"
#: ../../mod/admin.php:183 ../../mod/admin.php:657
#: ../../mod/admin.php:183 ../../mod/admin.php:668
msgid "Normal Account"
msgstr "Normales Konto"
#: ../../mod/admin.php:184 ../../mod/admin.php:658
#: ../../mod/admin.php:184 ../../mod/admin.php:669
msgid "Soapbox Account"
msgstr "Marktschreier-Konto"
#: ../../mod/admin.php:185 ../../mod/admin.php:659
#: ../../mod/admin.php:185 ../../mod/admin.php:670
msgid "Community/Celebrity Account"
msgstr "Forum/Promi-Konto"
#: ../../mod/admin.php:186 ../../mod/admin.php:660
#: ../../mod/admin.php:186 ../../mod/admin.php:671
msgid "Automatic Friend Account"
msgstr "Automatisches Freundekonto"
@ -3311,9 +3395,9 @@ msgstr "Privates Forum"
msgid "Message queues"
msgstr "Nachrichten-Warteschlangen"
#: ../../mod/admin.php:212 ../../mod/admin.php:433 ../../mod/admin.php:674
#: ../../mod/admin.php:768 ../../mod/admin.php:810 ../../mod/admin.php:973
#: ../../mod/admin.php:1009 ../../mod/admin.php:1096
#: ../../mod/admin.php:212 ../../mod/admin.php:441 ../../mod/admin.php:685
#: ../../mod/admin.php:779 ../../mod/admin.php:821 ../../mod/admin.php:984
#: ../../mod/admin.php:1020 ../../mod/admin.php:1107
msgid "Administration"
msgstr "Administration"
@ -3337,535 +3421,561 @@ msgstr "Version"
msgid "Active plugins"
msgstr "Aktive Plugins"
#: ../../mod/admin.php:367
#: ../../mod/admin.php:373
msgid "Site settings updated."
msgstr "Seiteneinstellungen aktualisiert."
#: ../../mod/admin.php:396
msgid "Don't apply a special theme for mobile devices."
msgstr "Kein spezielles Theme für mobile Geräte verwenden."
#: ../../mod/admin.php:420
#: ../../mod/admin.php:428
msgid "Closed"
msgstr "Geschlossen"
#: ../../mod/admin.php:421
#: ../../mod/admin.php:429
msgid "Requires approval"
msgstr "Bedarf der Zustimmung"
#: ../../mod/admin.php:422
#: ../../mod/admin.php:430
msgid "Open"
msgstr "Offen"
#: ../../mod/admin.php:426
#: ../../mod/admin.php:434
msgid "No SSL policy, links will track page SSL state"
msgstr "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten"
#: ../../mod/admin.php:427
#: ../../mod/admin.php:435
msgid "Force all links to use SSL"
msgstr "SSL für alle Links erzwingen"
#: ../../mod/admin.php:428
#: ../../mod/admin.php:436
msgid "Self-signed certificate, use SSL for local links only (discouraged)"
msgstr "Selbst-unterzeichnetes Zertifikat, SSL nur für lokale Links verwenden (nicht empfohlen)"
#: ../../mod/admin.php:437
#: ../../mod/admin.php:445
msgid "File upload"
msgstr "Datei hochladen"
#: ../../mod/admin.php:438
#: ../../mod/admin.php:446
msgid "Policies"
msgstr "Regeln"
#: ../../mod/admin.php:439
#: ../../mod/admin.php:447
msgid "Advanced"
msgstr "Erweitert"
#: ../../mod/admin.php:443 ../../addon/statusnet/statusnet.php:567
#: ../../mod/admin.php:451 ../../addon/statusnet/statusnet.php:567
msgid "Site name"
msgstr "Seitenname"
#: ../../mod/admin.php:444
#: ../../mod/admin.php:452
msgid "Banner/Logo"
msgstr "Banner/Logo"
#: ../../mod/admin.php:445
#: ../../mod/admin.php:453
msgid "System language"
msgstr "Systemsprache"
#: ../../mod/admin.php:446
#: ../../mod/admin.php:454
msgid "System theme"
msgstr "Systemweites Thema"
#: ../../mod/admin.php:446
#: ../../mod/admin.php:454
msgid ""
"Default system theme - may be over-ridden by user profiles - <a href='#' "
"id='cnftheme'>change theme settings</a>"
msgstr "Vorgabe für das System-Theme - kann von Benutzerprofilen überschrieben werden - <a href='#' id='cnftheme'>Theme-Einstellungen ändern</a>"
#: ../../mod/admin.php:447
#: ../../mod/admin.php:455
msgid "Mobile system theme"
msgstr "Systemweites mobiles Thema"
#: ../../mod/admin.php:447
#: ../../mod/admin.php:455
msgid "Theme for mobile devices"
msgstr "Thema für mobile Geräte"
#: ../../mod/admin.php:448
#: ../../mod/admin.php:456
msgid "SSL link policy"
msgstr "Regeln für SSL Links"
#: ../../mod/admin.php:448
#: ../../mod/admin.php:456
msgid "Determines whether generated links should be forced to use SSL"
msgstr "Bestimmt, ob generierte Links SSL verwenden müssen"
#: ../../mod/admin.php:449
#: ../../mod/admin.php:457
msgid "Maximum image size"
msgstr "Maximale Größe von Bildern"
#: ../../mod/admin.php:449
#: ../../mod/admin.php:457
msgid ""
"Maximum size in bytes of uploaded images. Default is 0, which means no "
"limits."
msgstr "Maximale Upload-Größe von Bildern in Bytes. Standard ist 0, d.h. ohne Limit."
#: ../../mod/admin.php:451
#: ../../mod/admin.php:458
msgid "Maximum image length"
msgstr "Maximale Länge von Bildern"
#: ../../mod/admin.php:458
msgid ""
"Maximum length in pixels of the longest side of uploaded images. Default is "
"-1, which means no limits."
msgstr "Maximale Länge in Pixeln der längsten Seite eines hoch geladenen Bildes. Grundeinstellung ist -1 was keine Einschränkung bedeutet."
#: ../../mod/admin.php:459
msgid "JPEG image quality"
msgstr "Qualität des JPEG Bildes"
#: ../../mod/admin.php:459
msgid ""
"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
"100, which is full quality."
msgstr "Hoch geladene JPEG Bilder werden mit dieser Qualität [0-100] gespeichert. Grundeinstellung ist 100, kein Qualitätsverlust."
#: ../../mod/admin.php:461
msgid "Register policy"
msgstr "Registrierungsmethode"
#: ../../mod/admin.php:452
#: ../../mod/admin.php:462
msgid "Register text"
msgstr "Registrierungstext"
#: ../../mod/admin.php:452
#: ../../mod/admin.php:462
msgid "Will be displayed prominently on the registration page."
msgstr "Wird gut sichtbar auf der Registrierungsseite angezeigt."
#: ../../mod/admin.php:453
#: ../../mod/admin.php:463
msgid "Accounts abandoned after x days"
msgstr "Nutzerkonten gelten nach x Tagen als unbenutzt"
#: ../../mod/admin.php:453
#: ../../mod/admin.php:463
msgid ""
"Will not waste system resources polling external sites for abandonded "
"accounts. Enter 0 for no time limit."
msgstr "Verschwende keine System-Ressourcen auf das Pollen externer Seiten, wenn Konten nicht mehr benutzt werden. 0 eingeben für kein Limit."
#: ../../mod/admin.php:454
#: ../../mod/admin.php:464
msgid "Allowed friend domains"
msgstr "Erlaubte Domains für Kontakte"
#: ../../mod/admin.php:454
#: ../../mod/admin.php:464
msgid ""
"Comma separated list of domains which are allowed to establish friendships "
"with this site. Wildcards are accepted. Empty to allow any domains"
msgstr "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."
#: ../../mod/admin.php:455
#: ../../mod/admin.php:465
msgid "Allowed email domains"
msgstr "Erlaubte Domains für E-Mails"
#: ../../mod/admin.php:455
#: ../../mod/admin.php:465
msgid ""
"Comma separated list of domains which are allowed in email addresses for "
"registrations to this site. Wildcards are accepted. Empty to allow any "
"domains"
msgstr "Liste der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."
#: ../../mod/admin.php:456
#: ../../mod/admin.php:466
msgid "Block public"
msgstr "Öffentlichen Zugriff blockieren"
#: ../../mod/admin.php:456
#: ../../mod/admin.php:466
msgid ""
"Check to block public access to all otherwise public personal pages on this "
"site unless you are currently logged in."
msgstr "Klicken, um öffentlichen Zugriff auf sonst öffentliche Profile zu blockieren, wenn man nicht eingeloggt ist."
#: ../../mod/admin.php:457
#: ../../mod/admin.php:467
msgid "Force publish"
msgstr "Erzwinge Veröffentlichung"
#: ../../mod/admin.php:457
#: ../../mod/admin.php:467
msgid ""
"Check to force all profiles on this site to be listed in the site directory."
msgstr "Klicken, um Anzeige aller Profile dieses Servers im Verzeichnis zu erzwingen."
#: ../../mod/admin.php:458
#: ../../mod/admin.php:468
msgid "Global directory update URL"
msgstr "URL für Updates beim weltweiten Verzeichnis"
#: ../../mod/admin.php:458
#: ../../mod/admin.php:468
msgid ""
"URL to update the global directory. If this is not set, the global directory"
" is completely unavailable to the application."
msgstr "URL für Update des globalen Verzeichnisses. Wenn nichts eingetragen ist, bleibt das globale Verzeichnis unerreichbar."
#: ../../mod/admin.php:459
#: ../../mod/admin.php:469
msgid "Allow threaded items"
msgstr "Erlaube Threads in Diskussionen"
#: ../../mod/admin.php:459
#: ../../mod/admin.php:469
msgid "Allow infinite level threading for items on this site."
msgstr "Erlaube ein unendliches Level für Threads auf dieser Seite."
#: ../../mod/admin.php:461
#: ../../mod/admin.php:470
msgid "No default permissions for new users"
msgstr "Keine Standard-Zugriffsrechte für Beiträge neuer Nutzer"
#: ../../mod/admin.php:470
msgid ""
"New users will have no private permissions set for their posts by default, "
"making their posts public until they change it."
msgstr "Neue Benutzer werden keine Voreinstellungen für die Zugriffrechte haben, so dass ihre Beiträge öffentlich sind, bis sie es ändern."
#: ../../mod/admin.php:472
msgid "Block multiple registrations"
msgstr "Unterbinde Mehrfachregistrierung"
#: ../../mod/admin.php:461
#: ../../mod/admin.php:472
msgid "Disallow users to register additional accounts for use as pages."
msgstr "Benutzern nicht erlauben, weitere Konten als zusätzliche Profile anzulegen."
#: ../../mod/admin.php:462
#: ../../mod/admin.php:473
msgid "OpenID support"
msgstr "OpenID Unterstützung"
#: ../../mod/admin.php:462
#: ../../mod/admin.php:473
msgid "OpenID support for registration and logins."
msgstr "OpenID-Unterstützung für Registrierung und Login."
#: ../../mod/admin.php:463
#: ../../mod/admin.php:474
msgid "Fullname check"
msgstr "Namen auf Vollständigkeit überprüfen"
#: ../../mod/admin.php:463
#: ../../mod/admin.php:474
msgid ""
"Force users to register with a space between firstname and lastname in Full "
"name, as an antispam measure"
msgstr "Leerzeichen zwischen Vor- und Nachname im vollständigen Namen erzwingen, um SPAM zu vermeiden."
#: ../../mod/admin.php:464
#: ../../mod/admin.php:475
msgid "UTF-8 Regular expressions"
msgstr "UTF-8 Reguläre Ausdrücke"
#: ../../mod/admin.php:464
#: ../../mod/admin.php:475
msgid "Use PHP UTF8 regular expressions"
msgstr "PHP UTF8 Ausdrücke verwenden"
#: ../../mod/admin.php:465
#: ../../mod/admin.php:476
msgid "Show Community Page"
msgstr "Gemeinschaftsseite anzeigen"
#: ../../mod/admin.php:465
#: ../../mod/admin.php:476
msgid ""
"Display a Community page showing all recent public postings on this site."
msgstr "Zeige die Gemeinschaftsseite mit allen öffentlichen Beiträgen auf diesem Server."
#: ../../mod/admin.php:466
#: ../../mod/admin.php:477
msgid "Enable OStatus support"
msgstr "OStatus Unterstützung aktivieren"
#: ../../mod/admin.php:466
#: ../../mod/admin.php:477
msgid ""
"Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All "
"communications in OStatus are public, so privacy warnings will be "
"occasionally displayed."
msgstr "Biete die eingebaute OStatus (identi.ca, status.net, etc.) Unterstützung an. Jede Kommunikation in OStatus ist öffentlich, so Privatsphäre Warnungen werden bei Bedarf angezeigt."
#: ../../mod/admin.php:467
#: ../../mod/admin.php:478
msgid "Enable Diaspora support"
msgstr "Diaspora-Support aktivieren"
#: ../../mod/admin.php:467
#: ../../mod/admin.php:478
msgid "Provide built-in Diaspora network compatibility."
msgstr "Verwende die eingebaute Diaspora-Verknüpfung."
#: ../../mod/admin.php:468
#: ../../mod/admin.php:479
msgid "Only allow Friendica contacts"
msgstr "Nur Friendica-Kontakte erlauben"
#: ../../mod/admin.php:468
#: ../../mod/admin.php:479
msgid ""
"All contacts must use Friendica protocols. All other built-in communication "
"protocols disabled."
msgstr "Alle Kontakte müssen das Friendica Protokoll nutzen. Alle anderen Kommunikationsprotokolle werden deaktiviert."
#: ../../mod/admin.php:469
#: ../../mod/admin.php:480
msgid "Verify SSL"
msgstr "SSL Überprüfen"
#: ../../mod/admin.php:469
#: ../../mod/admin.php:480
msgid ""
"If you wish, you can turn on strict certificate checking. This will mean you"
" cannot connect (at all) to self-signed SSL sites."
msgstr "Wenn gewollt, kann man hier eine strenge Zertifikatkontrolle einstellen. Das bedeutet, dass man zu keinen Seiten mit selbst unterzeichnetem SSL eine Verbindung herstellen kann."
#: ../../mod/admin.php:470
#: ../../mod/admin.php:481
msgid "Proxy user"
msgstr "Proxy Nutzer"
#: ../../mod/admin.php:471
#: ../../mod/admin.php:482
msgid "Proxy URL"
msgstr "Proxy URL"
#: ../../mod/admin.php:472
#: ../../mod/admin.php:483
msgid "Network timeout"
msgstr "Netzwerk Wartezeit"
#: ../../mod/admin.php:472
#: ../../mod/admin.php:483
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
msgstr "Der Wert ist in Sekunden. Setze 0 für unbegrenzt (nicht empfohlen)."
#: ../../mod/admin.php:473
#: ../../mod/admin.php:484
msgid "Delivery interval"
msgstr "Zustellungsintervall"
#: ../../mod/admin.php:473
#: ../../mod/admin.php:484
msgid ""
"Delay background delivery processes by this many seconds to reduce system "
"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
"for large dedicated servers."
msgstr "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl an Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared-Hosts, 2-3 für VPS, 0-1 für große dedizierte Server."
#: ../../mod/admin.php:474
#: ../../mod/admin.php:485
msgid "Poll interval"
msgstr "Abfrageintervall"
#: ../../mod/admin.php:474
#: ../../mod/admin.php:485
msgid ""
"Delay background polling processes by this many seconds to reduce system "
"load. If 0, use delivery interval."
msgstr "Verzögere Hintergrundprozesse, um diese Anzahl an Sekunden um die Systemlast zu reduzieren. Bei 0 Sekunden wird das Auslieferungsintervall verwendet."
#: ../../mod/admin.php:475
#: ../../mod/admin.php:486
msgid "Maximum Load Average"
msgstr "Maximum Load Average"
#: ../../mod/admin.php:475
#: ../../mod/admin.php:486
msgid ""
"Maximum system load before delivery and poll processes are deferred - "
"default 50."
msgstr "Maximale Systemlast bevor Verteil- und Empfangsprozesse verschoben werden - Standard 50"
#: ../../mod/admin.php:492
#: ../../mod/admin.php:503
msgid "Update has been marked successful"
msgstr "Update wurde als erfolgreich markiert"
#: ../../mod/admin.php:502
#: ../../mod/admin.php:513
#, php-format
msgid "Executing %s failed. Check system logs."
msgstr "Ausführung von %s schlug fehl. Systemprotokolle prüfen."
#: ../../mod/admin.php:505
#: ../../mod/admin.php:516
#, php-format
msgid "Update %s was successfully applied."
msgstr "Update %s war erfolgreich."
#: ../../mod/admin.php:509
#: ../../mod/admin.php:520
#, php-format
msgid "Update %s did not return a status. Unknown if it succeeded."
msgstr "Update %s hat keinen Status zurückgegeben. Unbekannter Status."
#: ../../mod/admin.php:512
#: ../../mod/admin.php:523
#, php-format
msgid "Update function %s could not be found."
msgstr "Updatefunktion %s konnte nicht gefunden werden."
#: ../../mod/admin.php:527
#: ../../mod/admin.php:538
msgid "No failed updates."
msgstr "Keine fehlgeschlagenen Updates."
#: ../../mod/admin.php:531
#: ../../mod/admin.php:542
msgid "Failed Updates"
msgstr "Fehlgeschlagene Updates"
#: ../../mod/admin.php:532
#: ../../mod/admin.php:543
msgid ""
"This does not include updates prior to 1139, which did not return a status."
msgstr "Ohne Updates vor 1139, da diese keinen Status zurückgegeben haben."
#: ../../mod/admin.php:533
#: ../../mod/admin.php:544
msgid "Mark success (if update was manually applied)"
msgstr "Als erfolgreich markieren (falls das Update manuell installiert wurde)"
#: ../../mod/admin.php:534
#: ../../mod/admin.php:545
msgid "Attempt to execute this update step automatically"
msgstr "Versuchen, diesen Schritt automatisch auszuführen"
#: ../../mod/admin.php:559
#: ../../mod/admin.php:570
#, php-format
msgid "%s user blocked/unblocked"
msgid_plural "%s users blocked/unblocked"
msgstr[0] "%s Benutzer geblockt/freigegeben"
msgstr[1] "%s Benutzer geblockt/freigegeben"
#: ../../mod/admin.php:566
#: ../../mod/admin.php:577
#, php-format
msgid "%s user deleted"
msgid_plural "%s users deleted"
msgstr[0] "%s Nutzer gelöscht"
msgstr[1] "%s Nutzer gelöscht"
#: ../../mod/admin.php:605
#: ../../mod/admin.php:616
#, php-format
msgid "User '%s' deleted"
msgstr "Nutzer '%s' gelöscht"
#: ../../mod/admin.php:613
#: ../../mod/admin.php:624
#, php-format
msgid "User '%s' unblocked"
msgstr "Nutzer '%s' entsperrt"
#: ../../mod/admin.php:613
#: ../../mod/admin.php:624
#, php-format
msgid "User '%s' blocked"
msgstr "Nutzer '%s' gesperrt"
#: ../../mod/admin.php:677
#: ../../mod/admin.php:688
msgid "select all"
msgstr "Alle auswählen"
#: ../../mod/admin.php:678
#: ../../mod/admin.php:689
msgid "User registrations waiting for confirm"
msgstr "Neuanmeldungen, die auf deine Bestätigung warten"
#: ../../mod/admin.php:679
#: ../../mod/admin.php:690
msgid "Request date"
msgstr "Anfragedatum"
#: ../../mod/admin.php:679 ../../mod/admin.php:688
#: ../../mod/admin.php:690 ../../mod/admin.php:699
#: ../../include/contact_selectors.php:79
msgid "Email"
msgstr "E-Mail"
#: ../../mod/admin.php:680
#: ../../mod/admin.php:691
msgid "No registrations."
msgstr "Keine Neuanmeldungen."
#: ../../mod/admin.php:682
#: ../../mod/admin.php:693
msgid "Deny"
msgstr "Verwehren"
#: ../../mod/admin.php:688
#: ../../mod/admin.php:699
msgid "Register date"
msgstr "Anmeldedatum"
#: ../../mod/admin.php:688
#: ../../mod/admin.php:699
msgid "Last login"
msgstr "Letzte Anmeldung"
#: ../../mod/admin.php:688
#: ../../mod/admin.php:699
msgid "Last item"
msgstr "Letzter Beitrag"
#: ../../mod/admin.php:688
#: ../../mod/admin.php:699
msgid "Account"
msgstr "Nutzerkonto"
#: ../../mod/admin.php:690
#: ../../mod/admin.php:701
msgid ""
"Selected users will be deleted!\\n\\nEverything these users had posted on "
"this site will be permanently deleted!\\n\\nAre you sure?"
msgstr "Die markierten Nutzer werden gelöscht!\\n\\nAlle Beiträge, die diese Nutzer auf dieser Seite veröffentlicht haben, werden permanent gelöscht!\\n\\nBist du sicher?"
#: ../../mod/admin.php:691
#: ../../mod/admin.php:702
msgid ""
"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
"site will be permanently deleted!\\n\\nAre you sure?"
msgstr "Der Nutzer {0} wird gelöscht!\\n\\nAlles was dieser Nutzer auf dieser Seite veröffentlicht hat, wird permanent gelöscht!\\n\\nBist du sicher?"
#: ../../mod/admin.php:732
#: ../../mod/admin.php:743
#, php-format
msgid "Plugin %s disabled."
msgstr "Plugin %s deaktiviert."
#: ../../mod/admin.php:736
#: ../../mod/admin.php:747
#, php-format
msgid "Plugin %s enabled."
msgstr "Plugin %s aktiviert."
#: ../../mod/admin.php:746 ../../mod/admin.php:944
#: ../../mod/admin.php:757 ../../mod/admin.php:955
msgid "Disable"
msgstr "Ausschalten"
#: ../../mod/admin.php:748 ../../mod/admin.php:946
#: ../../mod/admin.php:759 ../../mod/admin.php:957
msgid "Enable"
msgstr "Einschalten"
#: ../../mod/admin.php:770 ../../mod/admin.php:975
#: ../../mod/admin.php:781 ../../mod/admin.php:986
msgid "Toggle"
msgstr "Umschalten"
#: ../../mod/admin.php:778 ../../mod/admin.php:985
#: ../../mod/admin.php:789 ../../mod/admin.php:996
msgid "Author: "
msgstr "Autor:"
#: ../../mod/admin.php:779 ../../mod/admin.php:986
#: ../../mod/admin.php:790 ../../mod/admin.php:997
msgid "Maintainer: "
msgstr "Betreuer:"
#: ../../mod/admin.php:908
#: ../../mod/admin.php:919
msgid "No themes found."
msgstr "Keine Themen gefunden."
#: ../../mod/admin.php:967
#: ../../mod/admin.php:978
msgid "Screenshot"
msgstr "Bildschirmfoto"
#: ../../mod/admin.php:1015
#: ../../mod/admin.php:1026
msgid "[Experimental]"
msgstr "[Experimentell]"
#: ../../mod/admin.php:1016
#: ../../mod/admin.php:1027
msgid "[Unsupported]"
msgstr "[Nicht unterstützt]"
#: ../../mod/admin.php:1043
#: ../../mod/admin.php:1054
msgid "Log settings updated."
msgstr "Protokolleinstellungen aktualisiert."
#: ../../mod/admin.php:1099
#: ../../mod/admin.php:1110
msgid "Clear"
msgstr "löschen"
#: ../../mod/admin.php:1105
#: ../../mod/admin.php:1116
msgid "Debugging"
msgstr "Protokoll führen"
#: ../../mod/admin.php:1106
#: ../../mod/admin.php:1117
msgid "Log file"
msgstr "Protokolldatei"
#: ../../mod/admin.php:1106
#: ../../mod/admin.php:1117
msgid ""
"Must be writable by web server. Relative to your Friendica top-level "
"directory."
msgstr "Webserver muss Schreibrechte besitzen. Abhängig vom Friendica-Installationsverzeichnis."
#: ../../mod/admin.php:1107
#: ../../mod/admin.php:1118
msgid "Log level"
msgstr "Protokoll-Level"
#: ../../mod/admin.php:1157
#: ../../mod/admin.php:1168
msgid "Close"
msgstr "Schließen"
#: ../../mod/admin.php:1163
#: ../../mod/admin.php:1174
msgid "FTP Host"
msgstr "FTP Host"
#: ../../mod/admin.php:1164
#: ../../mod/admin.php:1175
msgid "FTP Path"
msgstr "FTP Pfad"
#: ../../mod/admin.php:1165
#: ../../mod/admin.php:1176
msgid "FTP User"
msgstr "FTP Nutzername"
#: ../../mod/admin.php:1166
#: ../../mod/admin.php:1177
msgid "FTP Password"
msgstr "FTP Passwort"
#: ../../mod/profile.php:22 ../../boot.php:1065
#: ../../mod/profile.php:22 ../../boot.php:1074
msgid "Requested profile is not available."
msgstr "Das angefragte Profil ist nicht vorhanden."
#: ../../mod/profile.php:142 ../../mod/display.php:67
#: ../../mod/profile.php:152 ../../mod/display.php:77
msgid "Access to this profile has been restricted."
msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt."
#: ../../mod/profile.php:167
#: ../../mod/profile.php:177
msgid "Tips for New Members"
msgstr "Tipps für neue Nutzer"
@ -3927,8 +4037,8 @@ msgid ""
"Account not found and OpenID registration is not permitted on this site."
msgstr "Nutzerkonto wurde nicht gefunden, und OpenID-Registrierung ist auf diesem Server nicht gestattet."
#: ../../mod/openid.php:93 ../../include/auth.php:99
#: ../../include/auth.php:162
#: ../../mod/openid.php:93 ../../include/auth.php:98
#: ../../include/auth.php:161
msgid "Login failed."
msgstr "Anmeldung fehlgeschlagen."
@ -3948,7 +4058,7 @@ msgstr "Keine gemeinsamen Kontakte."
msgid "link"
msgstr "Link"
#: ../../mod/display.php:128
#: ../../mod/display.php:138
msgid "Item has been removed."
msgstr "Eintrag wurde entfernt."
@ -3960,7 +4070,7 @@ msgstr "Anwendungen"
msgid "No installed applications."
msgstr "Keine Applikationen installiert."
#: ../../mod/search.php:83 ../../include/text.php:678
#: ../../mod/search.php:85 ../../include/text.php:678
#: ../../include/text.php:679 ../../include/nav.php:91
msgid "Search"
msgstr "Suche"
@ -4244,7 +4354,7 @@ msgid ""
"be visible to anybody using the internet."
msgstr "Dies ist dein <strong>öffentliches</strong> Profil.<br />Es <strong>könnte</strong> für jeden Nutzer des Internets sichtbar sein."
#: ../../mod/profiles.php:638 ../../mod/directory.php:109
#: ../../mod/profiles.php:638 ../../mod/directory.php:111
msgid "Age: "
msgstr "Alter: "
@ -4252,28 +4362,28 @@ msgstr "Alter: "
msgid "Edit/Manage Profiles"
msgstr "Verwalte/Editiere Profile"
#: ../../mod/profiles.php:678 ../../boot.php:1174
#: ../../mod/profiles.php:678 ../../boot.php:1192
msgid "Change profile photo"
msgstr "Profilbild ändern"
#: ../../mod/profiles.php:679 ../../boot.php:1175
#: ../../mod/profiles.php:679 ../../boot.php:1193
msgid "Create New Profile"
msgstr "Neues Profil anlegen"
#: ../../mod/profiles.php:690 ../../boot.php:1185
#: ../../mod/profiles.php:690 ../../boot.php:1203
msgid "Profile Image"
msgstr "Profilbild"
#: ../../mod/profiles.php:692 ../../boot.php:1188
#: ../../mod/profiles.php:692 ../../boot.php:1206
msgid "visible to everybody"
msgstr "sichtbar für jeden"
#: ../../mod/profiles.php:693 ../../boot.php:1189
#: ../../mod/profiles.php:693 ../../boot.php:1207
msgid "Edit visibility"
msgstr "Sichtbarkeit bearbeiten"
#: ../../mod/filer.php:29 ../../include/conversation.php:1105
#: ../../include/conversation.php:1122
#: ../../mod/filer.php:29 ../../include/conversation.php:1136
#: ../../include/conversation.php:1153
msgid "Save to Folder:"
msgstr "In diesen Ordner verschieben:"
@ -4281,7 +4391,7 @@ msgstr "In diesen Ordner verschieben:"
msgid "- select -"
msgstr "- auswählen -"
#: ../../mod/tagger.php:103 ../../include/conversation.php:256
#: ../../mod/tagger.php:95 ../../include/conversation.php:267
#, php-format
msgid "%1$s tagged %2$s's %3$s with %4$s"
msgstr "%1$s hat %2$ss %3$s mit %4$s getaggt"
@ -4380,42 +4490,42 @@ msgstr "Keine Vorschläge. Falls der Server frisch aufgesetzt wurde, versuche es
msgid "Ignore/Hide"
msgstr "Ignorieren/Verbergen"
#: ../../mod/directory.php:47 ../../view/theme/diabook/theme.php:624
#: ../../mod/directory.php:49 ../../view/theme/diabook/theme.php:624
msgid "Global Directory"
msgstr "Weltweites Verzeichnis"
#: ../../mod/directory.php:55
#: ../../mod/directory.php:57
msgid "Find on this site"
msgstr "Auf diesem Server suchen"
#: ../../mod/directory.php:58
#: ../../mod/directory.php:60
msgid "Site Directory"
msgstr "Verzeichnis"
#: ../../mod/directory.php:112
#: ../../mod/directory.php:114
msgid "Gender: "
msgstr "Geschlecht:"
#: ../../mod/directory.php:134 ../../include/profile_advanced.php:17
#: ../../boot.php:1210
#: ../../mod/directory.php:136 ../../include/profile_advanced.php:17
#: ../../boot.php:1228
msgid "Gender:"
msgstr "Geschlecht:"
#: ../../mod/directory.php:136 ../../include/profile_advanced.php:37
#: ../../boot.php:1213
#: ../../mod/directory.php:138 ../../include/profile_advanced.php:37
#: ../../boot.php:1231
msgid "Status:"
msgstr "Status:"
#: ../../mod/directory.php:138 ../../include/profile_advanced.php:48
#: ../../boot.php:1215
#: ../../mod/directory.php:140 ../../include/profile_advanced.php:48
#: ../../boot.php:1233
msgid "Homepage:"
msgstr "Homepage:"
#: ../../mod/directory.php:140 ../../include/profile_advanced.php:58
#: ../../mod/directory.php:142 ../../include/profile_advanced.php:58
msgid "About:"
msgstr "Über:"
#: ../../mod/directory.php:178
#: ../../mod/directory.php:180
msgid "No entries (some entries may be hidden)."
msgstr "Keine Einträge (einige Einträge könnten versteckt sein)."
@ -4539,7 +4649,7 @@ msgid "Unable to set contact photo."
msgstr "Konnte das Bild des Kontakts nicht speichern."
#: ../../mod/dfrn_confirm.php:477 ../../include/diaspora.php:608
#: ../../include/conversation.php:162
#: ../../include/conversation.php:173
#, php-format
msgid "%1$s is now friends with %2$s"
msgstr "%1$s ist nun mit %2$s befreundet"
@ -4698,11 +4808,6 @@ msgstr "Kommaseparierte Anwendungen, die ignoriert werden sollen"
msgid "Problems with Facebook Real-Time Updates"
msgstr "Probleme mit Facebook Echtzeit-Updates"
#: ../../addon/facebook/facebook.php:728
#: ../../include/contact_selectors.php:81
msgid "Facebook"
msgstr "Facebook"
#: ../../addon/facebook/facebook.php:729
msgid "Facebook Connector Settings"
msgstr "Facebook-Verbindungseinstellungen"
@ -4932,7 +5037,7 @@ msgstr "verkündete unsterbliche Liebe für"
#: ../../addon/morepokes/morepokes.php:24
msgid "set fire to"
msgstr ""
msgstr "entflammt"
#: ../../addon/morepokes/morepokes.php:25
msgid "patent"
@ -5165,7 +5270,7 @@ msgstr "Aktiviere Planeten Plugin"
#: ../../addon/communityhome/communityhome.php:34
#: ../../addon/communityhome/twillingham/communityhome.php:28
#: ../../addon/communityhome/twillingham/communityhome.php:34
#: ../../include/nav.php:64 ../../boot.php:921
#: ../../include/nav.php:64 ../../boot.php:912
msgid "Login"
msgstr "Anmeldung"
@ -5194,7 +5299,7 @@ msgstr "Neueste Favoriten"
#: ../../addon/communityhome/communityhome.php:155
#: ../../view/theme/diabook/theme.php:562 ../../include/text.php:1397
#: ../../include/conversation.php:106 ../../include/conversation.php:236
#: ../../include/conversation.php:117 ../../include/conversation.php:247
msgid "event"
msgstr "Veranstaltung"
@ -5634,7 +5739,7 @@ msgid "Extended calendar with CalDAV-support"
msgstr "Erweiterter Kalender mit CalDAV Unterstützung."
#: ../../addon/dav/friendica/main.php:279
#: ../../addon/dav/friendica/main.php:280 ../../include/delivery.php:463
#: ../../addon/dav/friendica/main.php:280 ../../include/delivery.php:464
#: ../../include/enotify.php:28 ../../include/notifier.php:710
msgid "noreply"
msgstr "noreply"
@ -7276,6 +7381,7 @@ msgid "Sex Addict"
msgstr "Sexbesessen"
#: ../../include/profile_selectors.php:42 ../../include/user.php:278
#: ../../include/user.php:283
msgid "Friends"
msgstr "Freunde"
@ -7363,19 +7469,19 @@ msgstr "Ist mir nicht wichtig"
msgid "Ask me"
msgstr "Frag mich"
#: ../../include/event.php:20 ../../include/bb2diaspora.php:439
#: ../../include/event.php:20 ../../include/bb2diaspora.php:396
msgid "Starts:"
msgstr "Beginnt:"
#: ../../include/event.php:30 ../../include/bb2diaspora.php:447
#: ../../include/event.php:30 ../../include/bb2diaspora.php:404
msgid "Finishes:"
msgstr "Endet:"
#: ../../include/delivery.php:456 ../../include/notifier.php:703
#: ../../include/delivery.php:457 ../../include/notifier.php:703
msgid "(no subject)"
msgstr "(kein Betreff)"
#: ../../include/Scrape.php:575
#: ../../include/Scrape.php:576
msgid " on Last.fm"
msgstr " bei Last.fm"
@ -7418,7 +7524,7 @@ msgstr[1] "%d Kontakte"
msgid "poke"
msgstr "anstupsen"
#: ../../include/text.php:719 ../../include/conversation.php:201
#: ../../include/text.php:719 ../../include/conversation.php:212
msgid "poked"
msgstr "stupste"
@ -7677,10 +7783,6 @@ msgstr "Alle Kontakte"
msgid "edit"
msgstr "bearbeiten"
#: ../../include/group.php:239
msgid "Groups"
msgstr "Gruppen"
#: ../../include/group.php:240
msgid "Edit group"
msgstr "Gruppe bearbeiten"
@ -7693,7 +7795,7 @@ msgstr "Neue Gruppe erstellen"
msgid "Contacts not in any group"
msgstr "Kontakte in keiner Gruppe"
#: ../../include/nav.php:46 ../../boot.php:920
#: ../../include/nav.php:46 ../../boot.php:911
msgid "Logout"
msgstr "Abmelden"
@ -7701,7 +7803,7 @@ msgstr "Abmelden"
msgid "End this session"
msgstr "Diese Sitzung beenden"
#: ../../include/nav.php:49 ../../boot.php:1635
#: ../../include/nav.php:49 ../../boot.php:1659
msgid "Status"
msgstr "Status"
@ -7781,11 +7883,11 @@ msgstr "Verwalten"
msgid "Manage other pages"
msgstr "Andere Seiten verwalten"
#: ../../include/nav.php:138 ../../boot.php:1168
#: ../../include/nav.php:138 ../../boot.php:1186
msgid "Profiles"
msgstr "Profile"
#: ../../include/nav.php:138 ../../boot.php:1168
#: ../../include/nav.php:138 ../../boot.php:1186
msgid "Manage/edit profiles"
msgstr "Profile verwalten/editieren"
@ -7860,17 +7962,17 @@ msgstr "Alles"
msgid "Categories"
msgstr "Kategorien"
#: ../../include/auth.php:36
#: ../../include/auth.php:35
msgid "Logged out."
msgstr "Abgemeldet."
#: ../../include/auth.php:115
#: ../../include/auth.php:114
msgid ""
"We encountered a problem while logging in with the OpenID you provided. "
"Please check the correct spelling of the ID."
msgstr "Beim Versuch dich mit der von dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass du die OpenID richtig geschrieben hast."
#: ../../include/auth.php:115
#: ../../include/auth.php:114
msgid "The error message was:"
msgstr "Die Fehlermeldung lautete:"
@ -7945,15 +8047,15 @@ msgstr "Herzlichen Glückwunsch %s"
msgid "From: "
msgstr "Von: "
#: ../../include/bbcode.php:102 ../../include/bbcode.php:323
#: ../../include/bbcode.php:185 ../../include/bbcode.php:406
msgid "Image/photo"
msgstr "Bild/Foto"
#: ../../include/bbcode.php:288 ../../include/bbcode.php:308
#: ../../include/bbcode.php:371 ../../include/bbcode.php:391
msgid "$1 wrote:"
msgstr "$1 hat geschrieben:"
#: ../../include/bbcode.php:327 ../../include/bbcode.php:328
#: ../../include/bbcode.php:410 ../../include/bbcode.php:411
msgid "Encrypted content"
msgstr "Verschlüsselter Inhalt"
@ -8211,15 +8313,15 @@ msgstr "Konnte die Kontaktinformationen nicht empfangen."
msgid "following"
msgstr "folgen"
#: ../../include/items.php:3217
#: ../../include/items.php:3220
msgid "A new person is sharing with you at "
msgstr "Eine neue Person teilt mit dir auf "
#: ../../include/items.php:3217
#: ../../include/items.php:3220
msgid "You have a new follower at "
msgstr "Du hast einen neuen Kontakt auf "
#: ../../include/items.php:3886
#: ../../include/items.php:3901
msgid "Archives"
msgstr "Archiv"
@ -8291,19 +8393,19 @@ msgstr "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noc
msgid "An error occurred creating your default profile. Please try again."
msgstr "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal."
#: ../../include/security.php:21
#: ../../include/security.php:22
msgid "Welcome "
msgstr "Willkommen "
#: ../../include/security.php:22
#: ../../include/security.php:23
msgid "Please upload a profile photo."
msgstr "Bitte lade ein Profilbild hoch."
#: ../../include/security.php:25
#: ../../include/security.php:26
msgid "Welcome back "
msgstr "Willkommen zurück "
#: ../../include/security.php:329
#: ../../include/security.php:344
msgid ""
"The form security token was not correct. This probably happened because the "
"form has been opened for too long (>3 hours) before submitting it."
@ -8313,256 +8415,260 @@ msgstr "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das
msgid "stopped following"
msgstr "wird nicht mehr gefolgt"
#: ../../include/Contact.php:220 ../../include/conversation.php:1002
#: ../../include/Contact.php:220 ../../include/conversation.php:1033
msgid "Poke"
msgstr "Anstupsen"
#: ../../include/Contact.php:221 ../../include/conversation.php:996
#: ../../include/Contact.php:221 ../../include/conversation.php:1027
msgid "View Status"
msgstr "Pinnwand anschauen"
#: ../../include/Contact.php:222 ../../include/conversation.php:997
#: ../../include/Contact.php:222 ../../include/conversation.php:1028
msgid "View Profile"
msgstr "Profil anschauen"
#: ../../include/Contact.php:223 ../../include/conversation.php:998
#: ../../include/Contact.php:223 ../../include/conversation.php:1029
msgid "View Photos"
msgstr "Bilder anschauen"
#: ../../include/Contact.php:224 ../../include/Contact.php:237
#: ../../include/conversation.php:999
#: ../../include/conversation.php:1030
msgid "Network Posts"
msgstr "Netzwerkbeiträge"
#: ../../include/Contact.php:225 ../../include/Contact.php:237
#: ../../include/conversation.php:1000
#: ../../include/conversation.php:1031
msgid "Edit Contact"
msgstr "Kontakt bearbeiten"
#: ../../include/Contact.php:226 ../../include/Contact.php:237
#: ../../include/conversation.php:1001
#: ../../include/conversation.php:1032
msgid "Send PM"
msgstr "Private Nachricht senden"
#: ../../include/conversation.php:197
#: ../../include/conversation.php:208
#, php-format
msgid "%1$s poked %2$s"
msgstr "%1$s hat %2$s angestupst"
#: ../../include/conversation.php:281
#: ../../include/conversation.php:292
msgid "post/item"
msgstr "Nachricht/Beitrag"
#: ../../include/conversation.php:282
#: ../../include/conversation.php:293
#, php-format
msgid "%1$s marked %2$s's %3$s as favorite"
msgstr "%1$s hat %2$s\\s %3$s als Favorit markiert"
#: ../../include/conversation.php:902
#: ../../include/conversation.php:933
msgid "Delete Selected Items"
msgstr "Lösche die markierten Beiträge"
#: ../../include/conversation.php:1060
#: ../../include/conversation.php:1091
#, php-format
msgid "%s likes this."
msgstr "%s mag das."
#: ../../include/conversation.php:1060
#: ../../include/conversation.php:1091
#, php-format
msgid "%s doesn't like this."
msgstr "%s mag das nicht."
#: ../../include/conversation.php:1064
#: ../../include/conversation.php:1095
#, php-format
msgid "<span %1$s>%2$d people</span> like this."
msgstr "<span %1$s>%2$d Leute</span> mögen das."
#: ../../include/conversation.php:1066
#: ../../include/conversation.php:1097
#, php-format
msgid "<span %1$s>%2$d people</span> don't like this."
msgstr "<span %1$s>%2$d Leute</span> mögen das nicht."
#: ../../include/conversation.php:1072
#: ../../include/conversation.php:1103
msgid "and"
msgstr "und"
#: ../../include/conversation.php:1075
#: ../../include/conversation.php:1106
#, php-format
msgid ", and %d other people"
msgstr " und %d andere"
#: ../../include/conversation.php:1076
#: ../../include/conversation.php:1107
#, php-format
msgid "%s like this."
msgstr "%s mögen das."
#: ../../include/conversation.php:1076
#: ../../include/conversation.php:1107
#, php-format
msgid "%s don't like this."
msgstr "%s mögen das nicht."
#: ../../include/conversation.php:1100 ../../include/conversation.php:1117
#: ../../include/conversation.php:1131 ../../include/conversation.php:1148
msgid "Visible to <strong>everybody</strong>"
msgstr "Für <strong>jedermann</strong> sichtbar"
#: ../../include/conversation.php:1102 ../../include/conversation.php:1119
#: ../../include/conversation.php:1133 ../../include/conversation.php:1150
msgid "Please enter a video link/URL:"
msgstr "Bitte Link/URL zum Video einfügen:"
#: ../../include/conversation.php:1103 ../../include/conversation.php:1120
#: ../../include/conversation.php:1134 ../../include/conversation.php:1151
msgid "Please enter an audio link/URL:"
msgstr "Bitte Link/URL zum Audio einfügen:"
#: ../../include/conversation.php:1104 ../../include/conversation.php:1121
#: ../../include/conversation.php:1135 ../../include/conversation.php:1152
msgid "Tag term:"
msgstr "Tag:"
#: ../../include/conversation.php:1106 ../../include/conversation.php:1123
#: ../../include/conversation.php:1137 ../../include/conversation.php:1154
msgid "Where are you right now?"
msgstr "Wo hältst du dich jetzt gerade auf?"
#: ../../include/conversation.php:1166
#: ../../include/conversation.php:1197
msgid "upload photo"
msgstr "Bild hochladen"
#: ../../include/conversation.php:1168
#: ../../include/conversation.php:1199
msgid "attach file"
msgstr "Datei anhängen"
#: ../../include/conversation.php:1170
#: ../../include/conversation.php:1201
msgid "web link"
msgstr "Weblink"
#: ../../include/conversation.php:1171
#: ../../include/conversation.php:1202
msgid "Insert video link"
msgstr "Video-Adresse einfügen"
#: ../../include/conversation.php:1172
#: ../../include/conversation.php:1203
msgid "video link"
msgstr "Video-Link"
#: ../../include/conversation.php:1173
#: ../../include/conversation.php:1204
msgid "Insert audio link"
msgstr "Audio-Adresse einfügen"
#: ../../include/conversation.php:1174
#: ../../include/conversation.php:1205
msgid "audio link"
msgstr "Audio-Link"
#: ../../include/conversation.php:1176
#: ../../include/conversation.php:1207
msgid "set location"
msgstr "Ort setzen"
#: ../../include/conversation.php:1178
#: ../../include/conversation.php:1209
msgid "clear location"
msgstr "Ort löschen"
#: ../../include/conversation.php:1185
#: ../../include/conversation.php:1216
msgid "permissions"
msgstr "Zugriffsrechte"
#: ../../include/plugin.php:390 ../../include/plugin.php:392
#: ../../include/plugin.php:400 ../../include/plugin.php:402
msgid "Click here to upgrade."
msgstr "Zum Upgraden hier klicken."
#: ../../include/plugin.php:398
#: ../../include/plugin.php:408
msgid "This action exceeds the limits set by your subscription plan."
msgstr "Diese Aktion überschreitet die Obergrenze deines Abonnements."
#: ../../include/plugin.php:403
#: ../../include/plugin.php:413
msgid "This action is not available under your subscription plan."
msgstr "Diese Aktion ist in deinem Abonnement nicht verfügbar."
#: ../../boot.php:582
#: ../../boot.php:573
msgid "Delete this item?"
msgstr "Diesen Beitrag löschen?"
#: ../../boot.php:585
#: ../../boot.php:576
msgid "show fewer"
msgstr "weniger anzeigen"
#: ../../boot.php:792
#: ../../boot.php:783
#, php-format
msgid "Update %s failed. See error logs."
msgstr "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen."
#: ../../boot.php:794
#: ../../boot.php:785
#, php-format
msgid "Update Error at %s"
msgstr "Updatefehler bei %s"
#: ../../boot.php:895
#: ../../boot.php:886
msgid "Create a New Account"
msgstr "Neues Konto erstellen"
#: ../../boot.php:923
#: ../../boot.php:914
msgid "Nickname or Email address: "
msgstr "Spitzname oder E-Mail-Adresse: "
#: ../../boot.php:924
#: ../../boot.php:915
msgid "Password: "
msgstr "Passwort: "
#: ../../boot.php:927
#: ../../boot.php:918
msgid "Or login using OpenID: "
msgstr "Oder melde dich mit deiner OpenID an: "
#: ../../boot.php:933
#: ../../boot.php:924
msgid "Forgot your password?"
msgstr "Passwort vergessen?"
#: ../../boot.php:1100
#: ../../boot.php:1035
msgid "Requested account is not available."
msgstr "Das angefragte Profil ist nicht vorhanden."
#: ../../boot.php:1112
msgid "Edit profile"
msgstr "Profil bearbeiten"
#: ../../boot.php:1160
#: ../../boot.php:1178
msgid "Message"
msgstr "Nachricht"
#: ../../boot.php:1282 ../../boot.php:1368
#: ../../boot.php:1300 ../../boot.php:1386
msgid "g A l F d"
msgstr "l, d. F G \\U\\h\\r"
#: ../../boot.php:1283 ../../boot.php:1369
#: ../../boot.php:1301 ../../boot.php:1387
msgid "F d"
msgstr "d. F"
#: ../../boot.php:1328 ../../boot.php:1409
#: ../../boot.php:1346 ../../boot.php:1427
msgid "[today]"
msgstr "[heute]"
#: ../../boot.php:1340
#: ../../boot.php:1358
msgid "Birthday Reminders"
msgstr "Geburtstagserinnerungen"
#: ../../boot.php:1341
#: ../../boot.php:1359
msgid "Birthdays this week:"
msgstr "Geburtstage diese Woche:"
#: ../../boot.php:1402
#: ../../boot.php:1420
msgid "[No description]"
msgstr "[keine Beschreibung]"
#: ../../boot.php:1420
#: ../../boot.php:1438
msgid "Event Reminders"
msgstr "Veranstaltungserinnerungen"
#: ../../boot.php:1421
#: ../../boot.php:1439
msgid "Events this week:"
msgstr "Veranstaltungen diese Woche"
#: ../../boot.php:1638
#: ../../boot.php:1662
msgid "Status Messages and Posts"
msgstr "Statusnachrichten und Beiträge"
#: ../../boot.php:1645
#: ../../boot.php:1669
msgid "Profile Details"
msgstr "Profildetails"
#: ../../boot.php:1662
#: ../../boot.php:1686
msgid "Events and Calendar"
msgstr "Ereignisse und Kalender"
#: ../../boot.php:1669
#: ../../boot.php:1693
msgid "Only You Can See This"
msgstr "Nur du kannst das sehen"

View file

@ -1,7 +1,7 @@
<?php
function string_plural_select_de($n){
return ($n != 1);
return ($n != 1);;
}
;
$a->strings["Post successful."] = "Beitrag erfolgreich veröffentlicht.";
@ -486,11 +486,13 @@ $a->strings["Action after import:"] = "Aktion nach Import:";
$a->strings["Mark as seen"] = "Als gelesen markieren";
$a->strings["Move to folder"] = "In einen Ordner verschieben";
$a->strings["Move to folder:"] = "In diesen Ordner verschieben:";
$a->strings["No special theme for mobile devices"] = "Kein spezielles Theme für mobile Geräte verwenden.";
$a->strings["Display Settings"] = "Anzeige-Einstellungen";
$a->strings["Display Theme:"] = "Theme:";
$a->strings["Mobile Theme:"] = "Mobiles Theme";
$a->strings["Update browser every xx seconds"] = "Browser alle xx Sekunden aktualisieren";
$a->strings["Minimum of 10 seconds, no maximum"] = "Minimal 10 Sekunden, kein Maximum";
$a->strings["Number of items to display on the network page:"] = "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: ";
$a->strings["Number of items to display per page:"] = "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: ";
$a->strings["Maximum of 100 items"] = "Maximal 100 Beiträge";
$a->strings["Don't show emoticons"] = "Keine Smilies anzeigen";
$a->strings["Normal Account Page"] = "Normales Konto";
@ -602,19 +604,38 @@ $a->strings["Your message:"] = "Deine Nachricht:";
$a->strings["Welcome to Friendica"] = "Willkommen bei Friendica";
$a->strings["New Member Checklist"] = "Checkliste für neue Mitglieder";
$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Wir möchten dir einige Tipps und Links anbieten, die dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden.";
$a->strings["Getting Started"] = "Einstieg";
$a->strings["Friendica Walk-Through"] = "Friendica Rundgang";
$a->strings["On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Auf der <em>Quick Start</em> Seite findest du eine kurze Einleitung in die einzelnen Funktionen deines Profils und die Netzwerk-Reiter, wo du interessante Foren findest und neue Kontakte knüpfst.";
$a->strings["Go to Your Settings"] = "Gehe zu deinen Einstellungen";
$a->strings["On your <em>Settings</em> page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Ändere bitte unter <em>Einstellungen</em> dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Freundschaften mit anderen im Friendica Netzwerk zu schliessen.";
$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn du dein Profil nicht veröffentlichst, ist das als wenn du deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest du es veröffentlichen - außer all deine Freunde und potentiellen Freunde wissen genau, wie sie dich finden können.";
$a->strings["Profile"] = "Profil";
$a->strings["Upload Profile Photo"] = "Profilbild hochladen";
$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Lade ein Profilbild hoch falls du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Freunde zu finden, wenn du ein Bild von dir selbst verwendest, als wenn du dies nicht tust.";
$a->strings["Edit Your Profile"] = "Editiere dein Profil";
$a->strings["Edit your <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Editiere dein <strong>Standard</strong> Profil nach deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen deiner Freundesliste vor unbekannten Betrachtern des Profils.";
$a->strings["Profile Keywords"] = "Profil Schlüsselbegriffe";
$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Trage ein paar öffentliche Stichwörter in dein Standardprofil ein, die deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die deine Interessen teilen und können dir dann Kontakte vorschlagen.";
$a->strings["Connecting"] = "Verbindungen knüpfen";
$a->strings["Facebook"] = "Facebook";
$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Richte die Verbindung zu Facebook ein, wenn du im Augenblick ein Facebook-Konto hast, und (optional) deine Facebook-Freunde und -Unterhaltungen importieren willst.";
$a->strings["<em>If</em> this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "<em>Wenn</em> dies dein privater Server ist, könnte die Installation des Facebook Connectors deinen Umzug ins freie soziale Netz angenehmer gestalten.";
$a->strings["Importing Emails"] = "Emails Importieren";
$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Gib deine E-Mail-Zugangsinformationen auf der Connector-Einstellungsseite ein, falls du E-Mails aus deinem Posteingang importieren und mit Freunden und Mailinglisten interagieren willlst.";
$a->strings["Edit your <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Editiere dein <strong>Standard</strong> Profil nach deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen deiner Freundesliste vor unbekannten Betrachtern des Profils.";
$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Trage ein paar öffentliche Stichwörter in dein Standardprofil ein, die deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die deine Interessen teilen und können dir dann Kontakte vorschlagen.";
$a->strings["Go to Your Contacts Page"] = "Gehe zu deiner Kontakt-Seite";
$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add New Contact</em> dialog."] = "Die Kontakte-Seite ist die Einstiegsseite, von der aus du Kontakte verwalten und dich mit Freunden in anderen Netzwerken verbinden kannst. Normalerweise gibst du dazu einfach ihre Adresse oder die URL der Seite im Kasten <em>Neuen Kontakt hinzufügen</em> ein.";
$a->strings["Go to Your Site's Directory"] = "Gehe zum Verzeichnis deiner Friendica Instanz";
$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "Über die Verzeichnisseite kannst du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem <em>Verbinden</em> oder <em>Folgen</em> Link auf deren Profilseiten Ausschau und gib deine eigene Profiladresse an, falls du danach gefragt wirst.";
$a->strings["Finding New People"] = "Neue Leute kennenlernen";
$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Freunde zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Freunde vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden.";
$a->strings["Groups"] = "Gruppen";
$a->strings["Group Your Contacts"] = "Gruppiere deine Kontakte";
$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Sobald du einige Freunde gefunden hast, organisiere sie in Gruppen zur privaten Kommunikation im Seitenmenü der Kontakte-Seite. Du kannst dann mit jeder dieser Gruppen von der Netzwerkseite aus privat interagieren.";
$a->strings["Why Aren't My Posts Public?"] = "Warum sind meine Beiträge nicht öffentlich?";
$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respektiert deine Privatsphäre. Mit der Grundeinstellung werden deine Beiträge ausschließlich deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch.";
$a->strings["Getting Help"] = "Hilfe bekommen";
$a->strings["Go to the Help Section"] = "Zum Hilfe Abschnitt gehen";
$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Unsere <strong>Hilfe</strong> Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten.";
$a->strings["Item not available."] = "Beitrag nicht verfügbar.";
$a->strings["Item was not found."] = "Beitrag konnte nicht gefunden werden.";
@ -632,7 +653,6 @@ $a->strings["Members"] = "Mitglieder";
$a->strings["Click on a contact to add or remove."] = "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen";
$a->strings["Invalid profile identifier."] = "Ungültiger Profil-Bezeichner";
$a->strings["Profile Visibility Editor"] = "Editor für die Profil-Sichtbarkeit";
$a->strings["Profile"] = "Profil";
$a->strings["Visible To"] = "Sichtbar für";
$a->strings["All Contacts (with secure profile access)"] = "Alle Kontakte (mit gesichertem Profilzugriff)";
$a->strings["No contacts."] = "Keine Kontakte.";
@ -684,7 +704,6 @@ $a->strings["Shift-reload the page or clear browser cache if the new photo does
$a->strings["Unable to process image"] = "Bild konnte nicht verarbeitet werden";
$a->strings["Image exceeds size limit of %d"] = "Bildgröße überschreitet das Limit von %d";
$a->strings["Upload File:"] = "Datei hochladen:";
$a->strings["Upload Profile Photo"] = "Profilbild hochladen";
$a->strings["Upload"] = "Hochladen";
$a->strings["skip this step"] = "diesen Schritt überspringen";
$a->strings["select a photo from your photo albums"] = "wähle ein Foto von deinen Fotoalben";
@ -740,7 +759,6 @@ $a->strings["Pending registrations"] = "Anstehende Anmeldungen";
$a->strings["Version"] = "Version";
$a->strings["Active plugins"] = "Aktive Plugins";
$a->strings["Site settings updated."] = "Seiteneinstellungen aktualisiert.";
$a->strings["Don't apply a special theme for mobile devices."] = "Kein spezielles Theme für mobile Geräte verwenden.";
$a->strings["Closed"] = "Geschlossen";
$a->strings["Requires approval"] = "Bedarf der Zustimmung";
$a->strings["Open"] = "Offen";
@ -761,6 +779,10 @@ $a->strings["SSL link policy"] = "Regeln für SSL Links";
$a->strings["Determines whether generated links should be forced to use SSL"] = "Bestimmt, ob generierte Links SSL verwenden müssen";
$a->strings["Maximum image size"] = "Maximale Größe von Bildern";
$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Maximale Upload-Größe von Bildern in Bytes. Standard ist 0, d.h. ohne Limit.";
$a->strings["Maximum image length"] = "Maximale Länge von Bildern";
$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Maximale Länge in Pixeln der längsten Seite eines hoch geladenen Bildes. Grundeinstellung ist -1 was keine Einschränkung bedeutet.";
$a->strings["JPEG image quality"] = "Qualität des JPEG Bildes";
$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "Hoch geladene JPEG Bilder werden mit dieser Qualität [0-100] gespeichert. Grundeinstellung ist 100, kein Qualitätsverlust.";
$a->strings["Register policy"] = "Registrierungsmethode";
$a->strings["Register text"] = "Registrierungstext";
$a->strings["Will be displayed prominently on the registration page."] = "Wird gut sichtbar auf der Registrierungsseite angezeigt.";
@ -778,6 +800,8 @@ $a->strings["Global directory update URL"] = "URL für Updates beim weltweiten V
$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL für Update des globalen Verzeichnisses. Wenn nichts eingetragen ist, bleibt das globale Verzeichnis unerreichbar.";
$a->strings["Allow threaded items"] = "Erlaube Threads in Diskussionen";
$a->strings["Allow infinite level threading for items on this site."] = "Erlaube ein unendliches Level für Threads auf dieser Seite.";
$a->strings["No default permissions for new users"] = "Keine Standard-Zugriffsrechte für Beiträge neuer Nutzer";
$a->strings["New users will have no private permissions set for their posts by default, making their posts public until they change it."] = "Neue Benutzer werden keine Voreinstellungen für die Zugriffrechte haben, so dass ihre Beiträge öffentlich sind, bis sie es ändern.";
$a->strings["Block multiple registrations"] = "Unterbinde Mehrfachregistrierung";
$a->strings["Disallow users to register additional accounts for use as pages."] = "Benutzern nicht erlauben, weitere Konten als zusätzliche Profile anzulegen.";
$a->strings["OpenID support"] = "OpenID Unterstützung";
@ -1055,7 +1079,6 @@ $a->strings["Do not import your Facebook profile wall conversations"] = "Faceboo
$a->strings["If you choose to link conversations and leave both of these boxes unchecked, your Facebook profile wall will be merged with your profile wall on this website and your privacy settings on this website will be used to determine who may see the conversations."] = "Wenn du Facebook-Konversationen importierst und diese beiden Häkchen nicht setzt, wird deine Facebook-Pinnwand mit der Pinnwand hier auf dieser Webseite vereinigt. Die Privatsphäre-Einstellungen für deine Pinnwand auf dieser Webseite geben dann an, wer die Konversationen sehen kann.";
$a->strings["Comma separated applications to ignore"] = "Kommaseparierte Anwendungen, die ignoriert werden sollen";
$a->strings["Problems with Facebook Real-Time Updates"] = "Probleme mit Facebook Echtzeit-Updates";
$a->strings["Facebook"] = "Facebook";
$a->strings["Facebook Connector Settings"] = "Facebook-Verbindungseinstellungen";
$a->strings["Facebook API Key"] = "Facebook API Schlüssel";
$a->strings["Error: it appears that you have specified the App-ID and -Secret in your .htconfig.php file. As long as they are specified there, they cannot be set using this form.<br><br>"] = "Fehler: du scheinst die App-ID und das App-Geheimnis in deiner .htconfig.php Datei angegeben zu haben. Solange sie dort festgelegt werden kannst du dieses Formular hier nicht verwenden.<br><br>";
@ -1113,7 +1136,7 @@ $a->strings["point out the new poke feature to"] = "die neue Anstups-Funktion ze
$a->strings["pointed out the new poke feature to"] = "zeigte die neue Anstups-Funktion";
$a->strings["declare undying love for"] = "unterbliche Liebe verkünden";
$a->strings["declared undying love for"] = "verkündete unsterbliche Liebe für";
$a->strings["set fire to"] = "";
$a->strings["set fire to"] = "entflammt";
$a->strings["patent"] = "patentieren";
$a->strings["patented"] = "patentierte";
$a->strings["stroke beard"] = "sich den Bart kratzen";
@ -1746,7 +1769,6 @@ $a->strings["A deleted group with this name was revived. Existing item permissio
$a->strings["Default privacy group for new contacts"] = "Voreingestellte Gruppe für neue Kontakte";
$a->strings["Everybody"] = "Alle Kontakte";
$a->strings["edit"] = "bearbeiten";
$a->strings["Groups"] = "Gruppen";
$a->strings["Edit group"] = "Gruppe bearbeiten";
$a->strings["Create a new group"] = "Neue Gruppe erstellen";
$a->strings["Contacts not in any group"] = "Kontakte in keiner Gruppe";
@ -1940,6 +1962,7 @@ $a->strings["Nickname or Email address: "] = "Spitzname oder E-Mail-Adresse: ";
$a->strings["Password: "] = "Passwort: ";
$a->strings["Or login using OpenID: "] = "Oder melde dich mit deiner OpenID an: ";
$a->strings["Forgot your password?"] = "Passwort vergessen?";
$a->strings["Requested account is not available."] = "Das angefragte Profil ist nicht vorhanden.";
$a->strings["Edit profile"] = "Profil bearbeiten";
$a->strings["Message"] = "Nachricht";
$a->strings["g A l F d"] = "l, d. F G \\U\\h\\r";

View file

@ -1,7 +1,7 @@
<script>$(function(){ previewTheme($("#id_$field.0")[0]); });</script>
<div class='field select'>
<label for='id_$field.0'>$field.1</label>
<select name='$field.0' id='id_$field.0' onchange="previewTheme(this);" >
<select name='$field.0' id='id_$field.0' {{ if $field.5 }}onchange="previewTheme(this);"{{ endif }} >
{{ for $field.4 as $opt=>$val }}<option value="$opt" {{ if $opt==$field.2 }}selected="selected"{{ endif }}>$val</option>{{ endfor }}
</select>
<span class='field_help'>$field.3</span>

View file

@ -4,6 +4,7 @@
<input type='hidden' name='form_security_token' value='$form_security_token'>
{{inc field_themeselect.tpl with $field=$theme }}{{endinc}}
{{inc field_themeselect.tpl with $field=$mobile_theme }}{{endinc}}
{{inc field_input.tpl with $field=$ajaxint }}{{endinc}}
{{inc field_input.tpl with $field=$itemspage_network }}{{endinc}}
{{inc field_checkbox.tpl with $field=$nosmile}}{{endinc}}

View file

@ -11,6 +11,11 @@
<div id="contact-edit-drop-link-end"></div>
<div class="vcard">
<div class="fn">$name</div>
<div id="profile-photo-wrapper"><img class="photo" style="width: 175px; height: 175px;" src="$photo" alt="$name" /></div>
</div>
<div id="contact-edit-nav-wrapper" >
<div id="contact-edit-links">

View file

@ -0,0 +1,2 @@
$follow_widget

View file

@ -24,16 +24,17 @@
<?php } else { ?>
<div class='main-container'>
<div class='main-content-container'>
<aside><?php if(x($page,'aside')) echo $page['aside']; ?></aside>
<!-- <div class='main-content-container'>-->
<div class='section-wrapper'>
<?php if( ($a->module === 'settings') && x($page,'aside')) echo $page['aside']; ?>
<section><?php if(x($page,'content')) echo $page['content']; ?>
<div id="page-footer"></div>
</section>
</div>
<right_aside><?php if(x($page,'right_aside')) echo $page['right_aside']; ?></right_aside>
<?php if( ($a->module === 'contacts') && x($page,'aside')) echo $page['aside']; ?>
<footer><?php if(x($page,'footer')) echo $page['footer']; ?></footer>
</div>
<!-- </div>-->
</div>
<?php } ?>
<?php if(x($page,'end')) echo $page['end']; ?>

View file

@ -1,7 +1,7 @@
<div class='field select'>
<label for='id_$field.0'>$field.1</label>
<select name='$field.0' id='id_$field.0' onchange="previewTheme(this);" >
<select name='$field.0' id='id_$field.0' {{ if $field.5 }}onchange="previewTheme(this);"{{ endif }} >
{{ for $field.4 as $opt=>$val }}<option value="$opt" {{ if $opt==$field.2 }}selected="selected"{{ endif }}>$val</option>{{ endfor }}
</select>
<span class='field_help'>$field.3</span>

View file

@ -0,0 +1,11 @@
<div class="widget{{ if $class }} $class{{ endif }}">
<!-- {{if $title}}<h3>$title</h3>{{endif}}-->
{{if $desc}}<div class="desc">$desc</div>{{endif}}
<ul class="tabs">
{{ for $items as $item }}
<li class="tool"><a href="$item.url" class="tab {{ if $item.selected }}selected{{ endif }}">$item.label</a></li>
{{ endfor }}
</ul>
</div>

View file

@ -684,7 +684,7 @@ Array.prototype.remove = function(item) {
function previewTheme(elm) {
theme = $j(elm).val();
$j.getJSON('pretheme?f=&theme=' + theme,function(data) {
$j('#theme-preview').html('<div id="theme-desc">' + data.desc + '</div><div id="theme-version">' + data.version + '</div><div id="theme-credits">' + data.credits + '</div><a href="' + data.img + '"><img src="' + data.img + '" width="320" height="240" alt="' + theme + '" /></a>');
$j('#theme-preview').html('<div id="theme-desc">' + data.desc + '</div><div id="theme-version">' + data.version + '</div><div id="theme-credits">' + data.credits + '</div>');
});
}

File diff suppressed because one or more lines are too long

View file

@ -8,7 +8,7 @@
<!-- <a id="system-menu-link" class="nav-link" href="#system-menu" title="Menu">Menu</a>-->
<div class="nav-button-container">
<!-- <a class="system-menu-link nav-link" href="#system-menu" title="Menu">-->
<img rel="#system-menu-list" class="nav-link" src="/view/theme/frost-mobile/images/menu.png">
<img rel="#system-menu-list" class="nav-link" src="$baseurl/view/theme/frost-mobile/images/menu.png">
<!-- </a>-->
<ul id="system-menu-list" class="nav-menu-list">
{{ if $nav.login }}
@ -57,7 +57,7 @@
<!-- <a id="nav-notifications-linkmenu" class="nav-link" href="$nav.notifications.0" rel="#nav-notifications-menu" title="$nav.notifications.1">$nav.notifications.1</a>-->
<div class="nav-button-container">
<!-- <a id="nav-notifications-linkmenu" class="nav-link" href="$nav.notifications.0" rel="#nav-notifications-menu" title="$nav.notifications.1">-->
<img rel="#nav-notifications-menu" class="nav-link" src="/view/theme/frost-mobile/images/notifications.png">
<img rel="#nav-notifications-menu" class="nav-link" src="$baseurl/view/theme/frost-mobile/images/notifications.png">
<!-- </a>-->
<span id="notify-update" class="nav-ajax-left"></span>
<ul id="nav-notifications-menu" class="notifications-menu-popup">
@ -71,7 +71,7 @@
<!-- <a id="contacts-menu-link" class="nav-link" href="#contacts-menu" title="Contacts">Contacts</a>-->
<div class="nav-button-container">
<!-- <a class="contacts-menu-link nav-link" href="#contacts-menu" title="Contacts">-->
<img rel="#contacts-menu-list" class="nav-link" src="/view/theme/frost-mobile/images/contacts.png">
<img rel="#contacts-menu-list" class="nav-link" src="$baseurl/view/theme/frost-mobile/images/contacts.png">
<!--</a>-->
{{ if $nav.introductions }}
<span id="intro-update" class="nav-ajax-left"></span>
@ -95,7 +95,7 @@
<!-- <a id="nav-messages-link" class="nav-link $nav.messages.2 $sel.messages nav-load-page-link" href="$nav.messages.0" title="$nav.messages.3" >$nav.messages.1</a>-->
<div class="nav-button-container">
<a id="nav-messages-link" class="$nav.messages.2 $sel.messages nav-load-page-link" href="$nav.messages.0" title="$nav.messages.3" >
<img src="/view/theme/frost-mobile/images/message.png" class="nav-link">
<img src="$baseurl/view/theme/frost-mobile/images/message.png" class="nav-link">
</a>
<span id="mail-update" class="nav-ajax-left"></span>
</div>
@ -104,7 +104,7 @@
<!-- <a id="network-menu-link" class="nav-link" href="#network-menu" title="Network">Network</a>-->
<div class="nav-button-container">
<!-- <a class="network-menu-link nav-link" href="#network-menu" title="Network">-->
<img rel="#network-menu-list" class="nav-link" src="/view/theme/frost-mobile/images/network.png">
<img rel="#network-menu-list" class="nav-link" src="$baseurl/view/theme/frost-mobile/images/network.png">
<!-- </a>-->
{{ if $nav.network }}
<span id="net-update" class="nav-ajax-left"></span>

View file

@ -54,7 +54,7 @@ img { border :0px; }
background: url(login-bg.gif) no-repeat;
background-position: 0 50%;
padding-left: 18px;
width: 252px;
width: 212px;
margin-left: 20px;
}
.openid:hover {
@ -288,9 +288,8 @@ div.main-container {
/* aside */
aside {
/* display: block;*/
display: none;
/*aside {
display: block;
min-height: 112px;
width: 250px;
@ -299,9 +298,7 @@ aside {
margin: 1em 0px 0px 0px;
position: absolute;
/* float:left;*/
}
}*/
#dfrn-request-link {
display: block;
@ -409,7 +406,15 @@ footer {
}
#theme-preview {
margin: 15px 0 15px 150px;
margin: 15px 0 15px 15px;
}
#theme-version {
display: block;
font-weight: bold;
}
#theme-credits {
margin-top: 15px;
margin-bottom: 15px;
}
/* from default */
@ -486,11 +491,11 @@ footer {
}
.settings-widget .selected {
padding: 3px;
/* -moz-border-radius: 3px;*/
/* padding: 3px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
border: 1px solid #CCCCCC;
border: 1px solid #CCCCCC;*/
background: #F8F8F8;
font-weight: bold;
}
@ -1017,7 +1022,11 @@ input#dfrn-url {
margin-bottom: 20px;
}
.settings-widget ul {
#id_theme,
#id_mobile_theme {
width: 280px;
}
/*.settings-widget ul {
list-style-type: none;
padding: 0px;
}
@ -1025,7 +1034,7 @@ input#dfrn-url {
.settings-widget li {
margin-left: 24px;
margin-bottom: 8px;
}
}*/
#gender-select, #marital-select, #sexual-select {
@ -1037,6 +1046,11 @@ input#dfrn-url {
float: left;
}
#contacts-search-submit {
font-size: 18px;
padding: 5px 10px;
}
#contacts-display-wrapper {
padding-left: 35px;
}
@ -1053,7 +1067,7 @@ input#dfrn-url {
padding-left: 15px;
padding-right: 15px;
width: 95px;
height: 170px;
height: 200px;
}
#contacts-search-end {
margin-bottom: 10px;
@ -2408,7 +2422,9 @@ a.mail-list-link {
margin-top: 5px;
}
#side-follow-submit, #side-peoplefind-submit {
margin-top: 15px;
font-size: 18px;
padding: 5px 10px;
margin: 10px 0px 10px 10px;
}
#side-match-link {
@ -2421,7 +2437,7 @@ aside input[type='text'] {
.widget {
border: 1px solid #DDDDDD;
padding: 8px;
padding: 18px;
margin-top: 5px;
/* -moz-border-radius:5px;*/
-webkit-border-radius:5px;
@ -3336,7 +3352,7 @@ aside input[type='text'] {
margin-bottom: 10px;
padding-bottom: 10px;
overflow: auto;
width: 100%
/* width: 100%*/
}
.field label {
@ -3347,9 +3363,13 @@ aside input[type='text'] {
.field input,
.field textarea {
width: 270px;
width: 230px;
margin-left: 20px;
}
.field input[type=checkbox],
.field input[type=radio] {
width: auto;
}
.field textarea { height: 100px; }
.field_help {
display: block;

View file

@ -4,7 +4,7 @@
* Name: Frost--mobile version
* Description: Like frosted glass
* Credits: Navigation icons taken from http://iconza.com. Other icons taken from http://thenounproject.com, including: Like, Dislike, Black Lock, Unlock, Pencil, Tag, Camera, Paperclip (Marie Coons), Folder (Sergio Calcara), Chain-link (Andrew Fortnum), Speaker (Harold Kim), Quotes (Henry Ryder), Video Camera (Anas Ramadan), and Left Arrow, Right Arrow, and Delete X (all three P.J. Onori). All under Attribution (CC BY 3.0). Others from The Noun Project are public domain or No Rights Reserved (CC0).
* Version: Version 0.2.10
* Version: Version 0.2.11
* Author: Zach P <techcity@f.shmuz.in>
* Maintainer: Zach P <techcity@f.shmuz.in>
*/

View file

@ -1,7 +1,7 @@
<div class='field select'>
<label for='id_$field.0'>$field.1</label>
<select name='$field.0' id='id_$field.0' onchange="previewTheme(this);" >
<select name='$field.0' id='id_$field.0' {{ if $field.5 }}onchange="previewTheme(this);"{{ endif }} >
{{ for $field.4 as $opt=>$val }}<option value="$opt" {{ if $opt==$field.2 }}selected="selected"{{ endif }}>$val</option>{{ endfor }}
</select>
<span class='field_help'>$field.3</span>

View file

@ -375,6 +375,14 @@ div.wall-item-content-wrapper.shiny {
#theme-preview {
margin: 15px 0 15px 150px;
}
#theme-version {
display: block;
font-weight: bold;
}
#theme-credits {
margin-top: 15px;
margin-bottom: 15px;
}
/* from default */
#jot-perms-icon,
@ -3167,6 +3175,10 @@ aside input[type='text'] {
.field textarea {
width: 400px;
}
.field input[type=checkbox],
.field input[type=radio] {
width: auto;
}
.field textarea { height: 100px; }
.field_help {
display: block;
@ -3823,11 +3835,4 @@ ul.notifications-menu-popup {
width: 130px;
}
#theme-version {
display: block;
font-weight: bold;
}
#theme-credits {
margin-top: 15px;
margin-bottom: 15px;
}

View file

@ -4,7 +4,7 @@
* Name: Frost
* Description: Like frosted glass
* Credits: Navigation icons taken from http://iconza.com. Other icons taken from http://thenounproject.com, including: Like, Dislike, Black Lock, Unlock, Pencil, Tag, Camera, Paperclip (Marie Coons), Folder (Sergio Calcara), Chain-link (Andrew Fortnum), Speaker (Harold Kim), Quotes (Henry Ryder), Video Camera (Anas Ramadan), and Left Arrow, Right Arrow, and Delete X (all three P.J. Onori). All under Attribution (CC BY 3.0). Others from The Noun Project are public domain or No Rights Reserved (CC0).
* Version: Version 0.2.8
* Version: Version 0.2.9
* Author: Zach P <techcity@f.shmuz.in>
* Maintainer: Zach P <techcity@f.shmuz.in>
*/

View file

@ -1,6 +1,6 @@
<a name="$item.id" ></a>
<!--<div class="wall-item-outside-wrapper $item.indent$item.previewing" id="wall-item-outside-wrapper-$item.id" >-->
<div class="wall-item-content-wrapper $item.indent" id="wall-item-content-wrapper-$item.id" >
<div class="wall-item-content-wrapper $item.indent $item.previewing" id="wall-item-content-wrapper-$item.id" >
<div class="wall-item-info" id="wall-item-info-$item.id">
<div class="wall-item-photo-wrapper" id="wall-item-photo-wrapper-$item.id"
onmouseover="if (typeof t$item.id != 'undefined') clearTimeout(t$item.id); openMenu('wall-item-photo-menu-button-$item.id')"

View file

@ -7,7 +7,7 @@
<div id="tread-wrapper-$item.id" class="tread-wrapper $item.toplevel">
<a name="$item.id" ></a>
<!--<div class="wall-item-outside-wrapper $item.indent$item.previewing" id="wall-item-outside-wrapper-$item.id" >-->
<div class="wall-item-content-wrapper $item.indent" id="wall-item-content-wrapper-$item.id" >
<div class="wall-item-content-wrapper $item.indent $item.previewing" id="wall-item-content-wrapper-$item.id" >
<div class="wall-item-info" id="wall-item-info-$item.id">
<div class="wall-item-photo-wrapper" id="wall-item-photo-wrapper-$item.id"
onmouseover="if (typeof t$item.id != 'undefined') clearTimeout(t$item.id); openMenu('wall-item-photo-menu-button-$item.id')"

View file

@ -1,6 +1,6 @@
<a name="$item.id" ></a>
<!--<div class="wall-item-outside-wrapper $item.indent$item.previewing wallwall" id="wall-item-outside-wrapper-$item.id" >-->
<div class="wall-item-content-wrapper $item.indent" id="wall-item-content-wrapper-$item.id" >
<div class="wall-item-content-wrapper $item.indent $item.previewing wallwall" id="wall-item-content-wrapper-$item.id" >
<div class="wall-item-info wallwall" id="wall-item-info-$item.id">
<div class="wall-item-photo-wrapper wwto" id="wall-item-ownerphoto-wrapper-$item.id" >
<a href="$item.owner_url" target="redir" title="$item.olinktitle" class="wall-item-photo-link" id="wall-item-ownerphoto-link-$item.id">

View file

@ -7,7 +7,7 @@
<div id="tread-wrapper-$item.id" class="tread-wrapper $item.toplevel">
<a name="$item.id" ></a>
<!--<div class="wall-item-outside-wrapper $item.indent$item.previewing wallwall" id="wall-item-outside-wrapper-$item.id" >-->
<div class="wall-item-content-wrapper $item.indent" id="wall-item-content-wrapper-$item.id" >
<div class="wall-item-content-wrapper $item.indent $item.previewing wallwall" id="wall-item-content-wrapper-$item.id" >
<div class="wall-item-info wallwall" id="wall-item-info-$item.id">
<div class="wall-item-photo-wrapper wwto" id="wall-item-ownerphoto-wrapper-$item.id" >
<a href="$item.owner_url" target="redir" title="$item.olinktitle" class="wall-item-photo-link" id="wall-item-ownerphoto-link-$item.id">

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 443 B

View file

@ -0,0 +1,24 @@
<div class="contact-entry-wrapper" id="contact-entry-wrapper-$contact.id" >
<div class="contact-entry-photo-wrapper" >
<div class="contact-entry-photo mframe" id="contact-entry-photo-$contact.id"
onmouseover="if (typeof t$contact.id != 'undefined') clearTimeout(t$contact.id); openMenu('contact-photo-menu-button-$contact.id')"
onmouseout="t$contact.id=setTimeout('closeMenu(\'contact-photo-menu-button-$contact.id\'); closeMenu(\'contact-photo-menu-$contact.id\');',200)" >
<a href="$contact.url" title="$contact.img_hover" /><img src="$contact.thumb" $contact.sparkle alt="$contact.name" /></a>
{{ if $contact.photo_menu }}
<span onclick="openClose('contact-photo-menu-$contact.id');" class="fakelink contact-photo-menu-button" id="contact-photo-menu-button-$contact.id">menu</span>
<div class="contact-photo-menu" id="contact-photo-menu-$contact.id">
<ul>
$contact.photo_menu
</ul>
</div>
{{ endif }}
</div>
</div>
<div class="contact-entry-photo-end" ></div>
<div class="contact-entry-name" id="contact-entry-name-$contact.id" >$contact.name</div>
<div class="contact-entry-end" ></div>
</div>

BIN
view/theme/smoothly/dot.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 74 B

View file

@ -0,0 +1,8 @@
<div id="follow-sidebar" class="widget">
<h3>$connect</h3>
<div id="connect-desc">$desc</div>
<form action="follow" method="post" />
<input id="side-follow-url" type="text-sidebar" name="url" size="24" title="$hint" /><input id="side-follow-submit" type="submit" name="submit" value="$follow" />
</form>
</div>

View file

@ -0,0 +1,8 @@
<div class="group-delete-wrapper" id="group-delete-wrapper-$id" >
<a href="group/drop/$id"
onclick="return confirmDelete();"
title="$delete"
id="group-delete-icon-$id"
class="drophide group-delete-icon" onmouseover="imgbright(this);" onmouseout="imgdull(this);" >Delete Group</a>
</div>
<div class="group-delete-end"></div>

View file

@ -0,0 +1,16 @@
<h2>$title</h2>
<div id="group-edit-wrapper" >
<form action="group/$gid" id="group-edit-form" method="post" >
<div id="group-edit-name-wrapper" >
<label id="group-edit-name-label" for="group-edit-name" >$gname</label>
<input type="text" id="group-edit-name" name="groupname" value="$name" />
<input type="submit" name="submit" value="$submit">
$drop
</div>
<div id="group-edit-name-end"></div>
<div id="group-edit-desc">$desc</div>
<div id="group-edit-select-end" ></div>
</form>
</div>

View file

@ -0,0 +1,28 @@
<div class="widget" id="group-sidebar">
<h3>$title</h3>
<div id="sidebar-group-list">
<ul id="sidebar-group-ul">
{{ for $groups as $group }}
<li class="sidebar-group-li">
{{ if $group.cid }}
<input type="checkbox"
class="{{ if $group.selected }}ticked{{ else }}unticked {{ endif }} action"
onclick="contactgroupChangeMember('$group.id','$group.cid');return true;"
{{ if $group.ismember }}checked="checked"{{ endif }}
/>
{{ endif }}
{{ if $group.edit }}
<a class="groupsideedit" href="$group.edit.href"><span class="icon small-pencil"></span></a>
{{ endif }}
<a class="sidebar-group-element {{ if $group.selected }}group-selected{{ endif }}" href="$group.href">$group.text</a>
</li>
{{ endfor }}
</ul>
</div>
<div id="sidebar-new-group">
<a href="group/new">$createtext</a>
</div>
</div>

Binary file not shown.

After

Width:  |  Height:  |  Size: 911 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

View file

@ -0,0 +1,1463 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="250"
height="200"
id="svg3403"
version="1.1"
inkscape:version="0.48.2 r9819"
sodipodi:docname="tbicons.svg"
inkscape:export-filename="C:\Users\mikemac\Downloads\bitmap.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90">
<defs
id="defs3405">
<filter
color-interpolation-filters="sRGB"
inkscape:collect="always"
id="filter4064">
<feBlend
inkscape:collect="always"
mode="lighten"
in2="BackgroundImage"
id="feBlend4066" />
</filter>
<inkscape:path-effect
effect="gears"
id="path-effect4050"
is_visible="true"
teeth="10"
phi="10" />
<inkscape:path-effect
effect="gears"
id="path-effect3436"
is_visible="true"
teeth="10"
phi="10" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="5.5022029"
inkscape:cx="124.49559"
inkscape:cy="134"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="true"
showguides="false"
inkscape:guide-bbox="true"
inkscape:snap-global="false"
inkscape:window-width="1534"
inkscape:window-height="1035"
inkscape:window-x="335"
inkscape:window-y="198"
inkscape:window-maximized="0">
<inkscape:grid
type="xygrid"
id="grid4016"
empspacing="5"
visible="true"
enabled="false"
snapvisiblegridlinesonly="false"
spacingx="20px"
spacingy="20px"
dotted="false"
units="px"
originx="50px"
originy="200px" />
<inkscape:grid
type="xygrid"
id="grid4018"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="false"
color="#ff0000"
opacity="0.1254902"
empcolor="#ff0000"
empopacity="0.25098039"
originy="200px"
spacingx="22px"
spacingy="22px" />
</sodipodi:namedview>
<metadata
id="metadata3408">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Livello 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-852.36218)">
<rect
style="fill:#2e3436;fill-opacity:1;stroke:none;display:inline"
id="rect4007"
width="44"
height="132"
x="1.5883562e-17"
y="852.36218"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<g
id="ico_dir"
transform="matrix(0.43114968,0,0,0.43114968,-178.47604,867.63556)"
style="stroke:#888a85;display:inline"
inkscape:label="#g3846">
<rect
ry="6"
rx="6"
y="18.790752"
x="417.14285"
height="44.285713"
width="44.285713"
id="rect3820"
style="fill:none;stroke:#888a85;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
inkscape:connector-curvature="0"
style="fill:#2e3436;stroke:#888a85;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 449.12191,27.281249 c -2.07646,0 -3.76352,1.688406 -3.76352,3.766518 0,2.078113 1.68706,3.766518 3.76352,3.766518 2.07646,0 3.76351,-1.688405 3.76351,-3.766518 0,-2.078112 -1.68705,-3.766518 -3.76351,-3.766518 z m 0,7.533036 c -5.23267,0 -9.47459,5.783883 -9.47459,12.932589 0,0.201529 0.0196,0.406525 0.0264,0.605804 l 18.89654,0 c 0.007,-0.199279 0.0264,-0.404275 0.0264,-0.605804 0,-7.148706 -4.24192,-12.932589 -9.47459,-12.932589 z"
id="path3830" />
<path
id="path3832"
d="m 431.26477,26.924106 c -2.07646,0 -3.76352,1.688406 -3.76352,3.766518 0,2.078113 1.68706,3.766518 3.76352,3.766518 2.07646,0 3.76351,-1.688405 3.76351,-3.766518 0,-2.078112 -1.68705,-3.766518 -3.76351,-3.766518 z m 0,7.533036 c -5.23267,0 -9.47459,5.783883 -9.47459,12.932589 0,0.201529 0.0196,0.406525 0.0264,0.605804 l 18.89654,0 c 0.007,-0.199279 0.0264,-0.404275 0.0264,-0.605804 0,-7.148706 -4.24192,-12.932589 -9.47459,-12.932589 z"
style="fill:#2e3436;stroke:#888a85;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path3822"
d="M 439.46875,29.78125 C 437.00319,29.78125 435,31.784443 435,34.25 c 0,2.465557 2.00319,4.46875 4.46875,4.46875 2.46556,0 4.46875,-2.003193 4.46875,-4.46875 0,-2.465557 -2.00319,-4.46875 -4.46875,-4.46875 z m 0,8.9375 c -6.2132,0 -11.25,6.862234 -11.25,15.34375 0,0.239102 0.0233,0.482318 0.0313,0.71875 l 22.4375,0 c 0.008,-0.236432 0.0313,-0.479648 0.0313,-0.71875 0,-8.481516 -5.0368,-15.34375 -11.25,-15.34375 z"
style="fill:#2e3436;stroke:#888a85;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
</g>
<g
id="ico_search"
transform="matrix(0.43114968,0,0,0.43114968,-201.41936,889.63556)"
style="stroke:#888a85;display:inline"
inkscape:label="#g3852">
<rect
style="fill:none;stroke:#888a85;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="rect3837"
width="44.285713"
height="44.285713"
x="470.35715"
y="18.790752"
rx="6"
ry="6" />
<path
inkscape:connector-curvature="0"
id="path3839"
d="m 477.97758,26.469174 c -3.64342,3.88426 -3.47037,9.984211 0.41389,13.627637 3.52011,3.301856 8.87059,3.441123 12.55302,0.54905 -0.17428,0.682501 0.0188,1.431563 0.57086,1.949383 l 13.7666,12.913032 c 0.80813,0.75802 2.06896,0.717682 2.82698,-0.09044 l 0.68414,-0.729357 c 0.75802,-0.808126 0.71768,-2.06896 -0.0904,-2.82698 l -13.7666,-12.913032 c -0.55205,-0.51782 -1.31192,-0.66264 -1.98188,-0.445086 2.65077,-3.859767 2.16978,-9.190402 -1.35033,-12.492258 -3.88426,-3.643426 -9.9828,-3.426204 -13.62623,0.458055 z"
style="fill:#2e3436;fill-opacity:1;stroke:#888a85;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
transform="translate(-0.21428562,-0.35714286)"
d="m 492.49999,33.612183 c 0,4.043513 -3.27792,7.321428 -7.32143,7.321428 -4.04352,0 -7.32143,-3.277915 -7.32143,-7.321428 0,-4.043514 3.27791,-7.321429 7.32143,-7.321429 4.04351,0 7.32143,3.277915 7.32143,7.321429 z"
sodipodi:ry="7.3214288"
sodipodi:rx="7.3214288"
sodipodi:cy="33.612183"
sodipodi:cx="485.17856"
id="path3844"
style="fill:#2e3436;fill-opacity:1;stroke:#888a85;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
sodipodi:type="arc" />
</g>
<g
inkscape:label="#g3852"
style="stroke:#888a85;display:inline"
transform="matrix(0.43114968,0,0,0.43114968,-201.41936,845.63556)"
id="ico_logout">
<rect
ry="6"
rx="6"
y="18.790752"
x="470.35715"
height="44.285713"
width="44.285713"
id="rect3995"
style="fill:none;stroke:#888a85;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
style="fill:#555753;fill-opacity:1;stroke:#888a85;stroke-width:2.31938004"
d="M 504.69787,28.735741 480.30214,53.131477"
id="path4003"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path4005"
d="M 504.69787,53.131473 480.30214,28.735746"
style="fill:#555753;fill-opacity:1;stroke:#888a85;stroke-width:2.31938004" />
</g>
<g
inkscape:label="#g3846"
style="stroke:#d3d7cf;display:inline"
transform="matrix(0.43114968,0,0,0.43114968,-156.47604,867.63556)"
id="ico_dir_on">
<rect
style="fill:none;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="rect4011"
width="44.285713"
height="44.285713"
x="417.14285"
y="18.790752"
rx="6"
ry="6" />
<path
id="path4013"
d="m 449.12191,27.281249 c -2.07646,0 -3.76352,1.688406 -3.76352,3.766518 0,2.078113 1.68706,3.766518 3.76352,3.766518 2.07646,0 3.76351,-1.688405 3.76351,-3.766518 0,-2.078112 -1.68705,-3.766518 -3.76351,-3.766518 z m 0,7.533036 c -5.23267,0 -9.47459,5.783883 -9.47459,12.932589 0,0.201529 0.0196,0.406525 0.0264,0.605804 l 18.89654,0 c 0.007,-0.199279 0.0264,-0.404275 0.0264,-0.605804 0,-7.148706 -4.24192,-12.932589 -9.47459,-12.932589 z"
style="fill:#2e3436;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
style="fill:#2e3436;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 431.26477,26.924106 c -2.07646,0 -3.76352,1.688406 -3.76352,3.766518 0,2.078113 1.68706,3.766518 3.76352,3.766518 2.07646,0 3.76351,-1.688405 3.76351,-3.766518 0,-2.078112 -1.68705,-3.766518 -3.76351,-3.766518 z m 0,7.533036 c -5.23267,0 -9.47459,5.783883 -9.47459,12.932589 0,0.201529 0.0196,0.406525 0.0264,0.605804 l 18.89654,0 c 0.007,-0.199279 0.0264,-0.404275 0.0264,-0.605804 0,-7.148706 -4.24192,-12.932589 -9.47459,-12.932589 z"
id="path4015" />
<path
style="fill:#2e3436;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="M 439.46875,29.78125 C 437.00319,29.78125 435,31.784443 435,34.25 c 0,2.465557 2.00319,4.46875 4.46875,4.46875 2.46556,0 4.46875,-2.003193 4.46875,-4.46875 0,-2.465557 -2.00319,-4.46875 -4.46875,-4.46875 z m 0,8.9375 c -6.2132,0 -11.25,6.862234 -11.25,15.34375 0,0.239102 0.0233,0.482318 0.0313,0.71875 l 22.4375,0 c 0.008,-0.236432 0.0313,-0.479648 0.0313,-0.71875 0,-8.481516 -5.0368,-15.34375 -11.25,-15.34375 z"
id="path4017"
inkscape:connector-curvature="0" />
</g>
<g
inkscape:label="#g3852"
style="stroke:#d3d7cf;display:inline"
transform="matrix(0.43114968,0,0,0.43114968,-179.41936,889.63556)"
id="ico_search_on">
<rect
ry="6"
rx="6"
y="18.790752"
x="470.35715"
height="44.285713"
width="44.285713"
id="rect4021"
style="fill:none;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
style="fill:#2e3436;fill-opacity:1;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 477.97758,26.469174 c -3.64342,3.88426 -3.47037,9.984211 0.41389,13.627637 3.52011,3.301856 8.87059,3.441123 12.55302,0.54905 -0.17428,0.682501 0.0188,1.431563 0.57086,1.949383 l 13.7666,12.913032 c 0.80813,0.75802 2.06896,0.717682 2.82698,-0.09044 l 0.68414,-0.729357 c 0.75802,-0.808126 0.71768,-2.06896 -0.0904,-2.82698 l -13.7666,-12.913032 c -0.55205,-0.51782 -1.31192,-0.66264 -1.98188,-0.445086 2.65077,-3.859767 2.16978,-9.190402 -1.35033,-12.492258 -3.88426,-3.643426 -9.9828,-3.426204 -13.62623,0.458055 z"
id="path4023"
inkscape:connector-curvature="0" />
<path
sodipodi:type="arc"
style="fill:#2e3436;fill-opacity:1;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="path4025"
sodipodi:cx="485.17856"
sodipodi:cy="33.612183"
sodipodi:rx="7.3214288"
sodipodi:ry="7.3214288"
d="m 492.49999,33.612183 c 0,4.043513 -3.27792,7.321428 -7.32143,7.321428 -4.04352,0 -7.32143,-3.277915 -7.32143,-7.321428 0,-4.043514 3.27791,-7.321429 7.32143,-7.321429 4.04351,0 7.32143,3.277915 7.32143,7.321429 z"
transform="translate(-0.21428562,-0.35714286)" />
</g>
<g
id="ico_logout_on"
transform="matrix(0.43114968,0,0,0.43114968,-179.41936,845.63556)"
style="stroke:#d3d7cf;display:inline"
inkscape:label="#g3852">
<rect
style="fill:none;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="rect4029"
width="44.285713"
height="44.285713"
x="470.35715"
y="18.790752"
rx="6"
ry="6" />
<path
inkscape:connector-curvature="0"
id="path4031"
d="M 504.69787,28.735741 480.30214,53.131477"
style="fill:#555753;fill-opacity:1;stroke:#d3d7cf;stroke-width:2.31938004" />
<path
style="fill:#555753;fill-opacity:1;stroke:#d3d7cf;stroke-width:2.31938004"
d="M 504.69787,53.131473 480.30214,28.735746"
id="path4033"
inkscape:connector-curvature="0" />
</g>
<g
inkscape:label="#g3852"
style="stroke:#888a85;display:inline;filter:url(#filter4064)"
transform="matrix(0.43114968,0,0,0.43114968,-201.41936,911.63556)"
id="g4040">
<rect
ry="6"
rx="6"
y="18.790752"
x="470.35715"
height="44.285713"
width="44.285713"
id="rect4042"
style="fill:none;stroke:#888a85;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
style="fill:#2e3436;fill-opacity:1;stroke:#888a85;stroke-width:1.66475451;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
d="m 484.90604,52.679071 c 0,0 -0.72327,1.028211 -2.88202,1.697409 -0.63474,-0.494653 -1.23439,-1.034334 -1.79294,-1.613646 0.43889,-2.217071 1.3855,-3.044283 1.3855,-3.044283 l 2.04237,-1.648571 c -0.73879,-0.915258 -1.3342,-1.946011 -1.75793,-3.043257 l -2.44847,0.945549 c 0,0 -1.18951,0.40671 -3.32932,-0.320779 -0.22277,-0.773276 -0.39067,-1.56235 -0.50204,-2.359331 1.65823,-1.535673 2.91028,-1.648499 2.91028,-1.648499 l 2.62132,-0.133248 c -0.0597,-1.174706 0.0645,-2.358577 0.36658,-3.495332 l -2.53663,-0.674208 c 0,0 -1.20139,-0.37014 -2.50493,-2.216441 0.2743,-0.756533 0.60227,-1.4936 0.98062,-2.20383 2.24419,-0.267701 3.32343,0.376954 3.32343,0.376954 l 2.19901,1.432971 c 0.64217,-0.985455 1.43848,-1.870246 2.35108,-2.612309 l -1.65589,-2.03644 c 0,0 -0.75438,-1.005609 -0.72373,-3.265497 0.66659,-0.45082 1.36515,-0.854347 2.08871,-1.206542 1.97294,1.102524 2.46715,2.258424 2.46715,2.258424 l 0.93675,2.451844 c 1.09876,-0.419794 2.26306,-0.667544 3.43754,-0.731472 l -0.14265,-2.620822 c 0,0 -0.0192,-1.25697 1.3339,-3.067245 0.80426,0.02709 1.6066,0.111239 2.39899,0.251604 0.94809,2.051624 0.66849,3.277254 0.66849,3.277254 l -0.6833,2.534196 c 1.13566,0.306213 2.22322,0.790136 3.21097,1.428761 l 1.42508,-2.204138 c 0,0 0.72327,-1.028211 2.88202,-1.697409 0.63474,0.494653 1.23439,1.034334 1.79294,1.613646 -0.43889,2.217071 -1.3855,3.044283 -1.3855,3.044283 l -2.04237,1.648571 c 0.73879,0.915258 1.3342,1.946011 1.75793,3.043257 l 2.44847,-0.945549 c 0,0 1.18951,-0.40671 3.32932,0.320779 0.22277,0.773276 0.39067,1.56235 0.50204,2.359331 -1.65823,1.535673 -2.91028,1.648499 -2.91028,1.648499 l -2.62132,0.133248 c 0.0597,1.174706 -0.0645,2.358577 -0.36658,3.495332 l 2.53663,0.674208 c 0,0 1.20139,0.37014 2.50493,2.216441 -0.2743,0.756533 -0.60227,1.4936 -0.98062,2.20383 -2.24419,0.267701 -3.32343,-0.376954 -3.32343,-0.376954 l -2.19901,-1.432971 c -0.64217,0.985455 -1.43848,1.870246 -2.35108,2.612309 l 1.65589,2.03644 c 0,0 0.75438,1.005609 0.72373,3.265497 -0.66659,0.45082 -1.36515,0.854347 -2.08871,1.206542 -1.97294,-1.102524 -2.46715,-2.258424 -2.46715,-2.258424 l -0.93675,-2.451844 c -1.09876,0.419794 -2.26306,0.667544 -3.43754,0.731472 l 0.14265,2.620822 c 0,0 0.0192,1.25697 -1.3339,3.067245 -0.80426,-0.02709 -1.6066,-0.111239 -2.39899,-0.251604 -0.94809,-2.051624 -0.66849,-3.277254 -0.66849,-3.277254 l 0.6833,-2.534196 c -1.13566,-0.306213 -2.22322,-0.790136 -3.21097,-1.428761 l -1.42508,2.204138"
id="path4048"
inkscape:connector-curvature="0"
inkscape:path-effect="#path-effect4050"
inkscape:original-d="M 484.55417,49.762303 492.5,40.933609 504.27158,48.879434" />
</g>
<g
id="g4068"
transform="matrix(0.43114968,0,0,0.43114968,-179.41936,911.63556)"
style="stroke:#d3d7cf;display:inline;filter:url(#filter4064)"
inkscape:label="#g3852">
<rect
style="fill:none;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="rect4070"
width="44.285713"
height="44.285713"
x="470.35715"
y="18.790752"
rx="6"
ry="6" />
<path
inkscape:original-d="M 484.55417,49.762303 492.5,40.933609 504.27158,48.879434"
inkscape:path-effect="#path-effect4050"
inkscape:connector-curvature="0"
id="path4072"
d="m 484.90604,52.679071 c 0,0 -0.72327,1.028211 -2.88202,1.697409 -0.63474,-0.494653 -1.23439,-1.034334 -1.79294,-1.613646 0.43889,-2.217071 1.3855,-3.044283 1.3855,-3.044283 l 2.04237,-1.648571 c -0.73879,-0.915258 -1.3342,-1.946011 -1.75793,-3.043257 l -2.44847,0.945549 c 0,0 -1.18951,0.40671 -3.32932,-0.320779 -0.22277,-0.773276 -0.39067,-1.56235 -0.50204,-2.359331 1.65823,-1.535673 2.91028,-1.648499 2.91028,-1.648499 l 2.62132,-0.133248 c -0.0597,-1.174706 0.0645,-2.358577 0.36658,-3.495332 l -2.53663,-0.674208 c 0,0 -1.20139,-0.37014 -2.50493,-2.216441 0.2743,-0.756533 0.60227,-1.4936 0.98062,-2.20383 2.24419,-0.267701 3.32343,0.376954 3.32343,0.376954 l 2.19901,1.432971 c 0.64217,-0.985455 1.43848,-1.870246 2.35108,-2.612309 l -1.65589,-2.03644 c 0,0 -0.75438,-1.005609 -0.72373,-3.265497 0.66659,-0.45082 1.36515,-0.854347 2.08871,-1.206542 1.97294,1.102524 2.46715,2.258424 2.46715,2.258424 l 0.93675,2.451844 c 1.09876,-0.419794 2.26306,-0.667544 3.43754,-0.731472 l -0.14265,-2.620822 c 0,0 -0.0192,-1.25697 1.3339,-3.067245 0.80426,0.02709 1.6066,0.111239 2.39899,0.251604 0.94809,2.051624 0.66849,3.277254 0.66849,3.277254 l -0.6833,2.534196 c 1.13566,0.306213 2.22322,0.790136 3.21097,1.428761 l 1.42508,-2.204138 c 0,0 0.72327,-1.028211 2.88202,-1.697409 0.63474,0.494653 1.23439,1.034334 1.79294,1.613646 -0.43889,2.217071 -1.3855,3.044283 -1.3855,3.044283 l -2.04237,1.648571 c 0.73879,0.915258 1.3342,1.946011 1.75793,3.043257 l 2.44847,-0.945549 c 0,0 1.18951,-0.40671 3.32932,0.320779 0.22277,0.773276 0.39067,1.56235 0.50204,2.359331 -1.65823,1.535673 -2.91028,1.648499 -2.91028,1.648499 l -2.62132,0.133248 c 0.0597,1.174706 -0.0645,2.358577 -0.36658,3.495332 l 2.53663,0.674208 c 0,0 1.20139,0.37014 2.50493,2.216441 -0.2743,0.756533 -0.60227,1.4936 -0.98062,2.20383 -2.24419,0.267701 -3.32343,-0.376954 -3.32343,-0.376954 l -2.19901,-1.432971 c -0.64217,0.985455 -1.43848,1.870246 -2.35108,2.612309 l 1.65589,2.03644 c 0,0 0.75438,1.005609 0.72373,3.265497 -0.66659,0.45082 -1.36515,0.854347 -2.08871,1.206542 -1.97294,-1.102524 -2.46715,-2.258424 -2.46715,-2.258424 l -0.93675,-2.451844 c -1.09876,0.419794 -2.26306,0.667544 -3.43754,0.731472 l 0.14265,2.620822 c 0,0 0.0192,1.25697 -1.3339,3.067245 -0.80426,-0.02709 -1.6066,-0.111239 -2.39899,-0.251604 -0.94809,-2.051624 -0.66849,-3.277254 -0.66849,-3.277254 l 0.6833,-2.534196 c -1.13566,-0.306213 -2.22322,-0.790136 -3.21097,-1.428761 l -1.42508,2.204138"
style="fill:#2e3436;fill-opacity:1;stroke:#d3d7cf;stroke-width:1.66475451;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
</g>
<g
id="g4074"
transform="matrix(0.43114968,0,0,0.43114968,-201.41936,933.6356)"
style="stroke:#888a85;display:inline;filter:url(#filter4064)"
inkscape:label="#g3852">
<rect
style="fill:none;stroke:#888a85;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="rect4076"
width="44.285713"
height="44.285713"
x="470.35715"
y="18.790752"
rx="6"
ry="6" />
<path
style="fill:#2e3436;fill-opacity:1;stroke:#888a85;stroke-width:0.79446769;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 871.875,46.1875 c -1.86715,0.0095 -3.39179,1.39545 -3.65625,3.1875 -0.13267,-0.238038 -0.39472,-0.407705 -0.6875,-0.40625 L 860.21875,49 c -0.42864,0.0022 -0.75216,0.352585 -0.75,0.78125 l 0,0.375 c 0.002,0.428643 0.35273,0.783324 0.78125,0.78125 l 0.71875,0 c -0.017,0.04029 -0.0313,0.109644 -0.0313,0.15625 l 0,1.90625 c 0,0.186425 0.15733,0.34375 0.34375,0.34375 l 0.9375,0 c 0.18642,0 0.34375,-0.157325 0.34375,-0.34375 l 0,-1.90625 c 0,-0.04661 -0.0143,-0.115964 -0.0313,-0.15625 l 1.25,0 c -0.017,0.04029 -0.0313,0.109644 -0.0313,0.15625 l 0,1.90625 c 0,0.186425 0.15733,0.34375 0.34375,0.34375 l 0.9375,0 c 0.18642,0 0.34375,-0.157325 0.34375,-0.34375 l 0,-1.90625 c 0,-0.05736 -0.006,-0.140333 -0.0313,-0.1875 l 2.1875,0 c 0.29284,-0.0015 0.55725,-0.166865 0.6875,-0.40625 0.28274,1.789274 1.85161,3.165775 3.71875,3.15625 2.0603,-0.01052 3.69802,-1.720959 3.6875,-3.78125 -0.0105,-2.060291 -1.68969,-3.698024 -3.75,-3.6875 z"
transform="matrix(2.3193801,0,0,2.3193801,-1519.671,-74.824492)"
id="path3839-4"
inkscape:connector-curvature="0" />
</g>
<g
inkscape:label="#g3852"
style="stroke:#d3d7cf;display:inline;filter:url(#filter4064)"
transform="matrix(0.43114968,0,0,0.43114968,-179.41936,933.6356)"
id="g4106">
<rect
ry="6"
rx="6"
y="18.790752"
x="470.35715"
height="44.285713"
width="44.285713"
id="rect4108"
style="fill:none;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
id="path4110"
transform="matrix(2.3193801,0,0,2.3193801,-1519.671,-74.824492)"
d="m 871.875,46.1875 c -1.86715,0.0095 -3.39179,1.39545 -3.65625,3.1875 -0.13267,-0.238038 -0.39472,-0.407705 -0.6875,-0.40625 L 860.21875,49 c -0.42864,0.0022 -0.75216,0.352585 -0.75,0.78125 l 0,0.375 c 0.002,0.428643 0.35273,0.783324 0.78125,0.78125 l 0.71875,0 c -0.017,0.04029 -0.0313,0.109644 -0.0313,0.15625 l 0,1.90625 c 0,0.186425 0.15733,0.34375 0.34375,0.34375 l 0.9375,0 c 0.18642,0 0.34375,-0.157325 0.34375,-0.34375 l 0,-1.90625 c 0,-0.04661 -0.0143,-0.115964 -0.0313,-0.15625 l 1.25,0 c -0.017,0.04029 -0.0313,0.109644 -0.0313,0.15625 l 0,1.90625 c 0,0.186425 0.15733,0.34375 0.34375,0.34375 l 0.9375,0 c 0.18642,0 0.34375,-0.157325 0.34375,-0.34375 l 0,-1.90625 c 0,-0.05736 -0.006,-0.140333 -0.0313,-0.1875 l 2.1875,0 c 0.29284,-0.0015 0.55725,-0.166865 0.6875,-0.40625 0.28274,1.789274 1.85161,3.165775 3.71875,3.15625 2.0603,-0.01052 3.69802,-1.720959 3.6875,-3.78125 -0.0105,-2.060291 -1.68969,-3.698024 -3.75,-3.6875 z"
style="fill:#2e3436;fill-opacity:1;stroke:#d3d7cf;stroke-width:0.79446769;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
inkscape:connector-curvature="0" />
</g>
<g
id="g4031-9"
transform="matrix(0.45818575,0.68148541,-0.68148541,0.45818575,-2.7897502,485.71067)"
style="display:inline"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90">
<path
sodipodi:type="arc"
style="fill:#555753;fill-opacity:1;stroke:none"
id="path4002-3"
sodipodi:cx="559.67499"
sodipodi:cy="21.754047"
sodipodi:rx="0.88388348"
sodipodi:ry="0.88388348"
d="m 560.55887,21.754047 c 0,0.488156 -0.39573,0.883884 -0.88388,0.883884 -0.48816,0 -0.88389,-0.395728 -0.88389,-0.883884 0,-0.488155 0.39573,-0.883883 0.88389,-0.883883 0.48815,0 0.88388,0.395728 0.88388,0.883883 z"
transform="matrix(2.8,0,0,2.8,-999.63682,-35.444974)" />
<path
transform="matrix(2.1,0,0,2.1,-600.17454,-24.194616)"
d="m 560.55887,21.754047 c 0,0.488156 -0.39573,0.883884 -0.88388,0.883884 -0.48816,0 -0.88389,-0.395728 -0.88389,-0.883884 0,-0.488155 0.39573,-0.883883 0.88389,-0.883883 0.48815,0 0.88388,0.395728 0.88388,0.883883 z"
sodipodi:ry="0.88388348"
sodipodi:rx="0.88388348"
sodipodi:cy="21.754047"
sodipodi:cx="559.67499"
id="path4004-9"
style="fill:#555753;fill-opacity:1;stroke:none"
sodipodi:type="arc" />
<path
sodipodi:type="arc"
style="fill:#555753;fill-opacity:1;stroke:none"
id="path4006-4"
sodipodi:cx="559.67499"
sodipodi:cy="21.754047"
sodipodi:rx="0.88388348"
sodipodi:ry="0.88388348"
d="m 560.55887,21.754047 c 0,0.488156 -0.39573,0.883884 -0.88388,0.883884 -0.48816,0 -0.88389,-0.395728 -0.88389,-0.883884 0,-0.488155 0.39573,-0.883883 0.88389,-0.883883 0.48815,0 0.88388,0.395728 0.88388,0.883883 z"
transform="matrix(2.2,0,0,2.2,-671.07968,-28.226177)" />
<path
style="fill:none;stroke:#555753;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 563.21055,31.653543 4.41942,-6.187185 -7.6014,-6.187184"
id="path4010-56"
inkscape:connector-curvature="0" />
<path
transform="matrix(2.4,0,0,2.4,-780.18625,-20.379394)"
d="m 560.55887,21.754047 c 0,0.488156 -0.39573,0.883884 -0.88388,0.883884 -0.48816,0 -0.88389,-0.395728 -0.88389,-0.883884 0,-0.488155 0.39573,-0.883883 0.88389,-0.883883 0.48815,0 0.88388,0.395728 0.88388,0.883883 z"
sodipodi:ry="0.88388348"
sodipodi:rx="0.88388348"
sodipodi:cy="21.754047"
sodipodi:cx="559.67499"
id="path4008-8"
style="fill:#555753;fill-opacity:1;stroke:none"
sodipodi:type="arc" />
<path
style="fill:none;stroke:#555753;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 567.45319,25.466358 7.6014,-4.065864"
id="path4012-5"
inkscape:connector-curvature="0" />
</g>
<path
style="fill:none;stroke:#555753;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
d="m 218.00001,881.25007 -5.8125,0 0,9.1875 10.53125,0 0,-5.2187"
id="rect4432"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccc"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<rect
style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
id="rect4387-8"
width="14.5"
height="9"
x="173.12502"
y="858.11218"
rx="2.9268293"
ry="2.9268293"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<path
sodipodi:type="arc"
style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
id="path4391-3"
sodipodi:cx="408.8125"
sodipodi:cy="220.26843"
sodipodi:rx="2.6875"
sodipodi:ry="2.71875"
d="m 411.5,220.26843 c 0,1.50153 -1.20323,2.71875 -2.6875,2.71875 -1.48427,0 -2.6875,-1.21722 -2.6875,-2.71875 0,-1.50152 1.20323,-2.71875 2.6875,-2.71875 1.48427,0 2.6875,1.21723 2.6875,2.71875 z"
transform="matrix(1.1489362,0,0,1.1489362,-286.13697,609.51131)"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<path
style="fill:#ffffff;fill-opacity:1;stroke:#555753;stroke-width:0.47366244;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 242.44524,860.13287 c -0.98011,0 -1.77562,0.6006 -1.77562,1.3586 l 0,1.5632 c 0,0.7581 0.79551,1.3733 1.77562,1.3733 l 4.53349,0 c 0.98012,0 1.77562,-0.6152 1.77562,-1.3733 l 0,-1.5632 c 0,-0.758 -0.7955,-1.3586 -1.77562,-1.3586 l -4.53349,0 z m 0.41557,1.0372 3.70235,0 c 0.51967,0 0.94448,0.2879 0.94448,0.6574 l 0,0.8912 c 0,0.3695 -0.42481,0.672 -0.94448,0.672 l -3.70235,0 c -0.51966,0 -0.94447,-0.3025 -0.94447,-0.672 l 0,-0.8912 c 0,-0.3695 0.42481,-0.6574 0.94447,-0.6574 z"
id="rect4397-0"
inkscape:connector-curvature="0"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<path
inkscape:connector-curvature="0"
id="path4418-4"
d="m 232.97199,860.13287 c -0.98011,0 -1.77562,0.6006 -1.77562,1.3586 l 0,1.5632 c 0,0.7581 0.79551,1.3733 1.77562,1.3733 l 4.53349,0 c 0.98012,0 1.77562,-0.6152 1.77562,-1.3733 l 0,-1.5632 c 0,-0.758 -0.7955,-1.3586 -1.77562,-1.3586 l -4.53349,0 z m 0.41557,1.0372 3.70236,0 c 0.51966,0 0.94447,0.2879 0.94447,0.6574 l 0,0.8912 c 0,0.3695 -0.42481,0.672 -0.94447,0.672 l -3.70236,0 c -0.51966,0 -0.94447,-0.3025 -0.94447,-0.672 l 0,-0.8912 c 0,-0.3695 0.42481,-0.6574 0.94447,-0.6574 z"
style="fill:#ffffff;fill-opacity:1;stroke:#555753;stroke-width:0.47366244;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:#555753;stroke-width:0.47366244;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
id="rect4395-0"
width="6.7246785"
height="1.6362466"
x="236.7028"
y="861.57312"
rx="1.0135853"
ry="0.81812328"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<rect
style="fill:#555753;fill-opacity:1;stroke:none;display:inline"
id="rect4416-1"
width="14.495689"
height="6.5407376"
x="132.5179"
y="901.32971"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<text
xml:space="preserve"
style="font-size:5.54432058px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Liberation Sans;-inkscape-font-specification:Liberation Sans"
x="139.36653"
y="900.60059"
id="text4406-9"
sodipodi:linespacing="100%"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90"><tspan
sodipodi:role="line"
id="tspan4408-6"
x="139.36653"
y="900.60059">You</tspan><tspan
sodipodi:role="line"
x="139.36653"
y="906.1449"
id="tspan4410-2"
style="fill:#eeeeec">Tube</tspan></text>
<path
style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 118.03127,895.15627 0,0.3125 c 0,1.2601 -0.0643,3.4345 -0.35937,5.75 l -1.5625,1e-4 c -0.80183,0.011 -1.64766,4.0737 -1.60938,8.0625 l 8.25,0 c -0.057,-5.5479 1.56902,-11.5211 1.75,-5.6563 0.21453,6.9525 1.74237,-5.1823 1.75,-8.4687 z"
id="rect4428-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csccccscc"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<path
style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 124.78127,905.73727 -1.9375,-0.063"
id="path4440-4"
inkscape:connector-curvature="0"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<path
style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 117.59377,901.20597 6.4375,0"
id="path4442-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<rect
style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
id="rect4446-9"
width="1.0625"
height="0.375"
x="115.28126"
y="908.11218"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<rect
y="906.51843"
x="115.34376"
height="0.375"
width="1.0625"
id="rect4448-3"
style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<rect
style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
id="rect4450-6"
width="1.0625"
height="0.375"
x="115.50001"
y="904.89343"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<rect
y="903.42468"
x="115.81251"
height="0.375"
width="1.0625"
id="rect4452-0"
style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<rect
style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
id="rect4454-5"
width="1.0625"
height="0.375"
x="116.21876"
y="902.17468"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<rect
y="900.17468"
x="118.50001"
height="0.375"
width="1.0625"
id="rect4456-0"
style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<rect
style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
id="rect4458-2"
width="1.0625"
height="0.375"
x="118.68751"
y="898.70593"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<rect
y="897.20593"
x="118.75001"
height="0.375"
width="1.0625"
id="rect4460-9"
style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<rect
style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
id="rect4462-4"
width="1.0625"
height="0.375"
x="118.75001"
y="895.79968"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<rect
y="908.11218"
x="120.84376"
height="0.375"
width="1.0625"
id="rect4464-3"
style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<rect
style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
id="rect4466-5"
width="1.0625"
height="0.375"
x="120.90627"
y="906.51843"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<rect
y="904.89343"
x="121.06252"
height="0.375"
width="1.0625"
id="rect4468-1"
style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<rect
style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
id="rect4470-7"
width="1.0625"
height="0.375"
x="121.37502"
y="903.42468"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<rect
y="902.17468"
x="121.78127"
height="0.375"
width="1.0625"
id="rect4472-4"
style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<rect
style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
id="rect4474-3"
width="1.0625"
height="0.375"
x="124.06252"
y="900.17468"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<rect
y="898.70593"
x="124.25002"
height="0.375"
width="1.0625"
id="rect4476-1"
style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<rect
style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
id="rect4478-4"
width="1.0625"
height="0.375"
x="124.31252"
y="897.20593"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<rect
y="895.79968"
x="124.31252"
height="0.375"
width="1.0625"
id="rect4480-6"
style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<g
style="display:inline"
id="g4507-4"
transform="matrix(0.92823291,-0.48059851,0.48059851,0.92823291,-312.89954,806.76727)"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90">
<path
sodipodi:nodetypes="csc"
inkscape:connector-curvature="0"
id="path4491-2"
d="m 310.75659,223.79453 c 0.76095,-0.8373 1.2453,-2.02269 1.2453,-3.35786 0,-1.33796 -0.48156,-2.54257 -1.2453,-3.38009"
style="fill:none;stroke:#555753;stroke-width:0.35579938;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
style="fill:none;stroke:#555753;stroke-width:0.47089946;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 311.49266,224.75938 c 1.00712,-1.10816 1.64816,-2.67702 1.64816,-4.44411 0,-1.77079 -0.63735,-3.36509 -1.64816,-4.47354"
id="path4496-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csc" />
<path
sodipodi:nodetypes="csc"
inkscape:connector-curvature="0"
id="path4498-6"
d="m 312.78041,226.18348 c 1.3429,-1.47763 2.19766,-3.56956 2.19766,-5.9258 0,-2.36118 -0.84984,-4.48703 -2.19766,-5.96505"
style="fill:none;stroke:#555753;stroke-width:0.62789989;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
sodipodi:nodetypes="ccccccc"
inkscape:connector-curvature="0"
id="path4500-4"
d="m 309.34375,224.125 0,-7.375 -3.78125,2.07812 -3.4375,-0.10937 0,3.46875 3.4375,-0.125 z"
style="fill:none;stroke:#555753;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
</g>
<path
sodipodi:type="arc"
style="fill:none;stroke:#555753;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
id="path4515-2"
sodipodi:cx="284.78726"
sodipodi:cy="220.62782"
sodipodi:rx="7.4246211"
sodipodi:ry="7.4246211"
d="m 292.21188,220.62782 c 0,4.10051 -3.32411,7.42462 -7.42462,7.42462 -4.1005,0 -7.42462,-3.32411 -7.42462,-7.42462 0,-4.1005 3.32412,-7.42462 7.42462,-7.42462 4.10051,0 7.42462,3.32412 7.42462,7.42462 z"
transform="translate(-224.73743,661.76263)"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<path
style="fill:none;stroke:#555753;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1, 2;stroke-dashoffset:0;display:inline"
d="m 53.15626,883.15627 c 1.94168,0.712 4.31843,1.1563 6.90625,1.1563 2.58782,0 4.96457,-0.4443 6.90625,-1.1563"
id="path4517-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csc"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<path
sodipodi:nodetypes="csc"
inkscape:connector-curvature="0"
id="path4528-8"
d="m 60.45665,888.82867 c 0.71191,-1.9416 1.15625,-4.3184 1.15625,-6.9062 0,-2.5878 -0.44434,-4.9646 -1.15625,-6.9063"
style="fill:none;stroke:#555753;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1, 2;stroke-dashoffset:0;display:inline"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<text
xml:space="preserve"
style="font-size:3.72799897px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#555753;fill-opacity:1;stroke:none;display:inline;font-family:Liberation Sans;-inkscape-font-specification:Liberation Sans"
x="51.803352"
y="859.21899"
id="text4532-2"
sodipodi:linespacing="100%"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90"><tspan
sodipodi:role="line"
id="tspan4534-8"
x="51.803352"
y="859.21899"
style="font-weight:bold;fill:#555753;-inkscape-font-specification:Liberation Sans Bold">Lorem Ip</tspan></text>
<path
style="fill:#555753;fill-opacity:1;stroke:#555753;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1, 2;stroke-dashoffset:0;display:inline"
d="m 52.25001,862.61227 15.25,0"
id="path4536-8"
inkscape:connector-curvature="0"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<path
inkscape:connector-curvature="0"
id="path4538-8"
d="m 52.25001,864.86227 15.25,0"
style="fill:#555753;fill-opacity:1;stroke:#555753;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1, 2;stroke-dashoffset:0;display:inline"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<path
style="fill:#555753;fill-opacity:1;stroke:#555753;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1, 2;stroke-dashoffset:0;display:inline"
d="m 52.25001,867.11227 15.25,0"
id="path4540-6"
inkscape:connector-curvature="0"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<path
style="fill:none;stroke:#555753;stroke-width:0.82322329;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
d="m 242.49116,907.21887 5.125,-5.125 -5.125,-5.0937"
id="rect4544-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccc"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<path
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
id="path4549-8"
d="m 237.98183,907.21887 -5.125,-5.125 5.125,-5.0937"
style="fill:none;stroke:#555753;stroke-width:0.82322329;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<g
style="display:inline"
id="g4213"
transform="translate(49.48448,-140.79121)"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90">
<path
sodipodi:type="star"
style="fill:#555753;fill-opacity:1;stroke:none"
id="path4802"
sodipodi:sides="8"
sodipodi:cx="98.48214"
sodipodi:cy="-10.267858"
sodipodi:r1="9.1071424"
sodipodi:r2="8.4139032"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-1.1780972"
inkscape:flatsided="true"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 98.48214,-19.375 6.43972,2.66742 2.66742,6.439723 -2.66742,6.4397218 -6.439721,2.6674201 -6.439722,-2.6674204 -2.66742,-6.4397225 2.667421,-6.439722 z"
transform="matrix(0.92307692,0.3846154,-0.3846154,0.92307692,-44.340246,974.7537)" />
<path
transform="matrix(0.74691191,0.31121331,-0.31121331,0.74691191,-26.237457,980.1736)"
d="m 98.48214,-19.375 6.43972,2.66742 2.66742,6.439723 -2.66742,6.4397218 -6.439721,2.6674201 -6.439722,-2.6674204 -2.66742,-6.4397225 2.667421,-6.439722 z"
inkscape:randomized="0"
inkscape:rounded="0"
inkscape:flatsided="true"
sodipodi:arg2="-1.1780972"
sodipodi:arg1="-1.5707963"
sodipodi:r2="8.4139032"
sodipodi:r1="9.1071424"
sodipodi:cy="-10.267858"
sodipodi:cx="98.48214"
sodipodi:sides="8"
id="path4804"
style="fill:none;stroke:#d3d7cf;stroke-width:2.47171569;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
sodipodi:type="star" />
<path
style="fill:none;stroke:#555753;stroke-width:1.99999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
d="m 53.26552,1056.9525 -5.5,6.2008 5.5,6.2009"
id="rect4806"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccc" />
<path
id="path4812"
d="m 67.781143,1069.3407 5.46875,-6.2009 -5.46875,-6.1736"
style="fill:none;stroke:#555753;stroke-width:1.99999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccc" />
</g>
<path
style="fill:#555753;fill-opacity:1;stroke:none;display:inline"
id="path4257"
d="m 115.39024,855.00555 c 0.0904,0.0266 0.18708,0.0371 0.27111,0.0797 0.24682,0.12501 0.80382,0.53514 1.00046,0.67918 0.72548,0.53142 1.43751,1.08068 2.14837,1.63134 1.22364,0.99003 2.36274,2.09287 3.41202,3.2665 0.43117,0.4822 1.01205,1.207 1.42675,1.7166 0.97898,1.2314 2.022,2.4234 2.86791,3.7533 0.20576,0.2994 0.39551,0.6797 0.65579,0.9028 -0.10862,-0.1107 -0.10877,-0.099 0.0344,-0.01 0.19118,0.1291 -1.63528,2.8328 -1.82646,2.7036 l 0,0 c -0.18814,-0.022 -0.0511,0 -0.37755,-0.1793 -0.55628,-0.365 -1.09599,-0.7525 -1.61517,-1.1691 -1.27322,-1.0021 -2.36476,-2.2048 -3.47982,-3.3749 -1.53016,-1.5621 -3.0115,-3.1717 -4.57958,-4.6966 -0.94249,-1.01074 -1.92636,-2.0326 -2.54392,-3.28422 -0.14292,-0.18424 2.46273,-2.20539 2.60565,-2.02115 z"
inkscape:connector-curvature="0"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<path
style="fill:#555753;fill-opacity:1;stroke:none;display:inline"
id="path4259"
d="m 112.109,867.43007 c 0.0548,-0.091 0.10266,-0.1866 0.16432,-0.2731 0.23235,-0.3261 0.52565,-0.6137 0.79275,-0.9102 0.42229,-0.4689 0.38553,-0.4337 0.82852,-0.9537 1.44214,-1.6363 3.06836,-3.0981 4.69856,-4.5425 1.63203,-1.40989 3.17698,-2.9167 4.78859,-4.3486 0.46305,-0.4369 0.97793,-0.80137 1.52221,-1.12653 0.15824,-0.21119 3.14491,2.0267 2.98666,2.23789 l 0,0 c -0.2952,0.52243 -0.62275,1.02042 -1.01852,1.47475 -0.88192,1.11919 -1.78212,2.22369 -2.79371,3.23049 -0.29346,0.2921 -0.60222,0.5684 -0.90606,0.8497 -0.31321,0.2899 -0.63003,0.5759 -0.94504,0.8639 -1.67153,1.4209 -3.37366,2.8163 -5.22715,3.9963 -0.49876,0.3405 -0.57121,0.3777 -1.0203,0.7266 -0.39341,0.3057 -0.75974,0.6889 -1.26518,0.7962 -0.14292,0.1842 -2.74857,-1.8369 -2.60565,-2.0212 z"
inkscape:connector-curvature="0"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<path
inkscape:connector-curvature="0"
d="m 135.39024,855.00555 c 0.0904,0.027 0.18708,0.037 0.27111,0.08 0.24682,0.125 0.80382,0.5352 1.00046,0.6792 0.72548,0.5314 1.43751,1.0807 2.14837,1.6314 1.22364,0.99 2.36274,2.0928 3.41202,3.26652 0.43117,0.4822 1.01205,1.207 1.42675,1.7166 0.97898,1.2314 2.022,2.4234 2.86791,3.7533 0.20576,0.2994 0.39551,0.6797 0.65579,0.9028 -0.10862,-0.1107 -0.10877,-0.099 0.0344,-0.01 0.19118,0.1291 -1.63528,2.8328 -1.82646,2.7036 l 0,0 c -0.18814,-0.022 -0.0511,0 -0.37755,-0.1793 -0.55628,-0.365 -1.09599,-0.7525 -1.61517,-1.1691 -1.27322,-1.0021 -2.36476,-2.2048 -3.47982,-3.3749 -1.53016,-1.5621 -3.0115,-3.1717 -4.57958,-4.6966 -0.94249,-1.01082 -1.92636,-2.03262 -2.54392,-3.28432 -0.14292,-0.1842 2.46273,-2.2054 2.60565,-2.0211 z"
id="path4263"
style="fill:#d3d7cf;fill-opacity:1;stroke:none;display:inline"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<path
inkscape:connector-curvature="0"
d="m 132.109,867.43017 c 0.0548,-0.091 0.10266,-0.1866 0.16432,-0.2731 0.23235,-0.3261 0.52565,-0.6137 0.79275,-0.9102 0.42229,-0.4689 0.38553,-0.4337 0.82852,-0.9537 1.44214,-1.6363 3.06836,-3.0981 4.69856,-4.5425 1.63203,-1.40992 3.17698,-2.91672 4.78859,-4.34862 0.46305,-0.4369 0.97793,-0.8014 1.52221,-1.1266 0.15824,-0.2112 3.14491,2.0267 2.98666,2.2379 l 0,0 c -0.2952,0.5224 -0.62275,1.0204 -1.01852,1.4748 -0.88192,1.11922 -1.78212,2.22372 -2.79371,3.23052 -0.29346,0.2921 -0.60222,0.5684 -0.90606,0.8497 -0.31321,0.2899 -0.63003,0.5759 -0.94504,0.8639 -1.67153,1.4209 -3.37366,2.8163 -5.22715,3.9963 -0.49876,0.3405 -0.57121,0.3777 -1.0203,0.7266 -0.39341,0.3057 -0.75974,0.6889 -1.26518,0.7962 -0.14292,0.1842 -2.74857,-1.8369 -2.60565,-2.0212 z"
id="path4265"
style="fill:#d3d7cf;fill-opacity:1;stroke:none;display:inline"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<g
style="display:inline"
id="g4283"
transform="matrix(0.52823691,0.52823691,-0.52823691,0.52823691,773.22931,294.0656)"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90">
<path
sodipodi:nodetypes="ccccccc"
inkscape:connector-curvature="0"
id="path4269"
d="m -44.467884,1107.2152 0,17.7252 1.161165,3.7983 c 1.200046,4.2782 1.065706,4.1105 2.322331,0 l 1.161165,-3.7983 0,-17.7252 z"
style="fill:none;stroke:#555753;stroke-width:0.66930836;stroke-miterlimit:4;stroke-dasharray:none" />
<path
inkscape:connector-curvature="0"
id="path4271"
d="m -44.467884,1124.9404 4.644661,0"
style="fill:none;stroke:#555753;stroke-width:0.66930836;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
<path
style="fill:none;stroke:#555753;stroke-width:0.66930836;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
d="m -42.239747,1107.2336 0,17.6813"
id="path4275"
inkscape:connector-curvature="0" />
<path
sodipodi:nodetypes="cccc"
inkscape:connector-curvature="0"
id="path4279"
d="m -43.348187,1128.4959 c 1.108441,-0.8952 1.929509,-0.3581 2.381097,0.045 -0.328428,1.1191 -1.190549,3.9391 -1.190549,3.9391 z"
style="fill:#555753;stroke:#555753;stroke-width:0.66930836;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none" />
<rect
ry="0.42804927"
rx="0.37616169"
y="1105.3309"
x="-44.73621"
height="1.8614606"
width="5.1800866"
id="rect4281"
style="fill:#555753;fill-opacity:1;stroke:none" />
</g>
<rect
style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect4290"
width="3.5355339"
height="1.8561553"
x="174.89275"
y="859.06403"
rx="1"
ry="1"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<path
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
d="m 214.75589,862.65317 c 3.31942,-0.632 4.06019,-2.1721 5.3033,-4.08897 0.42304,-0.6524 -0.64726,-2.63586 0,-3.13491 0.10703,-0.0825 0.93192,0 1.06066,0 2.52315,0 1.41421,3.50161 1.41421,4.77048 0,0.2317 -0.47723,0.6815 -0.17677,0.6815 2.44972,0 2.94209,0.3603 4.41942,1.4993 0.0697,0.054 0.31741,3.8443 0.17677,3.9527 -0.26074,0.201 -0.49042,0.5145 -0.7071,0.6815 -0.13627,0.105 0.38563,0.7684 0.17677,1.0904 -0.17664,0.2724 -0.85358,0.8061 -1.23743,0.9541 -0.36233,0.1398 -0.89015,0 -1.23744,0.1363 -1.96875,0.759 -2.1166,-0.9523 -3.18198,-1.363 -0.34866,-0.1344 -0.63592,-0.1088 -1.06066,-0.2726 -0.99671,-0.3842 -3.88909,0.6704 -3.88909,-0.2726 0,-1.2852 -0.2556,-3.5996 -1.06066,-4.6342 z"
id="path4292"
inkscape:connector-curvature="0"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<path
inkscape:connector-curvature="0"
id="path4294"
d="m 205.42921,862.12677 c -3.31942,0.632 -4.06019,2.1721 -5.3033,4.089 -0.42304,0.6524 0.64726,2.6358 0,3.1349 -0.10703,0.082 -0.93192,0 -1.06066,0 -2.52315,0 -1.41421,-3.5016 -1.41421,-4.7705 0,-0.2317 0.47723,-0.6815 0.17677,-0.6815 -2.44972,0 -2.94209,-0.3603 -4.41942,-1.4993 -0.0697,-0.054 -0.31741,-3.84428 -0.17677,-3.95268 0.26074,-0.201 0.49042,-0.5145 0.7071,-0.6815 0.13627,-0.105 -0.38563,-0.7684 -0.17677,-1.0904 0.17664,-0.2724 0.85358,-0.8061 1.23743,-0.9541 0.36233,-0.1398 0.89015,0 1.23744,-0.1363 1.96875,-0.759 2.1166,0.9523 3.18198,1.363 0.34866,0.1344 0.63592,0.1088 1.06066,0.2726 0.99671,0.3842 3.88909,-0.6704 3.88909,0.2726 0,1.2852 0.2556,3.59958 1.06066,4.63418 z"
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<path
transform="translate(-204.73743,661.76269)"
d="m 292.21188,220.62782 c 0,4.10051 -3.32411,7.42462 -7.42462,7.42462 -4.1005,0 -7.42462,-3.32411 -7.42462,-7.42462 0,-4.1005 3.32412,-7.42462 7.42462,-7.42462 4.10051,0 7.42462,3.32412 7.42462,7.42462 z"
sodipodi:ry="7.4246211"
sodipodi:rx="7.4246211"
sodipodi:cy="220.62782"
sodipodi:cx="284.78726"
id="path4298"
style="fill:none;stroke:#d3d7cf;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
sodipodi:type="arc"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<path
sodipodi:nodetypes="csc"
inkscape:connector-curvature="0"
id="path4300"
d="m 73.15626,883.15627 c 1.94168,0.712 4.31843,1.1563 6.90625,1.1563 2.58782,0 4.96457,-0.4443 6.90625,-1.1563"
style="fill:none;stroke:#d3d7cf;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1, 2;stroke-dashoffset:0;display:inline"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<path
style="fill:none;stroke:#d3d7cf;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1, 2;stroke-dashoffset:0;display:inline"
d="m 80.45665,888.82867 c 0.71191,-1.9416 1.15625,-4.3184 1.15625,-6.9062 0,-2.5878 -0.44434,-4.9646 -1.15625,-6.9063"
id="path4302"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csc"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<path
transform="translate(-184.73743,661.76263)"
d="m 292.21188,220.62782 c 0,4.10051 -3.32411,7.42462 -7.42462,7.42462 -4.1005,0 -7.42462,-3.32411 -7.42462,-7.42462 0,-4.1005 3.32412,-7.42462 7.42462,-7.42462 4.10051,0 7.42462,3.32412 7.42462,7.42462 z"
sodipodi:ry="7.4246211"
sodipodi:rx="7.4246211"
sodipodi:cy="220.62782"
sodipodi:cx="284.78726"
id="path4306"
style="fill:none;stroke:#555753;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
sodipodi:type="arc"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<path
style="fill:none;stroke:#555753;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
d="m 94.285536,887.89997 11.048544,-11.0485"
id="path4308"
inkscape:connector-curvature="0"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<rect
style="fill:#555753;stroke:none;display:inline"
id="rect4310"
width="3.3587573"
height="12.020815"
x="115.93771"
y="876.12292"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<rect
y="876.12292"
x="120.53392"
height="12.020815"
width="3.3587573"
id="rect4312"
style="fill:#555753;stroke:none;display:inline"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<path
style="fill:#555753;stroke:none;display:inline"
d="m 134.32248,876.12297 11.31371,6.0104 -11.31371,6.0104 z"
id="rect4314"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<g
style="display:inline"
transform="matrix(0.52823691,0.52823691,-0.52823691,0.52823691,773.22931,313.68781)"
id="g4317"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90">
<path
style="fill:none;stroke:#555753;stroke-width:0.66930836;stroke-miterlimit:4;stroke-dasharray:none"
d="m -44.467884,1107.2152 0,17.7252 1.161165,3.7983 c 1.200046,4.2782 1.065706,4.1105 2.322331,0 l 1.161165,-3.7983 0,-17.7252 z"
id="path4319"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccc" />
<path
style="fill:none;stroke:#555753;stroke-width:0.66930836;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
d="m -44.467884,1124.9404 4.644661,0"
id="path4321"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path4323"
d="m -42.239747,1107.2336 0,17.6813"
style="fill:none;stroke:#555753;stroke-width:0.66930836;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
<path
style="fill:#555753;stroke:#555753;stroke-width:0.66930836;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
d="m -43.348187,1128.4959 c 1.108441,-0.8952 1.929509,-0.3581 2.381097,0.045 -0.328428,1.1191 -1.190549,3.9391 -1.190549,3.9391 z"
id="path4325"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<rect
style="fill:#555753;fill-opacity:1;stroke:none"
id="rect4327"
width="5.1800866"
height="1.8614606"
x="-44.73621"
y="1105.3309"
rx="0.37616169"
ry="0.42804927" />
</g>
<g
style="display:inline"
id="g4329"
transform="matrix(0.24508333,0.24508333,-0.24508333,0.24508333,458.00011,612.37085)"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90">
<path
sodipodi:nodetypes="ccccccc"
inkscape:connector-curvature="0"
id="path4331"
d="m -44.467884,1107.2152 0,17.7252 1.161165,3.7983 c 1.200046,4.2782 1.065706,4.1105 2.322331,0 l 1.161165,-3.7983 0,-17.7252 z"
style="fill:none;stroke:#555753;stroke-width:0.66930836;stroke-miterlimit:4;stroke-dasharray:none" />
<path
inkscape:connector-curvature="0"
id="path4333"
d="m -44.467884,1124.9404 4.644661,0"
style="fill:none;stroke:#555753;stroke-width:0.66930836;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
<path
style="fill:none;stroke:#555753;stroke-width:0.66930836;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
d="m -42.239747,1107.2336 0,17.6813"
id="path4335"
inkscape:connector-curvature="0" />
<path
sodipodi:nodetypes="cccc"
inkscape:connector-curvature="0"
id="path4337"
d="m -43.348187,1128.4959 c 1.108441,-0.8952 1.929509,-0.3581 2.381097,0.045 -0.328428,1.1191 -1.190549,3.9391 -1.190549,3.9391 z"
style="fill:#555753;stroke:#555753;stroke-width:0.66930836;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none" />
<rect
ry="0.42804927"
rx="0.37616169"
y="1105.3309"
x="-44.73621"
height="1.8614606"
width="5.1800866"
id="rect4339"
style="fill:#555753;fill-opacity:1;stroke:none" />
</g>
<g
id="layer1-2"
transform="matrix(0.03334717,0,0,0.03334717,191.57984,885.59897)"
style="fill:#555753;display:inline"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90">
<path
id="path11522"
style="fill:#555753;fill-opacity:1"
d="m 264.62704,45.67985 56.31152,-101.021534 0.2677,36.946034 118.51291,-0.267671 c 21.1765,-2.244605 39.74272,-10.852596 53.18801,-27.040291 C 449.99593,42.074998 437.6363,104.18491 348.60347,104.22236 l -27.39721,0 -0.2677,41.05114 -56.31152,-99.59365 z M 128.9798,105.11479 C 65.618201,85.84639 36.055796,7.7860213 7.07577,-47.220709 c 13.282679,12.076484 38.139773,29.363022 52.577167,29.364467 27.689982,0.06456 55.380063,0.116317 83.070083,0.174562 l 83.88712,0 -0.26776,122.43949 -0.26771,0.35698 -97.09487,0 z M 2.5,-79.206629 42.995596,-161.8012 3.5060915,-183.49253 l 118.3343785,0 57.2039,103.877161 -38.79429,-23.228801 c -12.44295,26.27544 -24.88589,52.550878 -37.32884,78.826316 C 88.601045,-24.268303 74.280847,-24.518751 59.960649,-24.769199 32.037317,-31.279427 12.61125,-53.254123 2.5,-79.206629 z m 395.45406,53.939396 -52.29561,-96.380927 105.66215,-63.98618 51.13531,102.449252 c 1.54832,24.517706 -38.03694,58.635841 -62.6066,58.370427 l -41.89525,-0.452572 z M 88.64259,-250.78088 l 53.98405,-80.90589 c 52.35957,-19.50079 82.68955,22.59846 101.8318,49.13587 l -50.86768,97.63029 -104.94817,-65.86027 z m 204.54178,43.54987 c -10.85783,-25.59753 -25.36515,-54.87764 -43.50654,-80.336 -16.24176,-22.7925 -35.86597,-42.67852 -50.7326,-51.5631 l 136.53974,-0.26767 c 24.52088,2.20137 36.43539,16.49668 49.43976,36.05358 l 19.63307,34.53651 30.34224,-19.3654 -57.11457,101.73554 -123.15347,0.26768 38.55237,-21.06114 z"
inkscape:connector-curvature="0" />
</g>
<path
style="fill:none;stroke:#555753;display:inline"
d="m 219.92452,876.86347 1.33532,1.5307 -5.05101,4.4063 4.00584,4.592 5.05101,-4.4063 1.29423,1.4837 1.19091,-7.757 z"
id="rect4425"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccccc"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<rect
style="fill:#555753;fill-opacity:1;stroke:none;display:inline"
id="rect4564-9"
width="10.935946"
height="7.925663"
x="71.833412"
y="900.66992"
rx="1.9019035"
ry="2.3056474"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<rect
style="fill:none;stroke:#555753;stroke-width:0.69802254;display:inline"
id="rect4566-9"
width="7.7661061"
height="7.5413885"
x="73.447395"
y="896.3468"
rx="1.9019035"
ry="2.3056474"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<rect
ry="2.3056474"
rx="1.9019035"
y="900.66992"
x="92.208412"
height="7.925663"
width="10.935946"
id="rect4506"
style="fill:#555753;fill-opacity:1;stroke:none;display:inline"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<path
style="fill:none;stroke:#555753;stroke-width:0.69802254;display:inline"
d="m 108.78126,899.75007 0,-1.0938 c 0,-1.2773 -0.8526,-2.3124 -1.90625,-2.3124 l -3.96875,0 c -1.05366,0 -1.90625,1.0351 -1.90625,2.3124 l 0,2.9376"
id="rect4508"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cssssc"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<rect
style="fill:#555753;stroke:none;display:inline"
id="rect4514"
width="19.512196"
height="19.512196"
x="150.24391"
y="892.60608"
rx="2.9268293"
ry="2.9268293"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<rect
ry="2.9268293"
rx="2.9268293"
y="892.60608"
x="170.24391"
height="19.512196"
width="19.512196"
id="rect4516"
style="fill:#555753;stroke:none;display:inline"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<rect
ry="2.3056474"
rx="1.9019035"
y="900.66992"
x="151.83342"
height="7.925663"
width="10.935946"
id="rect4518"
style="fill:#eeeeec;fill-opacity:1;stroke:none;display:inline"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<rect
ry="2.3056474"
rx="1.9019035"
y="896.3468"
x="153.4474"
height="7.5413885"
width="7.7661061"
id="rect4520"
style="fill:none;stroke:#eeeeec;stroke-width:0.69802254;display:inline"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<rect
style="fill:#eeeeec;fill-opacity:1;stroke:none;display:inline"
id="rect4522"
width="10.935946"
height="7.925663"
x="172.20842"
y="900.66992"
rx="1.9019035"
ry="2.3056474"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<path
sodipodi:nodetypes="cssssc"
inkscape:connector-curvature="0"
id="path4524"
d="m 188.78127,899.75007 0,-1.0938 c 0,-1.2773 -0.85259,-2.3124 -1.90625,-2.3124 l -3.96875,0 c -1.05365,0 -1.90625,1.0351 -1.90625,2.3124 l 0,2.9376"
style="fill:none;stroke:#eeeeec;stroke-width:0.69802254;display:inline"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<path
style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
d="m 61.2575,895.73577 c -0.85405,0.9453 -1.14575,2.2161 -0.88721,3.3884 l -8.17918,8.1791 c -0.14244,0.1425 -0.12201,0.3935 0.0507,0.5661 l 2.21807,2.2181 c 0.17268,0.1727 0.42791,0.1974 0.57035,0.055 l 8.13693,-8.1369 c 1.26093,0.3161 2.65155,-0.016 3.63762,-1.0013 0.66189,-0.6619 1.02334,-1.5095 1.09849,-2.3744 l -2.11666,2.1167 -3.2405,-0.8746 -0.87454,-3.2405 2.14201,-2.1419 c -0.88104,0.066 -1.74292,0.4331 -2.41663,1.1068 -0.0467,0.047 -0.0968,0.09 -0.13942,0.1395 z"
id="path4529"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccsssscscccccsc"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<path
style="fill:none;stroke:#555753;stroke-width:0.80000001;stroke-miterlimit:4;stroke-dasharray:none;display:inline"
d="m 201.14016,895.80807 -8.25003,8.25 -0.94202,3.5156 2.58822,2.5882 3.10935,-0.8332 10.50754,-10.5075 -2e-5,-2.3881 -1.69404,-1.694 -1.94401,0 -9.97205,9.972 3e-5,1.972 0.61101,0.611 1.73597,0 9.36804,-9.368"
id="path3395"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccccccccccc"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<rect
style="fill:#555753;stroke:none;display:inline"
id="rect3397"
width="19.512196"
height="19.512196"
x="210.24391"
y="892.60608"
rx="2.9268293"
ry="2.9268293"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<path
style="fill:none;stroke:#eeeeec;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
d="m 214.67284,895.14537 c 7.11789,-1.5098 3.04383,2.9586 9.72807,1.6024 0.48786,-0.099 0.94287,0.3982 0.94287,0.8928 0,0 0,6.7482 0,6.9956 0,0.2473 -0.31338,0.7228 -0.94287,0.8928 -6.70194,1.3208 -2.58353,-3.1887 -9.72807,-1.6024 -0.39933,0.17 -0.94286,-0.3982 -0.94286,-0.8928 l 0,-6.9955 c 0,-0.4947 0.45501,-0.776 0.94286,-0.8929 z"
id="rect3409"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccscccssc"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<rect
style="fill:none;stroke:#eeeeec;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect4190"
width="1.125"
height="16.3125"
x="212.62502"
y="894.73718"
ry="0.40000001"
rx="0.40000001"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<path
inkscape:export-ydpi="90"
inkscape:export-xdpi="90"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
transform="translate(-224.73743,701.76263)"
d="m 292.21188,220.62782 c 0,4.10051 -3.32411,7.42462 -7.42462,7.42462 -4.1005,0 -7.42462,-3.32411 -7.42462,-7.42462 0,-4.1005 3.32412,-7.42462 7.42462,-7.42462 4.10051,0 7.42462,3.32412 7.42462,7.42462 z"
sodipodi:ry="7.4246211"
sodipodi:rx="7.4246211"
sodipodi:cy="220.62782"
sodipodi:cx="284.78726"
id="path4020"
style="fill:none;stroke:#555753;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
sodipodi:type="arc" />
<path
sodipodi:type="arc"
style="fill:#555753;fill-opacity:1;stroke:#555753;stroke-width:1.62554049;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
id="path4022"
sodipodi:cx="284.78726"
sodipodi:cy="220.62782"
sodipodi:rx="7.4246211"
sodipodi:ry="7.4246211"
d="m 292.21188,220.62782 c 0,4.10051 -3.32411,7.42462 -7.42462,7.42462 -4.1005,0 -7.42462,-3.32411 -7.42462,-7.42462 0,-4.1005 3.32412,-7.42462 7.42462,-7.42462 4.10051,0 7.42462,3.32412 7.42462,7.42462 z"
transform="matrix(0.61517998,0,0,0.61517998,-115.14559,786.66463)"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<path
inkscape:export-ydpi="90"
inkscape:export-xdpi="90"
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
sodipodi:type="arc"
style="fill:none;stroke:#d3d7cf;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
id="path4024"
sodipodi:cx="284.78726"
sodipodi:cy="220.62782"
sodipodi:rx="7.4246211"
sodipodi:ry="7.4246211"
d="m 292.21188,220.62782 c 0,4.10051 -3.32411,7.42462 -7.42462,7.42462 -4.1005,0 -7.42462,-3.32411 -7.42462,-7.42462 0,-4.1005 3.32412,-7.42462 7.42462,-7.42462 4.10051,0 7.42462,3.32412 7.42462,7.42462 z"
transform="translate(-204.73743,701.76269)" />
<g
inkscape:label="#g3852"
style="stroke:#888a85;display:inline;filter:url(#filter4064)"
transform="matrix(0.43114968,0,0,0.43114968,-201.41936,955.6356)"
id="g3139">
<rect
ry="6"
rx="6"
y="18.790752"
x="470.35715"
height="44.285713"
width="44.285713"
id="rect3141"
style="fill:none;stroke:#888a85;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
</g>
<g
id="g3145"
transform="matrix(0.43114968,0,0,0.43114968,-179.41936,955.6356)"
style="stroke:#d3d7cf;display:inline;filter:url(#filter4064)"
inkscape:label="#g3852">
<rect
style="fill:none;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="rect3147"
width="44.285713"
height="44.285713"
x="470.35715"
y="18.790752"
rx="6"
ry="6" />
</g>
<text
xml:space="preserve"
style="font-size:17.09149551px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#888a85;fill-opacity:1;stroke:none;font-family:FreeSans;-inkscape-font-specification:FreeSans Bold"
x="5.6234956"
y="979.64215"
id="text3151"
sodipodi:linespacing="100%"><tspan
sodipodi:role="line"
id="tspan3153"
x="5.6234956"
y="979.64215">?</tspan></text>
<text
sodipodi:linespacing="100%"
id="text3155"
y="979.64215"
x="27.623495"
style="font-size:17.09149551000000145px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d3d7cf;fill-opacity:1;stroke:none;font-family:FreeSans;-inkscape-font-specification:FreeSans Bold"
xml:space="preserve"><tspan
y="979.64215"
x="27.623495"
id="tspan3157"
sodipodi:role="line">?</tspan></text>
<image
y="915.14124"
x="131.94395"
id="image3333"
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABHNCSVQICAgIfAhkiAAAAfdJREFU
OI2Fk72q6kAUhZdRiEWilS+giCD3DbQY8DVshGBjIYggmh9EwUryBCmtbOyEW2gRgoKVtY8g4s+Z
i0Lmx1vpPRKPd8MUexbfWrNhTwz/Kdu2XQDGD7IX+wSbpukCMHq9nv5OH41GNPET3Ol0XM65YVmW
LqV83o/H4z8A0G63Nc453hq0221XCGFYlqULIV60Ry+EgBACkRGazaYLwLBtWz+fz0gmk0gmk29f
ORwOX0doNBou59ywbVs/HA5Yr9dQVRWlUgmqqkYMOOdQHk29XncZY0a329WPxyNWqxXCMASlFEEQ
4Hq9gnP+chhjiANArVZzpZSGZVn65XLBZrMBY+yZFIYh9vs9MpkMYrEYpJTo9/tUSuklqtWqyxgz
HMfRT6cTttvtC/yoeDwOIQQYYxgMBhSAN5lMWokwDI1+v69TSrHdbsE5j8CpVArFYhEAYFkWBeBN
p9MWACiMMTDGoCgKNE2LwLquo1Ao4H6/wzRNyhh7wg8DzzRNKqVENptFOp1+wpqmIZ/Pv8Cz2az1
PSC+2+1+Z7PZzHK5/EUIUdPpNG63GxKJBHK5HADAtm0qpfTm8/kLDODfIlUqFReAMRgMnqurKAoc
x6EAvMViEYEjRQhxCSFfvu/ffd+/E0K+CCHuJyayyuVy+fv39YIg+Jj8F6mBDiyihCriAAAAAElF
TkSuQmCC
"
height="14.364291"
width="15.273019"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 82 KiB

View file

@ -0,0 +1,359 @@
<script language="javascript" type="text/javascript" src="$baseurl/library/tinymce/jscripts/tiny_mce/tiny_mce_src.js"></script>
<script language="javascript" type="text/javascript">
var editor=false;
var textlen = 0;
var plaintext = '$editselect';
function initEditor(cb) {
if (editor==false) {
$("#profile-jot-text-loading").show();
if(plaintext == 'none') {
$("#profile-jot-text-loading").hide();
$("#profile-jot-text").css({ 'height': 200, 'color': '#000' });
$(".jothidden").show();
editor = true;
$("a#jot-perms-icon").fancybox({
'transitionIn' : 'elastic',
'transitionOut' : 'elastic'
});
$("#profile-jot-submit-wrapper").show();
{{ if $newpost }}
$("#profile-upload-wrapper").show();
$("#profile-attach-wrapper").show();
$("#profile-link-wrapper").show();
$("#profile-video-wrapper").show();
$("#profile-audio-wrapper").show();
$("#profile-location-wrapper").show();
$("#profile-nolocation-wrapper").show();
$("#profile-title-wrapper").show();
$("#profile-jot-plugin-wrapper").show();
$("#jot-preview-link").show();
{{ endif }}
if (typeof cb!="undefined") cb();
return;
}
tinyMCE.init({
theme : "advanced",
mode : "specific_textareas",
editor_selector: /(profile-jot-text|prvmail-text)/,
plugins : "bbcode,paste,fullscreen,autoresize",
theme_advanced_buttons1 : "bold,italic,underline,undo,redo,link,unlink,image,forecolor,formatselect,code,fullscreen",
theme_advanced_buttons2 : "",
theme_advanced_buttons3 : "",
theme_advanced_toolbar_location : "top",
theme_advanced_toolbar_align : "center",
theme_advanced_blockformats : "blockquote,code",
//theme_advanced_resizing : true,
//theme_advanced_statusbar_location : "bottom",
paste_text_sticky : true,
entity_encoding : "raw",
add_unload_trigger : false,
remove_linebreaks : false,
force_p_newlines : false,
force_br_newlines : true,
forced_root_block : '',
convert_urls: false,
content_css: "$baseurl/view/custom_tinymce.css",
theme_advanced_path : false,
setup : function(ed) {
cPopup = null;
ed.onKeyDown.add(function(ed,e) {
if(cPopup !== null)
cPopup.onkey(e);
});
ed.onKeyUp.add(function(ed, e) {
var txt = tinyMCE.activeEditor.getContent();
match = txt.match(/@([^ \n]+)$/);
if(match!==null) {
if(cPopup === null) {
cPopup = new ACPopup(this,baseurl+"/acl");
}
if(cPopup.ready && match[1]!==cPopup.searchText) cPopup.search(match[1]);
if(! cPopup.ready) cPopup = null;
}
else {
if(cPopup !== null) { cPopup.close(); cPopup = null; }
}
textlen = txt.length;
if(textlen != 0 && $('#jot-perms-icon').is('.unlock')) {
$('#profile-jot-desc').html(ispublic);
}
else {
$('#profile-jot-desc').html('&nbsp;');
}
//Character count
if(textlen <= 140) {
$('#character-counter').removeClass('red');
$('#character-counter').removeClass('orange');
$('#character-counter').addClass('grey');
}
if((textlen > 140) && (textlen <= 420)) {
$('#character-counter').removeClass('grey');
$('#character-counter').removeClass('red');
$('#character-counter').addClass('orange');
}
if(textlen > 420) {
$('#character-counter').removeClass('grey');
$('#character-counter').removeClass('orange');
$('#character-counter').addClass('red');
}
$('#character-counter').text(textlen);
});
ed.onInit.add(function(ed) {
ed.pasteAsPlainText = true;
$("#profile-jot-text-loading").hide();
$(".jothidden").show();
$("#profile-jot-submit-wrapper").show();
{{ if $newpost }}
$("#profile-upload-wrapper").show();
$("#profile-attach-wrapper").show();
$("#profile-link-wrapper").show();
$("#profile-video-wrapper").show();
$("#profile-audio-wrapper").show();
$("#profile-location-wrapper").show();
$("#profile-nolocation-wrapper").show();
$("#profile-title-wrapper").show();
$("#profile-jot-plugin-wrapper").show();
$("#jot-preview-link").show();
{{ endif }}
$("#character-counter").show();
if (typeof cb!="undefined") cb();
});
}
});
editor = true;
// setup acl popup
$("a#jot-perms-icon").fancybox({
'transitionIn' : 'none',
'transitionOut' : 'none'
});
} else {
if (typeof cb!="undefined") cb();
}
} // initEditor
</script>
<script type="text/javascript" src="js/ajaxupload.js" ></script>
<script>
var ispublic = '$ispublic';
$(document).ready(function() {
/* enable tinymce on focus */
$("#profile-jot-text").focus(function(){
if (editor) return;
$(this).val("");
initEditor();
});
var uploader = new window.AjaxUpload(
'wall-image-upload',
{ action: 'wall_upload/$nickname',
name: 'userfile',
onSubmit: function(file,ext) { $('#profile-rotator').show(); },
onComplete: function(file,response) {
addeditortext(response);
$('#profile-rotator').hide();
}
}
);
var file_uploader = new window.AjaxUpload(
'wall-file-upload',
{ action: 'wall_attach/$nickname',
name: 'userfile',
onSubmit: function(file,ext) { $('#profile-rotator').show(); },
onComplete: function(file,response) {
addeditortext(response);
$('#profile-rotator').hide();
}
}
);
$('#contact_allow, #contact_deny, #group_allow, #group_deny').change(function() {
var selstr;
$('#contact_allow option:selected, #contact_deny option:selected, #group_allow option:selected, #group_deny option:selected').each( function() {
selstr = $(this).text();
$('#jot-perms-icon').removeClass('unlock').addClass('lock');
$('#jot-public').hide();
$('.profile-jot-net input').attr('disabled', 'disabled');
});
if(selstr == null) {
$('#jot-perms-icon').removeClass('lock').addClass('unlock');
$('#jot-public').show();
$('.profile-jot-net input').attr('disabled', false);
}
}).trigger('change');
});
function deleteCheckedItems() {
var checkedstr = '';
$('.item-select').each( function() {
if($(this).is(':checked')) {
if(checkedstr.length != 0) {
checkedstr = checkedstr + ',' + $(this).val();
}
else {
checkedstr = $(this).val();
}
}
});
$.post('item', { dropitems: checkedstr }, function(data) {
window.location.reload();
});
}
function jotGetLink() {
reply = prompt("$linkurl");
if(reply && reply.length) {
reply = bin2hex(reply);
$('#profile-rotator').show();
$.get('parse_url?binurl=' + reply, function(data) {
addeditortext(data);
$('#profile-rotator').hide();
});
}
}
function jotVideoURL() {
reply = prompt("$vidurl");
if(reply && reply.length) {
addeditortext('[video]' + reply + '[/video]');
}
}
function jotAudioURL() {
reply = prompt("$audurl");
if(reply && reply.length) {
addeditortext('[audio]' + reply + '[/audio]');
}
}
function jotGetLocation() {
reply = prompt("$whereareu", $('#jot-location').val());
if(reply && reply.length) {
$('#jot-location').val(reply);
}
}
function jotTitle() {
reply = prompt("$title", $('#jot-title').val());
if(reply && reply.length) {
$('#jot-title').val(reply);
}
}
function jotShare(id) {
$('#like-rotator-' + id).show();
$.get('share/' + id, function(data) {
if (!editor) $("#profile-jot-text").val("");
initEditor(function(){
addeditortext(data);
$('#like-rotator-' + id).hide();
$(window).scrollTop(0);
});
});
}
function linkdropper(event) {
var linkFound = event.dataTransfer.types.contains("text/uri-list");
if(linkFound)
event.preventDefault();
}
function linkdrop(event) {
var reply = event.dataTransfer.getData("text/uri-list");
event.target.textContent = reply;
event.preventDefault();
if(reply && reply.length) {
reply = bin2hex(reply);
$('#profile-rotator').show();
$.get('parse_url?binurl=' + reply, function(data) {
if (!editor) $("#profile-jot-text").val("");
initEditor(function(){
addeditortext(data);
$('#profile-rotator').hide();
});
});
}
}
function itemTag(id) {
reply = prompt("$term");
if(reply && reply.length) {
reply = reply.replace('#','');
if(reply.length) {
commentBusy = true;
$('body').css('cursor', 'wait');
$.get('tagger/' + id + '?term=' + reply);
if(timer) clearTimeout(timer);
timer = setTimeout(NavUpdate,3000);
liking = 1;
}
}
}
function itemFiler(id) {
var bordercolor = $("input").css("border-color");
$.get('filer/', function(data){
$.fancybox(data);
$("#id_term").keypress(function(){
$(this).css("border-color",bordercolor);
})
$("#select_term").change(function(){
$("#id_term").css("border-color",bordercolor);
})
$("#filer_save").click(function(e){
e.preventDefault();
reply = $("#id_term").val();
if(reply && reply.length) {
commentBusy = true;
$('body').css('cursor', 'wait');
$.get('filer/' + id + '?term=' + reply);
if(timer) clearTimeout(timer);
timer = setTimeout(NavUpdate,3000);
liking = 1;
$.fancybox.close();
} else {
$("#id_term").css("border-color","#FF0000");
}
return false;
});
});
}
function jotClearLocation() {
$('#jot-coord').val('');
$('#profile-nolocation-wrapper').hide();
}
function addeditortext(data) {
if(plaintext == 'none') {
var currentText = $("#profile-jot-text").val();
$("#profile-jot-text").val(currentText + data);
}
else
tinyMCE.execCommand('mceInsertRawHTML',false,data);
}
$geotag
</script>

View file

@ -0,0 +1,74 @@
<div id="profile-jot-wrapper" >
<div id="profile-jot-banner-wrapper">
<div id="profile-jot-desc" >&nbsp;</div>
<div id="character-counter" class="grey" style="display: none;">0</div>
</div>
<div id="profile-jot-banner-end"></div>
<form id="profile-jot-form" action="$action" method="post" >
<input type="hidden" name="type" value="$ptyp" />
<input type="hidden" name="profile_uid" value="$profile_uid" />
<input type="hidden" name="return" value="$return_path" />
<input type="hidden" name="location" id="jot-location" value="$defloc" />
<input type="hidden" name="coord" id="jot-coord" value="" />
<input type="hidden" name="post_id" value="$post_id" />
<input type="hidden" name="preview" id="jot-preview" value="0" />
<div id="jot-title-wrap"><input name="title" id="jot-title" type="text" placeholder="$placeholdertitle" value="$title" class="jothidden" style="display:none"></div>
<div id="jot-category-wrap"><input name="category" id="jot-category" type="text" placeholder="$placeholdercategory" value="$category" class="jothidden" style="display:none" /></div>
<div id="jot-text-wrap">
<img id="profile-jot-text-loading" src="images/rotator.gif" alt="$wait" title="$wait" style="display: none;" />
<textarea rows="5" cols="88" class="profile-jot-text" id="profile-jot-text" name="body" >{{ if $content }}$content{{ else }}$share{{ endif }}</textarea>
</div>
<div id="profile-upload-wrapper" class="jot-tool" style="display: none;" >
<div id="wall-image-upload-div" ><a onclick="return false;" id="wall-image-upload" class="icon border camera" title="$upload"></a></div>
</div>
<div id="profile-attach-wrapper" class="jot-tool" style="display: none;" >
<div id="wall-file-upload-div" ><a href="#" onclick="return false;" id="wall-file-upload" class="icon border attach" title="$attach"></a></div>
</div>
<div id="profile-link-wrapper" class="jot-tool" style="display: none;" ondragenter="linkdropper(event);" ondragover="linkdropper(event);" ondrop="linkdrop(event);" >
<a href="#" id="profile-link" class="icon border link" title="$weblink" ondragenter="return linkdropper(event);" ondragover="return linkdropper(event);" ondrop="linkdrop(event);" onclick="jotGetLink(); return false;"></a>
</div>
<div id="profile-video-wrapper" class="jot-tool" style="display: none;" >
<a href="#" id="profile-video" class="icon border video" title="$video" onclick="jotVideoURL(); return false;"></a>
</div>
<div id="profile-audio-wrapper" class="jot-tool" style="display: none;" >
<a href="#" id="profile-audio" class="icon border audio" title="$audio" onclick="jotAudioURL(); return false;"></a>
</div>
<div id="profile-location-wrapper" class="jot-tool" style="display: none;" >
<a href="#" id="profile-location" class="icon border globe" title="$setloc" onclick="jotGetLocation(); return false;"></a>
</div>
<div id="profile-nolocation-wrapper" class="jot-tool" style="display: none;" >
<a href="#" id="profile-nolocation" class="icon border noglobe" title="$noloc" onclick="jotClearLocation(); return false;"></a>
</div>
<span onclick="preview_post();" id="jot-preview-link" class="fakelink" style="display: none;" >$preview</span>
<div id="profile-jot-submit-wrapper" style="display:none;padding-left: 400px;">
<input type="submit" id="profile-jot-submit" name="submit" value="$share" />
<div id="profile-jot-perms" class="profile-jot-perms" style="display: $visitor;" >
<a href="#profile-jot-acl-wrapper" id="jot-perms-icon" class="icon $lockstate sharePerms" title="$permset"></a>$bang</div>
</div>
<div id="profile-jot-plugin-wrapper" style="display: none;">
$jotplugins
</div>
<div id="profile-jot-tools-end"></div>
<div id="jot-preview-content" style="display:none;"></div>
<div style="display: none;">
<div id="profile-jot-acl-wrapper" style="width:auto;height:auto;overflow:auto;">
$acl
<hr style="clear:both"/>
<div id="profile-jot-email-label">$emailcc</div><input type="text" name="emailcc" id="profile-jot-email" title="$emtitle" />
<div id="profile-jot-email-end"></div>
$jotnets
</div>
</div>
<div id="profile-jot-end"></div>
</form>
</div>
{{ if $content }}<script>initEditor();</script>{{ endif }}

View file

@ -0,0 +1,10 @@
<div id="lang-select-icon" class="icon s22 language" title="$title" onclick="openClose('language-selector');" ></div>
<div id="language-selector" style="display: none;" >
<form action="#" method="post" >
<select name="system_language" onchange="this.form.submit();" >
{{ for $langs.0 as $v=>$l }}
<option value="$v" {{if $v==$langs.1}}selected="selected"{{endif}}>$l</option>
{{ endfor }}
</select>
</form>
</div>

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 237 B

View file

@ -0,0 +1,43 @@
<div class="login-form">
<form action="$dest_url" method="post" >
<input type="hidden" name="auth-params" value="login" />
<div id="login_standard">
<img style="float:left; margin-right:20px" src="/images/friendica-128.png" title="friendica">
{{ inc field_input.tpl with $field=$lname }}{{ endinc }}
{{ inc field_password.tpl with $field=$lpassword }}{{ endinc }}
</div>
{{ if $openid }}
<br />
<div id="login_openid">
{{ inc field_openid.tpl with $field=$lopenid }}{{ endinc }}
</div>
{{ endif }}
<!-- <br />
<div class="login-extra-links">
By signing in you agree to the latest <a href="tos.html" title="$tostitle" id="terms-of-service-link" >$toslink</a> and <a href="privacy.html" title="$privacytitle" id="privacy-link" >$privacylink</a>
</div>
-->
<br />
<div id="login-submit-wrapper" >
<input type="submit" name="submit" id="login-submit-button" value="$login" />
</div>
<br /><br />
<div class="login-extra-links">
{{ if $register }} <a href="register" title="$register.title" id="register-link">$register.desc</a><br />
{{ endif }} <a href="lostpass" title="$lostpass" id="lost-password-link" >$lostlink</a>
</div>
{{ for $hiddens as $k=>$v }}
<input type="hidden" name="$k" value="$v" />
{{ endfor }}
</form>
</div>
<script type="text/javascript">window.loginName = "$lname.0";</script>

Binary file not shown.

After

Width:  |  Height:  |  Size: 236 B

View file

@ -0,0 +1,3 @@
<h3>$messages</h3>
$tab_content

View file

@ -0,0 +1,13 @@
<div class="profile-match-wrapper">
<div class="profile-match-photo">
<a href="$url">
<img src="$photo" alt="$name" />
</a>
</div>
<span><a href="$url">$name</a>$inttxt<br />$tags</span>
<div class="profile-match-break"></div>
{{ if $connlnk }}
<div class="profile-match-connect"><a href="$connlnk" title="$conntxt">$conntxt</a></div>
{{ endif }}
<div class="profile-match-end"></div>
</div>

Binary file not shown.

After

Width:  |  Height:  |  Size: 385 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 276 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 665 B

View file

@ -0,0 +1,66 @@
<nav>
$langselector
<span id="banner">$banner</span>
<div id="notifications">
{{ if $nav.network }}<a id="net-update" class="nav-ajax-update" href="$nav.network.0" title="$nav.network.1"></a>{{ endif }}
{{ if $nav.home }}<a id="home-update" class="nav-ajax-update" href="$nav.home.0" title="$nav.home.1"></a>{{ endif }}
<!-- {{ if $nav.notifications }}<a id="intro-update" class="nav-ajax-update" href="$nav.notifications.0" title="$nav.notifications.1"></a>{{ endif }} -->
{{ if $nav.introductions }}<a id="intro-update" class="nav-ajax-update" href="$nav.introductions.0" title="$nav.introductions.1"></a>{{ endif }}
{{ if $nav.messages }}<a id="mail-update" class="nav-ajax-update" href="$nav.messages.0" title="$nav.messages.1"></a>{{ endif }}
{{ if $nav.notifications }}<a rel="#nav-notifications-menu" id="notify-update" class="nav-ajax-update" href="$nav.notifications.0" title="$nav.notifications.1"></a>{{ endif }}
<ul id="nav-notifications-menu" class="menu-popup">
<li id="nav-notifications-mark-all"><a href="#" onclick="notifyMarkAll(); return false;">$nav.notifications.mark.1</a></li>
<li id="nav-notifications-see-all"><a href="$nav.notifications.all.0">$nav.notifications.all.1</a></li>
<li class="empty">$emptynotifications</li>
</ul>
</div>
<div id="user-menu" >
<a id="user-menu-label" onclick="openClose('user-menu-popup'); return false" href="$nav.home.0">$sitelocation</a>
<ul id="user-menu-popup"
onmouseover="if (typeof tmenu != 'undefined') clearTimeout(tmenu); openMenu('user-menu-popup')"
onmouseout="tmenu=setTimeout('closeMenu(\'user-menu-popup\');',200)">
{{ if $nav.register }}<li><a id="nav-register-link" class="nav-commlink $nav.register.2" href="$nav.register.0">$nav.register.1</a></li>{{ endif }}
{{ if $nav.home }}<li><a id="nav-home-link" class="nav-commlink $nav.home.2" href="$nav.home.0">$nav.home.1</a></li>{{ endif }}
{{ if $nav.network }}<li><a id="nav-network-link" class="nav-commlink $nav.network.2" href="$nav.network.0">$nav.network.1</a></li>{{ endif }}
{{ if $nav.community }}
<li><a id="nav-community-link" class="nav-commlink $nav.community.2" href="$nav.community.0">$nav.community.1</a></li>
{{ endif }}
<li><a id="nav-search-link" class="nav-link $nav.search.2" href="$nav.search.0">$nav.search.1</a></li>
<li><a id="nav-directory-link" class="nav-link $nav.directory.2" href="$nav.directory.0">$nav.directory.1</a></li>
{{ if $nav.apps }}<li><a id="nav-apps-link" class="nav-link $nav.apps.2" href="$nav.apps.0">$nav.apps.1</a></li>{{ endif }}
{{ if $nav.notifications }}<li><a id="nav-notify-link" class="nav-commlink nav-sep $nav.notifications.2" href="$nav.notifications.0">$nav.notifications.1</a></li>{{ endif }}
{{ if $nav.messages }}<li><a id="nav-messages-link" class="nav-commlink $nav.messages.2" href="$nav.messages.0">$nav.messages.1</a></li>{{ endif }}
{{ if $nav.contacts }}<li><a id="nav-contacts-link" class="nav-commlink $nav.contacts.2" href="$nav.contacts.0">$nav.contacts.1</a></li>{{ endif }}
{{ if $nav.profiles }}<li><a id="nav-profiles-link" class="nav-commlink nav-sep $nav.profiles.2" href="$nav.profiles.0">$nav.profiles.1</a></li>{{ endif }}
{{ if $nav.settings }}<li><a id="nav-settings-link" class="nav-commlink $nav.settings.2" href="$nav.settings.0">$nav.settings.1</a></li>{{ endif }}
{{ if $nav.manage }}<li><a id="nav-manage-link" class="nav-commlink $nav.manage.2" href="$nav.manage.0">$nav.manage.1</a></li>{{ endif }}
{{ if $nav.admin }}<li><a id="nav-admin-link" class="nav-commlink $nav.admin.2" href="$nav.admin.0">$nav.admin.1</a></li>{{ endif }}
{{ if $nav.help }}<li><a id="nav-help-link" class="nav-link $nav.help.2" href="$nav.help.0">$nav.help.1</a></li>{{ endif }}
{{ if $nav.login }}<li><a id="nav-login-link" class="nav-link $nav.login.2" href="$nav.login.0">$nav.login.1</a></li> {{ endif }}
{{ if $nav.logout }}<li><a id="nav-logout-link" class="nav-commlink nav-sep $nav.logout.2" href="$nav.logout.0">$nav.logout.1</a></li> {{ endif }}
</ul>
</div>
</nav>
<ul id="nav-notifications-template" style="display:none;" rel="template">
<li class="{4}"><a href="{0}"><img src="{1}" height="24" width="24" alt="" />{2} <span class="notif-when">{3}</span></a></li>
</ul>

View file

@ -0,0 +1,10 @@
<div id="nets-sidebar" class="widget">
<h3>$title</h3>
<div id="nets-desc">$desc</div>
<a href="$base" class="nets-link{{ if $sel_all }} nets-selected{{ endif }} nets-all">$all</a>
<ul class="nets-ul">
{{ for $nets as $net }}
<li><a href="$base?nets=$net.ref" class="nets-link{{ if $net.selected }} nets-selected{{ endif }}">$net.name</a></li>
{{ endfor }}
</ul>
</div>

Binary file not shown.

After

Width:  |  Height:  |  Size: 891 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.3 KiB

View file

@ -0,0 +1,14 @@
<div id="peoplefind-sidebar" class="widget">
<h3>$findpeople</h3>
<div id="peoplefind-desc">$desc</div>
<form action="dirfind" method="post" />
<input id="side-peoplefind-url" type="text-sidebar" name="search" size="24" title="$hint" /><input id="side-peoplefind-submit" type="submit" name="submit" value="$findthem" />
</form>
<div class="side-link" id="side-match-link"><a href="match" >$similar</a></div>
<div class="side-link" id="side-suggest-link"><a href="suggest" >$suggest</a></div>
<div class="side-link" id="side-random-profile-link" ><a href="randprof" target="extlink" >$random</a></div>
{{ if $inv }}
<div class="side-link" id="side-invite-link" ><a href="invite" >$inv</a></div>
{{ endif }}
</div>

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

View file

@ -0,0 +1,8 @@
<div class="photo-album-image-wrapper" id="photo-album-image-wrapper-$id">
<a href="$photolink" class="photo-album-photo-link" id="photo-album-photo-link-$id" title="$phototitle">
<img src="$imgsrc" alt="$imgalt" title="$phototitle" class="photo-album-photo lframe resize" id="photo-album-photo-$id" />
</div>
<p class='caption'>$desc</p>
</a>
</div>
<div class="photo-album-image-wrapper-end"></div>

View file

@ -0,0 +1,7 @@
<div class="photo-top-image-wrapper lframe" id="photo-top-image-wrapper-$id">
<div id="photo-album-wrapper-inner">
<a href="$photo.link" class="photo-top-photo-link" id="photo-top-photo-link-$id" title="$photo.title"><img src="$photo.src" alt="$phoyo.alt" title="$photo.title" class="photo-top-photo" id="photo-top-photo-$id" /></a>
</div>
<div class="photo-top-album-name"><a href="$photo.album.link" class="photo-top-album-link" title="$photo.album.alt" >$photo.album.name</a></div>
</div>
<div class="photo-top-image-wrapper-end"></div>

View file

@ -0,0 +1,40 @@
<div id="live-display"></div>
<h3><a href="$album.0">$album.1</a></h3>
<div id="photo-edit-link-wrap">
{{ if $tools }}
<a id="photo-edit-link" href="$tools.edit.0">$tools.edit.1</a>
-
<a id="photo-toprofile-link" href="$tools.profile.0">$tools.profile.1</a>
{{ endif }}
{{ if $lock }} - <img src="images/lock_icon.gif" class="lockview" alt="$lock" onclick="lockview(event,'photo$id');" /> {{ endif }}
</div>
<div id="photo-photo" class="lframe">
{{ if $prevlink }}<div id="photo-prev-link"><a href="$prevlink.0">$prevlink.1</a></div>{{ endif }}
<a href="$photo.href" title="$photo.title"><img src="$photo.src" /></a>
{{ if $nextlink }}<div id="photo-next-link"><a href="$nextlink.0">$nextlink.1</a></div>{{ endif }}
</div>
<div id="photo-photo-end"></div>
<div id="photo-caption" >$desc</div>
{{ if $tags }}
<div id="in-this-photo-text">$tags.0</div>
<div id="in-this-photo">$tags.1</div>
{{ endif }}
{{ if $tags.2 }}<div id="tag-remove"><a href="$tags.2">$tags.3</a></div>{{ endif }}
{{ if $edit }}$edit{{ endif }}
{{ if $likebuttons }}
<div id="photo-like-div">
$likebuttons
$like
$dislike
</div>
{{ endif }}
$comments
$paginate

Binary file not shown.

After

Width:  |  Height:  |  Size: 766 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 853 B

View file

@ -0,0 +1,10 @@
<div class="profile-listing" >
<div class="profile-listing-photo-wrapper" >
<a href="profiles/$id" class="profile-listing-edit-link"><img class="profile-listing-photo mframe" id="profile-listing-photo-$id" src="$photo" alt="$alt" /></a>
</div>
<div class="profile-listing-photo-end"></div>
<div class="profile-listing-name" id="profile-listing-name-$id"><a href="profiles/$id" class="profile-listing-edit-link" >$profile_name</a></div>
<div class='profile-visible'>$visible</div>
</div>
<div class="profile-listing-end"></div>

View file

@ -0,0 +1,43 @@
<div class="vcard">
<div class="fn label">$profile.name</div>
{{ if $pdesc }}<div class="title">$profile.pdesc</div>{{ endif }}
<div id="profile-photo-wrapper"><img class="photo" width="175" height="175" src="$profile.photo" alt="$profile.name"></div>
{{ if $location }}
<dl class="location"><dt class="location-label">$location</dt>
<dd class="adr">
{{ if $profile.address }}<div class="street-address">$profile.address</div>{{ endif }}
<span class="city-state-zip">
<span class="locality">$profile.locality</span>{{ if $profile.locality }}, {{ endif }}
<span class="region">$profile.region</span>
<span class="postal-code">$profile.postal-code</span>
</span>
{{ if $profile.country-name }}<span class="country-name">$profile.country-name</span>{{ endif }}
</dd>
</dl>
{{ endif }}
{{ if $gender }}<dl class="mf"><dt class="gender-label">$gender</dt> <dd class="x-gender">$profile.gender</dd></dl>{{ endif }}
{{ if $profile.pubkey }}<div class="key" style="display:none;">$profile.pubkey</div>{{ endif }}
{{ if $marital }}<dl class="marital"><dt class="marital-label"><span class="heart">&hearts;</span>$marital</dt><dd class="marital-text">$profile.marital</dd></dl>{{ endif }}
{{ if $homepage }}<dl class="homepage"><dt class="homepage-label">$homepage</dt><dd class="homepage-url"><a href="$profile.homepage" target="external-link">$profile.homepage</a></dd></dl>{{ endif }}
{{ inc diaspora_vcard.tpl }}{{ endinc }}
<div id="profile-extra-links">
<ul>
{{ if $connect }}
<li><a id="dfrn-request-link" href="dfrn_request/$profile.nickname">$connect</a></li>
{{ endif }}
</ul>
</div>
</div>
$contact_block

View file

@ -0,0 +1,14 @@
<div class="widget" id="saved-search-list">
<h3 id="search">$title</h3>
$searchbox
<ul id="saved-search-ul">
{{ for $saved as $search }}
<li class="saved-search-li clear">
<a onmouseout="imgdull(this);" onmouseover="imgbright(this);" onclick="return confirmDelete();" class="icon savedsearchdrop drophide" href="network/?f=&amp;remove=1&amp;search=$search.encodedterm"></a>
<a class="savedsearchterm" href="network/?f=&amp;search=$search.encodedterm">$search.term</a>
</li>
{{ endfor }}
</ul>
<div class="clear"></div>
</div>

Binary file not shown.

After

Width:  |  Height:  |  Size: 132 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 808 B

View file

@ -0,0 +1,53 @@
<div class="wall-item-outside-wrapper $item.indent$item.previewing" id="wall-item-outside-wrapper-$item.id" >
<div class="wall-item-content-wrapper $item.indent" id="wall-item-content-wrapper-$item.id" >
<div class="wall-item-info" id="wall-item-info-$item.id">
<div class="wall-item-photo-wrapper mframe" id="wall-item-photo-wrapper-$item.id"
onmouseover="if (typeof t$item.id != 'undefined') clearTimeout(t$item.id); openMenu('wall-item-photo-menu-button-$item.id')"
onmouseout="t$item.id=setTimeout('closeMenu(\'wall-item-photo-menu-button-$item.id\'); closeMenu(\'wall-item-photo-menu-$item.id\');',200)">
<a href="$item.profile_url" target="redir" title="$item.linktitle" class="wall-item-photo-link" id="wall-item-photo-link-$item.id">
<img src="$item.thumb" class="wall-item-photo$item.sparkle" id="wall-item-photo-$item.id" style="height: 80px; width: 80px;" alt="$item.name" /></a>
<span onclick="openClose('wall-item-photo-menu-$item.id');" class="fakelink wall-item-photo-menu-button" id="wall-item-photo-menu-button-$item.id">menu</span>
<div class="wall-item-photo-menu" id="wall-item-photo-menu-$item.id">
<ul>
$item.item_photo_menu
</ul>
</div>
</div>
<div class="wall-item-photo-end"></div>
<div class="wall-item-location" id="wall-item-location-$item.id">{{ if $item.location }}<span class="icon globe"></span>$item.location {{ endif }}</div>
</div>
<div class="wall-item-lock-wrapper">
{{ if $item.lock }}<div class="wall-item-lock"><img src="images/lock_icon.gif" class="lockview" alt="$item.lock" onclick="lockview(event,$item.id);" /></div>
{{ else }}<div class="wall-item-lock"></div>{{ endif }}
</div>
<div class="wall-item-tools" id="wall-item-tools-$item.id">
<div class="wall-item-delete-wrapper" id="wall-item-delete-wrapper-$item.id" >
{{ if $item.drop.dropping }}<a href="item/drop/$item.id" onclick="return confirmDelete();" class="icon drophide" title="$item.drop.delete" onmouseover="imgbright(this);" onmouseout="imgdull(this);" ></a>{{ endif }}
</div>
{{ if $item.drop.dropping }}<input type="checkbox" onclick="checkboxhighlight(this);" title="$item.drop.select" class="item-select" name="itemselected[]" value="$item.id" />{{ endif }}
<div class="wall-item-delete-end"></div>
</div>
<div class="wall-item-content" id="wall-item-content-$item.id" >
<div class="wall-item-title" id="wall-item-title-$item.id">$item.title</div>
<div class="wall-item-title-end"></div>
<div class="wall-item-body" id="wall-item-body-$item.id" >$item.body</div>
</div>
<div class="wall-item-author">
<a href="$item.profile_url" title="$item.linktitle" class="wall-item-name-link"><span class="wall-item-name$item.sparkle" id="wall-item-name-$item.id" >$item.name</span></a>
<div class="wall-item-ago" id="wall-item-ago-$item.id">$item.ago</div>
</div>
</div>
<div class="wall-item-wrapper-end"></div>
<div class="wall-item-conv" id="wall-item-conv-$item.id" >
{{ if $item.conv }}
<a href='$item.conv.href' id='context-$item.id' title='$item.conv.title'>$item.conv.title</a>
{{ endif }}
</div>
<div class="wall-item-wrapper-end"></div>
</div>
<div class="wall-item-outside-wrapper-end $item.indent" ></div>

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

View file

@ -0,0 +1,3337 @@
/*
style.css
Smoothly
Created by Anne Walk and Devlon Duthie on 2011-09-24
Modified by alex@friendica.pixelbits.de on 2012-09-06
*/
/* ========== */
/* = Colors
Blue links - #1873a2
Blue link hover - #6da6c4
Blue Gradients (buttons and other gradients) - #1873a2 and #6da6c4
Grey/body text - #626262
Grey Gradients (buttons and other gradients) - #bdbdbd and #a2a2a2
Dark Grey Gradients - #7c7d7b and #555753
Orange - #fec01d
You can switch out the colors of the header, buttons and links by using a find and replace in your text editor.
= */
/* ========== */
body {
margin: 0 auto;
padding-bottom: 3em;
position: relative;
width: 960px;
font-family: "Lucida Grande","Lucida Sans Unicode",Arial,Verdana,sans-serif;
font-size: 15px;
font-size-adjust: none;
font-style: normal;
font-variant: normal;
font-weight: normal;
line-height: 18px;
color: #626262;
background-color: #F2F2F2;
color: #333333;
}
img {border: 0 none; max-width: 550px; }
a { color: #1873a2; text-decoration: none; margin-bottom:1px;}
a:hover { color: #6da6c4; padding-bottom: 0px;}
h3 > a, h4 > a {
font-size: 18px;
color: #626262;
}
h3 {
margin: 0px;
margin-bottom: 5px;
font-size: 18px;
color: #626262;
}
h2 {
color: #626262;
}
p {
max-width: 600px;
}
label {
/* font-variant:small-caps; */
}
li {
list-style: none;
}
.required { display: inline; color: #1873a2; }
.fakelink { color: #1873a2; cursor: pointer; }
.fakelink :hover { color: #6da6c4; }
.heart { color: #FF0000; font-size: 100%; }
input[type=text] {
border: 1px solid #b0b0b0;
padding: 2px;
width: 466px;
margin-left: 0px;
-webkit-border-radius: 3px 3px 3px 3px;
-moz-border-radius: 3px 3px 3px 3px;
border-radius: 3px 3px 3px 3px;
}
input[type=text-sidebar] {
border: 1px solid #b0b0b0;
padding: 2px;
width: 172px;
margin-left: 10px;
margin-top: 10px;
-webkit-border-radius: 3px 3px 3px 3px;
-moz-border-radius: 3px 3px 3px 3px;
border-radius: 3px 3px 3px 3px;
}
input[type=submit] {
margin: 10px;
border: none;
font-size: 0.9em;
padding: 5px;
-moz-box-shadow:inset 0px 1px 0px 0px #cfcfcf;
-webkit-box-shadow:inset 0px 1px 0px 0px #cfcfcf;
box-shadow:inset 0px 1px 0px 0px #cfcfcf;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #bdbdbd), color-stop(1, #a2a2a2) );
background:-moz-linear-gradient( center top, #bdbdbd 5%, #a2a2a2 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#bdbdbd', endColorstr='#a2a2a2');
background-color:#bdbdbd;
-moz-border-radius:5px;
-webkit-border-radius:5px;
border-radius:5px;
color:#efefef;
text-align: center;
}
input[type=submit]:hover {
border: none;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #1873a2), color-stop(1, #6da6c4) );
background:-moz-linear-gradient( center top, #1873a2 5%, #6da6c4 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#1873a2', endColorstr='#6da6c4');
background-color:#1873a2;
color: #efefef;
}
input[type=submit]:active {
position:relative;
top:1px;
}
.smalltext { font-size: 0.7em }
::selection { background:#fdf795; color: #000; /* Safari and Opera */ }
::-moz-selection { background:#fdf795; color: #000; /* Firefox */ }
section {
float: left;
padding-top: 40px; /*60*/
width: 730px;
font-size: 0.9em;
line-height: 1.2em;
}
.lframe {
border: 1px solid #dddddd;
-moz-box-shadow: 3px 3px 6px #959494;
-webkit-box-shadow: 3px 3px 6px #959494;
box-shadow: 3px 3px 6px #959494;
background-color: #efefef;
padding: 10px;
}
.mframe {
padding: 2px;
background-color: #efefef;
border: 1px solid #dddddd;
-moz-box-shadow: 3px 3px 4px #959494;
-webkit-box-shadow: 3px 3px 4px #959494;
box-shadow: 3px 3px 4px #959494;
}
#wall-item-lock {
margin-left: 10px;
}
.button {
border: none;
font-size: 1em;
-moz-box-shadow:inset 0px 1px 0px 0px #cfcfcf;
-webkit-box-shadow:inset 0px 1px 0px 0px #cfcfcf;
box-shadow:inset 0px 1px 0px 0px #cfcfcf;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #bdbdbd), color-stop(1, #a2a2a2) );
background:-moz-linear-gradient( center top, #bdbdbd 5%, #a2a2a2 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#bdbdbd', endColorstr='#a2a2a2');
background-color:#bdbdbd;
-moz-border-radius:5px;
-webkit-border-radius:5px;
border-radius:5px;
color:#efefef;
text-align: center;
}
.button:hover {
border: none;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #1873a2), color-stop(1, #6da6c4) );
background:-moz-linear-gradient( center top, #1873a2 5%, #6da6c4 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#1873a2', endColorstr='#6da6c4');
background-color:#1873a2;
color: #efefef;
}
.button:active {
position:relative;
top:1px;
}
.button a {
color: #efefef;
}
/* ========= */
/* = Login = */
/* ========= */
#login-name-wrapper {
vertical-align: middle;
margin: auto;
}
#login-name-wrapper input {
width: 120px;
margin-left: 20px;
}
#login-password-wrapper {
vertical-align: middle;
margin: auto;
}
#login-extra-links {
width: 90px;
margin-top: 20px;
}
#login-extra-links a {
display: block;
margin: 10px;
padding: 5px 0px 5px 0px;
text-align: center;
margin-right: 20px;
}
#login-extra-filler {
display: none;
}
/* ========= */
/* = Panel = */
/* ========= */
#panel {
position: absolute;
font-size:0.8em;
-webkit-border-radius: 5px ;
-moz-border-radius: 5px;
border-radius: 5px;
border: 1px solid #494948;
background-color: #2e3436;
opacity:50%;
color: #eeeeec;
padding:1em;
z-index: 200;
-moz-box-shadow: 7px 7px 12px #434343;
-webkit-box-shadow: 7px75px 12px #434343;
box-shadow: 7px 7px 10px #434343;
}
/* ========= */
/* = Pager = */
/* ========= */
.pager {
padding-top: 30px;
display:block;
clear: both;
text-align: center;
}
.pager a {
color: #626262;
}
.pager span { padding: 4px; margin:4px; }
.pager_current { background-color: #1873a2; color: #ffffff; }
/* ======= */
/* = Nav = */
/* ======= */
nav {
display: block;
float: left;
list-style: none outside none;
margin: 0;
padding: 0;
width: 960px;
z-index: 10000;
height: 40px;
position: fixed;
color: #efefef;
background: url("nav-bg.png") no-repeat scroll 0px 0px transparent;
/*background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #7c7d7b), color-stop(1, #555753) );*/
/*background:-moz-linear-gradient( center top, #7c7d7b 5%, #555753 100% );*/
/*filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#7c7d7b', endColorstr='#555753');*/
/*background-color:#7c7d7b;*/
margin-bottom: 16px;
font-size: 15px;
/*border-bottom: 1px solid #494948;*/
}
nav a { text-decoration: none; color: #eeeeec; border:0px;}
nav a:hover { text-decoration: none; color: #eeeeec; border:0px;}
nav #banner {
display: block;
position: absolute;
margin-left: 3px; /*10*/
margin-top: 3px; /*5*/
padding-bottom:5px;
}
nav #banner #logo-text a {
display: hidden;
font-size: 40px;
font-weight: bold;
margin-left: 3px;
}
nav #user-menu {
display: block;
width: 190px; /*240*/
float: right;
margin-right: 5px; /*20%*/
margin-top: 3px;
padding: 5px;
position: relative;
vertical-align: middle;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #797979), color-stop(1, #898988) );
background:-moz-linear-gradient( center top, #797979 5%, #898988 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#797979', endColorstr='#898988');
background-color:#a2a2a2;
-moz-border-radius:5px;
-webkit-border-radius:5px;
border-radius:5px;
border: 1px solid #9A9A9A;
color:#efefef;
text-decoration:none;
text-align: center;
}
nav #user-menu-label::after {
content: url("menu-user-pin.png") no-repeat;
padding-left: 15px;
}
nav #user-menu-label {
vertical-align: middle;
font-size: 12px;
padding: 5px;
text-align: center;
}
ul#user-menu-popup {
display: none;
position: absolute;
background:-webk/* margin-right:10px;*/it-gradient( linear, left top, left bottom, color-stop(0.05, #797979), color-stop(1, #898988) );
background:-moz-linear-gradient( center top, #a2a2a2 5%, #898988 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#797979', endColorstr='#898988');
background-color:#898988;
width: 100%;
padding: 10px 0px;
margin: 0px;
margin-top: 4px;
top: 20px;
left: 0px;
border: 1px solid #9a9a9a;
border-top: none;
-webkit-border-radius: 0px 0px 5px 5px;
-moz-border-radius: 0px 0px 5px 5px;
border-radius: 0px 0px 5px 5px;
-moz-box-shadow: 5px 5px 10px #242424;
-webkit-box-shadow: 5px 5px 10px #242424;
box-shadow: 5px 5px 10px #242424;
z-index: 10000;
}
ul#user-menu-popup li { display: block; }
ul#user-menu-popup li a { display: block; padding: 5px; }
ul#user-menu-popup li a:hover {
color: #efefef;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #6da6c4), color-stop(1, #1873a2) );
background:-moz-linear-gradient( center top, #6da6c4 5%, #1873a2 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#6da6c4', endColorstr='#1873a2');
background-color:#6da6c4;
}
ul#user-menu-popup li a.nav-sep { border-top: 1px solid #989898; border-style:inset; }
/* ============= */
/* = Notifiers = */
/* ============= */
#notifications {
height: 32px;
position: absolute;
top:3px; left: 35%;
}
.nav-ajax-update {
width: 44px;
height: 32px;
background: transparent url('notifications.png') 0px 0px no-repeat;
color: #333333;
font-weight: bold;
font-size: 0.8em;
padding-top: 0.5em;
float: left;
padding-left: 11px;
}
#notify-update { background-position: 0px -168px; }
#net-update { background-position: 0px -126px; }
#mail-update { background-position: 0px -40px; }
#intro-update { background-position: 0px -84px; }
#home-update { background-position: 0px 0px; }
#lang-select-icon {
bottom: 6px;
cursor: pointer;
left: 28px;
position: fixed;
z-index: 10;
}
#language-selector {
position:fixed;
bottom:2px;
left:52px;
z-index:10;
}
/* =================== */
/* = System Messages = */
/* =================== */
#sysmsg_info, #sysmsg {
position:fixed;
bottom: 0px; right:20%;
-moz-box-shadow: 7px 7px 12px #434343;
-webkit-box-shadow: 7px75px 12px #434343;
box-shadow: 7px 7px 10px #434343;
padding: 10px;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #1873a2), color-stop(1, #6da6c4) );
background:-moz-linear-gradient( center top, #1873a2 5%, #6da6c4 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#1873a2', endColorstr='#6da6c4');
background-color:#1873a2;
-webkit-border-radius: 5px 5px 0px 0px;
-moz-border-radius: 5px 5px 0px 0px;
border-radius: 5px 5px 0px 0px;
border: 1px solid #da2c2c;
border-bottom:0px;
padding-bottom: 50px;
z-index: 1000;
color: #efefef;
font-style: bold;
}
#sysmsg_info br,
#sysmsg br {
display:block;
margin:2px 0px;
border-top: 1px solid #dddddd;
}
/* ================= */
/* = Aside/Sidebar = */
/* ================= */
aside {
float: right;
margin-right: 5px; /*10%*/
/*width: 21%;*/
width: 200px; /*250*/
margin-top: 40px; /*50*/
font-size: 1.0em;
font-style: bold;
}
aside a{
padding-bottom: 5px;
}
.vcard {
font-size: 1em;
/* font-variant:small-caps; */
}
.vcard dd {
font-size: 12px;
font-variant: normal;
-webkit-margin-start: 10px;
}
.vcard .fn {
font-size: 1.4em;
font-weight: bold;
border-bottom: none;
padding-top: 15px;
}
.vcard #profile-photo-wrapper {
margin: 10px 0px;
padding: 12px;
width: 175px;
background-color: #f3f3f3;
border: 1px solid #dddddd;
-moz-box-shadow: 3px 3px 4px #959494;
-webkit-box-shadow: 3px 3px 4px #959494;
box-shadow: 3px 3px 4px #959494;
border-radius: 5px 5px 5px 5px;
}
aside h4 { font-size: 1.3em; }
.allcontact-link {
color: #626262;
text-align: center;
font-weight: bold;
/* font-variant:small-caps; */
font-size: 1.1em;
}
.allcontact-link a {
padding-bottom: 10px;
}
#profile-extra-links ul { margin-left: 0px; padding-left: 0px; list-style: none; }
#dfrn-request-link {
-moz-box-shadow:inset 0px 1px 0px 0px #a65151;
-webkit-box-shadow:inset 0px 1px 0px 0px #a65151;
box-shadow:inset 0px 1px 0px 0px #a65151;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #6da6c4), color-stop(1, #1873a2) );
background:-moz-linear-gradient( center top, #6da6c4 5%, #1873a2 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#6da6c4', endColorstr='#1873a2');
background-color:#6da6c4;
-moz-border-radius:5px;
-webkit-border-radius:5px;
border-radius:5px;
border:1px solid #fc5656;
display:inline-block;
color:#f0e7e7;
font-family:Trebuchet MS;
font-size:19px;
font-weight:bold;
text-align: center;
padding:10px;
width: 185px;
text-decoration:none;
text-shadow:1px 1px 0px #b36f6f;
}
#dfrn-request-link:hover {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #1873a2), color-stop(1, #6da6c4) );
background:-moz-linear-gradient( center top, #1873a2 5%, #6da6c4 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#1873a2', endColorstr='#6da6c4');
background-color:#1873a2;
}
#dfrn-request-link:active {
position:relative;
top:1px;
}
#dfrn-request-intro {
width: 600px;
}
#netsearch-box {
background-color: #f6f6f6;
padding: 5px 5px 5px 5px;
}
#netsearch-box input[type="text"] {
width: 97%;
}
#netsearch-box input[type="submit"] {
width: auto;
/*margin-top: 5px;*/
}
h3#search:before {
content: url("search.png");
padding-right: 10px;
vertical-align: middle;
}
#network-new-link {
background-color: #f3f3f3;
border: 1px solid #cdcdcd;
margin-bottom: 10px;
-webkit-border-radius: 5px 5px 5px 5px;
-moz-border-radius: 5px 5px 5px 5px;
border-radius: 5px 5px 5px 5px;
}
#group-sidebar {
vertical-align: middle;
margin: auto;
margin-top: 20px;
padding-bottom: 10px;
}
#sidebar-group-list {
margin-left: 0px;
margin-right: 30px;
}
#sidebar-group-list > a{
padding-bottom: 10px;
}
.widget {
margin-top: 20px;
-moz-box-shadow: 1px 2px 6px 0px #959494;
-webkit-box-shadow: 1px 2px 6px 0px #959494;
box-shadow: 1px 2px 6px 0px #959494;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #f8f8f8), color-stop(1, #f6f6f6) );
background:-moz-linear-gradient( center top, #f8f8f8 5%, #f6f6f6 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f8f8f8', endColorstr='#f6f6f6');
background-color:#f8f8f8;
-moz-border-radius:5px;
-webkit-border-radius:5px;
border-radius:5px;
color:#7c7d7b;
/*text-shadow:-1px 0px 0px #bdbdbd;*/
border: 1px solid #cdcdcd;
}
#sidebar-new-group {
padding:7px;
width: 165px;
margin: auto;
margin-left: 10px; /*40*/
-moz-box-shadow:inset 0px 1px 0px 0px #cfcfcf;
-webkit-box-shadow:inset 0px 1px 0px 0px #cfcfcf;
box-shadow:inset 0px 1px 0px 0px #cfcfcf;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #bdbdbd), color-stop(1, #a2a2a2) );
background:-moz-linear-gradient( center top, #bdbdbd 5%, #a2a2a2 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#bdbdbd', endColorstr='#a2a2a2');
background-color:#bdbdbd;
-moz-border-radius:5px;
-webkit-border-radius:5px;
border-radius:5px;
display:inline-block;
color:#efefef;
text-decoration:none;
text-align: center;
}
#sidebar-new-group:hover {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #1873a2), color-stop(1, #6da6c4) );
background:-moz-linear-gradient( center top, #1873a2 5%, #6da6c4 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#1873a2', endColorstr='#6da6c4');
background-color:#1873a2;
}
#sidebar-new-group:active {
position:relative;
top:1px;
}
.group-selected, .nets-selected {
padding-bottom: 0px;
padding-left: 2px;
padding-right: 2px;
-moz-box-shadow:inset 0px 1px 0px 0px #cfcfcf;
-webkit-box-shadow:inset 0px 1px 0px 0px #cfcfcf;
box-shadow:inset 0px 1px 0px 0px #cfcfcf;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #bdbdbd), color-stop(1, #a2a2a2) );
background:-moz-linear-gradient( center top, #bdbdbd 5%, #a2a2a2 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#bdbdbd', endColorstr='#a2a2a2');
background-color:#bdbdbd;
-moz-border-radius:5px;
-webkit-border-radius:5px;
border-radius:5px;
display:inline-block;
color:#efefef;
text-decoration:none;
}
#sidebar-new-group a {
color: #efefef;
font-size: 14px;
text-align: center;
margin: auto;
}
ul .sidebar-group-li{
list-style: none;
font-size: 1.0em;
padding-bottom: 5px;
}
ul .sidebar-group-li .icon{
display: inline-block;
height: 12px;
width: 12px;
}
.nets-ul {
list-style-type: none;
}
.nets-ul li {
margin-top: 10px;
}
.nets-link {
margin-left: 24px;
}
.nets-all {
margin-left: 42px;
}
.widget h3{
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #f0edf0), color-stop(1, #e2e2e2) );
background:-moz-linear-gradient( center top, #f0edf0 5%, #e2e2e2 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f0edf0', endColorstr='#e2e2e2');
background-color:#f0edf0;
-moz-border-radius:5px 5px 0px 0px;
-webkit-border-radius:5px 5px 0px 0px;
border-radius:5px 5px 0px 0px;
border:1px solid #e2e2e2;
border-bottom: 1px solid #cdcdcd;
padding-top:5px;
padding-bottom: 5px;
vertical-align: baseline;
text-align: center;
text-shadow:-1px 0px 0px #bdbdbd;
}
#group-sidebar h3:before{
content: url("groups.png");
padding-right: 10px;
vertical-align: middle;
}
#saved-search-list{
margin-top: 15px;
padding-bottom: 20px;
}
.saved-search-li {
list-style: none;
font-size: 1.2em;
}
.saved-search-li .icon {
margin-right: 5px;
}
.birthday-today, .event-today {
font-weight: bold;
}
#birthday-wrapper, #event-wrapper {
margin-left: 15px;
}
#pause {
position: fixed;
bottom: 5px;
right: 5px;
}
/* ================== */
/* = Contacts Block = */
/* ================== */
.contact-block-img {
width: 48px; /*42*/
height: 48px;
padding-right: 2px;
}
.contact-block-div {
float: left;
}
.contact-block-textdiv { width: 150px; height: 34px; float: left; }
#contact-block-end { clear: both; }
/* ======= */
/* = Jot = */
/* ======= */
#profile-jot-text_tbl { margin-bottom: 10px; }
#profile-jot-text_ifr { width: 99.9%!important }
#profile-jot-submit-wrapper {
}
#jot-title {
margin: 0px;
height: 20px;
width: 466px;
font-weight: bold;
border: 1px solid #cccccc;
}
#jot-title::-webkit-input-placeholder{font-weight: normal;}
#jot-title:-moz-placeholder{font-weight: normal;}
#jot-title:hover,
#jot-title:focus {
border: 1px solid #cccccc
}
.preview {
background: #FFFFC8;
}
#profile-jot-perms, #profile-jot-submit, #jot-preview-link {
width: 60px;
font-size: 12px;
-moz-box-shadow:inset 0px 1px 0px 0px #cfcfcf;
-webkit-box-shadow:inset 0px 1px 0px 0px #cfcfcf;
box-shadow:inset 0px 1px 0px 0px #cfcfcf;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #bdbdbd), color-stop(1, #a2a2a2) );
background:-moz-linear-gradient( center top, #bdbdbd 5%, #a2a2a2 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#bdbdbd', endColorstr='#a2a2a2');
background-color:#bdbdbd;
-moz-border-radius:5px;
-webkit-border-radius:5px;
border-radius:5px;
display:inline-block;
color:#efefef;
text-decoration:none;
text-align: center;
}
#profile-jot-perms {
width: 30px;
overflow: hidden;
border: 0px;
margin-left:5px;
}
#jot-perms-perms .icon {
height: 1px;
}
#profile-jot-submit {
float: left;
margin-right:5px;
border: 0px;
margin-top: 0px;
margin-left: -30px;
}
#profile-jot-perms:hover, #profile-jot-submit:hover, #jot-preview-link:hover {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #1873a2), color-stop(1, #6da6c4) );
background:-moz-linear-gradient( center top, #1873a2 5%, #6da6c4 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#1873a2', endColorstr='#6da6c4');
background-color:#1873a2;
}
#profile-jot-perms:active, #profile-jot-submit:active, #jot-preview-link:active {
position:relative;
top:1px;
}
#character-counter {
position: absolute: right: 100px; top:100px;
}
#profile-rotator-wrapper {
float: right;
}
.jot-tool {
float: left;
margin-right: 5px;
}
#profile-jot-tools-end,
#profile-jot-banner-end { clear: both; }
#profile-jot-email-wrapper {
margin: 10px 10% 0px 10%;
border: 1px solid #eeeeee;
border-bottom: 0px;
}
#profile-jot-email-label { background-color: #555753; color: #ccccce; padding: 5px;}
#profile-jot-email { margin: 5px; width: 95%; }
#profile-jot-networks {
margin: 0px 10%;
border: 1px solid #eeeeee;
border-top: 0px;
border-bottom: 0px;
padding: 5px;
}
#profile-jot-acl-wrapper {
margin: 0px 10px;
border: 1px solid #eeeeee;
border-top: 0px;
display:block!important;
}
#group_allow_wrapper,
#group_deny_wrapper,
#acl-permit-outer-wrapper { width: 47%; float: left; }
#contact_allow_wrapper,
#contact_deny_wrapper,
#acl-deny-outer-wrapper { width: 47%; float: right; }
#acl-permit-text {background-color: #555753; color: #ccccce; padding: 5px; float: left;}
#jot-public {background-color: #555753; color: #ff0000; padding: 5px; float: left;}
#acl-deny-text {background-color: #555753; color: #ccccce; padding: 5px; float: left;}
#acl-permit-text-end,
#acl-deny-text-end { clear: both; }
#profile-jot-wrapper {
margin-top: 0px;
padding-top: 0px;
}
profile-jot-banner-wrapper {
padding: 0px;
margin: 0px;
}
.contact-h4 {
font-size: 1.2em;
}
/* ======== */
/* = Tabs = */
/* ======== */
.tabs {
min-width: 400px;
list-style: none;
padding: 20px 0px 0px;
/*border-bottom: 1px solid #efefef;*/
font-size: 0.9em;
}
.tabs li { display: inline;}
.tab {
padding: 5px 10px 5px 10px;
display: inline-block;
margin-bottom: 5px;
margin-right: 5px;
font-style: bold;
}
.tab:hover {
padding: 5px 10px 5px 10px;
}
/* ========= */
/* = Posts = */
/* ========= */
.wall-item-outside-wrapper {
max-width: 100%;
border-bottom: 1px solid #dedede;
margin-top: 20px;
margin-bottom: 20px;
padding-right: 10px;
padding-left: 12px;
background: -moz-linear-gradient(center top , #F8F8F8 5%, #F6F6F6 100%) repeat scroll 0 0 #F8F8F8;
border: 1px solid #CDCDCD;
border-radius: 5px 5px 5px 5px;
box-shadow: 3px 3px 4px 0 #959494;
/*color: #E6E6E6;*/
margin-top: 20px;
/*text-shadow: -1px 0 0 #BDBDBD;*/
/* Overflow: hidden; */
}
.wall-item-outside-wrapper-end { clear: both;}
.wall-item-content-wrapper { position: relative; max-width: 100%; padding-top: 10px; }
.wall-item-photo-menu { display: none;}
.wall-item-photo-menu-button {
display:none;
text-indent: -99999px;
background: #eeeeee url("menu-user-pin.png") no-repeat 75px center;
position: absolute;
overflow: hidden;
height: 20px; width: 90px;
top: 85px; left: -1px;
-webkit-border-radius: 0px 0px 5px 5px;
-moz-border-radius: 0px 0px 5px 5px;
border-radius: 0px 0px 5px 5px;
}
.wall-item-info { float: left; width: 100px; } /*140*/
.wall-item-photo-wrapper {
width: 80px; height: 80px;
position: relative;
}
.wall-item-tools {
filter: alpha(opacity=60);
opacity: 0.7;
-webkit-transition: all 0.25s ease-in-out;
-moz-transition: all 0.25s ease-in-out;
-o-transition: all 0.25s ease-in-out;
-ms-transition: all 0.25s ease-in-out;
transition: all 0.25s ease-in-out;
/*margin-left: 140px;*/
margin-top: 10px;
padding-bottom: 5px;
float: right;
}
.wall-item-tools:hover {
filter: alpha(opacity=100);
opacity: 1;
-webkit-transition: all 0.25s ease-in-out;
-moz-transition: all 0.25s ease-in-out;
-o-transition: all 0.25s ease-in-out;
-ms-transition: all 0.25s ease-in-out;
transition: all 0.25s ease-in-out;
margin-left: 140px;
}
.wall-item-outside-wrapper.comment .wall-item-tools {
margin: 5px 5px 0px 70px;
float: right;
}
.wall-item-like-buttons {
float: left;
padding-left: 10px;
}
.wall-item-like-buttons a.icon {
float: left;
margin-right: 5px;
display: inline;
}
.wall-item-links-wrapper {
width: 30px; /*20*/
float: left;
}
.wall-item-delete-wrapper {
float: left;
margin-right: 5px;
}
.wall-item-links-wrapper a.icon {
float: left;
margin-right: 5px;
display: inline;
}
.pencil {
float: left;
}
.star-item {
float: left;
}
.tag-item {
float: left;
}
.wall-item-title { font-size: 1.2em; font-weight: bold; padding-top: 5px; margin-left: 100px;}
.wall-item-body {
margin-left: 100px; /*140*/
padding-right: 10px;
padding-top: 5px;
max-width: 100%; /*85*/
}
.wall-item-body img { max-width: 100%; height: auto; }
.wall-item-body p {
font-size: 0.8em;
}
.wall-item-lock-wrapper { float: right; }
.wall-item-dislike,
.wall-item-like {
clear: left;
font-size: 0.9em;
margin: 0px 0px 10px 450px;
padding-left: 0px;
}
.wall-item-author {
font-size: 0.9em;
margin: 0px 0px 0px 100px;
padding-left: 0px;
}
.wall-item-author a {
color: #898989;
}
.wall-item-ago { display: inline; padding-left: 0px; color: #898989;} /*10*/
.wall-item-wrapper-end { clear:both; }
.wall-item-location {
margin-top:5px;
width: 100px;
overflow: hidden;
text-overflow: ellipsis;
-o-text-overflow: ellipsis;
}
.wall-item-location .icon { float: left; }
.wall-item-location > a {
margin-left: 0px; /*25*/
font-size: 0.9em;
display: block;
/* font-variant:small-caps; */
color: #898989;
}
.wall-item-location .smalltext { margin-left: 25px; font-size: 0.9em; display: block;}
.wall-item-location > br { display: none; }
.wall-item-conv a{
font-size: 0.9em;
color: #898989;
/* font-variant:small-caps; */
}
.wallwall .wwto {
left: -10px;
margin: 0;
position: absolute;
top: 65px;
width: 30px;
z-index: 900;
width: 30px;
height: 30px;
}
.wallwall .wwto img { width: 30px!important; height: 30px!important;}
.wallwall .wall-item-photo-end { clear: both; }
.wall-item-arrowphoto-wrapper {
position: absolute;
left: 20px;
top: 70px;
z-index: 950;
}
.wall-item-photo-menu {
min-width: 92px;
color: #2e3436;
border-top: 1px;
background: #eeeeee;
border-right: 1px solid #dddddd;
border-left: 1px solid #dddddd;
border-bottom: 1px solid #dddddd;
position: absolute;
left: -2px; top: 101px;
display: none;
z-index: 10000;
-webkit-border-radius: 0px 5px 5px 5px;
-moz-border-radius: 0px 5px 5px 5px;
border-radius: 0px 5px 5px 5px;
-moz-box-shadow: 3px 3px 4px #959494;
-webkit-box-shadow: 3px 3px 4px #959494;
box-shadow: 3px 3px 4px #959494;
}
.wall-item-photo-menu-button {
border-right: 1px solid #dddddd;
border-left: 1px solid #dddddd;
border-bottom: 1px solid #dddddd;
-moz-box-shadow: 3px 3px 4px #959494;
-webkit-box-shadow: 3px 3px 4px #959494;
box-shadow: 3px 3px 4px #959494;
}
.fakelink wall-item-photo-menu-button {
-webkit-border-radius: 0px 5px 5px 5px;
-moz-border-radius: 0px 5px 5px 5px;
border-radius: 0px 5px 5px 5px;
-moz-box-shadow: 3px 3px 4px #959494;
-webkit-box-shadow: 3px 3px 4px #959494;
box-shadow: 3px 3px 4px #959494;
}
.wall-item-photo-menu ul { margin:0px; padding: 0px; list-style: none }
.wall-item-photo-menu li a { white-space: nowrap; display: block; padding: 5px 2px; color: #2e3436; }
.wall-item-photo-menu li a:hover {
color: #efefef;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #1873a2), color-stop(1, #6da6c4) );
background:-moz-linear-gradient( center top, #1873a2 5%, #6da6c4 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#1873a2', endColorstr='#6da6c4');
background-color:#1873a2;
order-bottom: none;
}
.icon.drop,
.icon.drophide { float: right;}
#item-delete-selected { overflow: auto; width: 100%;}
/* ============ */
/* = Comments = */
/* ============ */
.ccollapse-wrapper {
font-size: 0.9em;
color: #898989;
margin-left: 60px;
/*font-variant:small-caps;*/
}
.wall-item-outside-wrapper.comment { margin-left: 70px; }
.wall-item-outside-wrapper.comment .wall-item-photo {
width: 40px!important;
height: 40px!important;
}
.wall-item-outside-wrapper.comment .wall-item-photo-wrapper {width: 40px; height: 40px; }
.wall-item-outside-wrapper.comment .wall-item-photo-menu-button {
width: 50px;
top: 45px;
background-position: 35px center;
}
.wall-item-outside-wrapper.comment .wall-item-info { width: 60px; }
.wall-item-outside-wrapper.comment .wall-item-body {
margin-left: 60px;/*70*/
max-width: 100%;
padding-right: 10px;
padding-left: 0px;
}
.wall-item-outside-wrapper.comment .wall-item-author { margin-left: 60px; } /*10*/
.wall-item-outside-wrapper.comment .wall-item-photo-menu {
min-width: 50px;
top: 60px;
}
.icollapse-wrapper {
font-size: 0.9em;
color: #898989;
/* font-variant:small-caps; */
}
.comment-wwedit-wrapper,
.comment-edit-wrapper { margin: 30px 0px 0px 80px;}
.comment-wwedit-wrapper img,
.comment-edit-wrapper img { width: 20px; height: 20px; }
.comment-edit-photo-link { float: left; width: 40px;}
.comment-edit-text-empty {
width: 80%;
height: 20px;
/*border: 0px;*/
color: #babdb6;
-webkit-transition: all 0.5s ease-in-out;
-moz-transition: all 0.5s ease-in-out;
-o-transition: all 0.5s ease-in-out;
-ms-transition: all 0.5s ease-in-out;
transition: all 0.5s ease-in-out;
}
.comment-edit-text-empty:hover { color: #999999;}
.comment-edit-text-full { width: 80%; height: 6em;
-webkit-transition: all 0.5s ease-in-out;
-moz-transition: all 0.5s ease-in-out;
-o-transition: all 0.5s ease-in-out;
-ms-transition: all 0.5s ease-in-out;
transition: all 0.5s ease-in-out;
}
.comment-edit-submit-wrapper { width: 80%; margin-left: 40px; text-align: right; }
.comment-edit-submit {
height: 22px;
background-color: #a2a2a2;
color: #eeeeec;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
border: 0px;
}
.comment-edit-submit:hover {
background-color: #1873a2;
}
.comment-edit-submit:active {
background-color: #1873a2;
}
#item-delete-selected-desc {
color: #898989;
float: right;
}
.wall-item-body code {
font-family: Courier, monospace;
white-space: pre;
display: block;
overflow: auto;
border: 1px solid #cccccc;
border-width: 1px 1px 1px 10px;
padding-left: 10px;
margin-top: 20px;
}
/* =========== */
/* = Profile = */
/* =========== */
.advanced-profile-content {
margin-top: 5px;
margin-bottom: 10px;
margin-left: 30px;
width: 60%;
}
.advanced-profile-label {
margin-top: 10px;
margin-bottom: 0px;
padding-bottom: 5px;
font-size: 18px;
/*font-variant:small-caps;*/
}
div[id$="wrapper"] { height: 100%;}
div[id$="wrapper"] br { clear: left; }
#advanced-profile-with { margin-left: 20px;}
#profile-listing-desc {
float: left;
display: inline;
padding: 5px 10px 5px 10px;
width: 150px;
margin-bottom:20px;
margin-top: 20px;
display:inline-block;
font-style: bold;
text-align: center;
}
#profile-listing-new-link-wrapper {
float: left;
display: inline;
width: auto;
margin-left:5px;
margin-top: 20px;
padding: 5px 10px 5px 10px;
font-style: bold;
text-align: center;
}
.profile-listing-name {
font-size: 1em;
/* font-variant: small-caps;*/
}
.profile-listing-name a {
color: #898989;
}
#profile-edit-links li {
display: inline;
width: 150px;
margin-bottom:20px;
margin-top: 20px;
background-color: #a2a2a2;
color: #eeeeec;
padding: 5px 10px 5px 10px;
margin-right: 5px;
font-style: bold;
-webkit-border-radius: 5px 5px 5px 5px;
-moz-border-radius: 5px 5px 5px 5px;
border-radius: 5px 5px 5px 5px;
}
#profile-edit-links li a {
color: #efefef;
}
#profile-edit-links li:hover {
background-color: #1873a2;
}
#profile-edit-links li:active {
background-color: #1873a2;
}
.profile-edit-side-div {
margin-top: 10px;
margin-right: 0px;
margin-left: 180px;
float: left;
position: absolute;
}
#cropimage-wrapper { float:left; }
#crop-image-form { clear:both; }
.profile-match-name a{
color: #999;
/*font-variant: small-caps;*/
font-size: 1em;
}
.profile-match-name a:hover {
color: #999;
}
.profile-match-wrapper {
width: 82%;
padding: 5px;
margin-bottom:10px;
margin-left: 20px;
background-color: #f6f6f6;
border: 1px solid #dddddd;
-moz-box-shadow: 3px 3px 4px #959494;
-webkit-box-shadow: 3px 3px 4px #959494;
box-shadow: 3px 3px 4px #959494;
clear: both;
}
.profile-match-end {
clear: both;
}
.profile-match-photo {
float: left;
margin-right: 10px;
margin-bottom: 5px;
}
/* ========== */
/* = Photos = */
/* ========== */
.photos {
height: auto;
overflow: auto;
}
#side-bar-photos-albums h3:before {
content: url("photography.png");
padding-right: 10px;
vertical-align: middle;
}
#side-bar-photos-albums li {
font-size: 14px;
font-variant: none;
text-align: left;
padding-left: 20px;
margin-bottom: 5px;
}
#photo-top-links {
width: 130px;
margin-bottom:20px;
margin-top: 20px;
background-color: #a2a2a2;
color: #eeeeec;
padding: 5px 10px 5px 10px;
margin-right: 5px;
font-style: bold;
-webkit-border-radius: 5px 5px 5px 5px;
-moz-border-radius: 5px 5px 5px 5px;
border-radius: 5px 5px 5px 5px;
}
#photo-top-links a {
color: #efefef;
}
#photo-top-links:hover {
background-color: #1873a2;
}
#photo-top-links:active {
background-color: #1873a2;
}
.photo-album-image-wrapper {
float: left;
margin: 0px 10px 10px 0px;
padding-bottom: 30px;
position:relative;
}
.photo-top-image-wrapper {
float: left;
width: 180px;
height: 180px;
margin: 0px 10px 10px 0px;
padding-bottom: 30px;
position:relative;
}
#photo-album-wrapper-inner {
position: relative;
float: left;
width: 180px;
height: 180px;
overflow: hidden;
}
#photo-photo { max-width: 85%; height: auto; }
#photo-photo img { max-width: 100% }
.photo-top-image-wrapper a:hover,
#photo-photo a:hover,
.photo-album-image-wrapper a:hover {
border-bottom: 0px;
}
.photo-top-photo {}
.photo-album-photo {}
.photo-top-album-name {
position: absolute;
bottom: 0px;
padding: 0px 5px;
font-weight: bold;
font-stretch:semi-expanded;
/* font-variant:small-caps; */
}
.photo-top-album-name a{
text-align: center;
color: #6e6e6e;
}
.caption {
position: absolute;
bottom: 0px;
margin: 0px 5px;
text-align: center;
color: #6e6e6e;
font-size: 0.9em;
/* font-variant: small-caps; */
}
#photo-photo{
position: relative;
float:left;
}
#photo-caption {
margin-top: 10px;
color: #6E6E6E;
/* font-variant:small-caps; */
font-size: 1.1em;
}
#photo-photo-end { clear: both; }
#photo-prev-link,
#photo-next-link{
position: absolute;
width:10%;
height: 100%;
background-color: rgba(255,255,255,0.2);
opacity: 0;
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
background-position: center center;
background-repeat: no-repeat;
}
#photo-prev-link { left:0px; top:0px; background-image: url('prev.png'); }
#photo-next-link { right:0px; top:0px; background-image: url('next.png');}
#photo-prev-link a,
#photo-next-link a{
display: block; width: 100%; height: 100%;
overflow: hidden;
text-indent: -900000px;
}
#photo-prev-link:hover,
#photo-next-link:hover {
opacity: 1;
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
#photo-next-link .icon,
#photo-prev-link .icon { display: none }
#photos-upload-spacer,
#photos-upload-new-wrapper,
#photos-upload-exist-wrapper { margin-bottom: 1em; }
#photos-upload-existing-album-text,
#photos-upload-newalbum-div {
background-color: #fff;
color: #909090;
font-size: 1.2em;
padding: 3px 0px;
padding-left: 0px;
width: 300px;
}
#photos-upload-album-select,
#photos-upload-newalbum { width: 400px; }
#photos-upload-perms-menu {
width: 180px;
padding: 7px;
}
#photos-upload-perms-menu .icon {
display: none;
}
select, input {
margin-top: 0px;
border: 1px solid #b0b0b0;
padding: 2px;
-webkit-border-radius: 3px 3px 3px 3px;
-moz-border-radius: 3px 3px 3px 3px;
border-radius: 3px 3px 3px 3px;
}
select[size], select[multiple], select[size][multiple] {
-webkit-appearance: listbox;
}
select {
-webkit-appearance: menulist;
box-sizing: border-box;
-webkit-box-align: center;
cursor: default;
}
keygen, select {
-webkit-border-radius: ;
}
input, textarea, keygen {
font-size: 0.9em;
letter-spacing: normal;
word-spacing: normal;
line-height: 1.2em;
text-transform: none;
text-indent: 0px;
text-shadow: none;
display: inline-block;
text-align: -webkit-auto;
}
.qq-upload-button {
-moz-border-radius:5px;
-webkit-border-radius:5px;
border-radius:5px;
}
#album-edit-link {
width: 70px;
margin-bottom:20px;
margin-top: 20px;
background-color: #a2a2a2;
color: #eeeeec;
padding: 5px 10px 5px 10px;
margin-right: 5px;
font-style: bold;
-webkit-border-radius: 5px 5px 5px 5px;
-moz-border-radius: 5px 5px 5px 5px;
border-radius: 5px 5px 5px 5px;
}
#album-edit-link a {
color: #efefef;
}
#album-edit-link:hover {
background-color: #1873a2;
}
#photo-edit-link-wrap {
margin-bottom: 10px;
}
#photo_edit_form {
width: 500px;
margin-top:20px;
text-align: left;
}
input#photo_edit_form {
display: block;
width: 100%;
}
#photo-edit-perms-menu {
float: left;
display: inline;
margin-top: 10px;
margin-right: 10px;
padding: 4px;
width: 100px;
}
#photo-edit-perms-menu .icon {
display: none;
}
#photo-edit-delete-button {
float: left;
display: inline;
margin-left: 190px;
}
#photo-album-edit-wrapper {
margin-bottom: 10px;
}
/* ============ */
/* = Messages = */
/* ============ */
#prvmail-wrapper, .mail-conv-detail, .mail-list-detail {
position: relative;
width: 500px;
padding: 50px;
margin: 20px auto;
background-color: #fff;
-webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2), inset 0 0 50px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2), inset 0 0 50px rgba(0, 0, 0, 0.1);
box-shadow: 0 0 5px rgba(0, 0, 0, 0.2), inset 0 0 50px rgba(0, 0, 0, 0.1);
}
#prvmail-wrapper:before, #prvmail-wrapper:after, .mail-conv-detail:before, .mail-conv-detail:after, .mail-list-detail:before, .mail-list-detail:after {
position: absolute;
width: 40%;
height: 10px;
content: ' ';
left: 12px;
bottom: 12px;
background: transparent;
-webkit-transform: skew(-5deg) rotate(-5deg);
-moz-transform: skew(-5deg) rotate(-5deg);
-ms-transform: skew(-5deg) rotate(-5deg);
-o-transform: skew(-5deg) rotate(-5deg);
transform: skew(-5deg) rotate(-5deg);
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
-moz-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
z-index: -1;
}
#prvmail-wrapper:after, .mail-conv-detail:after, .mail-list-detail:after {
left: auto;
right: 12px;
-webkit-transform: skew(5deg) rotate(5deg);
-moz-transform: skew(5deg) rotate(5deg);
-ms-transform: skew(5deg) rotate(5deg);
-o-transform: skew(5deg) rotate(5deg);
transform: skew(5deg) rotate(5deg);
}
.prvmail-text {
width: 100%;
}
#prvmail-form input
#prvmail-subject { width: 490px;; padding-left: 10px; font-size: 1.1em; font-style: bold;}
#prvmail-subject .input{
border: none !important ;
}
#prvmail-subject-label {
/* font-variant:small-caps; */
}
#prvmail-to {
padding-left: 10px;
}
#prvmail-to-label {
/* font-variant:small-caps; */
}
#prvmail-message-label {
/* font-variant:small-caps; */
font-size: 1em;
}
#prvmail-submit-wrapper { margin-top: 10px; }
#prvmail-submit {
float: right;
margin-top: 0px;
margin-right: 0px;
}
#prvmail-upload {
margin-left: 0px;
}
#prvmail-submit-wrapper > div {
margin-right: 5px;
float: left;
}
.mail-list-outside-wrapper {
margin-top: 20px;
}
.mail-list-sender {
float: left;
padding: 5px;
background-color: #efefef;
border: 1px dotted #eeeeee;
-moz-box-shadow: 3px 3px 4px #959494;
-webkit-box-shadow: 3px 3px 4px #959494;
box-shadow: 3px 3px 4px #959494;
}
.mail-list-detail {
margin-left: 100px;
width: 600px;
min-height: 70px;
padding: 20px;
padding-top:10px;
border: 1px solid #dddddd;
}
.mail-list-sender-name {
font-size: 1.1em;
display: inline;
/* font-variant:small-caps; */
}
.mail-list-date {
float: right;
clear: block;
display: inline;
font-size: 0.9em;
padding-left: 10px;
font-stretch:ultra-condensed;
/* font-variant:small-caps; */
}
.mail-list-subject {
clear: block;
font-size: 1.2em;
padding-top: 20px;
padding-right: 50px;
}
.mail-list-subject a {
color: #626262;
}
.mail-list-delete-wrapper { float: right;}
.mail-list-outside-wrapper-end {
clear: both;
}
.mail-conv-outside-wrapper {
margin-bottom: 10px;
margin-top: 30px;
}
.mail-conv-sender {float: left; margin: 0px 5px 5px 0px; }
.mail-conv-sender-photo {
width: 64px;
height: 64px;
}
.mail-conv-sender-name { float: left; font-style: bold; }
.mail-conv-date { float: right; }
.mail-conv-subject { clear: right; font-weight: bold; font-size: 1.2em }
.mail-conv-body {
clear: both;
}
.mail-conv-detail {
width: 500px;
padding: 20px;
padding-bottom: 20px;
margin-left: 20px;
margin-bottom: 0px;
vertical-align: middle;
margin: auto;
border: 1px solid #dddddd;
}
.mail-conv-break { display: none; border: none;}
.mail-conv-delete-wrapper { padding-top: 10px; width: 510px; text-align: right; }
#prvmail-subject {
font-weight: bold;
border: 1px solid #dddddd;
}
/* ================= */
/* = Notifications = */
/* ================= */
#notification-show-hide-wrapper {
width: 160px;
-moz-box-shadow:inset 0px 1px 0px 0px #cfcfcf;
-webkit-box-shadow:inset 0px 1px 0px 0px #cfcfcf;
box-shadow:inset 0px 1px 0px 0px #cfcfcf;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #bdbdbd), color-stop(1, #a2a2a2) );
background:-moz-linear-gradient( center top, #bdbdbd 5%, #a2a2a2 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#bdbdbd', endColorstr='#a2a2a2');
background-color:#bdbdbd;
-moz-border-radius:5px;
-webkit-border-radius:5px;
border-radius:5px;
padding: 5px 10px 5px 10px;
margin-right: 5px;
margin-top: 10px;
font-style: bold;
color: #efefef;
text-align: center;
}
#notification-show-hide-wrapper:hover {
color: #efefef;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #1873a2), color-stop(1, #6da6c4) );
background:-moz-linear-gradient( center top, #1873a2 5%, #6da6c4 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#1873a2', endColorstr='#6da6c4');
background-color:#1873a2;
}
#notification-show-hide-wrapper:active {
background-color: #1873a2;
position:relative;
top:1px;
}
#notification-show-hide-wrapper a {
color: #efefef;
}
/* ============ */
/* = Contacts = */
/* ============ */
#contacts-main {
margin-bottom: 10px;
}
.view-contact-wrapper,
.contact-entry-wrapper {
float: left;
margin-right: 30px;
margin-bottom: 20px;
width: 88px;
height: 120px;
position: relative;
}
.contact-entry-direction-wrapper {position: absolute; top: 20px;}
.contact-entry-edit-links { position: absolute; top: 60px; }
#contacts-show-hide-link { margin-bottom: 20px; margin-top: 10px; font-weight: bold;}
.contact-entry-name {
width: 100px;
overflow: hidden;
font: #999;
font-size: 12px;
text-align:center;
/* font-variant:small-caps; */
font-weight: bold;
margin-top:5px;
}
.contact-entry-photo {
position: relative;
}
.contact-entry-edit-links .icon {
border: 1px solid #babdb6;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
background-color: #ffffff;
}
#contact-edit-banner-name { font-size: 1.5em; margin-left: 30px; }
#contact-edit-update-now {
padding:7px;
width: 165px;
margin: auto;
margin-left: 40px;
-moz-box-shadow:inset 0px 1px 0px 0px #cfcfcf;
-webkit-box-shadow:inset 0px 1px 0px 0px #cfcfcf;
box-shadow:inset 0px 1px 0px 0px #cfcfcf;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #bdbdbd), color-stop(1, #a2a2a2) );
background:-moz-linear-gradient( center top, #bdbdbd 5%, #a2a2a2 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#bdbdbd', endColorstr='#a2a2a2');
background-color:#bdbdbd;
-moz-border-radius:5px;
-webkit-border-radius:5px;
border-radius:5px;
display:inline-block;
color:#efefef;
text-decoration:none;
text-align: center;
}
#contact-edit-update-now:hover {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #1873a2), color-stop(1, #6da6c4) );
background:-moz-linear-gradient( center top, #1873a2 5%, #6da6c4 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#1873a2', endColorstr='#6da6c4');
background-color:#1873a2;
}
#contact-edit-update-now:active {
position:relative;
top:1px;
}
#contact-edit-update-now a {
color: #efefef;
font-size: 14px;
text-align: center;
margin: auto;
}
.contact-photo-menu-button {
position: absolute;
background-image: url("photo-menu.jpg");
background-position: top left;
background-repeat: no-repeat;
margin: 0px; padding: 0px;
width: 16px;
height: 16px;
top: 64px; left:0px;
overflow: hidden;
text-indent: 40px;
display: none;
}
.contact-photo-menu {
width: auto;
border: 1px solid #ddd;
background: #f1f1f1;
position: absolute;
left: 0px; top: 90px;
display: none;
z-index: 10000;
-moz-box-shadow: 3px 3px 5px #888;
-webkit-box-shadow: 3px 3px 5px #888;
box-shadow: 3px 3px 5px #888;
}
.contact-photo-menu ul { margin:0px; padding: 0px; list-style: none }
.contact-photo-menu li a { display: block; padding: 3px; color: #626262; font-size: 1em; }
.contact-photo-menu li a:hover {
color: #FFFFFF;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #1873a2), color-stop(1, #6da6c4) );
background:-moz-linear-gradient( center top, #1873a2 5%, #6da6c4 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#1873a2', endColorstr='#6da6c4');
background-color:#1873a2;
text-decoration: none;
}
.view-contact-name {
/* font-variant: small-caps; */
}
#div.side-link {
background-color: #efefef;
padding: 10px;
margin-top:20px;
}
#follow-sidebar {
margin-bottom: 20px;
}
#follow-sidebar h3:before {
content: url("user.png");
padding-right: 10px;
vertical-align: middle;
}
#follow-sidebar input[type="text"] {
margin-left: 3px;
margin-bottom: 10px;
}
#side-follow-submit {
width: 178px;
margin: 10px;
text-align: center;
}
#side-match-link {
width: 158px;
padding: 10px;
margin: auto 10px 20px;
/*margin-bottom: 20px;*/
-moz-box-shadow:inset 0px 1px 0px 0px #cfcfcf;
-webkit-box-shadow:inset 0px 1px 0px 0px #cfcfcf;
box-shadow:inset 0px 1px 0px 0px #cfcfcf;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #bdbdbd), color-stop(1, #a2a2a2) );
background:-moz-linear-gradient( center top, #bdbdbd 5%, #a2a2a2 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#bdbdbd', endColorstr='#a2a2a2');
background-color:#bdbdbd;
-moz-border-radius:5px;
-webkit-border-radius:5px;
border-radius:5px;
padding: 5px 10px 5px 10px;
color: #efefef;
font-size: 1.1em;
text-align: center;
}
#side-match-link:hover {
color: #efefef;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #1873a2), color-stop(1, #6da6c4) );
background:-moz-linear-gradient( center top, #1873a2 5%, #6da6c4 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#1873a2', endColorstr='#6da6c4');
background-color:#1873a2;
}
#side-match-link:active {
background-color: #1873a2;
position:relative;
top:1px;
}
#side-match-link a {
color: #efefef;
}
#side-invite-link {
width: 80%;
padding: 10px;
margin: auto;
margin-bottom: 20px;
-moz-box-shadow:inset 0px 1px 0px 0px #cfcfcf;
-webkit-box-shadow:inset 0px 1px 0px 0px #cfcfcf;
box-shadow:inset 0px 1px 0px 0px #cfcfcf;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #bdbdbd), color-stop(1, #a2a2a2) );
background:-moz-linear-gradient( center top, #bdbdbd 5%, #a2a2a2 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#bdbdbd', endColorstr='#a2a2a2');
background-color:#bdbdbd;
-moz-border-radius:5px;
-webkit-border-radius:5px;
border-radius:5px;
padding: 5px 10px 5px 10px;
color: #efefef;
font-size: 1.1em;
text-align: center;
}
#side-invite-link:hover {
color: #efefef;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #1873a2), color-stop(1, #6da6c4) );
background:-moz-linear-gradient( center top, #1873a2 5%, #6da6c4 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#1873a2', endColorstr='#6da6c4');
background-color:#1873a2;
}
#side-invite-link:active {
background-color: #1873a2;
position:relative;
top:1px;
}
#side-invite-link a {
color: #efefef;
}
#side-suggest-link {
width: 80%;
padding: 10px;
margin: auto;
margin-bottom: 20px;
-moz-box-shadow:inset 0px 1px 0px 0px #cfcfcf;
-webkit-box-shadow:inset 0px 1px 0px 0px #cfcfcf;
box-shadow:inset 0px 1px 0px 0px #cfcfcf;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #bdbdbd), color-stop(1, #a2a2a2) );
background:-moz-linear-gradient( center top, #bdbdbd 5%, #a2a2a2 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#bdbdbd', endColorstr='#a2a2a2');
background-color:#bdbdbd;
-moz-border-radius:5px;
-webkit-border-radius:5px;
border-radius:5px;
padding: 5px 10px 5px 10px;
color: #efefef;
font-size: 1.1em;
text-align: center;
}
#side-suggest-link:hover {
color: #efefef;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #1873a2), color-stop(1, #6da6c4) );
background:-moz-linear-gradient( center top, #1873a2 5%, #6da6c4 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#1873a2', endColorstr='#6da6c4');
background-color:#1873a2;
}
#side-suggest-link:active {
background-color: #1873a2;
position:relative;
top:1px;
}
#side-suggest-link a {
color: #efefef;
}
#invite-message, #invite-recipients, #invite-recipient-text {
padding: 10px;
}
#side-follow-wrapper {
font-size: 1em;
font-weight: bold;
font-stretch:semi-expanded;
background-color: #f3f3f3;
border: 1px solid #cdcdcd;
padding: 10px;
margin-top: 20px;
-webkit-border-radius: 5px 5px 5px 5px;
-moz-border-radius: 5px 5px 5px 5px;
border-radius: 5px 5px 5px 5px;
}
#side-follow-wrapper label{
font-size: 1.1em;
font-variant: normal;
}
#contact-suggest {
float: left;
margin-left: 10px;
width: 120px;
padding: 10px;
margin-bottom: 20px;
-moz-box-shadow:inset 0px 1px 0px 0px #cfcfcf;
-webkit-box-shadow:inset 0px 1px 0px 0px #cfcfcf;
box-shadow:inset 0px 1px 0px 0px #cfcfcf;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #bdbdbd), color-stop(1, #a2a2a2) );
background:-moz-linear-gradient( center top, #bdbdbd 5%, #a2a2a2 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#bdbdbd', endColorstr='#a2a2a2');
background-color:#bdbdbd;
-moz-border-radius:5px;
-webkit-border-radius:5px;
border-radius:5px;
padding: 5px 10px 5px 10px;
color: #efefef;
font-size: 1.2em;
text-align: center;
}
#contact-suggest:hover {
color: #efefef;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #1873a2), color-stop(1, #6da6c4) );
background:-moz-linear-gradient( center top, #1873a2 5%, #6da6c4 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#1873a2', endColorstr='#6da6c4');
background-color:#1873a2;
}
#contact-suggest:active {
background-color: #1873a2;
position:relative;
top:1px;
}
#contact-suggest a {
color: #efefef;
}
.crepair-label {
margin-top: 10px;
float: left;
width: 250px;
}
.crepair-input {
margin-top: 10px;
float: left;
width: 200px;
}
/* ===================================== */
/* = Register, Settings, Profile Forms = */
/* ===================================== */
.openid input{
background: url(login-bg.gif) no-repeat;
background-position: 0 50%;
padding-left: 18px;
width: 384px!important;
}
#profile-tabs-wrapper {
padding-top: 10px;
}
#profile-tab-status-link {
border: 0px;
padding: 5px 10px 5px 10px;
font-style: bold;
}
#uexport-link a {
color: #efefef;
}
#profile-tab-profile-link {
border: 0px;
padding: 5px 10px 5px 10px;
}
#uexport-link {
width: 140px;
-moz-box-shadow:inset 0px 1px 0px 0px #cfcfcf;
-webkit-box-shadow:inset 0px 1px 0px 0px #cfcfcf;
box-shadow:inset 0px 1px 0px 0px #cfcfcf;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #7c7d7b), color-stop(1, #555753) );
background:-moz-linear-gradient( center top, #7c7d7b 5%, #555753 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#7c7d7b', endColorstr='#555753');
background-color:#7c7d7b;
-moz-border-radius:5px;
-webkit-border-radius:5px;
border-radius:5px;
padding: 5px 10px 5px 10px;
margin-bottom: 10px;
}
#uexport-link:hover {
color: #efefef;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #555753), color-stop(1, #7c7d7b) );
background:-moz-linear-gradient( center top, #555753 5%, #7c7d7b 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#555753', endColorstr='#7c7d7b');
background-color:#555753;
}
#uexport-link:active {
color: #efefef;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #1873a2), color-stop(1, #6da6c4) );
background:-moz-linear-gradient( center top, #1873a2 5%, #6da6c4 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#1873a2', endColorstr='#6da6c4');
background-color:#1873a2;
position:relative;
top:1px;
}
#settings-default-perms {
width: 260px;
text-align: center;
-moz-box-shadow:inset 0px 1px 0px 0px #cfcfcf;
-webkit-box-shadow:inset 0px 1px 0px 0px #cfcfcf;
box-shadow:inset 0px 1px 0px 0px #cfcfcf;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #7c7d7b), color-stop(1, #555753) );
/*background:-moz-linear-gradient( center top, #7c7d7b 5%, #555753 100% );*/
background: -moz-linear-gradient(center top , #BDBDBD 5%, #A2A2A2 100%) repeat scroll 0 0 #BDBDBD;
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#7c7d7b', endColorstr='#555753');
color: #EFEFEF;
background-color:#7c7d7b;
-moz-border-radius:5px;
-webkit-border-radius:5px;
border-radius:5px;
padding: 5px 10px 5px 10px;
margin-bottom: 10px;
}
#settings-default-perms .fakelink {
color: #efefef;
}
#settings-default-perms:hover {
color: #efefef;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #555753), color-stop(1, #7c7d7b) );
background:-moz-linear-gradient( center top, #555753 5%, #7c7d7b 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#555753', endColorstr='#7c7d7b');
background-color:#555753;
}
#settings-default-perms:active {
color: #efefef;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #1873a2), color-stop(1, #6da6c4) );
background:-moz-linear-gradient( center top, #1873a2 5%, #6da6c4 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#1873a2', endColorstr='#6da6c4');
background-color:#1873a2;
position:relative;
top:1px;
}
#settings-nickname-desc {
width: 80%;
background-color: #efefef;
margin-bottom: 10px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
padding: 5px;
}
#register-form div {
clear: both;
}
#profile-edit-form div {
margin-bottom: 5px;
}
#profile-edit-form div[id$='desc'] {
font-size: 0.8em;
margin-left: 2%;
}
#register-form label,
#profile-edit-form label {
width: 300px; float: left;
}
/* #register-form span,
#profile-edit-form span { */
#register-form span {
color: #555753;
display:block;
margin-bottom: 20px;
}
.settings-submit-wrapper,
.profile-edit-submit-wrapper { margin: 30px 0px;}
.profile-listing { float: left; clear: both; margin: 20px 20px 0px 0px}
#profile-edit-links ul { margin: 20px 0px; padding: 0px; list-style: none; }
#register-sitename { display: inline; font-weight: bold;}
/* ===================== */
/* = Contacts Selector = */
/* ===================== */
#group-edit-wrapper {
margin-bottom: 10px;
}
#group-edit-name-wrapper {
margin-bottom: 0px;
display: inline;
}
#group-edit-submit-wrapper {
margin-bottom: 10px;
margin-right: 400px;
float: right;
display: inline;
}
.group-delete-wrapper {
width: 90px;
display: inline;
padding: 5px;
margin-bottom: 10px;
-moz-box-shadow:inset 0px 1px 0px 0px #cfcfcf;
-webkit-box-shadow:inset 0px 1px 0px 0px #cfcfcf;
box-shadow:inset 0px 1px 0px 0px #cfcfcf;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #bdbdbd), color-stop(1, #a2a2a2) );
background:-moz-linear-gradient( center top, #bdbdbd 5%, #a2a2a2 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#bdbdbd', endColorstr='#a2a2a2');
background-color:#bdbdbd;
-moz-border-radius:5px;
-webkit-border-radius:5px;
border-radius:5px;*/
}
.group-delete-wrapper:hover {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #1873a2), color-stop(1, #6da6c4) );
background:-moz-linear-gradient( center top, #1873a2 5%, #6da6c4 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#1873a2', endColorstr='#6da6c4');
background-color:#1873a2;
}
.group-delete-wrapper:active {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #1873a2), color-stop(1, #6da6c4) );
background:-moz-linear-gradient( center top, #1873a2 5%, #6da6c4 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#1873a2', endColorstr='#6da6c4');
background-color:#1873a2;
}
.group-delete-wrapper a {
color: #efefef;
font-size: 0.9em;
}
#group-edit-desc { margin: 10px 0xp; }
#group-new-text {font-size: 1.1em;}
#group-members,
#prof-members {
width: 83%;
height: 200px;
overflow: auto;
border: none;
background-color: #f0edf0;
color: #555753;
border: 1px solid #ccc;
margin-bottom: 10px;
padding: 10px;
}
#group-all-contacts,
#prof-all-contacts {
width: 83%;
height: 200px;
overflow: auto;
border: 1px solid #ccc;
background-color: #f0edf0;
padding: 10px;
}
#group-members h3,
#group-all-contacts h3,
#prof-members h3,
#prof-all-contacts h3{
color: #555753;
margin: 0px;
padding: 5px;
}
#group-separator,
#prof-separator { display: none;}
/* ========== */
/* = Events = */
/* ========== */
.clear { clear: both; }
.eventcal {
float: left;
font-size: 20px;
padding: 20px;
}
.vevent {
position: relative;
width: 400px;
padding: 20px;
padding-top: 10px;
margin: 0 0px;
margin-bottom: 10px;
background-color: #fff;
-webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2), inset 0 0 50px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2), inset 0 0 50px rgba(0, 0, 0, 0.1);
box-shadow: 0 0 5px rgba(0, 0, 0, 0.2), inset 0 0 50px rgba(0, 0, 0, 0.1);
}
.vevent:before, .vevent:after {
position: absolute;
width: 40%;
height: 10px;
content: ' ';
left: 12px;
bottom: 12px;
background: transparent;
-webkit-transform: skew(-5deg) rotate(-5deg);
-moz-transform: skew(-5deg) rotate(-5deg);
-ms-transform: skew(-5deg) rotate(-5deg);
-o-transform: skew(-5deg) rotate(-5deg);
transform: skew(-5deg) rotate(-5deg);
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
-moz-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
z-index: -1;
}
.vevent:after {
left: auto;
right: 12px;
-webkit-transform: skew(5deg) rotate(5deg);
-moz-transform: skew(5deg) rotate(5deg);
-ms-transform: skew(5deg) rotate(5deg);
-o-transform: skew(5deg) rotate(5deg);
transform: skew(5deg) rotate(5deg);
}
.vevent .event-description {
margin-left: 10px;
margin-right: 10px;
text-align:center;
font-size: 1.2em;
font-weight:bolder;
}
.vevent .event-location{
margin-left: 10px;
margin-right: 10px;
font-size: 1em;
font-style: oblique;
text-align: center;
}
.vevent .event-start, .vevent .event-end {
margin-left: 20px;
margin-right: 20px;
margin-bottom: 2px;
margin-top: 2px;
font-size: 0.9em;
/* font-variant: small-caps; */
text-align: left;
}
#new-event-link{
width: 130px;
padding: 7px;
margin-bottom: 10px;
margin-left: 170px; ;
-moz-box-shadow:inset 0px 1px 0px 0px #cfcfcf;
-webkit-box-shadow:inset 0px 1px 0px 0px #cfcfcf;
box-shadow:inset 0px 1px 0px 0px #cfcfcf;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #bdbdbd), color-stop(1, #a2a2a2) );
background:-moz-linear-gradient( center top, #bdbdbd 5%, #a2a2a2 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#bdbdbd', endColorstr='#a2a2a2');
background-color:#bdbdbd;
-moz-border-radius:5px;
-webkit-border-radius:5px;
border-radius:5px;
color: #efefef;
}
#new-event-link:hover {
color: #efefef;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #1873a2), color-stop(1, #6da6c4) );
background:-moz-linear-gradient( center top, #1873a2 5%, #6da6c4 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#1873a2', endColorstr='#6da6c4');
background-color:#1873a2;
}
#new-event-link:active {
background-color: #1873a2;
position:relative;
top:1px;
}
#new-event-link a {
color: #efefef;
text-align: center;
}
.edit-event-link, .plink-event-link {
float: left;
margin-top: 4px;
margin-right: 4px;
margin-bottom: 15px;
}
.event-description:before {
content: url('calendar.png');
margin-right: 15px;
vertical-align: middle;
}
.event-start, .event-end {
margin-left: 10px;
width: 330px;
}
.event-start .dtstart, .event-end .dtend {
float: right;
}
.event-list-date {
color: #626262;
margin-bottom: 10px;
/* font-variant:small-caps; */
font-stretch:condensed;
}
.prevcal, .nextcal {
float: left;
margin-left: 32px;
margin-right: 32px;
margin-top: 64px;
}
.event-calendar-end {
clear: both;
}
.calendar {
width: 300px;
font-family: Helvetica, Arial, sans-serif;
background-color: #f1f1f1;
border: 1px solid #dedede;
margin-bottom: 10px;
-moz-box-shadow: 5px 5px 8px #959494;
-webkit-box-shadow: 5px 5px 8px #959494;
box-shadow: 5px 5px 8px #959494;
}
.calendar caption{
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #6da6c4), color-stop(1, #1873a2) );
background:-moz-linear-gradient( center top, #6da6c4 5%, #1873a2 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#6da6c4', endColorstr='#1873a2');
background-color: #1873a2;
padding: 10px 0px 10px 0px;
width: 300px;
color: #ffffff;
font-weight: bold;
text-align:center;
/* font-variant:small-caps; */
-moz-box-shadow: 5px 2px 8px #959494;
-webkit-box-shadow: 5px 2px 8px #959494;
box-shadow: 5px 2px 8px #959494;
}
tr {
border: 1px solid #eeeeee;
}
.calendar td {
font-size: 14px;
text-align: center;
padding: 3px 0px;
}
.calendar td > a {
background-color: #cdcdcd;
padding: 2px;
color: #000;
}
.calendar th {
font-size: 16px;
}
.today {
font-weight: bold;
text-align: center;
background-color: #1873a2;
color: #fff;
}
#event-start-text,
#event-finish-text {
margin-top: 10px;
margin-bottom: 5px;
}
#event-nofinish-checkbox,
#event-nofinish-text,
#event-adjust-checkbox,
#event-adjust-text,
#event-share-checkbox {
float: left;
}
#event-datetime-break {
margin-bottom: 10px;
}
#event-nofinish-break,
#event-adjust-break,
#event-share-break {
clear: both;
}
#event-desc-text,
#event-location-text {
margin-top: 10px;
margin-bottom: 5px;
}
#event-submit {
margin-top: 10px;
}
/* ============= */
/* = Directory = */
/* ============= */
.directory-item {
float: left;
margin: 50px 50px 0px 0px;
}
.directory-details {
font-size: 0.9em;
/* font-variant: small-caps; */
width: 160px;
}
.directory-name {
font-size: 1em;
/* font-variant: small-caps; */
width: 150px;
}
/* ========= */
/* = Admin = */
/* ========= */
#adminpage {
width: 80%;
}
#pending-update {
float:right;
color: #ffffff;
font-weight: bold;
background-color: #FF0000;
padding: 0em 0.3em;
}
.admin.linklist {
border: 0px; padding: 0px;
}
.admin.link {
list-style-position: inside;
font-size: 1em;
padding: 5px;
width: auto;
margin: 5px;
}
#adminpage dl {
clear: left;
margin-bottom: 2px;
padding-bottom: 2px;
border-bottom: 1px solid black;
}
#adminpage dt {
width: 200px;
float: left;
font-weight: bold;
}
#adminpage dd {
margin-left: 200px;
}
#adminpage h3 {
border-bottom: 1px solid #898989;
margin-bottom: 5px;
margin-top: 10px;
}
#adminpage .submit {
clear:left;
}
#adminpage #pluginslist {
margin: 0px; padding: 0px;
}
#adminpage .plugin {
list-style: none;
display: block;
border: 1px solid #888888;
padding: 1em;
margin-bottom: 5px;
clear: left;
}
#adminpage .toggleplugin {
float:left;
margin-right: 1em;
}
#adminpage table {width:100%; border-bottom: 1p solid #000000; margin: 5px 0px;}
#adminpage table th { text-align: left;}
#adminpage td .icon { float: left;}
#adminpage table#users img { width: 16px; height: 16px; }
#adminpage table tr:hover { background-color: #eeeeee; }
#adminpage .selectall { text-align: right; }
/* =============== */
/* = Form Fields = */
/* =============== */
.field {
margin-bottom: 10px;
margin-top: 10px;
padding-bottom: 0px;
/*overflow: auto;*/
width: 90%;
}
.field label {
float: left;
width: 400px; /*550*/
}
.field input,
.field textarea {
width: 220px;
border: 1px solid #CDCDCD;
border-radius: 5px 5px 5px 5px;
/*box-shadow: 3px 3px 4px 0 #959494;*/
}
.field textarea { height: 100px; }
.field_help {
display: block;
margin-left: 100px;
color: #666666;
}
.field .onoff {
float: left;
width: 80px;
}
.field .onoff a {
display: block;
border:1px solid #c1c1c1;
background-image:url("../../../images/onoff.jpg");
background-repeat: no-repeat;
padding: 4px 2px 2px 2px;
height: 16px;
text-decoration: none;
}
.field .onoff .off {
border-color:#c1c1c1;
padding-left: 40px;
background-position: left center;
background-color: #cccccc;
color: #666666;
text-align: right;
}
.field .onoff .on {
border-color:#c1c1c1;
padding-right: 40px;
background-position: right center;
background-color: #1873a2;
color: #FFFFFF;
text-align: left;
}
.hidden { display: none!important; }
.field.radio .field_help { margin-left: 0px; }
/* ========= */
/* = Icons = */
/* ========= */
.sparkle {
cursor: url('lock.cur'), pointer;
}
.icon {
margin-left: 5px;
margin-right: 5px;
display: block; width: 20px; height: 20px;
background-image: url('icons.png');
}
.starred {
background-image: url("star.png");
repeat: no-repeat;
}
.unstarred {
background-image: url("premium.png");
repeat: no-repeat;
}
.notify {
background-image: url("notifications.png");}
repeat: no-repeat;
}
.border {
border: 1px solid #c1c1c1;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
.article { background-position: -50px 0px;}
.audio { background-position: -70px 0px;}
.block { background-position: -90px 0px;}
.drop { background-position: -110px 0px;}
.drophide { background-position: -130px 0px;}
.edit { background-position: -150px 0px;}
.camera { background-position: -170px 0px;}
.dislike { background-position: -190px 0px;}
.like { background-position: -210px 0px;}
.link { background-position: -230px 0px;}
.globe { background-position: -50px -20px;}
.noglobe { background-position: -70px -20px;}
.no { background-position: -90px -20px;}
.pause { background-position: -110px -20px;}
.play { background-position: -130px -20px;}
.pencil { background-position: -150px -20px;}
.small-pencil { background-position: -170px -20px;}
.recycle { background-position: -190px -20px;}
.remote-link { background-position: -210px -20px;}
.share { background-position: -230px -20px;}
.tools { background-position: -50px -40px;}
.lock { background-position: -70px -40px;}
.unlock {
background-position: -90px -40px;
background-image: none;
width: 70px;
height: 20px;
}
.sharePerms {
background-image: url(icons.png);
width: 20px;
height: 20px;
margin: 2px 0px 2px 3px;
display: block;
}
.video { background-position: -110px -40px;}
.youtube { background-position: -130px -40px;}
.attach { background-position: -190px -40px;}
.language { background-position: -210px -40px;}
.on { background-position: -50px -60px;}
.off { background-position: -70px -60px;}
.prev { background-position: -90px -60px;}
.next { background-position: -110px -60px;}
.tagged { background-position: -130px -60px;}
.icon.dim { opacity: 0.3;filter:alpha(opacity=30); }
.attachtype {
display: block; width: 20px; height: 23px;
background-image: url('../../../images/content-types.png');
}
.type-video { background-position: 0px 0px; }
.type-image { background-position: -20px 0px; }
.type-audio { background-position: -40px 0px; }
.type-text { background-position: -60px 0px; }
.type-unkn { background-position: -80px 0px; }
/* ========== */
/* = Footer = */
/* ========== */
.cc-license { margin-top: 100px; font-size: 0.7em; }
footer { display: block; margin: 50px 20%; clear: both; }
#profile-jot-text {
height: 20px;
color:#cccccc;
/*border: 1px solid #cccccc;*/
}
/* ======= */
/* = ACL = */
/* ======= */
#photo-edit-perms-select,
#photos-upload-permissions-wrapper,
#profile-jot-acl-wrapper{
display:block!important;
}
#acl-wrapper {
width: 690px;
float:left;
}
#acl-search {
float:right;
background: #ffffff url("../../../images/search_18.png") no-repeat right center;
padding-right:20px;
}
#acl-showall {
float: left;
display: block;
font-size: 1em;
font-style: bold;
text-align: center;
padding: 3px;
margin-bottom: 5px;
background-color: #cccccc;
background-position: 7px 7px;
background-repeat: no-repeat;
padding: 5px;
-webkit-border-radius: 5px ;
-moz-border-radius: 5px;
border-radius: 5px;
color: #999999;
}
#acl-showall.selected {
color: #fff;
background-color: #1873a2;
}
#acl-list {
height: auto;
border: 1px solid #cccccc;
background-color: #efefef;
clear: both;
margin-top: 30px;
overflow: auto;
}
#acl-list-content {
margin-left: 20px;
}
.acl-list-item {
display: block;
width: 155px;
height: 50px;
border: 1px solid #cccccc;
background-color: #fff;
margin: 5px;
float: left;
-moz-box-shadow: 2px 2px 3px #c1c1c1;
-webkit-box-shadow: 2px 2px 3px #c1c1c1;
box-shadow: 2px 2px 3px #c1c1c1;
}
.acl-list-item img{
width:30px;
height: 30px;
float: left;
margin: 5px;
}
.acl-list-item p {
color: #999;
height: 12px;
font-size: 0.7em;
margin: 0px;
padding: 2px 0px 1px;
overflow: hidden;
}
.acl-list-item a {
font-size: 10px;
display: block;
float: left;
color: #efefef;
background-color: #898989;
background-position: 3px 3px;
background-repeat: no-repeat;
margin: 10px 0 0 5px;
-webkit-border-radius: 2px ;
-moz-border-radius: 2px;
border-radius: 2px;
padding: 3px;
}
#acl-wrapper a:hover {
text-decoration: none;
background-color:#1873a2;
}
.acl-button-show.selected {
color: #efefef;
background-color: #1873a2;
}
.acl-button-hide.selected {
color: #efefef;
background-color: #a2a2a2;
}
.acl-list-item.groupshow { border-color: #1873a2; }
.acl-list-item.grouphide { border-color: #a2a2a2; }
/* ========================= */
/* = Global Directory Link = */
/* ========================= */
#global-directory-link {
width: 130px;
padding: 7px;
margin-bottom: 10px;
margin-left: 0px;
-moz-box-shadow:inset 0px 1px 0px 0px #cfcfcf;
-webkit-box-shadow:inset 0px 1px 0px 0px #cfcfcf;
box-shadow:inset 0px 1px 0px 0px #cfcfcf;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #bdbdbd), color-stop(1, #a2a2a2) );
background:-moz-linear-gradient( center top, #bdbdbd 5%, #a2a2a2 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#bdbdbd', endColorstr='#a2a2a2');
background-color:#bdbdbd;
-moz-border-radius:5px;
-webkit-border-radius:5px;
border-radius:5px;
color: #efefef;
text-align: center;
}
#global-directory-link:hover {
color: #efefef;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #1873a2), color-stop(1, #6da6c4) );
background:-moz-linear-gradient( center top, #1873a2 5%, #6da6c4 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#1873a2', endColorstr='#6da6c4');
background-color:#1873a2;
}
#global-directory-link:active {
background-color: #1873a2;
position:relative;
top:1px;
}
#global-directory-link a {
color: #efefef;
}
#global-directory-link {
-webkit-padding-start: 0px;
}
a.active {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #1873a2), color-stop(1, #6da6c4) );
background:-moz-linear-gradient( center top, #1873a2 5%, #6da6c4 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#1873a2', endColorstr='#6da6c4');
background-color:#1873a2;
color:#efefef;
padding: 5px 10px 5px 10px;
margin-right: 5px;
}
/* notifications popup menu */
.nav-notify {
display: none;
position: absolute;
font-size: 10px;
padding: 1px 3px;
top: 0px;
right: -10px;
min-width: 15px;
text-align: right;
}
.nav-notify.show {
display: block;
}
ul.menu-popup {
position: absolute;
display: none;
width: 10em;
margin: 0px;
padding: 0px;
list-style: none;
z-index: 100000;
top: 40px;
}
#nav-notifications-menu {
width: 320px;
max-height: 400px;
overflow-y: scroll;overflow-style:scrollbar;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #797979), color-stop(1, #898988) );
background:-moz-linear-gradient( center top, #797979 5%, #898988 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#797979', endColorstr='#898988');
background-color:#a2a2a2;
-moz-border-radius:0px 0px 5px 5px;
-webkit-border-radius:0px 0px 5px 5px;
border-radius:0px 0px 5px 5px;
border: 1px solid #9A9A9A;
border-top: none;
-moz-box-shadow: 5px 5px 10px #242424;
-webkit-box-shadow: 5px 5px 10px #242424;
box-shadow: 5px 5px 10px #242424;
}
#nav-notifications-menu .contactname { font-weight: bold; font-size: 0.9em; }
#nav-notifications-menu img { float: left; margin-right: 5px; }
#nav-notifications-menu .notif-when { font-size: 0.8em; display: block; }
#nav-notifications-menu li {
padding: 7px 0px 7px 10px;
word-wrap:normal;
border-bottom: 1px solid #626262;
}
#nav-notifications-menu li:hover {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #1873a2), color-stop(1, #6da6c4) );
background:-moz-linear-gradient( center top, #1873a2 5%, #6da6c4 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#1873a2', endColorstr='#6da6c4');
background-color:#1873a2;
}
#nav-notifications-menu a:hover {
text-decoration: underline;
}
.notif-item a {
vertical-align: middle;
color: #626262;
padding-bottom: 7px;
}
.notif-item a:hover {
color: #1873a2;
}
.notif-image {
width: 32px;
height: 32px;
padding: 7px 7px 0px 0px;
}
#jGrowl {
z-index: 20000;
}
/* autocomplete popup */
.acpopup {
max-height:150px;
overflow:auto;
z-index:100000;
color: #2e3436;
border-top: 0px;
background: #eeeeee;
border-right: 1px solid #dddddd;
border-left: 1px solid #dddddd;
border-bottom: 1px solid #dddddd;
-webkit-border-radius: 0px 5px 5px 5px;
-moz-border-radius: 0px 5px 5px 5px;
border-radius: 0px 5px 5px 5px;
-moz-box-shadow: 3px 3px 4px #959494;
-webkit-box-shadow: 3px 3px 4px #959494;
box-shadow: 3px 3px 4px #959494;
}
.acpopupitem {
color: #2e3436; padding: 4px;
clear:left;
}
.acpopupitem img {
float: left;
margin-right: 4px;
}
.acpopupitem.selected {
color: #efefef;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #1873a2), color-stop(1, #6da6c4) );
background:-moz-linear-gradient( center top, #1873a2 5%, #6da6c4 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#1873a2', endColorstr='#6da6c4');
background-color:#1873a2;
order-bottom: none;
}
.qcomment {
opacity: 0;
filter:alpha(opacity=0);
}
.qcomment:hover {
opacity: 1.0;
filter:alpha(opacity=100);
}
.notify-seen {
background: #000;
}
/* Pages profile widget */
#page-profile div#profile-page-list{
margin-left: 45px;
}
hr.line-dots {
background: url("dot.png") repeat-x scroll left center transparent;
border: medium none;
/*padding: 0.5em 0;*/
}

View file

@ -0,0 +1,97 @@
<?php
/*
* Name: Smoothly
* Description: Theme opzimized for Tablets
* Version: 0.4
* Author: Alex <https://friendica.pixelbits.de/profile/alex>
* Maintainer: Alex <https://friendica.pixelbits.de/profile/alex>
* Screenshot: <a href="screenshot.png">Screenshot</a>
*/
$a->theme_info = array();
function smoothly_init(&$a) {
$a->page['htmlhead'] .= <<< EOT
<script>
function insertFormatting(comment,BBcode,id) {
var tmpStr = $("#comment-edit-text-" + id).val();
if(tmpStr == comment) {
tmpStr = "";
$("#comment-edit-text-" + id).addClass("comment-edit-text-full");
$("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
openMenu("comment-edit-submit-wrapper-" + id);
$("#comment-edit-text-" + id).val(tmpStr);
}
textarea = document.getElementById("comment-edit-text-" +id);
if (document.selection) {
textarea.focus();
selected = document.selection.createRange();
if (BBcode == "url"){
selected.text = "["+BBcode+"]" + "http://" + selected.text + "[/"+BBcode+"]";
} else
selected.text = "["+BBcode+"]" + selected.text + "[/"+BBcode+"]";
} else if (textarea.selectionStart || textarea.selectionStart == "0") {
var start = textarea.selectionStart;
var end = textarea.selectionEnd;
if (BBcode == "url"){
textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + "http://" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length);
} else
textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length);
}
return true;
}
function cmtBbOpen(id) {
$(".comment-edit-bb-" + id).show();
}
function cmtBbClose(comment, id) {
$(".comment-edit-bb-" + id).hide();
}
$(document).ready(function() {
$('html').click(function() { $("#nav-notifications-menu" ).hide(); });
$('.group-edit-icon').hover(
function() {
$(this).addClass('icon'); $(this).removeClass('iconspacer');},
function() {
$(this).removeClass('icon'); $(this).addClass('iconspacer');}
);
$('.sidebar-group-element').hover(
function() {
id = $(this).attr('id');
$('#edit-' + id).addClass('icon'); $('#edit-' + id).removeClass('iconspacer');},
function() {
id = $(this).attr('id');
$('#edit-' + id).removeClass('icon');$('#edit-' + id).addClass('iconspacer');}
);
$('.savedsearchdrop').hover(
function() {
$(this).addClass('drop'); $(this).addClass('icon'); $(this).removeClass('iconspacer');},
function() {
$(this).removeClass('drop'); $(this).removeClass('icon'); $(this).addClass('iconspacer');}
);
$('.savedsearchterm').hover(
function() {
id = $(this).attr('id');
$('#drop-' + id).addClass('icon'); $('#drop-' + id).addClass('drophide'); $('#drop-' + id).removeClass('iconspacer');},
function() {
id = $(this).attr('id');
$('#drop-' + id).removeClass('icon');$('#drop-' + id).removeClass('drophide'); $('#drop-' + id).addClass('iconspacer');}
);
});
</script>
EOT;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 664 B

View file

@ -0,0 +1,78 @@
<div class="wall-item-outside-wrapper $item.indent" id="wall-item-outside-wrapper-$item.id" >
<div class="wall-item-content-wrapper $item.indent" id="wall-item-content-wrapper-$item.id" >
<div class="wall-item-info" id="wall-item-info-$item.id">
<div class="wall-item-photo-wrapper mframe" id="wall-item-photo-wrapper-$item.id"
onmouseover="if (typeof t$item.id != 'undefined') clearTimeout(t$item.id); openMenu('wall-item-photo-menu-button-$item.id')"
onmouseout="t$item.id=setTimeout('closeMenu(\'wall-item-photo-menu-button-$item.id\'); closeMenu(\'wall-item-photo-menu-$item.id\');',200)">
<a href="$item.profile_url" title="$item.linktitle" class="wall-item-photo-link" id="wall-item-photo-link-$item.id">
<img src="$item.thumb" class="wall-item-photo$item.sparkle" id="wall-item-photo-$item.id" style="height: 80px; width: 80px;" alt="$item.name" />
</a>
<span onclick="openClose('wall-item-photo-menu-$item.id');" class="fakelink wall-item-photo-menu-button" id="wall-item-photo-menu-button-$item.id">menu</span>
<div class="wall-item-photo-menu" id="wall-item-photo-menu-$item.id">
<ul>
$item.item_photo_menu
</ul>
</div>
</div>
<div class="wall-item-photo-end"></div>
<div class="wall-item-location" id="wall-item-location-$item.id">{{ if $item.location }}<span class="icon globe"></span>$item.location {{ endif }}</div>
</div>
<div class="wall-item-lock-wrapper">
{{ if $item.lock }}<div class="wall-item-lock"><img src="images/lock_icon.gif" class="lockview" alt="$item.lock" onclick="lockview(event,$item.id);" /></div>
{{ else }}<div class="wall-item-lock"></div>{{ endif }}
</div>
<div class="wall-item-content" id="wall-item-content-$item.id" >
<div class="wall-item-title" id="wall-item-title-$item.id">$item.title</div>
<div class="wall-item-title-end"></div>
<div class="wall-item-body" id="wall-item-body-$item.id" >$item.body
<div class="body-tag">
{{ for $item.tags as $tag }}
<span class='tag'>$tag</span>
{{ endfor }}
</div>
</div>
</div>
<div class="wall-item-tools" id="wall-item-tools-$item.id">
{{ if $item.vote }}
<div class="wall-item-like-buttons" id="wall-item-like-buttons-$item.id">
<a href="#" class="icon like" title="$item.vote.like.0" onclick="dolike($item.id,'like'); return false"></a>
<a href="#" class="icon dislike" title="$item.vote.dislike.0" onclick="dolike($item.id,'dislike'); return false"></a>
{{ if $item.vote.share }}<a href="#" class="icon recycle wall-item-share-buttons" title="$item.vote.share.0" onclick="jotShare($item.id); return false"></a>{{ endif }}
<img id="like-rotator-$item.id" class="like-rotator" src="images/rotator.gif" alt="$item.wait" title="$item.wait" style="display: none;" />
</div>
{{ endif }}
{{ if $item.plink }}
<div class="wall-item-links-wrapper"><a href="$item.plink.href" title="$item.plink.title" target="external-link" class="icon remote-link"></a></div>
{{ endif }}
{{ if $item.edpost }}
<a class="editpost icon pencil" href="$item.edpost.0" title="$item.edpost.1"></a>
{{ endif }}
{{ if $item.star }}
<a href="#" id="starred-$item.id" onclick="dostar($item.id); return false;" class="star-item icon $item.isstarred" title="$item.star.toggle"></a>
<a href="#" id="tagger-$item.id" onclick="itemTag($item.id); return false;" class="tag-item icon tagged" title="$item.star.tagger"></a>
{{ endif }}
<div class="wall-item-delete-wrapper" id="wall-item-delete-wrapper-$item.id" >
{{ if $item.drop.dropping }}<a href="item/drop/$item.id" onclick="return confirmDelete();" class="icon drophide" title="$item.drop.delete" onmouseover="imgbright(this);" onmouseout="imgdull(this);" ></a>{{ endif }}
</div>
{{ if $item.drop.dropping }}<input type="checkbox" onclick="checkboxhighlight(this);" title="$item.drop.select" class="item-select" name="itemselected[]" value="$item.id" />{{ endif }}
<div class="wall-item-delete-end"></div>
</div>
<div class="wall-item-author">
<a href="$item.profile_url" title="$item.linktitle" class="wall-item-name-link"><span class="wall-item-name$item.sparkle" id="wall-item-name-$item.id" >$item.name</span></a>
<div class="wall-item-ago" id="wall-item-ago-$item.id">$item.ago</div>
</div>
</div>
<div class="wall-item-wrapper-end"></div>
<div class="wall-item-like" id="wall-item-like-$item.id">$item.like</div>
<div class="wall-item-dislike" id="wall-item-dislike-$item.id">$item.dislike</div>
<div class="wall-item-comment-wrapper" >
$item.comment
</div>
</div>
<div class="wall-item-outside-wrapper-end $item.indent" ></div>

View file

@ -0,0 +1,114 @@
{{if $item.comment_firstcollapsed}}
<div class="hide-comments-outer">
<span id="hide-comments-total-$item.id" class="hide-comments-total">$item.num_comments</span>
<span id="hide-comments-$item.id" class="hide-comments fakelink" onclick="showHideComments($item.id);">$item.hide_text</span>
</div>
<div id="collapsed-comments-$item.id" class="collapsed-comments" style="display: none;">
{{endif}}
<div id="tread-wrapper-$item.id" class="tread-wrapper $item.toplevel">
<div class="wall-item-outside-wrapper $item.indent" id="wall-item-outside-wrapper-$item.id" >
<div class="wall-item-content-wrapper $item.indent" id="wall-item-content-wrapper-$item.id" >
<div class="wall-item-info" id="wall-item-info-$item.id">
<div class="wall-item-photo-wrapper mframe" id="wall-item-photo-wrapper-$item.id"
onmouseover="if (typeof t$item.id != 'undefined') clearTimeout(t$item.id); openMenu('wall-item-photo-menu-button-$item.id')"
onmouseout="t$item.id=setTimeout('closeMenu(\'wall-item-photo-menu-button-$item.id\'); closeMenu(\'wall-item-photo-menu-$item.id\');',200)">
<a href="$item.profile_url" title="$item.linktitle" class="wall-item-photo-link" id="wall-item-photo-link-$item.id">
<img src="$item.thumb" class="wall-item-photo$item.sparkle" id="wall-item-photo-$item.id" style="height: 80px; width: 80px;" alt="$item.name" />
</a>
<span onclick="openClose('wall-item-photo-menu-$item.id');" class="fakelink wall-item-photo-menu-button" id="wall-item-photo-menu-button-$item.id">menu</span>
<div class="wall-item-photo-menu" id="wall-item-photo-menu-$item.id">
<ul>
$item.item_photo_menu
</ul>
</div>
</div>
<div class="wall-item-photo-end"></div>
<div class="wall-item-location" id="wall-item-location-$item.id">{{ if $item.location }}<span class="icon globe"></span>$item.location {{ endif }}</div>
</div>
<div class="wall-item-lock-wrapper">
{{ if $item.lock }}<div class="wall-item-lock"><img src="images/lock_icon.gif" class="lockview" alt="$item.lock" onclick="lockview(event,$item.id);" /></div> {{ else }}<div class="wall-item-lock"></div>{{ endif }}
</div>
<div class="wall-item-content" id="wall-item-content-$item.id" >
<div class="wall-item-author">
<a href="$item.profile_url" title="$item.linktitle" class="wall-item-name-link">
<span class="wall-item-name$item.sparkle" id="wall-item-name-$item.id" >$item.name</span>
</a>
<div class="wall-item-ago" id="wall-item-ago-$item.id">&bull; $item.ago</div>
</div>
<div>
<hr class="line-dots">
</div>
<div class="wall-item-title" id="wall-item-title-$item.id">$item.title</div>
<div class="wall-item-title-end"></div>
<div class="wall-item-body" id="wall-item-body-$item.id" >$item.body
<div class="body-tag">
{{ for $item.tags as $tag }}
<span class='tag'>$tag</span>
{{ endfor }}
</div>
</div>
</div>
<!--
<div>
<hr class="line-dots">
</div>
-->
<div class="wall-item-tools" id="wall-item-tools-$item.id">
{{ if $item.vote }}
<div class="wall-item-like-buttons" id="wall-item-like-buttons-$item.id">
<a href="#" class="icon like" title="$item.vote.like.0" onclick="dolike($item.id,'like'); return false"></a>
<a href="#" class="icon dislike" title="$item.vote.dislike.0" onclick="dolike($item.id,'dislike'); return false"></a>
{{ if $item.vote.share }}<a href="#" class="icon recycle wall-item-share-buttons" title="$item.vote.share.0" onclick="jotShare($item.id); return false"></a>{{ endif }}
<img id="like-rotator-$item.id" class="like-rotator" src="images/rotator.gif" alt="$item.wait" title="$item.wait" style="display: none;" />
</div>
{{ endif }}
{{ if $item.plink }}
<div class="wall-item-links-wrapper"><a href="$item.plink.href" title="$item.plink.title" target="external-link" class="icon remote-link"></a></div>
{{ endif }}
{{ if $item.edpost }}
<a class="editpost icon pencil" href="$item.edpost.0" title="$item.edpost.1"></a>
{{ endif }}
{{ if $item.star }}
<a href="#" id="starred-$item.id" onclick="dostar($item.id); return false;" class="star-item icon $item.isstarred" title="$item.star.toggle"></a>
<a href="#" id="tagger-$item.id" onclick="itemTag($item.id); return false;" class="tag-item icon tagged" title="$item.star.tagger"></a>
{{ endif }}
<div class="wall-item-delete-wrapper" id="wall-item-delete-wrapper-$item.id" >
{{ if $item.drop.dropping }}<a href="item/drop/$item.id" onclick="return confirmDelete();" class="icon drophide" title="$item.drop.delete" onmouseover="imgbright(this);" onmouseout="imgdull(this);" ></a>{{ endif }}
</div>
{{ if $item.drop.dropping }}<input type="checkbox" onclick="checkboxhighlight(this);" title="$item.drop.select" class="item-select" name="itemselected[]" value="$item.id" />{{ endif }}
<div class="wall-item-delete-end"></div>
</div>
</div>
<div class="wall-item-wrapper-end"></div>
<div class="wall-item-like" id="wall-item-like-$item.id">$item.like</div>
<div class="wall-item-dislike" id="wall-item-dislike-$item.id">$item.dislike</div>
{{ if $item.threaded }}
{{ if $item.comment }}
<div class="wall-item-comment-wrapper $item.indent" >
$item.comment
</div>
{{ endif }}
{{ endif }}
</div>
<div class="wall-item-outside-wrapper-end $item.indent" ></div>
{{ for $item.children as $item }}
{{ inc $item.template }}{{ endinc }}
{{ endfor }}
{{ if $item.flatten }}
<div class="wall-item-comment-wrapper" >
$item.comment
</div>
{{ endif }}
</div>
{{if $item.comment_lastcollapsed}}</div>{{endif}}

View file

@ -0,0 +1,81 @@
<div class="wall-item-outside-wrapper $item.indent wallwall" id="wall-item-outside-wrapper-$item.id" >
<div class="wall-item-content-wrapper $item.indent" id="wall-item-content-wrapper-$item.id" >
<div class="wall-item-info wallwall" id="wall-item-info-$item.id">
<div class="wall-item-photo-wrapper mframe wwto" id="wall-item-ownerphoto-wrapper-$item.id" >
<a href="$item.owner_url" title="$item.olinktitle" class="wall-item-photo-link" id="wall-item-ownerphoto-link-$item.id">
<img src="$item.owner_photo" class="wall-item-photo$item.osparkle" id="wall-item-ownerphoto-$item.id" style="height: 80px; width: 80px;" alt="$item.owner_name" /></a>
</div>
<div class="wall-item-arrowphoto-wrapper" ><img src="images/larrow.gif" alt="$item.wall" /></div>
<div class="wall-item-photo-wrapper mframe wwfrom" id="wall-item-photo-wrapper-$item.id"
onmouseover="if (typeof t$item.id != 'undefined') clearTimeout(t$item.id); openMenu('wall-item-photo-menu-button-$item.id')"
onmouseout="t$item.id=setTimeout('closeMenu(\'wall-item-photo-menu-button-$item.id\'); closeMenu(\'wall-item-photo-menu-$item.id\');',200)">
<a href="$item.profile_url" title="$item.linktitle" class="wall-item-photo-link" id="wall-item-photo-link-$item.id">
<img src="$item.thumb" class="wall-item-photo$item.sparkle" id="wall-item-photo-$item.id" style="height: 80px; width: 80px;" alt="$item.name" /></a>
<span onclick="openClose('wall-item-photo-menu-$item.id');" class="fakelink wall-item-photo-menu-button" id="wall-item-photo-menu-button-$item.id">menu</span>
<div class="wall-item-photo-menu" id="wall-item-photo-menu-$item.id">
<ul>
$item.item_photo_menu
</ul>
</div>
</div>
<div class="wall-item-photo-end"></div>
<div class="wall-item-location" id="wall-item-location-$item.id">{{ if $item.location }}<span class="icon globe"></span>$item.location {{ endif }}</div>
</div>
<div class="wall-item-lock-wrapper">
{{ if $item.lock }}<div class="wall-item-lock"><img src="images/lock_icon.gif" class="lockview" alt="$item.lock" onclick="lockview(event,$item.id);" /></div>
{{ else }}<div class="wall-item-lock"></div>{{ endif }}
</div>
<div class="wall-item-content" id="wall-item-content-$item.id" >
<div class="wall-item-title" id="wall-item-title-$item.id">$item.title</div>
<div class="wall-item-title-end"></div>
<div class="wall-item-body" id="wall-item-body-$item.id" >$item.body
<div class="body-tag">
{{ for $item.tags as $tag }}
<span class='tag'>$tag</span>
{{ endfor }}
</div>
</div>
</div>
<div class="wall-item-tools" id="wall-item-tools-$item.id">
{{ if $item.vote }}
<div class="wall-item-like-buttons" id="wall-item-like-buttons-$item.id">
<a href="#" class="icon like" title="$item.vote.like.0" onclick="dolike($item.id,'like'); return false"></a>
<a href="#" class="icon dislike" title="$item.vote.dislike.0" onclick="dolike($item.id,'dislike'); return false"></a>
{{ if $item.vote.share }}<a href="#" class="icon recycle wall-item-share-buttons" title="$item.vote.share.0" onclick="jotShare($item.id); return false"></a>{{ endif }}
<img id="like-rotator-$item.id" class="like-rotator" src="images/rotator.gif" alt="$item.wait" title="$item.wait" style="display: none;" />
</div>
{{ endif }}
{{ if $item.plink }}
<div class="wall-item-links-wrapper"><a href="$item.plink.href" title="$item.plink.title" target="external-link" class="icon remote-link"></a></div>
{{ endif }}
{{ if $item.edpost }}
<a class="editpost icon pencil" href="$item.edpost.0" title="$item.edpost.1"></a>
{{ endif }}
{{ if $item.star }}
<a href="#" id="starred-$item.id" onclick="dostar($item.id); return false;" class="star-item icon $item.isstarred" title="$item.star.toggle"></a>
<a href="#" id="tagger-$item.id" onclick="itemTag($item.id); return false;" class="tag-item icon tagged" title="$item.star.tagger"></a>
{{ endif }}
<div class="wall-item-delete-wrapper" id="wall-item-delete-wrapper-$item.id" >
{{ if $item.drop.dropping }}<a href="item/drop/$item.id" onclick="return confirmDelete();" class="icon drophide" title="$item.drop.delete" onmouseover="imgbright(this);" onmouseout="imgdull(this);" ></a>{{ endif }}
</div>
{{ if $item.drop.dropping }}<input type="checkbox" onclick="checkboxhighlight(this);" title="$item.drop.select" class="item-select" name="itemselected[]" value="$item.id" />{{ endif }}
<div class="wall-item-delete-end"></div>
</div>
<div class="wall-item-author">
<a href="$item.profile_url" title="$item.linktitle" class="wall-item-name-link"><span class="wall-item-name$item.sparkle" id="wall-item-name-$item.id" >$item.name</span></a>
<div class="wall-item-ago" id="wall-item-ago-$item.id">$item.ago</div>
</div>
</div>
<div class="wall-item-wrapper-end"></div>
<div class="wall-item-like" id="wall-item-like-$item.id">$item.like</div>
<div class="wall-item-dislike" id="wall-item-dislike-$item.id">$item.dislike</div>
<div class="wall-item-comment-wrapper" >
$item.comment
</div>
</div>
<div class="wall-item-outside-wrapper-end $item.indent" ></div>

View file

@ -0,0 +1,111 @@
{{if $item.comment_firstcollapsed}}
<div class="hide-comments-outer">
<span id="hide-comments-total-$item.id" class="hide-comments-total">$item.num_comments</span> <span id="hide-comments-$item.id" class="hide-comments fakelink" onclick="showHideComments($item.id);">$item.hide_text</span>
</div>
<div id="collapsed-comments-$item.id" class="collapsed-comments" style="display: none;">
{{endif}}
<div id="tread-wrapper-$item.id" class="tread-wrapper $item.toplevel">
<div class="wall-item-outside-wrapper $item.indent wallwall" id="wall-item-outside-wrapper-$item.id" >
<div class="wall-item-content-wrapper $item.indent" id="wall-item-content-wrapper-$item.id" >
<div class="wall-item-info wallwall" id="wall-item-info-$item.id">
<div class="wall-item-photo-wrapper mframe wwto" id="wall-item-ownerphoto-wrapper-$item.id" >
<a href="$item.owner_url" title="$item.olinktitle" class="wall-item-photo-link" id="wall-item-ownerphoto-link-$item.id">
<img src="$item.owner_photo" class="wall-item-photo$item.osparkle" id="wall-item-ownerphoto-$item.id" style="height: 80px; width: 80px;" alt="$item.owner_name" /></a>
</div>
<div class="wall-item-arrowphoto-wrapper" ><img src="images/larrow.gif" alt="$item.wall" /></div>
<div class="wall-item-photo-wrapper mframe wwfrom" id="wall-item-photo-wrapper-$item.id"
onmouseover="if (typeof t$item.id != 'undefined') clearTimeout(t$item.id); openMenu('wall-item-photo-menu-button-$item.id')"
onmouseout="t$item.id=setTimeout('closeMenu(\'wall-item-photo-menu-button-$item.id\'); closeMenu(\'wall-item-photo-menu-$item.id\');',200)">
<a href="$item.profile_url" title="$item.linktitle" class="wall-item-photo-link" id="wall-item-photo-link-$item.id">
<img src="$item.thumb" class="wall-item-photo$item.sparkle" id="wall-item-photo-$item.id" style="height: 80px; width: 80px;" alt="$item.name" /></a>
<span onclick="openClose('wall-item-photo-menu-$item.id');" class="fakelink wall-item-photo-menu-button" id="wall-item-photo-menu-button-$item.id">menu</span>
<div class="wall-item-photo-menu" id="wall-item-photo-menu-$item.id">
<ul>
$item.item_photo_menu
</ul>
</div>
</div>
<div class="wall-item-photo-end"></div>
<div class="wall-item-location" id="wall-item-location-$item.id">{{ if $item.location }}<span class="icon globe"></span>$item.location {{ endif }}</div>
</div>
<div class="wall-item-lock-wrapper">
{{ if $item.lock }}<div class="wall-item-lock"><img src="images/lock_icon.gif" class="lockview" alt="$item.lock" onclick="lockview(event,$item.id);" /></div>
{{ else }}<div class="wall-item-lock"></div>{{ endif }}
</div>
<div class="wall-item-content" id="wall-item-content-$item.id" >
<div class="wall-item-author">
<a href="$item.profile_url" title="$item.linktitle" class="wall-item-name-link">
<span class="wall-item-name$item.sparkle" id="wall-item-name-$item.id" >$item.name</span>
</a>
<div class="wall-item-ago" id="wall-item-ago-$item.id">&bull; $item.ago</div>
</div>
<div>
<hr class="line-dots">
</div>
<div class="wall-item-title" id="wall-item-title-$item.id">$item.title</div>
<div class="wall-item-title-end"></div>
<div class="wall-item-body" id="wall-item-body-$item.id" >$item.body
<div class="body-tag">
{{ for $item.tags as $tag }}
<span class='tag'>$tag</span>
{{ endfor }}
</div>
</div>
</div>
<div class="wall-item-tools" id="wall-item-tools-$item.id">
{{ if $item.vote }}
<div class="wall-item-like-buttons" id="wall-item-like-buttons-$item.id">
<a href="#" class="icon like" title="$item.vote.like.0" onclick="dolike($item.id,'like'); return false"></a>
<a href="#" class="icon dislike" title="$item.vote.dislike.0" onclick="dolike($item.id,'dislike'); return false"></a>
{{ if $item.vote.share }}<a href="#" class="icon recycle wall-item-share-buttons" title="$item.vote.share.0" onclick="jotShare($item.id); return false"></a>{{ endif }}
<img id="like-rotator-$item.id" class="like-rotator" src="images/rotator.gif" alt="$item.wait" title="$item.wait" style="display: none;" />
</div>
{{ endif }}
{{ if $item.plink }}
<div class="wall-item-links-wrapper"><a href="$item.plink.href" title="$item.plink.title" target="external-link" class="icon remote-link"></a></div>
{{ endif }}
{{ if $item.edpost }}
<a class="editpost icon pencil" href="$item.edpost.0" title="$item.edpost.1"></a>
{{ endif }}
{{ if $item.star }}
<a href="#" id="starred-$item.id" onclick="dostar($item.id); return false;" class="star-item icon $item.isstarred" title="$item.star.toggle"></a>
<a href="#" id="tagger-$item.id" onclick="itemTag($item.id); return false;" class="tag-item icon tagged" title="$item.star.tagger"></a>
{{ endif }}
<div class="wall-item-delete-wrapper" id="wall-item-delete-wrapper-$item.id" >
{{ if $item.drop.dropping }}<a href="item/drop/$item.id" onclick="return confirmDelete();" class="icon drophide" title="$item.drop.delete" onmouseover="imgbright(this);" onmouseout="imgdull(this);" ></a>{{ endif }}
</div>
{{ if $item.drop.dropping }}<input type="checkbox" onclick="checkboxhighlight(this);" title="$item.drop.select" class="item-select" name="itemselected[]" value="$item.id" />{{ endif }}
<div class="wall-item-delete-end"></div>
</div>
</div>
<div class="wall-item-wrapper-end"></div>
<div class="wall-item-like" id="wall-item-like-$item.id">$item.like</div>
<div class="wall-item-dislike" id="wall-item-dislike-$item.id">$item.dislike</div>
{{ if $item.threaded }}
{{ if $item.comment }}
<div class="wall-item-comment-wrapper $item.indent" >
$item.comment
</div>
{{ endif }}
{{ endif }}
</div>
<div class="wall-item-outside-wrapper-end $item.indent" ></div>
{{ for $item.children as $item }}
{{ inc $item.template }}{{ endinc }}
{{ endfor }}
{{ if $item.flatten }}
<div class="wall-item-comment-wrapper" >
$item.comment
</div>
{{ endif }}
</div>
{{if $item.comment_lastcollapsed}}</div>{{endif}}

View file

@ -1,27 +0,0 @@
{{ for $threads as $thread }}
<div id="tread-wrapper-$thread.id" class="tread-wrapper">
{{ for $thread.items as $item }}
{{if $item.comment_firstcollapsed}}
<div class="hide-comments-outer">
<span id="hide-comments-total-$thread.id" class="hide-comments-total">$thread.num_comments</span> <span id="hide-comments-$thread.id" class="hide-comments fakelink" onclick="showHideComments($thread.id);">$thread.hide_text</span>
</div>
<div id="collapsed-comments-$thread.id" class="collapsed-comments" style="display: none;">
{{endif}}
{{if $item.comment_lastcollapsed}}</div>{{endif}}
{{ inc $item.template }}{{ endinc }}
{{ endfor }}
</div>
{{ endfor }}
<div id="conversation-end"></div>
{{ if $dropping }}
<div id="item-delete-selected" class="fakelink" onclick="deleteCheckedItems();">
<div id="item-delete-selected-icon" class="icon drophide" title="$dropping" onmouseover="imgbright(this);" onmouseout="imgdull(this);" ></div>
<div id="item-delete-selected-desc" >$dropping</div>
</div>
<div id="item-delete-selected-end"></div>
{{ endif }}

View file

@ -0,0 +1,100 @@
{{if $item.comment_firstcollapsed}}
<div class="hide-comments-outer">
<span id="hide-comments-total-$item.id" class="hide-comments-total">$item.num_comments</span> <span id="hide-comments-$item.id" class="hide-comments fakelink" onclick="showHideComments($item.id);">$item.hide_text</span>
</div>
<div id="collapsed-comments-$item.id" class="collapsed-comments" style="display: none;">
{{endif}}
<div id="tread-wrapper-$item.id" class="tread-wrapper $item.toplevel">
<div class="wall-item-outside-wrapper $item.indent" id="wall-item-outside-wrapper-$item.id" >
<div class="wall-item-content-wrapper $item.indent" id="wall-item-content-wrapper-$item.id" >
<div class="wall-item-info" id="wall-item-info-$item.id">
<div class="wall-item-photo-wrapper mframe" id="wall-item-photo-wrapper-$item.id"
onmouseover="if (typeof t$item.id != 'undefined') clearTimeout(t$item.id); openMenu('wall-item-photo-menu-button-$item.id')"
onmouseout="t$item.id=setTimeout('closeMenu(\'wall-item-photo-menu-button-$item.id\'); closeMenu(\'wall-item-photo-menu-$item.id\');',200)">
<a href="$item.profile_url" title="$item.linktitle" class="wall-item-photo-link" id="wall-item-photo-link-$item.id">
<img src="$item.thumb" class="wall-item-photo$item.sparkle" id="wall-item-photo-$item.id" style="height: 80px; width: 80px;" alt="$item.name" />
</a>
<span onclick="openClose('wall-item-photo-menu-$item.id');" class="fakelink wall-item-photo-menu-button" id="wall-item-photo-menu-button-$item.id">menu</span>
<div class="wall-item-photo-menu" id="wall-item-photo-menu-$item.id">
<ul>
$item.item_photo_menu
</ul>
</div>
</div>
<div class="wall-item-photo-end"></div>
<div class="wall-item-location" id="wall-item-location-$item.id">{{ if $item.location }}<span class="icon globe"></span>$item.location {{ endif }}</div>
</div>
<div class="wall-item-lock-wrapper">
{{ if $item.lock }}<div class="wall-item-lock"><img src="images/lock_icon.gif" class="lockview" alt="$item.lock" onclick="lockview(event,$item.id);" /></div>
{{ else }}<div class="wall-item-lock"></div>{{ endif }}
</div>
<div class="wall-item-content" id="wall-item-content-$item.id" >
<div class="wall-item-title" id="wall-item-title-$item.id">$item.title</div>
<div class="wall-item-title-end"></div>
<div class="wall-item-body" id="wall-item-body-$item.id" >$item.body
<div class="body-tag">
{{ for $item.tags as $tag }}
<span class='tag'>$tag</span>
{{ endfor }}
</div>
</div>
</div>
<div class="wall-item-tools" id="wall-item-tools-$item.id">
{{ if $item.vote }}
<div class="wall-item-like-buttons" id="wall-item-like-buttons-$item.id">
<a href="#" class="icon like" title="$item.vote.like.0" onclick="dolike($item.id,'like'); return false"></a>
<a href="#" class="icon dislike" title="$item.vote.dislike.0" onclick="dolike($item.id,'dislike'); return false"></a>
{{ if $item.vote.share }}<a href="#" class="icon recycle wall-item-share-buttons" title="$item.vote.share.0" onclick="jotShare($item.id); return false"></a>{{ endif }}
<img id="like-rotator-$item.id" class="like-rotator" src="images/rotator.gif" alt="$item.wait" title="$item.wait" style="display: none;" />
</div>
{{ endif }}
{{ if $item.plink }}
<div class="wall-item-links-wrapper"><a href="$item.plink.href" title="$item.plink.title" target="external-link" class="icon remote-link"></a></div>
{{ endif }}
{{ if $item.edpost }}
<a class="editpost icon pencil" href="$item.edpost.0" title="$item.edpost.1"></a>
{{ endif }}
{{ if $item.star }}
<a href="#" id="starred-$item.id" onclick="dostar($item.id); return false;" class="star-item icon $item.isstarred" title="$item.star.toggle"></a>
<a href="#" id="tagger-$item.id" onclick="itemTag($item.id); return false;" class="tag-item icon tagged" title="$item.star.tagger"></a>
{{ endif }}
<div class="wall-item-delete-wrapper" id="wall-item-delete-wrapper-$item.id" >
{{ if $item.drop.dropping }}<a href="item/drop/$item.id" onclick="return confirmDelete();" class="icon drophide" title="$item.drop.delete" onmouseover="imgbright(this);" onmouseout="imgdull(this);" ></a>{{ endif }}
</div>
{{ if $item.drop.dropping }}<input type="checkbox" onclick="checkboxhighlight(this);" title="$item.drop.select" class="item-select" name="itemselected[]" value="$item.id" />{{ endif }}
<div class="wall-item-delete-end"></div>
</div>
<div class="wall-item-author">
<a href="$item.profile_url" title="$item.linktitle" class="wall-item-name-link"><span class="wall-item-name$item.sparkle" id="wall-item-name-$item.id" >$item.name</span></a>
<div class="wall-item-ago" id="wall-item-ago-$item.id">$item.ago</div>
</div>
</div>
<div class="wall-item-wrapper-end"></div>
<div class="wall-item-like" id="wall-item-like-$item.id">$item.like</div>
<div class="wall-item-dislike" id="wall-item-dislike-$item.id">$item.dislike</div>
{{ if $item.threaded }}
{{ if $item.comment }}
<div class="wall-item-comment-wrapper $item.indent" >
$item.comment
</div>
{{ endif }}
{{ endif }}
</div>
<div class="wall-item-outside-wrapper-end $item.indent" ></div>
{{ for $item.children as $item }}
{{ inc $item.template }}{{ endinc }}
{{ endfor }}
{{ if $item.flatten }}
<div class="wall-item-comment-wrapper" >
$item.comment
</div>
{{ endif }}
</div>
{{if $item.comment_lastcollapsed}}</div>{{endif}}

View file

@ -0,0 +1,103 @@
{{if $item.comment_firstcollapsed}}
<div class="hide-comments-outer">
<span id="hide-comments-total-$item.id" class="hide-comments-total">$item.num_comments</span> <span id="hide-comments-$item.id" class="hide-comments fakelink" onclick="showHideComments($item.id);">$item.hide_text</span>
</div>
<div id="collapsed-comments-$item.id" class="collapsed-comments" style="display: none;">
{{endif}}
<div id="tread-wrapper-$item.id" class="tread-wrapper $item.toplevel">
<div class="wall-item-outside-wrapper $item.indent wallwall" id="wall-item-outside-wrapper-$item.id" >
<div class="wall-item-content-wrapper $item.indent" id="wall-item-content-wrapper-$item.id" >
<div class="wall-item-info wallwall" id="wall-item-info-$item.id">
<div class="wall-item-photo-wrapper mframe wwto" id="wall-item-ownerphoto-wrapper-$item.id" >
<a href="$item.owner_url" title="$item.olinktitle" class="wall-item-photo-link" id="wall-item-ownerphoto-link-$item.id">
<img src="$item.owner_photo" class="wall-item-photo$item.osparkle" id="wall-item-ownerphoto-$item.id" style="height: 80px; width: 80px;" alt="$item.owner_name" /></a>
</div>
<div class="wall-item-arrowphoto-wrapper" ><img src="images/larrow.gif" alt="$item.wall" /></div>
<div class="wall-item-photo-wrapper mframe wwfrom" id="wall-item-photo-wrapper-$item.id"
onmouseover="if (typeof t$item.id != 'undefined') clearTimeout(t$item.id); openMenu('wall-item-photo-menu-button-$item.id')"
onmouseout="t$item.id=setTimeout('closeMenu(\'wall-item-photo-menu-button-$item.id\'); closeMenu(\'wall-item-photo-menu-$item.id\');',200)">
<a href="$item.profile_url" title="$item.linktitle" class="wall-item-photo-link" id="wall-item-photo-link-$item.id">
<img src="$item.thumb" class="wall-item-photo$item.sparkle" id="wall-item-photo-$item.id" style="height: 80px; width: 80px;" alt="$item.name" /></a>
<span onclick="openClose('wall-item-photo-menu-$item.id');" class="fakelink wall-item-photo-menu-button" id="wall-item-photo-menu-button-$item.id">menu</span>
<div class="wall-item-photo-menu" id="wall-item-photo-menu-$item.id">
<ul>
$item.item_photo_menu
</ul>
</div>
</div>
<div class="wall-item-photo-end"></div>
<div class="wall-item-location" id="wall-item-location-$item.id">{{ if $item.location }}<span class="icon globe"></span>$item.location {{ endif }}</div>
</div>
<div class="wall-item-lock-wrapper">
{{ if $item.lock }}<div class="wall-item-lock"><img src="images/lock_icon.gif" class="lockview" alt="$item.lock" onclick="lockview(event,$item.id);" /></div>
{{ else }}<div class="wall-item-lock"></div>{{ endif }}
</div>
<div class="wall-item-content" id="wall-item-content-$item.id" >
<div class="wall-item-title" id="wall-item-title-$item.id">$item.title</div>
<div class="wall-item-title-end"></div>
<div class="wall-item-body" id="wall-item-body-$item.id" >$item.body
<div class="body-tag">
{{ for $item.tags as $tag }}
<span class='tag'>$tag</span>
{{ endfor }}
</div>
</div>
</div>
<div class="wall-item-tools" id="wall-item-tools-$item.id">
{{ if $item.vote }}
<div class="wall-item-like-buttons" id="wall-item-like-buttons-$item.id">
<a href="#" class="icon like" title="$item.vote.like.0" onclick="dolike($item.id,'like'); return false"></a>
<a href="#" class="icon dislike" title="$item.vote.dislike.0" onclick="dolike($item.id,'dislike'); return false"></a>
{{ if $item.vote.share }}<a href="#" class="icon recycle wall-item-share-buttons" title="$item.vote.share.0" onclick="jotShare($item.id); return false"></a>{{ endif }}
<img id="like-rotator-$item.id" class="like-rotator" src="images/rotator.gif" alt="$item.wait" title="$item.wait" style="display: none;" />
</div>
{{ endif }}
{{ if $item.plink }}
<div class="wall-item-links-wrapper"><a href="$item.plink.href" title="$item.plink.title" target="external-link" class="icon remote-link"></a></div>
{{ endif }}
{{ if $item.edpost }}
<a class="editpost icon pencil" href="$item.edpost.0" title="$item.edpost.1"></a>
{{ endif }}
{{ if $item.star }}
<a href="#" id="starred-$item.id" onclick="dostar($item.id); return false;" class="star-item icon $item.isstarred" title="$item.star.toggle"></a>
<a href="#" id="tagger-$item.id" onclick="itemTag($item.id); return false;" class="tag-item icon tagged" title="$item.star.tagger"></a>
{{ endif }}
<div class="wall-item-delete-wrapper" id="wall-item-delete-wrapper-$item.id" >
{{ if $item.drop.dropping }}<a href="item/drop/$item.id" onclick="return confirmDelete();" class="icon drophide" title="$item.drop.delete" onmouseover="imgbright(this);" onmouseout="imgdull(this);" ></a>{{ endif }}
</div>
{{ if $item.drop.dropping }}<input type="checkbox" onclick="checkboxhighlight(this);" title="$item.drop.select" class="item-select" name="itemselected[]" value="$item.id" />{{ endif }}
<div class="wall-item-delete-end"></div>
</div>
<div class="wall-item-author">
<a href="$item.profile_url" title="$item.linktitle" class="wall-item-name-link"><span class="wall-item-name$item.sparkle" id="wall-item-name-$item.id" >$item.name</span></a>
<div class="wall-item-ago" id="wall-item-ago-$item.id">$item.ago</div>
</div>
</div>
<div class="wall-item-wrapper-end"></div>
<div class="wall-item-like" id="wall-item-like-$item.id">$item.like</div>
<div class="wall-item-dislike" id="wall-item-dislike-$item.id">$item.dislike</div>
{{ if $item.threaded }}
{{ if $item.comment }}
<div class="wall-item-comment-wrapper $item.indent" >
$item.comment
</div>
{{ endif }}
{{ endif }}
</div>
<div class="wall-item-outside-wrapper-end $item.indent" ></div>
{{ for $item.children as $item }}
{{ inc $item.template }}{{ endinc }}
{{ endfor }}
{{ if $item.flatten }}
<div class="wall-item-comment-wrapper" >
$item.comment
</div>
{{ endif }}
</div>
{{if $item.comment_lastcollapsed}}</div>{{endif}}

5
view/vcard-widget.tpl Normal file
View file

@ -0,0 +1,5 @@
<div class="vcard">
<div class="fn">$name</div>
<div id="profile-photo-wrapper"><img class="photo" style="width: 175px; height: 175px;" src="$photo" alt="$name" /></div>
</div>