Merge remote branch 'upstream/master'

This commit is contained in:
Michael Vogel 2012-05-09 14:56:48 +02:00
commit f2e648d62f
854 changed files with 27120 additions and 82504 deletions

149
boot.php
View file

@ -9,9 +9,9 @@ require_once('include/nav.php');
require_once('include/cache.php');
define ( 'FRIENDICA_PLATFORM', 'Friendica');
define ( 'FRIENDICA_VERSION', '2.3.1318' );
define ( 'FRIENDICA_VERSION', '2.3.1336' );
define ( 'DFRN_PROTOCOL_VERSION', '2.23' );
define ( 'DB_UPDATE_VERSION', 1138 );
define ( 'DB_UPDATE_VERSION', 1143 );
define ( 'EOL', "<br />\r\n" );
define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' );
@ -29,6 +29,12 @@ define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' );
define ( 'JPEG_QUALITY', 100 );
/**
* Not yet used
*/
define ( 'DEFAULT_DB_ENGINE', 'MyISAM' );
/**
* SSL redirection policies
*/
@ -73,6 +79,14 @@ define ( 'HOOK_HOOK', 0);
define ( 'HOOK_FILE', 1);
define ( 'HOOK_FUNCTION', 2);
/**
* DB update return values
*/
define ( 'UPDATE_SUCCESS', 0);
define ( 'UPDATE_FAILED', 1);
/**
*
* page/profile types
@ -193,6 +207,8 @@ define ( 'ACTIVITY_REQ_FRIEND', NAMESPACE_ACTIVITY_SCHEMA . 'request-friend' );
define ( 'ACTIVITY_UNFRIEND', NAMESPACE_ACTIVITY_SCHEMA . 'remove-friend' );
define ( 'ACTIVITY_FOLLOW', NAMESPACE_ACTIVITY_SCHEMA . 'follow' );
define ( 'ACTIVITY_UNFOLLOW', NAMESPACE_ACTIVITY_SCHEMA . 'stop-following' );
define ( 'ACTIVITY_JOIN', NAMESPACE_ACTIVITY_SCHEMA . 'join' );
define ( 'ACTIVITY_POST', NAMESPACE_ACTIVITY_SCHEMA . 'post' );
define ( 'ACTIVITY_UPDATE', NAMESPACE_ACTIVITY_SCHEMA . 'update' );
define ( 'ACTIVITY_TAG', NAMESPACE_ACTIVITY_SCHEMA . 'tag' );
@ -205,6 +221,7 @@ define ( 'ACTIVITY_OBJ_PHOTO', NAMESPACE_ACTIVITY_SCHEMA . 'photo' );
define ( 'ACTIVITY_OBJ_P_PHOTO', NAMESPACE_ACTIVITY_SCHEMA . 'profile-photo' );
define ( 'ACTIVITY_OBJ_ALBUM', NAMESPACE_ACTIVITY_SCHEMA . 'photo-album' );
define ( 'ACTIVITY_OBJ_EVENT', NAMESPACE_ACTIVITY_SCHEMA . 'event' );
define ( 'ACTIVITY_OBJ_GROUP', NAMESPACE_ACTIVITY_SCHEMA . 'group' );
define ( 'ACTIVITY_OBJ_TAGTERM', NAMESPACE_DFRN . '/tagterm' );
define ( 'ACTIVITY_OBJ_PROFILE', NAMESPACE_DFRN . '/profile' );
@ -658,32 +675,29 @@ if(! function_exists('check_config')) {
// call the specific update
// global $db;
// $db->excep(TRUE);
// try {
// $db->beginTransaction();
$func = 'update_' . $x;
$func($a);
// $db->commit();
// } catch(Exception $ex) {
// $db->rollback();
// //send the administrator an e-mail
// $email_tpl = get_intltext_template("update_fail_eml.tpl");
// $email_tpl = replace_macros($email_tpl, array(
// '$sitename' => $a->config['sitename'],
// '$siteurl' => $a->get_baseurl(),
// '$update' => $x,
// '$error' => $ex->getMessage()));
// $subject=sprintf(t('Update Error at %s'), $a->get_baseurl());
$func = 'update_' . $x;
$retval = $func();
if($retval) {
//send the administrator an e-mail
$email_tpl = get_intltext_template("update_fail_eml.tpl");
$email_msg = replace_macros($email_tpl, array(
'$sitename' => $a->config['sitename'],
'$siteurl' => $a->get_baseurl(),
'$update' => $x,
'$error' => sprintf( t('Update %s failed. See error logs.'), $x)
));
$subject=sprintf(t('Update Error at %s'), $a->get_baseurl());
// mail($a->config['admin_email'], $subject, $text,
// 'From: ' . t('Administrator') . '@' . $_SERVER['SERVER_NAME'] . "\n"
// . 'Content-type: text/plain; charset=UTF-8' . "\n"
// . 'Content-transfer-encoding: 8bit' );
// //try the logger
// logger('update failed: '.$ex->getMessage().EOL);
// }
// $db->excep(FALSE);
mail($a->config['admin_email'], $subject, $email_msg,
'From: ' . t('Administrator') . '@' . $_SERVER['SERVER_NAME'] . "\n"
. 'Content-type: text/plain; charset=UTF-8' . "\n"
. 'Content-transfer-encoding: 8bit' );
//try the logger
logger('CRITICAL: Update Failed: '. $x);
}
else
set_config('database','update_' . $x, 'success');
}
}
set_config('system','build', DB_UPDATE_VERSION);
@ -725,9 +739,10 @@ if(! function_exists('check_config')) {
foreach($installed as $i) {
if(! in_array($i['name'],$plugins_arr)) {
uninstall_plugin($i['name']);
}
else
}
else {
$installed_arr[] = $i['name'];
}
}
}
@ -1174,11 +1189,7 @@ if(! function_exists('get_birthdays')) {
}
$classtoday = $istoday ? ' birthday-today ' : '';
if($total) {
$o .= '<div id="birthday-notice" class="birthday-notice fakelink' . $classtoday . '" onclick=openClose(\'birthday-wrapper\'); >' . t('Birthday Reminders') . ' ' . '(' . $total . ')' . '</div>';
$o .= '<div id="birthday-wrapper" style="display: none;" ><div id="birthday-title">' . t('Birthdays this week:') . '</div>';
$o .= '<div id="birthday-title-end"></div>';
foreach($r as $rr) {
foreach($r as &$rr) {
if(! strlen($rr['name']))
continue;
@ -1196,15 +1207,24 @@ if(! function_exists('get_birthdays')) {
$url = $a->get_baseurl() . '/redir/' . $rr['cid'];
}
$o .= '<div class="birthday-list" id="birthday-' . $rr['eid'] . '"><a class="birthday-link$sparkle" target="redir" href="'
. $url . '">' . $rr['name'] . '</a> '
. day_translate(datetime_convert('UTC', $a->timezone, $rr['start'], $rr['adjust'] ? $bd_format : $bd_short)) . (($today) ? ' ' . t('[today]') : '')
. '</div>' ;
$rr['link'] = $url;
$rr['title'] = $rr['name'];
$rr['date'] = day_translate(datetime_convert('UTC', $a->timezone, $rr['start'], $rr['adjust'] ? $bd_format : $bd_short)) . (($today) ? ' ' . t('[today]') : '');
$rr['startime'] = Null;
$rr['today'] = $today;
}
$o .= '</div></div>';
}
}
return $o;
$tpl = get_markup_template("birthdays_reminder.tpl");
return replace_macros($tpl, array(
'$baseurl' => $a->get_baseurl(),
'$classtoday' => $classtoday,
'$count' => $total,
'$event_reminders' => t('Birthday Reminders'),
'$event_title' => t('Birthdays this week:'),
'$events' => $r,
));
}
}
@ -1215,7 +1235,6 @@ if(! function_exists('get_events')) {
require_once('include/bbcode.php');
$a = get_app();
$o = '';
if(! local_user())
return $o;
@ -1242,18 +1261,15 @@ if(! function_exists('get_events')) {
if($strt === datetime_convert('UTC',$a->timezone,'now','Y-m-d'))
$istoday = true;
}
$classtoday = (($istoday) ? ' event-today ' : '');
$classtoday = (($istoday) ? 'event-today' : '');
$o .= '<div id="event-notice" class="birthday-notice fakelink' . $classtoday . '" onclick=openClose(\'event-wrapper\'); >' . t('Event Reminders') . ' ' . '(' . count($r) . ')' . '</div>';
$o .= '<div id="event-wrapper" style="display: none;" ><div id="event-title">' . t('Events this week:') . '</div>';
$o .= '<div id="event-title-end"></div>';
foreach($r as $rr) {
foreach($r as &$rr) {
if($rr['adjust'])
$md = datetime_convert('UTC',$a->timezone,$rr['start'],'Y/m\#\l\i\n\k\-j');
$md = datetime_convert('UTC',$a->timezone,$rr['start'],'Y/m');
else
$md = datetime_convert('UTC','UTC',$rr['start'],'Y/m\#\l\i\n\k\-j');
$md = datetime_convert('UTC','UTC',$rr['start'],'Y/m');
$md .= "/#link-".$rr['id'];
$title = substr(strip_tags(bbcode($rr['desc'])),0,32) . '... ';
if(! $title)
@ -1261,15 +1277,24 @@ if(! function_exists('get_events')) {
$strt = datetime_convert('UTC',$rr['convert'] ? $a->timezone : 'UTC',$rr['start']);
$today = ((substr($strt,0,10) === datetime_convert('UTC',$a->timezone,'now','Y-m-d')) ? true : false);
$o .= '<div class="event-list" id="event-' . $rr['eid'] . '"></a> <a href="events/' . $md . '">' . $title . '</a>'
. day_translate(datetime_convert('UTC', $rr['adjust'] ? $a->timezone : 'UTC', $rr['start'], $bd_format)) . (($today) ? ' ' . t('[today]') : '')
. '</div>' ;
$rr['link'] = $md;
$rr['title'] = $title;
$rr['date'] = day_translate(datetime_convert('UTC', $rr['adjust'] ? $a->timezone : 'UTC', $rr['start'], $bd_format)) . (($today) ? ' ' . t('[today]') : '');
$rr['startime'] = $strt;
$rr['today'] = $today;
}
$o .= '</div></div>';
}
return $o;
$tpl = get_markup_template("events_reminder.tpl");
return replace_macros($tpl, array(
'$baseurl' => $a->get_baseurl(),
'$classtoday' => $classtoday,
'$count' => count($r),
'$event_reminders' => t('Event Reminders'),
'$event_title' => t('Events this week:'),
'$events' => $r,
));
}
}
@ -1453,16 +1478,19 @@ if(! function_exists('profile_tabs')){
'label'=>t('Status'),
'url' => $url,
'sel' => ((!isset($tab)&&$a->argv[0]=='profile')?'active':''),
'title' => t('Status Messages and Posts'),
),
array(
'label' => t('Profile'),
'url' => $url.'/?tab=profile',
'sel' => ((isset($tab) && $tab=='profile')?'active':''),
'title' => t('Profile Details'),
),
array(
'label' => t('Photos'),
'url' => $a->get_baseurl() . '/photos/' . $nickname,
'sel' => ((!isset($tab)&&$a->argv[0]=='photos')?'active':''),
'title' => t('Photo Albums'),
),
);
@ -1471,11 +1499,13 @@ if(! function_exists('profile_tabs')){
'label' => t('Events'),
'url' => $a->get_baseurl() . '/events',
'sel' =>((!isset($tab)&&$a->argv[0]=='events')?'active':''),
'title' => t('Events and Calendar'),
);
$tabs[] = array(
'label' => t('Personal Notes'),
'url' => $a->get_baseurl() . '/notes',
'sel' =>((!isset($tab)&&$a->argv[0]=='notes')?'active':''),
'title' => t('Only You Can See This'),
);
}
@ -1495,6 +1525,15 @@ function get_my_url() {
return false;
}
function zrl_init(&$a) {
$tmp_str = get_my_url();
if(validate_url($tmp_str)) {
proc_run('php','include/gprobe.php',bin2hex($tmp_str));
$arr = array('zrl' => $tmp_str, 'url' => $a->cmd);
call_hooks('zrl_init',$arr);
}
}
function zrl($s,$force = false) {
if(! strlen($s))
return $s;

View file

@ -16,9 +16,11 @@ CREATE TABLE IF NOT EXISTS `addon` (
`name` char(255) NOT NULL,
`version` char(255) NOT NULL,
`installed` tinyint(1) NOT NULL DEFAULT '0',
`hidden` tinyint(1) NOT NULL DEFAULT '0',
`timestamp` bigint(20) NOT NULL DEFAULT '0',
`plugin_admin` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
PRIMARY KEY (`id`),
KEY `hidden` (`hidden`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
@ -172,6 +174,7 @@ CREATE TABLE IF NOT EXISTS `contact` (
`writable` tinyint(1) NOT NULL DEFAULT '0',
`forum` tinyint(1) NOT NULL DEFAULT '0',
`hidden` tinyint(1) NOT NULL DEFAULT '0',
`archive` tinyint(1) NOT NULL DEFAULT '0',
`pending` tinyint(1) NOT NULL DEFAULT '1',
`rating` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0-5 reputation, 0 unknown, 1 call police, 5 inscrutable',
`reason` text NOT NULL COMMENT 'why a rating was given - will help friends decide to make friends or not',
@ -197,6 +200,7 @@ CREATE TABLE IF NOT EXISTS `contact` (
KEY `nurl` (`nurl`),
KEY `pending` (`pending`),
KEY `hidden` (`hidden`),
KEY `archive` (`archive`),
KEY `forum` (`forum`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
@ -380,11 +384,13 @@ CREATE TABLE IF NOT EXISTS `glink` (
`cid` int(11) NOT NULL,
`uid` int(11) NOT NULL,
`gcid` int(11) NOT NULL,
`zcid` int(11) NOT NULL,
`updated` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `cid` (`cid`),
KEY `uid` (`uid`),
KEY `gcid` (`gcid`),
KEY `zcid` (`zcid`),
KEY `updated` (`updated`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
@ -1017,9 +1023,11 @@ CREATE TABLE IF NOT EXISTS `user` (
`pwdreset` char(255) NOT NULL,
`maxreq` int(11) NOT NULL DEFAULT '10',
`expire` int(10) unsigned NOT NULL DEFAULT '0',
`account_removed` tinyint(1) NOT NULL DEFAULT '0',
`account_expired` tinyint(1) NOT NULL DEFAULT '0',
`account_expires_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`expire_notification_sent` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`service_class` char(32) NOT NULL,
`allow_cid` mediumtext NOT NULL,
`allow_gid` mediumtext NOT NULL,
`deny_cid` mediumtext NOT NULL,
@ -1034,7 +1042,9 @@ CREATE TABLE IF NOT EXISTS `user` (
KEY `blocked` (`blocked`),
KEY `verified` (`verified`),
KEY `unkmail` (`unkmail`),
KEY `cntunkmail` (`cntunkmail`)
KEY `cntunkmail` (`cntunkmail`),
KEY `account_removed` (`account_removed`),
KEY `service_class` (`service_class`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------

View file

@ -69,7 +69,7 @@ $a->config['system']['rino_encrypt'] = true;
// allowed themes (change this from admin panel after installation)
$a->config['system']['allowed_themes'] = 'dispy,quattro,testbubble,vier,darkbubble,darkzero,duepuntozero,greenzero,purplezero,quattro-green,slackr,diabook,diabook-blue';
$a->config['system']['allowed_themes'] = 'dispy,quattro,vier,darkzero,duepuntozero,greenzero,purplezero,slackr,diabook';
// default system theme

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

Before After
Before After

View file

@ -51,6 +51,21 @@ function user_remove($uid) {
function contact_remove($id) {
$r = q("select uid from contact where id = %d limit 1",
intval($id)
);
if((! count($r)) || (! intval($r[0]['uid'])))
return;
$archive = get_pconfig($r[0]['uid'], 'system','archive_removed_contacts');
if($archive) {
q("update contact set `archive` = 1, `network` = 'none', `writable` = 0 where id = %d limit 1",
intval($id)
);
return;
}
q("DELETE FROM `contact` WHERE `id` = %d LIMIT 1",
intval($id)
);
@ -73,6 +88,49 @@ function contact_remove($id) {
}
// sends an unfriend message. Does not remove the contact
function terminate_friendship($user,$self,$contact) {
$a = get_app();
require_once('include/datetime.php');
if($contact['network'] === NETWORK_OSTATUS) {
$slap = replace_macros(get_markup_template('follow_slap.tpl'), array(
'$name' => $user['username'],
'$profile_page' => $a->get_baseurl() . '/profile/' . $user['nickname'],
'$photo' => $self['photo'],
'$thumb' => $self['thumb'],
'$published' => datetime_convert('UTC','UTC', 'now', ATOM_TIME),
'$item_id' => 'urn:X-dfrn:' . $a->get_hostname() . ':unfollow:' . random_string(),
'$title' => '',
'$type' => 'text',
'$content' => t('stopped following'),
'$nick' => $user['nickname'],
'$verb' => 'http://ostatus.org/schema/1.0/unfollow', // ACTIVITY_UNFOLLOW,
'$ostat_follow' => '' // '<as:verb>http://ostatus.org/schema/1.0/unfollow</as:verb>' . "\r\n"
));
if((x($contact,'notify')) && (strlen($contact['notify']))) {
require_once('include/salmon.php');
slapper($user,$contact['notify'],$slap);
}
}
elseif($contact['network'] === NETWORK_DIASPORA) {
require_once('include/diaspora.php');
diaspora_unshare($user,$contact);
}
elseif($contact['network'] === NETWORK_DFRN) {
require_once('include/items.php');
dfrn_deliver($user,$contact,'placeholder', 1);
}
}
// Contact has refused to recognise us as a friend. We will start a countdown.
// If they still don't recognise us in 32 days, the relationship is over,
// and we won't waste any more time trying to communicate with them.

View file

@ -282,7 +282,7 @@ function scrape_feed($url) {
}
}
if(! $basename)
$basename = substr($url,0,strrpos($url,'/')) . '/';
$basename = implode('/', array_slice(explode('/',$url),0,3)) . '/';
$items = $dom->getElementsByTagName('link');

View file

@ -122,7 +122,7 @@ function contact_selector($selname, $selclass, $preselected = false, $options) {
$o .= "<select name=\"{$selname}[]\" id=\"$selclass\" class=\"$selclass\" multiple=\"multiple\" size=\"" . $x['size'] . "$\" $tabindex >\r\n";
$r = q("SELECT `id`, `name`, `url`, `network` FROM `contact`
WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 AND `pending` = 0 AND `notify` != ''
WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 AND `pending` = 0 AND `archive` = 0 AND `notify` != ''
$sql_extra
ORDER BY `name` ASC ",
intval(local_user())
@ -188,7 +188,7 @@ function contact_select($selname, $selclass, $preselected = false, $size = 4, $p
$o .= "<select name=\"{$selname}[]\" id=\"$selclass\" class=\"$selclass\" multiple=\"multiple\" size=\"$size\" $tabindex >\r\n";
$r = q("SELECT `id`, `name`, `url`, `network` FROM `contact`
WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 AND `pending` = 0 AND `notify` != ''
WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 AND `pending` = 0 AND `archive` = 0 AND `notify` != ''
$sql_extra
ORDER BY `name` ASC ",
intval(local_user())

View file

@ -380,7 +380,7 @@
$nick = $name;
// Generating a random ID
if (!array_key_exists($nick, $usercache))
if (is_null($usercache[$nick]) or !array_key_exists($nick, $usercache))
$usercache[$nick] = mt_rand(2000000, 2100000);
$ret = array(
@ -567,8 +567,17 @@
$_REQUEST['profile_uid'] = local_user();
if(requestdata('parent'))
$_REQUEST['type'] = 'net-comment';
else
else {
$_REQUEST['type'] = 'wall';
if(x($_FILES,'media')) {
// upload the image if we have one
$_REQUEST['hush']='yeah'; //tell wall_upload function to return img info instead of echo
require_once('mod/wall_upload.php');
$media = wall_upload_post($a);
if(strlen($media)>0)
$_REQUEST['body'] .= "\n\n".$media;
}
}
// set this so that the item_post() function is quiet and doesn't redirect or emit json

View file

@ -298,6 +298,9 @@ function bbcode($Text,$preserve_nl = false) {
$Text = preg_replace_callback("/\[nobb\](.*?)\[\/nobb\]/ism", 'bb_unspacefy_and_trim',$Text);
$Text = preg_replace_callback("/\[pre\](.*?)\[\/pre\]/ism", 'bb_unspacefy_and_trim',$Text);
$Text = preg_replace('/\[\&amp\;([#a-z0-9]+)\;\]/','&$1;',$Text);
// fix any escaped ampersands that may have been converted into links
$Text = preg_replace("/\<(.*?)(src|href)=(.*?)\&amp\;(.*?)\>/ism",'<$1$2=$3&$4>',$Text);
if(strlen($saved_image))

View file

@ -14,22 +14,40 @@
}
public static function set($key,$value) {
$r = q("SELECT * FROM `cache` WHERE `k`='%s' limit 1",
dbesc($key)
);
if(count($r)) {
q("UPDATE `cache` SET `v` = '%s', `updated = '%s' WHERE `k` = '%s' limit 1",
dbesc($value),
dbesc(datetime_convert()),
dbesc($key));
}
else {
q("INSERT INTO `cache` (`k`,`v`,`updated`) VALUES ('%s','%s','%s')",
q("REPLACE INTO `cache` (`k`,`v`,`updated`) VALUES ('%s','%s','%s')",
dbesc($key),
dbesc($value),
dbesc(datetime_convert()));
}
}
/*
*
* Leaving this legacy code temporaily to see how REPLACE fares
* as opposed to non-atomic checks when faced with fast moving key duplication.
* As a MySQL extension it isn't portable, but we're not yet very portable.
*/
/*
* $r = q("SELECT * FROM `cache` WHERE `k`='%s' limit 1",
* dbesc($key)
* );
* if(count($r)) {
* q("UPDATE `cache` SET `v` = '%s', `updated = '%s' WHERE `k` = '%s' limit 1",
* dbesc($value),
* dbesc(datetime_convert()),
* dbesc($key));
* }
* else {
* q("INSERT INTO `cache` (`k`,`v`,`updated`) VALUES ('%s','%s','%s')",
* dbesc($key),
* dbesc($value),
* dbesc(datetime_convert()));
* }
* }
*/
public static function clear(){
q("DELETE FROM `cache` WHERE `updated` < '%s'",

View file

@ -133,3 +133,60 @@ function categories_widget($baseurl,$selected = '') {
));
}
function common_friends_visitor_widget($profile_uid) {
$a = get_app();
if(local_user() == $profile_uid)
return;
$cid = $zcid = 0;
if(can_write_wall($a,$profile_uid))
$cid = remote_user();
else {
if(get_my_url()) {
$r = q("select id from contact where nurl = '%s' and uid = %d limit 1",
dbesc(normalise_link(get_my_url())),
intval($profile_uid)
);
if(count($r))
$cid = $r[0]['id'];
else {
$r = q("select id from gcontact where nurl = '%s' limit 1",
dbesc(normalise_link(get_my_url()))
);
if(count($r))
$zcid = $r[0]['id'];
}
}
}
if($cid == 0 && $zcid == 0)
return;
require_once('include/socgraph.php');
if($cid)
$t = count_common_friends($profile_uid,$cid);
else
$t = count_common_friends_zcid($profile_uid,$zcid);
if(! $t)
return;
if($cid)
$r = common_friends($profile_uid,$cid,0,5,true);
else
$r = common_friends_zcid($profile_uid,$zcid,0,5,true);
return replace_macros(get_markup_template('remote_friends_common.tpl'), array(
'$desc' => sprintf( tt("%d contact in common", "%d contacts in common", $t), $t),
'$base' => $a->get_baseurl(),
'$uid' => $profile_uid,
'$cid' => (($cid) ? $cid : '0'),
'$linkmore' => (($t > 5) ? 'true' : ''),
'$more' => t('show more'),
'$items' => $r
));
};

View file

@ -553,6 +553,14 @@ function conversation(&$a, $items, $mode, $update, $preview = false) {
'$myphoto' => $a->contact['thumb'],
'$comment' => t('Comment'),
'$submit' => t('Submit'),
'$edbold' => t('Bold'),
'$editalic' => t('Italic'),
'$eduline' => t('Underline'),
'$edquote' => t('Quote'),
'$edcode' => t('Code'),
'$edimg' => t('Image'),
'$edurl' => t('Link'),
'$edvideo' => t('Video'),
'$preview' => t('Preview'),
'$ww' => (($mode === 'network') ? $commentww : '')
));
@ -951,7 +959,7 @@ function status_editor($a,$x, $notes_cid = 0, $popup=false) {
$tpl = replace_macros($tpl,array('$jotplugins' => $jotplugins));
$o .= replace_macros($tpl,array(
'$return_path' => $a->cmd,
'$return_path' => $a->query_string,
'$action' => $a->get_baseurl(true) . '/item',
'$share' => (x($x,'button') ? $x['button'] : t('Share')),
'$upload' => t('Upload photo'),

View file

@ -75,22 +75,28 @@ class dba {
if((! $this->db) || (! $this->connected))
return false;
$this->error = '';
if($this->mysqli)
$result = @$this->db->query($sql);
else
$result = @mysql_query($sql,$this->db);
if($this->mysqli) {
if($this->db->errno)
$this->error = $this->db->error;
}
elseif(mysql_errno($this->db))
$this->error = mysql_error($this->db);
if(strlen($this->error)) {
logger('dba: ' . $this->error);
}
if($this->debug) {
$mesg = '';
if($this->mysqli) {
if($this->db->errno)
logger('dba: ' . $this->db->error);
}
elseif(mysql_errno($this->db))
logger('dba: ' . mysql_error($this->db));
if($result === false)
$mesg = 'false';
elseif($result === true)
@ -102,7 +108,9 @@ class dba {
$mesg = mysql_num_rows($result) . ' results' . EOL;
}
$str = 'SQL = ' . printable($sql) . EOL . 'SQL returned ' . $mesg . EOL;
$str = 'SQL = ' . printable($sql) . EOL . 'SQL returned ' . $mesg
. (($this->error) ? ' error: ' . $this->error : '')
. EOL;
logger('dba: ' . $str );
}
@ -114,9 +122,9 @@ class dba {
*/
if($result === false) {
logger('dba: ' . printable($sql) . ' returned false.');
logger('dba: ' . printable($sql) . ' returned false.' . "\n" . $this->error);
if(file_exists('dbfail.out'))
file_put_contents('dbfail.out', datetime_convert() . "\n" . printable($sql) . ' returned false' . "\n", FILE_APPEND);
file_put_contents('dbfail.out', datetime_convert() . "\n" . printable($sql) . ' returned false' . "\n" . $this->error . "\n", FILE_APPEND);
}
if(($result === true) || ($result === false))

View file

@ -51,6 +51,17 @@ function delivery_run($argv, $argc){
return;
}
$maxsysload = intval(get_config('system','maxloadavg'));
if($maxsysload < 1)
$maxsysload = 50;
if(function_exists('sys_getloadavg')) {
$load = sys_getloadavg();
if(intval($load[0]) > $maxsysload) {
logger('system: load ' . $load . ' too high. Delivery deferred to next queue run.');
return;
}
}
// It's ours to deliver. Remove it from the queue.
q("delete from deliverq where cmd = '%s' and item = %d and contact = %d limit 1",
@ -336,7 +347,10 @@ function delivery_run($argv, $argc){
}
}
$deliver_status = dfrn_deliver($owner,$contact,$atom);
if(! was_recently_delayed($contact['id']))
$deliver_status = dfrn_deliver($owner,$contact,$atom);
else
$deliver_status = (-1);
logger('notifier: dfrn_delivery returns ' . $deliver_status);
@ -379,7 +393,11 @@ function delivery_run($argv, $argc){
logger('notifier: slapdelivery: ' . $contact['name']);
foreach($slaps as $slappy) {
if($contact['notify']) {
$deliver_status = slapper($owner,$contact['notify'],$slappy);
if(! was_recently_delayed($contact['id']))
$deliver_status = slapper($owner,$contact['notify'],$slappy);
else
$deliver_status = (-1);
if($deliver_status == (-1)) {
// queue message for redelivery
add_to_queue($contact['id'],NETWORK_OSTATUS,$slappy);

View file

@ -706,10 +706,10 @@ function diaspora_post($importer,$xml) {
continue;
$basetag = str_replace('_',' ',substr($tag,1));
$body = str_replace($tag,'#[url=' . $a->get_baseurl() . '/search?search=' . rawurlencode($basetag) . ']' . $basetag . '[/url]',$body);
$body = str_replace($tag,'#[url=' . $a->get_baseurl() . '/search?tag=' . rawurlencode($basetag) . ']' . $basetag . '[/url]',$body);
if(strlen($str_tags))
$str_tags .= ',';
$str_tags .= '#[url=' . $a->get_baseurl() . '/search?search=' . rawurlencode($basetag) . ']' . $basetag . '[/url]';
$str_tags .= '#[url=' . $a->get_baseurl() . '/search?tag=' . rawurlencode($basetag) . ']' . $basetag . '[/url]';
continue;
}
}
@ -872,10 +872,10 @@ function diaspora_reshare($importer,$xml) {
$basetag = str_replace('_',' ',substr($tag,1));
$body = str_replace($tag,'#[url=' . $a->get_baseurl() . '/search?search=' . rawurlencode($basetag) . ']' . $basetag . '[/url]',$body);
$body = str_replace($tag,'#[url=' . $a->get_baseurl() . '/search?tag=' . rawurlencode($basetag) . ']' . $basetag . '[/url]',$body);
if(strlen($str_tags))
$str_tags .= ',';
$str_tags .= '#[url=' . $a->get_baseurl() . '/search?search=' . rawurlencode($basetag) . ']' . $basetag . '[/url]';
$str_tags .= '#[url=' . $a->get_baseurl() . '/search?tag=' . rawurlencode($basetag) . ']' . $basetag . '[/url]';
continue;
}
}
@ -1113,10 +1113,10 @@ function diaspora_comment($importer,$xml,$msg) {
$basetag = str_replace('_',' ',substr($tag,1));
$body = str_replace($tag,'#[url=' . $a->get_baseurl() . '/search?search=' . rawurlencode($basetag) . ']' . $basetag . '[/url]',$body);
$body = str_replace($tag,'#[url=' . $a->get_baseurl() . '/search?tag=' . rawurlencode($basetag) . ']' . $basetag . '[/url]',$body);
if(strlen($str_tags))
$str_tags .= ',';
$str_tags .= '#[url=' . $a->get_baseurl() . '/search?search=' . rawurlencode($basetag) . ']' . $basetag . '[/url]';
$str_tags .= '#[url=' . $a->get_baseurl() . '/search?tag=' . rawurlencode($basetag) . ']' . $basetag . '[/url]';
continue;
}
}
@ -1172,7 +1172,7 @@ function diaspora_comment($importer,$xml,$msg) {
proc_run('php','include/notifier.php','comment',$message_id);
}
$myconv = q("SELECT `author-link`, `author-avatar`, `parent` FROM `item` WHERE `parent-uri` = '%s' AND `uid` = %d AND `parent` != 0 ",
$myconv = q("SELECT `author-link`, `author-avatar`, `parent` FROM `item` WHERE `parent-uri` = '%s' AND `uid` = %d AND `parent` != 0 AND `deleted` = 0 ",
dbesc($parent_item['uri']),
intval($importer['uid'])
);
@ -2298,14 +2298,20 @@ function diaspora_transmit($owner,$contact,$slap,$public_batch) {
logger('diaspora_transmit: ' . $logid . ' ' . $dest_url);
if(! intval(get_config('system','diaspora_test')))
post_url($dest_url . '/', $slap);
else {
logger('diaspora_transmit: test_mode');
return 200;
if(was_recently_delayed($contact['id'])) {
$return_code = 0;
}
$return_code = $a->get_curl_code();
else {
if(! intval(get_config('system','diaspora_test'))) {
post_url($dest_url . '/', $slap);
$return_code = $a->get_curl_code();
}
else {
logger('diaspora_transmit: test_mode');
return 200;
}
}
logger('diaspora_transmit: ' . $logid . ' returns: ' . $return_code);
if((! $return_code) || (($return_code == 503) && (stristr($a->get_curl_headers(),'retry-after')))) {

View file

@ -402,8 +402,8 @@ class enotify {
*/
static public function send($params) {
$fromName = email_header_encode($params['fromName'],'UTF-8');
$messageSubject = email_header_encode($params['messageSubject'],'UTF-8');
$fromName = email_header_encode(html_entity_decode($params['fromName'],ENT_QUOTES,'UTF-8'),'UTF-8');
$messageSubject = email_header_encode(html_entity_decode($params['messageSubject'],ENT_QUOTES,'UTF-8'),'UTF-8');
// generate a mime boundary
$mimeBoundary =rand(0,9)."-"

View file

@ -32,7 +32,11 @@ function expire_run($argv, $argc){
// physically remove anything that has been deleted for more than two months
$r = q("delete from item where deleted = 1 and changed < UTC_TIMESTAMP() - INTERVAL 60 DAY");
q("optimize table item");
// make this optional as it could have a performance impact on large sites
if(intval(get_config('system','optimize_items')))
q("optimize table item");
logger('expire: start');

65
include/gprobe.php Normal file
View file

@ -0,0 +1,65 @@
<?php
require_once("boot.php");
require_once('include/Scrape.php');
require_once('include/socgraph.php');
function gprobe_run($argv, $argc){
global $a, $db;
if(is_null($a)) {
$a = new App;
}
if(is_null($db)) {
@include(".htconfig.php");
require_once("dba.php");
$db = new dba($db_host, $db_user, $db_pass, $db_data);
unset($db_host, $db_user, $db_pass, $db_data);
};
require_once('include/session.php');
require_once('include/datetime.php');
load_config('config');
load_config('system');
$a->set_baseurl(get_config('system','url'));
load_hooks();
if($argc != 2)
return;
$url = hex2bin($argv[1]);
$r = q("select * from gcontact where nurl = '%s' limit 1",
dbesc(normalise_link($url))
);
if(! count($r)) {
$arr = probe_url($url);
if(count($arr) && x($arr,'network') && $arr['network'] === NETWORK_DFRN) {
q("insert into `gcontact` (`name`,`url`,`nurl`,`photo`)
values ( '%s', '%s', '%s', '%s') ",
dbesc($arr['name']),
dbesc($arr['url']),
dbesc(normalise_link($arr['url'])),
dbesc($arr['photo'])
);
}
$r = q("select * from gcontact where nurl = '%s' limit 1",
dbesc(normalise_link($url))
);
}
if(count($r))
poco_load(0,0,$r[0]['id'], str_replace('/profile/','/poco/',$r[0]['url']));
return;
}
if (array_search(__file__,get_included_files())===0){
gprobe_run($argv,$argc);
killme();
}

View file

@ -83,7 +83,7 @@ function collecturls($message) {
$urls = array();
foreach ($result as $treffer) {
// A list of some links that should be ignored
$list = array("/user/", "/tag/", "/group/", "/profile/", "/search?search=", "mailto:", "/u/", "/node/",
$list = array("/user/", "/tag/", "/group/", "/profile/", "/search?search=", "/search?tag=", "mailto:", "/u/", "/node/",
"//facebook.com/profile.php?id=", "//plus.google.com/");
foreach ($list as $listitem)
if (strpos($treffer[1], $listitem) !== false)

View file

@ -952,7 +952,7 @@ function tag_deliver($uid,$item_id) {
$mention = false;
$u = q("select uid, nickname, language, username, email, `page-flags`, `notify-flags` from user where uid = %d limit 1",
$u = q("select * from user where uid = %d limit 1",
intval($uid)
);
if(! count($u))
@ -1027,10 +1027,20 @@ function tag_deliver($uid,$item_id) {
if(! count($c))
return;
q("update item set wall = 1, origin = 1, forum_mode = 1, `owner-name` = '%s', `owner-link` = '%s', `owner-avatar` = '%s' where id = %d limit 1",
// also reset all the privacy bits to the forum default permissions
$private = ($u[0]['allow_cid'] || $u[0]['allow_gid'] || $u[0]['deny_cid'] || $u[0]['deny_gid']) ? 1 : 0;
q("update item set wall = 1, origin = 1, forum_mode = 1, `owner-name` = '%s', `owner-link` = '%s', `owner-avatar` = '%s',
`private` = %d, `allow_cid` = '%s', `allow_gid` = '%s', `deny_cid` = '%s', `deny_gid` = '%s' where id = %d limit 1",
dbesc($c[0]['name']),
dbesc($c[0]['url']),
dbesc($c[0]['thumb']),
intval($private),
dbesc($u[0]['allow_cid']),
dbesc($u[0]['allow_gid']),
dbesc($u[0]['deny_cid']),
dbesc($u[0]['deny_gid']),
intval($item_id)
);
@ -2227,10 +2237,10 @@ function local_delivery($importer,$data) {
logger('local_delivery: received remote comment');
$is_like = false;
// remote reply to our post. Import and then notify everybody else.
$datarray = get_atom_elements($feed,$item);
$r = q("SELECT `id`, `uid`, `last-child`, `edited`, `body` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
$r = q("SELECT `id`, `uid`, `last-child`, `edited`, `body` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
dbesc($item_id),
intval($importer['importer_uid'])
);
@ -2266,14 +2276,22 @@ function local_delivery($importer,$data) {
// return 0;
// }
// our user with $importer['importer_uid'] is the owner
$own = q("select name,url,thumb from contact where uid = %d and self = 1 limit 1",
intval($importer['importer_uid'])
);
$datarray['type'] = 'remote-comment';
$datarray['wall'] = 1;
$datarray['parent-uri'] = $parent_uri;
$datarray['uid'] = $importer['importer_uid'];
$datarray['owner-name'] = $r[0]['name'];
$datarray['owner-link'] = $r[0]['url'];
$datarray['owner-avatar'] = $r[0]['thumb'];
$datarray['owner-name'] = $own[0]['name'];
$datarray['owner-link'] = $own[0]['url'];
$datarray['owner-avatar'] = $own[0]['thumb'];
$datarray['contact-id'] = $importer['id'];
if(($datarray['verb'] === ACTIVITY_LIKE) || ($datarray['verb'] === ACTIVITY_DISLIKE)) {
$is_like = true;
$datarray['type'] = 'activity';
@ -2290,26 +2308,34 @@ function local_delivery($importer,$data) {
}
if(($datarray['verb'] === ACTIVITY_TAG) && ($datarray['object-type'] === ACTIVITY_OBJ_TAGTERM)) {
$xo = parse_xml_string($datarray['object'],false);
$xt = parse_xml_string($datarray['target'],false);
if(($xt->type == ACTIVITY_OBJ_NOTE) && ($xt->id == $r[0]['uri'])) {
if(($xt->type == ACTIVITY_OBJ_NOTE) && ($xt->id)) {
// fetch the parent item
$tagp = q("select * from item where uri = '%s' and uid = %d limit 1",
dbesc($xt->id),
intval($importer['importer_uid'])
);
if(! count($tagp))
continue;
// extract tag, if not duplicate, and this user allows tags, add to parent item
if($xo->id && $xo->content) {
$newtag = '#[url=' . $xo->id . ']'. $xo->content . '[/url]';
if(! (stristr($r[0]['tag'],$newtag))) {
if(! (stristr($tagp[0]['tag'],$newtag))) {
$i = q("SELECT `blocktags` FROM `user` where `uid` = %d LIMIT 1",
intval($importer['importer_uid'])
);
if(count($i) && ! ($i[0]['blocktags'])) {
q("UPDATE item SET tag = '%s' WHERE id = %d LIMIT 1",
dbesc($r[0]['tag'] . (strlen($r[0]['tag']) ? ',' : '') . $newtag),
intval($r[0]['id'])
if(count($i) && ! intval($i[0]['blocktags'])) {
q("UPDATE item SET tag = '%s', `edited` = '%s' WHERE id = %d LIMIT 1",
dbesc($tagp[0]['tag'] . (strlen($tagp[0]['tag']) ? ',' : '') . $newtag),
intval($tagp[0]['id']),
dbesc(datetime_convert())
);
}
}
@ -2479,7 +2505,7 @@ function local_delivery($importer,$data) {
if(!x($datarray['type']) || $datarray['type'] != 'activity') {
$myconv = q("SELECT `author-link`, `author-avatar`, `parent` FROM `item` WHERE `parent-uri` = '%s' AND `uid` = %d AND `parent` != 0 ",
$myconv = q("SELECT `author-link`, `author-avatar`, `parent` FROM `item` WHERE `parent-uri` = '%s' AND `uid` = %d AND `parent` != 0 AND `deleted` = 0",
dbesc($parent_uri),
intval($importer['importer_uid'])
);
@ -3013,32 +3039,7 @@ function item_expire($uid,$days) {
if($expire_items==0 && $item['type']!='note')
continue;
$r = q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s' WHERE `id` = %d LIMIT 1",
dbesc(datetime_convert()),
dbesc(datetime_convert()),
intval($item['id'])
);
$r = q("DELETE FROM item_id where iid in (select id from item where parent = %d) and uid = %d",
intval($item['id']),
intval($uid)
);
$r = q("DELETE FROM sign where iid in (select id from item where parent = %d) and uid = %d",
intval($item['id']),
intval($uid)
);
// kill the kids
$r = q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s' WHERE `parent-uri` = '%s' AND `uid` = %d ",
dbesc(datetime_convert()),
dbesc(datetime_convert()),
dbesc($item['parent-uri']),
intval($item['uid'])
);
drop_item($item['id'],false);
}
proc_run('php',"include/notifier.php","expire","$uid");
@ -3100,6 +3101,25 @@ function drop_item($id,$interactive = true) {
intval($item['id'])
);
// clean up categories and tags so they don't end up as orphans
$matches = false;
$cnt = preg_match_all('/<(.*?)>/',$item['file'],$matches,PREG_SET_ORDER);
if($cnt) {
foreach($matches as $mtch) {
file_tag_unsave_file($item['uid'],$item['id'],$mtch[1],true);
}
}
$matches = false;
$cnt = preg_match_all('/\[(.*?)\]/',$item['file'],$matches,PREG_SET_ORDER);
if($cnt) {
foreach($matches as $mtch) {
file_tag_unsave_file($item['uid'],$item['id'],$mtch[1],false);
}
}
// If item is a link to a photo resource, nuke all the associated photos
// (visitors will not have photo resources)
// This only applies to photos uploaded from the photos page. Photos inserted into a post do not
@ -3123,6 +3143,17 @@ function drop_item($id,$interactive = true) {
// ignore the result
}
// clean up item_id and sign meta-data tables
$r = q("DELETE FROM item_id where iid in (select id from item where parent = %d and uid = %d)",
intval($item['id']),
intval($item['uid'])
);
$r = q("DELETE FROM sign where iid in (select id from item where parent = %d and uid = %d)",
intval($item['id']),
intval($item['uid'])
);
// If it's the parent of a comment thread, kill all the kids
@ -3155,7 +3186,7 @@ function drop_item($id,$interactive = true) {
}
}
$drop_id = intval($item['id']);
// send the notification upstream/downstream as the case may be
if(! $interactive)

View file

@ -583,7 +583,7 @@ function fetch_xrd_links($url) {
// Take a URL from the wild, prepend http:// if necessary
// and check DNS to see if it's real
// and check DNS to see if it's real (or check if is a valid IP address)
// return true if it's OK, false if something is wrong with it
if(! function_exists('validate_url')) {
@ -596,7 +596,7 @@ function validate_url(&$url) {
$url = 'http://' . $url;
$h = @parse_url($url);
if(($h) && (dns_get_record($h['host'], DNS_A + DNS_CNAME + DNS_PTR))) {
if(($h) && (dns_get_record($h['host'], DNS_A + DNS_CNAME + DNS_PTR) || filter_var($h['host'], FILTER_VALIDATE_IP) )) {
return true;
}
return false;
@ -611,7 +611,7 @@ function validate_email($addr) {
return false;
$h = substr($addr,strpos($addr,'@') + 1);
if(($h) && (dns_get_record($h, DNS_A + DNS_CNAME + DNS_PTR + DNS_MX))) {
if(($h) && (dns_get_record($h, DNS_A + DNS_CNAME + DNS_PTR + DNS_MX) || filter_var($h['host'], FILTER_VALIDATE_IP) )) {
return true;
}
return false;

View file

@ -47,7 +47,7 @@ function notifier_run($argv, $argc){
$a->set_baseurl(get_config('system','url'));
logger('notifier: invoked: ' . print_r($argv,true));
logger('notifier: invoked: ' . print_r($argv,true), LOGGER_DEBUG);
$cmd = $argv[1];
@ -304,7 +304,7 @@ function notifier_run($argv, $argc){
$conversant_str = dbesc(implode(', ',$conversants));
}
$r = q("SELECT * FROM `contact` WHERE `id` IN ( $conversant_str ) AND `blocked` = 0 AND `pending` = 0");
$r = q("SELECT * FROM `contact` WHERE `id` IN ( $conversant_str ) AND `blocked` = 0 AND `pending` = 0 AND `archive` = 0");
if(count($r))
$contacts = $r;
@ -520,7 +520,8 @@ function notifier_run($argv, $argc){
`user`.*
FROM `contact`
LEFT JOIN `user` ON `contact`.`uid` = `user`.`uid`
WHERE `contact`.`blocked` = 0 AND `contact`.`pending` = 0
WHERE `contact`.`blocked` = 0 AND `contact`.`archive` = 0
AND `contact`.`pending` = 0
AND `contact`.`network` = '%s' AND `user`.`nickname` = '%s'
$sql_extra
AND `user`.`account_expired` = 0 LIMIT 1",
@ -769,7 +770,7 @@ function notifier_run($argv, $argc){
);
$r2 = q("SELECT `id`, `name`,`network` FROM `contact`
WHERE `network` in ( '%s', '%s') AND `uid` = %d AND `blocked` = 0 AND `pending` = 0
WHERE `network` in ( '%s', '%s') AND `uid` = %d AND `blocked` = 0 AND `pending` = 0 AND `archive` = 0
AND `rel` != %d order by rand() ",
dbesc(NETWORK_DFRN),
dbesc(NETWORK_MAIL2),
@ -832,6 +833,8 @@ function notifier_run($argv, $argc){
}
logger('notifier: calling hooks', LOGGER_DEBUG);
if($normal_mode)
call_hooks('notifier_normal',$target_item);

523
include/onepoll.php Normal file
View file

@ -0,0 +1,523 @@
<?php
require_once("boot.php");
function onepoll_run($argv, $argc){
global $a, $db;
if(is_null($a)) {
$a = new App;
}
if(is_null($db)) {
@include(".htconfig.php");
require_once("dba.php");
$db = new dba($db_host, $db_user, $db_pass, $db_data);
unset($db_host, $db_user, $db_pass, $db_data);
};
require_once('include/session.php');
require_once('include/datetime.php');
require_once('library/simplepie/simplepie.inc');
require_once('include/items.php');
require_once('include/Contact.php');
require_once('include/email.php');
require_once('include/socgraph.php');
require_once('include/pidfile.php');
require_once('include/queue_fn.php');
load_config('config');
load_config('system');
$a->set_baseurl(get_config('system','url'));
load_hooks();
logger('onepoll: start');
$abandon_days = intval(get_config('system','account_abandon_days'));
if($abandon_days < 1)
$abandon_days = 0;
$manual_id = 0;
$generation = 0;
$hub_update = false;
$force = false;
$restart = false;
if(($argc > 1) && (intval($argv[1])))
$contact_id = intval($argv[1]);
if(! $contact_id) {
logger('onepoll: no contact');
return;
}
if(was_recently_delayed($contact_id))
return;
$d = datetime_convert();
// Only poll from those with suitable relationships,
// and which have a polling address and ignore Diaspora since
// we are unable to match those posts with a Diaspora GUID and prevent duplicates.
$abandon_sql = (($abandon_days)
? sprintf(" AND `user`.`login_date` > UTC_TIMESTAMP() - INTERVAL %d DAY ", intval($abandon_days))
: ''
);
$contacts = q("SELECT `contact`.* FROM `contact`
WHERE ( `rel` = %d OR `rel` = %d ) AND `poll` != ''
AND NOT `network` IN ( '%s', '%s' )
AND `contact`.`id` = %d
AND `self` = 0 AND `contact`.`blocked` = 0 AND `contact`.`readonly` = 0
AND `contact`.`archive` = 0 LIMIT 1",
intval(CONTACT_IS_SHARING),
intval(CONTACT_IS_FRIEND),
dbesc(NETWORK_DIASPORA),
dbesc(NETWORK_FACEBOOK),
intval($contact_id)
);
if(! count($contacts)) {
return;
}
$contact = $contacts[0];
$xml = false;
$t = $contact['last-update'];
if($contact['subhub']) {
$interval = get_config('system','pushpoll_frequency');
$contact['priority'] = (($interval !== false) ? intval($interval) : 3);
$hub_update = false;
if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 day"))
$hub_update = true;
}
else
$hub_update = false;
$importer_uid = $contact['uid'];
$r = q("SELECT `contact`.*, `user`.`page-flags` FROM `contact` LEFT JOIN `user` on `contact`.`uid` = `user`.`uid` WHERE `user`.`uid` = %d AND `contact`.`self` = 1 LIMIT 1",
intval($importer_uid)
);
if(! count($r))
return;
$importer = $r[0];
logger("onepoll: poll: ({$contact['id']}) IMPORTER: {$importer['name']}, CONTACT: {$contact['name']}");
$last_update = (($contact['last-update'] === '0000-00-00 00:00:00')
? datetime_convert('UTC','UTC','now - 7 days', ATOM_TIME)
: datetime_convert('UTC','UTC',$contact['last-update'], ATOM_TIME)
);
if($contact['network'] === NETWORK_DFRN) {
$idtosend = $orig_id = (($contact['dfrn-id']) ? $contact['dfrn-id'] : $contact['issued-id']);
if(intval($contact['duplex']) && $contact['dfrn-id'])
$idtosend = '0:' . $orig_id;
if(intval($contact['duplex']) && $contact['issued-id'])
$idtosend = '1:' . $orig_id;
// they have permission to write to us. We already filtered this in the contact query.
$perm = 'rw';
$url = $contact['poll'] . '?dfrn_id=' . $idtosend
. '&dfrn_version=' . DFRN_PROTOCOL_VERSION
. '&type=data&last_update=' . $last_update
. '&perm=' . $perm ;
$handshake_xml = fetch_url($url);
logger('onepoll: handshake with url ' . $url . ' returns xml: ' . $handshake_xml, LOGGER_DATA);
if(! $handshake_xml) {
logger("poller: $url appears to be dead - marking for death ");
// dead connection - might be a transient event, or this might
// mean the software was uninstalled or the domain expired.
// Will keep trying for one month.
mark_for_death($contact);
// set the last-update so we don't keep polling
$r = q("UPDATE `contact` SET `last-update` = '%s' WHERE `id` = %d LIMIT 1",
dbesc(datetime_convert()),
intval($contact['id'])
);
return;
}
if(! strstr($handshake_xml,'<?xml')) {
logger('poller: response from ' . $url . ' did not contain XML.');
$r = q("UPDATE `contact` SET `last-update` = '%s' WHERE `id` = %d LIMIT 1",
dbesc(datetime_convert()),
intval($contact['id'])
);
return;
}
$res = parse_xml_string($handshake_xml);
if(intval($res->status) == 1) {
logger("poller: $url replied status 1 - marking for death ");
// we may not be friends anymore. Will keep trying for one month.
// set the last-update so we don't keep polling
$r = q("UPDATE `contact` SET `last-update` = '%s' WHERE `id` = %d LIMIT 1",
dbesc(datetime_convert()),
intval($contact['id'])
);
mark_for_death($contact);
}
else {
if($contact['term-date'] != '0000-00-00 00:00:00') {
logger("poller: $url back from the dead - removing mark for death");
unmark_for_death($contact);
}
}
if((intval($res->status) != 0) || (! strlen($res->challenge)) || (! strlen($res->dfrn_id)))
return;
if(((float) $res->dfrn_version > 2.21) && ($contact['poco'] == '')) {
q("update contact set poco = '%s' where id = %d limit 1",
dbesc(str_replace('/profile/','/poco/', $contact['url'])),
intval($contact['id'])
);
}
$postvars = array();
$sent_dfrn_id = hex2bin((string) $res->dfrn_id);
$challenge = hex2bin((string) $res->challenge);
$final_dfrn_id = '';
if(($contact['duplex']) && strlen($contact['prvkey'])) {
openssl_private_decrypt($sent_dfrn_id,$final_dfrn_id,$contact['prvkey']);
openssl_private_decrypt($challenge,$postvars['challenge'],$contact['prvkey']);
}
else {
openssl_public_decrypt($sent_dfrn_id,$final_dfrn_id,$contact['pubkey']);
openssl_public_decrypt($challenge,$postvars['challenge'],$contact['pubkey']);
}
$final_dfrn_id = substr($final_dfrn_id, 0, strpos($final_dfrn_id, '.'));
if(strpos($final_dfrn_id,':') == 1)
$final_dfrn_id = substr($final_dfrn_id,2);
if($final_dfrn_id != $orig_id) {
logger('poller: ID did not decode: ' . $contact['id'] . ' orig: ' . $orig_id . ' final: ' . $final_dfrn_id);
// did not decode properly - cannot trust this site
return;
}
$postvars['dfrn_id'] = $idtosend;
$postvars['dfrn_version'] = DFRN_PROTOCOL_VERSION;
$postvars['perm'] = 'rw';
$xml = post_url($contact['poll'],$postvars);
}
elseif(($contact['network'] === NETWORK_OSTATUS)
|| ($contact['network'] === NETWORK_DIASPORA)
|| ($contact['network'] === NETWORK_FEED) ) {
// Upgrading DB fields from an older Friendica version
// Will only do this once per notify-enabled OStatus contact
// or if relationship changes
$stat_writeable = ((($contact['notify']) && ($contact['rel'] == CONTACT_IS_FOLLOWER || $contact['rel'] == CONTACT_IS_FRIEND)) ? 1 : 0);
if($stat_writeable != $contact['writable']) {
q("UPDATE `contact` SET `writable` = %d WHERE `id` = %d LIMIT 1",
intval($stat_writeable),
intval($contact['id'])
);
}
// Are we allowed to import from this person?
if($contact['rel'] == CONTACT_IS_FOLLOWER || $contact['blocked'] || $contact['readonly'])
return;
$xml = fetch_url($contact['poll']);
}
elseif($contact['network'] === NETWORK_MAIL || $contact['network'] === NETWORK_MAIL2) {
logger("onepoll: mail: Fetching", LOGGER_DEBUG);
$mail_disabled = ((function_exists('imap_open') && (! get_config('system','imap_disabled'))) ? 0 : 1);
if($mail_disabled)
return;
logger("onepoll: Mail: Enabled", LOGGER_DEBUG);
$mbox = null;
$x = q("SELECT `prvkey` FROM `user` WHERE `uid` = %d LIMIT 1",
intval($importer_uid)
);
$mailconf = q("SELECT * FROM `mailacct` WHERE `server` != '' AND `uid` = %d LIMIT 1",
intval($importer_uid)
);
if(count($x) && count($mailconf)) {
$mailbox = construct_mailbox_name($mailconf[0]);
$password = '';
openssl_private_decrypt(hex2bin($mailconf[0]['pass']),$password,$x[0]['prvkey']);
$mbox = email_connect($mailbox,$mailconf[0]['user'],$password);
unset($password);
logger("Mail: Connect");
if($mbox) {
q("UPDATE `mailacct` SET `last_check` = '%s' WHERE `id` = %d AND `uid` = %d LIMIT 1",
dbesc(datetime_convert()),
intval($mailconf[0]['id']),
intval($importer_uid)
);
}
}
if($mbox) {
$msgs = email_poll($mbox,$contact['addr']);
if(count($msgs)) {
logger("Mail: Parsing ".count($msgs)." mails.", LOGGER_DEBUG);
foreach($msgs as $msg_uid) {
logger("Mail: Parsing mail ".$msg_uid, LOGGER_DATA);
$datarray = array();
$meta = email_msg_meta($mbox,$msg_uid);
$headers = email_msg_headers($mbox,$msg_uid);
// look for a 'references' header and try and match with a parent item we have locally.
$raw_refs = ((x($headers,'references')) ? str_replace("\t",'',$headers['references']) : '');
$datarray['uri'] = msgid2iri(trim($meta->message_id,'<>'));
if($raw_refs) {
$refs_arr = explode(' ', $raw_refs);
if(count($refs_arr)) {
for($x = 0; $x < count($refs_arr); $x ++)
$refs_arr[$x] = "'" . msgid2iri(str_replace(array('<','>',' '),array('','',''),dbesc($refs_arr[$x]))) . "'";
}
$qstr = implode(',',$refs_arr);
$r = q("SELECT `uri` , `parent-uri` FROM `item` WHERE `uri` IN ( $qstr ) AND `uid` = %d LIMIT 1",
intval($importer_uid)
);
if(count($r))
$datarray['parent-uri'] = $r[0]['uri'];
}
if(! x($datarray,'parent-uri'))
$datarray['parent-uri'] = $datarray['uri'];
// Have we seen it before?
$r = q("SELECT * FROM `item` WHERE `uid` = %d AND `uri` = '%s' LIMIT 1",
intval($importer_uid),
dbesc($datarray['uri'])
);
if(count($r)) {
// logger("Mail: Seen before ".$msg_uid);
if($meta->deleted && ! $r[0]['deleted']) {
q("UPDATE `item` SET `deleted` = 1, `changed` = '%s' WHERE `id` = %d LIMIT 1",
dbesc(datetime_convert()),
intval($r[0]['id'])
);
}
switch ($mailconf[0]['action']) {
case 0:
break;
case 1:
logger("Mail: Deleting ".$msg_uid);
imap_delete($mbox, $msg_uid, FT_UID);
break;
case 2:
logger("Mail: Mark as seen ".$msg_uid);
imap_setflag_full($mbox, $msg_uid, "\\Seen", ST_UID);
break;
case 3:
logger("Mail: Moving ".$msg_uid." to ".$mailconf[0]['movetofolder']);
imap_setflag_full($mbox, $msg_uid, "\\Seen", ST_UID);
if ($mailconf[0]['movetofolder'] != "")
imap_mail_move($mbox, $msg_uid, $mailconf[0]['movetofolder'], FT_UID);
break;
}
continue;
}
// Decoding the header
$subject = imap_mime_header_decode($meta->subject);
$datarray['title'] = "";
foreach($subject as $subpart)
if ($subpart->charset != "default")
$datarray['title'] .= iconv($subpart->charset, 'UTF-8//IGNORE', $subpart->text);
else
$datarray['title'] .= $subpart->text;
$datarray['title'] = notags(trim($datarray['title']));
//$datarray['title'] = notags(trim($meta->subject));
$datarray['created'] = datetime_convert('UTC','UTC',$meta->date);
// Is it reply?
$reply = ((substr(strtolower($datarray['title']), 0, 3) == "re:") or
(substr(strtolower($datarray['title']), 0, 3) == "re-") or
(raw_refs != ""));
$r = email_get_msg($mbox,$msg_uid, $reply);
if(! $r) {
logger("Mail: can't fetch msg ".$msg_uid);
continue;
}
$datarray['body'] = escape_tags($r['body']);
logger("Mail: Importing ".$msg_uid);
// some mailing lists have the original author as 'from' - add this sender info to msg body.
// todo: adding a gravatar for the original author would be cool
if(! stristr($meta->from,$contact['addr'])) {
$from = imap_mime_header_decode($meta->from);
$fromdecoded = "";
foreach($from as $frompart)
if ($frompart->charset != "default")
$fromdecoded .= iconv($frompart->charset, 'UTF-8//IGNORE', $frompart->text);
else
$fromdecoded .= $frompart->text;
$datarray['body'] = "[b]".t('From: ') . escape_tags($fromdecoded) . "[/b]\n\n" . $datarray['body'];
}
$datarray['uid'] = $importer_uid;
$datarray['contact-id'] = $contact['id'];
if($datarray['parent-uri'] === $datarray['uri'])
$datarray['private'] = 1;
if(($contact['network'] === NETWORK_MAIL) && (! get_pconfig($importer_uid,'system','allow_public_email_replies'))) {
$datarray['private'] = 1;
$datarray['allow_cid'] = '<' . $contact['id'] . '>';
}
$datarray['author-name'] = $contact['name'];
$datarray['author-link'] = 'mailbox';
$datarray['author-avatar'] = $contact['photo'];
$stored_item = item_store($datarray);
q("UPDATE `item` SET `last-child` = 0 WHERE `parent-uri` = '%s' AND `uid` = %d",
dbesc($datarray['parent-uri']),
intval($importer_uid)
);
q("UPDATE `item` SET `last-child` = 1 WHERE `id` = %d LIMIT 1",
intval($stored_item)
);
switch ($mailconf[0]['action']) {
case 0:
break;
case 1:
logger("Mail: Deleting ".$msg_uid);
imap_delete($mbox, $msg_uid, FT_UID);
break;
case 2:
logger("Mail: Mark as seen ".$msg_uid);
imap_setflag_full($mbox, $msg_uid, "\\Seen", ST_UID);
break;
case 3:
logger("Mail: Moving ".$msg_uid." to ".$mailconf[0]['movetofolder']);
imap_setflag_full($mbox, $msg_uid, "\\Seen", ST_UID);
if ($mailconf[0]['movetofolder'] != "")
imap_mail_move($mbox, $msg_uid, $mailconf[0]['movetofolder'], FT_UID);
break;
}
}
}
imap_close($mbox);
}
}
elseif($contact['network'] === NETWORK_FACEBOOK) {
// This is picked up by the Facebook plugin on a cron hook.
// Ignored here.
}
if($xml) {
logger('poller: received xml : ' . $xml, LOGGER_DATA);
if((! strstr($xml,'<?xml')) && (! strstr($xml,'<rss'))) {
logger('poller: post_handshake: response from ' . $url . ' did not contain XML.');
$r = q("UPDATE `contact` SET `last-update` = '%s' WHERE `id` = %d LIMIT 1",
dbesc(datetime_convert()),
intval($contact['id'])
);
return;
}
consume_feed($xml,$importer,$contact,$hub,1,1);
// do it twice. Ensures that children of parents which may be later in the stream aren't tossed
consume_feed($xml,$importer,$contact,$hub,1,2);
$hubmode = 'subscribe';
if($contact['network'] === NETWORK_DFRN || $contact['blocked'] || $contact['readonly'])
$hubmode = 'unsubscribe';
if((strlen($hub)) && ($hub_update) && ($contact['rel'] != CONTACT_IS_FOLLOWER)) {
logger('poller: hub ' . $hubmode . ' : ' . $hub . ' contact name : ' . $contact['name'] . ' local user : ' . $importer['name']);
$hubs = explode(',', $hub);
if(count($hubs)) {
foreach($hubs as $h) {
$h = trim($h);
if(! strlen($h))
continue;
subscribe_to_hub($h,$importer,$contact,$hubmode);
}
}
}
}
$updated = datetime_convert();
$r = q("UPDATE `contact` SET `last-update` = '%s', `success_update` = '%s' WHERE `id` = %d LIMIT 1",
dbesc($updated),
dbesc($updated),
intval($contact['id'])
);
// load current friends if possible.
if($contact['poco']) {
$r = q("SELECT count(*) as total from glink
where `cid` = %d and updated > UTC_TIMESTAMP() - INTERVAL 1 DAY",
intval($contact['id'])
);
}
if(count($r)) {
if(! $r[0]['total']) {
poco_load($contact['id'],$importer_uid,0,$contact['poco']);
}
}
return;
}
if (array_search(__file__,get_included_files())===0){
onepoll_run($argv,$argc);
killme();
}

View file

@ -5,7 +5,7 @@
if (! function_exists('uninstall_plugin')){
function uninstall_plugin($plugin){
logger("Addons: uninstalling " . $plugin);
q("DELETE FROM `addon` WHERE `name` = '%s' LIMIT 1",
q("DELETE FROM `addon` WHERE `name` = '%s' ",
dbesc($plugin)
);
@ -37,6 +37,16 @@ function install_plugin($plugin) {
intval($t),
$plugin_admin
);
// we can add the following with the previous SQL
// once most site tables have been updated.
// This way the system won't fall over dead during the update.
if(file_exists('addon/' . $plugin . '/.hidden')) {
q("update addon set hidden = 1 where name = '%s' limit 1",
dbesc($plugin)
);
}
return true;
}
else {

View file

@ -30,6 +30,17 @@ function poller_run($argv, $argc){
load_config('config');
load_config('system');
$maxsysload = intval(get_config('system','maxloadavg'));
if($maxsysload < 1)
$maxsysload = 50;
if(function_exists('sys_getloadavg')) {
$load = sys_getloadavg();
if(intval($load[0]) > $maxsysload) {
logger('system: load ' . $load . ' too high. Poller deferred to next scheduled run.');
return;
}
}
$lockpath = get_config('system','lockpath');
if ($lockpath != '') {
$pidfile = new pidfile($lockpath, 'poller.lck');
@ -39,6 +50,8 @@ function poller_run($argv, $argc){
}
}
$a->set_baseurl(get_config('system','url'));
load_hooks();
@ -113,6 +126,10 @@ function poller_run($argv, $argc){
$force = true;
}
$interval = intval(get_config('system','poll_interval'));
if(! $interval)
$interval = ((get_config('system','delivery_interval') === false) ? 3 : intval(get_config('system','delivery_interval')));
$sql_extra = (($manual_id) ? " AND `id` = $manual_id " : "");
reload_plugins();
@ -136,6 +153,7 @@ function poller_run($argv, $argc){
AND NOT `network` IN ( '%s', '%s' )
$sql_extra
AND `self` = 0 AND `contact`.`blocked` = 0 AND `contact`.`readonly` = 0
AND `contact`.`archive` = 0
AND `user`.`account_expired` = 0 $abandon_sql ORDER BY RAND()",
intval(CONTACT_IS_SHARING),
intval(CONTACT_IS_FRIEND),
@ -224,440 +242,12 @@ function poller_run($argv, $argc){
continue;
}
// Check to see if we are running out of memory - if so spawn a new process and kill this one
$avail_memory = return_bytes(ini_get('memory_limit'));
$memused = memory_get_peak_usage(true);
if(intval($avail_memory)) {
if(($memused / $avail_memory) > 0.95) {
if($generation + 1 > 10) {
logger('poller: maximum number of spawns exceeded. Terminating.');
killme();
}
logger('poller: memory exceeded. ' . $memused . ' bytes used. Spawning new poll.');
proc_run('php', 'include/poller.php', 'restart', (string) $generation + 1);
killme();
}
}
$importer_uid = $contact['uid'];
$r = q("SELECT `contact`.*, `user`.`page-flags` FROM `contact` LEFT JOIN `user` on `contact`.`uid` = `user`.`uid` WHERE `user`.`uid` = %d AND `contact`.`self` = 1 LIMIT 1",
intval($importer_uid)
);
if(! count($r))
continue;
$importer = $r[0];
logger("poller: poll: ({$contact['id']}) IMPORTER: {$importer['name']}, CONTACT: {$contact['name']}");
$last_update = (($contact['last-update'] === '0000-00-00 00:00:00')
? datetime_convert('UTC','UTC','now - 30 days', ATOM_TIME)
: datetime_convert('UTC','UTC',$contact['last-update'], ATOM_TIME)
);
if($contact['network'] === NETWORK_DFRN) {
$idtosend = $orig_id = (($contact['dfrn-id']) ? $contact['dfrn-id'] : $contact['issued-id']);
if(intval($contact['duplex']) && $contact['dfrn-id'])
$idtosend = '0:' . $orig_id;
if(intval($contact['duplex']) && $contact['issued-id'])
$idtosend = '1:' . $orig_id;
// they have permission to write to us. We already filtered this in the contact query.
$perm = 'rw';
$url = $contact['poll'] . '?dfrn_id=' . $idtosend
. '&dfrn_version=' . DFRN_PROTOCOL_VERSION
. '&type=data&last_update=' . $last_update
. '&perm=' . $perm ;
$handshake_xml = fetch_url($url);
logger('poller: handshake with url ' . $url . ' returns xml: ' . $handshake_xml, LOGGER_DATA);
if(! $handshake_xml) {
logger("poller: $url appears to be dead - marking for death ");
// dead connection - might be a transient event, or this might
// mean the software was uninstalled or the domain expired.
// Will keep trying for one month.
mark_for_death($contact);
// set the last-update so we don't keep polling
$r = q("UPDATE `contact` SET `last-update` = '%s' WHERE `id` = %d LIMIT 1",
dbesc(datetime_convert()),
intval($contact['id'])
);
continue;
}
if(! strstr($handshake_xml,'<?xml')) {
logger('poller: response from ' . $url . ' did not contain XML.');
$r = q("UPDATE `contact` SET `last-update` = '%s' WHERE `id` = %d LIMIT 1",
dbesc(datetime_convert()),
intval($contact['id'])
);
continue;
}
$res = parse_xml_string($handshake_xml);
if(intval($res->status) == 1) {
logger("poller: $url replied status 1 - marking for death ");
// we may not be friends anymore. Will keep trying for one month.
// set the last-update so we don't keep polling
$r = q("UPDATE `contact` SET `last-update` = '%s' WHERE `id` = %d LIMIT 1",
dbesc(datetime_convert()),
intval($contact['id'])
);
mark_for_death($contact);
}
else {
if($contact['term-date'] != '0000-00-00 00:00:00') {
logger("poller: $url back from the dead - removing mark for death");
unmark_for_death($contact);
}
}
if((intval($res->status) != 0) || (! strlen($res->challenge)) || (! strlen($res->dfrn_id)))
continue;
if(((float) $res->dfrn_version > 2.21) && ($contact['poco'] == '')) {
q("update contact set poco = '%s' where id = %d limit 1",
dbesc(str_replace('/profile/','/poco/', $contact['url'])),
intval($contact['id'])
);
}
$postvars = array();
$sent_dfrn_id = hex2bin((string) $res->dfrn_id);
$challenge = hex2bin((string) $res->challenge);
$final_dfrn_id = '';
if(($contact['duplex']) && strlen($contact['prvkey'])) {
openssl_private_decrypt($sent_dfrn_id,$final_dfrn_id,$contact['prvkey']);
openssl_private_decrypt($challenge,$postvars['challenge'],$contact['prvkey']);
}
else {
openssl_public_decrypt($sent_dfrn_id,$final_dfrn_id,$contact['pubkey']);
openssl_public_decrypt($challenge,$postvars['challenge'],$contact['pubkey']);
}
$final_dfrn_id = substr($final_dfrn_id, 0, strpos($final_dfrn_id, '.'));
if(strpos($final_dfrn_id,':') == 1)
$final_dfrn_id = substr($final_dfrn_id,2);
if($final_dfrn_id != $orig_id) {
logger('poller: ID did not decode: ' . $contact['id'] . ' orig: ' . $orig_id . ' final: ' . $final_dfrn_id);
// did not decode properly - cannot trust this site
continue;
}
$postvars['dfrn_id'] = $idtosend;
$postvars['dfrn_version'] = DFRN_PROTOCOL_VERSION;
$postvars['perm'] = 'rw';
$xml = post_url($contact['poll'],$postvars);
}
elseif(($contact['network'] === NETWORK_OSTATUS)
|| ($contact['network'] === NETWORK_DIASPORA)
|| ($contact['network'] === NETWORK_FEED) ) {
// Upgrading DB fields from an older Friendica version
// Will only do this once per notify-enabled OStatus contact
// or if relationship changes
$stat_writeable = ((($contact['notify']) && ($contact['rel'] == CONTACT_IS_FOLLOWER || $contact['rel'] == CONTACT_IS_FRIEND)) ? 1 : 0);
if($stat_writeable != $contact['writable']) {
q("UPDATE `contact` SET `writable` = %d WHERE `id` = %d LIMIT 1",
intval($stat_writeable),
intval($contact['id'])
);
}
// Are we allowed to import from this person?
if($contact['rel'] == CONTACT_IS_FOLLOWER || $contact['blocked'] || $contact['readonly'])
continue;
$xml = fetch_url($contact['poll']);
}
elseif($contact['network'] === NETWORK_MAIL || $contact['network'] === NETWORK_MAIL2) {
logger("Mail: Fetching");
$mail_disabled = ((function_exists('imap_open') && (! get_config('system','imap_disabled'))) ? 0 : 1);
if($mail_disabled)
continue;
logger("Mail: Enabled");
$mbox = null;
$x = q("SELECT `prvkey` FROM `user` WHERE `uid` = %d LIMIT 1",
intval($importer_uid)
);
$mailconf = q("SELECT * FROM `mailacct` WHERE `server` != '' AND `uid` = %d LIMIT 1",
intval($importer_uid)
);
if(count($x) && count($mailconf)) {
$mailbox = construct_mailbox_name($mailconf[0]);
$password = '';
openssl_private_decrypt(hex2bin($mailconf[0]['pass']),$password,$x[0]['prvkey']);
$mbox = email_connect($mailbox,$mailconf[0]['user'],$password);
unset($password);
logger("Mail: Connect");
if($mbox) {
q("UPDATE `mailacct` SET `last_check` = '%s' WHERE `id` = %d AND `uid` = %d LIMIT 1",
dbesc(datetime_convert()),
intval($mailconf[0]['id']),
intval($importer_uid)
);
}
}
if($mbox) {
logger("Mail: mbox");
$msgs = email_poll($mbox,$contact['addr']);
if(count($msgs)) {
logger("Mail: Parsing ".count($msgs)." mails.");
foreach($msgs as $msg_uid) {
logger("Mail: Parsing mail ".$msg_uid);
$datarray = array();
$meta = email_msg_meta($mbox,$msg_uid);
$headers = email_msg_headers($mbox,$msg_uid);
// look for a 'references' header and try and match with a parent item we have locally.
$raw_refs = ((x($headers,'references')) ? str_replace("\t",'',$headers['references']) : '');
$datarray['uri'] = msgid2iri(trim($meta->message_id,'<>'));
if($raw_refs) {
$refs_arr = explode(' ', $raw_refs);
if(count($refs_arr)) {
for($x = 0; $x < count($refs_arr); $x ++)
$refs_arr[$x] = "'" . msgid2iri(str_replace(array('<','>',' '),array('','',''),dbesc($refs_arr[$x]))) . "'";
}
$qstr = implode(',',$refs_arr);
$r = q("SELECT `uri` , `parent-uri` FROM `item` WHERE `uri` IN ( $qstr ) AND `uid` = %d LIMIT 1",
intval($importer_uid)
);
if(count($r))
$datarray['parent-uri'] = $r[0]['uri'];
}
if(! x($datarray,'parent-uri'))
$datarray['parent-uri'] = $datarray['uri'];
// Have we seen it before?
$r = q("SELECT * FROM `item` WHERE `uid` = %d AND `uri` = '%s' LIMIT 1",
intval($importer_uid),
dbesc($datarray['uri'])
);
if(count($r)) {
logger("Mail: Seen before ".$msg_uid);
if($meta->deleted && ! $r[0]['deleted']) {
q("UPDATE `item` SET `deleted` = 1, `changed` = '%s' WHERE `id` = %d LIMIT 1",
dbesc(datetime_convert()),
intval($r[0]['id'])
);
}
switch ($mailconf[0]['action']) {
case 0:
break;
case 1:
logger("Mail: Deleting ".$msg_uid);
imap_delete($mbox, $msg_uid, FT_UID);
break;
case 2:
logger("Mail: Mark as seen ".$msg_uid);
imap_setflag_full($mbox, $msg_uid, "\\Seen", ST_UID);
break;
case 3:
logger("Mail: Moving ".$msg_uid." to ".$mailconf[0]['movetofolder']);
imap_setflag_full($mbox, $msg_uid, "\\Seen", ST_UID);
if ($mailconf[0]['movetofolder'] != "")
imap_mail_move($mbox, $msg_uid, $mailconf[0]['movetofolder'], FT_UID);
break;
}
continue;
}
// Decoding the header
$subject = imap_mime_header_decode($meta->subject);
$datarray['title'] = "";
foreach($subject as $subpart)
if ($subpart->charset != "default")
$datarray['title'] .= iconv($subpart->charset, 'UTF-8//IGNORE', $subpart->text);
else
$datarray['title'] .= $subpart->text;
$datarray['title'] = notags(trim($datarray['title']));
//$datarray['title'] = notags(trim($meta->subject));
$datarray['created'] = datetime_convert('UTC','UTC',$meta->date);
// Is it reply?
$reply = ((substr(strtolower($datarray['title']), 0, 3) == "re:") or
(substr(strtolower($datarray['title']), 0, 3) == "re-") or
(raw_refs != ""));
$r = email_get_msg($mbox,$msg_uid, $reply);
if(! $r) {
logger("Mail: can't fetch msg ".$msg_uid);
continue;
}
$datarray['body'] = escape_tags($r['body']);
logger("Mail: Importing ".$msg_uid);
// some mailing lists have the original author as 'from' - add this sender info to msg body.
// todo: adding a gravatar for the original author would be cool
if(! stristr($meta->from,$contact['addr'])) {
$from = imap_mime_header_decode($meta->from);
$fromdecoded = "";
foreach($from as $frompart)
if ($frompart->charset != "default")
$fromdecoded .= iconv($frompart->charset, 'UTF-8//IGNORE', $frompart->text);
else
$fromdecoded .= $frompart->text;
$datarray['body'] = "[b]".t('From: ') . escape_tags($fromdecoded) . "[/b]\n\n" . $datarray['body'];
}
$datarray['uid'] = $importer_uid;
$datarray['contact-id'] = $contact['id'];
if($datarray['parent-uri'] === $datarray['uri'])
$datarray['private'] = 1;
if(($contact['network'] === NETWORK_MAIL) && (! get_pconfig($importer_uid,'system','allow_public_email_replies'))) {
$datarray['private'] = 1;
$datarray['allow_cid'] = '<' . $contact['id'] . '>';
}
$datarray['author-name'] = $contact['name'];
$datarray['author-link'] = 'mailbox';
$datarray['author-avatar'] = $contact['photo'];
$stored_item = item_store($datarray);
q("UPDATE `item` SET `last-child` = 0 WHERE `parent-uri` = '%s' AND `uid` = %d",
dbesc($datarray['parent-uri']),
intval($importer_uid)
);
q("UPDATE `item` SET `last-child` = 1 WHERE `id` = %d LIMIT 1",
intval($stored_item)
);
switch ($mailconf[0]['action']) {
case 0:
break;
case 1:
logger("Mail: Deleting ".$msg_uid);
imap_delete($mbox, $msg_uid, FT_UID);
break;
case 2:
logger("Mail: Mark as seen ".$msg_uid);
imap_setflag_full($mbox, $msg_uid, "\\Seen", ST_UID);
break;
case 3:
logger("Mail: Moving ".$msg_uid." to ".$mailconf[0]['movetofolder']);
imap_setflag_full($mbox, $msg_uid, "\\Seen", ST_UID);
if ($mailconf[0]['movetofolder'] != "")
imap_mail_move($mbox, $msg_uid, $mailconf[0]['movetofolder'], FT_UID);
break;
}
}
}
imap_close($mbox);
}
}
elseif($contact['network'] === NETWORK_FACEBOOK) {
// This is picked up by the Facebook plugin on a cron hook.
// Ignored here.
}
if($xml) {
logger('poller: received xml : ' . $xml, LOGGER_DATA);
if(! strstr($xml,'<?xml')) {
logger('poller: post_handshake: response from ' . $url . ' did not contain XML.');
$r = q("UPDATE `contact` SET `last-update` = '%s' WHERE `id` = %d LIMIT 1",
dbesc(datetime_convert()),
intval($contact['id'])
);
continue;
}
consume_feed($xml,$importer,$contact,$hub,1,1);
// do it twice. Ensures that children of parents which may be later in the stream aren't tossed
consume_feed($xml,$importer,$contact,$hub,1,2);
$hubmode = 'subscribe';
if($contact['network'] === NETWORK_DFRN || $contact['blocked'] || $contact['readonly'])
$hubmode = 'unsubscribe';
if((strlen($hub)) && ($hub_update) && ($contact['rel'] != CONTACT_IS_FOLLOWER)) {
logger('poller: hub ' . $hubmode . ' : ' . $hub . ' contact name : ' . $contact['name'] . ' local user : ' . $importer['name']);
$hubs = explode(',', $hub);
if(count($hubs)) {
foreach($hubs as $h) {
$h = trim($h);
if(! strlen($h))
continue;
subscribe_to_hub($h,$importer,$contact,$hubmode);
}
}
}
}
$updated = datetime_convert();
$r = q("UPDATE `contact` SET `last-update` = '%s', `success_update` = '%s' WHERE `id` = %d LIMIT 1",
dbesc($updated),
dbesc($updated),
intval($contact['id'])
);
// load current friends if possible.
if($contact['poco']) {
$r = q("SELECT count(*) as total from glink
where `cid` = %d and updated > UTC_TIMESTAMP() - INTERVAL 1 DAY",
intval($contact['id'])
);
}
if(count($r)) {
if(! $r[0]['total']) {
poco_load($contact['id'],$importer_uid,$contact['poco']);
}
}
// loop - next contact
proc_run('php','include/onepoll.php',$contact['id']);
if($interval)
@time_sleep_until(microtime(true) + (float) $interval);
}
}
return;
}

View file

@ -7,8 +7,10 @@ function gender_selector($current="",$suffix="") {
$o .= "<select name=\"gender$suffix\" id=\"gender-select$suffix\" size=\"1\" >";
foreach($select as $selection) {
$selected = (($selection == $current) ? ' selected="selected" ' : '');
$o .= "<option value=\"$selection\" $selected >$selection</option>";
if($selection !== 'NOTRANSLATION') {
$selected = (($selection == $current) ? ' selected="selected" ' : '');
$o .= "<option value=\"$selection\" $selected >$selection</option>";
}
}
$o .= '</select>';
return $o;
@ -20,8 +22,10 @@ function sexpref_selector($current="",$suffix="") {
$o .= "<select name=\"sexual$suffix\" id=\"sexual-select$suffix\" size=\"1\" >";
foreach($select as $selection) {
$selected = (($selection == $current) ? ' selected="selected" ' : '');
$o .= "<option value=\"$selection\" $selected >$selection</option>";
if($selection !== 'NOTRANSLATION') {
$selected = (($selection == $current) ? ' selected="selected" ' : '');
$o .= "<option value=\"$selection\" $selected >$selection</option>";
}
}
$o .= '</select>';
return $o;
@ -34,8 +38,10 @@ function marital_selector($current="",$suffix="") {
$o .= "<select name=\"marital\" id=\"marital-select\" size=\"1\" >";
foreach($select as $selection) {
$selected = (($selection == $current) ? ' selected="selected" ' : '');
$o .= "<option value=\"$selection\" $selected >$selection</option>";
if($selection !== 'NOTRANSLATION') {
$selected = (($selection == $current) ? ' selected="selected" ' : '');
$o .= "<option value=\"$selection\" $selected >$selection</option>";
}
}
$o .= '</select>';
return $o;

View file

@ -15,6 +15,17 @@ function remove_queue_item($id) {
);
}
function was_recently_delayed($cid) {
$r = q("SELECT `id` FROM `queue` WHERE `cid` = %d
and last > UTC_TIMESTAMP() - interval 15 minute limit 1",
intval($cid)
);
if(count($r))
return true;
return false;
}
function add_to_queue($cid,$network,$msg,$batch = false) {

View file

@ -20,7 +20,7 @@ require_once('include/datetime.php');
function poco_load($cid,$uid = 0,$url = null) {
function poco_load($cid,$uid = 0,$zcid = 0,$url = null) {
$a = get_app();
if($cid) {
@ -53,7 +53,6 @@ function poco_load($cid,$uid = 0,$url = null) {
if(($a->get_curl_code() > 299) || (! $s))
return;
$j = json_decode($s);
logger('poco_load: json: ' . print_r($j,true),LOGGER_DATA);
@ -81,7 +80,6 @@ function poco_load($cid,$uid = 0,$url = null) {
$connect_url = str_replace('acct:' , '', $url->value);
continue;
}
}
foreach($entry->photos as $photo) {
if($photo->type == 'profile') {
@ -101,11 +99,12 @@ function poco_load($cid,$uid = 0,$url = null) {
$gcid = $x[0]['id'];
if($x[0]['name'] != $name || $x[0]['photo'] != $profile_photo) {
q("update gcontact set `name` = '%s', `photo` = '%s', `connect` = '%s'
q("update gcontact set `name` = '%s', `photo` = '%s', `connect` = '%s', `url` = '%s'
where `nurl` = '%s' limit 1",
dbesc($name),
dbesc($profile_photo),
dbesc($connect_url),
dbesc($profile_url),
dbesc(normalise_link($profile_url))
);
}
@ -128,34 +127,38 @@ function poco_load($cid,$uid = 0,$url = null) {
if(! $gcid)
return;
$r = q("select * from glink where `cid` = %d and `uid` = %d and `gcid` = %d limit 1",
$r = q("select * from glink where `cid` = %d and `uid` = %d and `gcid` = %d and `zcid` = %d limit 1",
intval($cid),
intval($uid),
intval($gcid)
intval($gcid),
intval($zcid)
);
if(! count($r)) {
q("insert into glink ( `cid`,`uid`,`gcid`,`updated`) values (%d,%d,%d,'%s') ",
q("insert into glink ( `cid`,`uid`,`gcid`,`zcid`, `updated`) values (%d,%d,%d,%d, '%s') ",
intval($cid),
intval($uid),
intval($gcid),
intval($zcid),
dbesc(datetime_convert())
);
}
else {
q("update glink set updated = '%s' where `cid` = %d and `uid` = %d and `gcid` = %d limit 1",
q("update glink set updated = '%s' where `cid` = %d and `uid` = %d and `gcid` = %d and zcid = %d limit 1",
dbesc(datetime_convert()),
intval($cid),
intval($uid),
intval($gcid)
intval($gcid),
intval($zcid)
);
}
}
logger("poco_load: loaded $total entries",LOGGER_DEBUG);
q("delete from glink where `cid` = %d and `uid` = %d and `updated` < UTC_TIMESTAMP - INTERVAL 2 DAY",
q("delete from glink where `cid` = %d and `uid` = %d and `zcid` = %d and `updated` < UTC_TIMESTAMP - INTERVAL 2 DAY",
intval($cid),
intval($uid)
intval($uid),
intval($zcid)
);
}
@ -166,37 +169,85 @@ function count_common_friends($uid,$cid) {
$r = q("SELECT count(*) as `total`
FROM `glink` left join `gcontact` on `glink`.`gcid` = `gcontact`.`id`
where `glink`.`cid` = %d and `glink`.`uid` = %d
and `gcontact`.`nurl` in (select nurl from contact where uid = %d and self = 0 and id != %d ) ",
and `gcontact`.`nurl` in (select nurl from contact where uid = %d and self = 0 and blocked = 0 and hidden = 0 and id != %d ) ",
intval($cid),
intval($uid),
intval($uid),
intval($cid)
);
// logger("count_common_friends: $uid $cid {$r[0]['total']}");
if(count($r))
return $r[0]['total'];
return 0;
}
function common_friends($uid,$cid,$start = 0,$limit=9999,$shuffle = false) {
if($shuffle)
$sql_extra = " order by rand() ";
else
$sql_extra = " order by `gcontact`.`name` asc ";
$r = q("SELECT `gcontact`.*
FROM `glink` left join `gcontact` on `glink`.`gcid` = `gcontact`.`id`
where `glink`.`cid` = %d and `glink`.`uid` = %d
and `gcontact`.`nurl` in (select nurl from contact where uid = %d and self = 0 and blocked = 0 and hidden = 0 and id != %d )
$sql_extra limit %d, %d",
intval($cid),
intval($uid),
intval($uid),
intval($cid),
intval($start),
intval($limit)
);
return $r;
}
function count_common_friends_zcid($uid,$zcid) {
$r = q("SELECT count(*) as `total`
FROM `glink` left join `gcontact` on `glink`.`gcid` = `gcontact`.`id`
where `glink`.`zcid` = %d
and `gcontact`.`nurl` in (select nurl from contact where uid = %d and self = 0 and blocked = 0 and hidden = 0 ) ",
intval($zcid),
intval($uid)
);
if(count($r))
return $r[0]['total'];
return 0;
}
function common_friends_zcid($uid,$zcid,$start = 0, $limit = 9999,$shuffle) {
function common_friends($uid,$cid) {
if($shuffle)
$sql_extra = " order by rand() ";
else
$sql_extra = " order by `gcontact`.`name` asc ";
$r = q("SELECT `gcontact`.*
FROM `glink` left join `gcontact` on `glink`.`gcid` = `gcontact`.`id`
where `glink`.`cid` = %d and `glink`.`uid` = %d
and `gcontact`.`nurl` in (select nurl from contact where uid = %d and self = 0 and id != %d )
order by `gcontact`.`name` asc ",
intval($cid),
where `glink`.`zcid` = %d
and `gcontact`.`nurl` in (select nurl from contact where uid = %d and self = 0 and blocked = 0 and hidden = 0 )
$sql_extra limit %d, %d",
intval($zcid),
intval($uid),
intval($uid),
intval($cid)
intval($start),
intval($limit)
);
return $r;
}
function count_all_friends($uid,$cid) {
$r = q("SELECT count(*) as `total`
@ -254,7 +305,7 @@ function suggestion_query($uid, $start = 0, $limit = 80) {
$r2 = q("SELECT gcontact.* from gcontact
left join glink on glink.gcid = gcontact.id
where glink.uid = 0 and glink.cid = 0 and not gcontact.nurl in ( select nurl from contact where uid = %d )
where glink.uid = 0 and glink.cid = 0 and glink.zcid = 0 and not gcontact.nurl in ( select nurl from contact where uid = %d )
and not gcontact.name in ( select name from contact where uid = %d )
and not gcontact.id in ( select gcid from gcign where uid = %d )
order by rand() limit %d, %d ",
@ -276,7 +327,7 @@ function update_suggestions() {
$done = array();
poco_load(0,0,$a->get_baseurl() . '/poco');
poco_load(0,0,0,$a->get_baseurl() . '/poco');
$done[] = $a->get_baseurl() . '/poco';
@ -288,7 +339,7 @@ function update_suggestions() {
foreach($j->entries as $entry) {
$url = $entry->url . '/poco';
if(! in_array($url,$done))
poco_load(0,0,$entry->url . '/poco');
poco_load(0,0,0,$entry->url . '/poco');
}
}
}
@ -302,7 +353,7 @@ function update_suggestions() {
foreach($r as $rr) {
$base = substr($rr['poco'],0,strrpos($rr['poco'],'/'));
if(! in_array($base,$done))
poco_load(0,0,$base);
poco_load(0,0,0,$base);
}
}
}

View file

@ -558,7 +558,7 @@ function contact_block() {
if((! is_array($a->profile)) || ($a->profile['hide-friends']))
return $o;
$r = q("SELECT COUNT(*) AS `total` FROM `contact` WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 and `pending` = 0 AND `hidden` = 0",
$r = q("SELECT COUNT(*) AS `total` FROM `contact` WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 and `pending` = 0 AND `hidden` = 0 AND `archive` = 0",
intval($a->profile['uid'])
);
if(count($r)) {
@ -569,7 +569,7 @@ function contact_block() {
$micropro = Null;
} else {
$r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 and `pending` = 0 AND `hidden` = 0 ORDER BY RAND() LIMIT %d",
$r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 and `pending` = 0 AND `hidden` = 0 AND `archive` = 0 ORDER BY RAND() LIMIT %d",
intval($a->profile['uid']),
intval($shown)
);
@ -930,7 +930,8 @@ function prepare_body($item,$attach = false) {
foreach($matches as $mtch) {
if(strlen($x))
$x .= ',';
$x .= xmlify(file_tag_decode($mtch[1]));
$x .= xmlify(file_tag_decode($mtch[1]))
. ((local_user() == $item['uid']) ? ' <a href="' . $a->get_baseurl() . '/filerm/' . $item['id'] . '?f=&cat=' . xmlify(file_tag_decode($mtch[1])) . '" title="' . t('remove') . '" >' . t('[remove]') . '</a>' : '');
}
if(strlen($x))
$s .= '<div class="categorytags"><span>' . t('Categories:') . ' </span>' . $x . '</div>';
@ -1466,12 +1467,16 @@ function file_tag_save_file($uid,$item,$file) {
return true;
}
function file_tag_unsave_file($uid,$item,$file) {
function file_tag_unsave_file($uid,$item,$file,$cat = false) {
$result = false;
if(! intval($uid))
return false;
$pattern = '[' . file_tag_encode($file) . ']' ;
if($cat == true)
$pattern = '<' . file_tag_encode($file) . '>' ;
else
$pattern = '[' . file_tag_encode($file) . ']' ;
$r = q("select file from item where id = %d and uid = %d limit 1",
intval($item),
@ -1486,13 +1491,14 @@ function file_tag_unsave_file($uid,$item,$file) {
intval($uid)
);
$r = q("select file from item where uid = %d " . file_tag_file_query('item',$file),
$r = q("select file from item where uid = %d and deleted = 0 " . file_tag_file_query('item',$file,(($cat) ? 'category' : 'file')),
intval($uid)
);
if(! count($r)) {
$saved = get_pconfig($uid,'system','filetags');
set_pconfig($uid,'system','filetags',str_replace($pattern,'',$saved));
}
return true;
}
@ -1518,3 +1524,9 @@ function fix_mce_lf($s) {
$s = str_replace("\n\n","\n",$s);
return $s;
}
function protect_sprintf($s) {
return(str_replace('%','%%',$s));
}

View file

@ -92,13 +92,10 @@ if((x($_SESSION,'language')) && ($_SESSION['language'] !== $lang)) {
load_translation_table($lang);
}
if(x($_GET,'zrl')) {
if((x($_GET,'zrl')) && (! $install)) {
$_SESSION['my_url'] = $_GET['zrl'];
$a->query_string = preg_replace('/[\?&]zrl=(.*?)([\?&]|$)/is','',$a->query_string);
if(! $install) {
$arr = array('zrl' => $_SESSION['my_url'], 'url' => $a->cmd);
call_hooks('zrl_init',$arr);
}
zrl_init($a);
}
/**

View file

@ -73,7 +73,16 @@
setupFieldRichtext();
/* popup menus */
function close_last_popup_menu() {
if(last_popup_menu) {
last_popup_menu.hide();
last_popup_button.removeClass("selected");
last_popup_menu = null;
last_popup_button = null;
}
}
$('a[rel^=#]').click(function(e){
close_last_popup_menu();
menu = $( $(this).attr('rel') );
e.preventDefault();
e.stopPropagation();
@ -90,12 +99,7 @@
return false;
});
$('html').click(function() {
if(last_popup_menu) {
last_popup_menu.hide();
last_popup_button.removeClass("selected");
last_popup_menu = null;
last_popup_button = null;
}
close_last_popup_menu();
});
// fancyboxes

4
library/jquery_ac/README Normal file
View file

@ -0,0 +1,4 @@
This is jquery.autocomplete from
http://www.devbridge.com/projects/autocomplete/jquery/

19
library/jquery_ac/jquery-1.3.2.min.js vendored Normal file

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,390 @@
/**
* Ajax Autocomplete for jQuery, version 1.1.3
* (c) 2010 Tomas Kirda
*
* Ajax Autocomplete for jQuery is freely distributable under the terms of an MIT-style license.
* For details, see the web site: http://www.devbridge.com/projects/autocomplete/jquery/
*
* Last Review: 04/19/2010
*/
/*jslint onevar: true, evil: true, nomen: true, eqeqeq: true, bitwise: true, regexp: true, newcap: true, immed: true */
/*global window: true, document: true, clearInterval: true, setInterval: true, jQuery: true */
(function($) {
var reEscape = new RegExp('(\\' + ['/', '.', '*', '+', '?', '|', '(', ')', '[', ']', '{', '}', '\\'].join('|\\') + ')', 'g');
function fnFormatResult(value, data, currentValue) {
var pattern = '(' + currentValue.replace(reEscape, '\\$1') + ')';
return value.replace(new RegExp(pattern, 'gi'), '<strong>$1<\/strong>');
}
function Autocomplete(el, options) {
this.el = $(el);
this.el.attr('autocomplete', 'off');
this.suggestions = [];
this.data = [];
this.badQueries = [];
this.selectedIndex = -1;
this.currentValue = this.el.val();
this.intervalId = 0;
this.cachedResponse = [];
this.onChangeInterval = null;
this.ignoreValueChange = false;
this.serviceUrl = options.serviceUrl;
this.isLocal = false;
this.options = {
autoSubmit: false,
minChars: 1,
maxHeight: 300,
deferRequestBy: 0,
width: 0,
highlight: true,
params: {},
fnFormatResult: fnFormatResult,
delimiter: null,
zIndex: 9999
};
this.initialize();
this.setOptions(options);
}
$.fn.autocomplete = function(options) {
return new Autocomplete(this.get(0)||$('<input />'), options);
};
Autocomplete.prototype = {
killerFn: null,
initialize: function() {
var me, uid, autocompleteElId;
me = this;
uid = Math.floor(Math.random()*0x100000).toString(16);
autocompleteElId = 'Autocomplete_' + uid;
this.killerFn = function(e) {
if ($(e.target).parents('.autocomplete').size() === 0) {
me.killSuggestions();
me.disableKillerFn();
}
};
if (!this.options.width) { this.options.width = this.el.width(); }
this.mainContainerId = 'AutocompleteContainter_' + uid;
$('<div id="' + this.mainContainerId + '" style="position:absolute;z-index:9999;"><div class="autocomplete-w1"><div class="autocomplete" id="' + autocompleteElId + '" style="display:none; width:300px;"></div></div></div>').appendTo('body');
this.container = $('#' + autocompleteElId);
this.fixPosition();
if (window.opera) {
this.el.keypress(function(e) { me.onKeyPress(e); });
} else {
this.el.keydown(function(e) { me.onKeyPress(e); });
}
this.el.keyup(function(e) { me.onKeyUp(e); });
this.el.blur(function() { me.enableKillerFn(); });
this.el.focus(function() { me.fixPosition(); });
},
setOptions: function(options){
var o = this.options;
$.extend(o, options);
if(o.lookup){
this.isLocal = true;
if($.isArray(o.lookup)){ o.lookup = { suggestions:o.lookup, data:[] }; }
}
$('#'+this.mainContainerId).css({ zIndex:o.zIndex });
this.container.css({ maxHeight: o.maxHeight + 'px', width:o.width });
},
clearCache: function(){
this.cachedResponse = [];
this.badQueries = [];
},
disable: function(){
this.disabled = true;
},
enable: function(){
this.disabled = false;
},
fixPosition: function() {
var offset = this.el.offset();
$('#' + this.mainContainerId).css({ top: (offset.top + this.el.innerHeight()) + 'px', left: offset.left + 'px' });
},
enableKillerFn: function() {
var me = this;
$(document).bind('click', me.killerFn);
},
disableKillerFn: function() {
var me = this;
$(document).unbind('click', me.killerFn);
},
killSuggestions: function() {
var me = this;
this.stopKillSuggestions();
this.intervalId = window.setInterval(function() { me.hide(); me.stopKillSuggestions(); }, 300);
},
stopKillSuggestions: function() {
window.clearInterval(this.intervalId);
},
onKeyPress: function(e) {
if (this.disabled || !this.enabled) { return; }
// return will exit the function
// and event will not be prevented
switch (e.keyCode) {
case 27: //KEY_ESC:
this.el.val(this.currentValue);
this.hide();
break;
case 9: //KEY_TAB:
case 13: //KEY_RETURN:
if (this.selectedIndex === -1) {
this.hide();
return;
}
this.select(this.selectedIndex);
if(e.keyCode === 9){ return; }
break;
case 38: //KEY_UP:
this.moveUp();
break;
case 40: //KEY_DOWN:
this.moveDown();
break;
default:
return;
}
e.stopImmediatePropagation();
e.preventDefault();
},
onKeyUp: function(e) {
if(this.disabled){ return; }
switch (e.keyCode) {
case 38: //KEY_UP:
case 40: //KEY_DOWN:
return;
}
clearInterval(this.onChangeInterval);
if (this.currentValue !== this.el.val()) {
if (this.options.deferRequestBy > 0) {
// Defer lookup in case when value changes very quickly:
var me = this;
this.onChangeInterval = setInterval(function() { me.onValueChange(); }, this.options.deferRequestBy);
} else {
this.onValueChange();
}
}
},
onValueChange: function() {
clearInterval(this.onChangeInterval);
this.currentValue = this.el.val();
var q = this.getQuery(this.currentValue);
this.selectedIndex = -1;
if (this.ignoreValueChange) {
this.ignoreValueChange = false;
return;
}
if (q === '' || q.length < this.options.minChars) {
this.hide();
} else {
this.getSuggestions(q);
}
},
getQuery: function(val) {
var d, arr;
d = this.options.delimiter;
if (!d) { return $.trim(val); }
arr = val.split(d);
return $.trim(arr[arr.length - 1]);
},
getSuggestionsLocal: function(q) {
var ret, arr, len, val, i;
arr = this.options.lookup;
len = arr.suggestions.length;
ret = { suggestions:[], data:[] };
q = q.toLowerCase();
for(i=0; i< len; i++){
val = arr.suggestions[i];
if(val.toLowerCase().indexOf(q) === 0){
ret.suggestions.push(val);
ret.data.push(arr.data[i]);
}
}
return ret;
},
getSuggestions: function(q) {
var cr, me;
cr = this.isLocal ? this.getSuggestionsLocal(q) : this.cachedResponse[q];
if (cr && $.isArray(cr.suggestions)) {
this.suggestions = cr.suggestions;
this.data = cr.data;
this.suggest();
} else if (!this.isBadQuery(q)) {
me = this;
me.options.params.query = q;
$.get(this.serviceUrl, me.options.params, function(txt) { me.processResponse(txt); }, 'text');
}
},
isBadQuery: function(q) {
var i = this.badQueries.length;
while (i--) {
if (q.indexOf(this.badQueries[i]) === 0) { return true; }
}
return false;
},
hide: function() {
this.enabled = false;
this.selectedIndex = -1;
this.container.hide();
},
suggest: function() {
if (this.suggestions.length === 0) {
this.hide();
return;
}
var me, len, div, f, v, i, s, mOver, mClick;
me = this;
len = this.suggestions.length;
f = this.options.fnFormatResult;
v = this.getQuery(this.currentValue);
mOver = function(xi) { return function() { me.activate(xi); }; };
mClick = function(xi) { return function() { me.select(xi); }; };
this.container.hide().empty();
for (i = 0; i < len; i++) {
s = this.suggestions[i];
div = $((me.selectedIndex === i ? '<div class="selected"' : '<div') + ' title="' + s + '">' + f(s, this.data[i], v) + '</div>');
div.mouseover(mOver(i));
div.click(mClick(i));
this.container.append(div);
}
this.enabled = true;
this.container.show();
},
processResponse: function(text) {
var response;
try {
response = eval('(' + text + ')');
} catch (err) { return; }
if (!$.isArray(response.data)) { response.data = []; }
if(!this.options.noCache){
this.cachedResponse[response.query] = response;
if (response.suggestions.length === 0) { this.badQueries.push(response.query); }
}
if (response.query === this.getQuery(this.currentValue)) {
this.suggestions = response.suggestions;
this.data = response.data;
this.suggest();
}
},
activate: function(index) {
var divs, activeItem;
divs = this.container.children();
// Clear previous selection:
if (this.selectedIndex !== -1 && divs.length > this.selectedIndex) {
$(divs.get(this.selectedIndex)).removeClass();
}
this.selectedIndex = index;
if (this.selectedIndex !== -1 && divs.length > this.selectedIndex) {
activeItem = divs.get(this.selectedIndex);
$(activeItem).addClass('selected');
}
return activeItem;
},
deactivate: function(div, index) {
div.className = '';
if (this.selectedIndex === index) { this.selectedIndex = -1; }
},
select: function(i) {
var selectedValue, f;
selectedValue = this.suggestions[i];
if (selectedValue) {
this.el.val(selectedValue);
if (this.options.autoSubmit) {
f = this.el.parents('form');
if (f.length > 0) { f.get(0).submit(); }
}
this.ignoreValueChange = true;
this.hide();
this.onSelect(i);
}
},
moveUp: function() {
if (this.selectedIndex === -1) { return; }
if (this.selectedIndex === 0) {
this.container.children().get(0).className = '';
this.selectedIndex = -1;
this.el.val(this.currentValue);
return;
}
this.adjustScroll(this.selectedIndex - 1);
},
moveDown: function() {
if (this.selectedIndex === (this.suggestions.length - 1)) { return; }
this.adjustScroll(this.selectedIndex + 1);
},
adjustScroll: function(i) {
var activeItem, offsetTop, upperBound, lowerBound;
activeItem = this.activate(i);
offsetTop = activeItem.offsetTop;
upperBound = this.container.scrollTop();
lowerBound = upperBound + this.options.maxHeight - 25;
if (offsetTop < upperBound) {
this.container.scrollTop(offsetTop);
} else if (offsetTop > lowerBound) {
this.container.scrollTop(offsetTop - this.options.maxHeight + 25);
}
this.el.val(this.getValue(this.suggestions[i]));
},
onSelect: function(i) {
var me, fn, s, d;
me = this;
fn = me.options.onSelect;
s = me.suggestions[i];
d = me.data[i];
me.el.val(me.getValue(s));
if ($.isFunction(fn)) { fn(s, d, me.el); }
},
getValue: function(value){
var del, currVal, arr, me;
me = this;
del = me.options.delimiter;
if (!del) { return value; }
currVal = me.currentValue;
arr = currVal.split(del);
if (arr.length === 1) { return value; }
return currVal.substr(0, currVal.length - arr[arr.length - 1].length) + value;
}
};
}(jQuery));

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

View file

@ -0,0 +1,6 @@

.autocomplete-w1 { background:url(img/shadow.png) no-repeat bottom right; position:absolute; top:0px; left:0px; margin:8px 0 0 6px; /* IE6 fix: */ _background:none; _margin:0; }
.autocomplete { border:1px solid #999; background:#FFF; cursor:default; text-align:left; max-height:350px; overflow:auto; margin:-6px 6px 6px -6px; /* IE6 specific: */ _height:350px; _margin:0; _overflow-x:hidden; }
.autocomplete .selected { background:#F0F0F0; }
.autocomplete div { padding:2px 5px; white-space:nowrap; }
.autocomplete strong { font-weight:normal; color:#3399FF; }

View file

@ -13,6 +13,14 @@ function acl_init(&$a){
$type = (x($_REQUEST,'type')?$_REQUEST['type']:"");
// For use with jquery.autocomplete for private mail completion
if(x($_REQUEST,'query') && strlen($_REQUEST['query'])) {
$type = 'm';
$search = $_REQUEST['query'];
}
if ($search!=""){
$sql_extra = "AND `name` LIKE '%%".dbesc($search)."%%'";
$sql_extra2 = "AND (`attag` LIKE '%%".dbesc($search)."%%' OR `name` LIKE '%%".dbesc($search)."%%' OR `nick` LIKE '%%".dbesc($search)."%%')";
@ -33,11 +41,27 @@ function acl_init(&$a){
if ($type=='' || $type=='c'){
$r = q("SELECT COUNT(`id`) AS c FROM `contact`
WHERE `uid` = %d AND `self` = 0
AND `blocked` = 0 AND `pending` = 0
AND `blocked` = 0 AND `pending` = 0 AND `archive` = 0
AND `notify` != '' $sql_extra2" ,
intval(local_user())
);
$contact_count = (int)$r[0]['c'];
}
elseif ($type == 'm') {
// autocomplete for Private Messages
$r = q("SELECT COUNT(`id`) AS c FROM `contact`
WHERE `uid` = %d AND `self` = 0
AND `blocked` = 0 AND `pending` = 0 AND `archive` = 0
AND `network` IN ('%s','%s','%s') $sql_extra2" ,
intval(local_user()),
dbesc(NETWORK_DFRN),
dbesc(NETWORK_ZOT),
dbesc(NETWORK_DIASPORA)
);
$contact_count = (int)$r[0]['c'];
} else {
$contact_count = 0;
}
@ -78,11 +102,45 @@ function acl_init(&$a){
if ($type=='' || $type=='c'){
$r = q("SELECT `id`, `name`, `nick`, `micro`, `network`, `url`, `attag` FROM `contact`
WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 AND `pending` = 0 AND `notify` != ''
WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 AND `pending` = 0 AND `archive` = 0 AND `notify` != ''
$sql_extra2
ORDER BY `name` ASC ",
intval(local_user())
);
}
elseif($type == 'm') {
$r = q("SELECT `id`, `name`, `nick`, `micro`, `network`, `url`, `attag` FROM `contact`
WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 AND `pending` = 0 AND `archive` = 0
AND `network` IN ('%s','%s','%s')
$sql_extra2
ORDER BY `name` ASC ",
intval(local_user()),
dbesc(NETWORK_DFRN),
dbesc(NETWORK_ZOT),
dbesc(NETWORK_DIASPORA)
);
}
else
$r = array();
if($type == 'm') {
$x = array();
$x['query'] = $search;
$x['suggestions'] = array();
$x['data'] = array();
if(count($r)) {
foreach($r as $g) {
$x['suggestions'][] = sprintf( t('%s [%s]'),$g['name'],$g['url']);
// '<img src="' . $g['micro'] . ' height="16" width="16" alt="' . t('Image/photo') . '" />' .
$x['data'][] = intval($g['id']);
}
}
echo json_encode($x);
killme();
}
if(count($r)) {
foreach($r as $g){
$contacts[] = array(
"type" => "c",
@ -93,11 +151,9 @@ function acl_init(&$a){
"link" => $g['url'],
"nick" => ($g['attag']) ? $g['attag'] : $g['nick'],
);
}
}
}
$items = array_merge($groups, $contacts);
$o = array(

View file

@ -61,6 +61,9 @@ function admin_post(&$a){
case 'logs':
admin_page_logs_post($a);
break;
case 'dbsync':
admin_page_dbsync_post($a);
break;
case 'update':
admin_page_remoteupdate_post($a);
break;
@ -94,7 +97,8 @@ function admin_content(&$a) {
'users' => Array($a->get_baseurl(true)."/admin/users/", t("Users") , "users"),
'plugins'=> Array($a->get_baseurl(true)."/admin/plugins/", t("Plugins") , "plugins"),
'themes' => Array($a->get_baseurl(true)."/admin/themes/", t("Themes") , "themes"),
'update' => Array($a->get_baseurl(true)."/admin/update/", t("Update") , "update")
'dbsync' => Array($a->get_baseurl(true)."/admin/dbsync/", t('DB updates'), "dbsync"),
'update' => Array($a->get_baseurl(true)."/admin/update/", t("Software Update") , "update")
);
/* get plugins admin page */
@ -142,6 +146,9 @@ function admin_content(&$a) {
case 'logs':
$o = admin_page_logs($a);
break;
case 'dbsync':
$o = admin_page_dbsync($a);
break;
case 'update':
$o = admin_page_remoteupdate($a);
break;
@ -235,6 +242,9 @@ function admin_page_site_post(&$a){
$proxyuser = ((x($_POST,'proxyuser')) ? notags(trim($_POST['proxyuser'])) : '');
$proxy = ((x($_POST,'proxy')) ? notags(trim($_POST['proxy'])) : '');
$timeout = ((x($_POST,'timeout')) ? intval(trim($_POST['timeout'])) : 60);
$delivery_interval = ((x($_POST,'delivery_interval'))? intval(trim($_POST['delivery_interval'])) : 0);
$poll_interval = ((x($_POST,'poll_interval'))? intval(trim($_POST['poll_interval'])) : 0);
$maxloadavg = ((x($_POST,'maxloadavg')) ? intval(trim($_POST['maxloadavg'])) : 50);
$dfrn_only = ((x($_POST,'dfrn_only')) ? True : False);
$ostatus_disabled = !((x($_POST,'ostatus_disabled')) ? True : False);
$diaspora_enabled = ((x($_POST,'diaspora_enabled')) ? True : False);
@ -281,7 +291,9 @@ function admin_page_site_post(&$a){
}
}
set_config('system','ssl_policy',$ssl_policy);
set_config('system','delivery_interval',$delivery_interval);
set_config('system','poll_interval',$poll_interval);
set_config('system','maxloadavg',$maxloadavg);
set_config('config','sitename',$sitename);
if ($banner==""){
// don't know why, but del_config doesn't work...
@ -425,7 +437,9 @@ function admin_page_site(&$a) {
'$proxyuser' => array('proxyuser', t("Proxy user"), get_config('system','proxyuser'), ""),
'$proxy' => array('proxy', t("Proxy URL"), get_config('system','proxy'), ""),
'$timeout' => array('timeout', t("Network timeout"), (x(get_config('system','curl_timeout'))?get_config('system','curl_timeout'):60), t("Value is in seconds. Set to 0 for unlimited (not recommended).")),
'$delivery_interval' => array('delivery_interval', t("Delivery interval"), (x(get_config('system','delivery_interval'))?get_config('system','delivery_interval'):2), t("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.")),
'$poll_interval' => array('poll_interval', t("Poll interval"), (x(get_config('system','poll_interval'))?get_config('system','poll_interval'):2), t("Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval.")),
'$maxloadavg' => array('maxloadavg', t("Maximum Load Average"), ((intval(get_config('system','maxloadavg')) > 0)?get_config('system','maxloadavg'):50), t("Maximum system load before delivery and poll processes are deferred - default 50.")),
'$form_security_token' => get_form_security_token("admin_site"),
));
@ -433,6 +447,62 @@ function admin_page_site(&$a) {
}
function admin_page_dbsync(&$a) {
$o = '';
if($a->argc > 3 && intval($a->argv[3]) && $a->argv[2] === 'mark') {
set_config('database', 'update_' . intval($a->argv[3]), 'success');
info( t('Update has been marked successful') . EOL);
goaway($a->get_baseurl(true) . '/admin/dbsync');
}
if($a->argc > 2 && intval($a->argv[2])) {
require_once('update.php');
$func = 'update_' . intval($a->argv[2]);
if(function_exists($func)) {
$retval = $func();
if($retval === UPDATE_FAILED) {
$o .= sprintf( t('Executing %s failed. Check system logs.'), $func);
}
elseif($retval === UPDATE_SUCCESS) {
$o .= sprintf( t('Update %s was successfully applied.', $func));
set_config('database',$func, 'success');
}
else
$o .= sprintf( t('Update %s did not return a status. Unknown if it succeeded.'), $func);
}
else
$o .= sprintf( t('Update function %s could not be found.'), $func);
return $o;
}
$failed = array();
$r = q("select * from config where `cat` = 'database' ");
if(count($r)) {
foreach($r as $rr) {
$upd = intval(substr($rr['k'],7));
if($upd < 1139 || $rr['v'] === 'success')
continue;
$failed[] = $upd;
}
}
if(! count($failed))
return '<h3>' . t('No failed updates.') . '</h3>';
$o = replace_macros(get_markup_template('failed_updates.tpl'),array(
'$base' => $a->get_baseurl(true),
'$banner' => t('Failed Updates'),
'$desc' => t('This does not include updates prior to 1139, which did not return a status.'),
'$mark' => t('Mark success (if update was manually applied)'),
'$apply' => t('Attempt to execute this update step automatically'),
'$failed' => $failed
));
return $o;
}
/**
* Users admin page
*
@ -977,7 +1047,6 @@ readable.");
$size = 5000000;
$seek = fseek($fp,0-$size,SEEK_END);
if($seek === 0) {
fgets($fp); // throw away the first partial line
$data = escape_tags(fread($fp,$size));
while(! feof($fp))
$data .= escape_tags(fread($fp,4096));

View file

@ -5,25 +5,33 @@ require_once('include/socgraph.php');
function common_content(&$a) {
$o = '';
if(! local_user()) {
notice( t('Permission denied.') . EOL);
$cmd = $a->argv[1];
$uid = intval($a->argv[2]);
$cid = intval($a->argv[3]);
$zcid = 0;
if($cmd !== 'loc' && $cmd != 'rem')
return;
if(! $uid)
return;
if($cmd === 'loc' && $cid) {
$c = q("select name, url, photo from contact where id = %d and uid = %d limit 1",
intval($cid),
intval($uid)
);
}
if($a->argc > 1)
$cid = intval($a->argv[1]);
if(! $cid)
return;
$c = q("select name, url, photo from contact where id = %d and uid = %d limit 1",
intval($cid),
intval(local_user())
);
else {
$c = q("select name, url, photo from contact where self = 1 and uid = %d limit 1",
intval($uid)
);
}
$a->page['aside'] .= '<div class="vcard">'
. '<div class="fn label">' . $c[0]['name'] . '</div>'
. '<div id="profile-photo-wrapper">'
. '<a href="/contacts/' . $cid . '"><img class="photo" width="175" height="175"
. '<img class="photo" width="175" height="175"
src="' . $c[0]['photo'] . '" alt="' . $c[0]['name'] . '" /></div>'
. '</div>';
@ -33,13 +41,52 @@ function common_content(&$a) {
$o .= '<h2>' . t('Common Friends') . '</h2>';
// $o .= '<h3>' . sprintf( t('You and %s'),$c[0]['name']) . '</h3>';
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())),
intval($profile_uid)
);
if(count($r))
$cid = $r[0]['id'];
else {
$r = q("select id from gcontact where nurl = '%s' limit 1",
dbesc(normalise_link(get_my_url()))
);
if(count($r))
$zcid = $r[0]['id'];
}
}
}
$r = common_friends(local_user(),$cid);
if($cid == 0 && $zcid == 0)
return;
if($cid)
$t = count_common_friends($uid,$cid);
else
$t = count_common_friends_zcid($uid,$zcid);
$a->set_pager_total($t);
if(! $t) {
notice( t('No contacts in common.') . EOL);
return $o;
}
if($cid)
$r = common_friends($uid,$cid);
else
$r = common_friends_zcid($uid,$zcid);
if(! count($r)) {
$o .= t('No friends in common.');
return $o;
}

View file

@ -144,7 +144,7 @@ function contacts_content(&$a) {
goaway($a->get_baseurl(true) . '/contacts');
return; // NOTREACHED
}
if($cmd === 'update') {
// pull feed and consume it, which should subscribe to the hub.
@ -182,40 +182,27 @@ function contacts_content(&$a) {
return; // NOTREACHED
}
if($cmd === 'archive') {
$archived = (($orig_record[0]['archive']) ? 0 : 1);
$r = q("UPDATE `contact` SET `archive` = %d WHERE `id` = %d AND `uid` = %d LIMIT 1",
intval($archived),
intval($contact_id),
intval(local_user())
);
if($r) {
//notice( t('Contact has been ') . (($archived) ? t('archived') : t('unarchived')) . EOL );
info( (($archived) ? t('Contact has been archived') : t('Contact has been unarchived')) . EOL );
}
goaway($a->get_baseurl(true) . '/contacts/' . $contact_id);
return; // NOTREACHED
}
if($cmd === 'drop') {
// create an unfollow slap
require_once('include/Contact.php');
if($orig_record[0]['network'] === NETWORK_OSTATUS) {
$tpl = get_markup_template('follow_slap.tpl');
$slap = replace_macros($tpl, array(
'$name' => $a->user['username'],
'$profile_page' => $a->get_baseurl() . '/profile/' . $a->user['nickname'],
'$photo' => $a->contact['photo'],
'$thumb' => $a->contact['thumb'],
'$published' => datetime_convert('UTC','UTC', 'now', ATOM_TIME),
'$item_id' => 'urn:X-dfrn:' . $a->get_hostname() . ':unfollow:' . random_string(),
'$title' => '',
'$type' => 'text',
'$content' => t('stopped following'),
'$nick' => $a->user['nickname'],
'$verb' => 'http://ostatus.org/schema/1.0/unfollow', // ACTIVITY_UNFOLLOW,
'$ostat_follow' => '' // '<as:verb>http://ostatus.org/schema/1.0/unfollow</as:verb>' . "\r\n"
));
if((x($orig_record[0],'notify')) && (strlen($orig_record[0]['notify']))) {
require_once('include/salmon.php');
slapper($a->user,$orig_record[0]['notify'],$slap);
}
}
elseif($orig_record[0]['network'] === NETWORK_DIASPORA) {
require_once('include/diaspora.php');
diaspora_unshare($a->user,$orig_record[0]);
}
elseif($orig_record[0]['network'] === NETWORK_DFRN) {
require_once('include/items.php');
dfrn_deliver($a->user,$orig_record[0],'placeholder', 1);
}
terminate_friendship($a->user,$a->contact,$orig_record[0]);
contact_remove($orig_record[0]['id']);
info( t('Contact has been removed.') . EOL );
@ -303,16 +290,26 @@ function contacts_content(&$a) {
'label' => (($contact['blocked']) ? t('Unblock') : t('Block') ),
'url' => $a->get_baseurl(true) . '/contacts/' . $contact_id . '/block',
'sel' => '',
'title' => t('Toggle Blocked status'),
),
array(
'label' => (($contact['readonly']) ? t('Unignore') : t('Ignore') ),
'url' => $a->get_baseurl(true) . '/contacts/' . $contact_id . '/ignore',
'sel' => '',
'title' => t('Toggle Ignored status'),
),
array(
'label' => (($contact['archive']) ? t('Unarchive') : t('Archive') ),
'url' => $a->get_baseurl(true) . '/contacts/' . $contact_id . '/archive',
'sel' => '',
'title' => t('Toggle Archive status'),
),
array(
'label' => t('Repair'),
'url' => $a->get_baseurl(true) . '/crepair/' . $contact_id,
'sel' => '',
'title' => t('Advanced Contact Settings'),
)
);
$tab_tpl = get_markup_template('common_tabs.tpl');
@ -328,7 +325,7 @@ function contacts_content(&$a) {
'$lbl_info1' => t('Contact Information / Notes'),
'$infedit' => t('Edit contact notes'),
'$common_text' => $common_text,
'$common_link' => $a->get_baseurl(true) . '/common/' . $contact['id'],
'$common_link' => $a->get_baseurl(true) . '/common/loc/' . local_user() . '/' . $contact['id'],
'$all_friends' => $all_friends,
'$relation_text' => $relation_text,
'$visit' => sprintf( t('Visit %s\'s profile [%s]'),$contact['name'],$contact['url']),
@ -353,6 +350,7 @@ function contacts_content(&$a) {
'$info' => $contact['info'],
'$blocked' => (($contact['blocked']) ? t('Currently blocked') : ''),
'$ignored' => (($contact['readonly']) ? t('Currently ignored') : ''),
'$archived' => (($contact['archive']) ? t('Currently archived') : ''),
'$hidden' => array('hidden', t('Hide this contact from others'), ($contact['hidden'] == 1), t('Replies/likes to your public posts <strong>may</strong> still be visible')),
'$photo' => $contact['photo'],
'$name' => $contact['name'],
@ -394,6 +392,10 @@ function contacts_content(&$a) {
$sql_extra = " AND `readonly` = 1 ";
$ignored = true;
}
elseif(($a->argc == 2) && ($a->argv[1] === 'archived')) {
$sql_extra = " AND `archive` = 1 ";
$archived = true;
}
else
$sql_extra = " AND `blocked` = 0 ";
@ -405,34 +407,47 @@ function contacts_content(&$a) {
'label' => t('Suggestions'),
'url' => $a->get_baseurl(true) . '/suggest',
'sel' => '',
'title' => t('Suggest potential friends'),
),
array(
'label' => t('All Contacts'),
'url' => $a->get_baseurl(true) . '/contacts/all',
'sel' => ($all) ? 'active' : '',
'title' => t('Show all contacts'),
),
array(
'label' => t('Unblocked Contacts'),
'label' => t('Unblocked'),
'url' => $a->get_baseurl(true) . '/contacts',
'sel' => ((! $all) && (! $blocked) && (! $hidden) && (! $search) && (! $nets) && (! $ignored)) ? 'active' : '',
'sel' => ((! $all) && (! $blocked) && (! $hidden) && (! $search) && (! $nets) && (! $ignored) && (! $archived)) ? 'active' : '',
'title' => t('Only show unblocked contacts'),
),
array(
'label' => t('Blocked Contacts'),
'label' => t('Blocked'),
'url' => $a->get_baseurl(true) . '/contacts/blocked',
'sel' => ($blocked) ? 'active' : '',
'title' => t('Only show blocked contacts'),
),
array(
'label' => t('Ignored Contacts'),
'label' => t('Ignored'),
'url' => $a->get_baseurl(true) . '/contacts/ignored',
'sel' => ($ignored) ? 'active' : '',
'title' => t('Only show ignored contacts'),
),
array(
'label' => t('Hidden Contacts'),
'label' => t('Archived'),
'url' => $a->get_baseurl(true) . '/contacts/archived',
'sel' => ($archived) ? 'active' : '',
'title' => t('Only show archived contacts'),
),
array(
'label' => t('Hidden'),
'url' => $a->get_baseurl(true) . '/contacts/hidden',
'sel' => ($hidden) ? 'active' : '',
'title' => t('Only show hidden contacts'),
),
);

View file

@ -207,7 +207,7 @@ function dfrn_confirm_post(&$a,$handsfree = null) {
if($duplex == 1)
$params['duplex'] = 1;
if($user['page-flags'] == PAGE_COMMUNITY)
if($user[0]['page-flags'] == PAGE_COMMUNITY)
$params['page'] = 1;
logger('dfrn_confirm: Confirm: posting data to ' . $dfrn_confirm . ': ' . print_r($params,true), LOGGER_DATA);
@ -434,7 +434,8 @@ function dfrn_confirm_post(&$a,$handsfree = null) {
else
$contact = null;
if(isset($new_relation) && $new_relation == CONTACT_IS_FRIEND) {
if((isset($new_relation) && $new_relation == CONTACT_IS_FRIEND)) {
if(($contact) && ($contact['network'] === NETWORK_DIASPORA)) {
require_once('include/diaspora.php');
@ -447,7 +448,8 @@ function dfrn_confirm_post(&$a,$handsfree = null) {
$r = q("SELECT `hide-friends` FROM `profile` WHERE `uid` = %d AND `is-default` = 1 LIMIT 1",
intval($uid)
);
if((count($r)) && ($activity) && (! $hidden)) {
if((count($r)) && ($r[0]['hide-friends'] == 0) && ($activity) && (! $hidden)) {
require_once('include/items.php');
@ -468,12 +470,15 @@ function dfrn_confirm_post(&$a,$handsfree = null) {
$arr['author-name'] = $arr['owner-name'] = $self[0]['name'];
$arr['author-link'] = $arr['owner-link'] = $self[0]['url'];
$arr['author-avatar'] = $arr['owner-avatar'] = $self[0]['thumb'];
$arr['verb'] = ACTIVITY_FRIEND;
$arr['object-type'] = ACTIVITY_OBJ_PERSON;
$A = '[url=' . $self[0]['url'] . ']' . $self[0]['name'] . '[/url]';
$APhoto = '[url=' . $self[0]['url'] . ']' . '[img]' . $self[0]['thumb'] . '[/img][/url]';
$B = '[url=' . $contact['url'] . ']' . $contact['name'] . '[/url]';
$BPhoto = '[url=' . $contact['url'] . ']' . '[img]' . $contact['thumb'] . '[/img][/url]';
$arr['verb'] = ACTIVITY_FRIEND;
$arr['object-type'] = ACTIVITY_OBJ_PERSON;
$arr['body'] = sprintf( t('%1$s is now friends with %2$s'), $A, $B)."\n\n\n".$BPhoto;
$arr['object'] = '<object><type>' . ACTIVITY_OBJ_PERSON . '</type><title>' . $contact['name'] . '</title>'
@ -481,6 +486,7 @@ function dfrn_confirm_post(&$a,$handsfree = null) {
$arr['object'] .= '<link>' . xmlify('<link rel="alternate" type="text/html" href="' . $contact['url'] . '" />' . "\n");
$arr['object'] .= xmlify('<link rel="photo" type="image/jpeg" href="' . $contact['thumb'] . '" />' . "\n");
$arr['object'] .= '</link></object>' . "\n";
$arr['last-child'] = 1;
$arr['allow_cid'] = $user[0]['allow_cid'];
@ -710,6 +716,10 @@ function dfrn_confirm_post(&$a,$handsfree = null) {
WHERE `contact`.`id` = %d LIMIT 1",
intval($dfrn_record)
);
if(count($r))
$combined = $r[0];
if((count($r)) && ($r[0]['notify-flags'] & NOTIFY_CONFIRM)) {
push_lang($r[0]['language']);
@ -738,6 +748,65 @@ function dfrn_confirm_post(&$a,$handsfree = null) {
}
pop_lang();
}
// Send a new friend post if we are allowed to...
if($page && intval(get_pconfig($local_uid,'system','post_joingroup'))) {
$r = q("SELECT `hide-friends` FROM `profile` WHERE `uid` = %d AND `is-default` = 1 LIMIT 1",
intval($local_uid)
);
if((count($r)) && ($r[0]['hide-friends'] == 0)) {
require_once('include/items.php');
$self = q("SELECT * FROM `contact` WHERE `self` = 1 AND `uid` = %d LIMIT 1",
intval($local_uid)
);
if(count($self)) {
$arr = array();
$arr['uri'] = $arr['parent-uri'] = item_new_uri($a->get_hostname(), $local_uid);
$arr['uid'] = $local_uid;
$arr['contact-id'] = $self[0]['id'];
$arr['wall'] = 1;
$arr['type'] = 'wall';
$arr['gravity'] = 0;
$arr['origin'] = 1;
$arr['author-name'] = $arr['owner-name'] = $self[0]['name'];
$arr['author-link'] = $arr['owner-link'] = $self[0]['url'];
$arr['author-avatar'] = $arr['owner-avatar'] = $self[0]['thumb'];
$A = '[url=' . $self[0]['url'] . ']' . $self[0]['name'] . '[/url]';
$APhoto = '[url=' . $self[0]['url'] . ']' . '[img]' . $self[0]['thumb'] . '[/img][/url]';
$B = '[url=' . $combined['url'] . ']' . $combined['name'] . '[/url]';
$BPhoto = '[url=' . $combined['url'] . ']' . '[img]' . $combined['thumb'] . '[/img][/url]';
$arr['verb'] = ACTIVITY_JOIN;
$arr['object-type'] = ACTIVITY_OBJ_GROUP;
$arr['body'] = sprintf( t('%1$s has joined %2$s'), $A, $B)."\n\n\n" .$BPhoto;
$arr['object'] = '<object><type>' . ACTIVITY_OBJ_GROUP . '</type><title>' . $combined['name'] . '</title>'
. '<id>' . $combined['url'] . '/' . $combined['name'] . '</id>';
$arr['object'] .= '<link>' . xmlify('<link rel="alternate" type="text/html" href="' . $combined['url'] . '" />' . "\n");
$arr['object'] .= xmlify('<link rel="photo" type="image/jpeg" href="' . $combined['thumb'] . '" />' . "\n");
$arr['object'] .= '</link></object>' . "\n";
$arr['last-child'] = 1;
$arr['allow_cid'] = $user[0]['allow_cid'];
$arr['allow_gid'] = $user[0]['allow_gid'];
$arr['deny_cid'] = $user[0]['deny_cid'];
$arr['deny_gid'] = $user[0]['deny_gid'];
$i = item_store($arr);
if($i)
proc_run('php',"include/notifier.php","activity","$i");
}
}
}
xml_status(0); // Success
return; // NOTREACHED

View file

@ -314,7 +314,7 @@ function dfrn_request_post(&$a) {
if($email_follow) {
if(! strpos($url,'@')) {
if(! validate_email($url)) {
notice( t('Invalid email address.') . EOL);
return;
}
@ -346,11 +346,71 @@ function dfrn_request_post(&$a) {
}
}
$r = q("insert into contact ( uid, created, addr, name, nick, url, nurl, poll, notify, blocked, pending, network, rel )
values( %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, %d, '%s', %d ) ",
intval($uid),
dbesc(datetime_convert()),
dbesc($addr),
dbesc($name),
dbesc($nick),
dbesc($url),
dbesc($nurl),
dbesc($poll),
dbesc($notify),
intval($blocked),
intval($pending),
dbesc($network),
intval($rel)
);
$r = q("select id from contact where poll = '%s' and uid = %d limit 1",
dbesc($poll),
intval($uid)
);
if(count($r)) {
$contact_id = $r[0]['id'];
$photo = avatar_img($addr);
$r = q("UPDATE `contact` SET
`photo` = '%s',
`thumb` = '%s',
`micro` = '%s',
`name-date` = '%s',
`uri-date` = '%s',
`avatar-date` = '%s',
`hidden` = 0,
WHERE `id` = %d LIMIT 1
",
dbesc($photos[0]),
dbesc($photos[1]),
dbesc($photos[2]),
dbesc(datetime_convert()),
dbesc(datetime_convert()),
dbesc(datetime_convert()),
intval($contact_id)
);
}
// contact is created. Now create an introduction
$hash = random_string();
$r = q("insert into intro ( uid, `contact-id`, knowyou, note, hash, datetime, blocked )
values( %d , %d, %d, '%s', '%s', '%s', %d ) ",
intval($uid),
intval($contact_id),
((x($_POST,'knowyou') && ($_POST['knowyou'] == 1)) ? 1 : 0),
dbesc(notags(trim($_POST['dfrn-request-message']))),
dbesc($hash),
dbesc(datetime_convert()),
1
);
// Next send an email verify form to the requestor.
}
else {
// Canonicalise email-style profile locator
@ -640,7 +700,8 @@ function dfrn_request_content(&$a) {
'node' => $r[0]['nickname'],
'dfrn_id' => $r[0]['issued-id'],
'intro_id' => $intro[0]['id'],
'duplex' => (($r[0]['page-flags'] == PAGE_FREELOVE) ? 1 : 0)
'duplex' => (($r[0]['page-flags'] == PAGE_FREELOVE) ? 1 : 0),
'activity' => intval(get_pconfig($r[0]['uid'],'system','post_newfriend'))
);
dfrn_confirm_post($a,$handsfree);
}
@ -693,6 +754,11 @@ function dfrn_request_content(&$a) {
$myaddr = ((x($_GET,'address')) ? $_GET['address'] : '');
}
// last, try a zrl
if(! strlen($myaddr))
$myaddr = get_my_url();
$target_addr = $a->profile['nickname'] . '@' . substr(z_root(), strpos(z_root(),'://') + 3 );

View file

@ -28,6 +28,9 @@ function events_post(&$a) {
$adjust = intval($_POST['adjust']);
$nofinish = intval($_POST['nofinish']);
// The default setting for the `private` field in event_store() is false, so mirror that
$private_event = false;
$start = sprintf('%d-%d-%d %d:%d:0',$startyear,$startmonth,$startday,$starthour,$startminute);
if($nofinish)
@ -65,14 +68,38 @@ function events_post(&$a) {
$share = ((intval($_POST['share'])) ? intval($_POST['share']) : 0);
$c = q("select id from contact where uid = %d and self = 1 limit 1",
intval(local_user())
);
if(count($c))
$self = $c[0]['id'];
else
$self = 0;
if($share) {
$str_group_allow = perms2str($_POST['group_allow']);
$str_contact_allow = perms2str($_POST['contact_allow']);
$str_group_deny = perms2str($_POST['group_deny']);
$str_contact_deny = perms2str($_POST['contact_deny']);
// Undo the pseudo-contact of self, since there are real contacts now
if( strpos($str_contact_allow, '<' . $self . '>') !== false )
{
$str_contact_allow = str_replace('<' . $self . '>', '', $str_contact_allow);
}
// Make sure to set the `private` field as true. This is necessary to
// have the posts show up correctly in Diaspora if an event is created
// as visible only to self at first, but then edited to display to others.
if( strlen($str_group_allow) or strlen($str_contact_allow) or strlen($str_group_deny) or strlen($str_contact_deny) )
{
$private_event = true;
}
}
else {
$str_contact_allow = '<' . local_user() . '>';
// Note: do not set `private` field for self-only events. It will
// keep even you from seeing them!
$str_contact_allow = '<' . $self . '>';
$str_group_allow = $str_contact_deny = $str_group_deny = '';
}
@ -91,6 +118,7 @@ function events_post(&$a) {
$datarray['allow_gid'] = $str_group_allow;
$datarray['deny_cid'] = $str_contact_deny;
$datarray['deny_gid'] = $str_group_deny;
$datarray['private'] = $private_event;
$datarray['id'] = $event_id;
$datarray['created'] = $created;
$datarray['edited'] = $edited;

View file

@ -7,12 +7,18 @@ function filerm_content(&$a) {
}
$term = unxmlify(trim($_GET['term']));
$cat = unxmlify(trim($_GET['cat']));
$category = (($cat) ? true : false);
if($category)
$term = $cat;
$item_id = (($a->argc > 1) ? intval($a->argv[1]) : 0);
logger('filerm: tag ' . $term . ' item ' . $item_id);
if($item_id && strlen($term))
file_tag_unsave_file(local_user(),$item_id,$term);
file_tag_unsave_file(local_user(),$item_id,$term, $category);
if(x($_SESSION,'return_url'))
goaway($a->get_baseurl() . '/' . $_SESSION['return_url']);

View file

@ -10,7 +10,10 @@ function follow_init(&$a) {
// NOTREACHED
}
$uid = local_user();
$url = $orig_url = notags(trim($_REQUEST['url']));
$return_url = $_SESSION['return_url'];
// remove ajax junk, e.g. Twitter
@ -18,19 +21,25 @@ function follow_init(&$a) {
if(! allowed_url($url)) {
notice( t('Disallowed profile URL.') . EOL);
goaway($_SESSION['return_url']);
goaway($return_url);
// NOTREACHED
}
if(! $url) {
notice( t('Connect URL missing.') . EOL);
goaway($_SESSION['return_url']);
goaway($return_url);
// NOTREACHED
}
$arr = array('url' => $url, 'contact' => array());
$ret = probe_url($url);
call_hooks('follow', $arr);
if(x($arr['contact'],'name'))
$ret = $arr['contact'];
else
$ret = probe_url($url);
if($ret['network'] === NETWORK_DFRN) {
if(strlen($a->path))
@ -46,11 +55,11 @@ function follow_init(&$a) {
if(get_config('system','dfrn_only')) {
notice( t('This site is not configured to allow communications with other networks.') . EOL);
notice( t('No compatible communication protocols or feeds were discovered.') . EOL);
goaway($_SESSION['return_url']);
goaway($return_url);
}
}
// This just confuses things, remove it
// This extra param just confuses things, remove it
if($ret['network'] === NETWORK_DIASPORA)
$ret['url'] = str_replace('?absolute=true','',$ret['url']);
@ -65,9 +74,11 @@ function follow_init(&$a) {
notice( t('An author or name was not found.') . EOL);
if(! x($ret,'url'))
notice( t('No browser URL could be matched to this address.') . EOL);
if(strpos($url,'@') !== false)
notice('Unable to match @-style Identity Address with a known protocol or email contact');
goaway($_SESSION['return_url']);
if(strpos($url,'@') !== false) {
notice( t('Unable to match @-style Identity Address with a known protocol or email contact.') . EOL);
notice( t('Use mailto: in front of address to force email check.') . EOL);
}
goaway($return_url);
}
if($ret['network'] === NETWORK_OSTATUS && get_config('system','ostatus_disabled')) {
@ -94,7 +105,7 @@ function follow_init(&$a) {
// indirect links or webfinger links
$r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `poll` = '%s' LIMIT 1",
intval(local_user()),
intval($uid),
dbesc($ret['poll'])
);
@ -104,7 +115,7 @@ function follow_init(&$a) {
q("UPDATE `contact` SET `rel` = %d , `readonly` = 0 WHERE `id` = %d AND `uid` = %d LIMIT 1",
intval(CONTACT_IS_FRIEND),
intval($r[0]['id']),
intval(local_user())
intval($uid)
);
}
}
@ -118,7 +129,7 @@ function follow_init(&$a) {
$r = q("INSERT INTO `contact` ( `uid`, `created`, `url`, `nurl`, `addr`, `alias`, `batch`, `notify`, `poll`, `poco`, `name`, `nick`, `photo`, `network`, `pubkey`, `rel`, `priority`,
`writable`, `hidden`, `blocked`, `readonly`, `pending` )
VALUES ( %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, %d, %d, %d, 0, 0, 0 ) ",
intval(local_user()),
intval($uid),
dbesc(datetime_convert()),
dbesc($ret['url']),
dbesc(normalise_link($ret['url'])),
@ -142,12 +153,12 @@ function follow_init(&$a) {
$r = q("SELECT * FROM `contact` WHERE `url` = '%s' AND `uid` = %d LIMIT 1",
dbesc($ret['url']),
intval(local_user())
intval($uid)
);
if(! count($r)) {
notice( t('Unable to retrieve contact information.') . EOL);
goaway($_SESSION['return_url']);
goaway($return_url);
// NOTREACHED
}
@ -156,7 +167,7 @@ function follow_init(&$a) {
require_once("Photo.php");
$photos = import_profile_photo($ret['photo'],local_user(),$contact_id);
$photos = import_profile_photo($ret['photo'],$uid,$contact_id);
$r = q("UPDATE `contact` SET `photo` = '%s',
`thumb` = '%s',
@ -200,7 +211,7 @@ function follow_init(&$a) {
$r = q("SELECT `contact`.*, `user`.* FROM `contact` LEFT JOIN `user` ON `contact`.`uid` = `user`.`uid`
WHERE `user`.`uid` = %d AND `contact`.`self` = 1 LIMIT 1",
intval(local_user())
intval($uid)
);
if(count($r)) {
@ -215,9 +226,9 @@ function follow_init(&$a) {
}
}
if(strstr($_SESSION['return_url'],'contacts'))
if(strstr($return_url,'contacts'))
goaway($a->get_baseurl() . '/contacts/' . $contact_id);
goaway($_SESSION['return_url']);
goaway($return_url);
// NOTREACHED
}

View file

@ -18,10 +18,18 @@ function friendica_init(&$a) {
$admin = false;
}
$visible_plugins = array();
if(is_array($a->plugins) && count($a->plugins)) {
$r = q("select * from addon where hidden = 0");
if(count($r))
foreach($r as $rr)
$visible_plugins[] = $rr['name'];
}
$data = Array(
'version' => FRIENDICA_VERSION,
'url' => z_root(),
'plugins' => $a->plugins,
'plugins' => $visible_plugins,
'register_policy' => $register_policy[$a->config['register_policy']],
'admin' => $admin,
'site_name' => $a->config['sitename'],
@ -54,9 +62,18 @@ function friendica_content(&$a) {
$o .= '<p></p>';
if(count($a->plugins)) {
$visible_plugins = array();
if(is_array($a->plugins) && count($a->plugins)) {
$r = q("select * from addon where hidden = 0");
if(count($r))
foreach($r as $rr)
$visible_plugins[] = $rr['name'];
}
if(count($visible_plugins)) {
$o .= '<p>' . t('Installed plugins/addons/apps:') . '</p>';
$sorted = $a->plugins;
$sorted = $visible_plugins;
$s = '';
sort($sorted);
foreach($sorted as $p) {

View file

@ -444,9 +444,28 @@ function item_post(&$a) {
$tags[] = '@' . $parent_contact['nick'];
}
$tagged = array();
if(count($tags)) {
foreach($tags as $tag) {
handle_tag($a, $body, $inform, $str_tags, (local_user()) ? local_user() : $profile_uid , $tag);
// If we already tagged 'Robert Johnson', don't try and tag 'Robert'.
// Robert Johnson should be first in the $tags array
$fullnametagged = false;
for($x = 0; $x < count($tagged); $x ++) {
if(stristr($tagged[$x],$tag . ' ')) {
$fullnametagged = true;
break;
}
}
if($fullnametagged)
continue;
$success = handle_tag($a, $body, $inform, $str_tags, (local_user()) ? local_user() : $profile_uid , $tag);
if($success)
$tagged[] = $tag;
}
}
@ -861,21 +880,27 @@ function item_content(&$a) {
* @param unknown_type $str_tags string to add the tag to
* @param unknown_type $profile_uid
* @param unknown_type $tag the tag to replace
*
* @return boolean true if replaced, false if not replaced
*/
function handle_tag($a, &$body, &$inform, &$str_tags, $profile_uid, $tag) {
$replaced = false;
//is it a hash tag?
if(strpos($tag,'#') === 0) {
//if the tag is replaced...
if(strpos($tag,'[url='))
//...do nothing
return;
return $replaced;
//base tag has the tags name only
$basetag = str_replace('_',' ',substr($tag,1));
//create text for link
$newtag = '#[url=' . $a->get_baseurl() . '/search?search=' . rawurlencode($basetag) . ']' . $basetag . '[/url]';
$newtag = '#[url=' . $a->get_baseurl() . '/search?tag=' . rawurlencode($basetag) . ']' . $basetag . '[/url]';
//replace tag by the link
$body = str_replace($tag, $newtag, $body);
$replaced = true;
//is the link already in str_tags?
if(! stristr($str_tags,$newtag)) {
//append or set str_tags
@ -883,13 +908,13 @@ function handle_tag($a, &$body, &$inform, &$str_tags, $profile_uid, $tag) {
$str_tags .= ',';
$str_tags .= $newtag;
}
return;
return $replaced;
}
//is it a person tag?
if(strpos($tag,'@') === 0) {
//is it already replaced?
if(strpos($tag,'[url='))
return;
return $replaced;
$stat = false;
//get the person's name
$name = substr($tag,1);
@ -965,6 +990,7 @@ function handle_tag($a, &$body, &$inform, &$str_tags, $profile_uid, $tag) {
}
//if there is an url for this persons profile
if(isset($profile)) {
$replaced = true;
//create profile link
$profile = str_replace(',','%2c',$profile);
$newtag = '@[url=' . $profile . ']' . $newname . '[/url]';
@ -989,4 +1015,6 @@ function handle_tag($a, &$body, &$inform, &$str_tags, $profile_uid, $tag) {
}
}
}
return $replaced;
}

View file

@ -4,20 +4,7 @@ require_once('include/acl_selectors.php');
require_once('include/message.php');
function message_init(&$a) {
$tabs = array(
/*
array(
'label' => t('All'),
'url'=> $a->get_baseurl(true) . '/message',
'sel'=> ($a->argc == 1),
),
array(
'label' => t('Sent'),
'url' => $a->get_baseurl(true) . '/message/sent',
'sel'=> ($a->argv[1] == 'sent'),
),
*/
);
$tabs = array();
$new = array(
'label' => t('New Message'),
'url' => $a->get_baseurl(true) . '/message/new',
@ -29,6 +16,21 @@ function message_init(&$a) {
'$tabs'=>$tabs,
'$new'=>$new,
));
$base = $a->get_baseurl();
$a->page['htmlhead'] .= '<script src="' . $a->get_baseurl(true) . '/library/jquery_ac/jquery.autocomplete-min.js" ></script>';
$a->page['htmlhead'] .= <<< EOT
<script>$(document).ready(function() {
var a;
a = $("#recip").autocomplete({
serviceUrl: '$base/acl',
width: 350
});
});
</script>
EOT;
}
@ -171,7 +173,23 @@ function message_content(&$a) {
$preselect = (isset($a->argv[2])?array($a->argv[2]):false);
$select = contact_select('messageto','message-to-select', $preselect, 4, true, false, false, 10);
if(defined('EMAIL_AUTOCOMP')) {
// here's where we want to do contact autocomplete
// just figure out how to make it do the right thing
// pictures would be nice, but that didn't work when I tried.
// It sort of barely works, but needs help
// (the json backend is found in mod/acl.php)
$select = '<input type="text" id="recip" name="messageto" value="' . $preselect .'" />';
}
else {
// the ugly select box
$select = contact_select('messageto','message-to-select', $preselect, 4, true, false, false, 10);
}
$tpl = get_markup_template('prv_message.tpl');
$o .= replace_macros($tpl,array(
'$header' => t('Send Private Message'),
@ -198,7 +216,7 @@ function message_content(&$a) {
$o .= $header;
$r = q("SELECT count(*) AS `total` FROM `mail`
WHERE `mail`.`uid` = %d AND `from-url` $eq '%s' GROUP BY `parent-uri` ORDER BY `created` DESC",
WHERE `mail`.`uid` = %d GROUP BY `parent-uri` ORDER BY `created` DESC",
intval(local_user()),
dbesc($myprofile)
);
@ -313,6 +331,29 @@ function message_content(&$a) {
$from_url = $a->get_baseurl(true) . '/redir/' . $message['contact-id'];
$sparkle = ' sparkle';
}
$Text = $message['body'];
$saved_image = '';
$img_start = strpos($Text,'[img]data:');
$img_end = strpos($Text,'[/img]');
if($img_start !== false && $img_end !== false && $img_end > $img_start) {
$start_fragment = substr($Text,0,$img_start);
$img_start += strlen('[img]');
$saved_image = substr($Text,$img_start,$img_end - $img_start);
$end_fragment = substr($Text,$img_end + strlen('[/img]'));
$Text = $start_fragment . '[!#saved_image#!]' . $end_fragment;
$search = '/\[url\=(.*?)\]\[!#saved_image#!\]\[\/url\]' . '/is';
$replace = '[url=' . z_path() . '/redir/' . $message['contact-id']
. '?f=1&url=' . '$1' . '][!#saved_image#!][/url]' ;
$Text = preg_replace($search,$replace,$Text);
if(strlen($saved_image))
$message['body'] = str_replace('[!#saved_image#!]', '[img]' . $saved_image . '[/img]',$Text);
}
$mails[] = array(
'id' => $message['id'],
'from_name' => template_escape($message['from-name']),

View file

@ -171,37 +171,44 @@ function network_content(&$a, $update = 0) {
'label' => t('Commented Order'),
'url'=>$a->get_baseurl(true) . '/' . str_replace('/new', '', $a->cmd) . ((x($_GET,'cid')) ? '?f=&cid=' . $_GET['cid'] : ''),
'sel'=>$all_active,
'title'=> t('Sort by Comment Date'),
),
array(
'label' => t('Posted Order'),
'url'=>$a->get_baseurl(true) . '/' . str_replace('/new', '', $a->cmd) . '?f=&order=post' . ((x($_GET,'cid')) ? '&cid=' . $_GET['cid'] : ''),
'sel'=>$postord_active,
'title' => t('Sort by Post Date'),
),
array(
'label' => t('Personal'),
'url' => $a->get_baseurl(true) . '/' . str_replace('/new', '', $a->cmd) . ((x($_GET,'cid')) ? '/?f=&cid=' . $_GET['cid'] : '') . '&conv=1',
'sel' => $conv_active,
'title' => t('Posts that mention or involve you'),
),
array(
'label' => t('New'),
'url' => $a->get_baseurl(true) . '/' . str_replace('/new', '', $a->cmd) . '/new' . ((x($_GET,'cid')) ? '/?f=&cid=' . $_GET['cid'] : ''),
'sel' => $new_active,
'title' => t('Activity Stream - by date'),
),
array(
'label' => t('Starred'),
'url'=>$a->get_baseurl(true) . '/' . str_replace('/new', '', $a->cmd) . ((x($_GET,'cid')) ? '/?f=&cid=' . $_GET['cid'] : '') . '&star=1',
'sel'=>$starred_active,
'title' => t('Favourite Posts'),
),
array(
'label' => t('Shared Links'),
'url'=>$a->get_baseurl(true) . '/' . str_replace('/new', '', $a->cmd) . ((x($_GET,'cid')) ? '/?f=&cid=' . $_GET['cid'] : '') . '&bmark=1',
'sel'=>$bookmarked_active,
'title'=> t('Interesting Links'),
),
// array(
// 'label' => t('Spam'),
// 'url'=>$a->get_baseurl(true) . '/network?f=&spam=1'
// 'sel'=> $spam_active,
// 'title' => t('Posts flagged as SPAM'),
// ),
@ -333,7 +340,7 @@ function network_content(&$a, $update = 0) {
info( t('Group is empty'));
}
$sql_extra = " AND `item`.`parent` IN ( SELECT DISTINCT(`parent`) FROM `item` WHERE 1 $sql_options AND ( `contact-id` IN ( $contact_str ) OR `allow_gid` REGEXP '<" . intval($group) . ">' ) and deleted = 0 ) ";
$sql_extra = " AND `item`.`parent` IN ( SELECT DISTINCT(`parent`) FROM `item` WHERE 1 $sql_options AND ( `contact-id` IN ( $contact_str ) OR `allow_gid` like '" . protect_sprintf('%<' . intval($group) . '>%') . "' ) and deleted = 0 ) ";
$o = '<h2>' . t('Group: ') . $r[0]['name'] . '</h2>' . $o;
}
elseif($cid) {
@ -391,9 +398,9 @@ function network_content(&$a, $update = 0) {
if(x($_GET,'search')) {
$search = escape_tags($_GET['search']);
$sql_extra .= sprintf(" AND ( `item`.`body` REGEXP '%s' OR `item`.`tag` REGEXP '%s' ) ",
dbesc(preg_quote($search)),
dbesc('\\]' . preg_quote($search) . '\\[')
$sql_extra .= sprintf(" AND ( `item`.`body` like '%s' OR `item`.`tag` like '%s' ) ",
dbesc(protect_sprintf('%' . $search . '%')),
dbesc(protect_sprintf('%]' . $search . '[%'))
);
}
if(strlen($file)) {
@ -405,10 +412,10 @@ function network_content(&$a, $update = 0) {
$myurl = substr($myurl,strpos($myurl,'://')+3);
$myurl = str_replace(array('www.','.'),array('','\\.'),$myurl);
$diasp_url = str_replace('/profile/','/u/',$myurl);
$sql_extra .= sprintf(" AND `item`.`parent` IN (SELECT distinct(`parent`) from item where ( `author-link` regexp '%s' or `tag` regexp '%s' or tag regexp '%s' )) ",
dbesc($myurl . '$'),
dbesc($myurl . '\\]'),
dbesc($diasp_url . '\\]')
$sql_extra .= sprintf(" AND `item`.`parent` IN (SELECT distinct(`parent`) from item where ( `author-link` like '%s' or `tag` like '%s' or tag like '%s' )) ",
dbesc(protect_sprintf('%s' . $myurl)),
dbesc(protect_sprintf('%' . $myurl . '\\]%')),
dbesc(protect_sprintf('%' . $diasp_url . '\\]%'))
);
}

View file

@ -134,6 +134,8 @@ function ping_init(&$a) {
function xmlize($href, $name, $url, $photo, $date, $seen, $message){
$data = array('href' => &$href, 'name' => &$name, 'url'=>&$url, 'photo'=>&$photo, 'date'=>&$date, 'seen'=>&$seen, 'messsage'=>&$message);
call_hooks('ping_xmlize', $data);
$notsxml = '<note href="%s" name="%s" url="%s" photo="%s" date="%s" seen="%s" >%s</note>';
return sprintf ( $notsxml,
xmlify($href), xmlify($name), xmlify($url), xmlify($photo), xmlify($date), xmlify($seen), xmlify($message)

View file

@ -32,6 +32,8 @@ function profile_init(&$a) {
profile_load($a,$which,$profile);
$userblock = (($a->profile['hidewall'] && (! local_user()) && (! remote_user())) ? true : false);
if((x($a->profile,'page-flags')) && ($a->profile['page-flags'] == PAGE_COMMUNITY)) {
$a->page['htmlhead'] .= '<meta name="friendica.community" content="true" />';
}
@ -41,8 +43,8 @@ function profile_init(&$a) {
$delegate = ((strstr($a->profile['openid'],'://')) ? $a->profile['openid'] : 'http://' . $a->profile['openid']);
$a->page['htmlhead'] .= '<link rel="openid.delegate" href="' . $delegate . '" />' . "\r\n";
}
if(! $blocked) {
// site block
if((! $blocked) && (! $userblock)) {
$keywords = ((x($a->profile,'pub_keywords')) ? $a->profile['pub_keywords'] : '');
$keywords = str_replace(array('#',',',' ',',,'),array('',' ',',',','),$keywords);
if(strlen($keywords))
@ -141,6 +143,10 @@ function profile_content(&$a, $update = 0) {
return $o;
}
$o .= common_friends_visitor_widget($a->profile['profile_uid']);
if(x($_SESSION,'new_member') && $_SESSION['new_member'] && $is_owner)
$o .= '<a href="newmember" id="newmember-tips" style="font-size: 1.2em;"><b>' . t('Tips for New Members') . '</b></a>' . EOL;

View file

@ -139,21 +139,49 @@ function profiles_post(&$a) {
$changes = array();
$value = '';
if($is_default) {
if($marital != $orig[0]['marital']) $changes[] = '&hearts; ' . t('Marital Status');
if($withchanged) $changes[] = '&hearts; ' . t('Romantic Partner');
if($work != $orig[0]['work']) $changes[] = t('Work/Employment');
if($religion != $orig[0]['religion']) $changes[] = t('Religion');
if($politic != $orig[0]['politic']) $changes[] = t('Political Views');
if($gender != $orig[0]['gender']) $changes[] = t('Gender');
if($sexual != $orig[0]['sexual']) $changes[] = t('Sexual Preference');
if($homepage != $orig[0]['homepage']) $changes[] = t('Homepage');
if($interest != $orig[0]['interest']) $changes[] = t('Interests');
if($marital != $orig[0]['marital']) {
$changes[] = '[color=#ff0000]&hearts;[/color] ' . t('Marital Status');
$value = $marital;
}
if($withchanged) {
$changes[] = '&hearts; ' . t('Romantic Partner');
$value = strip_tags($with);
}
if($work != $orig[0]['work']) {
$changes[] = t('Work/Employment');
}
if($religion != $orig[0]['religion']) {
$changes[] = t('Religion');
$value = $religion;
}
if($politic != $orig[0]['politic']) {
$changes[] = t('Political Views');
$value = $politic;
}
if($gender != $orig[0]['gender']) {
$changes[] = t('Gender');
$value = $gender;
}
if($sexual != $orig[0]['sexual']) {
$changes[] = t('Sexual Preference');
$value = $sexual;
}
if($homepage != $orig[0]['homepage']) {
$changes[] = t('Homepage');
$value = $homepage;
}
if($interest != $orig[0]['interest']) {
$changes[] = t('Interests');
$value = $interest;
}
if($address != $orig[0]['address'] || $locality != $orig[0]['locality'] || $region != $orig[0]['region']
|| $country_name != $orig[0]['country_name'])
$changes[] = t('Location');
|| $country_name != $orig[0]['country-name']) {
$changes[] = t('Location');
}
profile_activity($changes);
profile_activity($changes,$value);
}
@ -245,7 +273,7 @@ function profiles_post(&$a) {
}
function profile_activity($changed) {
function profile_activity($changed, $value) {
$a = get_app();
if(! local_user() || ! is_array($changed) || ! count($changed))
@ -289,7 +317,7 @@ function profile_activity($changed) {
foreach($changed as $ch) {
if(strlen($changes)) {
if ($z == ($t - 1))
$changes .= ' and ';
$changes .= t(' and ');
else
$changes .= ', ';
}
@ -299,7 +327,15 @@ function profile_activity($changed) {
$prof = '[url=' . $self[0]['url'] . '?tab=profile' . ']' . t('public profile') . '[/url]';
$arr['body'] = sprintf( t('%1$s has an updated %2$s, changing %3$s.'), $A, $prof, $changes);
if($t == 1 && strlen($value)) {
$message = sprintf( t('%1$s changed %2$s to &ldquo;%3$s&rdquo;'), $A, $changes, $value);
$message .= "\n\n" . sprintf( t(" - Visit %1$s\'s %2$s"), $A, $prof);
}
else
$message = sprintf( t('%1$s has an updated %2$s, changing %3$s.'), $A, $prof, $changes);
$arr['body'] = $message;
$arr['object'] = '<object><type>' . ACTIVITY_OBJ_PROFILE . '</type><title>' . $self[0]['name'] . '</title>'
. '<id>' . $self[0]['url'] . '/' . $self[0]['name'] . '</id>';

View file

@ -87,11 +87,26 @@ function search_content(&$a) {
else
$search = ((x($_GET,'search')) ? notags(trim(rawurldecode($_GET['search']))) : '');
$tag = false;
if(x($_GET,'tag')) {
$tag = true;
$search = ((x($_GET,'tag')) ? notags(trim(rawurldecode($_GET['tag']))) : '');
}
$o .= search($search,'search-box','/search',((local_user()) ? true : false));
if(! $search)
return $o;
if($tag)
$sql_extra = sprintf(" AND `item`.`tag` REGEXP '%s' ", dbesc('\\]' . preg_quote($search) . '\\['));
else
$sql_extra = sprintf(" AND `item`.`body` REGEXP '%s' ", dbesc(preg_quote($search)));
// Here is the way permissions work in the search module...
// Only public posts can be shown
// OR your own posts if you are a logged in member
@ -103,10 +118,8 @@ function search_content(&$a) {
AND (( `item`.`allow_cid` = '' AND `item`.`allow_gid` = '' AND `item`.`deny_cid` = '' AND `item`.`deny_gid` = '' AND `item`.`private` = 0 AND `user`.`hidewall` = 0)
OR `item`.`uid` = %d )
AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
AND ( `item`.`body` REGEXP '%s' OR `item`.`tag` REGEXP '%s' ) group by `item`.`uri` ",
intval(local_user()),
dbesc(preg_quote($search)),
dbesc('\\]' . preg_quote($search) . '\\[')
$sql_extra group by `item`.`uri` ",
intval(local_user())
);
if(count($r))
@ -127,18 +140,19 @@ function search_content(&$a) {
AND (( `item`.`allow_cid` = '' AND `item`.`allow_gid` = '' AND `item`.`deny_cid` = '' AND `item`.`deny_gid` = '' AND `item`.`private` = 0 AND `user`.`hidewall` = 0 )
OR `item`.`uid` = %d )
AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
AND ( `item`.`body` REGEXP '%s' OR `item`.`tag` REGEXP '%s' )
$sql_extra
group by `item`.`uri`
ORDER BY `received` DESC LIMIT %d , %d ",
intval(local_user()),
dbesc(preg_quote($search)),
dbesc('\\]' . preg_quote($search) . '\\['),
intval($a->pager['start']),
intval($a->pager['itemspage'])
);
$o .= '<h2>Search results for: ' . $search . '</h2>';
if($tag)
$o .= '<h2>Items tagged with: ' . $search . '</h2>';
else
$o .= '<h2>Search results for: ' . $search . '</h2>';
$o .= conversation($a,$r,'search',false);

View file

@ -75,6 +75,11 @@ EOT;
'label' => t('Export personal data'),
'url' => $a->get_baseurl(true) . '/uexport',
'selected' => ''
),
array(
'label' => t('Remove account'),
'url' => $a->get_baseurl(true) . '/removeme',
'selected' => ''
)
);
@ -347,6 +352,7 @@ function settings_post(&$a) {
$hide_friends = (($_POST['hide-friends'] == 1) ? 1: 0);
$hidewall = (($_POST['hidewall'] == 1) ? 1: 0);
$post_newfriend = (($_POST['post_newfriend'] == 1) ? 1: 0);
$post_joingroup = (($_POST['post_joingroup'] == 1) ? 1: 0);
$post_profilechange = (($_POST['post_profilechange'] == 1) ? 1: 0);
@ -431,6 +437,7 @@ function settings_post(&$a) {
set_pconfig(local_user(),'system','suggestme', $suggestme);
set_pconfig(local_user(),'system','post_newfriend', $post_newfriend);
set_pconfig(local_user(),'system','post_joingroup', $post_joingroup);
set_pconfig(local_user(),'system','post_profilechange', $post_profilechange);
@ -696,8 +703,8 @@ function settings_content(&$a) {
$allowed_themes_raw = explode(',',$allowed_themes_str);
$allowed_themes = array();
if(count($allowed_themes_raw))
foreach($allowed_themes_raw as $x)
if(strlen(trim($x)))
foreach($allowed_themes_raw as $x)
if(strlen(trim($x)) && is_dir("view/theme/$x"))
$allowed_themes[] = trim($x);
@ -797,6 +804,9 @@ function settings_content(&$a) {
$post_newfriend = get_pconfig(local_user(), 'system','post_newfriend');
$post_newfriend = (($post_newfriend===false)? '0': $post_newfriend); // default if not set: 0
$post_joingroup = get_pconfig(local_user(), 'system','post_joingroup');
$post_joingroup = (($post_joingroup===false)? '0': $post_joingroup); // default if not set: 0
$post_profilechange = get_pconfig(local_user(), 'system','post_profilechange');
$post_profilechange = (($post_profilechange===false)? '0': $post_profilechange); // default if not set: 0
@ -971,6 +981,7 @@ function settings_content(&$a) {
'$h_not' => t('Notification Settings'),
'$activity_options' => t('By default post a status message when:'),
'$post_newfriend' => array('post_newfriend', t('accepting a friend request'), $post_newfriend, ''),
'$post_joingroup' => array('post_joingroup', t('joining a forum/community'), $post_joingroup, ''),
'$post_profilechange' => array('post_profilechange', t('making an <em>interesting</em> profile change'), $post_profilechange, ''),
'$lbl_not' => t('Send a notification email when:'),
'$notify1' => array('notify1', t('You receive an introduction'), ($notify & NOTIFY_INTRO), NOTIFY_INTRO, ''),

View file

@ -66,14 +66,14 @@ function tagger_content(&$a) {
}
$uri = item_new_uri($a->get_hostname(),$owner_uid);
$xterm = xmlify($term);
$post_type = (($item['resource-id']) ? t('photo') : t('status'));
$targettype = (($item['resource-id']) ? ACTIVITY_OBJ_PHOTO : ACTIVITY_OBJ_NOTE );
$link = xmlify('<link rel="alternate" type="text/html" href="'
. $a->get_baseurl() . '/display/' . $owner['nickname'] . '/' . $item['id'] . '" />' . "\n") ;
$body = $item['body'];
$body = xmlify($item['body']);
$target = <<< EOT
<target>
@ -86,7 +86,7 @@ function tagger_content(&$a) {
</target>
EOT;
$tagid = $a->get_baseurl() . '/search?search=' . $term;
$tagid = $a->get_baseurl() . '/search?tag=' . $term;
$objtype = ACTIVITY_OBJ_TAGTERM;
$obj = <<< EOT
@ -95,8 +95,8 @@ EOT;
<local>1</local>
<id>$tagid</id>
<link>$tagid</link>
<title>$term</title>
<content>$term</content>
<title>$xterm</title>
<content>$xterm</content>
</object>
EOT;
@ -105,7 +105,7 @@ EOT;
if(! isset($bodyverb))
return;
$termlink = html_entity_decode('&#x2317;') . '[url=' . $a->get_baseurl() . '/search?search=' . urlencode($term) . ']'. $term . '[/url]';
$termlink = html_entity_decode('&#x2317;') . '[url=' . $a->get_baseurl() . '/search?tag=' . urlencode($term) . ']'. $term . '[/url]';
$arr = array();
@ -161,7 +161,7 @@ EOT;
if((! $blocktags) && (! stristr($item['tag'], ']' . $term . '[' ))) {
q("update item set tag = '%s' where id = %d limit 1",
dbesc($item['tag'] . (strlen($item['tag']) ? ',' : '') . '#[url=' . $a->get_baseurl() . '/search?search=' . $term . ']'. $term . '[/url]'),
dbesc($item['tag'] . (strlen($item['tag']) ? ',' : '') . '#[url=' . $a->get_baseurl() . '/search?tag=' . $term . ']'. $term . '[/url]'),
intval($item['id'])
);
}
@ -177,7 +177,7 @@ EOT;
);
if(count($x) && !$x[0]['blocktags'] && (! stristr($r[0]['tag'], ']' . $term . '['))) {
q("update item set tag = '%s' where id = %d limit 1",
dbesc($r[0]['tag'] . (strlen($r[0]['tag']) ? ',' : '') . '#[url=' . $a->get_baseurl() . '/search?search=' . $term . ']'. $term . '[/url]'),
dbesc($r[0]['tag'] . (strlen($r[0]['tag']) ? ',' : '') . '#[url=' . $a->get_baseurl() . '/search?tag=' . $term . ']'. $term . '[/url]'),
intval($r[0]['id'])
);
}

View file

@ -24,13 +24,13 @@ function viewcontacts_content(&$a) {
}
$r = q("SELECT COUNT(*) as `total` FROM `contact` WHERE `uid` = %d AND `blocked` = 0 AND `pending` = 0 AND `hidden` = 0 ",
$r = q("SELECT COUNT(*) as `total` FROM `contact` WHERE `uid` = %d AND `blocked` = 0 AND `pending` = 0 AND `hidden` = 0 AND `archive` = 0 ",
intval($a->profile['uid'])
);
if(count($r))
$a->set_pager_total($r[0]['total']);
$r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `blocked` = 0 AND `pending` = 0 AND `hidden` = 0 ORDER BY `name` ASC LIMIT %d , %d ",
$r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `blocked` = 0 AND `pending` = 0 AND `hidden` = 0 AND `archive` = 0 ORDER BY `name` ASC LIMIT %d , %d ",
intval($a->profile['uid']),
intval($a->pager['start']),
intval($a->pager['itemspage'])

View file

@ -5,19 +5,26 @@ require_once('Photo.php');
function wall_upload_post(&$a) {
if($a->argc > 1) {
$nick = $a->argv[1];
$r = q("SELECT `user`.*, `contact`.`id` FROM `user` LEFT JOIN `contact` on `user`.`uid` = `contact`.`uid` WHERE `user`.`nickname` = '%s' AND `user`.`blocked` = 0 and `contact`.`self` = 1 LIMIT 1",
dbesc($nick)
);
if(! count($r))
return;
if(! x($_FILES,'media')) {
$nick = $a->argv[1];
$r = q("SELECT `user`.*, `contact`.`id` FROM `user` LEFT JOIN `contact` on `user`.`uid` = `contact`.`uid` WHERE `user`.`nickname` = '%s' AND `user`.`blocked` = 0 and `contact`.`self` = 1 LIMIT 1",
dbesc($nick)
);
if(! count($r))
return;
}
else {
$user_info = api_get_user($a);
$r = q("SELECT `user`.*, `contact`.`id` FROM `user` LEFT JOIN `contact` on `user`.`uid` = `contact`.`uid` WHERE `user`.`nickname` = '%s' AND `user`.`blocked` = 0 and `contact`.`self` = 1 LIMIT 1",
dbesc($user_info['screen_name'])
);
}
}
else
return;
$can_post = false;
$visitor = 0;
@ -47,12 +54,19 @@ function wall_upload_post(&$a) {
killme();
}
if(! x($_FILES,'userfile'))
if(! x($_FILES,'userfile') && ! x($_FILES,'media'))
killme();
$src = $_FILES['userfile']['tmp_name'];
$filename = basename($_FILES['userfile']['name']);
$filesize = intval($_FILES['userfile']['size']);
if(x($_FILES,'userfile')) {
$src = $_FILES['userfile']['tmp_name'];
$filename = basename($_FILES['userfile']['name']);
$filesize = intval($_FILES['userfile']['size']);
}
elseif(x($_FILES,'media')) {
$src = $_FILES['media']['tmp_name'];
$filename = basename($_FILES['media']['name']);
$filesize = intval($_FILES['media']['size']);
}
$maximagesize = get_config('system','maximagesize');

View file

@ -67,7 +67,10 @@ class AutonameTest extends PHPUnit_Framework_TestCase {
$autoname2=autoname(1);
$this->assertEquals(1, count($autoname2));
$this->assertFalse($autoname1==$autoname2);
// The following test is problematic, with only 26 possibilities
// generating the same thing twice happens often aka
// birthday paradox
// $this->assertFalse($autoname1==$autoname2);
}
}

View file

@ -202,8 +202,8 @@ class GetTagsTest extends PHPUnit_Framework_TestCase {
}
$this->assertEquals("cid:15", $inform);
$this->assertEquals("@[url=http://justatest.de]Mike Lastname[/url],#[url=baseurl/search?search=test%20case]test case[/url]", $str_tags);
$this->assertEquals("hi @[url=http://justatest.de]Mike Lastname[/url] This is a #[url=baseurl/search?search=test%20case]test case[/url]", $text);
$this->assertEquals("@[url=http://justatest.de]Mike Lastname[/url],#[url=baseurl/search?tag=test%20case]test case[/url]", $str_tags);
$this->assertEquals("hi @[url=http://justatest.de]Mike Lastname[/url] This is a #[url=baseurl/search?tag=test%20case]test case[/url]", $text);
}

View file

@ -1,6 +1,6 @@
<?php
define( 'UPDATE_VERSION' , 1138 );
define( 'UPDATE_VERSION' , 1143 );
/**
*
@ -1213,3 +1213,38 @@ function update_1137() {
q("ALTER TABLE `item_id` ADD `sid` CHAR( 255 ) NOT NULL AFTER `uid` , ADD `service` CHAR( 255 ) NOT NULL AFTER `sid` , add index (`sid`), add index ( `service`) ");
}
function update_1138() {
q("alter table contact add archive tinyint(1) not null default '0' after hidden, add index (archive)");
}
function update_1139() {
$r = q("alter table user add account_removed tinyint(1) not null default '0' after expire, add index(account_removed) ");
if(! $r)
return UPDATE_FAILED ;
return UPDATE_SUCCESS ;
}
function update_1140() {
$r = q("alter table addon add hidden tinyint(1) not null default '0' after installed, add index(hidden) ");
if(! $r)
return UPDATE_FAILED ;
return UPDATE_SUCCESS ;
}
function update_1141() {
$r = q("alter table glink add zcid int(11) not null after gcid, add index(zcid) ");
if(! $r)
return UPDATE_FAILED ;
return UPDATE_SUCCESS ;
}
function update_1142() {
$r = q("alter table user add service_class char(32) not null after expire_notification_sent, add index(service_class) ");
if(! $r)
return UPDATE_FAILED ;
return UPDATE_SUCCESS ;
}

View file

@ -6,9 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: 2.3.1318\n"
"Project-Id-Version: 2.3.1336\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-04-20 10:00-0700\n"
"POT-Creation-Date: 2012-05-08 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"
@ -35,12 +35,12 @@ msgid "Contact update failed."
msgstr ""
#: ../../mod/crepair.php:115 ../../mod/wall_attach.php:44
#: ../../mod/fsuggest.php:78 ../../mod/events.php:110 ../../mod/api.php:26
#: ../../mod/fsuggest.php:78 ../../mod/events.php:138 ../../mod/api.php:26
#: ../../mod/api.php:31 ../../mod/photos.php:130 ../../mod/photos.php:865
#: ../../mod/editpost.php:10 ../../mod/install.php:171
#: ../../mod/notifications.php:66 ../../mod/contacts.php:125
#: ../../mod/settings.php:99 ../../mod/settings.php:514
#: ../../mod/settings.php:519 ../../mod/manage.php:86 ../../mod/network.php:6
#: ../../mod/settings.php:104 ../../mod/settings.php:521
#: ../../mod/settings.php:526 ../../mod/manage.php:86 ../../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
@ -48,15 +48,14 @@ msgstr ""
#: ../../mod/register.php:38 ../../mod/regmod.php:116 ../../mod/item.php:124
#: ../../mod/item.php:140 ../../mod/profile_photo.php:19
#: ../../mod/profile_photo.php:139 ../../mod/profile_photo.php:150
#: ../../mod/profile_photo.php:163 ../../mod/message.php:38
#: ../../mod/message.php:90 ../../mod/allfriends.php:9
#: ../../mod/nogroup.php:25 ../../mod/wall_upload.php:46
#: ../../mod/follow.php:8 ../../mod/common.php:9 ../../mod/display.php:138
#: ../../mod/profiles.php:7 ../../mod/profiles.php:329
#: ../../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:484 ../../include/items.php:3171
#: ../../index.php:309
#: ../../mod/profile_photo.php:163 ../../mod/message.php:40
#: ../../mod/message.php:92 ../../mod/allfriends.php:9
#: ../../mod/nogroup.php:25 ../../mod/wall_upload.php:53
#: ../../mod/follow.php:8 ../../mod/display.php:138 ../../mod/profiles.php:7
#: ../../mod/profiles.php:365 ../../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:495
#: ../../include/items.php:3202 ../../index.php:306
msgid "Permission denied."
msgstr ""
@ -85,8 +84,8 @@ msgstr ""
msgid "Return to contact editor"
msgstr ""
#: ../../mod/crepair.php:148 ../../mod/settings.php:534
#: ../../mod/settings.php:560 ../../mod/admin.php:573 ../../mod/admin.php:582
#: ../../mod/crepair.php:148 ../../mod/settings.php:541
#: ../../mod/settings.php:567 ../../mod/admin.php:643 ../../mod/admin.php:652
msgid "Name"
msgstr ""
@ -123,23 +122,23 @@ msgid "New photo from this URL"
msgstr ""
#: ../../mod/crepair.php:166 ../../mod/fsuggest.php:107
#: ../../mod/events.php:400 ../../mod/photos.php:900 ../../mod/photos.php:958
#: ../../mod/events.php:428 ../../mod/photos.php:900 ../../mod/photos.php:958
#: ../../mod/photos.php:1193 ../../mod/photos.php:1233
#: ../../mod/photos.php:1273 ../../mod/photos.php:1304
#: ../../mod/install.php:251 ../../mod/install.php:289
#: ../../mod/localtime.php:45 ../../mod/contacts.php:325
#: ../../mod/settings.php:532 ../../mod/settings.php:678
#: ../../mod/settings.php:739 ../../mod/settings.php:930
#: ../../mod/manage.php:109 ../../mod/group.php:85 ../../mod/admin.php:392
#: ../../mod/admin.php:570 ../../mod/admin.php:706 ../../mod/admin.php:905
#: ../../mod/admin.php:993 ../../mod/profiles.php:498 ../../mod/invite.php:119
#: ../../addon/facebook/facebook.php:574 ../../addon/yourls/yourls.php:76
#: ../../addon/ljpost/ljpost.php:93 ../../addon/nsfw/nsfw.php:57
#: ../../addon/planets/planets.php:158
#: ../../mod/localtime.php:45 ../../mod/contacts.php:322
#: ../../mod/settings.php:539 ../../mod/settings.php:685
#: ../../mod/settings.php:746 ../../mod/settings.php:940
#: ../../mod/manage.php:109 ../../mod/group.php:85 ../../mod/admin.php:404
#: ../../mod/admin.php:640 ../../mod/admin.php:776 ../../mod/admin.php:975
#: ../../mod/admin.php:1062 ../../mod/profiles.php:534
#: ../../mod/invite.php:119 ../../addon/facebook/facebook.php:597
#: ../../addon/yourls/yourls.php:76 ../../addon/ljpost/ljpost.php:93
#: ../../addon/nsfw/nsfw.php:57 ../../addon/planets/planets.php:158
#: ../../addon/uhremotestorage/uhremotestorage.php:89
#: ../../addon/randplace/randplace.php:177 ../../addon/dwpost/dwpost.php:93
#: ../../addon/drpost/drpost.php:110 ../../addon/geonames/geonames.php:187
#: ../../addon/oembed.old/oembed.php:41 ../../addon/impressum/impressum.php:80
#: ../../addon/oembed.old/oembed.php:41 ../../addon/impressum/impressum.php:82
#: ../../addon/blockem/blockem.php:57 ../../addon/qcomment/qcomment.php:61
#: ../../addon/openstreetmap/openstreetmap.php:70
#: ../../addon/mathjax/mathjax.php:42 ../../addon/editplain/editplain.php:84
@ -158,15 +157,10 @@ msgstr ""
#: ../../addon/twitter/twitter.php:209 ../../addon/twitter/twitter.php:375
#: ../../addon/irc/irc.php:55 ../../addon/blogger/blogger.php:102
#: ../../addon/posterous/posterous.php:90
#: ../../view/theme/diabook-red/config.php:76
#: ../../view/theme/diabook-blue/config.php:76
#: ../../view/theme/diabook/diabook-red/config.php:76
#: ../../view/theme/diabook/diabook-blue/config.php:76
#: ../../view/theme/diabook/diabook-aerith/config.php:76
#: ../../view/theme/diabook/diabook-pink/config.php:76
#: ../../view/theme/diabook/config.php:87
#: ../../view/theme/quattro/config.php:52
#: ../../view/theme/diabook-aerith/config.php:76
#: ../../view/theme/cleanzero/config.php:80
#: ../../view/theme/diabook/theme.php:683
#: ../../view/theme/diabook/config.php:190
#: ../../view/theme/quattro/config.php:52 ../../view/theme/dispy/config.php:70
#: ../../include/conversation.php:555
msgid "Submit"
msgstr ""
@ -179,11 +173,11 @@ msgstr ""
msgid "Help"
msgstr ""
#: ../../mod/help.php:38 ../../index.php:228
#: ../../mod/help.php:38 ../../index.php:225
msgid "Not Found"
msgstr ""
#: ../../mod/help.php:41 ../../index.php:231
#: ../../mod/help.php:41 ../../index.php:228
msgid "Page not found."
msgstr ""
@ -209,91 +203,84 @@ msgstr ""
msgid "Suggest a friend for %s"
msgstr ""
#: ../../mod/events.php:62
#: ../../mod/events.php:65
msgid "Event description and start time are required."
msgstr ""
#: ../../mod/events.php:230
#: ../../mod/events.php:258
msgid "l, F j"
msgstr ""
#: ../../mod/events.php:252
#: ../../mod/events.php:280
msgid "Edit event"
msgstr ""
#: ../../mod/events.php:272 ../../include/text.php:1053
#: ../../mod/events.php:300 ../../include/text.php:1054
msgid "link to source"
msgstr ""
#: ../../mod/events.php:296 ../../view/theme/diabook-red/theme.php:231
#: ../../view/theme/diabook-blue/theme.php:231
#: ../../view/theme/diabook/diabook-red/theme.php:231
#: ../../view/theme/diabook/diabook-blue/theme.php:231
#: ../../view/theme/diabook/theme.php:249
#: ../../view/theme/diabook/diabook-aerith/theme.php:233
#: ../../view/theme/diabook/diabook-pink/theme.php:233
#: ../../view/theme/diabook-aerith/theme.php:233 ../../include/nav.php:52
#: ../../boot.php:1471
#: ../../mod/events.php:324 ../../view/theme/diabook/theme.php:127
#: ../../include/nav.php:52 ../../boot.php:1493
msgid "Events"
msgstr ""
#: ../../mod/events.php:297
#: ../../mod/events.php:325
msgid "Create New Event"
msgstr ""
#: ../../mod/events.php:298
#: ../../mod/events.php:326
msgid "Previous"
msgstr ""
#: ../../mod/events.php:299 ../../mod/install.php:210
#: ../../mod/events.php:327 ../../mod/install.php:210
msgid "Next"
msgstr ""
#: ../../mod/events.php:371
#: ../../mod/events.php:399
msgid "hour:minute"
msgstr ""
#: ../../mod/events.php:380
#: ../../mod/events.php:408
msgid "Event details"
msgstr ""
#: ../../mod/events.php:381
#: ../../mod/events.php:409
#, php-format
msgid "Format is %s %s. Starting date and Description are required."
msgstr ""
#: ../../mod/events.php:383
#: ../../mod/events.php:411
msgid "Event Starts:"
msgstr ""
#: ../../mod/events.php:386
#: ../../mod/events.php:414
msgid "Finish date/time is not known or not relevant"
msgstr ""
#: ../../mod/events.php:388
#: ../../mod/events.php:416
msgid "Event Finishes:"
msgstr ""
#: ../../mod/events.php:391
#: ../../mod/events.php:419
msgid "Adjust for viewer timezone"
msgstr ""
#: ../../mod/events.php:393
#: ../../mod/events.php:421
msgid "Description:"
msgstr ""
#: ../../mod/events.php:395 ../../include/event.php:37
#: ../../include/bb2diaspora.php:260 ../../boot.php:1083
#: ../../mod/events.php:423 ../../include/event.php:37
#: ../../include/bb2diaspora.php:260 ../../boot.php:1092
msgid "Location:"
msgstr ""
#: ../../mod/events.php:397
#: ../../mod/events.php:425
msgid "Share this event"
msgstr ""
#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94
#: ../../mod/dfrn_request.php:752 ../../mod/settings.php:533
#: ../../mod/settings.php:559 ../../addon/js_upload/js_upload.php:45
#: ../../mod/dfrn_request.php:818 ../../mod/settings.php:540
#: ../../mod/settings.php:566 ../../addon/js_upload/js_upload.php:45
msgid "Cancel"
msgstr ""
@ -336,43 +323,36 @@ msgid ""
"and/or create new posts for you?"
msgstr ""
#: ../../mod/api.php:105 ../../mod/dfrn_request.php:740
#: ../../mod/settings.php:844 ../../mod/settings.php:850
#: ../../mod/settings.php:858 ../../mod/settings.php:862
#: ../../mod/settings.php:867 ../../mod/settings.php:873
#: ../../mod/settings.php:879 ../../mod/settings.php:885
#: ../../mod/settings.php:921 ../../mod/settings.php:922
#: ../../mod/settings.php:923 ../../mod/settings.php:924
#: ../../mod/register.php:532 ../../mod/profiles.php:475
#: ../../mod/api.php:105 ../../mod/dfrn_request.php:806
#: ../../mod/settings.php:854 ../../mod/settings.php:860
#: ../../mod/settings.php:868 ../../mod/settings.php:872
#: ../../mod/settings.php:877 ../../mod/settings.php:883
#: ../../mod/settings.php:889 ../../mod/settings.php:895
#: ../../mod/settings.php:931 ../../mod/settings.php:932
#: ../../mod/settings.php:933 ../../mod/settings.php:934
#: ../../mod/register.php:532 ../../mod/profiles.php:511
msgid "Yes"
msgstr ""
#: ../../mod/api.php:106 ../../mod/dfrn_request.php:741
#: ../../mod/settings.php:844 ../../mod/settings.php:850
#: ../../mod/settings.php:858 ../../mod/settings.php:862
#: ../../mod/settings.php:867 ../../mod/settings.php:873
#: ../../mod/settings.php:879 ../../mod/settings.php:885
#: ../../mod/settings.php:921 ../../mod/settings.php:922
#: ../../mod/settings.php:923 ../../mod/settings.php:924
#: ../../mod/register.php:533 ../../mod/profiles.php:476
#: ../../mod/api.php:106 ../../mod/dfrn_request.php:807
#: ../../mod/settings.php:854 ../../mod/settings.php:860
#: ../../mod/settings.php:868 ../../mod/settings.php:872
#: ../../mod/settings.php:877 ../../mod/settings.php:883
#: ../../mod/settings.php:889 ../../mod/settings.php:895
#: ../../mod/settings.php:931 ../../mod/settings.php:932
#: ../../mod/settings.php:933 ../../mod/settings.php:934
#: ../../mod/register.php:533 ../../mod/profiles.php:512
msgid "No"
msgstr ""
#: ../../mod/photos.php:43
#: ../../mod/photos.php:43 ../../boot.php:1487
msgid "Photo Albums"
msgstr ""
#: ../../mod/photos.php:51 ../../mod/photos.php:151 ../../mod/photos.php:879
#: ../../mod/photos.php:950 ../../mod/photos.php:965 ../../mod/photos.php:1382
#: ../../mod/photos.php:1394 ../../addon/communityhome/communityhome.php:110
#: ../../view/theme/diabook-red/theme.php:115
#: ../../view/theme/diabook-blue/theme.php:115
#: ../../view/theme/diabook/diabook-red/theme.php:115
#: ../../view/theme/diabook/diabook-blue/theme.php:115
#: ../../view/theme/diabook/theme.php:128
#: ../../view/theme/diabook/diabook-aerith/theme.php:116
#: ../../view/theme/diabook/diabook-pink/theme.php:116
#: ../../view/theme/diabook-aerith/theme.php:116
#: ../../view/theme/diabook/theme.php:526
msgid "Contact Photos"
msgstr ""
@ -395,14 +375,7 @@ msgstr ""
#: ../../mod/profile_photo.php:74 ../../mod/profile_photo.php:174
#: ../../mod/profile_photo.php:252 ../../mod/profile_photo.php:261
#: ../../addon/communityhome/communityhome.php:111
#: ../../view/theme/diabook-red/theme.php:116
#: ../../view/theme/diabook-blue/theme.php:116
#: ../../view/theme/diabook/diabook-red/theme.php:116
#: ../../view/theme/diabook/diabook-blue/theme.php:116
#: ../../view/theme/diabook/theme.php:129
#: ../../view/theme/diabook/diabook-aerith/theme.php:117
#: ../../view/theme/diabook/diabook-pink/theme.php:117
#: ../../view/theme/diabook-aerith/theme.php:117
#: ../../view/theme/diabook/theme.php:527
msgid "Profile Photos"
msgstr ""
@ -424,14 +397,7 @@ msgstr ""
#: ../../mod/photos.php:528 ../../mod/like.php:127 ../../mod/tagger.php:70
#: ../../addon/communityhome/communityhome.php:163
#: ../../view/theme/diabook-red/theme.php:87
#: ../../view/theme/diabook-blue/theme.php:87
#: ../../view/theme/diabook/diabook-red/theme.php:87
#: ../../view/theme/diabook/diabook-blue/theme.php:87
#: ../../view/theme/diabook/theme.php:100
#: ../../view/theme/diabook/diabook-aerith/theme.php:88
#: ../../view/theme/diabook/diabook-pink/theme.php:88
#: ../../view/theme/diabook-aerith/theme.php:88 ../../include/text.php:1304
#: ../../view/theme/diabook/theme.php:498 ../../include/text.php:1305
#: ../../include/diaspora.php:1654 ../../include/conversation.php:53
#: ../../include/conversation.php:126
msgid "photo"
@ -450,17 +416,17 @@ msgid "Image file is empty."
msgstr ""
#: ../../mod/photos.php:653 ../../mod/profile_photo.php:124
#: ../../mod/wall_upload.php:69
#: ../../mod/wall_upload.php:83
msgid "Unable to process image."
msgstr ""
#: ../../mod/photos.php:673 ../../mod/profile_photo.php:257
#: ../../mod/wall_upload.php:88
#: ../../mod/wall_upload.php:102
msgid "Image upload failed."
msgstr ""
#: ../../mod/photos.php:759 ../../mod/community.php:16
#: ../../mod/dfrn_request.php:671 ../../mod/viewcontacts.php:17
#: ../../mod/dfrn_request.php:732 ../../mod/viewcontacts.php:17
#: ../../mod/display.php:7 ../../mod/search.php:71 ../../mod/directory.php:29
msgid "Public access denied."
msgstr ""
@ -561,14 +527,14 @@ msgstr ""
msgid "I don't like this (toggle)"
msgstr ""
#: ../../mod/photos.php:1213 ../../include/conversation.php:956
#: ../../mod/photos.php:1213 ../../include/conversation.php:964
msgid "Share"
msgstr ""
#: ../../mod/photos.php:1214 ../../mod/editpost.php:104
#: ../../mod/wallmessage.php:145 ../../mod/message.php:188
#: ../../mod/message.php:357 ../../include/conversation.php:361
#: ../../include/conversation.php:698 ../../include/conversation.php:975
#: ../../mod/wallmessage.php:145 ../../mod/message.php:206
#: ../../mod/message.php:398 ../../include/conversation.php:361
#: ../../include/conversation.php:706 ../../include/conversation.php:983
msgid "Please wait"
msgstr ""
@ -579,18 +545,18 @@ msgstr ""
#: ../../mod/photos.php:1232 ../../mod/photos.php:1272
#: ../../mod/photos.php:1303 ../../include/conversation.php:554
#: ../../boot.php:495
#: ../../boot.php:506
msgid "Comment"
msgstr ""
#: ../../mod/photos.php:1234 ../../mod/editpost.php:125
#: ../../include/conversation.php:556 ../../include/conversation.php:993
#: ../../include/conversation.php:564 ../../include/conversation.php:1001
msgid "Preview"
msgstr ""
#: ../../mod/photos.php:1331 ../../mod/settings.php:595
#: ../../mod/settings.php:676 ../../mod/group.php:168 ../../mod/admin.php:577
#: ../../include/conversation.php:318 ../../include/conversation.php:576
#: ../../mod/photos.php:1331 ../../mod/settings.php:602
#: ../../mod/settings.php:683 ../../mod/group.php:168 ../../mod/admin.php:647
#: ../../include/conversation.php:318 ../../include/conversation.php:584
msgid "Delete"
msgstr ""
@ -606,50 +572,44 @@ msgstr ""
msgid "Not available."
msgstr ""
#: ../../mod/community.php:30 ../../view/theme/diabook-red/theme.php:233
#: ../../view/theme/diabook-blue/theme.php:233
#: ../../view/theme/diabook/diabook-red/theme.php:233
#: ../../view/theme/diabook/diabook-blue/theme.php:233
#: ../../view/theme/diabook/theme.php:251
#: ../../view/theme/diabook/diabook-aerith/theme.php:235
#: ../../view/theme/diabook/diabook-pink/theme.php:235
#: ../../view/theme/diabook-aerith/theme.php:235 ../../include/nav.php:101
#: ../../mod/community.php:30 ../../view/theme/diabook/theme.php:129
#: ../../include/nav.php:101
msgid "Community"
msgstr ""
#: ../../mod/community.php:61 ../../mod/search.php:115
#: ../../mod/community.php:61 ../../mod/search.php:128
msgid "No results."
msgstr ""
#: ../../mod/friendica.php:47
#: ../../mod/friendica.php:55
msgid "This is Friendica, version"
msgstr ""
#: ../../mod/friendica.php:48
#: ../../mod/friendica.php:56
msgid "running at web location"
msgstr ""
#: ../../mod/friendica.php:50
#: ../../mod/friendica.php:58
msgid ""
"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
"more about the Friendica project."
msgstr ""
#: ../../mod/friendica.php:52
#: ../../mod/friendica.php:60
msgid "Bug reports and issues: please visit"
msgstr ""
#: ../../mod/friendica.php:53
#: ../../mod/friendica.php:61
msgid ""
"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
"dot com"
msgstr ""
#: ../../mod/friendica.php:58
#: ../../mod/friendica.php:75
msgid "Installed plugins/addons/apps:"
msgstr ""
#: ../../mod/friendica.php:71
#: ../../mod/friendica.php:88
msgid "No installed plugins/addons/apps"
msgstr ""
@ -661,28 +621,28 @@ msgstr ""
msgid "Edit post"
msgstr ""
#: ../../mod/editpost.php:80 ../../include/conversation.php:942
#: ../../mod/editpost.php:80 ../../include/conversation.php:950
msgid "Post to Email"
msgstr ""
#: ../../mod/editpost.php:95 ../../mod/settings.php:594
#: ../../include/conversation.php:563
#: ../../mod/editpost.php:95 ../../mod/settings.php:601
#: ../../include/conversation.php:571
msgid "Edit"
msgstr ""
#: ../../mod/editpost.php:96 ../../mod/wallmessage.php:143
#: ../../mod/message.php:186 ../../mod/message.php:355
#: ../../include/conversation.php:957
#: ../../mod/message.php:204 ../../mod/message.php:396
#: ../../include/conversation.php:965
msgid "Upload photo"
msgstr ""
#: ../../mod/editpost.php:97 ../../include/conversation.php:959
#: ../../mod/editpost.php:97 ../../include/conversation.php:967
msgid "Attach file"
msgstr ""
#: ../../mod/editpost.php:98 ../../mod/wallmessage.php:144
#: ../../mod/message.php:187 ../../mod/message.php:356
#: ../../include/conversation.php:961
#: ../../mod/message.php:205 ../../mod/message.php:397
#: ../../include/conversation.php:969
msgid "Insert web link"
msgstr ""
@ -698,35 +658,35 @@ msgstr ""
msgid "Insert Vorbis [.ogg] audio"
msgstr ""
#: ../../mod/editpost.php:102 ../../include/conversation.php:967
#: ../../mod/editpost.php:102 ../../include/conversation.php:975
msgid "Set your location"
msgstr ""
#: ../../mod/editpost.php:103 ../../include/conversation.php:969
#: ../../mod/editpost.php:103 ../../include/conversation.php:977
msgid "Clear browser location"
msgstr ""
#: ../../mod/editpost.php:105 ../../include/conversation.php:976
#: ../../mod/editpost.php:105 ../../include/conversation.php:984
msgid "Permission settings"
msgstr ""
#: ../../mod/editpost.php:113 ../../include/conversation.php:985
#: ../../mod/editpost.php:113 ../../include/conversation.php:993
msgid "CC: email addresses"
msgstr ""
#: ../../mod/editpost.php:114 ../../include/conversation.php:986
#: ../../mod/editpost.php:114 ../../include/conversation.php:994
msgid "Public post"
msgstr ""
#: ../../mod/editpost.php:117 ../../include/conversation.php:972
#: ../../mod/editpost.php:117 ../../include/conversation.php:980
msgid "Set title"
msgstr ""
#: ../../mod/editpost.php:119 ../../include/conversation.php:974
#: ../../mod/editpost.php:119 ../../include/conversation.php:982
msgid "Categories (comma-separated list)"
msgstr ""
#: ../../mod/editpost.php:120 ../../include/conversation.php:988
#: ../../mod/editpost.php:120 ../../include/conversation.php:996
msgid "Example: bob@example.com, mary@example.com"
msgstr ""
@ -734,19 +694,19 @@ msgstr ""
msgid "This introduction has already been accepted."
msgstr ""
#: ../../mod/dfrn_request.php:117 ../../mod/dfrn_request.php:427
#: ../../mod/dfrn_request.php:117 ../../mod/dfrn_request.php:487
msgid "Profile location is not valid or does not contain profile information."
msgstr ""
#: ../../mod/dfrn_request.php:122 ../../mod/dfrn_request.php:432
#: ../../mod/dfrn_request.php:122 ../../mod/dfrn_request.php:492
msgid "Warning: profile location has no identifiable owner name."
msgstr ""
#: ../../mod/dfrn_request.php:124 ../../mod/dfrn_request.php:434
#: ../../mod/dfrn_request.php:124 ../../mod/dfrn_request.php:494
msgid "Warning: profile location has no profile photo."
msgstr ""
#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:437
#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:497
#, php-format
msgid "%d required parameter was not found at the given location"
msgid_plural "%d required parameters were not found at the given location"
@ -790,128 +750,128 @@ msgstr ""
msgid "This account has not been configured for email. Request failed."
msgstr ""
#: ../../mod/dfrn_request.php:372
#: ../../mod/dfrn_request.php:432
msgid "Unable to resolve your name at the provided location."
msgstr ""
#: ../../mod/dfrn_request.php:385
#: ../../mod/dfrn_request.php:445
msgid "You have already introduced yourself here."
msgstr ""
#: ../../mod/dfrn_request.php:389
#: ../../mod/dfrn_request.php:449
#, php-format
msgid "Apparently you are already friends with %s."
msgstr ""
#: ../../mod/dfrn_request.php:410
#: ../../mod/dfrn_request.php:470
msgid "Invalid profile URL."
msgstr ""
#: ../../mod/dfrn_request.php:416 ../../mod/follow.php:20
#: ../../mod/dfrn_request.php:476 ../../mod/follow.php:23
msgid "Disallowed profile URL."
msgstr ""
#: ../../mod/dfrn_request.php:485 ../../mod/contacts.php:102
#: ../../mod/dfrn_request.php:545 ../../mod/contacts.php:102
msgid "Failed to update contact record."
msgstr ""
#: ../../mod/dfrn_request.php:506
#: ../../mod/dfrn_request.php:566
msgid "Your introduction has been sent."
msgstr ""
#: ../../mod/dfrn_request.php:559
#: ../../mod/dfrn_request.php:619
msgid "Please login to confirm introduction."
msgstr ""
#: ../../mod/dfrn_request.php:573
#: ../../mod/dfrn_request.php:633
msgid ""
"Incorrect identity currently logged in. Please login to <strong>this</"
"strong> profile."
msgstr ""
#: ../../mod/dfrn_request.php:585
#: ../../mod/dfrn_request.php:645
#, php-format
msgid "Welcome home %s."
msgstr ""
#: ../../mod/dfrn_request.php:586
#: ../../mod/dfrn_request.php:646
#, php-format
msgid "Please confirm your introduction/connection request to %s."
msgstr ""
#: ../../mod/dfrn_request.php:587
#: ../../mod/dfrn_request.php:647
msgid "Confirm"
msgstr ""
#: ../../mod/dfrn_request.php:628 ../../include/items.php:2691
#: ../../mod/dfrn_request.php:688 ../../include/items.php:2717
msgid "[Name Withheld]"
msgstr ""
#: ../../mod/dfrn_request.php:715
#: ../../mod/dfrn_request.php:781
msgid ""
"Please enter your 'Identity Address' from one of the following supported "
"communications networks:"
msgstr ""
#: ../../mod/dfrn_request.php:731
#: ../../mod/dfrn_request.php:797
msgid "<strike>Connect as an email follower</strike> (Coming soon)"
msgstr ""
#: ../../mod/dfrn_request.php:733
#: ../../mod/dfrn_request.php:799
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:736
#: ../../mod/dfrn_request.php:802
msgid "Friend/Connection Request"
msgstr ""
#: ../../mod/dfrn_request.php:737
#: ../../mod/dfrn_request.php:803
msgid ""
"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
"testuser@identi.ca"
msgstr ""
#: ../../mod/dfrn_request.php:738
#: ../../mod/dfrn_request.php:804
msgid "Please answer the following:"
msgstr ""
#: ../../mod/dfrn_request.php:739
#: ../../mod/dfrn_request.php:805
#, php-format
msgid "Does %s know you?"
msgstr ""
#: ../../mod/dfrn_request.php:742
#: ../../mod/dfrn_request.php:808
msgid "Add a personal note:"
msgstr ""
#: ../../mod/dfrn_request.php:744 ../../include/contact_selectors.php:76
#: ../../mod/dfrn_request.php:810 ../../include/contact_selectors.php:76
msgid "Friendica"
msgstr ""
#: ../../mod/dfrn_request.php:745
#: ../../mod/dfrn_request.php:811
msgid "StatusNet/Federated Social Web"
msgstr ""
#: ../../mod/dfrn_request.php:746 ../../mod/settings.php:629
#: ../../mod/dfrn_request.php:812 ../../mod/settings.php:636
#: ../../include/contact_selectors.php:80
msgid "Diaspora"
msgstr ""
#: ../../mod/dfrn_request.php:747
#: ../../mod/dfrn_request.php:813
#, php-format
msgid ""
" - please do not use this form. Instead, enter %s into your Diaspora search "
"bar."
msgstr ""
#: ../../mod/dfrn_request.php:748
#: ../../mod/dfrn_request.php:814
msgid "Your Identity Address:"
msgstr ""
#: ../../mod/dfrn_request.php:751
#: ../../mod/dfrn_request.php:817
msgid "Submit Request"
msgstr ""
@ -1206,7 +1166,7 @@ msgid "is interested in:"
msgstr ""
#: ../../mod/match.php:58 ../../mod/suggest.php:59
#: ../../include/contact_widgets.php:9 ../../boot.php:1027
#: ../../include/contact_widgets.php:9 ../../boot.php:1036
msgid "Connect"
msgstr ""
@ -1237,8 +1197,8 @@ msgid "Discard"
msgstr ""
#: ../../mod/notifications.php:51 ../../mod/notifications.php:160
#: ../../mod/notifications.php:206 ../../mod/contacts.php:308
#: ../../mod/contacts.php:351
#: ../../mod/notifications.php:206 ../../mod/contacts.php:296
#: ../../mod/contacts.php:348
msgid "Ignore"
msgstr ""
@ -1250,19 +1210,12 @@ msgstr ""
msgid "Network"
msgstr ""
#: ../../mod/notifications.php:85 ../../mod/network.php:182
#: ../../mod/notifications.php:85 ../../mod/network.php:184
msgid "Personal"
msgstr ""
#: ../../mod/notifications.php:90 ../../view/theme/diabook-red/theme.php:227
#: ../../view/theme/diabook-blue/theme.php:227
#: ../../view/theme/diabook/diabook-red/theme.php:227
#: ../../view/theme/diabook/diabook-blue/theme.php:227
#: ../../view/theme/diabook/theme.php:245
#: ../../view/theme/diabook/diabook-aerith/theme.php:229
#: ../../view/theme/diabook/diabook-pink/theme.php:229
#: ../../view/theme/diabook-aerith/theme.php:229 ../../include/nav.php:77
#: ../../include/nav.php:115
#: ../../mod/notifications.php:90 ../../view/theme/diabook/theme.php:123
#: ../../include/nav.php:77 ../../include/nav.php:115
msgid "Home"
msgstr ""
@ -1270,7 +1223,7 @@ msgstr ""
msgid "Introductions"
msgstr ""
#: ../../mod/notifications.php:100 ../../mod/message.php:102
#: ../../mod/notifications.php:100 ../../mod/message.php:104
#: ../../include/nav.php:128
msgid "Messages"
msgstr ""
@ -1297,7 +1250,7 @@ msgid "suggested by %s"
msgstr ""
#: ../../mod/notifications.php:153 ../../mod/notifications.php:200
#: ../../mod/contacts.php:356
#: ../../mod/contacts.php:354
msgid "Hide this contact from others"
msgstr ""
@ -1310,7 +1263,7 @@ msgid "if applicable"
msgstr ""
#: ../../mod/notifications.php:157 ../../mod/notifications.php:204
#: ../../mod/admin.php:575
#: ../../mod/admin.php:645
msgid "Approve"
msgstr ""
@ -1447,217 +1400,275 @@ msgstr ""
msgid "Contact has been unignored"
msgstr ""
#: ../../mod/contacts.php:200
msgid "stopped following"
#: ../../mod/contacts.php:195
msgid "Contact has been archived"
msgstr ""
#: ../../mod/contacts.php:221
#: ../../mod/contacts.php:195
msgid "Contact has been unarchived"
msgstr ""
#: ../../mod/contacts.php:208
msgid "Contact has been removed."
msgstr ""
#: ../../mod/contacts.php:251
#: ../../mod/contacts.php:238
#, php-format
msgid "You are mutual friends with %s"
msgstr ""
#: ../../mod/contacts.php:255
#: ../../mod/contacts.php:242
#, php-format
msgid "You are sharing with %s"
msgstr ""
#: ../../mod/contacts.php:260
#: ../../mod/contacts.php:247
#, php-format
msgid "%s is sharing with you"
msgstr ""
#: ../../mod/contacts.php:277
#: ../../mod/contacts.php:264
msgid "Private communications are not available for this contact."
msgstr ""
#: ../../mod/contacts.php:280
#: ../../mod/contacts.php:267
msgid "Never"
msgstr ""
#: ../../mod/contacts.php:284
#: ../../mod/contacts.php:271
msgid "(Update was successful)"
msgstr ""
#: ../../mod/contacts.php:284
#: ../../mod/contacts.php:271
msgid "(Update was not successful)"
msgstr ""
#: ../../mod/contacts.php:286
#: ../../mod/contacts.php:273
msgid "Suggest friends"
msgstr ""
#: ../../mod/contacts.php:290
#: ../../mod/contacts.php:277
#, php-format
msgid "Network type: %s"
msgstr ""
#: ../../mod/contacts.php:293
#: ../../mod/contacts.php:280 ../../include/contact_widgets.php:183
#, php-format
msgid "%d contact in common"
msgid_plural "%d contacts in common"
msgstr[0] ""
msgstr[1] ""
#: ../../mod/contacts.php:298
#: ../../mod/contacts.php:285
msgid "View all contacts"
msgstr ""
#: ../../mod/contacts.php:303 ../../mod/contacts.php:350
#: ../../mod/admin.php:579
#: ../../mod/contacts.php:290 ../../mod/contacts.php:347
#: ../../mod/admin.php:649
msgid "Unblock"
msgstr ""
#: ../../mod/contacts.php:303 ../../mod/contacts.php:350
#: ../../mod/admin.php:578
#: ../../mod/contacts.php:290 ../../mod/contacts.php:347
#: ../../mod/admin.php:648
msgid "Block"
msgstr ""
#: ../../mod/contacts.php:308 ../../mod/contacts.php:351
#: ../../mod/contacts.php:293
msgid "Toggle Blocked status"
msgstr ""
#: ../../mod/contacts.php:296 ../../mod/contacts.php:348
msgid "Unignore"
msgstr ""
#: ../../mod/contacts.php:313
#: ../../mod/contacts.php:299
msgid "Toggle Ignored status"
msgstr ""
#: ../../mod/contacts.php:303
msgid "Unarchive"
msgstr ""
#: ../../mod/contacts.php:303
msgid "Archive"
msgstr ""
#: ../../mod/contacts.php:306
msgid "Toggle Archive status"
msgstr ""
#: ../../mod/contacts.php:309
msgid "Repair"
msgstr ""
#: ../../mod/contacts.php:323
#: ../../mod/contacts.php:312
msgid "Advanced Contact Settings"
msgstr ""
#: ../../mod/contacts.php:320
msgid "Contact Editor"
msgstr ""
#: ../../mod/contacts.php:326
#: ../../mod/contacts.php:323
msgid "Profile Visibility"
msgstr ""
#: ../../mod/contacts.php:327
#: ../../mod/contacts.php:324
#, php-format
msgid ""
"Please choose the profile you would like to display to %s when viewing your "
"profile securely."
msgstr ""
#: ../../mod/contacts.php:328
#: ../../mod/contacts.php:325
msgid "Contact Information / Notes"
msgstr ""
#: ../../mod/contacts.php:329
#: ../../mod/contacts.php:326
msgid "Edit contact notes"
msgstr ""
#: ../../mod/contacts.php:334 ../../mod/contacts.php:507
#: ../../mod/contacts.php:331 ../../mod/contacts.php:522
#: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40
#, php-format
msgid "Visit %s's profile [%s]"
msgstr ""
#: ../../mod/contacts.php:335
#: ../../mod/contacts.php:332
msgid "Block/Unblock contact"
msgstr ""
#: ../../mod/contacts.php:336
#: ../../mod/contacts.php:333
msgid "Ignore contact"
msgstr ""
#: ../../mod/contacts.php:337
#: ../../mod/contacts.php:334
msgid "Repair URL settings"
msgstr ""
#: ../../mod/contacts.php:338
#: ../../mod/contacts.php:335
msgid "View conversations"
msgstr ""
#: ../../mod/contacts.php:340
#: ../../mod/contacts.php:337
msgid "Delete contact"
msgstr ""
#: ../../mod/contacts.php:344
#: ../../mod/contacts.php:341
msgid "Last update:"
msgstr ""
#: ../../mod/contacts.php:345
#: ../../mod/contacts.php:342
msgid "Update public posts"
msgstr ""
#: ../../mod/contacts.php:347 ../../mod/admin.php:1051
#: ../../mod/contacts.php:344 ../../mod/admin.php:1120
msgid "Update now"
msgstr ""
#: ../../mod/contacts.php:354
#: ../../mod/contacts.php:351
msgid "Currently blocked"
msgstr ""
#: ../../mod/contacts.php:355
#: ../../mod/contacts.php:352
msgid "Currently ignored"
msgstr ""
#: ../../mod/contacts.php:356
#: ../../mod/contacts.php:353
msgid "Currently archived"
msgstr ""
#: ../../mod/contacts.php:354
msgid ""
"Replies/likes to your public posts <strong>may</strong> still be visible"
msgstr ""
#: ../../mod/contacts.php:405
#: ../../mod/contacts.php:407
msgid "Suggestions"
msgstr ""
#: ../../mod/contacts.php:410 ../../mod/group.php:191
#: ../../mod/contacts.php:410
msgid "Suggest potential friends"
msgstr ""
#: ../../mod/contacts.php:413 ../../mod/group.php:191
msgid "All Contacts"
msgstr ""
#: ../../mod/contacts.php:415
msgid "Unblocked Contacts"
#: ../../mod/contacts.php:416
msgid "Show all contacts"
msgstr ""
#: ../../mod/contacts.php:421
msgid "Blocked Contacts"
#: ../../mod/contacts.php:419
msgid "Unblocked"
msgstr ""
#: ../../mod/contacts.php:427
msgid "Ignored Contacts"
#: ../../mod/contacts.php:422
msgid "Only show unblocked contacts"
msgstr ""
#: ../../mod/contacts.php:426
msgid "Blocked"
msgstr ""
#: ../../mod/contacts.php:429
msgid "Only show blocked contacts"
msgstr ""
#: ../../mod/contacts.php:433
msgid "Hidden Contacts"
msgid "Ignored"
msgstr ""
#: ../../mod/contacts.php:483
#: ../../mod/contacts.php:436
msgid "Only show ignored contacts"
msgstr ""
#: ../../mod/contacts.php:440
msgid "Archived"
msgstr ""
#: ../../mod/contacts.php:443
msgid "Only show archived contacts"
msgstr ""
#: ../../mod/contacts.php:447
msgid "Hidden"
msgstr ""
#: ../../mod/contacts.php:450
msgid "Only show hidden contacts"
msgstr ""
#: ../../mod/contacts.php:498
msgid "Mutual Friendship"
msgstr ""
#: ../../mod/contacts.php:487
#: ../../mod/contacts.php:502
msgid "is a fan of yours"
msgstr ""
#: ../../mod/contacts.php:491
#: ../../mod/contacts.php:506
msgid "you are a fan of"
msgstr ""
#: ../../mod/contacts.php:508 ../../mod/nogroup.php:41
#: ../../mod/contacts.php:523 ../../mod/nogroup.php:41
msgid "Edit contact"
msgstr ""
#: ../../mod/contacts.php:529 ../../view/theme/diabook-red/theme.php:229
#: ../../view/theme/diabook-blue/theme.php:229
#: ../../view/theme/diabook/diabook-red/theme.php:229
#: ../../view/theme/diabook/diabook-blue/theme.php:229
#: ../../view/theme/diabook/theme.php:247
#: ../../view/theme/diabook/diabook-aerith/theme.php:231
#: ../../view/theme/diabook/diabook-pink/theme.php:231
#: ../../view/theme/diabook-aerith/theme.php:231 ../../include/nav.php:139
#: ../../mod/contacts.php:544 ../../view/theme/diabook/theme.php:125
#: ../../include/nav.php:139
msgid "Contacts"
msgstr ""
#: ../../mod/contacts.php:533
#: ../../mod/contacts.php:548
msgid "Search your contacts"
msgstr ""
#: ../../mod/contacts.php:534 ../../mod/directory.php:57
#: ../../mod/contacts.php:549 ../../mod/directory.php:57
msgid "Finding: "
msgstr ""
#: ../../mod/contacts.php:535 ../../mod/directory.php:59
#: ../../mod/contacts.php:550 ../../mod/directory.php:59
#: ../../include/contact_widgets.php:33
msgid "Find"
msgstr ""
@ -1677,10 +1688,11 @@ msgstr ""
#: ../../mod/lostpass.php:45 ../../mod/lostpass.php:107
#: ../../mod/register.php:388 ../../mod/register.php:442
#: ../../mod/regmod.php:54 ../../mod/dfrn_confirm.php:732
#: ../../addon/facebook/facebook.php:650
#: ../../addon/facebook/facebook.php:1136
#: ../../addon/testdrive/testdrive.php:58 ../../include/items.php:2700
#: ../../mod/regmod.php:54 ../../mod/dfrn_confirm.php:742
#: ../../addon/facebook/facebook.php:680
#: ../../addon/facebook/facebook.php:1170
#: ../../addon/testdrive/testdrive.php:58 ../../include/items.php:2726
#: ../../boot.php:686
msgid "Administrator"
msgstr ""
@ -1690,7 +1702,7 @@ msgid ""
"Password reset failed."
msgstr ""
#: ../../mod/lostpass.php:83 ../../boot.php:809
#: ../../mod/lostpass.php:83 ../../boot.php:818
msgid "Password Reset"
msgstr ""
@ -1758,467 +1770,475 @@ msgstr ""
msgid "Export personal data"
msgstr ""
#: ../../mod/settings.php:83 ../../mod/admin.php:665 ../../mod/admin.php:870
#: ../../addon/mathjax/mathjax.php:36 ../../include/nav.php:137
#: ../../mod/settings.php:80
msgid "Remove account"
msgstr ""
#: ../../mod/settings.php:88 ../../mod/admin.php:735 ../../mod/admin.php:940
#: ../../addon/mathjax/mathjax.php:36 ../../view/theme/diabook/theme.php:700
#: ../../include/nav.php:137
msgid "Settings"
msgstr ""
#: ../../mod/settings.php:126
#: ../../mod/settings.php:131
msgid "Missing some important data!"
msgstr ""
#: ../../mod/settings.php:129 ../../mod/settings.php:558
#: ../../mod/admin.php:97
#: ../../mod/settings.php:134 ../../mod/settings.php:565
msgid "Update"
msgstr ""
#: ../../mod/settings.php:234
#: ../../mod/settings.php:239
msgid "Failed to connect with email account using the settings provided."
msgstr ""
#: ../../mod/settings.php:239
#: ../../mod/settings.php:244
msgid "Email settings updated."
msgstr ""
#: ../../mod/settings.php:298
#: ../../mod/settings.php:303
msgid "Passwords do not match. Password unchanged."
msgstr ""
#: ../../mod/settings.php:303
#: ../../mod/settings.php:308
msgid "Empty passwords are not allowed. Password unchanged."
msgstr ""
#: ../../mod/settings.php:314
#: ../../mod/settings.php:319
msgid "Password changed."
msgstr ""
#: ../../mod/settings.php:316
#: ../../mod/settings.php:321
msgid "Password update failed. Please try again."
msgstr ""
#: ../../mod/settings.php:379
#: ../../mod/settings.php:385
msgid " Please use a shorter name."
msgstr ""
#: ../../mod/settings.php:381
#: ../../mod/settings.php:387
msgid " Name too short."
msgstr ""
#: ../../mod/settings.php:387
#: ../../mod/settings.php:393
msgid " Not valid email."
msgstr ""
#: ../../mod/settings.php:389
#: ../../mod/settings.php:395
msgid " Cannot change to that email."
msgstr ""
#: ../../mod/settings.php:461 ../../addon/facebook/facebook.php:469
#: ../../addon/impressum/impressum.php:75
#: ../../mod/settings.php:468 ../../addon/facebook/facebook.php:480
#: ../../addon/impressum/impressum.php:77
#: ../../addon/openstreetmap/openstreetmap.php:80
#: ../../addon/mathjax/mathjax.php:66 ../../addon/piwik/piwik.php:105
#: ../../addon/twitter/twitter.php:370
msgid "Settings updated."
msgstr ""
#: ../../mod/settings.php:531 ../../mod/settings.php:557
#: ../../mod/settings.php:593
#: ../../mod/settings.php:538 ../../mod/settings.php:564
#: ../../mod/settings.php:600
msgid "Add application"
msgstr ""
#: ../../mod/settings.php:535 ../../mod/settings.php:561
#: ../../mod/settings.php:542 ../../mod/settings.php:568
#: ../../addon/statusnet/statusnet.php:547
msgid "Consumer Key"
msgstr ""
#: ../../mod/settings.php:536 ../../mod/settings.php:562
#: ../../mod/settings.php:543 ../../mod/settings.php:569
#: ../../addon/statusnet/statusnet.php:546
msgid "Consumer Secret"
msgstr ""
#: ../../mod/settings.php:537 ../../mod/settings.php:563
#: ../../mod/settings.php:544 ../../mod/settings.php:570
msgid "Redirect"
msgstr ""
#: ../../mod/settings.php:538 ../../mod/settings.php:564
#: ../../mod/settings.php:545 ../../mod/settings.php:571
msgid "Icon url"
msgstr ""
#: ../../mod/settings.php:549
#: ../../mod/settings.php:556
msgid "You can't edit this application."
msgstr ""
#: ../../mod/settings.php:592
#: ../../mod/settings.php:599
msgid "Connected Apps"
msgstr ""
#: ../../mod/settings.php:596
#: ../../mod/settings.php:603
msgid "Client key starts with"
msgstr ""
#: ../../mod/settings.php:597
#: ../../mod/settings.php:604
msgid "No name"
msgstr ""
#: ../../mod/settings.php:598
#: ../../mod/settings.php:605
msgid "Remove authorization"
msgstr ""
#: ../../mod/settings.php:609
#: ../../mod/settings.php:616
msgid "No Plugin settings configured"
msgstr ""
#: ../../mod/settings.php:617 ../../addon/widgets/widgets.php:123
#: ../../mod/settings.php:624 ../../addon/widgets/widgets.php:123
msgid "Plugin Settings"
msgstr ""
#: ../../mod/settings.php:629 ../../mod/settings.php:630
#: ../../mod/settings.php:636 ../../mod/settings.php:637
#, php-format
msgid "Built-in support for %s connectivity is %s"
msgstr ""
#: ../../mod/settings.php:629 ../../mod/settings.php:630
#: ../../mod/settings.php:636 ../../mod/settings.php:637
msgid "enabled"
msgstr ""
#: ../../mod/settings.php:629 ../../mod/settings.php:630
#: ../../mod/settings.php:636 ../../mod/settings.php:637
msgid "disabled"
msgstr ""
#: ../../mod/settings.php:630
#: ../../mod/settings.php:637
msgid "StatusNet"
msgstr ""
#: ../../mod/settings.php:660
#: ../../mod/settings.php:667
msgid "Connector Settings"
msgstr ""
#: ../../mod/settings.php:665
#: ../../mod/settings.php:672
msgid "Email/Mailbox Setup"
msgstr ""
#: ../../mod/settings.php:666
#: ../../mod/settings.php:673
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:667
#: ../../mod/settings.php:674
msgid "Last successful email check:"
msgstr ""
#: ../../mod/settings.php:668
#: ../../mod/settings.php:675
msgid "Email access is disabled on this site."
msgstr ""
#: ../../mod/settings.php:669
#: ../../mod/settings.php:676
msgid "IMAP server name:"
msgstr ""
#: ../../mod/settings.php:670
#: ../../mod/settings.php:677
msgid "IMAP port:"
msgstr ""
#: ../../mod/settings.php:671
#: ../../mod/settings.php:678
msgid "Security:"
msgstr ""
#: ../../mod/settings.php:671 ../../mod/settings.php:676
#: ../../mod/settings.php:678 ../../mod/settings.php:683
msgid "None"
msgstr ""
#: ../../mod/settings.php:672
#: ../../mod/settings.php:679
msgid "Email login name:"
msgstr ""
#: ../../mod/settings.php:673
#: ../../mod/settings.php:680
msgid "Email password:"
msgstr ""
#: ../../mod/settings.php:674
#: ../../mod/settings.php:681
msgid "Reply-to address:"
msgstr ""
#: ../../mod/settings.php:675
#: ../../mod/settings.php:682
msgid "Send public posts to all email contacts:"
msgstr ""
#: ../../mod/settings.php:676
#: ../../mod/settings.php:683
msgid "Action after import:"
msgstr ""
#: ../../mod/settings.php:676
#: ../../mod/settings.php:683
msgid "Mark as seen"
msgstr ""
#: ../../mod/settings.php:676
#: ../../mod/settings.php:683
msgid "Move to folder"
msgstr ""
#: ../../mod/settings.php:677
#: ../../mod/settings.php:684
msgid "Move to folder:"
msgstr ""
#: ../../mod/settings.php:737
#: ../../mod/settings.php:744
msgid "Display Settings"
msgstr ""
#: ../../mod/settings.php:743
#: ../../mod/settings.php:750
msgid "Display Theme:"
msgstr ""
#: ../../mod/settings.php:744
#: ../../mod/settings.php:751
msgid "Update browser every xx seconds"
msgstr ""
#: ../../mod/settings.php:744
#: ../../mod/settings.php:751
msgid "Minimum of 10 seconds, no maximum"
msgstr ""
#: ../../mod/settings.php:745
#: ../../mod/settings.php:752
msgid "Number of items to display on the network page:"
msgstr ""
#: ../../mod/settings.php:745
#: ../../mod/settings.php:752
msgid "Maximum of 100 items"
msgstr ""
#: ../../mod/settings.php:746
#: ../../mod/settings.php:753
msgid "Don't show emoticons"
msgstr ""
#: ../../mod/settings.php:811 ../../mod/admin.php:173 ../../mod/admin.php:551
#: ../../mod/settings.php:821 ../../mod/admin.php:180 ../../mod/admin.php:621
msgid "Normal Account"
msgstr ""
#: ../../mod/settings.php:812
#: ../../mod/settings.php:822
msgid "This account is a normal personal profile"
msgstr ""
#: ../../mod/settings.php:815 ../../mod/admin.php:174 ../../mod/admin.php:552
#: ../../mod/settings.php:825 ../../mod/admin.php:181 ../../mod/admin.php:622
msgid "Soapbox Account"
msgstr ""
#: ../../mod/settings.php:816
#: ../../mod/settings.php:826
msgid "Automatically approve all connection/friend requests as read-only fans"
msgstr ""
#: ../../mod/settings.php:819 ../../mod/admin.php:175 ../../mod/admin.php:553
#: ../../mod/settings.php:829 ../../mod/admin.php:182 ../../mod/admin.php:623
msgid "Community/Celebrity Account"
msgstr ""
#: ../../mod/settings.php:820
#: ../../mod/settings.php:830
msgid "Automatically approve all connection/friend requests as read-write fans"
msgstr ""
#: ../../mod/settings.php:823 ../../mod/admin.php:176 ../../mod/admin.php:554
#: ../../mod/settings.php:833 ../../mod/admin.php:183 ../../mod/admin.php:624
msgid "Automatic Friend Account"
msgstr ""
#: ../../mod/settings.php:824
#: ../../mod/settings.php:834
msgid "Automatically approve all connection/friend requests as friends"
msgstr ""
#: ../../mod/settings.php:834
#: ../../mod/settings.php:844
msgid "OpenID:"
msgstr ""
#: ../../mod/settings.php:834
#: ../../mod/settings.php:844
msgid "(Optional) Allow this OpenID to login to this account."
msgstr ""
#: ../../mod/settings.php:844
#: ../../mod/settings.php:854
msgid "Publish your default profile in your local site directory?"
msgstr ""
#: ../../mod/settings.php:850
#: ../../mod/settings.php:860
msgid "Publish your default profile in the global social directory?"
msgstr ""
#: ../../mod/settings.php:858
#: ../../mod/settings.php:868
msgid "Hide your contact/friend list from viewers of your default profile?"
msgstr ""
#: ../../mod/settings.php:862
#: ../../mod/settings.php:872
msgid "Hide your profile details from unknown viewers?"
msgstr ""
#: ../../mod/settings.php:867
#: ../../mod/settings.php:877
msgid "Allow friends to post to your profile page?"
msgstr ""
#: ../../mod/settings.php:873
#: ../../mod/settings.php:883
msgid "Allow friends to tag your posts?"
msgstr ""
#: ../../mod/settings.php:879
#: ../../mod/settings.php:889
msgid "Allow us to suggest you as a potential friend to new members?"
msgstr ""
#: ../../mod/settings.php:885
#: ../../mod/settings.php:895
msgid "Permit unknown people to send you private mail?"
msgstr ""
#: ../../mod/settings.php:896
#: ../../mod/settings.php:906
msgid "Profile is <strong>not published</strong>."
msgstr ""
#: ../../mod/settings.php:902 ../../mod/profile_photo.php:211
#: ../../mod/settings.php:912 ../../mod/profile_photo.php:211
msgid "or"
msgstr ""
#: ../../mod/settings.php:907
#: ../../mod/settings.php:917
msgid "Your Identity Address is"
msgstr ""
#: ../../mod/settings.php:918
#: ../../mod/settings.php:928
msgid "Automatically expire posts after this many days:"
msgstr ""
#: ../../mod/settings.php:918
#: ../../mod/settings.php:928
msgid "If empty, posts will not expire. Expired posts will be deleted"
msgstr ""
#: ../../mod/settings.php:919
#: ../../mod/settings.php:929
msgid "Advanced expiration settings"
msgstr ""
#: ../../mod/settings.php:920
#: ../../mod/settings.php:930
msgid "Advanced Expiration"
msgstr ""
#: ../../mod/settings.php:921
#: ../../mod/settings.php:931
msgid "Expire posts:"
msgstr ""
#: ../../mod/settings.php:922
#: ../../mod/settings.php:932
msgid "Expire personal notes:"
msgstr ""
#: ../../mod/settings.php:923
#: ../../mod/settings.php:933
msgid "Expire starred posts:"
msgstr ""
#: ../../mod/settings.php:924
#: ../../mod/settings.php:934
msgid "Expire photos:"
msgstr ""
#: ../../mod/settings.php:928
#: ../../mod/settings.php:938
msgid "Account Settings"
msgstr ""
#: ../../mod/settings.php:937
#: ../../mod/settings.php:947
msgid "Password Settings"
msgstr ""
#: ../../mod/settings.php:938
#: ../../mod/settings.php:948
msgid "New Password:"
msgstr ""
#: ../../mod/settings.php:939
#: ../../mod/settings.php:949
msgid "Confirm:"
msgstr ""
#: ../../mod/settings.php:939
#: ../../mod/settings.php:949
msgid "Leave password fields blank unless changing"
msgstr ""
#: ../../mod/settings.php:943
#: ../../mod/settings.php:953
msgid "Basic Settings"
msgstr ""
#: ../../mod/settings.php:944 ../../include/profile_advanced.php:15
#: ../../mod/settings.php:954 ../../include/profile_advanced.php:15
msgid "Full Name:"
msgstr ""
#: ../../mod/settings.php:945
#: ../../mod/settings.php:955
msgid "Email Address:"
msgstr ""
#: ../../mod/settings.php:946
#: ../../mod/settings.php:956
msgid "Your Timezone:"
msgstr ""
#: ../../mod/settings.php:947
#: ../../mod/settings.php:957
msgid "Default Post Location:"
msgstr ""
#: ../../mod/settings.php:948
#: ../../mod/settings.php:958
msgid "Use Browser Location:"
msgstr ""
#: ../../mod/settings.php:951
#: ../../mod/settings.php:961
msgid "Security and Privacy Settings"
msgstr ""
#: ../../mod/settings.php:953
#: ../../mod/settings.php:963
msgid "Maximum Friend Requests/Day:"
msgstr ""
#: ../../mod/settings.php:953 ../../mod/settings.php:968
#: ../../mod/settings.php:963 ../../mod/settings.php:978
msgid "(to prevent spam abuse)"
msgstr ""
#: ../../mod/settings.php:954
#: ../../mod/settings.php:964
msgid "Default Post Permissions"
msgstr ""
#: ../../mod/settings.php:955
#: ../../mod/settings.php:965
msgid "(click to open/close)"
msgstr ""
#: ../../mod/settings.php:968
#: ../../mod/settings.php:978
msgid "Maximum private messages per day from unknown people:"
msgstr ""
#: ../../mod/settings.php:971
#: ../../mod/settings.php:981
msgid "Notification Settings"
msgstr ""
#: ../../mod/settings.php:972
#: ../../mod/settings.php:982
msgid "By default post a status message when:"
msgstr ""
#: ../../mod/settings.php:973
#: ../../mod/settings.php:983
msgid "accepting a friend request"
msgstr ""
#: ../../mod/settings.php:974
msgid "making an <em>interesting</em> profile change"
msgstr ""
#: ../../mod/settings.php:975
msgid "Send a notification email when:"
msgstr ""
#: ../../mod/settings.php:976
msgid "You receive an introduction"
msgstr ""
#: ../../mod/settings.php:977
msgid "Your introductions are confirmed"
msgstr ""
#: ../../mod/settings.php:978
msgid "Someone writes on your profile wall"
msgstr ""
#: ../../mod/settings.php:979
msgid "Someone writes a followup comment"
msgstr ""
#: ../../mod/settings.php:980
msgid "You receive a private message"
msgstr ""
#: ../../mod/settings.php:981
msgid "You receive a friend suggestion"
msgstr ""
#: ../../mod/settings.php:982
msgid "You are tagged in a post"
#: ../../mod/settings.php:984
msgid "joining a forum/community"
msgstr ""
#: ../../mod/settings.php:985
msgid "making an <em>interesting</em> profile change"
msgstr ""
#: ../../mod/settings.php:986
msgid "Send a notification email when:"
msgstr ""
#: ../../mod/settings.php:987
msgid "You receive an introduction"
msgstr ""
#: ../../mod/settings.php:988
msgid "Your introductions are confirmed"
msgstr ""
#: ../../mod/settings.php:989
msgid "Someone writes on your profile wall"
msgstr ""
#: ../../mod/settings.php:990
msgid "Someone writes a followup comment"
msgstr ""
#: ../../mod/settings.php:991
msgid "You receive a private message"
msgstr ""
#: ../../mod/settings.php:992
msgid "You receive a friend suggestion"
msgstr ""
#: ../../mod/settings.php:993
msgid "You are tagged in a post"
msgstr ""
#: ../../mod/settings.php:996
msgid "Advanced Page Settings"
msgstr ""
@ -2256,23 +2276,47 @@ msgstr ""
msgid "Commented Order"
msgstr ""
#: ../../mod/network.php:176
#: ../../mod/network.php:174
msgid "Sort by Comment Date"
msgstr ""
#: ../../mod/network.php:177
msgid "Posted Order"
msgstr ""
#: ../../mod/network.php:180
msgid "Sort by Post Date"
msgstr ""
#: ../../mod/network.php:187
msgid "Posts that mention or involve you"
msgstr ""
#: ../../mod/network.php:190
msgid "New"
msgstr ""
#: ../../mod/network.php:192
#: ../../mod/network.php:193
msgid "Activity Stream - by date"
msgstr ""
#: ../../mod/network.php:196
msgid "Starred"
msgstr ""
#: ../../mod/network.php:197
#: ../../mod/network.php:199
msgid "Favourite Posts"
msgstr ""
#: ../../mod/network.php:202
msgid "Shared Links"
msgstr ""
#: ../../mod/network.php:274
#: ../../mod/network.php:205
msgid "Interesting Links"
msgstr ""
#: ../../mod/network.php:281
#, php-format
msgid "Warning: This group contains %s member from an insecure network."
msgid_plural ""
@ -2280,40 +2324,42 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
#: ../../mod/network.php:277
#: ../../mod/network.php:284
msgid "Private messages to this group are at risk of public disclosure."
msgstr ""
#: ../../mod/network.php:322
#: ../../mod/network.php:329
msgid "No such group"
msgstr ""
#: ../../mod/network.php:333
#: ../../mod/network.php:340
msgid "Group is empty"
msgstr ""
#: ../../mod/network.php:337
#: ../../mod/network.php:344
msgid "Group: "
msgstr ""
#: ../../mod/network.php:347
#: ../../mod/network.php:354
msgid "Contact: "
msgstr ""
#: ../../mod/network.php:349
#: ../../mod/network.php:356
msgid "Private messages to this person are at risk of public disclosure."
msgstr ""
#: ../../mod/network.php:354
#: ../../mod/network.php:361
msgid "Invalid contact."
msgstr ""
#: ../../mod/notes.php:44 ../../boot.php:1476
#: ../../mod/notes.php:44 ../../boot.php:1499
msgid "Personal Notes"
msgstr ""
#: ../../mod/notes.php:63 ../../mod/filer.php:30
#: ../../addon/facebook/facebook.php:715 ../../include/text.php:652
#: ../../addon/facebook/facebook.php:748
#: ../../addon/privacy_image_cache/privacy_image_cache.php:147
#: ../../include/text.php:652
msgid "Save"
msgstr ""
@ -2322,7 +2368,7 @@ msgstr ""
msgid "Number of daily wall messages for %s exceeded. Message failed."
msgstr ""
#: ../../mod/wallmessage.php:56 ../../mod/message.php:59
#: ../../mod/wallmessage.php:56 ../../mod/message.php:61
msgid "No recipient selected."
msgstr ""
@ -2330,15 +2376,15 @@ msgstr ""
msgid "Unable to check your home location."
msgstr ""
#: ../../mod/wallmessage.php:62 ../../mod/message.php:66
#: ../../mod/wallmessage.php:62 ../../mod/message.php:68
msgid "Message could not be sent."
msgstr ""
#: ../../mod/wallmessage.php:65 ../../mod/message.php:69
#: ../../mod/wallmessage.php:65 ../../mod/message.php:71
msgid "Message collection failure."
msgstr ""
#: ../../mod/wallmessage.php:68 ../../mod/message.php:72
#: ../../mod/wallmessage.php:68 ../../mod/message.php:74
msgid "Message sent."
msgstr ""
@ -2346,12 +2392,12 @@ msgstr ""
msgid "No recipient."
msgstr ""
#: ../../mod/wallmessage.php:124 ../../mod/message.php:169
#: ../../include/conversation.php:910
#: ../../mod/wallmessage.php:124 ../../mod/message.php:171
#: ../../include/conversation.php:918
msgid "Please enter a link URL:"
msgstr ""
#: ../../mod/wallmessage.php:131 ../../mod/message.php:177
#: ../../mod/wallmessage.php:131 ../../mod/message.php:195
msgid "Send Private Message"
msgstr ""
@ -2362,18 +2408,18 @@ msgid ""
"your site allow private mail from unknown senders."
msgstr ""
#: ../../mod/wallmessage.php:133 ../../mod/message.php:178
#: ../../mod/message.php:347
#: ../../mod/wallmessage.php:133 ../../mod/message.php:196
#: ../../mod/message.php:388
msgid "To:"
msgstr ""
#: ../../mod/wallmessage.php:134 ../../mod/message.php:179
#: ../../mod/message.php:348
#: ../../mod/wallmessage.php:134 ../../mod/message.php:197
#: ../../mod/message.php:389
msgid "Subject:"
msgstr ""
#: ../../mod/wallmessage.php:140 ../../mod/message.php:183
#: ../../mod/message.php:351 ../../mod/invite.php:113
#: ../../mod/wallmessage.php:140 ../../mod/message.php:201
#: ../../mod/message.php:392 ../../mod/invite.php:113
msgid "Your message:"
msgstr ""
@ -2515,7 +2561,7 @@ msgstr ""
msgid "Group name changed."
msgstr ""
#: ../../mod/group.php:72 ../../mod/profperm.php:19 ../../index.php:308
#: ../../mod/group.php:72 ../../mod/profperm.php:19 ../../index.php:305
msgid "Permission denied"
msgstr ""
@ -2555,16 +2601,9 @@ msgstr ""
msgid "Profile Visibility Editor"
msgstr ""
#: ../../mod/profperm.php:103 ../../view/theme/diabook-red/theme.php:228
#: ../../view/theme/diabook-blue/theme.php:228
#: ../../view/theme/diabook/diabook-red/theme.php:228
#: ../../view/theme/diabook/diabook-blue/theme.php:228
#: ../../view/theme/diabook/theme.php:246
#: ../../view/theme/diabook/diabook-aerith/theme.php:230
#: ../../view/theme/diabook/diabook-pink/theme.php:230
#: ../../view/theme/diabook-aerith/theme.php:230
#: ../../mod/profperm.php:103 ../../view/theme/diabook/theme.php:124
#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:74
#: ../../include/nav.php:50 ../../boot.php:1458
#: ../../include/nav.php:50 ../../boot.php:1478
msgid "Profile"
msgstr ""
@ -2713,7 +2752,7 @@ msgstr ""
msgid "Your invitation ID: "
msgstr ""
#: ../../mod/register.php:553 ../../mod/admin.php:393
#: ../../mod/register.php:553 ../../mod/admin.php:405
msgid "Registration"
msgstr ""
@ -2736,7 +2775,7 @@ msgstr ""
msgid "Choose a nickname: "
msgstr ""
#: ../../mod/register.php:567 ../../include/nav.php:81 ../../boot.php:775
#: ../../mod/register.php:567 ../../include/nav.php:81 ../../boot.php:784
msgid "Register"
msgstr ""
@ -2745,42 +2784,20 @@ msgid "People Search"
msgstr ""
#: ../../mod/like.php:127 ../../mod/tagger.php:70
#: ../../addon/facebook/facebook.php:1655
#: ../../addon/facebook/facebook.php:1564
#: ../../addon/communityhome/communityhome.php:158
#: ../../addon/communityhome/communityhome.php:167
#: ../../view/theme/diabook-red/theme.php:82
#: ../../view/theme/diabook-red/theme.php:91
#: ../../view/theme/diabook-blue/theme.php:82
#: ../../view/theme/diabook-blue/theme.php:91
#: ../../view/theme/diabook/diabook-red/theme.php:82
#: ../../view/theme/diabook/diabook-red/theme.php:91
#: ../../view/theme/diabook/diabook-blue/theme.php:82
#: ../../view/theme/diabook/diabook-blue/theme.php:91
#: ../../view/theme/diabook/theme.php:95
#: ../../view/theme/diabook/theme.php:104
#: ../../view/theme/diabook/diabook-aerith/theme.php:83
#: ../../view/theme/diabook/diabook-aerith/theme.php:92
#: ../../view/theme/diabook/diabook-pink/theme.php:83
#: ../../view/theme/diabook/diabook-pink/theme.php:92
#: ../../view/theme/diabook-aerith/theme.php:83
#: ../../view/theme/diabook-aerith/theme.php:92
#: ../../include/diaspora.php:1654 ../../include/conversation.php:48
#: ../../include/conversation.php:57 ../../include/conversation.php:121
#: ../../include/conversation.php:130
#: ../../view/theme/diabook/theme.php:493
#: ../../view/theme/diabook/theme.php:502 ../../include/diaspora.php:1654
#: ../../include/conversation.php:48 ../../include/conversation.php:57
#: ../../include/conversation.php:121 ../../include/conversation.php:130
msgid "status"
msgstr ""
#: ../../mod/like.php:144 ../../addon/facebook/facebook.php:1659
#: ../../mod/like.php:144 ../../addon/facebook/facebook.php:1568
#: ../../addon/communityhome/communityhome.php:172
#: ../../view/theme/diabook-red/theme.php:96
#: ../../view/theme/diabook-blue/theme.php:96
#: ../../view/theme/diabook/diabook-red/theme.php:96
#: ../../view/theme/diabook/diabook-blue/theme.php:96
#: ../../view/theme/diabook/theme.php:109
#: ../../view/theme/diabook/diabook-aerith/theme.php:97
#: ../../view/theme/diabook/diabook-pink/theme.php:97
#: ../../view/theme/diabook-aerith/theme.php:97
#: ../../include/diaspora.php:1670 ../../include/conversation.php:65
#: ../../view/theme/diabook/theme.php:507 ../../include/diaspora.php:1670
#: ../../include/conversation.php:65
#, php-format
msgid "%1$s likes %2$s's %3$s"
msgstr ""
@ -2790,9 +2807,9 @@ msgstr ""
msgid "%1$s doesn't like %2$s's %3$s"
msgstr ""
#: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 ../../mod/admin.php:149
#: ../../mod/admin.php:614 ../../mod/admin.php:813 ../../mod/display.php:37
#: ../../mod/display.php:142 ../../include/items.php:3083
#: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 ../../mod/admin.php:156
#: ../../mod/admin.php:684 ../../mod/admin.php:883 ../../mod/display.php:37
#: ../../mod/display.php:142 ../../include/items.php:3084
msgid "Item not found."
msgstr ""
@ -2800,15 +2817,8 @@ msgstr ""
msgid "Access denied."
msgstr ""
#: ../../mod/fbrowser.php:23 ../../view/theme/diabook-red/theme.php:230
#: ../../view/theme/diabook-blue/theme.php:230
#: ../../view/theme/diabook/diabook-red/theme.php:230
#: ../../view/theme/diabook/diabook-blue/theme.php:230
#: ../../view/theme/diabook/theme.php:248
#: ../../view/theme/diabook/diabook-aerith/theme.php:232
#: ../../view/theme/diabook/diabook-pink/theme.php:232
#: ../../view/theme/diabook-aerith/theme.php:232 ../../include/nav.php:51
#: ../../boot.php:1463
#: ../../mod/fbrowser.php:23 ../../view/theme/diabook/theme.php:126
#: ../../include/nav.php:51 ../../boot.php:1484
msgid "Photos"
msgstr ""
@ -2837,34 +2847,34 @@ msgstr ""
msgid "Empty post discarded."
msgstr ""
#: ../../mod/item.php:372 ../../mod/wall_upload.php:85
#: ../../mod/wall_upload.php:94 ../../mod/wall_upload.php:101
#: ../../mod/item.php:372 ../../mod/wall_upload.php:99
#: ../../mod/wall_upload.php:108 ../../mod/wall_upload.php:115
#: ../../include/message.php:144
msgid "Wall Photos"
msgstr ""
#: ../../mod/item.php:762
#: ../../mod/item.php:781
msgid "System error. Post not saved."
msgstr ""
#: ../../mod/item.php:787
#: ../../mod/item.php:806
#, php-format
msgid ""
"This message was sent to you by %s, a member of the Friendica social network."
msgstr ""
#: ../../mod/item.php:789
#: ../../mod/item.php:808
#, php-format
msgid "You may visit them online at %s"
msgstr ""
#: ../../mod/item.php:790
#: ../../mod/item.php:809
msgid ""
"Please contact the sender by replying to this post if you do not wish to "
"receive these messages."
msgstr ""
#: ../../mod/item.php:792
#: ../../mod/item.php:811
#, php-format
msgid "%s posted an update."
msgstr ""
@ -2889,7 +2899,7 @@ msgstr ""
msgid "Unable to process image"
msgstr ""
#: ../../mod/profile_photo.php:115 ../../mod/wall_upload.php:60
#: ../../mod/profile_photo.php:115 ../../mod/wall_upload.php:74
#, php-format
msgid "Image exceeds size limit of %d"
msgstr ""
@ -2948,71 +2958,71 @@ msgstr ""
msgid "Please enter your password for verification:"
msgstr ""
#: ../../mod/message.php:22 ../../include/nav.php:131
#: ../../mod/message.php:9 ../../include/nav.php:131
msgid "New Message"
msgstr ""
#: ../../mod/message.php:63
#: ../../mod/message.php:65
msgid "Unable to locate contact information."
msgstr ""
#: ../../mod/message.php:117
#: ../../mod/message.php:119
msgid "Message deleted."
msgstr ""
#: ../../mod/message.php:147
#: ../../mod/message.php:149
msgid "Conversation removed."
msgstr ""
#: ../../mod/message.php:219
#: ../../mod/message.php:237
msgid "No messages."
msgstr ""
#: ../../mod/message.php:226
#: ../../mod/message.php:244
#, php-format
msgid "Unknown sender - %s"
msgstr ""
#: ../../mod/message.php:229
#: ../../mod/message.php:247
#, php-format
msgid "You and %s"
msgstr ""
#: ../../mod/message.php:232
#: ../../mod/message.php:250
#, php-format
msgid "%s and You"
msgstr ""
#: ../../mod/message.php:242 ../../mod/message.php:340
#: ../../mod/message.php:260 ../../mod/message.php:381
msgid "Delete conversation"
msgstr ""
#: ../../mod/message.php:245
#: ../../mod/message.php:263
msgid "D, d M Y - g:i A"
msgstr ""
#: ../../mod/message.php:247
#: ../../mod/message.php:265
#, php-format
msgid "%d message"
msgid_plural "%d messages"
msgstr[0] ""
msgstr[1] ""
#: ../../mod/message.php:282
#: ../../mod/message.php:300
msgid "Message not available."
msgstr ""
#: ../../mod/message.php:324
#: ../../mod/message.php:365
msgid "Delete message"
msgstr ""
#: ../../mod/message.php:342
#: ../../mod/message.php:383
msgid ""
"No secure communications available. You <strong>may</strong> be able to "
"respond from the sender's profile page."
msgstr ""
#: ../../mod/message.php:346
#: ../../mod/message.php:387
msgid "Send Reply"
msgstr ""
@ -3029,534 +3039,618 @@ msgstr ""
msgid "Theme settings updated."
msgstr ""
#: ../../mod/admin.php:93 ../../mod/admin.php:391
#: ../../mod/admin.php:96 ../../mod/admin.php:403
msgid "Site"
msgstr ""
#: ../../mod/admin.php:94 ../../mod/admin.php:569 ../../mod/admin.php:581
#: ../../mod/admin.php:97 ../../mod/admin.php:639 ../../mod/admin.php:651
msgid "Users"
msgstr ""
#: ../../mod/admin.php:95 ../../mod/admin.php:663 ../../mod/admin.php:705
#: ../../mod/admin.php:98 ../../mod/admin.php:733 ../../mod/admin.php:775
msgid "Plugins"
msgstr ""
#: ../../mod/admin.php:96 ../../mod/admin.php:868 ../../mod/admin.php:904
#: ../../mod/admin.php:99 ../../mod/admin.php:938 ../../mod/admin.php:974
msgid "Themes"
msgstr ""
#: ../../mod/admin.php:111 ../../mod/admin.php:992
#: ../../mod/admin.php:100
msgid "DB updates"
msgstr ""
#: ../../mod/admin.php:101
msgid "Software Update"
msgstr ""
#: ../../mod/admin.php:115 ../../mod/admin.php:1061
msgid "Logs"
msgstr ""
#: ../../mod/admin.php:116
#: ../../mod/admin.php:120
msgid "User registrations waiting for confirmation"
msgstr ""
#: ../../mod/admin.php:188 ../../mod/admin.php:390 ../../mod/admin.php:568
#: ../../mod/admin.php:662 ../../mod/admin.php:704 ../../mod/admin.php:867
#: ../../mod/admin.php:903 ../../mod/admin.php:991
#: ../../mod/admin.php:195 ../../mod/admin.php:402 ../../mod/admin.php:638
#: ../../mod/admin.php:732 ../../mod/admin.php:774 ../../mod/admin.php:937
#: ../../mod/admin.php:973 ../../mod/admin.php:1060
msgid "Administration"
msgstr ""
#: ../../mod/admin.php:189
#: ../../mod/admin.php:196
msgid "Summary"
msgstr ""
#: ../../mod/admin.php:190
#: ../../mod/admin.php:197
msgid "Registered users"
msgstr ""
#: ../../mod/admin.php:192
#: ../../mod/admin.php:199
msgid "Pending registrations"
msgstr ""
#: ../../mod/admin.php:193
#: ../../mod/admin.php:200
msgid "Version"
msgstr ""
#: ../../mod/admin.php:195
#: ../../mod/admin.php:202
msgid "Active plugins"
msgstr ""
#: ../../mod/admin.php:329
#: ../../mod/admin.php:341
msgid "Site settings updated."
msgstr ""
#: ../../mod/admin.php:377
#: ../../mod/admin.php:389
msgid "Closed"
msgstr ""
#: ../../mod/admin.php:378
#: ../../mod/admin.php:390
msgid "Requires approval"
msgstr ""
#: ../../mod/admin.php:379
#: ../../mod/admin.php:391
msgid "Open"
msgstr ""
#: ../../mod/admin.php:383
#: ../../mod/admin.php:395
msgid "No SSL policy, links will track page SSL state"
msgstr ""
#: ../../mod/admin.php:384
#: ../../mod/admin.php:396
msgid "Force all links to use SSL"
msgstr ""
#: ../../mod/admin.php:385
#: ../../mod/admin.php:397
msgid "Self-signed certificate, use SSL for local links only (discouraged)"
msgstr ""
#: ../../mod/admin.php:394
#: ../../mod/admin.php:406
msgid "File upload"
msgstr ""
#: ../../mod/admin.php:395
#: ../../mod/admin.php:407
msgid "Policies"
msgstr ""
#: ../../mod/admin.php:396
#: ../../mod/admin.php:408
msgid "Advanced"
msgstr ""
#: ../../mod/admin.php:400 ../../addon/statusnet/statusnet.php:544
#: ../../mod/admin.php:412 ../../addon/statusnet/statusnet.php:544
msgid "Site name"
msgstr ""
#: ../../mod/admin.php:401
#: ../../mod/admin.php:413
msgid "Banner/Logo"
msgstr ""
#: ../../mod/admin.php:402
#: ../../mod/admin.php:414
msgid "System language"
msgstr ""
#: ../../mod/admin.php:403
#: ../../mod/admin.php:415
msgid "System theme"
msgstr ""
#: ../../mod/admin.php:403
#: ../../mod/admin.php:415
msgid ""
"Default system theme - may be over-ridden by user profiles - <a href='#' "
"id='cnftheme'>change theme settings</a>"
msgstr ""
#: ../../mod/admin.php:404
#: ../../mod/admin.php:416
msgid "SSL link policy"
msgstr ""
#: ../../mod/admin.php:404
#: ../../mod/admin.php:416
msgid "Determines whether generated links should be forced to use SSL"
msgstr ""
#: ../../mod/admin.php:405
#: ../../mod/admin.php:417
msgid "Maximum image size"
msgstr ""
#: ../../mod/admin.php:405
#: ../../mod/admin.php:417
msgid ""
"Maximum size in bytes of uploaded images. Default is 0, which means no "
"limits."
msgstr ""
#: ../../mod/admin.php:407
#: ../../mod/admin.php:419
msgid "Register policy"
msgstr ""
#: ../../mod/admin.php:408
#: ../../mod/admin.php:420
msgid "Register text"
msgstr ""
#: ../../mod/admin.php:408
#: ../../mod/admin.php:420
msgid "Will be displayed prominently on the registration page."
msgstr ""
#: ../../mod/admin.php:409
#: ../../mod/admin.php:421
msgid "Accounts abandoned after x days"
msgstr ""
#: ../../mod/admin.php:409
#: ../../mod/admin.php:421
msgid ""
"Will not waste system resources polling external sites for abandonded "
"accounts. Enter 0 for no time limit."
msgstr ""
#: ../../mod/admin.php:410
#: ../../mod/admin.php:422
msgid "Allowed friend domains"
msgstr ""
#: ../../mod/admin.php:410
#: ../../mod/admin.php:422
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:411
#: ../../mod/admin.php:423
msgid "Allowed email domains"
msgstr ""
#: ../../mod/admin.php:411
#: ../../mod/admin.php:423
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:412
#: ../../mod/admin.php:424
msgid "Block public"
msgstr ""
#: ../../mod/admin.php:412
#: ../../mod/admin.php:424
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:413
#: ../../mod/admin.php:425
msgid "Force publish"
msgstr ""
#: ../../mod/admin.php:413
#: ../../mod/admin.php:425
msgid ""
"Check to force all profiles on this site to be listed in the site directory."
msgstr ""
#: ../../mod/admin.php:414
#: ../../mod/admin.php:426
msgid "Global directory update URL"
msgstr ""
#: ../../mod/admin.php:414
#: ../../mod/admin.php:426
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:416
#: ../../mod/admin.php:428
msgid "Block multiple registrations"
msgstr ""
#: ../../mod/admin.php:416
#: ../../mod/admin.php:428
msgid "Disallow users to register additional accounts for use as pages."
msgstr ""
#: ../../mod/admin.php:417
#: ../../mod/admin.php:429
msgid "OpenID support"
msgstr ""
#: ../../mod/admin.php:417
#: ../../mod/admin.php:429
msgid "OpenID support for registration and logins."
msgstr ""
#: ../../mod/admin.php:418
#: ../../mod/admin.php:430
msgid "Fullname check"
msgstr ""
#: ../../mod/admin.php:418
#: ../../mod/admin.php:430
msgid ""
"Force users to register with a space between firstname and lastname in Full "
"name, as an antispam measure"
msgstr ""
#: ../../mod/admin.php:419
#: ../../mod/admin.php:431
msgid "UTF-8 Regular expressions"
msgstr ""
#: ../../mod/admin.php:419
#: ../../mod/admin.php:431
msgid "Use PHP UTF8 regular expressions"
msgstr ""
#: ../../mod/admin.php:420
#: ../../mod/admin.php:432
msgid "Show Community Page"
msgstr ""
#: ../../mod/admin.php:420
#: ../../mod/admin.php:432
msgid ""
"Display a Community page showing all recent public postings on this site."
msgstr ""
#: ../../mod/admin.php:421
#: ../../mod/admin.php:433
msgid "Enable OStatus support"
msgstr ""
#: ../../mod/admin.php:421
#: ../../mod/admin.php:433
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:422
#: ../../mod/admin.php:434
msgid "Enable Diaspora support"
msgstr ""
#: ../../mod/admin.php:422
#: ../../mod/admin.php:434
msgid "Provide built-in Diaspora network compatibility."
msgstr ""
#: ../../mod/admin.php:423
#: ../../mod/admin.php:435
msgid "Only allow Friendica contacts"
msgstr ""
#: ../../mod/admin.php:423
#: ../../mod/admin.php:435
msgid ""
"All contacts must use Friendica protocols. All other built-in communication "
"protocols disabled."
msgstr ""
#: ../../mod/admin.php:424
#: ../../mod/admin.php:436
msgid "Verify SSL"
msgstr ""
#: ../../mod/admin.php:424
#: ../../mod/admin.php:436
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:425
#: ../../mod/admin.php:437
msgid "Proxy user"
msgstr ""
#: ../../mod/admin.php:426
#: ../../mod/admin.php:438
msgid "Proxy URL"
msgstr ""
#: ../../mod/admin.php:427
#: ../../mod/admin.php:439
msgid "Network timeout"
msgstr ""
#: ../../mod/admin.php:427
#: ../../mod/admin.php:439
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
msgstr ""
#: ../../mod/admin.php:453
#: ../../mod/admin.php:440
msgid "Delivery interval"
msgstr ""
#: ../../mod/admin.php:440
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:441
msgid "Poll interval"
msgstr ""
#: ../../mod/admin.php:441
msgid ""
"Delay background polling processes by this many seconds to reduce system "
"load. If 0, use delivery interval."
msgstr ""
#: ../../mod/admin.php:442
msgid "Maximum Load Average"
msgstr ""
#: ../../mod/admin.php:442
msgid ""
"Maximum system load before delivery and poll processes are deferred - "
"default 50."
msgstr ""
#: ../../mod/admin.php:456
msgid "Update has been marked successful"
msgstr ""
#: ../../mod/admin.php:466
#, php-format
msgid "Executing %s failed. Check system logs."
msgstr ""
#: ../../mod/admin.php:469
#, php-format
msgid "Update %s was successfully applied."
msgstr ""
#: ../../mod/admin.php:473
#, php-format
msgid "Update %s did not return a status. Unknown if it succeeded."
msgstr ""
#: ../../mod/admin.php:476
#, php-format
msgid "Update function %s could not be found."
msgstr ""
#: ../../mod/admin.php:491
msgid "No failed updates."
msgstr ""
#: ../../mod/admin.php:495
msgid "Failed Updates"
msgstr ""
#: ../../mod/admin.php:496
msgid ""
"This does not include updates prior to 1139, which did not return a status."
msgstr ""
#: ../../mod/admin.php:497
msgid "Mark success (if update was manually applied)"
msgstr ""
#: ../../mod/admin.php:498
msgid "Attempt to execute this update step automatically"
msgstr ""
#: ../../mod/admin.php:523
#, php-format
msgid "%s user blocked/unblocked"
msgid_plural "%s users blocked/unblocked"
msgstr[0] ""
msgstr[1] ""
#: ../../mod/admin.php:460
#: ../../mod/admin.php:530
#, php-format
msgid "%s user deleted"
msgid_plural "%s users deleted"
msgstr[0] ""
msgstr[1] ""
#: ../../mod/admin.php:499
#: ../../mod/admin.php:569
#, php-format
msgid "User '%s' deleted"
msgstr ""
#: ../../mod/admin.php:507
#: ../../mod/admin.php:577
#, php-format
msgid "User '%s' unblocked"
msgstr ""
#: ../../mod/admin.php:507
#: ../../mod/admin.php:577
#, php-format
msgid "User '%s' blocked"
msgstr ""
#: ../../mod/admin.php:571
#: ../../mod/admin.php:641
msgid "select all"
msgstr ""
#: ../../mod/admin.php:572
#: ../../mod/admin.php:642
msgid "User registrations waiting for confirm"
msgstr ""
#: ../../mod/admin.php:573
#: ../../mod/admin.php:643
msgid "Request date"
msgstr ""
#: ../../mod/admin.php:573 ../../mod/admin.php:582
#: ../../mod/admin.php:643 ../../mod/admin.php:652
#: ../../include/contact_selectors.php:79
msgid "Email"
msgstr ""
#: ../../mod/admin.php:574
#: ../../mod/admin.php:644
msgid "No registrations."
msgstr ""
#: ../../mod/admin.php:576
#: ../../mod/admin.php:646
msgid "Deny"
msgstr ""
#: ../../mod/admin.php:582
#: ../../mod/admin.php:652
msgid "Register date"
msgstr ""
#: ../../mod/admin.php:582
#: ../../mod/admin.php:652
msgid "Last login"
msgstr ""
#: ../../mod/admin.php:582
#: ../../mod/admin.php:652
msgid "Last item"
msgstr ""
#: ../../mod/admin.php:582
#: ../../mod/admin.php:652
msgid "Account"
msgstr ""
#: ../../mod/admin.php:584
#: ../../mod/admin.php:654
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:585
#: ../../mod/admin.php:655
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:626
#: ../../mod/admin.php:696
#, php-format
msgid "Plugin %s disabled."
msgstr ""
#: ../../mod/admin.php:630
#: ../../mod/admin.php:700
#, php-format
msgid "Plugin %s enabled."
msgstr ""
#: ../../mod/admin.php:640 ../../mod/admin.php:838
#: ../../mod/admin.php:710 ../../mod/admin.php:908
msgid "Disable"
msgstr ""
#: ../../mod/admin.php:642 ../../mod/admin.php:840
#: ../../mod/admin.php:712 ../../mod/admin.php:910
msgid "Enable"
msgstr ""
#: ../../mod/admin.php:664 ../../mod/admin.php:869
#: ../../mod/admin.php:734 ../../mod/admin.php:939
msgid "Toggle"
msgstr ""
#: ../../mod/admin.php:672 ../../mod/admin.php:879
#: ../../mod/admin.php:742 ../../mod/admin.php:949
msgid "Author: "
msgstr ""
#: ../../mod/admin.php:673 ../../mod/admin.php:880
#: ../../mod/admin.php:743 ../../mod/admin.php:950
msgid "Maintainer: "
msgstr ""
#: ../../mod/admin.php:802
#: ../../mod/admin.php:872
msgid "No themes found."
msgstr ""
#: ../../mod/admin.php:861
#: ../../mod/admin.php:931
msgid "Screenshot"
msgstr ""
#: ../../mod/admin.php:909
#: ../../mod/admin.php:979
msgid "[Experimental]"
msgstr ""
#: ../../mod/admin.php:910
#: ../../mod/admin.php:980
msgid "[Unsupported]"
msgstr ""
#: ../../mod/admin.php:937
#: ../../mod/admin.php:1007
msgid "Log settings updated."
msgstr ""
#: ../../mod/admin.php:994
#: ../../mod/admin.php:1063
msgid "Clear"
msgstr ""
#: ../../mod/admin.php:1000
#: ../../mod/admin.php:1069
msgid "Debugging"
msgstr ""
#: ../../mod/admin.php:1001
#: ../../mod/admin.php:1070
msgid "Log file"
msgstr ""
#: ../../mod/admin.php:1001
#: ../../mod/admin.php:1070
msgid ""
"Must be writable by web server. Relative to your Friendica top-level "
"directory."
msgstr ""
#: ../../mod/admin.php:1002
#: ../../mod/admin.php:1071
msgid "Log level"
msgstr ""
#: ../../mod/admin.php:1052
#: ../../mod/admin.php:1121
msgid "Close"
msgstr ""
#: ../../mod/admin.php:1058
#: ../../mod/admin.php:1127
msgid "FTP Host"
msgstr ""
#: ../../mod/admin.php:1059
#: ../../mod/admin.php:1128
msgid "FTP Path"
msgstr ""
#: ../../mod/admin.php:1060
#: ../../mod/admin.php:1129
msgid "FTP User"
msgstr ""
#: ../../mod/admin.php:1061
#: ../../mod/admin.php:1130
msgid "FTP Password"
msgstr ""
#: ../../mod/profile.php:21 ../../boot.php:940
#: ../../mod/profile.php:21 ../../boot.php:949
msgid "Requested profile is not available."
msgstr ""
#: ../../mod/profile.php:124 ../../mod/display.php:75
#: ../../mod/profile.php:126 ../../mod/display.php:75
msgid "Access to this profile has been restricted."
msgstr ""
#: ../../mod/profile.php:145
#: ../../mod/profile.php:151
msgid "Tips for New Members"
msgstr ""
#: ../../mod/ping.php:175
#: ../../mod/ping.php:177
msgid "{0} wants to be your friend"
msgstr ""
#: ../../mod/ping.php:180
#: ../../mod/ping.php:182
msgid "{0} sent you a message"
msgstr ""
#: ../../mod/ping.php:185
#: ../../mod/ping.php:187
msgid "{0} requested registration"
msgstr ""
#: ../../mod/ping.php:191
#: ../../mod/ping.php:193
#, php-format
msgid "{0} commented %s's post"
msgstr ""
#: ../../mod/ping.php:196
#: ../../mod/ping.php:198
#, php-format
msgid "{0} liked %s's post"
msgstr ""
#: ../../mod/ping.php:201
#: ../../mod/ping.php:203
#, php-format
msgid "{0} disliked %s's post"
msgstr ""
#: ../../mod/ping.php:206
#: ../../mod/ping.php:208
#, php-format
msgid "{0} is now friends with %s"
msgstr ""
#: ../../mod/ping.php:211
#: ../../mod/ping.php:213
msgid "{0} posted"
msgstr ""
#: ../../mod/ping.php:216
#: ../../mod/ping.php:218
#, php-format
msgid "{0} tagged %s's post with #%s"
msgstr ""
#: ../../mod/ping.php:222
#: ../../mod/ping.php:224
msgid "{0} mentioned you in a post"
msgstr ""
@ -3578,57 +3672,67 @@ msgstr ""
msgid "Login failed."
msgstr ""
#: ../../mod/follow.php:27
#: ../../mod/follow.php:30
msgid "Connect URL missing."
msgstr ""
#: ../../mod/follow.php:47
#: ../../mod/follow.php:56
msgid ""
"This site is not configured to allow communications with other networks."
msgstr ""
#: ../../mod/follow.php:48 ../../mod/follow.php:63
#: ../../mod/follow.php:57 ../../mod/follow.php:72
msgid "No compatible communication protocols or feeds were discovered."
msgstr ""
#: ../../mod/follow.php:61
#: ../../mod/follow.php:70
msgid "The profile address specified does not provide adequate information."
msgstr ""
#: ../../mod/follow.php:65
#: ../../mod/follow.php:74
msgid "An author or name was not found."
msgstr ""
#: ../../mod/follow.php:67
#: ../../mod/follow.php:76
msgid "No browser URL could be matched to this address."
msgstr ""
#: ../../mod/follow.php:74
#: ../../mod/follow.php:78
msgid ""
"Unable to match @-style Identity Address with a known protocol or email "
"contact."
msgstr ""
#: ../../mod/follow.php:79
msgid "Use mailto: in front of address to force email check."
msgstr ""
#: ../../mod/follow.php:85
msgid ""
"The profile address specified belongs to a network which has been disabled "
"on this site."
msgstr ""
#: ../../mod/follow.php:79
#: ../../mod/follow.php:90
msgid ""
"Limited profile. This person will be unable to receive direct/personal "
"notifications from you."
msgstr ""
#: ../../mod/follow.php:149
#: ../../mod/follow.php:160
msgid "Unable to retrieve contact information."
msgstr ""
#: ../../mod/follow.php:195
#: ../../mod/follow.php:206
msgid "following"
msgstr ""
#: ../../mod/common.php:34
#: ../../mod/common.php:42
msgid "Common Friends"
msgstr ""
#: ../../mod/common.php:42
msgid "No friends in common."
#: ../../mod/common.php:78
msgid "No contacts in common."
msgstr ""
#: ../../mod/display.php:135
@ -3647,8 +3751,8 @@ msgstr ""
msgid "Search This Site"
msgstr ""
#: ../../mod/profiles.php:21 ../../mod/profiles.php:339
#: ../../mod/profiles.php:453 ../../mod/dfrn_confirm.php:62
#: ../../mod/profiles.php:21 ../../mod/profiles.php:375
#: ../../mod/profiles.php:489 ../../mod/dfrn_confirm.php:62
msgid "Profile not found."
msgstr ""
@ -3656,263 +3760,272 @@ msgstr ""
msgid "Profile Name is required."
msgstr ""
#: ../../mod/profiles.php:143
#: ../../mod/profiles.php:145
msgid "Marital Status"
msgstr ""
#: ../../mod/profiles.php:144
#: ../../mod/profiles.php:149
msgid "Romantic Partner"
msgstr ""
#: ../../mod/profiles.php:145
#: ../../mod/profiles.php:153
msgid "Work/Employment"
msgstr ""
#: ../../mod/profiles.php:146
#: ../../mod/profiles.php:156
msgid "Religion"
msgstr ""
#: ../../mod/profiles.php:147
#: ../../mod/profiles.php:160
msgid "Political Views"
msgstr ""
#: ../../mod/profiles.php:148
#: ../../mod/profiles.php:164
msgid "Gender"
msgstr ""
#: ../../mod/profiles.php:149
#: ../../mod/profiles.php:168
msgid "Sexual Preference"
msgstr ""
#: ../../mod/profiles.php:150
#: ../../mod/profiles.php:172
msgid "Homepage"
msgstr ""
#: ../../mod/profiles.php:151
#: ../../mod/profiles.php:176
msgid "Interests"
msgstr ""
#: ../../mod/profiles.php:154
#: ../../mod/profiles.php:181
msgid "Location"
msgstr ""
#: ../../mod/profiles.php:225
#: ../../mod/profiles.php:253
msgid "Profile updated."
msgstr ""
#: ../../mod/profiles.php:300
#: ../../mod/profiles.php:320
msgid " and "
msgstr ""
#: ../../mod/profiles.php:328
msgid "public profile"
msgstr ""
#: ../../mod/profiles.php:302
#: ../../mod/profiles.php:331
#, php-format
msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
msgstr ""
#: ../../mod/profiles.php:335
#, php-format
msgid "%1$s has an updated %2$s, changing %3$s."
msgstr ""
#: ../../mod/profiles.php:358
#: ../../mod/profiles.php:394
msgid "Profile deleted."
msgstr ""
#: ../../mod/profiles.php:376 ../../mod/profiles.php:410
#: ../../mod/profiles.php:412 ../../mod/profiles.php:446
msgid "Profile-"
msgstr ""
#: ../../mod/profiles.php:395 ../../mod/profiles.php:437
#: ../../mod/profiles.php:431 ../../mod/profiles.php:473
msgid "New profile created."
msgstr ""
#: ../../mod/profiles.php:416
#: ../../mod/profiles.php:452
msgid "Profile unavailable to clone."
msgstr ""
#: ../../mod/profiles.php:474
#: ../../mod/profiles.php:510
msgid "Hide your contact/friend list from viewers of this profile?"
msgstr ""
#: ../../mod/profiles.php:497
#: ../../mod/profiles.php:533
msgid "Edit Profile Details"
msgstr ""
#: ../../mod/profiles.php:499
#: ../../mod/profiles.php:535
msgid "View this profile"
msgstr ""
#: ../../mod/profiles.php:500
#: ../../mod/profiles.php:536
msgid "Create a new profile using these settings"
msgstr ""
#: ../../mod/profiles.php:501
#: ../../mod/profiles.php:537
msgid "Clone this profile"
msgstr ""
#: ../../mod/profiles.php:502
#: ../../mod/profiles.php:538
msgid "Delete this profile"
msgstr ""
#: ../../mod/profiles.php:503
#: ../../mod/profiles.php:539
msgid "Profile Name:"
msgstr ""
#: ../../mod/profiles.php:504
#: ../../mod/profiles.php:540
msgid "Your Full Name:"
msgstr ""
#: ../../mod/profiles.php:505
#: ../../mod/profiles.php:541
msgid "Title/Description:"
msgstr ""
#: ../../mod/profiles.php:506
#: ../../mod/profiles.php:542
msgid "Your Gender:"
msgstr ""
#: ../../mod/profiles.php:507
#: ../../mod/profiles.php:543
#, php-format
msgid "Birthday (%s):"
msgstr ""
#: ../../mod/profiles.php:508
#: ../../mod/profiles.php:544
msgid "Street Address:"
msgstr ""
#: ../../mod/profiles.php:509
#: ../../mod/profiles.php:545
msgid "Locality/City:"
msgstr ""
#: ../../mod/profiles.php:510
#: ../../mod/profiles.php:546
msgid "Postal/Zip Code:"
msgstr ""
#: ../../mod/profiles.php:511
#: ../../mod/profiles.php:547
msgid "Country:"
msgstr ""
#: ../../mod/profiles.php:512
#: ../../mod/profiles.php:548
msgid "Region/State:"
msgstr ""
#: ../../mod/profiles.php:513
#: ../../mod/profiles.php:549
msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
msgstr ""
#: ../../mod/profiles.php:514
#: ../../mod/profiles.php:550
msgid "Who: (if applicable)"
msgstr ""
#: ../../mod/profiles.php:515
#: ../../mod/profiles.php:551
msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
msgstr ""
#: ../../mod/profiles.php:516 ../../include/profile_advanced.php:43
#: ../../mod/profiles.php:552 ../../include/profile_advanced.php:43
msgid "Sexual Preference:"
msgstr ""
#: ../../mod/profiles.php:517
#: ../../mod/profiles.php:553
msgid "Homepage URL:"
msgstr ""
#: ../../mod/profiles.php:518 ../../include/profile_advanced.php:49
#: ../../mod/profiles.php:554 ../../include/profile_advanced.php:49
msgid "Political Views:"
msgstr ""
#: ../../mod/profiles.php:519
#: ../../mod/profiles.php:555
msgid "Religious Views:"
msgstr ""
#: ../../mod/profiles.php:520
#: ../../mod/profiles.php:556
msgid "Public Keywords:"
msgstr ""
#: ../../mod/profiles.php:521
#: ../../mod/profiles.php:557
msgid "Private Keywords:"
msgstr ""
#: ../../mod/profiles.php:522
#: ../../mod/profiles.php:558
msgid "Example: fishing photography software"
msgstr ""
#: ../../mod/profiles.php:523
#: ../../mod/profiles.php:559
msgid "(Used for suggesting potential friends, can be seen by others)"
msgstr ""
#: ../../mod/profiles.php:524
#: ../../mod/profiles.php:560
msgid "(Used for searching profiles, never shown to others)"
msgstr ""
#: ../../mod/profiles.php:525
#: ../../mod/profiles.php:561
msgid "Tell us about yourself..."
msgstr ""
#: ../../mod/profiles.php:526
#: ../../mod/profiles.php:562
msgid "Hobbies/Interests"
msgstr ""
#: ../../mod/profiles.php:527
#: ../../mod/profiles.php:563
msgid "Contact information and Social Networks"
msgstr ""
#: ../../mod/profiles.php:528
#: ../../mod/profiles.php:564
msgid "Musical interests"
msgstr ""
#: ../../mod/profiles.php:529
#: ../../mod/profiles.php:565
msgid "Books, literature"
msgstr ""
#: ../../mod/profiles.php:530
#: ../../mod/profiles.php:566
msgid "Television"
msgstr ""
#: ../../mod/profiles.php:531
#: ../../mod/profiles.php:567
msgid "Film/dance/culture/entertainment"
msgstr ""
#: ../../mod/profiles.php:532
#: ../../mod/profiles.php:568
msgid "Love/romance"
msgstr ""
#: ../../mod/profiles.php:533
#: ../../mod/profiles.php:569
msgid "Work/employment"
msgstr ""
#: ../../mod/profiles.php:534
#: ../../mod/profiles.php:570
msgid "School/education"
msgstr ""
#: ../../mod/profiles.php:539
#: ../../mod/profiles.php:575
msgid ""
"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
"be visible to anybody using the internet."
msgstr ""
#: ../../mod/profiles.php:549 ../../mod/directory.php:111
#: ../../mod/profiles.php:585 ../../mod/directory.php:111
msgid "Age: "
msgstr ""
#: ../../mod/profiles.php:584
#: ../../mod/profiles.php:620
msgid "Edit/Manage Profiles"
msgstr ""
#: ../../mod/profiles.php:585 ../../boot.php:1049
#: ../../mod/profiles.php:621 ../../boot.php:1058
msgid "Change profile photo"
msgstr ""
#: ../../mod/profiles.php:586 ../../boot.php:1050
#: ../../mod/profiles.php:622 ../../boot.php:1059
msgid "Create New Profile"
msgstr ""
#: ../../mod/profiles.php:597 ../../boot.php:1060
#: ../../mod/profiles.php:633 ../../boot.php:1069
msgid "Profile Image"
msgstr ""
#: ../../mod/profiles.php:599 ../../boot.php:1063
#: ../../mod/profiles.php:635 ../../boot.php:1072
msgid "visible to everybody"
msgstr ""
#: ../../mod/profiles.php:600 ../../boot.php:1064
#: ../../mod/profiles.php:636 ../../boot.php:1073
msgid "Edit visibility"
msgstr ""
#: ../../mod/filer.php:29 ../../include/conversation.php:914
#: ../../mod/filer.php:29 ../../include/conversation.php:922
msgid "Save to Folder:"
msgstr ""
@ -3960,14 +4073,7 @@ msgstr ""
msgid "No entries."
msgstr ""
#: ../../mod/suggest.php:38 ../../view/theme/diabook-red/theme.php:143
#: ../../view/theme/diabook-blue/theme.php:143
#: ../../view/theme/diabook/diabook-red/theme.php:143
#: ../../view/theme/diabook/diabook-blue/theme.php:143
#: ../../view/theme/diabook/theme.php:157
#: ../../view/theme/diabook/diabook-aerith/theme.php:145
#: ../../view/theme/diabook/diabook-pink/theme.php:145
#: ../../view/theme/diabook-aerith/theme.php:145
#: ../../mod/suggest.php:38 ../../view/theme/diabook/theme.php:554
#: ../../include/contact_widgets.php:34
msgid "Friend Suggestions"
msgstr ""
@ -3982,14 +4088,12 @@ msgstr ""
msgid "Ignore/Hide"
msgstr ""
#: ../../mod/directory.php:47 ../../view/theme/diabook-red/theme.php:141
#: ../../view/theme/diabook-blue/theme.php:141
#: ../../view/theme/diabook/diabook-red/theme.php:141
#: ../../view/theme/diabook/diabook-blue/theme.php:141
#: ../../view/theme/diabook/theme.php:155
#: ../../view/theme/diabook/diabook-aerith/theme.php:143
#: ../../view/theme/diabook/diabook-pink/theme.php:143
#: ../../view/theme/diabook-aerith/theme.php:143
#: ../../mod/acl.php:134
#, php-format
msgid "%s [%s]"
msgstr ""
#: ../../mod/directory.php:47 ../../view/theme/diabook/theme.php:552
msgid "Global Directory"
msgstr ""
@ -4128,118 +4232,135 @@ msgstr ""
msgid "Unable to set contact photo."
msgstr ""
#: ../../mod/dfrn_confirm.php:477 ../../include/diaspora.php:507
#: ../../mod/dfrn_confirm.php:482 ../../include/diaspora.php:507
#: ../../include/conversation.php:101
#, php-format
msgid "%1$s is now friends with %2$s"
msgstr ""
#: ../../mod/dfrn_confirm.php:548
#: ../../mod/dfrn_confirm.php:554
#, php-format
msgid "No user record found for '%s' "
msgstr ""
#: ../../mod/dfrn_confirm.php:558
#: ../../mod/dfrn_confirm.php:564
msgid "Our site encryption key is apparently messed up."
msgstr ""
#: ../../mod/dfrn_confirm.php:569
#: ../../mod/dfrn_confirm.php:575
msgid "Empty site URL was provided or URL could not be decrypted by us."
msgstr ""
#: ../../mod/dfrn_confirm.php:590
#: ../../mod/dfrn_confirm.php:596
msgid "Contact record was not found for you on our site."
msgstr ""
#: ../../mod/dfrn_confirm.php:604
#: ../../mod/dfrn_confirm.php:610
#, php-format
msgid "Site public key not available in contact record for URL %s."
msgstr ""
#: ../../mod/dfrn_confirm.php:624
#: ../../mod/dfrn_confirm.php:630
msgid ""
"The ID provided by your system is a duplicate on our system. It should work "
"if you try again."
msgstr ""
#: ../../mod/dfrn_confirm.php:635
#: ../../mod/dfrn_confirm.php:641
msgid "Unable to set your contact credentials on our system."
msgstr ""
#: ../../mod/dfrn_confirm.php:700
#: ../../mod/dfrn_confirm.php:706
msgid "Unable to update your contact profile details on our system"
msgstr ""
#: ../../mod/dfrn_confirm.php:730
#: ../../mod/dfrn_confirm.php:740
#, php-format
msgid "Connection accepted at %s"
msgstr ""
#: ../../addon/facebook/facebook.php:490
#: ../../mod/dfrn_confirm.php:789
#, php-format
msgid "%1$s has joined %2$s"
msgstr ""
#: ../../addon/facebook/facebook.php:501
msgid "Facebook disabled"
msgstr ""
#: ../../addon/facebook/facebook.php:495
#: ../../addon/facebook/facebook.php:506
msgid "Updating contacts"
msgstr ""
#: ../../addon/facebook/facebook.php:515
#: ../../addon/facebook/facebook.php:529
msgid "Facebook API key is missing."
msgstr ""
#: ../../addon/facebook/facebook.php:522
#: ../../addon/facebook/facebook.php:536
msgid "Facebook Connect"
msgstr ""
#: ../../addon/facebook/facebook.php:528
#: ../../addon/facebook/facebook.php:542
msgid "Install Facebook connector for this account."
msgstr ""
#: ../../addon/facebook/facebook.php:535
#: ../../addon/facebook/facebook.php:549
msgid "Remove Facebook connector"
msgstr ""
#: ../../addon/facebook/facebook.php:540
#: ../../addon/facebook/facebook.php:554
msgid ""
"Re-authenticate [This is necessary whenever your Facebook password is "
"changed.]"
msgstr ""
#: ../../addon/facebook/facebook.php:547
#: ../../addon/facebook/facebook.php:561
msgid "Post to Facebook by default"
msgstr ""
#: ../../addon/facebook/facebook.php:551
#: ../../addon/facebook/facebook.php:567
msgid ""
"Facebook friend linking has been disabled on this site. The following "
"settings will have no effect."
msgstr ""
#: ../../addon/facebook/facebook.php:571
msgid ""
"Facebook friend linking has been disabled on this site. If you disable it, "
"you will be unable to re-enable it."
msgstr ""
#: ../../addon/facebook/facebook.php:574
msgid "Link all your Facebook friends and conversations on this website"
msgstr ""
#: ../../addon/facebook/facebook.php:553
#: ../../addon/facebook/facebook.php:576
msgid ""
"Facebook conversations consist of your <em>profile wall</em> and your friend "
"<em>stream</em>."
msgstr ""
#: ../../addon/facebook/facebook.php:554
#: ../../addon/facebook/facebook.php:577
msgid "On this website, your Facebook friend stream is only visible to you."
msgstr ""
#: ../../addon/facebook/facebook.php:555
#: ../../addon/facebook/facebook.php:578
msgid ""
"The following settings determine the privacy of your Facebook profile wall "
"on this website."
msgstr ""
#: ../../addon/facebook/facebook.php:559
#: ../../addon/facebook/facebook.php:582
msgid ""
"On this website your Facebook profile wall conversations will only be "
"visible to you"
msgstr ""
#: ../../addon/facebook/facebook.php:564
#: ../../addon/facebook/facebook.php:587
msgid "Do not import your Facebook profile wall conversations"
msgstr ""
#: ../../addon/facebook/facebook.php:566
#: ../../addon/facebook/facebook.php:589
msgid ""
"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 "
@ -4247,114 +4368,120 @@ msgid ""
"who may see the conversations."
msgstr ""
#: ../../addon/facebook/facebook.php:571
#: ../../addon/facebook/facebook.php:594
msgid "Comma separated applications to ignore"
msgstr ""
#: ../../addon/facebook/facebook.php:648
#: ../../addon/facebook/facebook.php:678
msgid "Problems with Facebook Real-Time Updates"
msgstr ""
#: ../../addon/facebook/facebook.php:675
#: ../../addon/facebook/facebook.php:706
#: ../../include/contact_selectors.php:81
msgid "Facebook"
msgstr ""
#: ../../addon/facebook/facebook.php:676
#: ../../addon/facebook/facebook.php:707
msgid "Facebook Connector Settings"
msgstr ""
#: ../../addon/facebook/facebook.php:691
#: ../../addon/facebook/facebook.php:722
msgid "Facebook API Key"
msgstr ""
#: ../../addon/facebook/facebook.php:700
#: ../../addon/facebook/facebook.php:732
msgid ""
"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>"
msgstr ""
#: ../../addon/facebook/facebook.php:705
#: ../../addon/facebook/facebook.php:737
msgid ""
"Error: the given API Key seems to be incorrect (the application access token "
"could not be retrieved)."
msgstr ""
#: ../../addon/facebook/facebook.php:707
#: ../../addon/facebook/facebook.php:739
msgid "The given API Key seems to work correctly."
msgstr ""
#: ../../addon/facebook/facebook.php:709
#: ../../addon/facebook/facebook.php:741
msgid ""
"The correctness of the API Key could not be detected. Somthing strange's "
"going on."
msgstr ""
#: ../../addon/facebook/facebook.php:712
#: ../../addon/facebook/facebook.php:744
msgid "App-ID / API-Key"
msgstr ""
#: ../../addon/facebook/facebook.php:713
#: ../../addon/facebook/facebook.php:745
msgid "Application secret"
msgstr ""
#: ../../addon/facebook/facebook.php:714
#: ../../addon/facebook/facebook.php:746
#, php-format
msgid "Polling Interval (min. %1$s minutes)"
msgid "Polling Interval in minutes (minimum %1$s minutes)"
msgstr ""
#: ../../addon/facebook/facebook.php:718
#: ../../addon/facebook/facebook.php:747
msgid ""
"Synchronize comments (no comments on Facebook are missed, at the cost of "
"increased system load)"
msgstr ""
#: ../../addon/facebook/facebook.php:751
msgid "Real-Time Updates"
msgstr ""
#: ../../addon/facebook/facebook.php:722
#: ../../addon/facebook/facebook.php:755
msgid "Real-Time Updates are activated."
msgstr ""
#: ../../addon/facebook/facebook.php:723
#: ../../addon/facebook/facebook.php:756
msgid "Deactivate Real-Time Updates"
msgstr ""
#: ../../addon/facebook/facebook.php:725
#: ../../addon/facebook/facebook.php:758
msgid "Real-Time Updates not activated."
msgstr ""
#: ../../addon/facebook/facebook.php:725
#: ../../addon/facebook/facebook.php:758
msgid "Activate Real-Time Updates"
msgstr ""
#: ../../addon/facebook/facebook.php:743
#: ../../addon/facebook/facebook.php:777
msgid "The new values have been saved."
msgstr ""
#: ../../addon/facebook/facebook.php:767
#: ../../addon/facebook/facebook.php:801
msgid "Post to Facebook"
msgstr ""
#: ../../addon/facebook/facebook.php:865
#: ../../addon/facebook/facebook.php:899
msgid ""
"Post to Facebook cancelled because of multi-network access permission "
"conflict."
msgstr ""
#: ../../addon/facebook/facebook.php:1085
#: ../../addon/facebook/facebook.php:1119
msgid "View on Friendica"
msgstr ""
#: ../../addon/facebook/facebook.php:1118
#: ../../addon/facebook/facebook.php:1152
msgid "Facebook post failed. Queued for retry."
msgstr ""
#: ../../addon/facebook/facebook.php:1158
#: ../../addon/facebook/facebook.php:1192
msgid "Your Facebook connection became invalid. Please Re-authenticate."
msgstr ""
#: ../../addon/facebook/facebook.php:1159
#: ../../addon/facebook/facebook.php:1193
msgid "Facebook connection became invalid"
msgstr ""
#: ../../addon/facebook/facebook.php:1160
#: ../../addon/facebook/facebook.php:1194
#, php-format
msgid ""
"Hi %1$s,\n"
@ -4364,6 +4491,26 @@ msgid ""
"connection again, you have to %3$sre-authenticate the Facebook-connector%4$s."
msgstr ""
#: ../../addon/privacy_image_cache/privacy_image_cache.php:144
msgid "Lifetime of the cache (in hours)"
msgstr ""
#: ../../addon/privacy_image_cache/privacy_image_cache.php:149
msgid "Cache Statistics"
msgstr ""
#: ../../addon/privacy_image_cache/privacy_image_cache.php:152
msgid "Number of items"
msgstr ""
#: ../../addon/privacy_image_cache/privacy_image_cache.php:154
msgid "Size of the cache"
msgstr ""
#: ../../addon/privacy_image_cache/privacy_image_cache.php:156
msgid "Delete the whole cache"
msgstr ""
#: ../../addon/widgets/widget_like.php:58
#, php-format
msgid "%d person likes this"
@ -4378,6 +4525,10 @@ msgid_plural "%d people don't like this"
msgstr[0] ""
msgstr[1] ""
#: ../../addon/widgets/widget_friendheader.php:40
msgid "Get added to this list!"
msgstr ""
#: ../../addon/widgets/widgets.php:56
msgid "Generate new key"
msgstr ""
@ -4477,10 +4628,16 @@ msgstr ""
msgid "%s - Click to open/close"
msgstr ""
#: ../../addon/page/page.php:47
#: ../../addon/page/page.php:48
msgid "Forums"
msgstr ""
#: ../../addon/page/page.php:63 ../../addon/showmore/showmore.php:87
#: ../../include/contact_widgets.php:187 ../../include/conversation.php:466
#: ../../boot.php:507
msgid "show more"
msgstr ""
#: ../../addon/planets/planets.php:150
msgid "Planets Settings"
msgstr ""
@ -4493,7 +4650,7 @@ msgstr ""
#: ../../addon/communityhome/communityhome.php:34
#: ../../addon/communityhome/twillingham/communityhome.php:28
#: ../../addon/communityhome/twillingham/communityhome.php:34
#: ../../include/nav.php:64 ../../boot.php:796
#: ../../include/nav.php:64 ../../boot.php:805
msgid "Login"
msgstr ""
@ -4521,14 +4678,7 @@ msgid "Latest likes"
msgstr ""
#: ../../addon/communityhome/communityhome.php:155
#: ../../view/theme/diabook-red/theme.php:79
#: ../../view/theme/diabook-blue/theme.php:79
#: ../../view/theme/diabook/diabook-red/theme.php:79
#: ../../view/theme/diabook/diabook-blue/theme.php:79
#: ../../view/theme/diabook/theme.php:92
#: ../../view/theme/diabook/diabook-aerith/theme.php:80
#: ../../view/theme/diabook/diabook-pink/theme.php:80
#: ../../view/theme/diabook-aerith/theme.php:80 ../../include/text.php:1302
#: ../../view/theme/diabook/theme.php:490 ../../include/text.php:1303
#: ../../include/conversation.php:45 ../../include/conversation.php:118
msgid "event"
msgstr ""
@ -4680,7 +4830,7 @@ msgid "Post to Drupal by default"
msgstr ""
#: ../../addon/drpost/drpost.php:184 ../../addon/wppost/wppost.php:190
#: ../../addon/blogger/blogger.php:172 ../../addon/posterous/posterous.php:173
#: ../../addon/blogger/blogger.php:172 ../../addon/posterous/posterous.php:177
msgid "Post from Friendica"
msgstr ""
@ -4736,67 +4886,69 @@ msgstr ""
msgid "URL to embed:"
msgstr ""
#: ../../addon/impressum/impressum.php:34
#: ../../addon/impressum/impressum.php:36
msgid "Impressum"
msgstr ""
#: ../../addon/impressum/impressum.php:47
#: ../../addon/impressum/impressum.php:49
#: ../../addon/impressum/impressum.php:81
#: ../../addon/impressum/impressum.php:51
#: ../../addon/impressum/impressum.php:83
msgid "Site Owner"
msgstr ""
#: ../../addon/impressum/impressum.php:47
#: ../../addon/impressum/impressum.php:85
#: ../../addon/impressum/impressum.php:49
#: ../../addon/impressum/impressum.php:87
msgid "Email Address"
msgstr ""
#: ../../addon/impressum/impressum.php:52
#: ../../addon/impressum/impressum.php:83
#: ../../addon/impressum/impressum.php:54
#: ../../addon/impressum/impressum.php:85
msgid "Postal Address"
msgstr ""
#: ../../addon/impressum/impressum.php:58
#: ../../addon/impressum/impressum.php:60
msgid ""
"The impressum addon needs to be configured!<br />Please add at least the "
"<tt>owner</tt> variable to your config file. For other variables please "
"refer to the README file of the addon."
msgstr ""
#: ../../addon/impressum/impressum.php:81
#: ../../addon/impressum/impressum.php:83
msgid "The page operators name."
msgstr ""
#: ../../addon/impressum/impressum.php:82
#: ../../addon/impressum/impressum.php:84
msgid "Site Owners Profile"
msgstr ""
#: ../../addon/impressum/impressum.php:82
#: ../../addon/impressum/impressum.php:84
msgid "Profile address of the operator."
msgstr ""
#: ../../addon/impressum/impressum.php:83
msgid "How to contact the operator via snail mail."
#: ../../addon/impressum/impressum.php:85
msgid "How to contact the operator via snail mail. You can use BBCode here."
msgstr ""
#: ../../addon/impressum/impressum.php:84
#: ../../addon/impressum/impressum.php:86
msgid "Notes"
msgstr ""
#: ../../addon/impressum/impressum.php:84
msgid "Additional notes that are displayed beneath the contact information."
#: ../../addon/impressum/impressum.php:86
msgid ""
"Additional notes that are displayed beneath the contact information. You can "
"use BBCode here."
msgstr ""
#: ../../addon/impressum/impressum.php:85
#: ../../addon/impressum/impressum.php:87
msgid "How to contact the operator via email. (will be displayed obfuscated)"
msgstr ""
#: ../../addon/impressum/impressum.php:86
#: ../../addon/impressum/impressum.php:88
msgid "Footer note"
msgstr ""
#: ../../addon/impressum/impressum.php:86
msgid "Text for the footer."
#: ../../addon/impressum/impressum.php:88
msgid "Text for the footer. You can use BBCode here."
msgstr ""
#: ../../addon/buglink/buglink.php:15
@ -5239,11 +5391,6 @@ msgstr ""
msgid "Show More Settings saved."
msgstr ""
#: ../../addon/showmore/showmore.php:87 ../../include/conversation.php:466
#: ../../boot.php:496
msgid "show more"
msgstr ""
#: ../../addon/piwik/piwik.php:79
msgid ""
"This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> "
@ -5426,250 +5573,193 @@ msgstr ""
msgid "Post to Posterous by default"
msgstr ""
#: ../../view/theme/diabook-red/theme.php:28
#: ../../view/theme/diabook-blue/theme.php:28
#: ../../view/theme/diabook/diabook-red/theme.php:28
#: ../../view/theme/diabook/diabook-blue/theme.php:28
#: ../../view/theme/diabook/theme.php:41
#: ../../view/theme/diabook/diabook-aerith/theme.php:29
#: ../../view/theme/diabook/diabook-pink/theme.php:29
#: ../../view/theme/diabook-aerith/theme.php:29
msgid "Last users"
#: ../../view/theme/cleanzero/config.php:82
#: ../../view/theme/diabook/config.php:192
#: ../../view/theme/quattro/config.php:54 ../../view/theme/dispy/config.php:72
msgid "Theme settings"
msgstr ""
#: ../../view/theme/diabook-red/theme.php:57
#: ../../view/theme/diabook-blue/theme.php:57
#: ../../view/theme/diabook/diabook-red/theme.php:57
#: ../../view/theme/diabook/diabook-blue/theme.php:57
#: ../../view/theme/diabook/theme.php:70
#: ../../view/theme/diabook/diabook-aerith/theme.php:58
#: ../../view/theme/diabook/diabook-pink/theme.php:58
#: ../../view/theme/diabook-aerith/theme.php:58
msgid "Last likes"
#: ../../view/theme/cleanzero/config.php:83
msgid "Set resize level for images in posts and comments (width and height)"
msgstr ""
#: ../../view/theme/diabook-red/theme.php:102
#: ../../view/theme/diabook-blue/theme.php:102
#: ../../view/theme/diabook/diabook-red/theme.php:102
#: ../../view/theme/diabook/diabook-blue/theme.php:102
#: ../../view/theme/diabook/theme.php:115
#: ../../view/theme/diabook/diabook-aerith/theme.php:103
#: ../../view/theme/diabook/diabook-pink/theme.php:103
#: ../../view/theme/diabook-aerith/theme.php:103
msgid "Last photos"
#: ../../view/theme/cleanzero/config.php:84
#: ../../view/theme/diabook/config.php:193
#: ../../view/theme/dispy/config.php:73
msgid "Set font-size for posts and comments"
msgstr ""
#: ../../view/theme/diabook-red/theme.php:139
#: ../../view/theme/diabook-blue/theme.php:139
#: ../../view/theme/diabook/diabook-red/theme.php:139
#: ../../view/theme/diabook/diabook-blue/theme.php:139
#: ../../view/theme/diabook/theme.php:153
#: ../../view/theme/diabook/diabook-aerith/theme.php:141
#: ../../view/theme/diabook/diabook-pink/theme.php:141
#: ../../view/theme/diabook-aerith/theme.php:141
msgid "Find Friends"
#: ../../view/theme/cleanzero/config.php:85
msgid "Set theme width"
msgstr ""
#: ../../view/theme/diabook-red/theme.php:140
#: ../../view/theme/diabook-blue/theme.php:140
#: ../../view/theme/diabook/diabook-red/theme.php:140
#: ../../view/theme/diabook/diabook-blue/theme.php:140
#: ../../view/theme/diabook/theme.php:154
#: ../../view/theme/diabook/diabook-aerith/theme.php:142
#: ../../view/theme/diabook/diabook-pink/theme.php:142
#: ../../view/theme/diabook-aerith/theme.php:142
msgid "Local Directory"
#: ../../view/theme/cleanzero/config.php:86
#: ../../view/theme/quattro/config.php:56
msgid "Color scheme"
msgstr ""
#: ../../view/theme/diabook-red/theme.php:142
#: ../../view/theme/diabook-blue/theme.php:142
#: ../../view/theme/diabook/diabook-red/theme.php:142
#: ../../view/theme/diabook/diabook-blue/theme.php:142
#: ../../view/theme/diabook/theme.php:156
#: ../../view/theme/diabook/diabook-aerith/theme.php:144
#: ../../view/theme/diabook/diabook-pink/theme.php:144
#: ../../view/theme/diabook-aerith/theme.php:144
#: ../../include/contact_widgets.php:35
msgid "Similar Interests"
msgstr ""
#: ../../view/theme/diabook-red/theme.php:144
#: ../../view/theme/diabook-blue/theme.php:144
#: ../../view/theme/diabook/diabook-red/theme.php:144
#: ../../view/theme/diabook/diabook-blue/theme.php:144
#: ../../view/theme/diabook/theme.php:158
#: ../../view/theme/diabook/diabook-aerith/theme.php:146
#: ../../view/theme/diabook/diabook-pink/theme.php:146
#: ../../view/theme/diabook-aerith/theme.php:146
#: ../../include/contact_widgets.php:37
msgid "Invite Friends"
msgstr ""
#: ../../view/theme/diabook-red/theme.php:159
#: ../../view/theme/diabook-red/theme.php:234
#: ../../view/theme/diabook-blue/theme.php:159
#: ../../view/theme/diabook-blue/theme.php:234
#: ../../view/theme/diabook/diabook-red/theme.php:159
#: ../../view/theme/diabook/diabook-red/theme.php:234
#: ../../view/theme/diabook/diabook-blue/theme.php:159
#: ../../view/theme/diabook/diabook-blue/theme.php:234
#: ../../view/theme/diabook/theme.php:174
#: ../../view/theme/diabook/theme.php:252
#: ../../view/theme/diabook/diabook-aerith/theme.php:161
#: ../../view/theme/diabook/diabook-aerith/theme.php:236
#: ../../view/theme/diabook/diabook-pink/theme.php:161
#: ../../view/theme/diabook/diabook-pink/theme.php:236
#: ../../view/theme/diabook-aerith/theme.php:161
#: ../../view/theme/diabook-aerith/theme.php:236
msgid "Community Pages"
msgstr ""
#: ../../view/theme/diabook-red/theme.php:192
#: ../../view/theme/diabook-blue/theme.php:192
#: ../../view/theme/diabook/diabook-red/theme.php:192
#: ../../view/theme/diabook/diabook-blue/theme.php:192
#: ../../view/theme/diabook/theme.php:207
#: ../../view/theme/diabook/diabook-aerith/theme.php:194
#: ../../view/theme/diabook/diabook-pink/theme.php:194
#: ../../view/theme/diabook-aerith/theme.php:194
msgid "Help or @NewHere ?"
msgstr ""
#: ../../view/theme/diabook-red/theme.php:198
#: ../../view/theme/diabook-blue/theme.php:198
#: ../../view/theme/diabook/diabook-red/theme.php:198
#: ../../view/theme/diabook/diabook-blue/theme.php:198
#: ../../view/theme/diabook/theme.php:213
#: ../../view/theme/diabook/diabook-aerith/theme.php:200
#: ../../view/theme/diabook/diabook-pink/theme.php:200
#: ../../view/theme/diabook-aerith/theme.php:200
msgid "Connect Services"
msgstr ""
#: ../../view/theme/diabook-red/theme.php:227
#: ../../view/theme/diabook-blue/theme.php:227
#: ../../view/theme/diabook/diabook-red/theme.php:227
#: ../../view/theme/diabook/diabook-blue/theme.php:227
#: ../../view/theme/diabook/theme.php:245
#: ../../view/theme/diabook/diabook-aerith/theme.php:229
#: ../../view/theme/diabook/diabook-pink/theme.php:229
#: ../../view/theme/diabook-aerith/theme.php:229 ../../include/nav.php:49
#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:49
#: ../../include/nav.php:115
msgid "Your posts and conversations"
msgstr ""
#: ../../view/theme/diabook-red/theme.php:228
#: ../../view/theme/diabook-blue/theme.php:228
#: ../../view/theme/diabook/diabook-red/theme.php:228
#: ../../view/theme/diabook/diabook-blue/theme.php:228
#: ../../view/theme/diabook/theme.php:246
#: ../../view/theme/diabook/diabook-aerith/theme.php:230
#: ../../view/theme/diabook/diabook-pink/theme.php:230
#: ../../view/theme/diabook-aerith/theme.php:230 ../../include/nav.php:50
#: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:50
msgid "Your profile page"
msgstr ""
#: ../../view/theme/diabook-red/theme.php:229
#: ../../view/theme/diabook-blue/theme.php:229
#: ../../view/theme/diabook/diabook-red/theme.php:229
#: ../../view/theme/diabook/diabook-blue/theme.php:229
#: ../../view/theme/diabook/theme.php:247
#: ../../view/theme/diabook/diabook-aerith/theme.php:231
#: ../../view/theme/diabook/diabook-pink/theme.php:231
#: ../../view/theme/diabook-aerith/theme.php:231
#: ../../view/theme/diabook/theme.php:125
msgid "Your contacts"
msgstr ""
#: ../../view/theme/diabook-red/theme.php:230
#: ../../view/theme/diabook-blue/theme.php:230
#: ../../view/theme/diabook/diabook-red/theme.php:230
#: ../../view/theme/diabook/diabook-blue/theme.php:230
#: ../../view/theme/diabook/theme.php:248
#: ../../view/theme/diabook/diabook-aerith/theme.php:232
#: ../../view/theme/diabook/diabook-pink/theme.php:232
#: ../../view/theme/diabook-aerith/theme.php:232 ../../include/nav.php:51
#: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:51
msgid "Your photos"
msgstr ""
#: ../../view/theme/diabook-red/theme.php:231
#: ../../view/theme/diabook-blue/theme.php:231
#: ../../view/theme/diabook/diabook-red/theme.php:231
#: ../../view/theme/diabook/diabook-blue/theme.php:231
#: ../../view/theme/diabook/theme.php:249
#: ../../view/theme/diabook/diabook-aerith/theme.php:233
#: ../../view/theme/diabook/diabook-pink/theme.php:233
#: ../../view/theme/diabook-aerith/theme.php:233 ../../include/nav.php:52
#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:52
msgid "Your events"
msgstr ""
#: ../../view/theme/diabook-red/theme.php:232
#: ../../view/theme/diabook-blue/theme.php:232
#: ../../view/theme/diabook/diabook-red/theme.php:232
#: ../../view/theme/diabook/diabook-blue/theme.php:232
#: ../../view/theme/diabook/theme.php:250
#: ../../view/theme/diabook/diabook-aerith/theme.php:234
#: ../../view/theme/diabook/diabook-pink/theme.php:234
#: ../../view/theme/diabook-aerith/theme.php:234 ../../include/nav.php:53
#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:53
msgid "Personal notes"
msgstr ""
#: ../../view/theme/diabook-red/theme.php:232
#: ../../view/theme/diabook-blue/theme.php:232
#: ../../view/theme/diabook/diabook-red/theme.php:232
#: ../../view/theme/diabook/diabook-blue/theme.php:232
#: ../../view/theme/diabook/theme.php:250
#: ../../view/theme/diabook/diabook-aerith/theme.php:234
#: ../../view/theme/diabook/diabook-pink/theme.php:234
#: ../../view/theme/diabook-aerith/theme.php:234 ../../include/nav.php:53
#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:53
msgid "Your personal photos"
msgstr ""
#: ../../view/theme/diabook-red/config.php:78
#: ../../view/theme/diabook-blue/config.php:78
#: ../../view/theme/diabook/diabook-red/config.php:78
#: ../../view/theme/diabook/diabook-blue/config.php:78
#: ../../view/theme/diabook/diabook-aerith/config.php:78
#: ../../view/theme/diabook/diabook-pink/config.php:78
#: ../../view/theme/diabook/config.php:89
#: ../../view/theme/quattro/config.php:54
#: ../../view/theme/diabook-aerith/config.php:78
msgid "Theme settings"
#: ../../view/theme/diabook/theme.php:130
#: ../../view/theme/diabook/theme.php:571
msgid "Community Pages"
msgstr ""
#: ../../view/theme/diabook-red/config.php:79
#: ../../view/theme/diabook-blue/config.php:79
#: ../../view/theme/diabook/diabook-red/config.php:79
#: ../../view/theme/diabook/diabook-blue/config.php:79
#: ../../view/theme/diabook/diabook-aerith/config.php:79
#: ../../view/theme/diabook/diabook-pink/config.php:79
#: ../../view/theme/diabook/config.php:90
#: ../../view/theme/diabook-aerith/config.php:79
msgid "Set font-size for posts and comments"
#: ../../view/theme/diabook/theme.php:418
msgid "Community Profiles"
msgstr ""
#: ../../view/theme/diabook-red/config.php:80
#: ../../view/theme/diabook-blue/config.php:80
#: ../../view/theme/diabook/diabook-red/config.php:80
#: ../../view/theme/diabook/diabook-blue/config.php:80
#: ../../view/theme/diabook/diabook-aerith/config.php:80
#: ../../view/theme/diabook/diabook-pink/config.php:80
#: ../../view/theme/diabook/config.php:91
#: ../../view/theme/diabook-aerith/config.php:80
#: ../../view/theme/diabook/theme.php:439
msgid "Last users"
msgstr ""
#: ../../view/theme/diabook/theme.php:468
msgid "Last likes"
msgstr ""
#: ../../view/theme/diabook/theme.php:513
msgid "Last photos"
msgstr ""
#: ../../view/theme/diabook/theme.php:550
msgid "Find Friends"
msgstr ""
#: ../../view/theme/diabook/theme.php:551
msgid "Local Directory"
msgstr ""
#: ../../view/theme/diabook/theme.php:553 ../../include/contact_widgets.php:35
msgid "Similar Interests"
msgstr ""
#: ../../view/theme/diabook/theme.php:555 ../../include/contact_widgets.php:37
msgid "Invite Friends"
msgstr ""
#: ../../view/theme/diabook/theme.php:606
msgid "Earth Layers"
msgstr ""
#: ../../view/theme/diabook/theme.php:611
#: ../../view/theme/diabook/config.php:198
msgid "Set zoomfactor for Earth Layer"
msgstr ""
#: ../../view/theme/diabook/theme.php:612
#: ../../view/theme/diabook/config.php:199
msgid "Set longitude (X) for Earth Layer"
msgstr ""
#: ../../view/theme/diabook/theme.php:613
#: ../../view/theme/diabook/config.php:200
msgid "Set latitude (Y) for Earth Layer"
msgstr ""
#: ../../view/theme/diabook/theme.php:626
msgid "Help or @NewHere ?"
msgstr ""
#: ../../view/theme/diabook/theme.php:633
msgid "Connect Services"
msgstr ""
#: ../../view/theme/diabook/theme.php:640
msgid "Last Tweets"
msgstr ""
#: ../../view/theme/diabook/theme.php:643
#: ../../view/theme/diabook/config.php:197
msgid "Set twitter search term"
msgstr ""
#: ../../view/theme/diabook/theme.php:673
#: ../../view/theme/diabook/config.php:201
msgid "Show \"Cummunity Pages\" at right-hand coloumn?"
msgstr ""
#: ../../view/theme/diabook/theme.php:674
#: ../../view/theme/diabook/config.php:202
msgid "Show \"Earth Layers\" at right-hand coloumn?"
msgstr ""
#: ../../view/theme/diabook/theme.php:675
#: ../../view/theme/diabook/config.php:203
msgid "Show \"Cummunity Profiles\" at right-hand coloumn?"
msgstr ""
#: ../../view/theme/diabook/theme.php:676
#: ../../view/theme/diabook/config.php:204
msgid "Show \"Help or @NewHere\" at right-hand coloumn?"
msgstr ""
#: ../../view/theme/diabook/theme.php:677
#: ../../view/theme/diabook/config.php:205
msgid "Show \"Connect Services\" at right-hand coloumn?"
msgstr ""
#: ../../view/theme/diabook/theme.php:678
#: ../../view/theme/diabook/config.php:206
msgid "Show \"Find Friends\" at right-hand coloumn?"
msgstr ""
#: ../../view/theme/diabook/theme.php:679
#: ../../view/theme/diabook/config.php:207
msgid "Show \"Last Tweets\" at right-hand coloumn?"
msgstr ""
#: ../../view/theme/diabook/theme.php:680
#: ../../view/theme/diabook/config.php:208
msgid "Show \"Last Users\" at right-hand coloumn?"
msgstr ""
#: ../../view/theme/diabook/theme.php:681
#: ../../view/theme/diabook/config.php:209
msgid "Show \"Last Photos\" at right-hand coloumn?"
msgstr ""
#: ../../view/theme/diabook/theme.php:682
#: ../../view/theme/diabook/config.php:210
msgid "Show \"Last Likes\" at right-hand coloumn?"
msgstr ""
#: ../../view/theme/diabook/config.php:194
#: ../../view/theme/dispy/config.php:74
msgid "Set line-height for posts and comments"
msgstr ""
#: ../../view/theme/diabook-red/config.php:81
#: ../../view/theme/diabook-blue/config.php:81
#: ../../view/theme/diabook/diabook-red/config.php:81
#: ../../view/theme/diabook/diabook-blue/config.php:81
#: ../../view/theme/diabook/diabook-aerith/config.php:81
#: ../../view/theme/diabook/diabook-pink/config.php:81
#: ../../view/theme/diabook/config.php:92
#: ../../view/theme/diabook-aerith/config.php:81
#: ../../view/theme/diabook/config.php:195
msgid "Set resolution for middle column"
msgstr ""
#: ../../view/theme/diabook/config.php:93
#: ../../view/theme/diabook/config.php:196
msgid "Set color scheme"
msgstr ""
@ -5685,11 +5775,11 @@ msgstr ""
msgid "Center"
msgstr ""
#: ../../view/theme/quattro/config.php:56
msgid "Color scheme"
#: ../../view/theme/dispy/config.php:75
msgid "Set colour scheme"
msgstr ""
#: ../../include/profile_advanced.php:17 ../../boot.php:1085
#: ../../include/profile_advanced.php:17 ../../boot.php:1094
msgid "Gender:"
msgstr ""
@ -5702,7 +5792,7 @@ msgid "j F"
msgstr ""
#: ../../include/profile_advanced.php:30 ../../include/datetime.php:448
#: ../../include/items.php:1403
#: ../../include/items.php:1413
msgid "Birthday:"
msgstr ""
@ -5710,11 +5800,11 @@ msgstr ""
msgid "Age:"
msgstr ""
#: ../../include/profile_advanced.php:37 ../../boot.php:1088
#: ../../include/profile_advanced.php:37 ../../boot.php:1097
msgid "Status:"
msgstr ""
#: ../../include/profile_advanced.php:45 ../../boot.php:1090
#: ../../include/profile_advanced.php:45 ../../boot.php:1099
msgid "Homepage:"
msgstr ""
@ -5894,179 +5984,179 @@ msgstr ""
msgid "Undecided"
msgstr ""
#: ../../include/profile_selectors.php:19
#: ../../include/profile_selectors.php:21
msgid "Males"
msgstr ""
#: ../../include/profile_selectors.php:19
#: ../../include/profile_selectors.php:21
msgid "Females"
msgstr ""
#: ../../include/profile_selectors.php:19
#: ../../include/profile_selectors.php:21
msgid "Gay"
msgstr ""
#: ../../include/profile_selectors.php:19
#: ../../include/profile_selectors.php:21
msgid "Lesbian"
msgstr ""
#: ../../include/profile_selectors.php:19
#: ../../include/profile_selectors.php:21
msgid "No Preference"
msgstr ""
#: ../../include/profile_selectors.php:19
#: ../../include/profile_selectors.php:21
msgid "Bisexual"
msgstr ""
#: ../../include/profile_selectors.php:19
#: ../../include/profile_selectors.php:21
msgid "Autosexual"
msgstr ""
#: ../../include/profile_selectors.php:19
#: ../../include/profile_selectors.php:21
msgid "Abstinent"
msgstr ""
#: ../../include/profile_selectors.php:19
#: ../../include/profile_selectors.php:21
msgid "Virgin"
msgstr ""
#: ../../include/profile_selectors.php:19
#: ../../include/profile_selectors.php:21
msgid "Deviant"
msgstr ""
#: ../../include/profile_selectors.php:19
#: ../../include/profile_selectors.php:21
msgid "Fetish"
msgstr ""
#: ../../include/profile_selectors.php:19
#: ../../include/profile_selectors.php:21
msgid "Oodles"
msgstr ""
#: ../../include/profile_selectors.php:19
#: ../../include/profile_selectors.php:21
msgid "Nonsexual"
msgstr ""
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Single"
msgstr ""
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Lonely"
msgstr ""
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Available"
msgstr ""
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Unavailable"
msgstr ""
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Has crush"
msgstr ""
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Infatuated"
msgstr ""
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Dating"
msgstr ""
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Unfaithful"
msgstr ""
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Sex Addict"
msgstr ""
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Friends"
msgstr ""
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Friends/Benefits"
msgstr ""
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Casual"
msgstr ""
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Engaged"
msgstr ""
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Married"
msgstr ""
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Imaginarily married"
msgstr ""
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Partners"
msgstr ""
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Cohabiting"
msgstr ""
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Common law"
msgstr ""
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Happy"
msgstr ""
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Not looking"
msgstr ""
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Swinger"
msgstr ""
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Betrayed"
msgstr ""
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Separated"
msgstr ""
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Unstable"
msgstr ""
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Divorced"
msgstr ""
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Imaginarily divorced"
msgstr ""
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Widowed"
msgstr ""
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Uncertain"
msgstr ""
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "It's complicated"
msgstr ""
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Don't care"
msgstr ""
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Ask me"
msgstr ""
@ -6078,12 +6168,12 @@ msgstr ""
msgid "Finishes:"
msgstr ""
#: ../../include/delivery.php:434 ../../include/notifier.php:651
#: ../../include/delivery.php:452 ../../include/notifier.php:652
msgid "(no subject)"
msgstr ""
#: ../../include/delivery.php:441 ../../include/enotify.php:23
#: ../../include/notifier.php:658
#: ../../include/delivery.php:459 ../../include/enotify.php:23
#: ../../include/notifier.php:659
msgid "noreply"
msgstr ""
@ -6198,47 +6288,47 @@ msgstr ""
msgid "bytes"
msgstr ""
#: ../../include/text.php:936
msgid "Categories:"
msgstr ""
#: ../../include/text.php:948
#: ../../include/text.php:934 ../../include/text.php:949
msgid "remove"
msgstr ""
#: ../../include/text.php:948
#: ../../include/text.php:934 ../../include/text.php:949
msgid "[remove]"
msgstr ""
#: ../../include/text.php:951
#: ../../include/text.php:937
msgid "Categories:"
msgstr ""
#: ../../include/text.php:952
msgid "Filed under:"
msgstr ""
#: ../../include/text.php:967 ../../include/text.php:979
#: ../../include/text.php:968 ../../include/text.php:980
msgid "Click to open/close"
msgstr ""
#: ../../include/text.php:1084
#: ../../include/text.php:1085
msgid "default"
msgstr ""
#: ../../include/text.php:1096
#: ../../include/text.php:1097
msgid "Select an alternate language"
msgstr ""
#: ../../include/text.php:1306
#: ../../include/text.php:1307
msgid "activity"
msgstr ""
#: ../../include/text.php:1308
#: ../../include/text.php:1309
msgid "comment"
msgstr ""
#: ../../include/text.php:1309
#: ../../include/text.php:1310
msgid "post"
msgstr ""
#: ../../include/text.php:1464
#: ../../include/text.php:1465
msgid "Item filed"
msgstr ""
@ -6298,7 +6388,7 @@ msgstr ""
msgid "Contacts not in any group"
msgstr ""
#: ../../include/nav.php:46 ../../boot.php:795
#: ../../include/nav.php:46 ../../boot.php:804
msgid "Logout"
msgstr ""
@ -6306,7 +6396,7 @@ msgstr ""
msgid "End this session"
msgstr ""
#: ../../include/nav.php:49 ../../boot.php:1453
#: ../../include/nav.php:49 ../../boot.php:1472
msgid "Status"
msgstr ""
@ -6386,11 +6476,11 @@ msgstr ""
msgid "Manage other pages"
msgstr ""
#: ../../include/nav.php:138 ../../boot.php:1043
#: ../../include/nav.php:138 ../../boot.php:1052
msgid "Profiles"
msgstr ""
#: ../../include/nav.php:138 ../../boot.php:1043
#: ../../include/nav.php:138 ../../boot.php:1052
msgid "Manage/edit profiles"
msgstr ""
@ -6556,7 +6646,7 @@ msgstr ""
msgid "%1$d %2$s ago"
msgstr ""
#: ../../include/poller.php:543
#: ../../include/onepoll.php:406
msgid "From: "
msgstr ""
@ -6564,7 +6654,7 @@ msgstr ""
msgid "$1 wrote:"
msgstr ""
#: ../../include/bbcode.php:238 ../../include/bbcode.php:304
#: ../../include/bbcode.php:238 ../../include/bbcode.php:307
msgid "Image/photo"
msgstr ""
@ -6777,11 +6867,11 @@ msgstr ""
msgid "Please visit %s to approve or reject the suggestion."
msgstr ""
#: ../../include/items.php:2698
#: ../../include/items.php:2724
msgid "A new person is sharing with you at "
msgstr ""
#: ../../include/items.php:2698
#: ../../include/items.php:2724
msgid "You have a new follower at "
msgstr ""
@ -6812,30 +6902,34 @@ msgid ""
"form has been opened for too long (>3 hours) before submitting it."
msgstr ""
#: ../../include/Contact.php:145 ../../include/conversation.php:809
#: ../../include/Contact.php:111
msgid "stopped following"
msgstr ""
#: ../../include/Contact.php:203 ../../include/conversation.php:817
msgid "View Status"
msgstr ""
#: ../../include/Contact.php:146 ../../include/conversation.php:810
#: ../../include/Contact.php:204 ../../include/conversation.php:818
msgid "View Profile"
msgstr ""
#: ../../include/Contact.php:147 ../../include/conversation.php:811
#: ../../include/Contact.php:205 ../../include/conversation.php:819
msgid "View Photos"
msgstr ""
#: ../../include/Contact.php:148 ../../include/Contact.php:161
#: ../../include/conversation.php:812
#: ../../include/Contact.php:206 ../../include/Contact.php:219
#: ../../include/conversation.php:820
msgid "Network Posts"
msgstr ""
#: ../../include/Contact.php:149 ../../include/Contact.php:161
#: ../../include/conversation.php:813
#: ../../include/Contact.php:207 ../../include/Contact.php:219
#: ../../include/conversation.php:821
msgid "Edit Contact"
msgstr ""
#: ../../include/Contact.php:150 ../../include/Contact.php:161
#: ../../include/conversation.php:814
#: ../../include/Contact.php:208 ../../include/Contact.php:219
#: ../../include/conversation.php:822
msgid "Send PM"
msgstr ""
@ -6848,17 +6942,17 @@ msgstr ""
msgid "%1$s marked %2$s's %3$s as favorite"
msgstr ""
#: ../../include/conversation.php:317 ../../include/conversation.php:575
#: ../../include/conversation.php:317 ../../include/conversation.php:583
msgid "Select"
msgstr ""
#: ../../include/conversation.php:334 ../../include/conversation.php:668
#: ../../include/conversation.php:669
#: ../../include/conversation.php:334 ../../include/conversation.php:676
#: ../../include/conversation.php:677
#, php-format
msgid "View %s's profile @ %s"
msgstr ""
#: ../../include/conversation.php:344 ../../include/conversation.php:680
#: ../../include/conversation.php:344 ../../include/conversation.php:688
#, php-format
msgid "%s from %s"
msgstr ""
@ -6890,209 +6984,267 @@ msgstr ""
msgid "share"
msgstr ""
#: ../../include/conversation.php:588
#: ../../include/conversation.php:556
msgid "Bold"
msgstr ""
#: ../../include/conversation.php:557
msgid "Italic"
msgstr ""
#: ../../include/conversation.php:558
msgid "Underline"
msgstr ""
#: ../../include/conversation.php:559
msgid "Quote"
msgstr ""
#: ../../include/conversation.php:560
msgid "Code"
msgstr ""
#: ../../include/conversation.php:561
msgid "Image"
msgstr ""
#: ../../include/conversation.php:562
msgid "Link"
msgstr ""
#: ../../include/conversation.php:563
msgid "Video"
msgstr ""
#: ../../include/conversation.php:596
msgid "add star"
msgstr ""
#: ../../include/conversation.php:589
#: ../../include/conversation.php:597
msgid "remove star"
msgstr ""
#: ../../include/conversation.php:590
#: ../../include/conversation.php:598
msgid "toggle star status"
msgstr ""
#: ../../include/conversation.php:593
#: ../../include/conversation.php:601
msgid "starred"
msgstr ""
#: ../../include/conversation.php:594
#: ../../include/conversation.php:602
msgid "add tag"
msgstr ""
#: ../../include/conversation.php:598
#: ../../include/conversation.php:606
msgid "save to folder"
msgstr ""
#: ../../include/conversation.php:670
#: ../../include/conversation.php:678
msgid "to"
msgstr ""
#: ../../include/conversation.php:671
#: ../../include/conversation.php:679
msgid "Wall-to-Wall"
msgstr ""
#: ../../include/conversation.php:672
#: ../../include/conversation.php:680
msgid "via Wall-To-Wall:"
msgstr ""
#: ../../include/conversation.php:717
#: ../../include/conversation.php:725
msgid "Delete Selected Items"
msgstr ""
#: ../../include/conversation.php:868
#: ../../include/conversation.php:876
#, php-format
msgid "%s likes this."
msgstr ""
#: ../../include/conversation.php:868
#: ../../include/conversation.php:876
#, php-format
msgid "%s doesn't like this."
msgstr ""
#: ../../include/conversation.php:872
#: ../../include/conversation.php:880
#, php-format
msgid "<span %1$s>%2$d people</span> like this."
msgstr ""
#: ../../include/conversation.php:874
#: ../../include/conversation.php:882
#, php-format
msgid "<span %1$s>%2$d people</span> don't like this."
msgstr ""
#: ../../include/conversation.php:880
#: ../../include/conversation.php:888
msgid "and"
msgstr ""
#: ../../include/conversation.php:883
#: ../../include/conversation.php:891
#, php-format
msgid ", and %d other people"
msgstr ""
#: ../../include/conversation.php:884
#: ../../include/conversation.php:892
#, php-format
msgid "%s like this."
msgstr ""
#: ../../include/conversation.php:884
#: ../../include/conversation.php:892
#, php-format
msgid "%s don't like this."
msgstr ""
#: ../../include/conversation.php:909
#: ../../include/conversation.php:917
msgid "Visible to <strong>everybody</strong>"
msgstr ""
#: ../../include/conversation.php:911
#: ../../include/conversation.php:919
msgid "Please enter a video link/URL:"
msgstr ""
#: ../../include/conversation.php:912
#: ../../include/conversation.php:920
msgid "Please enter an audio link/URL:"
msgstr ""
#: ../../include/conversation.php:913
#: ../../include/conversation.php:921
msgid "Tag term:"
msgstr ""
#: ../../include/conversation.php:915
#: ../../include/conversation.php:923
msgid "Where are you right now?"
msgstr ""
#: ../../include/conversation.php:958
#: ../../include/conversation.php:966
msgid "upload photo"
msgstr ""
#: ../../include/conversation.php:960
#: ../../include/conversation.php:968
msgid "attach file"
msgstr ""
#: ../../include/conversation.php:962
#: ../../include/conversation.php:970
msgid "web link"
msgstr ""
#: ../../include/conversation.php:963
#: ../../include/conversation.php:971
msgid "Insert video link"
msgstr ""
#: ../../include/conversation.php:964
#: ../../include/conversation.php:972
msgid "video link"
msgstr ""
#: ../../include/conversation.php:965
#: ../../include/conversation.php:973
msgid "Insert audio link"
msgstr ""
#: ../../include/conversation.php:966
#: ../../include/conversation.php:974
msgid "audio link"
msgstr ""
#: ../../include/conversation.php:968
#: ../../include/conversation.php:976
msgid "set location"
msgstr ""
#: ../../include/conversation.php:970
#: ../../include/conversation.php:978
msgid "clear location"
msgstr ""
#: ../../include/conversation.php:977
#: ../../include/conversation.php:985
msgid "permissions"
msgstr ""
#: ../../boot.php:494
#: ../../boot.php:505
msgid "Delete this item?"
msgstr ""
#: ../../boot.php:497
#: ../../boot.php:508
msgid "show fewer"
msgstr ""
#: ../../boot.php:774
#: ../../boot.php:681
#, php-format
msgid "Update %s failed. See error logs."
msgstr ""
#: ../../boot.php:683
#, php-format
msgid "Update Error at %s"
msgstr ""
#: ../../boot.php:783
msgid "Create a New Account"
msgstr ""
#: ../../boot.php:798
#: ../../boot.php:807
msgid "Nickname or Email address: "
msgstr ""
#: ../../boot.php:799
#: ../../boot.php:808
msgid "Password: "
msgstr ""
#: ../../boot.php:802
#: ../../boot.php:811
msgid "Or login using OpenID: "
msgstr ""
#: ../../boot.php:808
#: ../../boot.php:817
msgid "Forgot your password?"
msgstr ""
#: ../../boot.php:975
#: ../../boot.php:984
msgid "Edit profile"
msgstr ""
#: ../../boot.php:1035
#: ../../boot.php:1044
msgid "Message"
msgstr ""
#: ../../boot.php:1151 ../../boot.php:1223
#: ../../boot.php:1160 ../../boot.php:1236
msgid "g A l F d"
msgstr ""
#: ../../boot.php:1152 ../../boot.php:1224
#: ../../boot.php:1161 ../../boot.php:1237
msgid "F d"
msgstr ""
#: ../../boot.php:1177
msgid "Birthday Reminders"
msgstr ""
#: ../../boot.php:1178
msgid "Birthdays this week:"
msgstr ""
#: ../../boot.php:1201 ../../boot.php:1266
#: ../../boot.php:1206 ../../boot.php:1277
msgid "[today]"
msgstr ""
#: ../../boot.php:1247
#: ../../boot.php:1218
msgid "Birthday Reminders"
msgstr ""
#: ../../boot.php:1219
msgid "Birthdays this week:"
msgstr ""
#: ../../boot.php:1270
msgid "[No description]"
msgstr ""
#: ../../boot.php:1288
msgid "Event Reminders"
msgstr ""
#: ../../boot.php:1248
#: ../../boot.php:1289
msgid "Events this week:"
msgstr ""
#: ../../boot.php:1260
msgid "[No description]"
#: ../../boot.php:1475
msgid "Status Messages and Posts"
msgstr ""
#: ../../boot.php:1481
msgid "Profile Details"
msgstr ""
#: ../../boot.php:1496
msgid "Events and Calendar"
msgstr ""
#: ../../boot.php:1502
msgid "Only You Can See This"
msgstr ""

View file

@ -33,6 +33,8 @@
$files = glob($dir . '/*.php');
foreach($files as $file) {
echo $file . "\n";
if(stristr($file,'jappixmini/proxy.php'))
continue;
include_once($file);
}
}

View file

@ -16,10 +16,12 @@
<li class='admin link button $admin.users.2'><a href='$admin.users.0'>$admin.users.1</a><span id='pending-update' title='$h_pending'></span></li>
<li class='admin link button $admin.plugins.2'><a href='$admin.plugins.0'>$admin.plugins.1</a></li>
<li class='admin link button $admin.themes.2'><a href='$admin.themes.0'>$admin.themes.1</a></li>
<li class='admin link button $admin.dbsync.2'><a href='$admin.dbsync.0'>$admin.dbsync.1</a></li>
</ul>
<ul class='admin linklist'>
<li class='admin link button $admin.update.2'><a href='$admin.update.0'>$admin.update.1</a></li>
<li class='admin link button $admin.update.2'><a href='https://kakste.com/profile/inthegit'>Important Changes</a></li>
</ul>

View file

@ -80,6 +80,9 @@
{{ inc field_input.tpl with $field=$proxy }}{{ endinc }}
{{ inc field_input.tpl with $field=$proxyuser }}{{ endinc }}
{{ inc field_input.tpl with $field=$timeout }}{{ endinc }}
{{ inc field_input.tpl with $field=$delivery_interval }}{{ endinc }}
{{ inc field_input.tpl with $field=$poll_interval }}{{ endinc }}
{{ inc field_input.tpl with $field=$maxloadavg }}{{ endinc }}
{{ inc field_input.tpl with $field=$abandon_days }}{{ endinc }}
<div class="submit"><input type="submit" name="page_site" value="$submit" /></div>

View file

@ -0,0 +1,10 @@
{{ if $count }}
<div id="birthday-notice" class="birthday-notice fakelink $classtoday" onclick="openClose('birthday-wrapper');">$event_reminders ($count)</div>
<div id="birthday-wrapper" style="display: none;" ><div id="birthday-title">$event_title</div>
<div id="birthday-title-end"></div>
{{ for $events as $event }}
<div class="birthday-list" id="birthday-$event.id"></a> <a href="$event.link">$event.title</a> $event.date </div>
{{ endfor }}
</div></div>
{{ endif }}

View file

@ -1,5 +1,5 @@
<ul class="tabs">
{{ for $tabs as $tab }}
<li><a href="$tab.url" class="tab button $tab.sel">$tab.label</a></li>
<li><a href="$tab.url" class="tab button $tab.sel"{{ if $tab.title }} title="$tab.title"{{ endif }}>$tab.label</a></li>
{{ endfor }}
</ul>

View file

@ -1,7 +1,7 @@
<div id="contact-block">
<h4 class="contact-block-h4">$contacts</h4>
{{ if $micropro }}
<a class="allcontact-link" href="contacts/$nickname">$viewcontacts</a>
<a class="allcontact-link" href="viewcontacts/$nickname">$viewcontacts</a>
<div class='contact-block-content'>
{{ for $micropro as $m }}
$m

View file

@ -26,11 +26,14 @@
{{ if $ignored }}
<li><div id="ignore-message">$ignored</div></li>
{{ endif }}
{{ if $archived }}
<li><div id="archive-message">$archived</div></li>
{{ endif }}
<li>&nbsp;</li>
{{ if $common_text }}
<li><div id="contact-edit-common"><a href="common/$contact_id">$common_text</a></div></li>
<li><div id="contact-edit-common"><a href="$common_link">$common_text</a></div></li>
{{ endif }}
{{ if $all_friends }}
<li><div id="contact-edit-allfriends"><a href="allfriends/$contact_id">$all_friends</a></div></li>

View file

@ -1,15 +1,14 @@
Hallo $myname,
Hallo $[myname],
'$requestor' folgt dir jetzt auf $sitename.
Du hast einen neuen Anhänger auf $[sitename] - '$[requestor]'.
Du kannst das Profil unter $url abrufen.
Du kannst das Profil unter $[url] besuchen.
Bitte melde dich auf deiner Seite an um die Anfrage zu bestätigen, abzulehnen
oder zu ignorieren.
Bitte melde dich an um die Anfrage zu bestätigen oder sie zu ignorieren bzw. abzulehnen.
$siteurl
$[siteurl]
Grüße,
$sitename Administrator
beste Grüße,
$[sitename] Administrator

View file

@ -1,22 +1,22 @@
Liebe/r $username,
Hallo $[username],
großartige Neuigkeiten... '$fn' von '$dfrn_url' hat deine Kontaktaufnahme auf
'$sitename' bestätigt.
Großartige Neuigkeiten... '$[fn]' auf '$[dfrn_url]' hat
deine Kontaktanfrage auf '$[sitename]' bestätigt.
Ihr seit nun beidseitige Freunde und könnt Statusmitteilungen, Fotos und
EMail ohne Einschränkungen austauschen.
Ihr seit nun beidseitige Freunde und könnt Statusmitteilungen, Bilder und Emails
ohne einschränkungen austauschen.
Bitte rufe deine 'Kontakte' Seite auf $sitename auf um du Änderungen an
dieser Freundschaft vorzunehmen.
Rufe deine 'Kontakte' Seite auf $[sitename] auf wenn du
Änderungen an diesem Kontakt vornehmen willst.
$siteurl
$[siteurl]
[Du könntest zum Beispiel ein neue Profil anlegen mit Informationen die nicht
für die Allgemeinheit bestimmt sind, die du aber gerne mit '$fn' teilen
möchtest].
[Du könntest z.B. ein spezielles Profil anlegen, das Informationen enthällt
die nicht für die breite Öffentlichkeit sichtbar sein sollen und es für '$[fn]' zum Betrachten freigeben].
Mit freundlichen Grüßen
$sitename Administrator
Beste Grüße,
$[sitename] Administrator

View file

@ -1,18 +1,22 @@
Liebe/r $username,
Hallo $[username],
'$fn' von '$dfrn_url' hat deine Kontaktanfrage auf '$sitename' bestätigt.
'$[fn]' auf '$[dfrn_url]' wurde akzeptiert
Deine Verbindungsanfrage auf '$[sitename]'.
'$fn' hat sich dazu entschlossen dich als "Fan" mit eingeschränkten
Kommunikationsmöglichkeiten zu akzeptieren. Dies umfasst private Nachrichten
und einige Profilaktivitäten. Sollte dies eine Prominenten oder
Gemeinschaftsseite sein, wurden diese Einstellungen automatisch vorgenommen.
'$[fn]' hat entschieden Dich als "Fan" zu akzeptieren, was ein
paar Formen der Kommunikation einschränkt - wie das schreiben von privaten Nachrichten und einige Profil
Interaktionen. Wenn das ein Promi-Konto oder eine Forum-Seite ist, werden die Einstellungen
automatisch angewendet.
'$fn' kann sich in Zukunft dazu entschließen eure Beziehung in eine beidseitige
Freundschaft oder freizügigere Beziehung zu erweitern.
'$[fn]' kann wählen, ob die Freundschaft in eine beidseitige oder alles erlaubende
Beziehung in der Zukunft erweitert wird.
Ab sofort wirst du Statusmitteilungen von '$fn' erhalten, die auf deiner
'Netzwerkseite' erscheinen werden.
Du empfängst jetzt die öffentlichen Beiträge von '$[fn]',
welche auf der "Netzwerk" Seite erscheinen werden
Mit freundlichen Grüßen,
$sitename Administrator
$[siteurl]
Beste Grüße,
$[sitename] Administrator

View file

@ -1,32 +1,32 @@
Liebe/r $username,
wir haben gerade eine Anfrage erhalten dein Passwort auf $sitename zu ändern.
Um diese Anfrage zu bestätigen folge bitte dem Bestätigungslink oder kopiere
ihn in die Adresszeile deines Browsers.
Hallo $[username],
Auf $[sitename] wurde eine Anfrage zum Zurücksetzen deines
Passworts empfangen. Um diese zu bestätigen folge bitte dem Link
weiter unten oder kopiere ihn in die Adressleiste deines Browsers.
Solltest du KEINE Änderungsanfrage gestellt haben ignoriere diese EMail einfach
und folge dem angegebenen Link UNTER KEINEN UMSTÄNDEN.
Wenn du die Anfrage NICHT gesendet haben solltest, dann IGNORIERE
bitte diese Mail und den Link.
Dein Passwort wird nicht geändert wenn du die Anfrage nicht bestätigst.
Dein Passwort wird nicht geändert werden solange wir nicht überprüfen
konnten, dass du die Anfrage gestellt hast.
Folge diesem Link zur Verifizierung der Anfrage:
Folge diesem Link um deine Identität zu verifizieren:
$reset_link
$[reset_link]
Anschließend wirst du eine EMail erhalten die dein neues Passwort enthält.
Du wirst eine weitere Email erhalten mit dem neuen Passwort.
Du kannst dein Passwort jederzeit in den Einstellungen deines Accounts ändern
nachdem du angemeldet bist.
Das Passwort kannst du anschließend wie gewohnt in deinen Account Einstellungen ändern.
Die Anmelde Daten sind die Folgenden:
Die Login-Details sind die folgenden:
Adresse der Seite: $siteurl
Anmelde Name: $email
Adresse der Seite: $[siteurl]
Login Name: $[email]
Mit freundlichen Grüßen,
$sitename Administrator
Grüße,
$[sitename] Administrator

View file

@ -9,6 +9,7 @@
# <friends@dostmusik.de>, 2012.
# <greeneyedred@googlemail.com>, 2012.
# <hzuehl@phone-talk.de>, 2011.
# <leberwurscht@hoegners.de>, 2012.
# <marmor69@web.de>, 2012.
# Martin Schmitt <mas@scsy.de>, 2012.
# <tobias.diekershoff@gmx.net>, 2011, 2012.
@ -18,8 +19,8 @@ msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: http://bugs.friendica.com/\n"
"POT-Creation-Date: 2012-04-16 10:00-0700\n"
"PO-Revision-Date: 2012-04-17 15:40+0000\n"
"POT-Creation-Date: 2012-05-06 10:00-0700\n"
"PO-Revision-Date: 2012-05-08 07:06+0000\n"
"Last-Translator: bavatar <tobias.diekershoff@gmx.net>\n"
"Language-Team: German (http://www.transifex.net/projects/p/friendica/language/de/)\n"
"MIME-Version: 1.0\n"
@ -46,12 +47,12 @@ msgid "Contact update failed."
msgstr "Konnte den Kontakt nicht aktualisieren."
#: ../../mod/crepair.php:115 ../../mod/wall_attach.php:44
#: ../../mod/fsuggest.php:78 ../../mod/events.php:110 ../../mod/api.php:26
#: ../../mod/api.php:31 ../../mod/photos.php:130 ../../mod/photos.php:866
#: ../../mod/fsuggest.php:78 ../../mod/events.php:138 ../../mod/api.php:26
#: ../../mod/api.php:31 ../../mod/photos.php:130 ../../mod/photos.php:865
#: ../../mod/editpost.php:10 ../../mod/install.php:171
#: ../../mod/notifications.php:66 ../../mod/contacts.php:125
#: ../../mod/settings.php:99 ../../mod/settings.php:514
#: ../../mod/settings.php:519 ../../mod/manage.php:86 ../../mod/network.php:6
#: ../../mod/settings.php:104 ../../mod/settings.php:521
#: ../../mod/settings.php:526 ../../mod/manage.php:86 ../../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
@ -61,13 +62,12 @@ msgstr "Konnte den Kontakt nicht aktualisieren."
#: ../../mod/profile_photo.php:139 ../../mod/profile_photo.php:150
#: ../../mod/profile_photo.php:163 ../../mod/message.php:38
#: ../../mod/message.php:90 ../../mod/allfriends.php:9
#: ../../mod/nogroup.php:25 ../../mod/wall_upload.php:46
#: ../../mod/follow.php:8 ../../mod/common.php:9 ../../mod/display.php:138
#: ../../mod/profiles.php:7 ../../mod/profiles.php:329
#: ../../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:461 ../../include/items.php:3170
#: ../../index.php:309
#: ../../mod/nogroup.php:25 ../../mod/wall_upload.php:53
#: ../../mod/follow.php:8 ../../mod/display.php:138 ../../mod/profiles.php:7
#: ../../mod/profiles.php:365 ../../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:495
#: ../../include/items.php:3192 ../../index.php:306
msgid "Permission denied."
msgstr "Zugriff verweigert."
@ -96,8 +96,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:534
#: ../../mod/settings.php:560 ../../mod/admin.php:544 ../../mod/admin.php:553
#: ../../mod/crepair.php:148 ../../mod/settings.php:541
#: ../../mod/settings.php:567 ../../mod/admin.php:640 ../../mod/admin.php:649
msgid "Name"
msgstr "Name"
@ -134,28 +134,29 @@ msgid "New photo from this URL"
msgstr "Neues Foto von dieser URL"
#: ../../mod/crepair.php:166 ../../mod/fsuggest.php:107
#: ../../mod/events.php:400 ../../mod/photos.php:901 ../../mod/photos.php:959
#: ../../mod/photos.php:1194 ../../mod/photos.php:1234
#: ../../mod/photos.php:1274 ../../mod/photos.php:1305
#: ../../mod/events.php:428 ../../mod/photos.php:900 ../../mod/photos.php:958
#: ../../mod/photos.php:1193 ../../mod/photos.php:1233
#: ../../mod/photos.php:1273 ../../mod/photos.php:1304
#: ../../mod/install.php:251 ../../mod/install.php:289
#: ../../mod/localtime.php:45 ../../mod/contacts.php:325
#: ../../mod/settings.php:532 ../../mod/settings.php:678
#: ../../mod/settings.php:739 ../../mod/settings.php:930
#: ../../mod/manage.php:109 ../../mod/group.php:85 ../../mod/admin.php:374
#: ../../mod/admin.php:541 ../../mod/admin.php:670 ../../mod/admin.php:850
#: ../../mod/admin.php:930 ../../mod/profiles.php:498 ../../mod/invite.php:119
#: ../../addon/facebook/facebook.php:552 ../../addon/yourls/yourls.php:76
#: ../../addon/ljpost/ljpost.php:93 ../../addon/nsfw/nsfw.php:57
#: ../../addon/planets/planets.php:158
#: ../../mod/localtime.php:45 ../../mod/contacts.php:322
#: ../../mod/settings.php:539 ../../mod/settings.php:685
#: ../../mod/settings.php:746 ../../mod/settings.php:940
#: ../../mod/manage.php:109 ../../mod/group.php:85 ../../mod/admin.php:402
#: ../../mod/admin.php:637 ../../mod/admin.php:773 ../../mod/admin.php:972
#: ../../mod/admin.php:1059 ../../mod/profiles.php:534
#: ../../mod/invite.php:119 ../../addon/facebook/facebook.php:597
#: ../../addon/yourls/yourls.php:76 ../../addon/ljpost/ljpost.php:93
#: ../../addon/nsfw/nsfw.php:57 ../../addon/planets/planets.php:158
#: ../../addon/uhremotestorage/uhremotestorage.php:89
#: ../../addon/randplace/randplace.php:177 ../../addon/dwpost/dwpost.php:93
#: ../../addon/drpost/drpost.php:110 ../../addon/geonames/geonames.php:187
#: ../../addon/oembed.old/oembed.php:41 ../../addon/impressum/impressum.php:80
#: ../../addon/oembed.old/oembed.php:41 ../../addon/impressum/impressum.php:82
#: ../../addon/blockem/blockem.php:57 ../../addon/qcomment/qcomment.php:61
#: ../../addon/openstreetmap/openstreetmap.php:70
#: ../../addon/mathjax/mathjax.php:42 ../../addon/editplain/editplain.php:84
#: ../../addon/blackout/blackout.php:94 ../../addon/gravatar/gravatar.php:86
#: ../../addon/pageheader/pageheader.php:55 ../../addon/ijpost/ijpost.php:93
#: ../../addon/jappixmini/jappixmini.php:302
#: ../../addon/statusnet/statusnet.php:278
#: ../../addon/statusnet/statusnet.php:292
#: ../../addon/statusnet/statusnet.php:318
@ -168,11 +169,10 @@ msgstr "Neues Foto von dieser URL"
#: ../../addon/twitter/twitter.php:209 ../../addon/twitter/twitter.php:375
#: ../../addon/irc/irc.php:55 ../../addon/blogger/blogger.php:102
#: ../../addon/posterous/posterous.php:90
#: ../../view/theme/diabook-red/config.php:64
#: ../../view/theme/diabook-blue/config.php:64
#: ../../view/theme/diabook/config.php:76
#: ../../view/theme/quattro/config.php:52
#: ../../view/theme/diabook-aerith/config.php:64
#: ../../view/theme/cleanzero/config.php:80
#: ../../view/theme/diabook/theme.php:590
#: ../../view/theme/diabook/config.php:95
#: ../../view/theme/quattro/config.php:52 ../../view/theme/dispy/config.php:70
#: ../../include/conversation.php:555
msgid "Submit"
msgstr "Senden"
@ -185,11 +185,11 @@ msgstr "Hilfe:"
msgid "Help"
msgstr "Hilfe"
#: ../../mod/help.php:38 ../../index.php:228
#: ../../mod/help.php:38 ../../index.php:225
msgid "Not Found"
msgstr "Nicht gefunden"
#: ../../mod/help.php:41 ../../index.php:231
#: ../../mod/help.php:41 ../../index.php:228
msgid "Page not found."
msgstr "Seite nicht gefunden."
@ -215,87 +215,84 @@ msgstr "Kontakte vorschlagen"
msgid "Suggest a friend for %s"
msgstr "Schlage %s einen Kontakt vor"
#: ../../mod/events.php:62
#: ../../mod/events.php:65
msgid "Event description and start time are required."
msgstr "Ereignis Beschreibung und Startzeit sind erforderlich."
#: ../../mod/events.php:230
#: ../../mod/events.php:258
msgid "l, F j"
msgstr "l, F j"
#: ../../mod/events.php:252
#: ../../mod/events.php:280
msgid "Edit event"
msgstr "Veranstaltung bearbeiten"
#: ../../mod/events.php:272 ../../include/text.php:1053
#: ../../mod/events.php:300 ../../include/text.php:1054
msgid "link to source"
msgstr "Link zum Originalbeitrag"
#: ../../mod/events.php:296 ../../view/theme/diabook-red/theme.php:243
#: ../../view/theme/diabook-blue/theme.php:243
#: ../../view/theme/diabook/theme.php:253
#: ../../view/theme/diabook-aerith/theme.php:244 ../../include/nav.php:52
#: ../../boot.php:1471
#: ../../mod/events.php:324 ../../view/theme/diabook/theme.php:69
#: ../../include/nav.php:52 ../../boot.php:1493
msgid "Events"
msgstr "Veranstaltungen"
#: ../../mod/events.php:297
#: ../../mod/events.php:325
msgid "Create New Event"
msgstr "Neue Veranstaltung erstellen"
#: ../../mod/events.php:298
#: ../../mod/events.php:326
msgid "Previous"
msgstr "Vorherige"
#: ../../mod/events.php:299 ../../mod/install.php:210
#: ../../mod/events.php:327 ../../mod/install.php:210
msgid "Next"
msgstr "Nächste"
#: ../../mod/events.php:371
#: ../../mod/events.php:399
msgid "hour:minute"
msgstr "Stunde:Minute"
#: ../../mod/events.php:380
#: ../../mod/events.php:408
msgid "Event details"
msgstr "Veranstaltungsdetails"
#: ../../mod/events.php:381
#: ../../mod/events.php:409
#, php-format
msgid "Format is %s %s. Starting date and Description are required."
msgstr "Format ist %s %s. Anfangsdatum und Beschreibung sind notwendig."
#: ../../mod/events.php:383
#: ../../mod/events.php:411
msgid "Event Starts:"
msgstr "Veranstaltungsbeginn:"
#: ../../mod/events.php:386
#: ../../mod/events.php:414
msgid "Finish date/time is not known or not relevant"
msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant"
#: ../../mod/events.php:388
#: ../../mod/events.php:416
msgid "Event Finishes:"
msgstr "Veranstaltungsende:"
#: ../../mod/events.php:391
#: ../../mod/events.php:419
msgid "Adjust for viewer timezone"
msgstr "An Zeitzone des Betrachters anpassen"
#: ../../mod/events.php:393
#: ../../mod/events.php:421
msgid "Description:"
msgstr "Beschreibung"
#: ../../mod/events.php:395 ../../include/event.php:37
#: ../../include/bb2diaspora.php:260 ../../boot.php:1083
#: ../../mod/events.php:423 ../../include/event.php:37
#: ../../include/bb2diaspora.php:260 ../../boot.php:1092
msgid "Location:"
msgstr "Ort:"
#: ../../mod/events.php:397
#: ../../mod/events.php:425
msgid "Share this event"
msgstr "Veranstaltung teilen"
#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94
#: ../../mod/dfrn_request.php:752 ../../mod/settings.php:533
#: ../../mod/settings.php:559 ../../addon/js_upload/js_upload.php:45
#: ../../mod/dfrn_request.php:818 ../../mod/settings.php:540
#: ../../mod/settings.php:566 ../../addon/js_upload/js_upload.php:45
msgid "Cancel"
msgstr "Abbrechen"
@ -338,43 +335,40 @@ 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:740
#: ../../mod/settings.php:844 ../../mod/settings.php:850
#: ../../mod/settings.php:858 ../../mod/settings.php:862
#: ../../mod/settings.php:867 ../../mod/settings.php:873
#: ../../mod/settings.php:879 ../../mod/settings.php:885
#: ../../mod/settings.php:921 ../../mod/settings.php:922
#: ../../mod/settings.php:923 ../../mod/settings.php:924
#: ../../mod/register.php:532 ../../mod/profiles.php:475
#: ../../mod/api.php:105 ../../mod/dfrn_request.php:806
#: ../../mod/settings.php:854 ../../mod/settings.php:860
#: ../../mod/settings.php:868 ../../mod/settings.php:872
#: ../../mod/settings.php:877 ../../mod/settings.php:883
#: ../../mod/settings.php:889 ../../mod/settings.php:895
#: ../../mod/settings.php:931 ../../mod/settings.php:932
#: ../../mod/settings.php:933 ../../mod/settings.php:934
#: ../../mod/register.php:532 ../../mod/profiles.php:511
msgid "Yes"
msgstr "Ja"
#: ../../mod/api.php:106 ../../mod/dfrn_request.php:741
#: ../../mod/settings.php:844 ../../mod/settings.php:850
#: ../../mod/settings.php:858 ../../mod/settings.php:862
#: ../../mod/settings.php:867 ../../mod/settings.php:873
#: ../../mod/settings.php:879 ../../mod/settings.php:885
#: ../../mod/settings.php:921 ../../mod/settings.php:922
#: ../../mod/settings.php:923 ../../mod/settings.php:924
#: ../../mod/register.php:533 ../../mod/profiles.php:476
#: ../../mod/api.php:106 ../../mod/dfrn_request.php:807
#: ../../mod/settings.php:854 ../../mod/settings.php:860
#: ../../mod/settings.php:868 ../../mod/settings.php:872
#: ../../mod/settings.php:877 ../../mod/settings.php:883
#: ../../mod/settings.php:889 ../../mod/settings.php:895
#: ../../mod/settings.php:931 ../../mod/settings.php:932
#: ../../mod/settings.php:933 ../../mod/settings.php:934
#: ../../mod/register.php:533 ../../mod/profiles.php:512
msgid "No"
msgstr "Nein"
#: ../../mod/photos.php:43
#: ../../mod/photos.php:43 ../../boot.php:1487
msgid "Photo Albums"
msgstr "Fotoalben"
#: ../../mod/photos.php:51 ../../mod/photos.php:151 ../../mod/photos.php:880
#: ../../mod/photos.php:951 ../../mod/photos.php:966 ../../mod/photos.php:1383
#: ../../mod/photos.php:1395 ../../addon/communityhome/communityhome.php:110
#: ../../view/theme/diabook-red/theme.php:113
#: ../../view/theme/diabook-blue/theme.php:113
#: ../../view/theme/diabook/theme.php:119
#: ../../view/theme/diabook-aerith/theme.php:114
#: ../../mod/photos.php:51 ../../mod/photos.php:151 ../../mod/photos.php:879
#: ../../mod/photos.php:950 ../../mod/photos.php:965 ../../mod/photos.php:1382
#: ../../mod/photos.php:1394 ../../addon/communityhome/communityhome.php:110
#: ../../view/theme/diabook/theme.php:485
msgid "Contact Photos"
msgstr "Kontaktbilder"
#: ../../mod/photos.php:58 ../../mod/photos.php:976 ../../mod/photos.php:1425
#: ../../mod/photos.php:58 ../../mod/photos.php:975 ../../mod/photos.php:1424
msgid "Upload New Photos"
msgstr "Weitere Fotos hochladen"
@ -386,17 +380,14 @@ msgstr "jeder"
msgid "Contact information unavailable"
msgstr "Kontaktinformationen nicht verfügbar"
#: ../../mod/photos.php:151 ../../mod/photos.php:598 ../../mod/photos.php:951
#: ../../mod/photos.php:966 ../../mod/register.php:335
#: ../../mod/photos.php:151 ../../mod/photos.php:597 ../../mod/photos.php:950
#: ../../mod/photos.php:965 ../../mod/register.php:335
#: ../../mod/register.php:342 ../../mod/register.php:349
#: ../../mod/profile_photo.php:60 ../../mod/profile_photo.php:67
#: ../../mod/profile_photo.php:74 ../../mod/profile_photo.php:174
#: ../../mod/profile_photo.php:252 ../../mod/profile_photo.php:261
#: ../../addon/communityhome/communityhome.php:111
#: ../../view/theme/diabook-red/theme.php:114
#: ../../view/theme/diabook-blue/theme.php:114
#: ../../view/theme/diabook/theme.php:120
#: ../../view/theme/diabook-aerith/theme.php:115
#: ../../view/theme/diabook/theme.php:486
msgid "Profile Photos"
msgstr "Profilbilder"
@ -404,192 +395,189 @@ msgstr "Profilbilder"
msgid "Album not found."
msgstr "Album nicht gefunden."
#: ../../mod/photos.php:179 ../../mod/photos.php:960
#: ../../mod/photos.php:179 ../../mod/photos.php:959
msgid "Delete Album"
msgstr "Album löschen"
#: ../../mod/photos.php:242 ../../mod/photos.php:1195
#: ../../mod/photos.php:242 ../../mod/photos.php:1194
msgid "Delete Photo"
msgstr "Foto löschen"
#: ../../mod/photos.php:529
#: ../../mod/photos.php:528
msgid "was tagged in a"
msgstr "wurde getaggt in einem"
#: ../../mod/photos.php:529 ../../mod/like.php:127 ../../mod/tagger.php:70
#: ../../mod/photos.php:528 ../../mod/like.php:127 ../../mod/tagger.php:70
#: ../../addon/communityhome/communityhome.php:163
#: ../../view/theme/diabook-red/theme.php:85
#: ../../view/theme/diabook-blue/theme.php:85
#: ../../view/theme/diabook/theme.php:91
#: ../../view/theme/diabook-aerith/theme.php:86 ../../include/text.php:1304
#: ../../view/theme/diabook/theme.php:457 ../../include/text.php:1305
#: ../../include/diaspora.php:1654 ../../include/conversation.php:53
#: ../../include/conversation.php:126
msgid "photo"
msgstr "Foto"
#: ../../mod/photos.php:529
#: ../../mod/photos.php:528
msgid "by"
msgstr "von"
#: ../../mod/photos.php:632 ../../addon/js_upload/js_upload.php:315
#: ../../mod/photos.php:631 ../../addon/js_upload/js_upload.php:315
msgid "Image exceeds size limit of "
msgstr "Die Bildgröße übersteigt das Limit von "
#: ../../mod/photos.php:640
#: ../../mod/photos.php:639
msgid "Image file is empty."
msgstr "Bilddatei ist leer."
#: ../../mod/photos.php:654 ../../mod/profile_photo.php:124
#: ../../mod/wall_upload.php:69
#: ../../mod/photos.php:653 ../../mod/profile_photo.php:124
#: ../../mod/wall_upload.php:83
msgid "Unable to process image."
msgstr "Konnte das Bild nicht bearbeiten."
#: ../../mod/photos.php:674 ../../mod/profile_photo.php:257
#: ../../mod/wall_upload.php:88
#: ../../mod/photos.php:673 ../../mod/profile_photo.php:257
#: ../../mod/wall_upload.php:102
msgid "Image upload failed."
msgstr "Hochladen des Bildes gescheitert."
#: ../../mod/photos.php:760 ../../mod/community.php:16
#: ../../mod/dfrn_request.php:671 ../../mod/viewcontacts.php:17
#: ../../mod/photos.php:759 ../../mod/community.php:16
#: ../../mod/dfrn_request.php:732 ../../mod/viewcontacts.php:17
#: ../../mod/display.php:7 ../../mod/search.php:71 ../../mod/directory.php:29
msgid "Public access denied."
msgstr "Öffentlicher Zugriff verweigert."
#: ../../mod/photos.php:770
#: ../../mod/photos.php:769
msgid "No photos selected"
msgstr "Keine Bilder ausgewählt"
#: ../../mod/photos.php:847
#: ../../mod/photos.php:846
msgid "Access to this item is restricted."
msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt."
#: ../../mod/photos.php:908
#: ../../mod/photos.php:907
msgid "Upload Photos"
msgstr "Bilder hochladen"
#: ../../mod/photos.php:911 ../../mod/photos.php:955
#: ../../mod/photos.php:910 ../../mod/photos.php:954
msgid "New album name: "
msgstr "Name des neuen Albums: "
#: ../../mod/photos.php:912
#: ../../mod/photos.php:911
msgid "or existing album name: "
msgstr "oder existierender Albumname: "
#: ../../mod/photos.php:913
#: ../../mod/photos.php:912
msgid "Do not show a status post for this upload"
msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen"
#: ../../mod/photos.php:915 ../../mod/photos.php:1190
#: ../../mod/photos.php:914 ../../mod/photos.php:1189
msgid "Permissions"
msgstr "Berechtigungen"
#: ../../mod/photos.php:970
#: ../../mod/photos.php:969
msgid "Edit Album"
msgstr "Album bearbeiten"
#: ../../mod/photos.php:985 ../../mod/photos.php:1408
#: ../../mod/photos.php:984 ../../mod/photos.php:1407
msgid "View Photo"
msgstr "Fotos betrachten"
#: ../../mod/photos.php:1020
#: ../../mod/photos.php:1019
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:1022
#: ../../mod/photos.php:1021
msgid "Photo not available"
msgstr "Foto nicht verfügbar"
#: ../../mod/photos.php:1072
#: ../../mod/photos.php:1071
msgid "View photo"
msgstr "Fotos ansehen"
#: ../../mod/photos.php:1072
#: ../../mod/photos.php:1071
msgid "Edit photo"
msgstr "Foto bearbeiten"
#: ../../mod/photos.php:1073
#: ../../mod/photos.php:1072
msgid "Use as profile photo"
msgstr "Als Profilbild verwenden"
#: ../../mod/photos.php:1079 ../../include/conversation.php:480
#: ../../mod/photos.php:1078 ../../include/conversation.php:480
msgid "Private Message"
msgstr "Private Nachricht"
#: ../../mod/photos.php:1101
#: ../../mod/photos.php:1100
msgid "View Full Size"
msgstr "Betrachte Originalgröße"
#: ../../mod/photos.php:1169
#: ../../mod/photos.php:1168
msgid "Tags: "
msgstr "Tags: "
#: ../../mod/photos.php:1172
#: ../../mod/photos.php:1171
msgid "[Remove any tag]"
msgstr "[Tag entfernen]"
#: ../../mod/photos.php:1183
#: ../../mod/photos.php:1182
msgid "New album name"
msgstr "Name des neuen Albums"
#: ../../mod/photos.php:1186
#: ../../mod/photos.php:1185
msgid "Caption"
msgstr "Bildunterschrift"
#: ../../mod/photos.php:1188
#: ../../mod/photos.php:1187
msgid "Add a Tag"
msgstr "Tag hinzufügen"
#: ../../mod/photos.php:1192
#: ../../mod/photos.php:1191
msgid ""
"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
#: ../../mod/photos.php:1212 ../../include/conversation.php:529
#: ../../mod/photos.php:1211 ../../include/conversation.php:529
msgid "I like this (toggle)"
msgstr "Ich mag das (toggle)"
#: ../../mod/photos.php:1213 ../../include/conversation.php:530
#: ../../mod/photos.php:1212 ../../include/conversation.php:530
msgid "I don't like this (toggle)"
msgstr "Ich mag das nicht (toggle)"
#: ../../mod/photos.php:1214 ../../include/conversation.php:956
#: ../../mod/photos.php:1213 ../../include/conversation.php:964
msgid "Share"
msgstr "Teilen"
#: ../../mod/photos.php:1215 ../../mod/editpost.php:104
#: ../../mod/photos.php:1214 ../../mod/editpost.php:104
#: ../../mod/wallmessage.php:145 ../../mod/message.php:188
#: ../../mod/message.php:357 ../../include/conversation.php:362
#: ../../include/conversation.php:698 ../../include/conversation.php:975
#: ../../mod/message.php:380 ../../include/conversation.php:361
#: ../../include/conversation.php:706 ../../include/conversation.php:983
msgid "Please wait"
msgstr "Bitte warten"
#: ../../mod/photos.php:1231 ../../mod/photos.php:1271
#: ../../mod/photos.php:1302 ../../include/conversation.php:552
#: ../../mod/photos.php:1230 ../../mod/photos.php:1270
#: ../../mod/photos.php:1301 ../../include/conversation.php:552
msgid "This is you"
msgstr "Das bist du"
#: ../../mod/photos.php:1233 ../../mod/photos.php:1273
#: ../../mod/photos.php:1304 ../../include/conversation.php:554
#: ../../boot.php:495
#: ../../mod/photos.php:1232 ../../mod/photos.php:1272
#: ../../mod/photos.php:1303 ../../include/conversation.php:554
#: ../../boot.php:506
msgid "Comment"
msgstr "Kommentar"
#: ../../mod/photos.php:1235 ../../mod/editpost.php:125
#: ../../include/conversation.php:556 ../../include/conversation.php:993
#: ../../mod/photos.php:1234 ../../mod/editpost.php:125
#: ../../include/conversation.php:564 ../../include/conversation.php:1001
msgid "Preview"
msgstr "Vorschau"
#: ../../mod/photos.php:1332 ../../mod/settings.php:595
#: ../../mod/settings.php:676 ../../mod/group.php:168 ../../mod/admin.php:548
#: ../../include/conversation.php:318 ../../include/conversation.php:576
#: ../../mod/photos.php:1331 ../../mod/settings.php:602
#: ../../mod/settings.php:683 ../../mod/group.php:168 ../../mod/admin.php:644
#: ../../include/conversation.php:318 ../../include/conversation.php:584
msgid "Delete"
msgstr "Löschen"
#: ../../mod/photos.php:1414
#: ../../mod/photos.php:1413
msgid "View Album"
msgstr "Album betrachten"
#: ../../mod/photos.php:1423
#: ../../mod/photos.php:1422
msgid "Recent Photos"
msgstr "Neueste Fotos"
@ -597,46 +585,44 @@ msgstr "Neueste Fotos"
msgid "Not available."
msgstr "Nicht verfügbar."
#: ../../mod/community.php:30 ../../view/theme/diabook-red/theme.php:245
#: ../../view/theme/diabook-blue/theme.php:245
#: ../../view/theme/diabook/theme.php:255
#: ../../view/theme/diabook-aerith/theme.php:246 ../../include/nav.php:101
#: ../../mod/community.php:30 ../../view/theme/diabook/theme.php:71
#: ../../include/nav.php:101
msgid "Community"
msgstr "Gemeinschaft"
#: ../../mod/community.php:61 ../../mod/search.php:115
#: ../../mod/community.php:61 ../../mod/search.php:128
msgid "No results."
msgstr "Keine Ergebnisse."
#: ../../mod/friendica.php:47
#: ../../mod/friendica.php:55
msgid "This is Friendica, version"
msgstr "Dies ist Friendica, Version"
#: ../../mod/friendica.php:48
#: ../../mod/friendica.php:56
msgid "running at web location"
msgstr "die unter folgender Webadresse zu finden ist"
#: ../../mod/friendica.php:50
#: ../../mod/friendica.php:58
msgid ""
"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
"more about the Friendica project."
msgstr "Bitte besuche <a href=\"http://friendica.com\">Friendica.com</a> um mehr über das Friendica Projekt zu erfahren."
#: ../../mod/friendica.php:52
#: ../../mod/friendica.php:60
msgid "Bug reports and issues: please visit"
msgstr "Probleme oder Fehler gefunden? Bitte besuche"
#: ../../mod/friendica.php:53
#: ../../mod/friendica.php:61
msgid ""
"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
"dot com"
msgstr "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com"
#: ../../mod/friendica.php:58
#: ../../mod/friendica.php:75
msgid "Installed plugins/addons/apps:"
msgstr "Installierte Plugins/Erweiterungen/Apps"
#: ../../mod/friendica.php:71
#: ../../mod/friendica.php:88
msgid "No installed plugins/addons/apps"
msgstr "Keine Plugins/Erweiterungen/Apps installiert"
@ -648,30 +634,30 @@ msgstr "Beitrag nicht gefunden"
msgid "Edit post"
msgstr "Beitrag bearbeiten"
#: ../../mod/editpost.php:80 ../../include/conversation.php:942
#: ../../mod/editpost.php:80 ../../include/conversation.php:950
msgid "Post to Email"
msgstr "An E-Mail senden"
#: ../../mod/editpost.php:95 ../../mod/settings.php:594
#: ../../include/conversation.php:563
#: ../../mod/editpost.php:95 ../../mod/settings.php:601
#: ../../include/conversation.php:571
msgid "Edit"
msgstr "Bearbeiten"
#: ../../mod/editpost.php:96 ../../mod/wallmessage.php:143
#: ../../mod/message.php:186 ../../mod/message.php:355
#: ../../include/conversation.php:957
#: ../../mod/message.php:186 ../../mod/message.php:378
#: ../../include/conversation.php:965
msgid "Upload photo"
msgstr "Foto hochladen"
#: ../../mod/editpost.php:97 ../../include/conversation.php:959
#: ../../mod/editpost.php:97 ../../include/conversation.php:967
msgid "Attach file"
msgstr "Datei anhängen"
#: ../../mod/editpost.php:98 ../../mod/wallmessage.php:144
#: ../../mod/message.php:187 ../../mod/message.php:356
#: ../../include/conversation.php:961
#: ../../mod/message.php:187 ../../mod/message.php:379
#: ../../include/conversation.php:969
msgid "Insert web link"
msgstr "eine Kontaktanfrage"
msgstr "einen Link einfügen"
#: ../../mod/editpost.php:99
msgid "Insert YouTube video"
@ -685,35 +671,35 @@ msgstr "Vorbis [.ogg] Video einfügen"
msgid "Insert Vorbis [.ogg] audio"
msgstr "Vorbis [.ogg] Audio einfügen"
#: ../../mod/editpost.php:102 ../../include/conversation.php:967
#: ../../mod/editpost.php:102 ../../include/conversation.php:975
msgid "Set your location"
msgstr "Deinen Standort festlegen"
#: ../../mod/editpost.php:103 ../../include/conversation.php:969
#: ../../mod/editpost.php:103 ../../include/conversation.php:977
msgid "Clear browser location"
msgstr "Browser-Standort leeren"
#: ../../mod/editpost.php:105 ../../include/conversation.php:976
#: ../../mod/editpost.php:105 ../../include/conversation.php:984
msgid "Permission settings"
msgstr "Berechtigungseinstellungen"
#: ../../mod/editpost.php:113 ../../include/conversation.php:985
#: ../../mod/editpost.php:113 ../../include/conversation.php:993
msgid "CC: email addresses"
msgstr "Cc:-E-Mail-Addressen"
#: ../../mod/editpost.php:114 ../../include/conversation.php:986
#: ../../mod/editpost.php:114 ../../include/conversation.php:994
msgid "Public post"
msgstr "Öffentlicher Beitrag"
#: ../../mod/editpost.php:117 ../../include/conversation.php:972
#: ../../mod/editpost.php:117 ../../include/conversation.php:980
msgid "Set title"
msgstr "Titel setzen"
#: ../../mod/editpost.php:119 ../../include/conversation.php:974
#: ../../mod/editpost.php:119 ../../include/conversation.php:982
msgid "Categories (comma-separated list)"
msgstr "Kategorien (mit Komma separierte Liste)"
msgstr "Kategorien (kommasepariert)"
#: ../../mod/editpost.php:120 ../../include/conversation.php:988
#: ../../mod/editpost.php:120 ../../include/conversation.php:996
msgid "Example: bob@example.com, mary@example.com"
msgstr "Z.B.: bob@example.com, mary@example.com"
@ -721,19 +707,19 @@ msgstr "Z.B.: bob@example.com, mary@example.com"
msgid "This introduction has already been accepted."
msgstr "Diese Kontaktanfrage wurde bereits akzeptiert."
#: ../../mod/dfrn_request.php:117 ../../mod/dfrn_request.php:427
#: ../../mod/dfrn_request.php:117 ../../mod/dfrn_request.php:487
msgid "Profile location is not valid or does not contain profile information."
msgstr "Profiladresse ist ungültig oder stellt einige Profildaten nicht zur Verfügung."
#: ../../mod/dfrn_request.php:122 ../../mod/dfrn_request.php:432
#: ../../mod/dfrn_request.php:122 ../../mod/dfrn_request.php:492
msgid "Warning: profile location has no identifiable owner name."
msgstr "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden."
#: ../../mod/dfrn_request.php:124 ../../mod/dfrn_request.php:434
#: ../../mod/dfrn_request.php:124 ../../mod/dfrn_request.php:494
msgid "Warning: profile location has no profile photo."
msgstr "Warnung: Es konnte kein Profilbild bei der angegebenen Profiladresse gefunden werden."
#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:437
#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:497
#, php-format
msgid "%d required parameter was not found at the given location"
msgid_plural "%d required parameters were not found at the given location"
@ -775,130 +761,130 @@ msgstr "Ungültige E-Mail Adresse."
#: ../../mod/dfrn_request.php:344
msgid "This account has not been configured for email. Request failed."
msgstr ""
msgstr "Dieses Konto ist nicht für Email konfiguriert. Anfrage fehlgeschlagen."
#: ../../mod/dfrn_request.php:372
#: ../../mod/dfrn_request.php:432
msgid "Unable to resolve your name at the provided location."
msgstr "Konnte deinen Namen an der angegebenen Stelle nicht finden."
#: ../../mod/dfrn_request.php:385
#: ../../mod/dfrn_request.php:445
msgid "You have already introduced yourself here."
msgstr "Du hast dich hier bereits vorgestellt."
#: ../../mod/dfrn_request.php:389
#: ../../mod/dfrn_request.php:449
#, php-format
msgid "Apparently you are already friends with %s."
msgstr "Es scheint so, als ob du bereits mit %s befreundet bist."
#: ../../mod/dfrn_request.php:410
#: ../../mod/dfrn_request.php:470
msgid "Invalid profile URL."
msgstr "Ungültige Profil-URL."
#: ../../mod/dfrn_request.php:416 ../../mod/follow.php:20
#: ../../mod/dfrn_request.php:476 ../../mod/follow.php:20
msgid "Disallowed profile URL."
msgstr "Nicht erlaubte Profil-URL."
#: ../../mod/dfrn_request.php:485 ../../mod/contacts.php:102
#: ../../mod/dfrn_request.php:545 ../../mod/contacts.php:102
msgid "Failed to update contact record."
msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen."
#: ../../mod/dfrn_request.php:506
#: ../../mod/dfrn_request.php:566
msgid "Your introduction has been sent."
msgstr "Deine Kontaktanfrage wurde gesendet."
#: ../../mod/dfrn_request.php:559
#: ../../mod/dfrn_request.php:619
msgid "Please login to confirm introduction."
msgstr "Bitte melde dich an, um die Kontaktanfrage zu bestätigen."
#: ../../mod/dfrn_request.php:573
#: ../../mod/dfrn_request.php:633
msgid ""
"Incorrect identity currently logged in. Please login to "
"<strong>this</strong> profile."
msgstr "Momentan bist du mit einer anderen Identität angemeldet. Bitte melde Dich mit <strong>diesem</strong> Profil an."
#: ../../mod/dfrn_request.php:585
#: ../../mod/dfrn_request.php:645
#, php-format
msgid "Welcome home %s."
msgstr "Willkommen zurück %s."
#: ../../mod/dfrn_request.php:586
#: ../../mod/dfrn_request.php:646
#, php-format
msgid "Please confirm your introduction/connection request to %s."
msgstr "Bitte bestätige deine Kontaktanfrage bei %s."
#: ../../mod/dfrn_request.php:587
#: ../../mod/dfrn_request.php:647
msgid "Confirm"
msgstr "Bestätigen"
#: ../../mod/dfrn_request.php:628 ../../include/items.php:2690
#: ../../mod/dfrn_request.php:688 ../../include/items.php:2707
msgid "[Name Withheld]"
msgstr "[Name unterdrückt]"
#: ../../mod/dfrn_request.php:715
#: ../../mod/dfrn_request.php:781
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:731
#: ../../mod/dfrn_request.php:797
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:733
#: ../../mod/dfrn_request.php:799
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:736
#: ../../mod/dfrn_request.php:802
msgid "Friend/Connection Request"
msgstr "Freundschafts-/Kontaktanfrage"
#: ../../mod/dfrn_request.php:737
#: ../../mod/dfrn_request.php:803
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:738
#: ../../mod/dfrn_request.php:804
msgid "Please answer the following:"
msgstr "Bitte beantworte Folgendes:"
#: ../../mod/dfrn_request.php:739
#: ../../mod/dfrn_request.php:805
#, php-format
msgid "Does %s know you?"
msgstr "Kennt %s dich?"
#: ../../mod/dfrn_request.php:742
#: ../../mod/dfrn_request.php:808
msgid "Add a personal note:"
msgstr "Eine persönliche Notiz beifügen:"
#: ../../mod/dfrn_request.php:744 ../../include/contact_selectors.php:76
#: ../../mod/dfrn_request.php:810 ../../include/contact_selectors.php:76
msgid "Friendica"
msgstr "Friendica"
#: ../../mod/dfrn_request.php:745
#: ../../mod/dfrn_request.php:811
msgid "StatusNet/Federated Social Web"
msgstr "StatusNet/Federated Social Web"
#: ../../mod/dfrn_request.php:746 ../../mod/settings.php:629
#: ../../mod/dfrn_request.php:812 ../../mod/settings.php:636
#: ../../include/contact_selectors.php:80
msgid "Diaspora"
msgstr "Diaspora"
#: ../../mod/dfrn_request.php:747
#: ../../mod/dfrn_request.php:813
#, 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:748
#: ../../mod/dfrn_request.php:814
msgid "Your Identity Address:"
msgstr "Adresse deines Profils:"
#: ../../mod/dfrn_request.php:751
#: ../../mod/dfrn_request.php:817
msgid "Submit Request"
msgstr "Anfrage abschicken"
@ -1079,8 +1065,8 @@ msgid "mb_string PHP module"
msgstr "PHP: mb_string-Modul"
#: ../../mod/install.php:383 ../../mod/install.php:385
msgid "Apace mod_rewrite module"
msgstr "Apache: mod_rewrite-Modul"
msgid "Apache mod_rewrite module"
msgstr "Apache mod_rewrite module"
#: ../../mod/install.php:383
msgid ""
@ -1194,7 +1180,7 @@ msgid "is interested in:"
msgstr "ist interessiert an:"
#: ../../mod/match.php:58 ../../mod/suggest.php:59
#: ../../include/contact_widgets.php:9 ../../boot.php:1027
#: ../../include/contact_widgets.php:9 ../../boot.php:1036
msgid "Connect"
msgstr "Verbinden"
@ -1225,8 +1211,8 @@ msgid "Discard"
msgstr "Verwerfen"
#: ../../mod/notifications.php:51 ../../mod/notifications.php:160
#: ../../mod/notifications.php:206 ../../mod/contacts.php:308
#: ../../mod/contacts.php:351
#: ../../mod/notifications.php:206 ../../mod/contacts.php:296
#: ../../mod/contacts.php:348
msgid "Ignore"
msgstr "Ignorieren"
@ -1238,15 +1224,12 @@ msgstr "System"
msgid "Network"
msgstr "Netzwerk"
#: ../../mod/notifications.php:85 ../../mod/network.php:182
#: ../../mod/notifications.php:85 ../../mod/network.php:184
msgid "Personal"
msgstr "Persönlich"
#: ../../mod/notifications.php:90 ../../view/theme/diabook-red/theme.php:239
#: ../../view/theme/diabook-blue/theme.php:239
#: ../../view/theme/diabook/theme.php:249
#: ../../view/theme/diabook-aerith/theme.php:240 ../../include/nav.php:77
#: ../../include/nav.php:115
#: ../../mod/notifications.php:90 ../../view/theme/diabook/theme.php:65
#: ../../include/nav.php:77 ../../include/nav.php:115
msgid "Home"
msgstr "Pinnwand"
@ -1281,7 +1264,7 @@ msgid "suggested by %s"
msgstr "vorgeschlagen von %s"
#: ../../mod/notifications.php:153 ../../mod/notifications.php:200
#: ../../mod/contacts.php:356
#: ../../mod/contacts.php:354
msgid "Hide this contact from others"
msgstr "Verberge diesen Kontakt vor anderen"
@ -1294,7 +1277,7 @@ msgid "if applicable"
msgstr "falls anwendbar"
#: ../../mod/notifications.php:157 ../../mod/notifications.php:204
#: ../../mod/admin.php:546
#: ../../mod/admin.php:642
msgid "Approve"
msgstr "Genehmigen"
@ -1431,213 +1414,275 @@ msgstr "Kontakt wurde ignoriert"
msgid "Contact has been unignored"
msgstr "Kontakt wird nicht mehr ignoriert"
#: ../../mod/contacts.php:200
msgid "stopped following"
msgstr "wird nicht mehr gefolgt"
#: ../../mod/contacts.php:195
msgid "Contact has been archived"
msgstr "Kontakt wurde archiviert"
#: ../../mod/contacts.php:221
#: ../../mod/contacts.php:195
msgid "Contact has been unarchived"
msgstr "Kontakt wurde aus dem Archiv geholt"
#: ../../mod/contacts.php:208
msgid "Contact has been removed."
msgstr "Kontakt wurde entfernt."
#: ../../mod/contacts.php:251
#: ../../mod/contacts.php:238
#, php-format
msgid "You are mutual friends with %s"
msgstr "Du hast mit %s eine beidseitige Freundschaft"
#: ../../mod/contacts.php:255
#: ../../mod/contacts.php:242
#, php-format
msgid "You are sharing with %s"
msgstr "Du teilst mit %s"
#: ../../mod/contacts.php:260
#: ../../mod/contacts.php:247
#, php-format
msgid "%s is sharing with you"
msgstr "%s teilt mit Dir"
#: ../../mod/contacts.php:277
#: ../../mod/contacts.php:264
msgid "Private communications are not available for this contact."
msgstr "Private Kommunikation ist für diesen Kontakt nicht verfügbar."
#: ../../mod/contacts.php:280
#: ../../mod/contacts.php:267
msgid "Never"
msgstr "Niemals"
#: ../../mod/contacts.php:284
#: ../../mod/contacts.php:271
msgid "(Update was successful)"
msgstr "(Aktualisierung war erfolgreich)"
#: ../../mod/contacts.php:284
#: ../../mod/contacts.php:271
msgid "(Update was not successful)"
msgstr "(Aktualisierung war nicht erfolgreich)"
#: ../../mod/contacts.php:286
#: ../../mod/contacts.php:273
msgid "Suggest friends"
msgstr "Kontakte vorschlagen"
#: ../../mod/contacts.php:290
#: ../../mod/contacts.php:277
#, php-format
msgid "Network type: %s"
msgstr "Netzwerk Typ: %s"
#: ../../mod/contacts.php:293
#: ../../mod/contacts.php:280 ../../include/contact_widgets.php:183
#, php-format
msgid "%d contact in common"
msgid_plural "%d contacts in common"
msgstr[0] "%d gemeinsamer Kontakt"
msgstr[1] "%d gemeinsame Kontakte"
#: ../../mod/contacts.php:298
#: ../../mod/contacts.php:285
msgid "View all contacts"
msgstr "Alle Kontakte anzeigen"
#: ../../mod/contacts.php:303 ../../mod/contacts.php:350
#: ../../mod/admin.php:550
#: ../../mod/contacts.php:290 ../../mod/contacts.php:347
#: ../../mod/admin.php:646
msgid "Unblock"
msgstr "Entsperren"
#: ../../mod/contacts.php:303 ../../mod/contacts.php:350
#: ../../mod/admin.php:549
#: ../../mod/contacts.php:290 ../../mod/contacts.php:347
#: ../../mod/admin.php:645
msgid "Block"
msgstr "Sperren"
#: ../../mod/contacts.php:308 ../../mod/contacts.php:351
#: ../../mod/contacts.php:293
msgid "Toggle Blocked status"
msgstr "Geblockt-Sttaus ein-/ausschalten"
#: ../../mod/contacts.php:296 ../../mod/contacts.php:348
msgid "Unignore"
msgstr "Ignorieren aufheben"
#: ../../mod/contacts.php:313
#: ../../mod/contacts.php:299
msgid "Toggle Ignored status"
msgstr "Ignoriert-Status ein-/ausschalten"
#: ../../mod/contacts.php:303
msgid "Unarchive"
msgstr "Unarchivieren"
#: ../../mod/contacts.php:303
msgid "Archive"
msgstr "Archivieren"
#: ../../mod/contacts.php:306
msgid "Toggle Archive status"
msgstr "Archiviert-Status ein-/ausschalten"
#: ../../mod/contacts.php:309
msgid "Repair"
msgstr "Reparieren"
#: ../../mod/contacts.php:323
#: ../../mod/contacts.php:312
msgid "Advanced Contact Settings"
msgstr "Fortgeschrittene Kontakteinstellungen"
#: ../../mod/contacts.php:320
msgid "Contact Editor"
msgstr "Kontakt Editor"
#: ../../mod/contacts.php:326
#: ../../mod/contacts.php:323
msgid "Profile Visibility"
msgstr "Profil Anzeige"
#: ../../mod/contacts.php:327
#: ../../mod/contacts.php:324
#, php-format
msgid ""
"Please choose the profile you would like to display to %s when viewing your "
"profile securely."
msgstr "Bitte wähle eines deiner Profile das angezeigt werden soll, wenn %s dein Profil aufruft."
#: ../../mod/contacts.php:328
#: ../../mod/contacts.php:325
msgid "Contact Information / Notes"
msgstr "Kontakt Informationen / Notizen"
#: ../../mod/contacts.php:329
#: ../../mod/contacts.php:326
msgid "Edit contact notes"
msgstr "Notizen zum Kontakt bearbiten"
#: ../../mod/contacts.php:334 ../../mod/contacts.php:507
#: ../../mod/contacts.php:331 ../../mod/contacts.php:522
#: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40
#, php-format
msgid "Visit %s's profile [%s]"
msgstr "Besuche %ss Profil [%s]"
#: ../../mod/contacts.php:335
#: ../../mod/contacts.php:332
msgid "Block/Unblock contact"
msgstr "Kontakt blockieren/freischalten"
#: ../../mod/contacts.php:336
#: ../../mod/contacts.php:333
msgid "Ignore contact"
msgstr "Ignoriere den Kontakt"
#: ../../mod/contacts.php:337
#: ../../mod/contacts.php:334
msgid "Repair URL settings"
msgstr "URL Einstellungen reparieren"
#: ../../mod/contacts.php:338
#: ../../mod/contacts.php:335
msgid "View conversations"
msgstr "Unterhaltungen anzeigen"
#: ../../mod/contacts.php:340
#: ../../mod/contacts.php:337
msgid "Delete contact"
msgstr "Lösche den Kontakt"
#: ../../mod/contacts.php:344
#: ../../mod/contacts.php:341
msgid "Last update:"
msgstr "letzte Aktualisierung:"
#: ../../mod/contacts.php:345
#: ../../mod/contacts.php:342
msgid "Update public posts"
msgstr "Öffentliche Beiträge aktualisieren"
#: ../../mod/contacts.php:347 ../../mod/admin.php:979
#: ../../mod/contacts.php:344 ../../mod/admin.php:1117
msgid "Update now"
msgstr "Jetzt aktualisieren"
#: ../../mod/contacts.php:354
#: ../../mod/contacts.php:351
msgid "Currently blocked"
msgstr "Derzeit geblockt"
#: ../../mod/contacts.php:355
#: ../../mod/contacts.php:352
msgid "Currently ignored"
msgstr "Derzeit ignoriert"
#: ../../mod/contacts.php:356
#: ../../mod/contacts.php:353
msgid "Currently archived"
msgstr "Momentan archiviert"
#: ../../mod/contacts.php:354
msgid ""
"Replies/likes to your public posts <strong>may</strong> still be visible"
msgstr "Antworten/Likes auf deine öffentlichen Beiträge <strong>könnten</strong> weiterhin sichtbar sein"
#: ../../mod/contacts.php:405
#: ../../mod/contacts.php:407
msgid "Suggestions"
msgstr "Kontaktvorschläge"
#: ../../mod/contacts.php:410 ../../mod/group.php:191
#: ../../mod/contacts.php:410
msgid "Suggest potential friends"
msgstr "Freunde vorschlagen"
#: ../../mod/contacts.php:413 ../../mod/group.php:191
msgid "All Contacts"
msgstr "Alle Kontakte"
#: ../../mod/contacts.php:415
msgid "Unblocked Contacts"
msgstr "Nicht blockierte Kontakte"
#: ../../mod/contacts.php:416
msgid "Show all contacts"
msgstr "Alle Kontakte anzeigen"
#: ../../mod/contacts.php:421
msgid "Blocked Contacts"
msgstr "Blockierte Kontakte"
#: ../../mod/contacts.php:419
msgid "Unblocked"
msgstr "Ungeblockt"
#: ../../mod/contacts.php:427
msgid "Ignored Contacts"
msgstr "Ignorierte Kontakte"
#: ../../mod/contacts.php:422
msgid "Only show unblocked contacts"
msgstr "Nur nicht-blockierte Kontakte anzeigen"
#: ../../mod/contacts.php:426
msgid "Blocked"
msgstr "Geblockt"
#: ../../mod/contacts.php:429
msgid "Only show blocked contacts"
msgstr "Nur blockierte Kontakte anzeigen"
#: ../../mod/contacts.php:433
msgid "Hidden Contacts"
msgstr "Verborgene Kontakte"
msgid "Ignored"
msgstr "Ignoriert"
#: ../../mod/contacts.php:483
#: ../../mod/contacts.php:436
msgid "Only show ignored contacts"
msgstr "Nur ignorierte Kontakte anzeigen"
#: ../../mod/contacts.php:440
msgid "Archived"
msgstr "Archiviert"
#: ../../mod/contacts.php:443
msgid "Only show archived contacts"
msgstr "Nur archivierte Kontakte anzeigen"
#: ../../mod/contacts.php:447
msgid "Hidden"
msgstr "Verborgen"
#: ../../mod/contacts.php:450
msgid "Only show hidden contacts"
msgstr "Nur verborgene Kontakte anzeigen"
#: ../../mod/contacts.php:498
msgid "Mutual Friendship"
msgstr "Beidseitige Freundschaft"
#: ../../mod/contacts.php:487
#: ../../mod/contacts.php:502
msgid "is a fan of yours"
msgstr "ist ein Fan von dir"
#: ../../mod/contacts.php:491
#: ../../mod/contacts.php:506
msgid "you are a fan of"
msgstr "du bist Fan von"
#: ../../mod/contacts.php:508 ../../mod/nogroup.php:41
#: ../../mod/contacts.php:523 ../../mod/nogroup.php:41
msgid "Edit contact"
msgstr "Kontakt bearbeiten"
#: ../../mod/contacts.php:529 ../../view/theme/diabook-red/theme.php:241
#: ../../view/theme/diabook-blue/theme.php:241
#: ../../view/theme/diabook/theme.php:251
#: ../../view/theme/diabook-aerith/theme.php:242 ../../include/nav.php:139
#: ../../mod/contacts.php:544 ../../view/theme/diabook/theme.php:67
#: ../../include/nav.php:139
msgid "Contacts"
msgstr "Kontakte"
#: ../../mod/contacts.php:533
#: ../../mod/contacts.php:548
msgid "Search your contacts"
msgstr "Suche in deinen Kontakten"
#: ../../mod/contacts.php:534 ../../mod/directory.php:57
#: ../../mod/contacts.php:549 ../../mod/directory.php:57
msgid "Finding: "
msgstr "Funde: "
#: ../../mod/contacts.php:535 ../../mod/directory.php:59
#: ../../mod/contacts.php:550 ../../mod/directory.php:59
#: ../../include/contact_widgets.php:33
msgid "Find"
msgstr "Finde"
@ -1657,10 +1702,11 @@ msgstr "Anfrage zum Zurücksetzen des Passworts auf %s erhalten"
#: ../../mod/lostpass.php:45 ../../mod/lostpass.php:107
#: ../../mod/register.php:388 ../../mod/register.php:442
#: ../../mod/regmod.php:54 ../../mod/dfrn_confirm.php:732
#: ../../addon/facebook/facebook.php:625
#: ../../addon/facebook/facebook.php:1090
#: ../../addon/testdrive/testdrive.php:58 ../../include/items.php:2699
#: ../../mod/regmod.php:54 ../../mod/dfrn_confirm.php:742
#: ../../addon/facebook/facebook.php:680
#: ../../addon/facebook/facebook.php:1170
#: ../../addon/testdrive/testdrive.php:58 ../../include/items.php:2716
#: ../../boot.php:686
msgid "Administrator"
msgstr "Administrator"
@ -1670,7 +1716,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:809
#: ../../mod/lostpass.php:83 ../../boot.php:818
msgid "Password Reset"
msgstr "Passwort zurücksetzen"
@ -1738,468 +1784,475 @@ msgstr "Verbundene Programme"
msgid "Export personal data"
msgstr "Persönliche Daten exportieren"
#: ../../mod/settings.php:83 ../../mod/admin.php:631 ../../mod/admin.php:817
#: ../../mod/settings.php:80
msgid "Remove account"
msgstr "Account entfernen"
#: ../../mod/settings.php:88 ../../mod/admin.php:732 ../../mod/admin.php:937
#: ../../addon/mathjax/mathjax.php:36 ../../include/nav.php:137
msgid "Settings"
msgstr "Einstellungen"
#: ../../mod/settings.php:126
#: ../../mod/settings.php:131
msgid "Missing some important data!"
msgstr "Wichtige Daten fehlen!"
#: ../../mod/settings.php:129 ../../mod/settings.php:558
#: ../../mod/admin.php:89
#: ../../mod/settings.php:134 ../../mod/settings.php:565
msgid "Update"
msgstr "Aktualisierungen"
#: ../../mod/settings.php:234
#: ../../mod/settings.php:239
msgid "Failed to connect with email account using the settings provided."
msgstr "Konnte das Email Konto mit den angegebenen Einstellungen nicht erreichen."
#: ../../mod/settings.php:239
#: ../../mod/settings.php:244
msgid "Email settings updated."
msgstr "EMail Einstellungen bearbeitet."
#: ../../mod/settings.php:298
#: ../../mod/settings.php:303
msgid "Passwords do not match. Password unchanged."
msgstr "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert."
#: ../../mod/settings.php:303
#: ../../mod/settings.php:308
msgid "Empty passwords are not allowed. Password unchanged."
msgstr "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert."
#: ../../mod/settings.php:314
#: ../../mod/settings.php:319
msgid "Password changed."
msgstr "Passwort ändern."
#: ../../mod/settings.php:316
#: ../../mod/settings.php:321
msgid "Password update failed. Please try again."
msgstr "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal."
#: ../../mod/settings.php:379
#: ../../mod/settings.php:385
msgid " Please use a shorter name."
msgstr " Bitte verwende einen kürzeren Namen."
#: ../../mod/settings.php:381
#: ../../mod/settings.php:387
msgid " Name too short."
msgstr " Name ist zu kurz."
#: ../../mod/settings.php:387
#: ../../mod/settings.php:393
msgid " Not valid email."
msgstr " Keine gültige E-Mail."
#: ../../mod/settings.php:389
#: ../../mod/settings.php:395
msgid " Cannot change to that email."
msgstr "Ändern der E-Mail nicht möglich. "
#: ../../mod/settings.php:461 ../../addon/facebook/facebook.php:450
#: ../../addon/impressum/impressum.php:75
#: ../../mod/settings.php:468 ../../addon/facebook/facebook.php:480
#: ../../addon/impressum/impressum.php:77
#: ../../addon/openstreetmap/openstreetmap.php:80
#: ../../addon/mathjax/mathjax.php:64 ../../addon/piwik/piwik.php:105
#: ../../addon/mathjax/mathjax.php:66 ../../addon/piwik/piwik.php:105
#: ../../addon/twitter/twitter.php:370
msgid "Settings updated."
msgstr "Einstellungen aktualisiert."
#: ../../mod/settings.php:531 ../../mod/settings.php:557
#: ../../mod/settings.php:593
#: ../../mod/settings.php:538 ../../mod/settings.php:564
#: ../../mod/settings.php:600
msgid "Add application"
msgstr "Programm hinzufügen"
#: ../../mod/settings.php:535 ../../mod/settings.php:561
#: ../../mod/settings.php:542 ../../mod/settings.php:568
#: ../../addon/statusnet/statusnet.php:547
msgid "Consumer Key"
msgstr "Consumer Key"
#: ../../mod/settings.php:536 ../../mod/settings.php:562
#: ../../mod/settings.php:543 ../../mod/settings.php:569
#: ../../addon/statusnet/statusnet.php:546
msgid "Consumer Secret"
msgstr "Consumer Secret"
#: ../../mod/settings.php:537 ../../mod/settings.php:563
#: ../../mod/settings.php:544 ../../mod/settings.php:570
msgid "Redirect"
msgstr "Umleiten"
#: ../../mod/settings.php:538 ../../mod/settings.php:564
#: ../../mod/settings.php:545 ../../mod/settings.php:571
msgid "Icon url"
msgstr "Icon URL"
#: ../../mod/settings.php:549
#: ../../mod/settings.php:556
msgid "You can't edit this application."
msgstr "Du kannst dieses Programm nicht bearbeiten."
#: ../../mod/settings.php:592
#: ../../mod/settings.php:599
msgid "Connected Apps"
msgstr "Verbundene Programme"
#: ../../mod/settings.php:596
#: ../../mod/settings.php:603
msgid "Client key starts with"
msgstr "Anwender Schlüssel beginnt mit"
#: ../../mod/settings.php:597
#: ../../mod/settings.php:604
msgid "No name"
msgstr "Kein Name"
#: ../../mod/settings.php:598
#: ../../mod/settings.php:605
msgid "Remove authorization"
msgstr "Autorisierung entziehen"
#: ../../mod/settings.php:609
#: ../../mod/settings.php:616
msgid "No Plugin settings configured"
msgstr "Keine Plugin-Einstellungen konfiguriert"
#: ../../mod/settings.php:617 ../../addon/widgets/widgets.php:123
#: ../../mod/settings.php:624 ../../addon/widgets/widgets.php:123
msgid "Plugin Settings"
msgstr "Plugin-Einstellungen"
#: ../../mod/settings.php:629 ../../mod/settings.php:630
#: ../../mod/settings.php:636 ../../mod/settings.php:637
#, 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:629 ../../mod/settings.php:630
#: ../../mod/settings.php:636 ../../mod/settings.php:637
msgid "enabled"
msgstr "eingeschaltet"
#: ../../mod/settings.php:629 ../../mod/settings.php:630
#: ../../mod/settings.php:636 ../../mod/settings.php:637
msgid "disabled"
msgstr "ausgeschaltet"
#: ../../mod/settings.php:630
#: ../../mod/settings.php:637
msgid "StatusNet"
msgstr "StatusNet"
#: ../../mod/settings.php:660
#: ../../mod/settings.php:667
msgid "Connector Settings"
msgstr "Verbindungs-Einstellungen"
#: ../../mod/settings.php:665
#: ../../mod/settings.php:672
msgid "Email/Mailbox Setup"
msgstr "E-Mail/Postfach-Einstellungen"
#: ../../mod/settings.php:666
#: ../../mod/settings.php:673
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:667
#: ../../mod/settings.php:674
msgid "Last successful email check:"
msgstr "Letzter erfolgreicher Email Check"
#: ../../mod/settings.php:668
#: ../../mod/settings.php:675
msgid "Email access is disabled on this site."
msgstr "Zugriff auf E-Mails für diese Seite deaktiviert."
#: ../../mod/settings.php:669
#: ../../mod/settings.php:676
msgid "IMAP server name:"
msgstr "IMAP-Server-Name:"
#: ../../mod/settings.php:670
#: ../../mod/settings.php:677
msgid "IMAP port:"
msgstr "IMAP-Port:"
#: ../../mod/settings.php:671
#: ../../mod/settings.php:678
msgid "Security:"
msgstr "Sicherheit:"
#: ../../mod/settings.php:671 ../../mod/settings.php:676
#: ../../mod/settings.php:678 ../../mod/settings.php:683
msgid "None"
msgstr "Keine"
#: ../../mod/settings.php:672
#: ../../mod/settings.php:679
msgid "Email login name:"
msgstr "E-Mail-Login-Name:"
#: ../../mod/settings.php:673
#: ../../mod/settings.php:680
msgid "Email password:"
msgstr "E-Mail-Passwort:"
#: ../../mod/settings.php:674
#: ../../mod/settings.php:681
msgid "Reply-to address:"
msgstr "Reply-to Adresse:"
#: ../../mod/settings.php:675
#: ../../mod/settings.php:682
msgid "Send public posts to all email contacts:"
msgstr "Sende öffentliche Beiträge an alle E-Mail-Kontakte:"
#: ../../mod/settings.php:676
#: ../../mod/settings.php:683
msgid "Action after import:"
msgstr "Aktion nach Import:"
#: ../../mod/settings.php:676
#: ../../mod/settings.php:683
msgid "Mark as seen"
msgstr "Als gelesen markieren"
#: ../../mod/settings.php:676
#: ../../mod/settings.php:683
msgid "Move to folder"
msgstr "In einen Ordner verschieben"
#: ../../mod/settings.php:677
#: ../../mod/settings.php:684
msgid "Move to folder:"
msgstr "In diesen Ordner verschieben:"
#: ../../mod/settings.php:737
#: ../../mod/settings.php:744
msgid "Display Settings"
msgstr "Anzeige Einstellungen"
#: ../../mod/settings.php:743
#: ../../mod/settings.php:750
msgid "Display Theme:"
msgstr "Theme:"
#: ../../mod/settings.php:744
#: ../../mod/settings.php:751
msgid "Update browser every xx seconds"
msgstr "Browser alle xx Sekunden aktualisieren"
#: ../../mod/settings.php:744
#: ../../mod/settings.php:751
msgid "Minimum of 10 seconds, no maximum"
msgstr "Minimal 10 Sekunden, kein Maximum"
#: ../../mod/settings.php:745
#: ../../mod/settings.php:752
msgid "Number of items to display on the network page:"
msgstr "Zahl der Beiträge, welche pro Netzwerkseite angezeigt werden sollen: "
msgstr "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: "
#: ../../mod/settings.php:745
#: ../../mod/settings.php:752
msgid "Maximum of 100 items"
msgstr "Maximal 100 Beiträge"
#: ../../mod/settings.php:746
#: ../../mod/settings.php:753
msgid "Don't show emoticons"
msgstr "Keine Smilies anzeigen"
#: ../../mod/settings.php:811 ../../mod/admin.php:162 ../../mod/admin.php:522
#: ../../mod/settings.php:821 ../../mod/admin.php:180 ../../mod/admin.php:618
msgid "Normal Account"
msgstr "Normaler Account"
#: ../../mod/settings.php:812
#: ../../mod/settings.php:822
msgid "This account is a normal personal profile"
msgstr "Dieser Account ist ein normales persönliches Profil"
#: ../../mod/settings.php:815 ../../mod/admin.php:163 ../../mod/admin.php:523
#: ../../mod/settings.php:825 ../../mod/admin.php:181 ../../mod/admin.php:619
msgid "Soapbox Account"
msgstr "Sandkasten-Account"
#: ../../mod/settings.php:816
#: ../../mod/settings.php:826
msgid "Automatically approve all connection/friend requests as read-only fans"
msgstr "Freundschaftsanfragen werden automatisch als Nurlese-Fans akzeptiert"
msgstr "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert"
#: ../../mod/settings.php:819 ../../mod/admin.php:164 ../../mod/admin.php:524
#: ../../mod/settings.php:829 ../../mod/admin.php:182 ../../mod/admin.php:620
msgid "Community/Celebrity Account"
msgstr "Gemeinschafts/Promi-Account"
#: ../../mod/settings.php:820
#: ../../mod/settings.php:830
msgid ""
"Automatically approve all connection/friend requests as read-write fans"
msgstr "Freundschaftsanfragen werden automatisch als Lese-und-Schreib-Fans akzeptiert"
msgstr "Kontaktanfragen werden automatisch als Lese-und-Schreib-Fans akzeptiert"
#: ../../mod/settings.php:823 ../../mod/admin.php:165 ../../mod/admin.php:525
#: ../../mod/settings.php:833 ../../mod/admin.php:183 ../../mod/admin.php:621
msgid "Automatic Friend Account"
msgstr "Automatischer Freundesaccount"
#: ../../mod/settings.php:824
msgid "Automatically approve all connection/friend requests as friends"
msgstr "Freundschaftsanfragen werden automatisch als Freund akzeptiert"
#: ../../mod/settings.php:834
msgid "Automatically approve all connection/friend requests as friends"
msgstr "Kontaktanfragen werden automatisch als Freund akzeptiert"
#: ../../mod/settings.php:844
msgid "OpenID:"
msgstr "OpenID:"
#: ../../mod/settings.php:834
#: ../../mod/settings.php:844
msgid "(Optional) Allow this OpenID to login to this account."
msgstr "(Optional) Erlaube die Anmeldung für diesen Account mit dieser OpenID."
#: ../../mod/settings.php:844
#: ../../mod/settings.php:854
msgid "Publish your default profile in your local site directory?"
msgstr "Veröffentliche dein Standardprofil im Verzeichnis der lokalen Seite?"
#: ../../mod/settings.php:850
#: ../../mod/settings.php:860
msgid "Publish your default profile in the global social directory?"
msgstr "Veröffentliche dein Standardprofil im weltweiten Verzeichnis?"
#: ../../mod/settings.php:858
#: ../../mod/settings.php:868
msgid "Hide your contact/friend list from viewers of your default profile?"
msgstr "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?"
#: ../../mod/settings.php:862
#: ../../mod/settings.php:872
msgid "Hide your profile details from unknown viewers?"
msgstr "Profil-Details vor unbekannten Betrachtern verbergen?"
#: ../../mod/settings.php:867
#: ../../mod/settings.php:877
msgid "Allow friends to post to your profile page?"
msgstr "Deinen Kontakten erlauben, auf deine Pinnwand zu schreiben?"
#: ../../mod/settings.php:873
#: ../../mod/settings.php:883
msgid "Allow friends to tag your posts?"
msgstr "Deinen Kontakten erlauben, deine Beiträge mit Schlagwörtern zu versehen?"
#: ../../mod/settings.php:879
#: ../../mod/settings.php:889
msgid "Allow us to suggest you as a potential friend to new members?"
msgstr "Erlaube uns dich als potentiellen Kontakt für neue Mitglieder vorzuschlagen?"
#: ../../mod/settings.php:885
#: ../../mod/settings.php:895
msgid "Permit unknown people to send you private mail?"
msgstr "Erlaube es Unbekannten dir private Nachrichten zu schicken?"
#: ../../mod/settings.php:896
#: ../../mod/settings.php:906
msgid "Profile is <strong>not published</strong>."
msgstr "Profil ist <strong>nicht veröffentlicht</strong>."
#: ../../mod/settings.php:902 ../../mod/profile_photo.php:211
#: ../../mod/settings.php:912 ../../mod/profile_photo.php:211
msgid "or"
msgstr "oder"
#: ../../mod/settings.php:907
#: ../../mod/settings.php:917
msgid "Your Identity Address is"
msgstr "Die Adresse deines Profils lautet:"
#: ../../mod/settings.php:918
#: ../../mod/settings.php:928
msgid "Automatically expire posts after this many days:"
msgstr "Beiträge verfallen automatisch nach dieser Anzahl von Tagen"
#: ../../mod/settings.php:918
#: ../../mod/settings.php:928
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:919
#: ../../mod/settings.php:929
msgid "Advanced expiration settings"
msgstr "Erweiterte Verfallseinstellungen"
#: ../../mod/settings.php:920
#: ../../mod/settings.php:930
msgid "Advanced Expiration"
msgstr "Erweitertes Verfallen"
#: ../../mod/settings.php:921
#: ../../mod/settings.php:931
msgid "Expire posts:"
msgstr "Beiträge verfallen lassen:"
#: ../../mod/settings.php:922
#: ../../mod/settings.php:932
msgid "Expire personal notes:"
msgstr "Persönliche Notizen verfallen lassen:"
#: ../../mod/settings.php:923
#: ../../mod/settings.php:933
msgid "Expire starred posts:"
msgstr "Markierte Beiträge verfallen lassen:"
#: ../../mod/settings.php:924
#: ../../mod/settings.php:934
msgid "Expire photos:"
msgstr "Fotos verfallen lassen:"
#: ../../mod/settings.php:928
#: ../../mod/settings.php:938
msgid "Account Settings"
msgstr "Account-Einstellungen"
#: ../../mod/settings.php:937
#: ../../mod/settings.php:947
msgid "Password Settings"
msgstr "Passwort-Einstellungen"
#: ../../mod/settings.php:938
#: ../../mod/settings.php:948
msgid "New Password:"
msgstr "Neues Passwort:"
#: ../../mod/settings.php:939
#: ../../mod/settings.php:949
msgid "Confirm:"
msgstr "Bestätigen:"
#: ../../mod/settings.php:939
#: ../../mod/settings.php:949
msgid "Leave password fields blank unless changing"
msgstr "Lass die Passwort-Felder leer, außer du willst das Passwort ändern"
#: ../../mod/settings.php:943
#: ../../mod/settings.php:953
msgid "Basic Settings"
msgstr "Grundeinstellungen"
#: ../../mod/settings.php:944 ../../include/profile_advanced.php:15
#: ../../mod/settings.php:954 ../../include/profile_advanced.php:15
msgid "Full Name:"
msgstr "Kompletter Name:"
#: ../../mod/settings.php:945
#: ../../mod/settings.php:955
msgid "Email Address:"
msgstr "Emailadresse:"
#: ../../mod/settings.php:946
#: ../../mod/settings.php:956
msgid "Your Timezone:"
msgstr "Deine Zeitzone:"
#: ../../mod/settings.php:947
#: ../../mod/settings.php:957
msgid "Default Post Location:"
msgstr "Standardstandort:"
#: ../../mod/settings.php:948
#: ../../mod/settings.php:958
msgid "Use Browser Location:"
msgstr "Verwende den Standort des Browsers:"
#: ../../mod/settings.php:951
#: ../../mod/settings.php:961
msgid "Security and Privacy Settings"
msgstr "Sicherheits- und Privatsphäre-Einstellungen"
#: ../../mod/settings.php:953
#: ../../mod/settings.php:963
msgid "Maximum Friend Requests/Day:"
msgstr "Maximale Anzahl von Freundschaftsanfragen/Tag:"
#: ../../mod/settings.php:953 ../../mod/settings.php:968
#: ../../mod/settings.php:963 ../../mod/settings.php:978
msgid "(to prevent spam abuse)"
msgstr "(um SPAM zu vermeiden)"
#: ../../mod/settings.php:954
#: ../../mod/settings.php:964
msgid "Default Post Permissions"
msgstr "Standard-Zugriffsrechte für Beiträge"
#: ../../mod/settings.php:955
#: ../../mod/settings.php:965
msgid "(click to open/close)"
msgstr "(klicke zum öffnen/schließen)"
#: ../../mod/settings.php:968
#: ../../mod/settings.php:978
msgid "Maximum private messages per day from unknown people:"
msgstr "Maximale Anzahl von privaten Nachrichten, die dir unbekannte Personen pro Tag senden dürfen:"
#: ../../mod/settings.php:971
#: ../../mod/settings.php:981
msgid "Notification Settings"
msgstr "Benachrichtigungseinstellungen"
#: ../../mod/settings.php:972
#: ../../mod/settings.php:982
msgid "By default post a status message when:"
msgstr ""
msgstr "Standardmäßig eine Status-Nachricht posten wenn:"
#: ../../mod/settings.php:973
#: ../../mod/settings.php:983
msgid "accepting a friend request"
msgstr "akzeptieren einer Freundschaftsanfrage"
msgstr " du eine Kontaktanfrage akzeptierst"
#: ../../mod/settings.php:974
#: ../../mod/settings.php:984
msgid "joining a forum/community"
msgstr " du einem Forum/einer Gemeinschaftsseite beitrittst"
#: ../../mod/settings.php:985
msgid "making an <em>interesting</em> profile change"
msgstr ""
msgstr " du eine <em>interessante</em> Änderung an deinem Profil durchführst"
#: ../../mod/settings.php:975
#: ../../mod/settings.php:986
msgid "Send a notification email when:"
msgstr "Benachrichtigungs-E-Mail senden wenn:"
#: ../../mod/settings.php:976
#: ../../mod/settings.php:987
msgid "You receive an introduction"
msgstr "- du eine Kontaktanfrage erhältst"
msgstr " du eine Kontaktanfrage erhältst"
#: ../../mod/settings.php:977
#: ../../mod/settings.php:988
msgid "Your introductions are confirmed"
msgstr "- eine deiner Kontaktanfragen akzeptiert wurde"
msgstr " eine deiner Kontaktanfragen akzeptiert wurde"
#: ../../mod/settings.php:978
#: ../../mod/settings.php:989
msgid "Someone writes on your profile wall"
msgstr "- jemand etwas auf deine Pinnwand schreibt"
msgstr " jemand etwas auf deine Pinnwand schreibt"
#: ../../mod/settings.php:979
#: ../../mod/settings.php:990
msgid "Someone writes a followup comment"
msgstr "- jemand auch einen Kommentar verfasst"
msgstr " jemand auch einen Kommentar verfasst"
#: ../../mod/settings.php:980
#: ../../mod/settings.php:991
msgid "You receive a private message"
msgstr "- du eine private Nachricht erhältst"
msgstr " du eine private Nachricht erhältst"
#: ../../mod/settings.php:981
#: ../../mod/settings.php:992
msgid "You receive a friend suggestion"
msgstr "- du eine Empfehlung erhältst"
#: ../../mod/settings.php:982
#: ../../mod/settings.php:993
msgid "You are tagged in a post"
msgstr "- du in einem Beitrag erwähnt wurdest"
#: ../../mod/settings.php:985
#: ../../mod/settings.php:996
msgid "Advanced Page Settings"
msgstr "Erweiterte Seiten-Einstellungen"
@ -2237,23 +2290,47 @@ msgstr "hinzufügen"
msgid "Commented Order"
msgstr "Neueste Kommentare"
#: ../../mod/network.php:176
#: ../../mod/network.php:174
msgid "Sort by Comment Date"
msgstr "Nach Kommentardatum sortieren"
#: ../../mod/network.php:177
msgid "Posted Order"
msgstr "Neueste Beiträge"
#: ../../mod/network.php:180
msgid "Sort by Post Date"
msgstr "Nach Beitragsdatum sortieren"
#: ../../mod/network.php:187
msgid "Posts that mention or involve you"
msgstr "Beiträge, in denen es um Dich geht"
#: ../../mod/network.php:190
msgid "New"
msgstr "Neue"
#: ../../mod/network.php:192
#: ../../mod/network.php:193
msgid "Activity Stream - by date"
msgstr "Aktivitäten-Stream - nach Datum"
#: ../../mod/network.php:196
msgid "Starred"
msgstr "Markierte"
#: ../../mod/network.php:197
#: ../../mod/network.php:199
msgid "Favourite Posts"
msgstr "Favorisierte Beiträge"
#: ../../mod/network.php:202
msgid "Shared Links"
msgstr "Geteilte Links"
#: ../../mod/network.php:274
#: ../../mod/network.php:205
msgid "Interesting Links"
msgstr "Interessante Links"
#: ../../mod/network.php:281
#, php-format
msgid "Warning: This group contains %s member from an insecure network."
msgid_plural ""
@ -2261,40 +2338,42 @@ msgid_plural ""
msgstr[0] "Warnung: Diese Gruppe beinhaltet %s Person aus einem unsicheren Netzwerk."
msgstr[1] "Warnung: Diese Gruppe beinhaltet %s Personen aus unsicheren Netzwerken."
#: ../../mod/network.php:277
#: ../../mod/network.php:284
msgid "Private messages to this group are at risk of public disclosure."
msgstr "Private Nachrichten an diese Gruppe könnten an die Öffentlichkeit geraten."
#: ../../mod/network.php:322
#: ../../mod/network.php:329
msgid "No such group"
msgstr "Es gibt keine solche Gruppe"
#: ../../mod/network.php:333
#: ../../mod/network.php:340
msgid "Group is empty"
msgstr "Gruppe ist leer"
#: ../../mod/network.php:337
#: ../../mod/network.php:344
msgid "Group: "
msgstr "Gruppe: "
#: ../../mod/network.php:347
#: ../../mod/network.php:354
msgid "Contact: "
msgstr "Kontakt: "
#: ../../mod/network.php:349
#: ../../mod/network.php:356
msgid "Private messages to this person are at risk of public disclosure."
msgstr "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen."
#: ../../mod/network.php:354
#: ../../mod/network.php:361
msgid "Invalid contact."
msgstr "Ungültiger Kontakt."
#: ../../mod/notes.php:44 ../../boot.php:1476
#: ../../mod/notes.php:44 ../../boot.php:1499
msgid "Personal Notes"
msgstr "Persönliche Notizen"
#: ../../mod/notes.php:63 ../../mod/filer.php:30
#: ../../addon/facebook/facebook.php:683 ../../include/text.php:652
#: ../../addon/facebook/facebook.php:748
#: ../../addon/privacy_image_cache/privacy_image_cache.php:147
#: ../../include/text.php:652
msgid "Save"
msgstr "Speichern"
@ -2328,7 +2407,7 @@ msgid "No recipient."
msgstr "Kein Empfänger."
#: ../../mod/wallmessage.php:124 ../../mod/message.php:169
#: ../../include/conversation.php:910
#: ../../include/conversation.php:918
msgid "Please enter a link URL:"
msgstr "Bitte gib die URL des Links ein:"
@ -2344,17 +2423,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:133 ../../mod/message.php:178
#: ../../mod/message.php:347
#: ../../mod/message.php:370
msgid "To:"
msgstr "An:"
#: ../../mod/wallmessage.php:134 ../../mod/message.php:179
#: ../../mod/message.php:348
#: ../../mod/message.php:371
msgid "Subject:"
msgstr "Betreff:"
#: ../../mod/wallmessage.php:140 ../../mod/message.php:183
#: ../../mod/message.php:351 ../../mod/invite.php:113
#: ../../mod/message.php:374 ../../mod/invite.php:113
msgid "Your message:"
msgstr "Deine Nachricht:"
@ -2496,7 +2575,7 @@ msgstr "Gruppe nicht gefunden."
msgid "Group name changed."
msgstr "Gruppenname geändert."
#: ../../mod/group.php:72 ../../mod/profperm.php:19 ../../index.php:308
#: ../../mod/group.php:72 ../../mod/profperm.php:19 ../../index.php:305
msgid "Permission denied"
msgstr "Zugriff verweigert"
@ -2536,12 +2615,9 @@ msgstr "Ungültiger Profil-Bezeichner"
msgid "Profile Visibility Editor"
msgstr "Editor für die Profil-Sichtbarkeit"
#: ../../mod/profperm.php:103 ../../view/theme/diabook-red/theme.php:240
#: ../../view/theme/diabook-blue/theme.php:240
#: ../../view/theme/diabook/theme.php:250
#: ../../view/theme/diabook-aerith/theme.php:241
#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:76
#: ../../include/nav.php:50 ../../boot.php:1458
#: ../../mod/profperm.php:103 ../../view/theme/diabook/theme.php:66
#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:74
#: ../../include/nav.php:50 ../../boot.php:1478
msgid "Profile"
msgstr "Profil"
@ -2690,7 +2766,7 @@ msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung mögli
msgid "Your invitation ID: "
msgstr "ID deiner Einladung: "
#: ../../mod/register.php:553 ../../mod/admin.php:375
#: ../../mod/register.php:553 ../../mod/admin.php:403
msgid "Registration"
msgstr "Registrierung"
@ -2713,7 +2789,7 @@ msgstr "Wähle einen Spitznamen für dein Profil. Dieser muss mit einem Buchstab
msgid "Choose a nickname: "
msgstr "Spitznamen wählen: "
#: ../../mod/register.php:567 ../../include/nav.php:81 ../../boot.php:775
#: ../../mod/register.php:567 ../../include/nav.php:81 ../../boot.php:784
msgid "Register"
msgstr "Registrieren"
@ -2722,29 +2798,20 @@ msgid "People Search"
msgstr "Personen Suche"
#: ../../mod/like.php:127 ../../mod/tagger.php:70
#: ../../addon/facebook/facebook.php:1574
#: ../../addon/facebook/facebook.php:1564
#: ../../addon/communityhome/communityhome.php:158
#: ../../addon/communityhome/communityhome.php:167
#: ../../view/theme/diabook-red/theme.php:80
#: ../../view/theme/diabook-red/theme.php:89
#: ../../view/theme/diabook-blue/theme.php:80
#: ../../view/theme/diabook-blue/theme.php:89
#: ../../view/theme/diabook/theme.php:86 ../../view/theme/diabook/theme.php:95
#: ../../view/theme/diabook-aerith/theme.php:81
#: ../../view/theme/diabook-aerith/theme.php:90
#: ../../include/diaspora.php:1654 ../../include/conversation.php:48
#: ../../include/conversation.php:57 ../../include/conversation.php:121
#: ../../include/conversation.php:130
#: ../../view/theme/diabook/theme.php:452
#: ../../view/theme/diabook/theme.php:461 ../../include/diaspora.php:1654
#: ../../include/conversation.php:48 ../../include/conversation.php:57
#: ../../include/conversation.php:121 ../../include/conversation.php:130
msgid "status"
msgstr "Status"
#: ../../mod/like.php:144 ../../addon/facebook/facebook.php:1578
#: ../../mod/like.php:144 ../../addon/facebook/facebook.php:1568
#: ../../addon/communityhome/communityhome.php:172
#: ../../view/theme/diabook-red/theme.php:94
#: ../../view/theme/diabook-blue/theme.php:94
#: ../../view/theme/diabook/theme.php:100
#: ../../view/theme/diabook-aerith/theme.php:95
#: ../../include/diaspora.php:1670 ../../include/conversation.php:65
#: ../../view/theme/diabook/theme.php:466 ../../include/diaspora.php:1670
#: ../../include/conversation.php:65
#, php-format
msgid "%1$s likes %2$s's %3$s"
msgstr "%1$s mag %2$ss %3$s"
@ -2754,9 +2821,9 @@ msgstr "%1$s mag %2$ss %3$s"
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:141
#: ../../mod/admin.php:582 ../../mod/admin.php:761 ../../mod/display.php:37
#: ../../mod/display.php:142 ../../include/items.php:3082
#: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 ../../mod/admin.php:156
#: ../../mod/admin.php:681 ../../mod/admin.php:880 ../../mod/display.php:37
#: ../../mod/display.php:142 ../../include/items.php:3074
msgid "Item not found."
msgstr "Beitrag nicht gefunden."
@ -2764,6 +2831,15 @@ msgstr "Beitrag nicht gefunden."
msgid "Access denied."
msgstr "Zugriff verweigert."
#: ../../mod/fbrowser.php:23 ../../view/theme/diabook/theme.php:68
#: ../../include/nav.php:51 ../../boot.php:1484
msgid "Photos"
msgstr "Bilder"
#: ../../mod/fbrowser.php:86
msgid "Files"
msgstr "Dateien"
#: ../../mod/regmod.php:61
msgid "Account approved."
msgstr "Account freigegeben."
@ -2785,35 +2861,35 @@ msgstr "Konnte den Originalbeitrag nicht finden."
msgid "Empty post discarded."
msgstr "Leerer Beitrag wurde verworfen."
#: ../../mod/item.php:372 ../../mod/wall_upload.php:85
#: ../../mod/wall_upload.php:94 ../../mod/wall_upload.php:101
#: ../../mod/item.php:372 ../../mod/wall_upload.php:99
#: ../../mod/wall_upload.php:108 ../../mod/wall_upload.php:115
#: ../../include/message.php:144
msgid "Wall Photos"
msgstr "Pinnwand-Bilder"
#: ../../mod/item.php:762
#: ../../mod/item.php:781
msgid "System error. Post not saved."
msgstr "Systemfehler. Beitrag konnte nicht gespeichert werden."
#: ../../mod/item.php:787
#: ../../mod/item.php:806
#, 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:789
#: ../../mod/item.php:808
#, php-format
msgid "You may visit them online at %s"
msgstr "Du kannst sie online unter %s besuchen"
#: ../../mod/item.php:790
#: ../../mod/item.php:809
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:792
#: ../../mod/item.php:811
#, php-format
msgid "%s posted an update."
msgstr "%s hat ein Update veröffentlicht."
@ -2838,7 +2914,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:115 ../../mod/wall_upload.php:60
#: ../../mod/profile_photo.php:115 ../../mod/wall_upload.php:74
#, php-format
msgid "Image exceeds size limit of %d"
msgstr "Bildgröße überschreitet das Limit von %d"
@ -2932,7 +3008,7 @@ msgstr "Du und %s"
msgid "%s and You"
msgstr "%s und Du"
#: ../../mod/message.php:242 ../../mod/message.php:340
#: ../../mod/message.php:242 ../../mod/message.php:363
msgid "Delete conversation"
msgstr "Unterhaltung löschen"
@ -2951,17 +3027,17 @@ msgstr[1] "%d Nachrichten"
msgid "Message not available."
msgstr "Nachricht nicht verfügbar."
#: ../../mod/message.php:324
#: ../../mod/message.php:347
msgid "Delete message"
msgstr "Nachricht löschen"
#: ../../mod/message.php:342
#: ../../mod/message.php:365
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:346
#: ../../mod/message.php:369
msgid "Send Reply"
msgstr "Antwort senden"
@ -2974,544 +3050,618 @@ msgstr "Freunde von %s"
msgid "No friends to display."
msgstr "Keine Freunde zum Anzeigen."
#: ../../mod/admin.php:51
#: ../../mod/admin.php:55
msgid "Theme settings updated."
msgstr "Themen Einstellungen aktualisiert."
#: ../../mod/admin.php:85 ../../mod/admin.php:373
#: ../../mod/admin.php:96 ../../mod/admin.php:401
msgid "Site"
msgstr "Seite"
#: ../../mod/admin.php:86 ../../mod/admin.php:540 ../../mod/admin.php:552
#: ../../mod/admin.php:97 ../../mod/admin.php:636 ../../mod/admin.php:648
msgid "Users"
msgstr "Nutzer"
#: ../../mod/admin.php:87 ../../mod/admin.php:629 ../../mod/admin.php:669
#: ../../mod/admin.php:98 ../../mod/admin.php:730 ../../mod/admin.php:772
msgid "Plugins"
msgstr "Plugins"
#: ../../mod/admin.php:88 ../../mod/admin.php:815 ../../mod/admin.php:849
#: ../../mod/admin.php:99 ../../mod/admin.php:935 ../../mod/admin.php:971
msgid "Themes"
msgstr "Themen"
#: ../../mod/admin.php:103 ../../mod/admin.php:929
#: ../../mod/admin.php:100
msgid "DB updates"
msgstr "DB Updates"
#: ../../mod/admin.php:101
msgid "Software Update"
msgstr "Software Update"
#: ../../mod/admin.php:115 ../../mod/admin.php:1058
msgid "Logs"
msgstr "Protokolle"
#: ../../mod/admin.php:108
#: ../../mod/admin.php:120
msgid "User registrations waiting for confirmation"
msgstr "Nutzeranmeldungen die auf Bestätigung warten"
#: ../../mod/admin.php:177 ../../mod/admin.php:372 ../../mod/admin.php:539
#: ../../mod/admin.php:628 ../../mod/admin.php:668 ../../mod/admin.php:814
#: ../../mod/admin.php:848 ../../mod/admin.php:928
#: ../../mod/admin.php:195 ../../mod/admin.php:400 ../../mod/admin.php:635
#: ../../mod/admin.php:729 ../../mod/admin.php:771 ../../mod/admin.php:934
#: ../../mod/admin.php:970 ../../mod/admin.php:1057
msgid "Administration"
msgstr "Administration"
#: ../../mod/admin.php:178
#: ../../mod/admin.php:196
msgid "Summary"
msgstr "Zusammenfassung"
#: ../../mod/admin.php:179
#: ../../mod/admin.php:197
msgid "Registered users"
msgstr "Registrierte Nutzer"
#: ../../mod/admin.php:181
#: ../../mod/admin.php:199
msgid "Pending registrations"
msgstr "Anstehende Anmeldungen"
#: ../../mod/admin.php:182
#: ../../mod/admin.php:200
msgid "Version"
msgstr "Version"
#: ../../mod/admin.php:184
#: ../../mod/admin.php:202
msgid "Active plugins"
msgstr "Aktive Plugins"
#: ../../mod/admin.php:315
#: ../../mod/admin.php:339
msgid "Site settings updated."
msgstr "Seiteneinstellungen aktualisiert."
#: ../../mod/admin.php:359
#: ../../mod/admin.php:387
msgid "Closed"
msgstr "Geschlossen"
#: ../../mod/admin.php:360
#: ../../mod/admin.php:388
msgid "Requires approval"
msgstr "Bedarf der Zustimmung"
#: ../../mod/admin.php:361
#: ../../mod/admin.php:389
msgid "Open"
msgstr "Offen"
#: ../../mod/admin.php:365
#: ../../mod/admin.php:393
msgid "No SSL policy, links will track page SSL state"
msgstr "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten"
#: ../../mod/admin.php:366
#: ../../mod/admin.php:394
msgid "Force all links to use SSL"
msgstr "SSL für alle Links erzwingen"
#: ../../mod/admin.php:367
#: ../../mod/admin.php:395
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:376
#: ../../mod/admin.php:404
msgid "File upload"
msgstr "Datei hochladen"
#: ../../mod/admin.php:377
#: ../../mod/admin.php:405
msgid "Policies"
msgstr "Regeln"
#: ../../mod/admin.php:378
#: ../../mod/admin.php:406
msgid "Advanced"
msgstr "Erweitert"
#: ../../mod/admin.php:382 ../../addon/statusnet/statusnet.php:544
#: ../../mod/admin.php:410 ../../addon/statusnet/statusnet.php:544
msgid "Site name"
msgstr "Seitenname"
#: ../../mod/admin.php:383
#: ../../mod/admin.php:411
msgid "Banner/Logo"
msgstr "Banner/Logo"
#: ../../mod/admin.php:384
#: ../../mod/admin.php:412
msgid "System language"
msgstr "Systemsprache"
#: ../../mod/admin.php:385
#: ../../mod/admin.php:413
msgid "System theme"
msgstr "Systemweites Thema"
#: ../../mod/admin.php:385
#: ../../mod/admin.php:413
msgid ""
"Default system theme - may be over-ridden by user profiles - <a href='#' "
"id='cnftheme'>change theme settings</a>"
msgstr ""
msgstr "Vorgabe für das System-Theme - kann von Benutzerprofilen überschrieben werden - <a href='#' id='cnftheme'>Theme-Einstellungen ändern</a>"
#: ../../mod/admin.php:386
#: ../../mod/admin.php:414
msgid "SSL link policy"
msgstr "Regeln für SSL Links"
#: ../../mod/admin.php:386
#: ../../mod/admin.php:414
msgid "Determines whether generated links should be forced to use SSL"
msgstr "Bestimmt, ob generierte Links SSL verwenden müssen"
#: ../../mod/admin.php:387
#: ../../mod/admin.php:415
msgid "Maximum image size"
msgstr "Maximale Größe von Bildern"
#: ../../mod/admin.php:387
#: ../../mod/admin.php:415
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:389
#: ../../mod/admin.php:417
msgid "Register policy"
msgstr "Registrierungsmethode"
#: ../../mod/admin.php:390
#: ../../mod/admin.php:418
msgid "Register text"
msgstr "Registrierungstext"
#: ../../mod/admin.php:390
#: ../../mod/admin.php:418
msgid "Will be displayed prominently on the registration page."
msgstr "Wird gut sichtbar auf der Registrierungs-Seite angezeigt."
#: ../../mod/admin.php:391
#: ../../mod/admin.php:419
msgid "Accounts abandoned after x days"
msgstr "Accounts gelten nach x Tagen als unbenutzt"
#: ../../mod/admin.php:391
#: ../../mod/admin.php:419
msgid ""
"Will not waste system resources polling external sites for abandoned "
"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 Accounts nicht mehr benutzt werden. 0 eingeben für kein Limit."
#: ../../mod/admin.php:392
#: ../../mod/admin.php:420
msgid "Allowed friend domains"
msgstr "Erlaubte Domains für Kontakte"
#: ../../mod/admin.php:392
#: ../../mod/admin.php:420
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:393
#: ../../mod/admin.php:421
msgid "Allowed email domains"
msgstr "Erlaubte Domains für Emails"
#: ../../mod/admin.php:393
#: ../../mod/admin.php:421
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:394
#: ../../mod/admin.php:422
msgid "Block public"
msgstr "Öffentlichen Zugriff blockieren"
#: ../../mod/admin.php:394
#: ../../mod/admin.php:422
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:395
#: ../../mod/admin.php:423
msgid "Force publish"
msgstr "Erzwinge Veröffentlichung"
#: ../../mod/admin.php:395
#: ../../mod/admin.php:423
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:396
#: ../../mod/admin.php:424
msgid "Global directory update URL"
msgstr "URL für Updates beim weltweiten Verzeichnis"
#: ../../mod/admin.php:396
#: ../../mod/admin.php:424
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:398
#: ../../mod/admin.php:426
msgid "Block multiple registrations"
msgstr "Unterbinde Mehrfachregistrierung"
#: ../../mod/admin.php:398
#: ../../mod/admin.php:426
msgid "Disallow users to register additional accounts for use as pages."
msgstr "Benutzern nicht erlauben, weitere Accounts als zusätzliche Profile anzulegen."
#: ../../mod/admin.php:399
#: ../../mod/admin.php:427
msgid "OpenID support"
msgstr "OpenID Unterstützung"
#: ../../mod/admin.php:399
#: ../../mod/admin.php:427
msgid "OpenID support for registration and logins."
msgstr "OpenID-Unterstützung für Registrierung und Login."
#: ../../mod/admin.php:400
#: ../../mod/admin.php:428
msgid "Fullname check"
msgstr "Namen auf Vollständigkeit überprüfen"
#: ../../mod/admin.php:400
#: ../../mod/admin.php:428
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:401
#: ../../mod/admin.php:429
msgid "UTF-8 Regular expressions"
msgstr "UTF-8 Reguläre Ausdrücke"
#: ../../mod/admin.php:401
#: ../../mod/admin.php:429
msgid "Use PHP UTF8 regular expressions"
msgstr "PHP UTF8 Ausdrücke verwenden"
#: ../../mod/admin.php:402
#: ../../mod/admin.php:430
msgid "Show Community Page"
msgstr "Gemeinschaftsseite anzeigen"
#: ../../mod/admin.php:402
#: ../../mod/admin.php:430
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:403
#: ../../mod/admin.php:431
msgid "Enable OStatus support"
msgstr "OStatus Unterstützung aktivieren"
#: ../../mod/admin.php:403
#: ../../mod/admin.php:431
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:404
#: ../../mod/admin.php:432
msgid "Enable Diaspora support"
msgstr "Diaspora-Support aktivieren"
#: ../../mod/admin.php:404
#: ../../mod/admin.php:432
msgid "Provide built-in Diaspora network compatibility."
msgstr "Verwende die eingebaute Diaspora-Verknüpfung."
#: ../../mod/admin.php:405
#: ../../mod/admin.php:433
msgid "Only allow Friendica contacts"
msgstr "Nur Friendica-Kontakte erlauben"
#: ../../mod/admin.php:405
#: ../../mod/admin.php:433
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:406
#: ../../mod/admin.php:434
msgid "Verify SSL"
msgstr "SSL Überprüfen"
#: ../../mod/admin.php:406
#: ../../mod/admin.php:434
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 Zertifikat Kontrolle einstellen. Das bedeutet, dass man zu keinen Seiten mit selbst unterzeichnetem SSL eine Verbindung herstellen kann."
#: ../../mod/admin.php:407
#: ../../mod/admin.php:435
msgid "Proxy user"
msgstr "Proxy Nutzer"
#: ../../mod/admin.php:408
#: ../../mod/admin.php:436
msgid "Proxy URL"
msgstr "Proxy URL"
#: ../../mod/admin.php:409
#: ../../mod/admin.php:437
msgid "Network timeout"
msgstr "Netzwerk Wartezeit"
#: ../../mod/admin.php:409
#: ../../mod/admin.php:437
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:430
#: ../../mod/admin.php:438
msgid "Delivery interval"
msgstr "Zustellungsintervall"
#: ../../mod/admin.php:438
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:439
msgid "Maximum Load Average"
msgstr "Maximum Load Average"
#: ../../mod/admin.php:439
msgid ""
"Maximum system load before delivery and poll processes are deferred - "
"default 50."
msgstr ""
#: ../../mod/admin.php:453
msgid "Update has been marked successful"
msgstr "Update wurde als erfolgreich markiert"
#: ../../mod/admin.php:463
#, php-format
msgid "Executing %s failed. Check system logs."
msgstr "Ausführung von %s schlug fehl. Systemprotokolle prüfen."
#: ../../mod/admin.php:466
#, php-format
msgid "Update %s was successfully applied."
msgstr "Update %s war erfolgreich."
#: ../../mod/admin.php:470
#, 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:473
#, php-format
msgid "Update function %s could not be found."
msgstr "Updatefunktion %s konnte nicht gefunden werden."
#: ../../mod/admin.php:488
msgid "No failed updates."
msgstr "Keine fehlgeschlagenen Updates."
#: ../../mod/admin.php:492
msgid "Failed Updates"
msgstr "Fehlgeschlagene Updates"
#: ../../mod/admin.php:493
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:494
msgid "Mark success (if update was manually applied)"
msgstr "Als erfolgreich markieren (falls das Update manuell installiert wurde)"
#: ../../mod/admin.php:495
msgid "Attempt to execute this update step automatically"
msgstr "Versuchen, diesen Schritt automatisch auszuführen"
#: ../../mod/admin.php:520
#, 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:437
#: ../../mod/admin.php:527
#, 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:471
#: ../../mod/admin.php:566
#, php-format
msgid "User '%s' deleted"
msgstr "Nutzer '%s' gelöscht"
#: ../../mod/admin.php:478
#: ../../mod/admin.php:574
#, php-format
msgid "User '%s' unblocked"
msgstr "Nutzer '%s' entsperrt"
#: ../../mod/admin.php:478
#: ../../mod/admin.php:574
#, php-format
msgid "User '%s' blocked"
msgstr "Nutzer '%s' gesperrt"
#: ../../mod/admin.php:542
#: ../../mod/admin.php:638
msgid "select all"
msgstr "Alle auswählen"
#: ../../mod/admin.php:543
#: ../../mod/admin.php:639
msgid "User registrations waiting for confirm"
msgstr "Neuanmeldungen, die auf deine Bestätigung warten"
#: ../../mod/admin.php:544
#: ../../mod/admin.php:640
msgid "Request date"
msgstr "Anfrage Datum"
#: ../../mod/admin.php:544 ../../mod/admin.php:553
#: ../../mod/admin.php:640 ../../mod/admin.php:649
#: ../../include/contact_selectors.php:79
msgid "Email"
msgstr "Email"
#: ../../mod/admin.php:545
#: ../../mod/admin.php:641
msgid "No registrations."
msgstr "Keine Neuanmeldungen."
#: ../../mod/admin.php:547
#: ../../mod/admin.php:643
msgid "Deny"
msgstr "Verwehren"
#: ../../mod/admin.php:553
#: ../../mod/admin.php:649
msgid "Register date"
msgstr "Anmeldedatum"
#: ../../mod/admin.php:553
#: ../../mod/admin.php:649
msgid "Last login"
msgstr "Letzte Anmeldung"
#: ../../mod/admin.php:553
#: ../../mod/admin.php:649
msgid "Last item"
msgstr "Letzter Beitrag"
#: ../../mod/admin.php:553
#: ../../mod/admin.php:649
msgid "Account"
msgstr "Nutzerkonto"
#: ../../mod/admin.php:555
#: ../../mod/admin.php:651
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:556
#: ../../mod/admin.php:652
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:592
#: ../../mod/admin.php:693
#, php-format
msgid "Plugin %s disabled."
msgstr "Plugin %s deaktiviert."
#: ../../mod/admin.php:596
#: ../../mod/admin.php:697
#, php-format
msgid "Plugin %s enabled."
msgstr "Plugin %s aktiviert."
#: ../../mod/admin.php:606 ../../mod/admin.php:785
#: ../../mod/admin.php:707 ../../mod/admin.php:905
msgid "Disable"
msgstr "Ausschalten"
#: ../../mod/admin.php:608 ../../mod/admin.php:787
#: ../../mod/admin.php:709 ../../mod/admin.php:907
msgid "Enable"
msgstr "Einschalten"
#: ../../mod/admin.php:630 ../../mod/admin.php:816
#: ../../mod/admin.php:731 ../../mod/admin.php:936
msgid "Toggle"
msgstr "Umschalten"
#: ../../mod/admin.php:638 ../../mod/admin.php:826
#: ../../mod/admin.php:739 ../../mod/admin.php:946
msgid "Author: "
msgstr "Autor:"
#: ../../mod/admin.php:639 ../../mod/admin.php:827
#: ../../mod/admin.php:740 ../../mod/admin.php:947
msgid "Maintainer: "
msgstr "Betreuer:"
#: ../../mod/admin.php:750
#: ../../mod/admin.php:869
msgid "No themes found."
msgstr "Keine Themen gefunden."
#: ../../mod/admin.php:808
#: ../../mod/admin.php:928
msgid "Screenshot"
msgstr "Bildschirmfoto"
#: ../../mod/admin.php:854
#: ../../mod/admin.php:976
msgid "[Experimental]"
msgstr "[Experimentell]"
#: ../../mod/admin.php:855
#: ../../mod/admin.php:977
msgid "[Unsupported]"
msgstr "[Nicht unterstützt]"
#: ../../mod/admin.php:878
#: ../../mod/admin.php:1004
msgid "Log settings updated."
msgstr "Protokolleinstellungen aktualisiert."
#: ../../mod/admin.php:931
#: ../../mod/admin.php:1060
msgid "Clear"
msgstr "löschen"
#: ../../mod/admin.php:937
#: ../../mod/admin.php:1066
msgid "Debugging"
msgstr "Protokoll führen"
#: ../../mod/admin.php:938
#: ../../mod/admin.php:1067
msgid "Log file"
msgstr "Protokolldatei"
#: ../../mod/admin.php:938
#: ../../mod/admin.php:1067
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:939
#: ../../mod/admin.php:1068
msgid "Log level"
msgstr "Protokoll-Level"
#: ../../mod/admin.php:980
#: ../../mod/admin.php:1118 ../../view/theme/diabook/theme.php:599
msgid "Close"
msgstr "Schließen"
#: ../../mod/admin.php:986
#: ../../mod/admin.php:1124
msgid "FTP Host"
msgstr "FTP Host"
#: ../../mod/admin.php:987
#: ../../mod/admin.php:1125
msgid "FTP Path"
msgstr "FTP Pfad"
#: ../../mod/admin.php:988
#: ../../mod/admin.php:1126
msgid "FTP User"
msgstr "FTP Nutzername"
#: ../../mod/admin.php:989
#: ../../mod/admin.php:1127
msgid "FTP Password"
msgstr "FTP Passwort"
#: ../../mod/profile.php:21 ../../boot.php:940
#: ../../mod/profile.php:21 ../../boot.php:949
msgid "Requested profile is not available."
msgstr "Das angefragte Profil ist nicht vorhanden."
#: ../../mod/profile.php:124 ../../mod/display.php:75
#: ../../mod/profile.php:126 ../../mod/display.php:75
msgid "Access to this profile has been restricted."
msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt."
#: ../../mod/profile.php:145
#: ../../mod/profile.php:151
msgid "Tips for New Members"
msgstr "Tipps für neue Nutzer"
#: ../../mod/ping.php:175
#: ../../mod/ping.php:177
msgid "{0} wants to be your friend"
msgstr "{0} möchte mit dir in Kontakt treten"
#: ../../mod/ping.php:180
#: ../../mod/ping.php:182
msgid "{0} sent you a message"
msgstr "{0} hat dir eine Nachricht geschickt"
#: ../../mod/ping.php:185
#: ../../mod/ping.php:187
msgid "{0} requested registration"
msgstr "{0} möchte sich registrieren"
#: ../../mod/ping.php:191
#: ../../mod/ping.php:193
#, php-format
msgid "{0} commented %s's post"
msgstr "{0} kommentierte einen Beitrag von %s"
#: ../../mod/ping.php:196
#: ../../mod/ping.php:198
#, php-format
msgid "{0} liked %s's post"
msgstr "{0} mag %ss Beitrag"
#: ../../mod/ping.php:201
#: ../../mod/ping.php:203
#, php-format
msgid "{0} disliked %s's post"
msgstr "{0} mag %ss Beitrag nicht"
#: ../../mod/ping.php:206
#: ../../mod/ping.php:208
#, php-format
msgid "{0} is now friends with %s"
msgstr "{0} ist jetzt mit %s befreundet"
#: ../../mod/ping.php:211
#: ../../mod/ping.php:213
msgid "{0} posted"
msgstr "{0} hat etwas veröffentlicht"
#: ../../mod/ping.php:216
#: ../../mod/ping.php:218
#, php-format
msgid "{0} tagged %s's post with #%s"
msgstr "{0} hat %ss Beitrag mit dem Schlagwort #%s versehen"
#: ../../mod/ping.php:222
#: ../../mod/ping.php:224
msgid "{0} mentioned you in a post"
msgstr "{0} hat dich in einem Beitrag erwähnt"
#: ../../mod/nogroup.php:58
msgid "Contacts who are not members of a group"
msgstr ""
msgstr "Kontakte, die keiner Gruppe zugewiesen sind"
#: ../../mod/openid.php:24
msgid "OpenID protocol error. No ID returned."
@ -3572,13 +3722,13 @@ msgstr "Konnte die Kontaktinformationen nicht empfangen."
msgid "following"
msgstr "folgen"
#: ../../mod/common.php:34
#: ../../mod/common.php:42
msgid "Common Friends"
msgstr "Gemeinsame Freunde"
#: ../../mod/common.php:42
msgid "No friends in common."
msgstr "Keine gemeinsamen Freunde."
#: ../../mod/common.php:78
msgid "No contacts in common."
msgstr "Keine gemeinsamen Kontakte."
#: ../../mod/display.php:135
msgid "Item has been removed."
@ -3596,8 +3746,8 @@ msgstr "Keine Applikationen installiert."
msgid "Search This Site"
msgstr "Diese Seite durchsuchen"
#: ../../mod/profiles.php:21 ../../mod/profiles.php:339
#: ../../mod/profiles.php:453 ../../mod/dfrn_confirm.php:62
#: ../../mod/profiles.php:21 ../../mod/profiles.php:375
#: ../../mod/profiles.php:489 ../../mod/dfrn_confirm.php:62
msgid "Profile not found."
msgstr "Profil nicht gefunden."
@ -3605,263 +3755,272 @@ msgstr "Profil nicht gefunden."
msgid "Profile Name is required."
msgstr "Profilname ist erforderlich."
#: ../../mod/profiles.php:143
msgid "Marital Status"
msgstr ""
#: ../../mod/profiles.php:144
msgid "Romantic Partner"
msgstr ""
#: ../../mod/profiles.php:145
msgid "Work/Employment"
msgstr ""
msgid "Marital Status"
msgstr "Familienstand"
#: ../../mod/profiles.php:146
#: ../../mod/profiles.php:149
msgid "Romantic Partner"
msgstr "Romanze"
#: ../../mod/profiles.php:153
msgid "Work/Employment"
msgstr "Arbeit / Beschäftigung"
#: ../../mod/profiles.php:156
msgid "Religion"
msgstr "Religion"
#: ../../mod/profiles.php:147
#: ../../mod/profiles.php:160
msgid "Political Views"
msgstr "Politische Ansichten"
#: ../../mod/profiles.php:148
#: ../../mod/profiles.php:164
msgid "Gender"
msgstr "Geschlecht"
#: ../../mod/profiles.php:149
#: ../../mod/profiles.php:168
msgid "Sexual Preference"
msgstr "Sexuelle Vorlieben"
#: ../../mod/profiles.php:150
#: ../../mod/profiles.php:172
msgid "Homepage"
msgstr "Webseite"
#: ../../mod/profiles.php:151
#: ../../mod/profiles.php:176
msgid "Interests"
msgstr "Interessen"
#: ../../mod/profiles.php:154
#: ../../mod/profiles.php:181
msgid "Location"
msgstr ""
msgstr "Wohnort"
#: ../../mod/profiles.php:225
#: ../../mod/profiles.php:253
msgid "Profile updated."
msgstr "Profil aktualisiert."
#: ../../mod/profiles.php:300
msgid "public profile"
msgstr ""
#: ../../mod/profiles.php:320
msgid " and "
msgstr " und "
#: ../../mod/profiles.php:302
#: ../../mod/profiles.php:328
msgid "public profile"
msgstr "öffentliches Profil"
#: ../../mod/profiles.php:331
#, php-format
msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
msgstr "%1$s hat %2$s geändert auf &ldquo;%3$s&rdquo;"
#: ../../mod/profiles.php:335
#, php-format
msgid "%1$s has an updated %2$s, changing %3$s."
msgstr ""
msgstr "%1$s hat folgendes aktualisiert %2$s, verändert wurde %3$s."
#: ../../mod/profiles.php:358
#: ../../mod/profiles.php:394
msgid "Profile deleted."
msgstr "Profil gelöscht."
#: ../../mod/profiles.php:376 ../../mod/profiles.php:410
#: ../../mod/profiles.php:412 ../../mod/profiles.php:446
msgid "Profile-"
msgstr "Profil-"
#: ../../mod/profiles.php:395 ../../mod/profiles.php:437
#: ../../mod/profiles.php:431 ../../mod/profiles.php:473
msgid "New profile created."
msgstr "Neues Profil angelegt."
#: ../../mod/profiles.php:416
#: ../../mod/profiles.php:452
msgid "Profile unavailable to clone."
msgstr "Profil nicht zum Duplizieren verfügbar."
#: ../../mod/profiles.php:474
#: ../../mod/profiles.php:510
msgid "Hide your contact/friend list from viewers of this profile?"
msgstr "Liste der Kontakte vor Betrachtern dieses Profils verbergen?"
#: ../../mod/profiles.php:497
#: ../../mod/profiles.php:533
msgid "Edit Profile Details"
msgstr "Profil bearbeiten"
#: ../../mod/profiles.php:499
#: ../../mod/profiles.php:535
msgid "View this profile"
msgstr "Dieses Profil anzeigen"
#: ../../mod/profiles.php:500
#: ../../mod/profiles.php:536
msgid "Create a new profile using these settings"
msgstr "Neues Profil anlegen und diese Einstellungen verwenden"
#: ../../mod/profiles.php:501
#: ../../mod/profiles.php:537
msgid "Clone this profile"
msgstr "Dieses Profil duplizieren"
#: ../../mod/profiles.php:502
#: ../../mod/profiles.php:538
msgid "Delete this profile"
msgstr "Dieses Profil löschen"
#: ../../mod/profiles.php:503
#: ../../mod/profiles.php:539
msgid "Profile Name:"
msgstr "Profilname:"
#: ../../mod/profiles.php:504
#: ../../mod/profiles.php:540
msgid "Your Full Name:"
msgstr "Dein kompletter Name:"
#: ../../mod/profiles.php:505
#: ../../mod/profiles.php:541
msgid "Title/Description:"
msgstr "Titel/Beschreibung:"
#: ../../mod/profiles.php:506
#: ../../mod/profiles.php:542
msgid "Your Gender:"
msgstr "Dein Geschlecht:"
#: ../../mod/profiles.php:507
#: ../../mod/profiles.php:543
#, php-format
msgid "Birthday (%s):"
msgstr "Geburtstag (%s):"
#: ../../mod/profiles.php:508
#: ../../mod/profiles.php:544
msgid "Street Address:"
msgstr "Adresse:"
#: ../../mod/profiles.php:509
#: ../../mod/profiles.php:545
msgid "Locality/City:"
msgstr "Wohnort/Stadt:"
#: ../../mod/profiles.php:510
#: ../../mod/profiles.php:546
msgid "Postal/Zip Code:"
msgstr "Postleitzahl:"
#: ../../mod/profiles.php:511
#: ../../mod/profiles.php:547
msgid "Country:"
msgstr "Land:"
#: ../../mod/profiles.php:512
#: ../../mod/profiles.php:548
msgid "Region/State:"
msgstr "Region/Bundesstaat:"
#: ../../mod/profiles.php:513
#: ../../mod/profiles.php:549
msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
msgstr "<span class=\"heart\">&hearts;</span> Beziehungsstatus:"
#: ../../mod/profiles.php:514
#: ../../mod/profiles.php:550
msgid "Who: (if applicable)"
msgstr "Wer: (falls anwendbar)"
#: ../../mod/profiles.php:515
#: ../../mod/profiles.php:551
msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com"
#: ../../mod/profiles.php:516 ../../include/profile_advanced.php:43
#: ../../mod/profiles.php:552 ../../include/profile_advanced.php:43
msgid "Sexual Preference:"
msgstr "Sexuelle Vorlieben:"
#: ../../mod/profiles.php:517
#: ../../mod/profiles.php:553
msgid "Homepage URL:"
msgstr "Adresse der Homepage:"
#: ../../mod/profiles.php:518 ../../include/profile_advanced.php:49
#: ../../mod/profiles.php:554 ../../include/profile_advanced.php:49
msgid "Political Views:"
msgstr "Politische Ansichten:"
#: ../../mod/profiles.php:519
#: ../../mod/profiles.php:555
msgid "Religious Views:"
msgstr "Religiöse Ansichten:"
#: ../../mod/profiles.php:520
#: ../../mod/profiles.php:556
msgid "Public Keywords:"
msgstr "Öffentliche Schlüsselwörter:"
#: ../../mod/profiles.php:521
#: ../../mod/profiles.php:557
msgid "Private Keywords:"
msgstr "Private Schlüsselwörter:"
#: ../../mod/profiles.php:522
#: ../../mod/profiles.php:558
msgid "Example: fishing photography software"
msgstr "Beispiel: Fischen Fotografie Software"
#: ../../mod/profiles.php:523
#: ../../mod/profiles.php:559
msgid "(Used for suggesting potential friends, can be seen by others)"
msgstr "(Wird verwendet um potentielle Freunde zu finden, könnte von Fremden eingesehen werden)"
#: ../../mod/profiles.php:524
#: ../../mod/profiles.php:560
msgid "(Used for searching profiles, never shown to others)"
msgstr "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)"
#: ../../mod/profiles.php:525
#: ../../mod/profiles.php:561
msgid "Tell us about yourself..."
msgstr "Erzähle uns ein bisschen von dir …"
#: ../../mod/profiles.php:526
#: ../../mod/profiles.php:562
msgid "Hobbies/Interests"
msgstr "Hobbies/Interessen"
#: ../../mod/profiles.php:527
#: ../../mod/profiles.php:563
msgid "Contact information and Social Networks"
msgstr "Kontaktinformationen und Soziale Netzwerke"
#: ../../mod/profiles.php:528
#: ../../mod/profiles.php:564
msgid "Musical interests"
msgstr "Musikalische Interessen"
#: ../../mod/profiles.php:529
#: ../../mod/profiles.php:565
msgid "Books, literature"
msgstr "Literatur/Bücher"
#: ../../mod/profiles.php:530
#: ../../mod/profiles.php:566
msgid "Television"
msgstr "Fernsehen"
#: ../../mod/profiles.php:531
#: ../../mod/profiles.php:567
msgid "Film/dance/culture/entertainment"
msgstr "Filme/Tänze/Kultur/Unterhaltung"
#: ../../mod/profiles.php:532
#: ../../mod/profiles.php:568
msgid "Love/romance"
msgstr "Liebesleben"
#: ../../mod/profiles.php:533
#: ../../mod/profiles.php:569
msgid "Work/employment"
msgstr "Arbeit/Beschäftigung"
#: ../../mod/profiles.php:534
#: ../../mod/profiles.php:570
msgid "School/education"
msgstr "Schule/Ausbildung"
#: ../../mod/profiles.php:539
#: ../../mod/profiles.php:575
msgid ""
"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
"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:549 ../../mod/directory.php:111
#: ../../mod/profiles.php:585 ../../mod/directory.php:111
msgid "Age: "
msgstr "Alter: "
#: ../../mod/profiles.php:584
#: ../../mod/profiles.php:620
msgid "Edit/Manage Profiles"
msgstr "Verwalte/Editiere Profile"
#: ../../mod/profiles.php:585 ../../boot.php:1049
#: ../../mod/profiles.php:621 ../../boot.php:1058
msgid "Change profile photo"
msgstr "Profilbild ändern"
#: ../../mod/profiles.php:586 ../../boot.php:1050
#: ../../mod/profiles.php:622 ../../boot.php:1059
msgid "Create New Profile"
msgstr "Neues Profil anlegen"
#: ../../mod/profiles.php:597 ../../boot.php:1060
#: ../../mod/profiles.php:633 ../../boot.php:1069
msgid "Profile Image"
msgstr "Profilbild"
#: ../../mod/profiles.php:599 ../../boot.php:1063
#: ../../mod/profiles.php:635 ../../boot.php:1072
msgid "visible to everybody"
msgstr "sichtbar für jeden"
#: ../../mod/profiles.php:600 ../../boot.php:1064
#: ../../mod/profiles.php:636 ../../boot.php:1073
msgid "Edit visibility"
msgstr "Sichtbarkeit bearbeiten"
#: ../../mod/filer.php:29 ../../include/conversation.php:914
#: ../../mod/filer.php:29 ../../include/conversation.php:922
msgid "Save to Folder:"
msgstr "In diesen Ordner verschieben:"
@ -3909,10 +4068,7 @@ msgstr "Hinzufügen"
msgid "No entries."
msgstr "Keine Einträge"
#: ../../mod/suggest.php:38 ../../view/theme/diabook-red/theme.php:149
#: ../../view/theme/diabook-blue/theme.php:149
#: ../../view/theme/diabook/theme.php:155
#: ../../view/theme/diabook-aerith/theme.php:150
#: ../../mod/suggest.php:38 ../../view/theme/diabook/theme.php:513
#: ../../include/contact_widgets.php:34
msgid "Friend Suggestions"
msgstr "Kontaktvorschläge"
@ -3927,10 +4083,7 @@ 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-red/theme.php:147
#: ../../view/theme/diabook-blue/theme.php:147
#: ../../view/theme/diabook/theme.php:153
#: ../../view/theme/diabook-aerith/theme.php:148
#: ../../mod/directory.php:47 ../../view/theme/diabook/theme.php:511
msgid "Global Directory"
msgstr "Weltweites Verzeichnis"
@ -3988,7 +4141,7 @@ msgstr "Besuche %s für eine Liste der öffentlichen Server, denen du beitreten
msgid ""
"To accept this invitation, please visit and register at %s or any other "
"public Friendica website."
msgstr "Um diese Freundschaftsanfrage zu akzeptieren, besuche und registriere dich bitte bei %s oder einer anderen öffentlichen Friendica Website."
msgstr "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere dich bitte bei %s oder einer anderen öffentlichen Friendica Website."
#: ../../mod/invite.php:103
#, php-format
@ -4069,118 +4222,135 @@ msgstr "Kontaktanfrage schlug fehl oder wurde zurück gezogen."
msgid "Unable to set contact photo."
msgstr "Konnte das Bild des Kontakts nicht speichern."
#: ../../mod/dfrn_confirm.php:477 ../../include/diaspora.php:507
#: ../../mod/dfrn_confirm.php:482 ../../include/diaspora.php:507
#: ../../include/conversation.php:101
#, php-format
msgid "%1$s is now friends with %2$s"
msgstr "%1$s ist nun mit %2$s befreundet"
#: ../../mod/dfrn_confirm.php:548
#: ../../mod/dfrn_confirm.php:554
#, php-format
msgid "No user record found for '%s' "
msgstr "Für '%s' wurde kein Nutzer gefunden"
#: ../../mod/dfrn_confirm.php:558
#: ../../mod/dfrn_confirm.php:564
msgid "Our site encryption key is apparently messed up."
msgstr "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend im Arsch."
#: ../../mod/dfrn_confirm.php:569
#: ../../mod/dfrn_confirm.php:575
msgid "Empty site URL was provided or URL could not be decrypted by us."
msgstr "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden."
#: ../../mod/dfrn_confirm.php:590
#: ../../mod/dfrn_confirm.php:596
msgid "Contact record was not found for you on our site."
msgstr "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden."
#: ../../mod/dfrn_confirm.php:604
#: ../../mod/dfrn_confirm.php:610
#, php-format
msgid "Site public key not available in contact record for URL %s."
msgstr "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server."
#: ../../mod/dfrn_confirm.php:624
#: ../../mod/dfrn_confirm.php:630
msgid ""
"The ID provided by your system is a duplicate on our system. It should work "
"if you try again."
msgstr "Die ID, die uns dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal."
#: ../../mod/dfrn_confirm.php:635
#: ../../mod/dfrn_confirm.php:641
msgid "Unable to set your contact credentials on our system."
msgstr "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden."
#: ../../mod/dfrn_confirm.php:700
#: ../../mod/dfrn_confirm.php:706
msgid "Unable to update your contact profile details on our system"
msgstr "Die Updates für dein Profil konnten nicht gespeichert werden"
#: ../../mod/dfrn_confirm.php:730
#: ../../mod/dfrn_confirm.php:740
#, php-format
msgid "Connection accepted at %s"
msgstr "Auf %s wurde die Verbindung akzeptiert"
#: ../../addon/facebook/facebook.php:467
#: ../../mod/dfrn_confirm.php:789
#, php-format
msgid "%1$s has joined %2$s"
msgstr "%1$s ist %2$s beigetreten"
#: ../../addon/facebook/facebook.php:501
msgid "Facebook disabled"
msgstr "Facebook deaktiviert"
#: ../../addon/facebook/facebook.php:472
#: ../../addon/facebook/facebook.php:506
msgid "Updating contacts"
msgstr "Aktualisiere Kontakte"
#: ../../addon/facebook/facebook.php:493
#: ../../addon/facebook/facebook.php:529
msgid "Facebook API key is missing."
msgstr "Facebook-API-Schlüssel nicht gefunden"
#: ../../addon/facebook/facebook.php:500
#: ../../addon/facebook/facebook.php:536
msgid "Facebook Connect"
msgstr "Mit Facebook verbinden"
#: ../../addon/facebook/facebook.php:506
#: ../../addon/facebook/facebook.php:542
msgid "Install Facebook connector for this account."
msgstr "Facebook-Connector für diesen Account installieren."
#: ../../addon/facebook/facebook.php:513
#: ../../addon/facebook/facebook.php:549
msgid "Remove Facebook connector"
msgstr "Facebook-Connector entfernen"
#: ../../addon/facebook/facebook.php:518
#: ../../addon/facebook/facebook.php:554
msgid ""
"Re-authenticate [This is necessary whenever your Facebook password is "
"changed.]"
msgstr "Neu authentifizieren [Das ist immer dann nötig, wenn Du Dein Facebook-Passwort geändert hast.]"
#: ../../addon/facebook/facebook.php:525
#: ../../addon/facebook/facebook.php:561
msgid "Post to Facebook by default"
msgstr "Veröffentliche standardmäßig bei Facebook"
#: ../../addon/facebook/facebook.php:529
#: ../../addon/facebook/facebook.php:567
msgid ""
"Facebook friend linking has been disabled on this site. The following "
"settings will have no effect."
msgstr ""
#: ../../addon/facebook/facebook.php:571
msgid ""
"Facebook friend linking has been disabled on this site. If you disable it, "
"you will be unable to re-enable it."
msgstr ""
#: ../../addon/facebook/facebook.php:574
msgid "Link all your Facebook friends and conversations on this website"
msgstr "All meine Facebook-Kontakte und -Konversationen hier auf diese Website importieren"
#: ../../addon/facebook/facebook.php:531
#: ../../addon/facebook/facebook.php:576
msgid ""
"Facebook conversations consist of your <em>profile wall</em> and your friend"
" <em>stream</em>."
msgstr "Facebook-Konversationen bestehen aus deinen Beiträgen auf deiner<em>Pinnwand</em>, sowie den Beiträgen deiner Freunde <em>Stream</em>."
#: ../../addon/facebook/facebook.php:532
#: ../../addon/facebook/facebook.php:577
msgid "On this website, your Facebook friend stream is only visible to you."
msgstr "Hier auf dieser Webseite kannst nur du die Beiträge Deiner Facebook-Freunde (Stream) sehen."
#: ../../addon/facebook/facebook.php:533
#: ../../addon/facebook/facebook.php:578
msgid ""
"The following settings determine the privacy of your Facebook profile wall "
"on this website."
msgstr "Mit den folgenden Einstellungen kannst Du die Privatsphäre der Kopie Deiner Facebook-Pinnwand hier auf dieser Seite einstellen."
#: ../../addon/facebook/facebook.php:537
#: ../../addon/facebook/facebook.php:582
msgid ""
"On this website your Facebook profile wall conversations will only be "
"visible to you"
msgstr "Meine Facebook-Pinnwand hier auf dieser Webseite nur für mich sichtbar machen"
#: ../../addon/facebook/facebook.php:542
#: ../../addon/facebook/facebook.php:587
msgid "Do not import your Facebook profile wall conversations"
msgstr "Facebook-Pinnwand nicht importieren"
#: ../../addon/facebook/facebook.php:544
#: ../../addon/facebook/facebook.php:589
msgid ""
"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 "
@ -4188,114 +4358,120 @@ msgid ""
"who may see the conversations."
msgstr "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."
#: ../../addon/facebook/facebook.php:549
#: ../../addon/facebook/facebook.php:594
msgid "Comma separated applications to ignore"
msgstr "Komma separiert Anwendungen, die ignoriert werden sollen"
#: ../../addon/facebook/facebook.php:623
#: ../../addon/facebook/facebook.php:678
msgid "Problems with Facebook Real-Time Updates"
msgstr "Probleme mit Facebook Echtzeit-Updates"
#: ../../addon/facebook/facebook.php:647
#: ../../addon/facebook/facebook.php:706
#: ../../include/contact_selectors.php:81
msgid "Facebook"
msgstr "Facebook"
#: ../../addon/facebook/facebook.php:648
#: ../../addon/facebook/facebook.php:707
msgid "Facebook Connector Settings"
msgstr "Facebook-Verbindungseinstellungen"
#: ../../addon/facebook/facebook.php:659
#: ../../addon/facebook/facebook.php:722
msgid "Facebook API Key"
msgstr "Facebook API Schlüssel"
#: ../../addon/facebook/facebook.php:668
#: ../../addon/facebook/facebook.php:732
msgid ""
"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>"
msgstr "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>"
#: ../../addon/facebook/facebook.php:673
#: ../../addon/facebook/facebook.php:737
msgid ""
"Error: the given API Key seems to be incorrect (the application access token"
" could not be retrieved)."
msgstr "Fehler: der angegebene API Schlüssel scheint nicht korrekt zu sein (Zugriffstoken konnte nicht empfangen werden)."
#: ../../addon/facebook/facebook.php:675
#: ../../addon/facebook/facebook.php:739
msgid "The given API Key seems to work correctly."
msgstr "Der angegebene API Schlüssel scheint nicht korrekt zu funktionieren."
msgstr "Der angegebene API Schlüssel scheint korrekt zu funktionieren."
#: ../../addon/facebook/facebook.php:677
#: ../../addon/facebook/facebook.php:741
msgid ""
"The correctness of the API Key could not be detected. Somthing strange's "
"going on."
msgstr "Die Echtheit des API Schlüssels konnte nicht überprüft werden. Etwas Merkwürdiges ist hier im Gange."
#: ../../addon/facebook/facebook.php:680
#: ../../addon/facebook/facebook.php:744
msgid "App-ID / API-Key"
msgstr "App-ID / API-Key"
#: ../../addon/facebook/facebook.php:681
#: ../../addon/facebook/facebook.php:745
msgid "Application secret"
msgstr "Anwendungs-Geheimnis"
#: ../../addon/facebook/facebook.php:682
#: ../../addon/facebook/facebook.php:746
#, php-format
msgid "Polling Interval (min. %1$s minutes)"
msgstr "Abrufintervall (min. %1$s Minuten)"
msgid "Polling Interval in minutes (minimum %1$s minutes)"
msgstr "Abfrage-Intervall in Minuten (min %1$s Minuten)"
#: ../../addon/facebook/facebook.php:686
#: ../../addon/facebook/facebook.php:747
msgid ""
"Synchronize comments (no comments on Facebook are missed, at the cost of "
"increased system load)"
msgstr "Kommentare synchronisieren (Kein Kommentar von Facebook geht verlohren, verursacht höhere Last auf dem Server)"
#: ../../addon/facebook/facebook.php:751
msgid "Real-Time Updates"
msgstr "Echt-Zeit Aktualisierungen"
#: ../../addon/facebook/facebook.php:690
#: ../../addon/facebook/facebook.php:755
msgid "Real-Time Updates are activated."
msgstr "Echtzeit-Updates sind aktiviert."
#: ../../addon/facebook/facebook.php:691
#: ../../addon/facebook/facebook.php:756
msgid "Deactivate Real-Time Updates"
msgstr "Echtzeit-Updates deaktivieren"
#: ../../addon/facebook/facebook.php:693
#: ../../addon/facebook/facebook.php:758
msgid "Real-Time Updates not activated."
msgstr "Echtzeit-Updates nicht aktiviert."
#: ../../addon/facebook/facebook.php:693
#: ../../addon/facebook/facebook.php:758
msgid "Activate Real-Time Updates"
msgstr "Echtzeit-Updates aktivieren"
#: ../../addon/facebook/facebook.php:707
#: ../../addon/facebook/facebook.php:777
msgid "The new values have been saved."
msgstr "Die neuen Einstellungen wurden gespeichert."
#: ../../addon/facebook/facebook.php:726
#: ../../addon/facebook/facebook.php:801
msgid "Post to Facebook"
msgstr "Bei Facebook veröffentlichen"
#: ../../addon/facebook/facebook.php:818
#: ../../addon/facebook/facebook.php:899
msgid ""
"Post to Facebook cancelled because of multi-network access permission "
"conflict."
msgstr "Beitrag wurde nicht bei Facebook veröffentlicht, da Konflikte bei den Multi-Netzwerk-Zugriffsrechten vorliegen."
#: ../../addon/facebook/facebook.php:1039
#: ../../addon/facebook/facebook.php:1119
msgid "View on Friendica"
msgstr "In Friendica betrachten"
#: ../../addon/facebook/facebook.php:1072
#: ../../addon/facebook/facebook.php:1152
msgid "Facebook post failed. Queued for retry."
msgstr "Veröffentlichung bei Facebook gescheitert. Wir versuchen es später erneut."
#: ../../addon/facebook/facebook.php:1108
#: ../../addon/facebook/facebook.php:1192
msgid "Your Facebook connection became invalid. Please Re-authenticate."
msgstr "Deine Facebook Anmeldedaten sind ungültig geworden. Bitte re-authentifiziere dich."
#: ../../addon/facebook/facebook.php:1109
#: ../../addon/facebook/facebook.php:1193
msgid "Facebook connection became invalid"
msgstr "Facebook Anmeldedaten sind ungültig geworden"
#: ../../addon/facebook/facebook.php:1110
#: ../../addon/facebook/facebook.php:1194
#, php-format
msgid ""
"Hi %1$s,\n"
@ -4303,6 +4479,26 @@ msgid ""
"The connection between your accounts on %2$s and Facebook became invalid. This usually happens after you change your Facebook-password. To enable the connection again, you have to %3$sre-authenticate the Facebook-connector%4$s."
msgstr "Hi %1$s,\n\ndie Verbindung von deinem Account auf %2$s und Facebook funktioniert derzeit nicht. Dies ist im Allgemeinen das Ergebnis einer Passwortänderung bei Facebook. Um die Verbindung wieder zu aktivieren musst du %3$sden Facebook-Connector neu Authentifizieren%4$s."
#: ../../addon/privacy_image_cache/privacy_image_cache.php:144
msgid "Lifetime of the cache (in hours)"
msgstr "Lebenszeit des Caches (in Stunden)"
#: ../../addon/privacy_image_cache/privacy_image_cache.php:149
msgid "Cache Statistics"
msgstr "Cache Statistik"
#: ../../addon/privacy_image_cache/privacy_image_cache.php:152
msgid "Number of items"
msgstr "Anzahl der Einträge"
#: ../../addon/privacy_image_cache/privacy_image_cache.php:154
msgid "Size of the cache"
msgstr "Größe des Caches"
#: ../../addon/privacy_image_cache/privacy_image_cache.php:156
msgid "Delete the whole cache"
msgstr "Cache leeren"
#: ../../addon/widgets/widget_like.php:58
#, php-format
msgid "%d person likes this"
@ -4317,6 +4513,10 @@ msgid_plural "%d people don't like this"
msgstr[0] " %d Person mag das nicht"
msgstr[1] "%d Leute mögen das nicht"
#: ../../addon/widgets/widget_friendheader.php:40
msgid "Get added to this list!"
msgstr "Werde Mitglied dieser Liste"
#: ../../addon/widgets/widgets.php:56
msgid "Generate new key"
msgstr "Neuen Schlüssel erstellen"
@ -4416,10 +4616,16 @@ msgstr "NSFW-Einstellungen gespeichert"
msgid "%s - Click to open/close"
msgstr "%s Zum Öffnen/Schließen klicken"
#: ../../addon/page/page.php:47
#: ../../addon/page/page.php:48
msgid "Forums"
msgstr "Foren"
#: ../../addon/page/page.php:63 ../../addon/showmore/showmore.php:87
#: ../../include/contact_widgets.php:187 ../../include/conversation.php:466
#: ../../boot.php:507
msgid "show more"
msgstr "mehr anzeigen"
#: ../../addon/planets/planets.php:150
msgid "Planets Settings"
msgstr "Planeten Einstellungen"
@ -4432,7 +4638,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:796
#: ../../include/nav.php:64 ../../boot.php:805
msgid "Login"
msgstr "Anmeldung"
@ -4460,10 +4666,7 @@ msgid "Latest likes"
msgstr "Neueste Favoriten"
#: ../../addon/communityhome/communityhome.php:155
#: ../../view/theme/diabook-red/theme.php:77
#: ../../view/theme/diabook-blue/theme.php:77
#: ../../view/theme/diabook/theme.php:83
#: ../../view/theme/diabook-aerith/theme.php:78 ../../include/text.php:1302
#: ../../view/theme/diabook/theme.php:449 ../../include/text.php:1303
#: ../../include/conversation.php:45 ../../include/conversation.php:118
msgid "event"
msgstr "Veranstaltung"
@ -4616,7 +4819,7 @@ msgid "Post to Drupal by default"
msgstr "Veröffentliche öffentliche Beiträge standardmäßig bei Drupal"
#: ../../addon/drpost/drpost.php:184 ../../addon/wppost/wppost.php:190
#: ../../addon/blogger/blogger.php:172 ../../addon/posterous/posterous.php:173
#: ../../addon/blogger/blogger.php:172 ../../addon/posterous/posterous.php:177
msgid "Post from Friendica"
msgstr "Beitrag via Friendica"
@ -4672,68 +4875,70 @@ msgstr "OEmbed für Youtube Videos verwenden"
msgid "URL to embed:"
msgstr "URL zum Einbetten:"
#: ../../addon/impressum/impressum.php:34
#: ../../addon/impressum/impressum.php:36
msgid "Impressum"
msgstr "Impressum"
#: ../../addon/impressum/impressum.php:47
#: ../../addon/impressum/impressum.php:49
#: ../../addon/impressum/impressum.php:81
#: ../../addon/impressum/impressum.php:51
#: ../../addon/impressum/impressum.php:83
msgid "Site Owner"
msgstr "Betreiber der Seite"
#: ../../addon/impressum/impressum.php:47
#: ../../addon/impressum/impressum.php:85
#: ../../addon/impressum/impressum.php:49
#: ../../addon/impressum/impressum.php:87
msgid "Email Address"
msgstr "Email Adresse"
#: ../../addon/impressum/impressum.php:52
#: ../../addon/impressum/impressum.php:83
#: ../../addon/impressum/impressum.php:54
#: ../../addon/impressum/impressum.php:85
msgid "Postal Address"
msgstr "Postalische Anschrift"
#: ../../addon/impressum/impressum.php:58
#: ../../addon/impressum/impressum.php:60
msgid ""
"The impressum addon needs to be configured!<br />Please add at least the "
"<tt>owner</tt> variable to your config file. For other variables please "
"refer to the README file of the addon."
msgstr "Das Impressums-Plugin muss noch konfiguriert werden.<br />Bitte gebe mindestens den <tt>Betreiber</tt> in der Konfiguration an. Alle weiteren Parameter werden in der README-Datei des Addons erläutert."
#: ../../addon/impressum/impressum.php:81
#: ../../addon/impressum/impressum.php:83
msgid "The page operators name."
msgstr "Name des Server-Administrators"
#: ../../addon/impressum/impressum.php:82
#: ../../addon/impressum/impressum.php:84
msgid "Site Owners Profile"
msgstr "Profil des Seitenbetreibers"
#: ../../addon/impressum/impressum.php:82
#: ../../addon/impressum/impressum.php:84
msgid "Profile address of the operator."
msgstr "Profil-Adresse des Server-Administrators"
#: ../../addon/impressum/impressum.php:83
msgid "How to contact the operator via snail mail."
msgstr "Wie erreicht man den Betreiber der Seite postalisch."
#: ../../addon/impressum/impressum.php:85
msgid "How to contact the operator via snail mail. You can use BBCode here."
msgstr "Kontaktmöglichkeiten zum Administrator via Schneckenpost. Du kannst BBCode verwenden."
#: ../../addon/impressum/impressum.php:84
#: ../../addon/impressum/impressum.php:86
msgid "Notes"
msgstr "Hinweise"
#: ../../addon/impressum/impressum.php:84
msgid "Additional notes that are displayed beneath the contact information."
msgstr "Zusätzliche Angaben, die unterhalb der Kontakt-Informationen angezeigt werden."
#: ../../addon/impressum/impressum.php:86
msgid ""
"Additional notes that are displayed beneath the contact information. You can"
" use BBCode here."
msgstr "Zusätzliche Informationen die neben den Kontaktmöglichkeiten angezeigt werden. Du kannst BBCode verwenden."
#: ../../addon/impressum/impressum.php:85
#: ../../addon/impressum/impressum.php:87
msgid "How to contact the operator via email. (will be displayed obfuscated)"
msgstr "Wie erreichts man den Betreiber per Email. (Adresse wird verschleiert dargestellt)"
#: ../../addon/impressum/impressum.php:86
#: ../../addon/impressum/impressum.php:88
msgid "Footer note"
msgstr "Fußnote"
#: ../../addon/impressum/impressum.php:86
msgid "Text for the footer."
msgstr "Text für die Fußnote"
#: ../../addon/impressum/impressum.php:88
msgid "Text for the footer. You can use BBCode here."
msgstr "Text für die Fußzeile. Du kannst BBCode verwenden."
#: ../../addon/buglink/buglink.php:15
msgid "Report Bug"
@ -4827,11 +5032,11 @@ msgstr "Mit dem MathJax Addon können mathematische Formeln, die mit LaTeX gesch
msgid "Use the MathJax renderer"
msgstr "MathJax verwenden"
#: ../../addon/mathjax/mathjax.php:72
#: ../../addon/mathjax/mathjax.php:74
msgid "MathJax Base URL"
msgstr "MathJax Basis-URL"
#: ../../addon/mathjax/mathjax.php:72
#: ../../addon/mathjax/mathjax.php:74
msgid ""
"The URL for the javascript file that should be included to use MathJax. Can "
"be either the MathJax CDN or another installation of MathJax."
@ -4851,23 +5056,23 @@ msgstr "RichText Editor deaktivieren"
#: ../../addon/gravatar/gravatar.php:71
msgid "generic profile image"
msgstr ""
msgstr "allgemeines Profilbild"
#: ../../addon/gravatar/gravatar.php:72
msgid "random geometric pattern"
msgstr ""
msgstr "zufällig erzeugtes geometrisches Muster"
#: ../../addon/gravatar/gravatar.php:73
msgid "monster face"
msgstr ""
msgstr "Monstergesicht"
#: ../../addon/gravatar/gravatar.php:74
msgid "computer generated face"
msgstr ""
msgstr "Computergesicht"
#: ../../addon/gravatar/gravatar.php:75
msgid "retro arcade style face"
msgstr ""
msgstr "Retro Arcade Design Gesicht"
#: ../../addon/gravatar/gravatar.php:87
msgid "Default avatar image"
@ -4875,19 +5080,19 @@ msgstr "Standard Profilbild "
#: ../../addon/gravatar/gravatar.php:87
msgid "Select default avatar image if none was found at Gravatar. See README"
msgstr ""
msgstr "Wähle das Standardgesicht, wenn kein Bild auf Gravatar gefunden wurde. Schaue auch sonst im README nach."
#: ../../addon/gravatar/gravatar.php:88
msgid "Rating of images"
msgstr ""
msgstr "Bildbewertung"
#: ../../addon/gravatar/gravatar.php:88
msgid "Select the appropriate avatar rating for your site. See README"
msgstr ""
msgstr "Wähle eine angemessene Bildbewertung für Deinen Server. Schaue auch sonst im README nach."
#: ../../addon/gravatar/gravatar.php:102
msgid "Gravatar settings updated."
msgstr ""
msgstr "Gravatar Einstellungen aktualisiert."
#: ../../addon/testdrive/testdrive.php:85
#, php-format
@ -4904,7 +5109,7 @@ msgid ""
"Hi %1$s,\n"
"\n"
"Your test account on %2$s will expire in less than five days. We hope you enjoyed this test drive and use this opportunity to find a permanent Friendica website for your integrated social communications. A list of public sites is available at http://dir.friendica.com/siteinfo - and for more information on setting up your own Friendica server please see the Friendica project website at http://friendica.com."
msgstr ""
msgstr "Hallo %1$s,\n\ndein Test-Konto auf %2$s wird in weniger als fünf Tagen verfallen. Wir hoffen, dass dir dieser Testlauf gefallen hat, so dass du die Gelegenheit nutzt und dir eine feste Friendica-Site für deine integrierte Social-Network-Kommunikation suchst. Eine Liste öffentlicher Sites findest du auf http://dir.friendica.com/siteinfo. Um mehr Information darüber zu bekommen, wie man einen eigenen Friendica-Server aufsetzt, kannst du auch einen Blick auf die Friendica Projektseite werfen: http://friendica.com"
#: ../../addon/pageheader/pageheader.php:50
msgid "\"pageheader\" Settings"
@ -5037,7 +5242,7 @@ msgid ""
"If enabled all your <strong>public</strong> postings can be posted to the "
"associated StatusNet account. You can choose to do so by default (here) or "
"for every posting separately in the posting options when writing the entry."
msgstr "Wenn aktiviert, so können all deine <strong>öffentlichen</strong> Einträge auf dem verbundenen StatusNet Konto veröffentlicht werden. Du kannst das (hier) als Standardverhalten einstellen oder beim Schreiben eines Beitrags in den Beitragsoptionen festlegen."
msgstr "Wenn aktiviert, können all deine <strong>öffentlichen</strong> Einträge auf dem verbundenen StatusNet-Konto veröffentlicht werden. Du kannst das (hier) als Standardverhalten einstellen oder beim Schreiben eines Beitrags in den Beitragsoptionen festlegen."
#: ../../addon/statusnet/statusnet.php:336
msgid ""
@ -5170,11 +5375,6 @@ msgstr "Begrenze Beiträge nach einer bestimmten Anzahl an Buchstaben"
msgid "Show More Settings saved."
msgstr "\"Mehr zeigen\" Einstellungen gesichert."
#: ../../addon/showmore/showmore.php:87 ../../include/conversation.php:466
#: ../../boot.php:496
msgid "show more"
msgstr "mehr anzeigen"
#: ../../addon/piwik/piwik.php:79
msgid ""
"This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> "
@ -5251,7 +5451,7 @@ msgid ""
"If enabled all your <strong>public</strong> postings can be posted to the "
"associated Twitter account. You can choose to do so by default (here) or for"
" every posting separately in the posting options when writing the entry."
msgstr "Wenn aktiviert, so können all deine <strong>öffentlichen</strong> Einträge auf dem verbundenen Twitter Konto veröffentlicht werden. Du kannst dies (hier) als Standardverhalten einstellen oder beim Schreiben eines Beitrags in den Beitragsoptionen festlegen."
msgstr "Wenn aktiviert, können all deine <strong>öffentlichen</strong> Einträge auf dem verbundenen Twitter-Konto veröffentlicht werden. Du kannst dies (hier) als Standardverhalten einstellen oder beim Schreiben eines Beitrags in den Beitragsoptionen festlegen."
#: ../../addon/twitter/twitter.php:192
msgid ""
@ -5287,11 +5487,11 @@ msgstr "IRC Einstellungen"
#: ../../addon/irc/irc.php:46
msgid "Channel(s) to auto connect (comma separated)"
msgstr ""
msgstr "mit diesen Kanälen soll man automatisch verbunden werden (Komma getrennt)"
#: ../../addon/irc/irc.php:51
msgid "Popular Channels (comma separated)"
msgstr ""
msgstr "Beliebte Kanäle (mit Komma getrennt)"
#: ../../addon/irc/irc.php:69
msgid "IRC settings saved."
@ -5307,31 +5507,31 @@ msgstr "Beliebte Räume"
#: ../../addon/blogger/blogger.php:42
msgid "Post to blogger"
msgstr ""
msgstr "Auf Blogger posten"
#: ../../addon/blogger/blogger.php:74
msgid "Blogger Post Settings"
msgstr ""
msgstr "Einstellungen zum posten auf Blogger"
#: ../../addon/blogger/blogger.php:76
msgid "Enable Blogger Post Plugin"
msgstr ""
msgstr "Blogger-Post-Plugin aktivieren"
#: ../../addon/blogger/blogger.php:81
msgid "Blogger username"
msgstr ""
msgstr "Blogger-Benutzername"
#: ../../addon/blogger/blogger.php:86
msgid "Blogger password"
msgstr ""
msgstr "Blogger-Passwort"
#: ../../addon/blogger/blogger.php:91
msgid "Blogger API URL"
msgstr ""
msgstr "Blogger-API-URL"
#: ../../addon/blogger/blogger.php:96
msgid "Post to Blogger by default"
msgstr ""
msgstr "Standardmäßig auf Blogger posten"
#: ../../addon/posterous/posterous.php:36
msgid "Post to Posterous"
@ -5357,186 +5557,128 @@ msgstr "Posterous-Passwort"
msgid "Post to Posterous by default"
msgstr "Veröffentliche öffentliche Beiträge standardmäßig bei Posterous"
#: ../../view/theme/diabook-red/theme.php:26
#: ../../view/theme/diabook-blue/theme.php:26
#: ../../view/theme/diabook/theme.php:32
#: ../../view/theme/diabook-aerith/theme.php:27
msgid "Last users"
msgstr "Letzte Nutzer"
#: ../../view/theme/cleanzero/config.php:82
#: ../../view/theme/diabook/config.php:97
#: ../../view/theme/quattro/config.php:54 ../../view/theme/dispy/config.php:72
msgid "Theme settings"
msgstr "Themen Einstellungen"
#: ../../view/theme/diabook-red/theme.php:55
#: ../../view/theme/diabook-blue/theme.php:55
#: ../../view/theme/diabook/theme.php:61
#: ../../view/theme/diabook-aerith/theme.php:56
msgid "Last likes"
msgstr "Zuletzt gemocht"
#: ../../view/theme/cleanzero/config.php:83
msgid "Set resize level for images in posts and comments (width and height)"
msgstr "Wähle das Vergrößerungsmaß für Bilder in Beiträgen und Kommentaren (Höhe und Breite)"
#: ../../view/theme/diabook-red/theme.php:100
#: ../../view/theme/diabook-blue/theme.php:100
#: ../../view/theme/diabook/theme.php:106
#: ../../view/theme/diabook-aerith/theme.php:101
msgid "Last photos"
msgstr "Letzte Fotos"
#: ../../view/theme/cleanzero/config.php:84
#: ../../view/theme/diabook/config.php:98 ../../view/theme/dispy/config.php:73
msgid "Set font-size for posts and comments"
msgstr "Schriftgröße für Beiträge und Kommentare festlegen"
#: ../../view/theme/diabook-red/theme.php:145
#: ../../view/theme/diabook-blue/theme.php:145
#: ../../view/theme/diabook/theme.php:151
#: ../../view/theme/diabook-aerith/theme.php:146
msgid "Find Friends"
msgstr "Freunde finden"
#: ../../view/theme/cleanzero/config.php:85
msgid "Set theme width"
msgstr "Theme Breite festlegen"
#: ../../view/theme/diabook-red/theme.php:146
#: ../../view/theme/diabook-blue/theme.php:146
#: ../../view/theme/diabook/theme.php:152
#: ../../view/theme/diabook-aerith/theme.php:147
msgid "Local Directory"
msgstr "Lokales Verzeichnis"
#: ../../view/theme/cleanzero/config.php:86
#: ../../view/theme/quattro/config.php:56
msgid "Color scheme"
msgstr "Farbschema"
#: ../../view/theme/diabook-red/theme.php:148
#: ../../view/theme/diabook-blue/theme.php:148
#: ../../view/theme/diabook/theme.php:154
#: ../../view/theme/diabook-aerith/theme.php:149
#: ../../include/contact_widgets.php:35
msgid "Similar Interests"
msgstr "Ähnliche Interessen"
#: ../../view/theme/diabook-red/theme.php:150
#: ../../view/theme/diabook-blue/theme.php:150
#: ../../view/theme/diabook/theme.php:156
#: ../../view/theme/diabook-aerith/theme.php:151
#: ../../include/contact_widgets.php:37
msgid "Invite Friends"
msgstr "Freunde einladen"
#: ../../view/theme/diabook-red/theme.php:165
#: ../../view/theme/diabook-red/theme.php:246
#: ../../view/theme/diabook-blue/theme.php:165
#: ../../view/theme/diabook-blue/theme.php:246
#: ../../view/theme/diabook/theme.php:172
#: ../../view/theme/diabook/theme.php:256
#: ../../view/theme/diabook-aerith/theme.php:166
#: ../../view/theme/diabook-aerith/theme.php:247
msgid "Community Pages"
msgstr "Foren"
#: ../../view/theme/diabook-red/theme.php:198
#: ../../view/theme/diabook-blue/theme.php:198
#: ../../view/theme/diabook/theme.php:205
#: ../../view/theme/diabook-aerith/theme.php:199
msgid "Help or @NewHere ?"
msgstr "Hilfe oder @NewHere"
#: ../../view/theme/diabook-red/theme.php:204
#: ../../view/theme/diabook-blue/theme.php:204
#: ../../view/theme/diabook/theme.php:211
#: ../../view/theme/diabook-aerith/theme.php:205
msgid "Connect Services"
msgstr "Verbinde Dienste"
#: ../../view/theme/diabook-red/theme.php:210
#: ../../view/theme/diabook-blue/theme.php:210
#: ../../view/theme/diabook/theme.php:217
#: ../../view/theme/diabook-aerith/theme.php:211
msgid "PostIt to Friendica"
msgstr "Bei Friendica posten"
#: ../../view/theme/diabook-red/theme.php:210
#: ../../view/theme/diabook-blue/theme.php:210
#: ../../view/theme/diabook/theme.php:217
#: ../../view/theme/diabook-aerith/theme.php:211
msgid "Post to Friendica"
msgstr "Wenn du diesen Link"
#: ../../view/theme/diabook-red/theme.php:211
#: ../../view/theme/diabook-blue/theme.php:211
#: ../../view/theme/diabook/theme.php:218
#: ../../view/theme/diabook-aerith/theme.php:212
msgid " from anywhere by bookmarking this Link."
msgstr "zu deinen Lesezeichen hinzufügst, kannst du von überallher Links bei Friendica veröffentlichen."
#: ../../view/theme/diabook-red/theme.php:239
#: ../../view/theme/diabook-blue/theme.php:239
#: ../../view/theme/diabook/theme.php:249
#: ../../view/theme/diabook-aerith/theme.php:240 ../../include/nav.php:49
#: ../../view/theme/diabook/theme.php:65 ../../include/nav.php:49
#: ../../include/nav.php:115
msgid "Your posts and conversations"
msgstr "Deine Beiträge und Unterhaltungen"
#: ../../view/theme/diabook-red/theme.php:240
#: ../../view/theme/diabook-blue/theme.php:240
#: ../../view/theme/diabook/theme.php:250
#: ../../view/theme/diabook-aerith/theme.php:241 ../../include/nav.php:50
#: ../../view/theme/diabook/theme.php:66 ../../include/nav.php:50
msgid "Your profile page"
msgstr "Deine Profilseite"
#: ../../view/theme/diabook-red/theme.php:241
#: ../../view/theme/diabook-blue/theme.php:241
#: ../../view/theme/diabook/theme.php:251
#: ../../view/theme/diabook-aerith/theme.php:242
#: ../../view/theme/diabook/theme.php:67
msgid "Your contacts"
msgstr "Deine Kontakte"
#: ../../view/theme/diabook-red/theme.php:242
#: ../../view/theme/diabook-blue/theme.php:242
#: ../../view/theme/diabook/theme.php:252
#: ../../view/theme/diabook-aerith/theme.php:243 ../../include/nav.php:51
#: ../../boot.php:1463
msgid "Photos"
msgstr "Bilder"
#: ../../view/theme/diabook-red/theme.php:242
#: ../../view/theme/diabook-blue/theme.php:242
#: ../../view/theme/diabook/theme.php:252
#: ../../view/theme/diabook-aerith/theme.php:243 ../../include/nav.php:51
#: ../../view/theme/diabook/theme.php:68 ../../include/nav.php:51
msgid "Your photos"
msgstr "Deine Fotos"
#: ../../view/theme/diabook-red/theme.php:243
#: ../../view/theme/diabook-blue/theme.php:243
#: ../../view/theme/diabook/theme.php:253
#: ../../view/theme/diabook-aerith/theme.php:244 ../../include/nav.php:52
#: ../../view/theme/diabook/theme.php:69 ../../include/nav.php:52
msgid "Your events"
msgstr "Deine Ereignisse"
#: ../../view/theme/diabook-red/theme.php:244
#: ../../view/theme/diabook-blue/theme.php:244
#: ../../view/theme/diabook/theme.php:254
#: ../../view/theme/diabook-aerith/theme.php:245 ../../include/nav.php:53
#: ../../view/theme/diabook/theme.php:70 ../../include/nav.php:53
msgid "Personal notes"
msgstr "Persönliche Notizen"
#: ../../view/theme/diabook-red/theme.php:244
#: ../../view/theme/diabook-blue/theme.php:244
#: ../../view/theme/diabook/theme.php:254
#: ../../view/theme/diabook-aerith/theme.php:245 ../../include/nav.php:53
#: ../../view/theme/diabook/theme.php:70 ../../include/nav.php:53
msgid "Your personal photos"
msgstr "Deine privaten Fotos"
#: ../../view/theme/diabook-red/config.php:66
#: ../../view/theme/diabook-blue/config.php:66
#: ../../view/theme/diabook/config.php:78
#: ../../view/theme/quattro/config.php:54
#: ../../view/theme/diabook-aerith/config.php:66
msgid "Theme settings"
msgstr "Themen Einstellungen"
#: ../../view/theme/diabook/theme.php:72
#: ../../view/theme/diabook/theme.php:530
msgid "Community Pages"
msgstr "Foren"
#: ../../view/theme/diabook-red/config.php:67
#: ../../view/theme/diabook-blue/config.php:67
#: ../../view/theme/diabook/config.php:79
#: ../../view/theme/diabook-aerith/config.php:67
msgid "Set font-size for posts and comments"
#: ../../view/theme/diabook/theme.php:377
msgid "Community Profiles"
msgstr "Community-Profile"
#: ../../view/theme/diabook/theme.php:398
msgid "Last users"
msgstr "Letzte Nutzer"
#: ../../view/theme/diabook/theme.php:427
msgid "Last likes"
msgstr "Zuletzt gemocht"
#: ../../view/theme/diabook/theme.php:472
msgid "Last photos"
msgstr "Letzte Fotos"
#: ../../view/theme/diabook/theme.php:509
msgid "Find Friends"
msgstr "Freunde finden"
#: ../../view/theme/diabook/theme.php:510
msgid "Local Directory"
msgstr "Lokales Verzeichnis"
#: ../../view/theme/diabook/theme.php:512 ../../include/contact_widgets.php:35
msgid "Similar Interests"
msgstr "Ähnliche Interessen"
#: ../../view/theme/diabook/theme.php:514 ../../include/contact_widgets.php:37
msgid "Invite Friends"
msgstr "Freunde einladen"
#: ../../view/theme/diabook/theme.php:565
msgid "Earth View"
msgstr "Earth View"
#: ../../view/theme/diabook/theme.php:573
msgid "Help or @NewHere ?"
msgstr "Hilfe oder @NewHere"
#: ../../view/theme/diabook/theme.php:580
msgid "Connect Services"
msgstr "Verbinde Dienste"
#: ../../view/theme/diabook/theme.php:587
msgid "Last Tweets"
msgstr "Neueste Tweets"
#: ../../view/theme/diabook/theme.php:591
#: ../../view/theme/diabook/config.php:102
msgid "Set twitter search term"
msgstr ""
#: ../../view/theme/diabook-red/config.php:68
#: ../../view/theme/diabook-blue/config.php:68
#: ../../view/theme/diabook/config.php:80
#: ../../view/theme/diabook-aerith/config.php:68
#: ../../view/theme/diabook/config.php:99 ../../view/theme/dispy/config.php:74
msgid "Set line-height for posts and comments"
msgstr ""
msgstr "Liniengröße für Beiträge und Kommantare festlegen"
#: ../../view/theme/diabook/config.php:81
#: ../../view/theme/diabook/config.php:100
msgid "Set resolution for middle column"
msgstr ""
msgstr "Auflösung für die Mittelspalte setzen"
#: ../../view/theme/diabook/config.php:101
msgid "Set color scheme"
msgstr "Wähle Farbschema"
#: ../../view/theme/quattro/config.php:55
msgid "Alignment"
@ -5550,11 +5692,11 @@ msgstr "Links"
msgid "Center"
msgstr "Mitte"
#: ../../view/theme/quattro/config.php:56
msgid "Color scheme"
msgstr "Farbschema"
#: ../../view/theme/dispy/config.php:75
msgid "Set colour scheme"
msgstr "Farbschema wählen"
#: ../../include/profile_advanced.php:17 ../../boot.php:1085
#: ../../include/profile_advanced.php:17 ../../boot.php:1094
msgid "Gender:"
msgstr "Geschlecht:"
@ -5567,7 +5709,7 @@ msgid "j F"
msgstr "j F"
#: ../../include/profile_advanced.php:30 ../../include/datetime.php:448
#: ../../include/items.php:1402
#: ../../include/items.php:1403
msgid "Birthday:"
msgstr "Geburtstag:"
@ -5575,11 +5717,11 @@ msgstr "Geburtstag:"
msgid "Age:"
msgstr "Alter:"
#: ../../include/profile_advanced.php:37 ../../boot.php:1088
#: ../../include/profile_advanced.php:37 ../../boot.php:1097
msgid "Status:"
msgstr "Status:"
#: ../../include/profile_advanced.php:45 ../../boot.php:1090
#: ../../include/profile_advanced.php:45 ../../boot.php:1099
msgid "Homepage:"
msgstr "Homepage:"
@ -5759,179 +5901,179 @@ msgstr "Andere"
msgid "Undecided"
msgstr "Unentschieden"
#: ../../include/profile_selectors.php:19
#: ../../include/profile_selectors.php:21
msgid "Males"
msgstr "Männer"
#: ../../include/profile_selectors.php:19
#: ../../include/profile_selectors.php:21
msgid "Females"
msgstr "Frauen"
#: ../../include/profile_selectors.php:19
#: ../../include/profile_selectors.php:21
msgid "Gay"
msgstr "Schwul"
#: ../../include/profile_selectors.php:19
#: ../../include/profile_selectors.php:21
msgid "Lesbian"
msgstr "Lesbisch"
#: ../../include/profile_selectors.php:19
#: ../../include/profile_selectors.php:21
msgid "No Preference"
msgstr "Keine Vorlieben"
#: ../../include/profile_selectors.php:19
#: ../../include/profile_selectors.php:21
msgid "Bisexual"
msgstr "Bisexuell"
#: ../../include/profile_selectors.php:19
#: ../../include/profile_selectors.php:21
msgid "Autosexual"
msgstr "Autosexual"
#: ../../include/profile_selectors.php:19
#: ../../include/profile_selectors.php:21
msgid "Abstinent"
msgstr "Abstinent"
#: ../../include/profile_selectors.php:19
#: ../../include/profile_selectors.php:21
msgid "Virgin"
msgstr "Jungfrauen"
#: ../../include/profile_selectors.php:19
#: ../../include/profile_selectors.php:21
msgid "Deviant"
msgstr "Deviant"
#: ../../include/profile_selectors.php:19
#: ../../include/profile_selectors.php:21
msgid "Fetish"
msgstr "Fetish"
#: ../../include/profile_selectors.php:19
#: ../../include/profile_selectors.php:21
msgid "Oodles"
msgstr "Oodles"
#: ../../include/profile_selectors.php:19
#: ../../include/profile_selectors.php:21
msgid "Nonsexual"
msgstr "Nonsexual"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Single"
msgstr "Single"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Lonely"
msgstr "Einsam"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Available"
msgstr "Verfügbar"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Unavailable"
msgstr "Nicht verfügbar"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Has crush"
msgstr ""
msgstr "verknallt"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Infatuated"
msgstr ""
msgstr "verliebt"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Dating"
msgstr "Dating"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Unfaithful"
msgstr "Untreu"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Sex Addict"
msgstr "Sexbesessen"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Friends"
msgstr "Freunde"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Friends/Benefits"
msgstr "Freunde/Zuwendungen"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Casual"
msgstr "Casual"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Engaged"
msgstr "Verlobt"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Married"
msgstr "Verheiratet"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Imaginarily married"
msgstr ""
msgstr "imaginär verheiratet"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Partners"
msgstr "Partner"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Cohabiting"
msgstr "zusammenlebend"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Common law"
msgstr ""
msgstr "wilde Ehe"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Happy"
msgstr "Glücklich"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Not looking"
msgstr "Nicht auf der Suche"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Swinger"
msgstr "Swinger"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Betrayed"
msgstr "Betrogen"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Separated"
msgstr "Getrennt"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Unstable"
msgstr "Unstabil"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Divorced"
msgstr "Geschieden"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Imaginarily divorced"
msgstr ""
msgstr "imaginär geschieden"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Widowed"
msgstr "Verwitwet"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Uncertain"
msgstr "Unsicher"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "It's complicated"
msgstr "Ist kompliziert"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Don't care"
msgstr "Ist mir nicht wichtig"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Ask me"
msgstr "Frag mich"
@ -5943,12 +6085,12 @@ msgstr "Beginnt:"
msgid "Finishes:"
msgstr "Endet:"
#: ../../include/delivery.php:434 ../../include/notifier.php:651
#: ../../include/delivery.php:445 ../../include/notifier.php:652
msgid "(no subject)"
msgstr "(kein Betreff)"
#: ../../include/delivery.php:441 ../../include/enotify.php:23
#: ../../include/notifier.php:658
#: ../../include/delivery.php:452 ../../include/enotify.php:23
#: ../../include/notifier.php:659
msgid "noreply"
msgstr "noreply"
@ -6063,47 +6205,47 @@ msgstr "Dezember"
msgid "bytes"
msgstr "Byte"
#: ../../include/text.php:936
msgid "Categories:"
msgstr "Kategorien:"
#: ../../include/text.php:948
#: ../../include/text.php:934 ../../include/text.php:949
msgid "remove"
msgstr "löschen"
#: ../../include/text.php:948
#: ../../include/text.php:934 ../../include/text.php:949
msgid "[remove]"
msgstr "[löschen]"
#: ../../include/text.php:951
#: ../../include/text.php:937
msgid "Categories:"
msgstr "Kategorien:"
#: ../../include/text.php:952
msgid "Filed under:"
msgstr "Abgelegt unter:"
#: ../../include/text.php:967 ../../include/text.php:979
#: ../../include/text.php:968 ../../include/text.php:980
msgid "Click to open/close"
msgstr "Zum öffnen/schließen klicken"
#: ../../include/text.php:1084
#: ../../include/text.php:1085
msgid "default"
msgstr "standard"
#: ../../include/text.php:1096
#: ../../include/text.php:1097
msgid "Select an alternate language"
msgstr "Alternative Sprache auswählen"
#: ../../include/text.php:1306
#: ../../include/text.php:1307
msgid "activity"
msgstr "Aktivität"
#: ../../include/text.php:1308
#: ../../include/text.php:1309
msgid "comment"
msgstr "Kommentar"
#: ../../include/text.php:1309
#: ../../include/text.php:1310
msgid "post"
msgstr "Beitrag"
#: ../../include/text.php:1464
#: ../../include/text.php:1465
msgid "Item filed"
msgstr "Beitrag abgelegt"
@ -6120,7 +6262,7 @@ msgstr "Anhänge:"
msgid "[Relayed] Comment authored by %s from network %s"
msgstr "[Weitergeleitet] Kommentar von %s aus dem %s Netzwerk"
#: ../../include/network.php:823
#: ../../include/network.php:824
msgid "view full size"
msgstr "Volle Größe anzeigen"
@ -6161,9 +6303,9 @@ msgstr "Neue Gruppe erstellen"
#: ../../include/group.php:215
msgid "Contacts not in any group"
msgstr ""
msgstr "Kontakte in keiner Gruppe"
#: ../../include/nav.php:46 ../../boot.php:795
#: ../../include/nav.php:46 ../../boot.php:804
msgid "Logout"
msgstr "Abmelden"
@ -6171,7 +6313,7 @@ msgstr "Abmelden"
msgid "End this session"
msgstr "Diese Sitzung beenden"
#: ../../include/nav.php:49 ../../boot.php:1453
#: ../../include/nav.php:49 ../../boot.php:1472
msgid "Status"
msgstr "Status"
@ -6251,11 +6393,11 @@ msgstr "Verwalten"
msgid "Manage other pages"
msgstr "Andere Seiten verwalten"
#: ../../include/nav.php:138 ../../boot.php:1043
#: ../../include/nav.php:138 ../../boot.php:1052
msgid "Profiles"
msgstr "Profile"
#: ../../include/nav.php:138 ../../boot.php:1043
#: ../../include/nav.php:138 ../../boot.php:1052
msgid "Manage/edit profiles"
msgstr "Profile verwalten/editieren"
@ -6421,7 +6563,7 @@ msgstr "Sekunden"
msgid "%1$d %2$s ago"
msgstr "%1$d %2$s her"
#: ../../include/poller.php:543
#: ../../include/onepoll.php:402
msgid "From: "
msgstr "Von: "
@ -6429,7 +6571,7 @@ msgstr "Von: "
msgid "$1 wrote:"
msgstr "$1 hat geschrieben:"
#: ../../include/bbcode.php:238 ../../include/bbcode.php:304
#: ../../include/bbcode.php:238 ../../include/bbcode.php:307
msgid "Image/photo"
msgstr "Bild/Foto"
@ -6581,7 +6723,7 @@ msgstr "%s markierte %s"
#: ../../include/enotify.php:121
msgid "your post"
msgstr "Deinen Beitrag"
msgstr "deinen Beitrag"
#: ../../include/enotify.php:130
msgid "[Friendica:Notify] Introduction received"
@ -6642,11 +6784,11 @@ msgstr "Foto:"
msgid "Please visit %s to approve or reject the suggestion."
msgstr "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen."
#: ../../include/items.php:2697
#: ../../include/items.php:2714
msgid "A new person is sharing with you at "
msgstr "Eine neue Person teilt mit dir auf "
#: ../../include/items.php:2697
#: ../../include/items.php:2714
msgid "You have a new follower at "
msgstr "Du hast einen neuen Kontakt auf "
@ -6675,32 +6817,36 @@ msgstr "Willkommen zurück "
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."
msgstr ""
msgstr "Das Sicherheits-Merkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden)."
#: ../../include/Contact.php:145 ../../include/conversation.php:809
#: ../../include/Contact.php:111
msgid "stopped following"
msgstr "wird nicht mehr gefolgt"
#: ../../include/Contact.php:203 ../../include/conversation.php:817
msgid "View Status"
msgstr "Pinnwand anschauen"
#: ../../include/Contact.php:146 ../../include/conversation.php:810
#: ../../include/Contact.php:204 ../../include/conversation.php:818
msgid "View Profile"
msgstr "Profil anschauen"
#: ../../include/Contact.php:147 ../../include/conversation.php:811
#: ../../include/Contact.php:205 ../../include/conversation.php:819
msgid "View Photos"
msgstr "Bilder anschauen"
#: ../../include/Contact.php:148 ../../include/Contact.php:161
#: ../../include/conversation.php:812
#: ../../include/Contact.php:206 ../../include/Contact.php:219
#: ../../include/conversation.php:820
msgid "Network Posts"
msgstr "Netzwerk Beiträge"
msgstr "Netzwerk-Beiträge"
#: ../../include/Contact.php:149 ../../include/Contact.php:161
#: ../../include/conversation.php:813
#: ../../include/Contact.php:207 ../../include/Contact.php:219
#: ../../include/conversation.php:821
msgid "Edit Contact"
msgstr "Kontakt bearbeiten"
#: ../../include/Contact.php:150 ../../include/Contact.php:161
#: ../../include/conversation.php:814
#: ../../include/Contact.php:208 ../../include/Contact.php:219
#: ../../include/conversation.php:822
msgid "Send PM"
msgstr "Private Nachricht senden"
@ -6713,22 +6859,22 @@ msgstr "Nachricht/Beitrag"
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:317 ../../include/conversation.php:575
#: ../../include/conversation.php:317 ../../include/conversation.php:583
msgid "Select"
msgstr "Auswählen"
#: ../../include/conversation.php:334 ../../include/conversation.php:668
#: ../../include/conversation.php:669
#: ../../include/conversation.php:334 ../../include/conversation.php:676
#: ../../include/conversation.php:677
#, php-format
msgid "View %s's profile @ %s"
msgstr "Das Profil von %s auf %s betrachten."
#: ../../include/conversation.php:344 ../../include/conversation.php:680
#: ../../include/conversation.php:344 ../../include/conversation.php:688
#, php-format
msgid "%s from %s"
msgstr "%s von %s"
#: ../../include/conversation.php:360
#: ../../include/conversation.php:359
msgid "View in context"
msgstr "Im Zusammenhang betrachten"
@ -6755,209 +6901,267 @@ msgstr "Teile dieses"
msgid "share"
msgstr "Teilen"
#: ../../include/conversation.php:588
#: ../../include/conversation.php:556
msgid "Bold"
msgstr "Fett"
#: ../../include/conversation.php:557
msgid "Italic"
msgstr "Kursiv"
#: ../../include/conversation.php:558
msgid "Underline"
msgstr "Unterstrichen"
#: ../../include/conversation.php:559
msgid "Quote"
msgstr "Zitat"
#: ../../include/conversation.php:560
msgid "Code"
msgstr "Code"
#: ../../include/conversation.php:561
msgid "Image"
msgstr "Bild"
#: ../../include/conversation.php:562
msgid "Link"
msgstr "Verweis"
#: ../../include/conversation.php:563
msgid "Video"
msgstr "Video"
#: ../../include/conversation.php:596
msgid "add star"
msgstr "markieren"
#: ../../include/conversation.php:589
#: ../../include/conversation.php:597
msgid "remove star"
msgstr "Markierung entfernen"
#: ../../include/conversation.php:590
#: ../../include/conversation.php:598
msgid "toggle star status"
msgstr "Markierung umschalten"
#: ../../include/conversation.php:593
#: ../../include/conversation.php:601
msgid "starred"
msgstr "markiert"
#: ../../include/conversation.php:594
#: ../../include/conversation.php:602
msgid "add tag"
msgstr "Tag hinzufügen"
#: ../../include/conversation.php:598
#: ../../include/conversation.php:606
msgid "save to folder"
msgstr "In Ordner speichern"
#: ../../include/conversation.php:670
#: ../../include/conversation.php:678
msgid "to"
msgstr "zu"
#: ../../include/conversation.php:671
#: ../../include/conversation.php:679
msgid "Wall-to-Wall"
msgstr "Wall-to-Wall"
#: ../../include/conversation.php:672
#: ../../include/conversation.php:680
msgid "via Wall-To-Wall:"
msgstr "via Wall-To-Wall:"
#: ../../include/conversation.php:717
#: ../../include/conversation.php:725
msgid "Delete Selected Items"
msgstr "Lösche die markierten Beiträge"
#: ../../include/conversation.php:868
#: ../../include/conversation.php:876
#, php-format
msgid "%s likes this."
msgstr "%s mag das."
#: ../../include/conversation.php:868
#: ../../include/conversation.php:876
#, php-format
msgid "%s doesn't like this."
msgstr "%s mag das nicht."
#: ../../include/conversation.php:872
#: ../../include/conversation.php:880
#, 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:874
#: ../../include/conversation.php:882
#, 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:880
#: ../../include/conversation.php:888
msgid "and"
msgstr "und"
#: ../../include/conversation.php:883
#: ../../include/conversation.php:891
#, php-format
msgid ", and %d other people"
msgstr " und %d andere"
#: ../../include/conversation.php:884
#: ../../include/conversation.php:892
#, php-format
msgid "%s like this."
msgstr "%s mögen das."
#: ../../include/conversation.php:884
#: ../../include/conversation.php:892
#, php-format
msgid "%s don't like this."
msgstr "%s mögen das nicht."
#: ../../include/conversation.php:909
#: ../../include/conversation.php:917
msgid "Visible to <strong>everybody</strong>"
msgstr "Für <strong>jedermann</strong> sichtbar"
#: ../../include/conversation.php:911
#: ../../include/conversation.php:919
msgid "Please enter a video link/URL:"
msgstr "Bitte Link/URL zum Video einfügen:"
#: ../../include/conversation.php:912
#: ../../include/conversation.php:920
msgid "Please enter an audio link/URL:"
msgstr "Bitte Link/URL zum Audio einfügen:"
#: ../../include/conversation.php:913
#: ../../include/conversation.php:921
msgid "Tag term:"
msgstr "Tag:"
#: ../../include/conversation.php:915
#: ../../include/conversation.php:923
msgid "Where are you right now?"
msgstr "Wo hältst du dich jetzt gerade auf?"
#: ../../include/conversation.php:958
#: ../../include/conversation.php:966
msgid "upload photo"
msgstr "Bild hochladen"
#: ../../include/conversation.php:960
#: ../../include/conversation.php:968
msgid "attach file"
msgstr "Datei anhängen"
#: ../../include/conversation.php:962
#: ../../include/conversation.php:970
msgid "web link"
msgstr "Weblink"
#: ../../include/conversation.php:963
#: ../../include/conversation.php:971
msgid "Insert video link"
msgstr "Video-Adresse einfügen"
#: ../../include/conversation.php:964
#: ../../include/conversation.php:972
msgid "video link"
msgstr "Video-Link"
#: ../../include/conversation.php:965
#: ../../include/conversation.php:973
msgid "Insert audio link"
msgstr "Audio-Adresse einfügen"
#: ../../include/conversation.php:966
#: ../../include/conversation.php:974
msgid "audio link"
msgstr "Audio-Link"
#: ../../include/conversation.php:968
#: ../../include/conversation.php:976
msgid "set location"
msgstr "Ort setzen"
#: ../../include/conversation.php:970
#: ../../include/conversation.php:978
msgid "clear location"
msgstr "Ort löschen"
#: ../../include/conversation.php:977
#: ../../include/conversation.php:985
msgid "permissions"
msgstr "Zugriffsrechte"
#: ../../boot.php:494
#: ../../boot.php:505
msgid "Delete this item?"
msgstr "Diesen Beitrag löschen?"
#: ../../boot.php:497
#: ../../boot.php:508
msgid "show fewer"
msgstr "weniger anzeigen"
#: ../../boot.php:774
#: ../../boot.php:681
#, php-format
msgid "Update %s failed. See error logs."
msgstr "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen."
#: ../../boot.php:683
#, php-format
msgid "Update Error at %s"
msgstr "Updatefehler bei %s"
#: ../../boot.php:783
msgid "Create a New Account"
msgstr "Neuen Account erstellen"
#: ../../boot.php:798
#: ../../boot.php:807
msgid "Nickname or Email address: "
msgstr "Spitzname oder Email-Adresse: "
#: ../../boot.php:799
#: ../../boot.php:808
msgid "Password: "
msgstr "Passwort: "
#: ../../boot.php:802
#: ../../boot.php:811
msgid "Or login using OpenID: "
msgstr "Oder melde dich mit deiner OpenID an: "
#: ../../boot.php:808
#: ../../boot.php:817
msgid "Forgot your password?"
msgstr "Passwort vergessen?"
#: ../../boot.php:975
#: ../../boot.php:984
msgid "Edit profile"
msgstr "Profil bearbeiten"
#: ../../boot.php:1035
#: ../../boot.php:1044
msgid "Message"
msgstr "Nachricht"
#: ../../boot.php:1151 ../../boot.php:1223
#: ../../boot.php:1160 ../../boot.php:1236
msgid "g A l F d"
msgstr "l, d. F G \\U\\h\\r"
#: ../../boot.php:1152 ../../boot.php:1224
#: ../../boot.php:1161 ../../boot.php:1237
msgid "F d"
msgstr "d. F"
#: ../../boot.php:1177
msgid "Birthday Reminders"
msgstr "Geburtstagserinnerungen"
#: ../../boot.php:1178
msgid "Birthdays this week:"
msgstr "Geburtstage diese Woche:"
#: ../../boot.php:1201 ../../boot.php:1266
#: ../../boot.php:1206 ../../boot.php:1277
msgid "[today]"
msgstr "[heute]"
#: ../../boot.php:1247
#: ../../boot.php:1218
msgid "Birthday Reminders"
msgstr "Geburtstagserinnerungen"
#: ../../boot.php:1219
msgid "Birthdays this week:"
msgstr "Geburtstage diese Woche:"
#: ../../boot.php:1270
msgid "[No description]"
msgstr "[keine Beschreibung]"
#: ../../boot.php:1288
msgid "Event Reminders"
msgstr "Veranstaltungserinnerungen"
#: ../../boot.php:1248
#: ../../boot.php:1289
msgid "Events this week:"
msgstr "Veranstaltungen diese Woche"
#: ../../boot.php:1260
msgid "[No description]"
msgstr "[keine Beschreibung]"
#: ../../boot.php:1475
msgid "Status Messages and Posts"
msgstr "Statusnachrichten und Beiträge"
#: ../../boot.php:1481
msgid "Profile Details"
msgstr "Profildetails"
#: ../../boot.php:1496
msgid "Events and Calendar"
msgstr "Ereignisse und Kalender"
#: ../../boot.php:1502
msgid "Only You Can See This"
msgstr "Nur Du Kannst Das Sehen"

View file

@ -1,20 +1,20 @@
Liebe/r $username,
dein Passwort wurde wie gewünscht geändert. Bitte hebe diese Informationen
für deine Unterlagen auf (oder ändere das Passwort augenblicklich in etwas
das du dir merken kannst).
Hallo $[username],
Dein Passwort wurde wie gewünscht geändert. Bitte bewahre diese
Informationen in deinen Unterlagen auf (oder ändere dein Passwort sofort
in etwas, was du dir merken kannst).
Deine Anmeldedaten sind die Folgenden:
Deine Login Daten wurden wie folgt geändert:
Adresse der Seite: $siteurl
Anmelde Name: $email
Passwort: $new_password
Adresse der Seite: $[siteurl]
Login Name: $[email]
Passwort: $[new_password]
Du kannst diesen Passwort auf der "Einstellungen" Seite deines Accounts
ändern nachdem du angemeldet bits.
Du kannst dein Passwort unter deinen Account-Einstellungen ändern, wenn du angemeldet bist.
Viele Grüße,
$sitename Administrator
Beste Grüße,
$[sitename] Administrator

View file

@ -1,19 +1,34 @@
Liebe/r $username,
danke für die Registrierung bei $sitename. Dein neuer Account wurde angelegt.
Die Anmeldedetails sind die Folgenden.
Hallo $[username],
Danke für deine Anmeldung auf $[sitename]. Dein Account wurde angelegt.
Die Login Details sind die folgenden:
Adresse der Seite: $siteurl
Anmelde Name: $email
Passwort: $password
Du kannst dein Passwort auf der "Einstellungen" Seite deines Accounts ändern
nachdem du dich angemeldet hast.
Adresse der Seite: $[siteurl]
Login Name: $[email]
Passwort: $[password]
Nimm dir bitte ein paar Augenblicke Zeit um die anderen Einstellungen deines
Accounts zu bearbeiten.
Du kannst das Passwort in den "Einstellungen" zu deinem Account ändern
nachdem du dich eingeloggt hast.
Vielen Dank und Willkommen auf $sitename.
Bitte nimm dir einige Augenblicke Zeit um die anderen Einstellungen auf der Seite zu überprüfen.
Mit freundlichem Gruß,
$sitename Administrator
Eventuell möchtest du außerdem einige grundlegenden Informationen in dein Standart-Profil eintragen
(auf der "Profile" Seite) damit andere Leute dich einfacher finden können.
Wir empfehlen den kompletten Namen anzugeben, ein eigenes Profil-Foto,
ein paar "Profil-Schlüsselwörter" anzugeben (damit man leichter Gleichinteressierte finden kann) - und
natürlich in welchen Land Du lebst; wenn Du es nicht genauer angeben möchtest
dann das.
Wir respektieren Ihr Recht auf Privatsphäre, und keines dieser Elemente sind notwendig.
Wenn Du hier neu bist und keinen kennst, wird man Dir helfen
ein paar neue und interessante Freunde zu finden.
Danke dir und willkommen auf $[sitename].
Beste Grüße,
$[sitename] Administrator

View file

@ -1,21 +1,25 @@
Ein neuer Nutzer hat sich auf $sitename registriert. Diese Registration
benötigt noch deine Zustimmung.
Die Anmeldedetails sind Folgende:
Kompletter Name: $username
Adresse der Seite: $siteurl
Anmelde Name: $email
Eine Neuanmeldung auf $[sitename] benötigt
deine Aufmerksamkeit.
Um dieser Anmeldung zuzustimmen folge bitte diesem Link:
Die Login-Einzelheiten sind die folgenden:
$siteurl/regmod/allow/$hash
Kompletter Name: $[username]
Adresse der Seite: $[siteurl]
Login Name: $[email]
Um die Anfrage abzulehen und den Account zu entfernen folge diesem Link:
Um die Anfrage zu bestätigen besuche bitte:
$siteurl/regmod/deny/$hash
Besten Dank!
$[siteurl]/regmod/allow/$[hash]
Um die Anfrage abzulehnen und den Account zu löschen besuche bitte:
$[siteurl]/regmod/deny/$[hash]
Danke!

View file

@ -1,14 +1,17 @@
Liebe/r $myname,
Hallo $[myname],
du hast gerade eine Kontaktanfrage von '$requestor' auf $sitename erhalten.
du hast eine Kontaktanfrage von '$[requestor]' auf $[sitename]
Du kannst dir das Profil unter $url ansehen.
erhalten.
Bitte melde dich auf deiner Seite an um die komplette Vorstellung anzusehen
und bestätige oder ignoriere die Anfrage.
Du kannst sein/ihr Profil unter $[url] finden.
$siteurl
Bitte melde dich an um die komplette Vorstellung einzusehen
und die Anfrage zu bestätigen oder zu ignorieren oder abzulehnen.
Schöne Grüße,
$sitename Administrator
$[siteurl]
Beste Grüße,
$[sitename] Administrator

View file

@ -128,7 +128,7 @@ $a->strings["Post to Email"] = "An E-Mail senden";
$a->strings["Edit"] = "Bearbeiten";
$a->strings["Upload photo"] = "Foto hochladen";
$a->strings["Attach file"] = "Datei anhängen";
$a->strings["Insert web link"] = "eine Kontaktanfrage";
$a->strings["Insert web link"] = "einen Link einfügen";
$a->strings["Insert YouTube video"] = "YouTube-Video einfügen";
$a->strings["Insert Vorbis [.ogg] video"] = "Vorbis [.ogg] Video einfügen";
$a->strings["Insert Vorbis [.ogg] audio"] = "Vorbis [.ogg] Audio einfügen";
@ -138,7 +138,7 @@ $a->strings["Permission settings"] = "Berechtigungseinstellungen";
$a->strings["CC: email addresses"] = "Cc:-E-Mail-Addressen";
$a->strings["Public post"] = "Öffentlicher Beitrag";
$a->strings["Set title"] = "Titel setzen";
$a->strings["Categories (comma-separated list)"] = "Kategorien (mit Komma separierte Liste)";
$a->strings["Categories (comma-separated list)"] = "Kategorien (kommasepariert)";
$a->strings["Example: bob@example.com, mary@example.com"] = "Z.B.: bob@example.com, mary@example.com";
$a->strings["This introduction has already been accepted."] = "Diese Kontaktanfrage wurde bereits akzeptiert.";
$a->strings["Profile location is not valid or does not contain profile information."] = "Profiladresse ist ungültig oder stellt einige Profildaten nicht zur Verfügung.";
@ -156,7 +156,7 @@ $a->strings["Spam protection measures have been invoked."] = "Maßnahmen zum Spa
$a->strings["Friends are advised to please try again in 24 hours."] = "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen.";
$a->strings["Invalid locator"] = "Ungültiger Locator";
$a->strings["Invalid email address."] = "Ungültige E-Mail Adresse.";
$a->strings["This account has not been configured for email. Request failed."] = "";
$a->strings["This account has not been configured for email. Request failed."] = "Dieses Konto ist nicht für Email konfiguriert. Anfrage fehlgeschlagen.";
$a->strings["Unable to resolve your name at the provided location."] = "Konnte deinen Namen an der angegebenen Stelle nicht finden.";
$a->strings["You have already introduced yourself here."] = "Du hast dich hier bereits vorgestellt.";
$a->strings["Apparently you are already friends with %s."] = "Es scheint so, als ob du bereits mit %s befreundet bist.";
@ -223,7 +223,7 @@ $a->strings["GD graphics PHP module"] = "PHP: GD-Grafikmodul";
$a->strings["OpenSSL PHP module"] = "PHP: OpenSSL-Modul";
$a->strings["mysqli PHP module"] = "PHP: mysqli-Modul";
$a->strings["mb_string PHP module"] = "PHP: mb_string-Modul";
$a->strings["Apace mod_rewrite module"] = "Apache: mod_rewrite-Modul";
$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module";
$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert.";
$a->strings["Error: libCURL PHP module required but not installed."] = "Fehler: Das libCURL PHP Modul wird benötigt ist aber nicht installiert.";
$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert.";
@ -301,7 +301,8 @@ $a->strings["Contact has been blocked"] = "Kontakt wurde blockiert";
$a->strings["Contact has been unblocked"] = "Kontakt wurde wieder freigegeben";
$a->strings["Contact has been ignored"] = "Kontakt wurde ignoriert";
$a->strings["Contact has been unignored"] = "Kontakt wird nicht mehr ignoriert";
$a->strings["stopped following"] = "wird nicht mehr gefolgt";
$a->strings["Contact has been archived"] = "Kontakt wurde archiviert";
$a->strings["Contact has been unarchived"] = "Kontakt wurde aus dem Archiv geholt";
$a->strings["Contact has been removed."] = "Kontakt wurde entfernt.";
$a->strings["You are mutual friends with %s"] = "Du hast mit %s eine beidseitige Freundschaft";
$a->strings["You are sharing with %s"] = "Du teilst mit %s";
@ -319,8 +320,14 @@ $a->strings["%d contact in common"] = array(
$a->strings["View all contacts"] = "Alle Kontakte anzeigen";
$a->strings["Unblock"] = "Entsperren";
$a->strings["Block"] = "Sperren";
$a->strings["Toggle Blocked status"] = "Geblockt-Sttaus ein-/ausschalten";
$a->strings["Unignore"] = "Ignorieren aufheben";
$a->strings["Toggle Ignored status"] = "Ignoriert-Status ein-/ausschalten";
$a->strings["Unarchive"] = "Unarchivieren";
$a->strings["Archive"] = "Archivieren";
$a->strings["Toggle Archive status"] = "Archiviert-Status ein-/ausschalten";
$a->strings["Repair"] = "Reparieren";
$a->strings["Advanced Contact Settings"] = "Fortgeschrittene Kontakteinstellungen";
$a->strings["Contact Editor"] = "Kontakt Editor";
$a->strings["Profile Visibility"] = "Profil Anzeige";
$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bitte wähle eines deiner Profile das angezeigt werden soll, wenn %s dein Profil aufruft.";
@ -337,13 +344,22 @@ $a->strings["Update public posts"] = "Öffentliche Beiträge aktualisieren";
$a->strings["Update now"] = "Jetzt aktualisieren";
$a->strings["Currently blocked"] = "Derzeit geblockt";
$a->strings["Currently ignored"] = "Derzeit ignoriert";
$a->strings["Currently archived"] = "Momentan archiviert";
$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Antworten/Likes auf deine öffentlichen Beiträge <strong>könnten</strong> weiterhin sichtbar sein";
$a->strings["Suggestions"] = "Kontaktvorschläge";
$a->strings["Suggest potential friends"] = "Freunde vorschlagen";
$a->strings["All Contacts"] = "Alle Kontakte";
$a->strings["Unblocked Contacts"] = "Nicht blockierte Kontakte";
$a->strings["Blocked Contacts"] = "Blockierte Kontakte";
$a->strings["Ignored Contacts"] = "Ignorierte Kontakte";
$a->strings["Hidden Contacts"] = "Verborgene Kontakte";
$a->strings["Show all contacts"] = "Alle Kontakte anzeigen";
$a->strings["Unblocked"] = "Ungeblockt";
$a->strings["Only show unblocked contacts"] = "Nur nicht-blockierte Kontakte anzeigen";
$a->strings["Blocked"] = "Geblockt";
$a->strings["Only show blocked contacts"] = "Nur blockierte Kontakte anzeigen";
$a->strings["Ignored"] = "Ignoriert";
$a->strings["Only show ignored contacts"] = "Nur ignorierte Kontakte anzeigen";
$a->strings["Archived"] = "Archiviert";
$a->strings["Only show archived contacts"] = "Nur archivierte Kontakte anzeigen";
$a->strings["Hidden"] = "Verborgen";
$a->strings["Only show hidden contacts"] = "Nur verborgene Kontakte anzeigen";
$a->strings["Mutual Friendship"] = "Beidseitige Freundschaft";
$a->strings["is a fan of yours"] = "ist ein Fan von dir";
$a->strings["you are a fan of"] = "du bist Fan von";
@ -373,6 +389,7 @@ $a->strings["Connector settings"] = "Connector-Einstellungen";
$a->strings["Plugin settings"] = "Plugin-Einstellungen";
$a->strings["Connected apps"] = "Verbundene Programme";
$a->strings["Export personal data"] = "Persönliche Daten exportieren";
$a->strings["Remove account"] = "Account entfernen";
$a->strings["Settings"] = "Einstellungen";
$a->strings["Missing some important data!"] = "Wichtige Daten fehlen!";
$a->strings["Update"] = "Aktualisierungen";
@ -424,17 +441,17 @@ $a->strings["Display Settings"] = "Anzeige Einstellungen";
$a->strings["Display Theme:"] = "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, welche pro Netzwerkseite angezeigt werden sollen: ";
$a->strings["Number of items to display on the network 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"] = "Normaler Account";
$a->strings["This account is a normal personal profile"] = "Dieser Account ist ein normales persönliches Profil";
$a->strings["Soapbox Account"] = "Sandkasten-Account";
$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Freundschaftsanfragen werden automatisch als Nurlese-Fans akzeptiert";
$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert";
$a->strings["Community/Celebrity Account"] = "Gemeinschafts/Promi-Account";
$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Freundschaftsanfragen werden automatisch als Lese-und-Schreib-Fans akzeptiert";
$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Kontaktanfragen werden automatisch als Lese-und-Schreib-Fans akzeptiert";
$a->strings["Automatic Friend Account"] = "Automatischer Freundesaccount";
$a->strings["Automatically approve all connection/friend requests as friends"] = "Freundschaftsanfragen werden automatisch als Freund akzeptiert";
$a->strings["Automatically approve all connection/friend requests as friends"] = "Kontaktanfragen werden automatisch als Freund akzeptiert";
$a->strings["OpenID:"] = "OpenID:";
$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Optional) Erlaube die Anmeldung für diesen Account mit dieser OpenID.";
$a->strings["Publish your default profile in your local site directory?"] = "Veröffentliche dein Standardprofil im Verzeichnis der lokalen Seite?";
@ -474,15 +491,16 @@ $a->strings["Default Post Permissions"] = "Standard-Zugriffsrechte für Beiträg
$a->strings["(click to open/close)"] = "(klicke zum öffnen/schließen)";
$a->strings["Maximum private messages per day from unknown people:"] = "Maximale Anzahl von privaten Nachrichten, die dir unbekannte Personen pro Tag senden dürfen:";
$a->strings["Notification Settings"] = "Benachrichtigungseinstellungen";
$a->strings["By default post a status message when:"] = "";
$a->strings["accepting a friend request"] = "akzeptieren einer Freundschaftsanfrage";
$a->strings["making an <em>interesting</em> profile change"] = "";
$a->strings["By default post a status message when:"] = "Standardmäßig eine Status-Nachricht posten wenn:";
$a->strings["accepting a friend request"] = " du eine Kontaktanfrage akzeptierst";
$a->strings["joining a forum/community"] = " du einem Forum/einer Gemeinschaftsseite beitrittst";
$a->strings["making an <em>interesting</em> profile change"] = " du eine <em>interessante</em> Änderung an deinem Profil durchführst";
$a->strings["Send a notification email when:"] = "Benachrichtigungs-E-Mail senden wenn:";
$a->strings["You receive an introduction"] = "- du eine Kontaktanfrage erhältst";
$a->strings["Your introductions are confirmed"] = "- eine deiner Kontaktanfragen akzeptiert wurde";
$a->strings["Someone writes on your profile wall"] = "- jemand etwas auf deine Pinnwand schreibt";
$a->strings["Someone writes a followup comment"] = "- jemand auch einen Kommentar verfasst";
$a->strings["You receive a private message"] = "- du eine private Nachricht erhältst";
$a->strings["You receive an introduction"] = " du eine Kontaktanfrage erhältst";
$a->strings["Your introductions are confirmed"] = " eine deiner Kontaktanfragen akzeptiert wurde";
$a->strings["Someone writes on your profile wall"] = " jemand etwas auf deine Pinnwand schreibt";
$a->strings["Someone writes a followup comment"] = " jemand auch einen Kommentar verfasst";
$a->strings["You receive a private message"] = " du eine private Nachricht erhältst";
$a->strings["You receive a friend suggestion"] = "- du eine Empfehlung erhältst";
$a->strings["You are tagged in a post"] = "- du in einem Beitrag erwähnt wurdest";
$a->strings["Advanced Page Settings"] = "Erweiterte Seiten-Einstellungen";
@ -494,10 +512,16 @@ $a->strings["Remove term"] = "Begriff entfernen";
$a->strings["Saved Searches"] = "Gespeicherte Suchen";
$a->strings["add"] = "hinzufügen";
$a->strings["Commented Order"] = "Neueste Kommentare";
$a->strings["Sort by Comment Date"] = "Nach Kommentardatum sortieren";
$a->strings["Posted Order"] = "Neueste Beiträge";
$a->strings["Sort by Post Date"] = "Nach Beitragsdatum sortieren";
$a->strings["Posts that mention or involve you"] = "Beiträge, in denen es um Dich geht";
$a->strings["New"] = "Neue";
$a->strings["Activity Stream - by date"] = "Aktivitäten-Stream - nach Datum";
$a->strings["Starred"] = "Markierte";
$a->strings["Favourite Posts"] = "Favorisierte Beiträge";
$a->strings["Shared Links"] = "Geteilte Links";
$a->strings["Interesting Links"] = "Interessante Links";
$a->strings["Warning: This group contains %s member from an insecure network."] = array(
0 => "Warnung: Diese Gruppe beinhaltet %s Person aus einem unsicheren Netzwerk.",
1 => "Warnung: Diese Gruppe beinhaltet %s Personen aus unsicheren Netzwerken.",
@ -603,6 +627,8 @@ $a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s";
$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s nicht";
$a->strings["Item not found."] = "Beitrag nicht gefunden.";
$a->strings["Access denied."] = "Zugriff verweigert.";
$a->strings["Photos"] = "Bilder";
$a->strings["Files"] = "Dateien";
$a->strings["Account approved."] = "Account freigegeben.";
$a->strings["Registration revoked for %s"] = "Registrierung für %s wurde zurückgezogen";
$a->strings["Please login."] = "Bitte melde dich an.";
@ -657,6 +683,8 @@ $a->strings["Site"] = "Seite";
$a->strings["Users"] = "Nutzer";
$a->strings["Plugins"] = "Plugins";
$a->strings["Themes"] = "Themen";
$a->strings["DB updates"] = "DB Updates";
$a->strings["Software Update"] = "Software Update";
$a->strings["Logs"] = "Protokolle";
$a->strings["User registrations waiting for confirmation"] = "Nutzeranmeldungen die auf Bestätigung warten";
$a->strings["Administration"] = "Administration";
@ -679,7 +707,7 @@ $a->strings["Site name"] = "Seitenname";
$a->strings["Banner/Logo"] = "Banner/Logo";
$a->strings["System language"] = "Systemsprache";
$a->strings["System theme"] = "Systemweites Thema";
$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "";
$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "Vorgabe für das System-Theme - kann von Benutzerprofilen überschrieben werden - <a href='#' id='cnftheme'>Theme-Einstellungen ändern</a>";
$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";
@ -688,7 +716,7 @@ $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 Registrierungs-Seite angezeigt.";
$a->strings["Accounts abandoned after x days"] = "Accounts gelten nach x Tagen als unbenutzt";
$a->strings["Will not waste system resources polling external sites for abandoned accounts. Enter 0 for no time limit."] = "Verschwende keine System-Ressourcen auf das Pollen externer Seiten, wenn Accounts nicht mehr benutzt werden. 0 eingeben für kein Limit.";
$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Verschwende keine System-Ressourcen auf das Pollen externer Seiten, wenn Accounts nicht mehr benutzt werden. 0 eingeben für kein Limit.";
$a->strings["Allowed friend domains"] = "Erlaubte Domains für Kontakte";
$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben.";
$a->strings["Allowed email domains"] = "Erlaubte Domains für Emails";
@ -721,6 +749,20 @@ $a->strings["Proxy user"] = "Proxy Nutzer";
$a->strings["Proxy URL"] = "Proxy URL";
$a->strings["Network timeout"] = "Netzwerk Wartezeit";
$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Der Wert ist in Sekunden. Setze 0 für unbegrenzt (nicht empfohlen).";
$a->strings["Delivery interval"] = "Zustellungsintervall";
$a->strings["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."] = "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.";
$a->strings["Maximum Load Average"] = "Maximum Load Average";
$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "";
$a->strings["Update has been marked successful"] = "Update wurde als erfolgreich markiert";
$a->strings["Executing %s failed. Check system logs."] = "Ausführung von %s schlug fehl. Systemprotokolle prüfen.";
$a->strings["Update %s was successfully applied."] = "Update %s war erfolgreich.";
$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "Update %s hat keinen Status zurückgegeben. Unbekannter Status.";
$a->strings["Update function %s could not be found."] = "Updatefunktion %s konnte nicht gefunden werden.";
$a->strings["No failed updates."] = "Keine fehlgeschlagenen Updates.";
$a->strings["Failed Updates"] = "Fehlgeschlagene Updates";
$a->strings["This does not include updates prior to 1139, which did not return a status."] = "Ohne Updates vor 1139, da diese keinen Status zurückgegeben haben.";
$a->strings["Mark success (if update was manually applied)"] = "Als erfolgreich markieren (falls das Update manuell installiert wurde)";
$a->strings["Attempt to execute this update step automatically"] = "Versuchen, diesen Schritt automatisch auszuführen";
$a->strings["%s user blocked/unblocked"] = array(
0 => "%s Benutzer geblockt/freigegeben",
1 => "%s Benutzer geblockt/freigegeben",
@ -779,7 +821,7 @@ $a->strings["{0} is now friends with %s"] = "{0} ist jetzt mit %s befreundet";
$a->strings["{0} posted"] = "{0} hat etwas veröffentlicht";
$a->strings["{0} tagged %s's post with #%s"] = "{0} hat %ss Beitrag mit dem Schlagwort #%s versehen";
$a->strings["{0} mentioned you in a post"] = "{0} hat dich in einem Beitrag erwähnt";
$a->strings["Contacts who are not members of a group"] = "";
$a->strings["Contacts who are not members of a group"] = "Kontakte, die keiner Gruppe zugewiesen sind";
$a->strings["OpenID protocol error. No ID returned."] = "OpenID Protokollfehler. Keine ID zurückgegeben.";
$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Account wurde nicht gefunden und OpenID Registrierung auf diesem Server nicht gestattet.";
$a->strings["Login failed."] = "Annmeldung fehlgeschlagen.";
@ -794,26 +836,28 @@ $a->strings["Limited profile. This person will be unable to receive direct/perso
$a->strings["Unable to retrieve contact information."] = "Konnte die Kontaktinformationen nicht empfangen.";
$a->strings["following"] = "folgen";
$a->strings["Common Friends"] = "Gemeinsame Freunde";
$a->strings["No friends in common."] = "Keine gemeinsamen Freunde.";
$a->strings["No contacts in common."] = "Keine gemeinsamen Kontakte.";
$a->strings["Item has been removed."] = "Eintrag wurde entfernt.";
$a->strings["Applications"] = "Anwendungen";
$a->strings["No installed applications."] = "Keine Applikationen installiert.";
$a->strings["Search This Site"] = "Diese Seite durchsuchen";
$a->strings["Profile not found."] = "Profil nicht gefunden.";
$a->strings["Profile Name is required."] = "Profilname ist erforderlich.";
$a->strings["Marital Status"] = "";
$a->strings["Romantic Partner"] = "";
$a->strings["Work/Employment"] = "";
$a->strings["Marital Status"] = "Familienstand";
$a->strings["Romantic Partner"] = "Romanze";
$a->strings["Work/Employment"] = "Arbeit / Beschäftigung";
$a->strings["Religion"] = "Religion";
$a->strings["Political Views"] = "Politische Ansichten";
$a->strings["Gender"] = "Geschlecht";
$a->strings["Sexual Preference"] = "Sexuelle Vorlieben";
$a->strings["Homepage"] = "Webseite";
$a->strings["Interests"] = "Interessen";
$a->strings["Location"] = "";
$a->strings["Location"] = "Wohnort";
$a->strings["Profile updated."] = "Profil aktualisiert.";
$a->strings["public profile"] = "";
$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "";
$a->strings[" and "] = " und ";
$a->strings["public profile"] = "öffentliches Profil";
$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s hat %2\$s geändert auf &ldquo;%3\$s&rdquo;";
$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s hat folgendes aktualisiert %2\$s, verändert wurde %3\$s.";
$a->strings["Profile deleted."] = "Profil gelöscht.";
$a->strings["Profile-"] = "Profil-";
$a->strings["New profile created."] = "Neues Profil angelegt.";
@ -892,7 +936,7 @@ $a->strings["%d message sent."] = array(
);
$a->strings["You have no more invitations available"] = "Du hast keine weiteren Einladungen";
$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Besuche %s für eine Liste der öffentlichen Server, denen du beitreten kannst. Friendica Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer Sozialer Netzwerke.";
$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Um diese Freundschaftsanfrage zu akzeptieren, besuche und registriere dich bitte bei %s oder einer anderen öffentlichen Friendica Website.";
$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere dich bitte bei %s oder einer anderen öffentlichen Friendica Website.";
$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen du beitreten kannst.";
$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Es tut uns Leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen.";
$a->strings["Send invitations"] = "Einladungen senden";
@ -919,6 +963,7 @@ $a->strings["The ID provided by your system is a duplicate on our system. It sho
$a->strings["Unable to set your contact credentials on our system."] = "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden.";
$a->strings["Unable to update your contact profile details on our system"] = "Die Updates für dein Profil konnten nicht gespeichert werden";
$a->strings["Connection accepted at %s"] = "Auf %s wurde die Verbindung akzeptiert";
$a->strings["%1\$s has joined %2\$s"] = "%1\$s ist %2\$s beigetreten";
$a->strings["Facebook disabled"] = "Facebook deaktiviert";
$a->strings["Updating contacts"] = "Aktualisiere Kontakte";
$a->strings["Facebook API key is missing."] = "Facebook-API-Schlüssel nicht gefunden";
@ -927,6 +972,8 @@ $a->strings["Install Facebook connector for this account."] = "Facebook-Connecto
$a->strings["Remove Facebook connector"] = "Facebook-Connector entfernen";
$a->strings["Re-authenticate [This is necessary whenever your Facebook password is changed.]"] = "Neu authentifizieren [Das ist immer dann nötig, wenn Du Dein Facebook-Passwort geändert hast.]";
$a->strings["Post to Facebook by default"] = "Veröffentliche standardmäßig bei Facebook";
$a->strings["Facebook friend linking has been disabled on this site. The following settings will have no effect."] = "";
$a->strings["Facebook friend linking has been disabled on this site. If you disable it, you will be unable to re-enable it."] = "";
$a->strings["Link all your Facebook friends and conversations on this website"] = "All meine Facebook-Kontakte und -Konversationen hier auf diese Website importieren";
$a->strings["Facebook conversations consist of your <em>profile wall</em> and your friend <em>stream</em>."] = "Facebook-Konversationen bestehen aus deinen Beiträgen auf deiner<em>Pinnwand</em>, sowie den Beiträgen deiner Freunde <em>Stream</em>.";
$a->strings["On this website, your Facebook friend stream is only visible to you."] = "Hier auf dieser Webseite kannst nur du die Beiträge Deiner Facebook-Freunde (Stream) sehen.";
@ -941,11 +988,12 @@ $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>";
$a->strings["Error: the given API Key seems to be incorrect (the application access token could not be retrieved)."] = "Fehler: der angegebene API Schlüssel scheint nicht korrekt zu sein (Zugriffstoken konnte nicht empfangen werden).";
$a->strings["The given API Key seems to work correctly."] = "Der angegebene API Schlüssel scheint nicht korrekt zu funktionieren.";
$a->strings["The given API Key seems to work correctly."] = "Der angegebene API Schlüssel scheint korrekt zu funktionieren.";
$a->strings["The correctness of the API Key could not be detected. Somthing strange's going on."] = "Die Echtheit des API Schlüssels konnte nicht überprüft werden. Etwas Merkwürdiges ist hier im Gange.";
$a->strings["App-ID / API-Key"] = "App-ID / API-Key";
$a->strings["Application secret"] = "Anwendungs-Geheimnis";
$a->strings["Polling Interval (min. %1\$s minutes)"] = "Abrufintervall (min. %1\$s Minuten)";
$a->strings["Polling Interval in minutes (minimum %1\$s minutes)"] = "Abfrage-Intervall in Minuten (min %1\$s Minuten)";
$a->strings["Synchronize comments (no comments on Facebook are missed, at the cost of increased system load)"] = "Kommentare synchronisieren (Kein Kommentar von Facebook geht verlohren, verursacht höhere Last auf dem Server)";
$a->strings["Real-Time Updates"] = "Echt-Zeit Aktualisierungen";
$a->strings["Real-Time Updates are activated."] = "Echtzeit-Updates sind aktiviert.";
$a->strings["Deactivate Real-Time Updates"] = "Echtzeit-Updates deaktivieren";
@ -959,6 +1007,11 @@ $a->strings["Facebook post failed. Queued for retry."] = "Veröffentlichung bei
$a->strings["Your Facebook connection became invalid. Please Re-authenticate."] = "Deine Facebook Anmeldedaten sind ungültig geworden. Bitte re-authentifiziere dich.";
$a->strings["Facebook connection became invalid"] = "Facebook Anmeldedaten sind ungültig geworden";
$a->strings["Hi %1\$s,\n\nThe connection between your accounts on %2\$s and Facebook became invalid. This usually happens after you change your Facebook-password. To enable the connection again, you have to %3\$sre-authenticate the Facebook-connector%4\$s."] = "Hi %1\$s,\n\ndie Verbindung von deinem Account auf %2\$s und Facebook funktioniert derzeit nicht. Dies ist im Allgemeinen das Ergebnis einer Passwortänderung bei Facebook. Um die Verbindung wieder zu aktivieren musst du %3\$sden Facebook-Connector neu Authentifizieren%4\$s.";
$a->strings["Lifetime of the cache (in hours)"] = "Lebenszeit des Caches (in Stunden)";
$a->strings["Cache Statistics"] = "Cache Statistik";
$a->strings["Number of items"] = "Anzahl der Einträge";
$a->strings["Size of the cache"] = "Größe des Caches";
$a->strings["Delete the whole cache"] = "Cache leeren";
$a->strings["%d person likes this"] = array(
0 => "%d Person mag das",
1 => "%d Leuten mögen das",
@ -967,6 +1020,7 @@ $a->strings["%d person doesn't like this"] = array(
0 => " %d Person mag das nicht",
1 => "%d Leute mögen das nicht",
);
$a->strings["Get added to this list!"] = "Werde Mitglied dieser Liste";
$a->strings["Generate new key"] = "Neuen Schlüssel erstellen";
$a->strings["Widgets key"] = "Widgets Schlüssel";
$a->strings["Widgets available"] = "Verfügbare Widgets";
@ -991,6 +1045,7 @@ $a->strings["Use /expression/ to provide regular expressions"] = "Verwende /expr
$a->strings["NSFW Settings saved."] = "NSFW-Einstellungen gespeichert";
$a->strings["%s - Click to open/close"] = "%s Zum Öffnen/Schließen klicken";
$a->strings["Forums"] = "Foren";
$a->strings["show more"] = "mehr anzeigen";
$a->strings["Planets Settings"] = "Planeten Einstellungen";
$a->strings["Enable Planets Plugin"] = "Aktiviere Planeten Plugin";
$a->strings["Login"] = "Anmeldung";
@ -1056,12 +1111,12 @@ $a->strings["The impressum addon needs to be configured!<br />Please add at leas
$a->strings["The page operators name."] = "Name des Server-Administrators";
$a->strings["Site Owners Profile"] = "Profil des Seitenbetreibers";
$a->strings["Profile address of the operator."] = "Profil-Adresse des Server-Administrators";
$a->strings["How to contact the operator via snail mail."] = "Wie erreicht man den Betreiber der Seite postalisch.";
$a->strings["How to contact the operator via snail mail. You can use BBCode here."] = "Kontaktmöglichkeiten zum Administrator via Schneckenpost. Du kannst BBCode verwenden.";
$a->strings["Notes"] = "Hinweise";
$a->strings["Additional notes that are displayed beneath the contact information."] = "Zusätzliche Angaben, die unterhalb der Kontakt-Informationen angezeigt werden.";
$a->strings["Additional notes that are displayed beneath the contact information. You can use BBCode here."] = "Zusätzliche Informationen die neben den Kontaktmöglichkeiten angezeigt werden. Du kannst BBCode verwenden.";
$a->strings["How to contact the operator via email. (will be displayed obfuscated)"] = "Wie erreichts man den Betreiber per Email. (Adresse wird verschleiert dargestellt)";
$a->strings["Footer note"] = "Fußnote";
$a->strings["Text for the footer."] = "Text für die Fußnote";
$a->strings["Text for the footer. You can use BBCode here."] = "Text für die Fußzeile. Du kannst BBCode verwenden.";
$a->strings["Report Bug"] = "Fehlerreport erstellen";
$a->strings["\"Blockem\" Settings"] = "\"Blockem\"-Einstellungen";
$a->strings["Comma separated profile URLS to block"] = "Profil-URLs, die blockiert werden sollen (durch Kommas getrennt)";
@ -1088,19 +1143,19 @@ $a->strings["The URL for the javascript file that should be included to use Math
$a->strings["Editplain settings updated."] = "Editplain Einstellungen aktualisiert";
$a->strings["Editplain Settings"] = "Editplain Einstellungen";
$a->strings["Disable richtext status editor"] = "RichText Editor deaktivieren";
$a->strings["generic profile image"] = "";
$a->strings["random geometric pattern"] = "";
$a->strings["monster face"] = "";
$a->strings["computer generated face"] = "";
$a->strings["retro arcade style face"] = "";
$a->strings["generic profile image"] = "allgemeines Profilbild";
$a->strings["random geometric pattern"] = "zufällig erzeugtes geometrisches Muster";
$a->strings["monster face"] = "Monstergesicht";
$a->strings["computer generated face"] = "Computergesicht";
$a->strings["retro arcade style face"] = "Retro Arcade Design Gesicht";
$a->strings["Default avatar image"] = "Standard Profilbild ";
$a->strings["Select default avatar image if none was found at Gravatar. See README"] = "";
$a->strings["Rating of images"] = "";
$a->strings["Select the appropriate avatar rating for your site. See README"] = "";
$a->strings["Gravatar settings updated."] = "";
$a->strings["Select default avatar image if none was found at Gravatar. See README"] = "Wähle das Standardgesicht, wenn kein Bild auf Gravatar gefunden wurde. Schaue auch sonst im README nach.";
$a->strings["Rating of images"] = "Bildbewertung";
$a->strings["Select the appropriate avatar rating for your site. See README"] = "Wähle eine angemessene Bildbewertung für Deinen Server. Schaue auch sonst im README nach.";
$a->strings["Gravatar settings updated."] = "Gravatar Einstellungen aktualisiert.";
$a->strings["Your account on %s will expire in a few days."] = "Dein Konto auf %s wird in ein paar Tagen verfallen.";
$a->strings["Your Friendica test account is about to expire."] = "Dein Friendica Test Konto wird bald verfallen.";
$a->strings["Hi %1\$s,\n\nYour test account on %2\$s will expire in less than five days. We hope you enjoyed this test drive and use this opportunity to find a permanent Friendica website for your integrated social communications. A list of public sites is available at http://dir.friendica.com/siteinfo - and for more information on setting up your own Friendica server please see the Friendica project website at http://friendica.com."] = "";
$a->strings["Hi %1\$s,\n\nYour test account on %2\$s will expire in less than five days. We hope you enjoyed this test drive and use this opportunity to find a permanent Friendica website for your integrated social communications. A list of public sites is available at http://dir.friendica.com/siteinfo - and for more information on setting up your own Friendica server please see the Friendica project website at http://friendica.com."] = "Hallo %1\$s,\n\ndein Test-Konto auf %2\$s wird in weniger als fünf Tagen verfallen. Wir hoffen, dass dir dieser Testlauf gefallen hat, so dass du die Gelegenheit nutzt und dir eine feste Friendica-Site für deine integrierte Social-Network-Kommunikation suchst. Eine Liste öffentlicher Sites findest du auf http://dir.friendica.com/siteinfo. Um mehr Information darüber zu bekommen, wie man einen eigenen Friendica-Server aufsetzt, kannst du auch einen Blick auf die Friendica Projektseite werfen: http://friendica.com";
$a->strings["\"pageheader\" Settings"] = "\"pageheader\"-Einstellungen";
$a->strings["pageheader Settings saved."] = "pageheader-Einstellungen gespeichert.";
$a->strings["Post to Insanejournal"] = "Auf InsaneJournal posten.";
@ -1129,7 +1184,7 @@ $a->strings["Cancel Connection Process"] = "Verbindungsprozess abbrechen";
$a->strings["Current StatusNet API is"] = "Derzeitige StatusNet-API-URL lautet";
$a->strings["Cancel StatusNet Connection"] = "Verbindung zum StatusNet Server abbrechen";
$a->strings["Currently connected to: "] = "Momentan verbunden mit: ";
$a->strings["If enabled all your <strong>public</strong> postings can be posted to the associated StatusNet account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry."] = "Wenn aktiviert, so können all deine <strong>öffentlichen</strong> Einträge auf dem verbundenen StatusNet Konto veröffentlicht werden. Du kannst das (hier) als Standardverhalten einstellen oder beim Schreiben eines Beitrags in den Beitragsoptionen festlegen.";
$a->strings["If enabled all your <strong>public</strong> postings can be posted to the associated StatusNet account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry."] = "Wenn aktiviert, können all deine <strong>öffentlichen</strong> Einträge auf dem verbundenen StatusNet-Konto veröffentlicht werden. Du kannst das (hier) als Standardverhalten einstellen oder beim Schreiben eines Beitrags in den Beitragsoptionen festlegen.";
$a->strings["<strong>Note</strong>: Due your privacy settings (<em>Hide your profile details from unknown viewers?</em>) the link potentially included in public postings relayed to StatusNet will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "<strong>Hinweis</strong>: Aufgrund deiner Privatsphären-Einstellungen (<em>Profil-Details vor unbekannten Betrachtern verbergen?</em>) wird der Link, der eventuell an deinen StatusNet Account angehängt wird, um auf den original Artikel zu verweisen, den Betrachter auf eine leere Seite führen, die ihn darüber informiert, dass der Zugriff eingeschränkt wurde.";
$a->strings["Allow posting to StatusNet"] = "Veröffentlichung bei StatusNet erlauben";
$a->strings["Send public postings to StatusNet by default"] = "Veröffentliche öffentliche Beiträge standardmäßig bei StatusNet";
@ -1161,7 +1216,6 @@ $a->strings["\"Show more\" Settings"] = "\"Mehr zeigen\" Einstellungen";
$a->strings["Enable Show More"] = "Aktiviere \"Mehr zeigen\"";
$a->strings["Cutting posts after how much characters"] = "Begrenze Beiträge nach einer bestimmten Anzahl an Buchstaben";
$a->strings["Show More Settings saved."] = "\"Mehr zeigen\" Einstellungen gesichert.";
$a->strings["show more"] = "mehr anzeigen";
$a->strings["This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> analytics tool."] = "Diese Website benutzt <a href='http://www.piwik.org'>Piwik</a>, eine Open Source-Software zur statistischen Auswertung der Besucherzugriffe.";
$a->strings["If you do not want that your visits are logged this way you <a href='%s'>can set a cookie to prevent Piwik from tracking further visits of the site</a> (opt-out)."] = "Wenn Du nicht willst, dass Deine Besuche auf diese Weise gespeichert werden, kannst Du <a href='%s'>ein Cookie setzen</a>. Dann wird Piwik Dich auf dieser Website nicht mehr verfolgen (opt-out).";
$a->strings["Piwik Base URL"] = "Piwik Basis URL";
@ -1176,7 +1230,7 @@ $a->strings["No consumer key pair for Twitter found. Please contact your site ad
$a->strings["At this Friendica instance the Twitter plugin was enabled but you have not yet connected your account to your Twitter account. To do so click the button below to get a PIN from Twitter which you have to copy into the input box below and submit the form. Only your <strong>public</strong> posts will be posted to Twitter."] = "Auf diesem Friendica-Server wurde das Twitter-Plugin aktiviert, aber du hast deinen Account noch nicht mit deinem Twitter-Account verbunden. Klicke dazu auf die Schaltfläche unten. Du erhältst dann eine PIN von Twitter, die du dann in das Eingabefeld unten einfügst. Denk daran, den Senden-Knopf zu drücken! Nur <strong>öffentliche</strong> Beiträge werden bei Twitter veröffentlicht.";
$a->strings["Log in with Twitter"] = "bei Twitter anmelden";
$a->strings["Copy the PIN from Twitter here"] = "Kopiere die Twitter-PIN hier her";
$a->strings["If enabled all your <strong>public</strong> postings can be posted to the associated Twitter account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry."] = "Wenn aktiviert, so können all deine <strong>öffentlichen</strong> Einträge auf dem verbundenen Twitter Konto veröffentlicht werden. Du kannst dies (hier) als Standardverhalten einstellen oder beim Schreiben eines Beitrags in den Beitragsoptionen festlegen.";
$a->strings["If enabled all your <strong>public</strong> postings can be posted to the associated Twitter account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry."] = "Wenn aktiviert, können all deine <strong>öffentlichen</strong> Einträge auf dem verbundenen Twitter-Konto veröffentlicht werden. Du kannst dies (hier) als Standardverhalten einstellen oder beim Schreiben eines Beitrags in den Beitragsoptionen festlegen.";
$a->strings["<strong>Note</strong>: Due your privacy settings (<em>Hide your profile details from unknown viewers?</em>) the link potentially included in public postings relayed to Twitter will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "<strong>Hinweis</strong>: Aufgrund deiner Privatsphären-Einstellungen (<em>Profil-Details vor unbekannten Betrachtern verbergen?</em>) wird der Link, der eventuell an an deinen Twitter Account angehängt wird, um auf den original Artikel zu verweisen, den Betrachter auf eine leere Seite führen, die ihn darüber informiert, dass der Zugriff eingeschränkt wurde.";
$a->strings["Allow posting to Twitter"] = "Veröffentlichung bei Twitter erlauben";
$a->strings["Send public postings to Twitter by default"] = "Veröffentliche öffentliche Beiträge standardmäßig bei Twitter";
@ -1184,24 +1238,38 @@ $a->strings["Send #tag links to Twitter"] = "#Tags nach Twitter senden";
$a->strings["Consumer key"] = "Consumer Key";
$a->strings["Consumer secret"] = "Consumer Secret";
$a->strings["IRC Settings"] = "IRC Einstellungen";
$a->strings["Channel(s) to auto connect (comma separated)"] = "";
$a->strings["Popular Channels (comma separated)"] = "";
$a->strings["Channel(s) to auto connect (comma separated)"] = "mit diesen Kanälen soll man automatisch verbunden werden (Komma getrennt)";
$a->strings["Popular Channels (comma separated)"] = "Beliebte Kanäle (mit Komma getrennt)";
$a->strings["IRC settings saved."] = "IRC Einstellungen gespeichert.";
$a->strings["IRC Chatroom"] = "IRC Chatraum";
$a->strings["Popular Channels"] = "Beliebte Räume";
$a->strings["Post to blogger"] = "";
$a->strings["Blogger Post Settings"] = "";
$a->strings["Enable Blogger Post Plugin"] = "";
$a->strings["Blogger username"] = "";
$a->strings["Blogger password"] = "";
$a->strings["Blogger API URL"] = "";
$a->strings["Post to Blogger by default"] = "";
$a->strings["Post to blogger"] = "Auf Blogger posten";
$a->strings["Blogger Post Settings"] = "Einstellungen zum posten auf Blogger";
$a->strings["Enable Blogger Post Plugin"] = "Blogger-Post-Plugin aktivieren";
$a->strings["Blogger username"] = "Blogger-Benutzername";
$a->strings["Blogger password"] = "Blogger-Passwort";
$a->strings["Blogger API URL"] = "Blogger-API-URL";
$a->strings["Post to Blogger by default"] = "Standardmäßig auf Blogger posten";
$a->strings["Post to Posterous"] = "Nach Posterous senden";
$a->strings["Posterous Post Settings"] = "Posterous Beitrags-Einstellungen";
$a->strings["Enable Posterous Post Plugin"] = "Posterous-Plugin aktivieren";
$a->strings["Posterous login"] = "Posterous-Anmeldename";
$a->strings["Posterous password"] = "Posterous-Passwort";
$a->strings["Post to Posterous by default"] = "Veröffentliche öffentliche Beiträge standardmäßig bei Posterous";
$a->strings["Theme settings"] = "Themen Einstellungen";
$a->strings["Set resize level for images in posts and comments (width and height)"] = "Wähle das Vergrößerungsmaß für Bilder in Beiträgen und Kommentaren (Höhe und Breite)";
$a->strings["Set font-size for posts and comments"] = "Schriftgröße für Beiträge und Kommentare festlegen";
$a->strings["Set theme width"] = "Theme Breite festlegen";
$a->strings["Color scheme"] = "Farbschema";
$a->strings["Your posts and conversations"] = "Deine Beiträge und Unterhaltungen";
$a->strings["Your profile page"] = "Deine Profilseite";
$a->strings["Your contacts"] = "Deine Kontakte";
$a->strings["Your photos"] = "Deine Fotos";
$a->strings["Your events"] = "Deine Ereignisse";
$a->strings["Personal notes"] = "Persönliche Notizen";
$a->strings["Your personal photos"] = "Deine privaten Fotos";
$a->strings["Community Pages"] = "Foren";
$a->strings["Community Profiles"] = "Community-Profile";
$a->strings["Last users"] = "Letzte Nutzer";
$a->strings["Last likes"] = "Zuletzt gemocht";
$a->strings["Last photos"] = "Letzte Fotos";
@ -1209,28 +1277,18 @@ $a->strings["Find Friends"] = "Freunde finden";
$a->strings["Local Directory"] = "Lokales Verzeichnis";
$a->strings["Similar Interests"] = "Ähnliche Interessen";
$a->strings["Invite Friends"] = "Freunde einladen";
$a->strings["Community Pages"] = "Foren";
$a->strings["Earth View"] = "Earth View";
$a->strings["Help or @NewHere ?"] = "Hilfe oder @NewHere";
$a->strings["Connect Services"] = "Verbinde Dienste";
$a->strings["PostIt to Friendica"] = "Bei Friendica posten";
$a->strings["Post to Friendica"] = "Wenn du diesen Link";
$a->strings[" from anywhere by bookmarking this Link."] = " zu deinen Lesezeichen hinzufügst, kannst du von überallher Links bei Friendica veröffentlichen.";
$a->strings["Your posts and conversations"] = "Deine Beiträge und Unterhaltungen";
$a->strings["Your profile page"] = "Deine Profilseite";
$a->strings["Your contacts"] = "Deine Kontakte";
$a->strings["Photos"] = "Bilder";
$a->strings["Your photos"] = "Deine Fotos";
$a->strings["Your events"] = "Deine Ereignisse";
$a->strings["Personal notes"] = "Persönliche Notizen";
$a->strings["Your personal photos"] = "Deine privaten Fotos";
$a->strings["Theme settings"] = "Themen Einstellungen";
$a->strings["Set font-size for posts and comments"] = "";
$a->strings["Set line-height for posts and comments"] = "";
$a->strings["Set resolution for middle column"] = "";
$a->strings["Last Tweets"] = "Neueste Tweets";
$a->strings["Set twitter search term"] = "";
$a->strings["Set line-height for posts and comments"] = "Liniengröße für Beiträge und Kommantare festlegen";
$a->strings["Set resolution for middle column"] = "Auflösung für die Mittelspalte setzen";
$a->strings["Set color scheme"] = "Wähle Farbschema";
$a->strings["Alignment"] = "Ausrichtung";
$a->strings["Left"] = "Links";
$a->strings["Center"] = "Mitte";
$a->strings["Color scheme"] = "Farbschema";
$a->strings["Set colour scheme"] = "Farbschema wählen";
$a->strings["Gender:"] = "Geschlecht:";
$a->strings["j F, Y"] = "j F, Y";
$a->strings["j F"] = "j F";
@ -1299,8 +1357,8 @@ $a->strings["Single"] = "Single";
$a->strings["Lonely"] = "Einsam";
$a->strings["Available"] = "Verfügbar";
$a->strings["Unavailable"] = "Nicht verfügbar";
$a->strings["Has crush"] = "";
$a->strings["Infatuated"] = "";
$a->strings["Has crush"] = "verknallt";
$a->strings["Infatuated"] = "verliebt";
$a->strings["Dating"] = "Dating";
$a->strings["Unfaithful"] = "Untreu";
$a->strings["Sex Addict"] = "Sexbesessen";
@ -1309,10 +1367,10 @@ $a->strings["Friends/Benefits"] = "Freunde/Zuwendungen";
$a->strings["Casual"] = "Casual";
$a->strings["Engaged"] = "Verlobt";
$a->strings["Married"] = "Verheiratet";
$a->strings["Imaginarily married"] = "";
$a->strings["Imaginarily married"] = "imaginär verheiratet";
$a->strings["Partners"] = "Partner";
$a->strings["Cohabiting"] = "zusammenlebend";
$a->strings["Common law"] = "";
$a->strings["Common law"] = "wilde Ehe";
$a->strings["Happy"] = "Glücklich";
$a->strings["Not looking"] = "Nicht auf der Suche";
$a->strings["Swinger"] = "Swinger";
@ -1320,7 +1378,7 @@ $a->strings["Betrayed"] = "Betrogen";
$a->strings["Separated"] = "Getrennt";
$a->strings["Unstable"] = "Unstabil";
$a->strings["Divorced"] = "Geschieden";
$a->strings["Imaginarily divorced"] = "";
$a->strings["Imaginarily divorced"] = "imaginär geschieden";
$a->strings["Widowed"] = "Verwitwet";
$a->strings["Uncertain"] = "Unsicher";
$a->strings["It's complicated"] = "Ist kompliziert";
@ -1360,9 +1418,9 @@ $a->strings["October"] = "Oktober";
$a->strings["November"] = "November";
$a->strings["December"] = "Dezember";
$a->strings["bytes"] = "Byte";
$a->strings["Categories:"] = "Kategorien:";
$a->strings["remove"] = "löschen";
$a->strings["[remove]"] = "[löschen]";
$a->strings["Categories:"] = "Kategorien:";
$a->strings["Filed under:"] = "Abgelegt unter:";
$a->strings["Click to open/close"] = "Zum öffnen/schließen klicken";
$a->strings["default"] = "standard";
@ -1383,7 +1441,7 @@ $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"] = "";
$a->strings["Contacts not in any group"] = "Kontakte in keiner Gruppe";
$a->strings["Logout"] = "Abmelden";
$a->strings["End this session"] = "Diese Sitzung beenden";
$a->strings["Status"] = "Status";
@ -1484,7 +1542,7 @@ $a->strings["tagged you"] = "erwähnte Dich";
$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica Meldung] %s markierte Deinen Beitrag";
$a->strings["%s tagged your post at %s"] = "%s hat deinen Beitrag auf %s getaggt";
$a->strings["%s tagged %s"] = "%s markierte %s";
$a->strings["your post"] = "Deinen Beitrag";
$a->strings["your post"] = "deinen Beitrag";
$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica Meldung] Kontaktanfrage erhalten";
$a->strings["You've received an introduction from '%s' at %s"] = "Du hast eine Kontaktanfrage von '%s' auf %s erhalten";
$a->strings["You've received %s from %s."] = "Du hast %s von %s erhalten.";
@ -1505,11 +1563,12 @@ $a->strings["link"] = "Verweis";
$a->strings["Welcome "] = "Willkommen ";
$a->strings["Please upload a profile photo."] = "Bitte lade ein Profilbild hoch.";
$a->strings["Welcome back "] = "Willkommen zurück ";
$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "";
$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Das Sicherheits-Merkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden).";
$a->strings["stopped following"] = "wird nicht mehr gefolgt";
$a->strings["View Status"] = "Pinnwand anschauen";
$a->strings["View Profile"] = "Profil anschauen";
$a->strings["View Photos"] = "Bilder anschauen";
$a->strings["Network Posts"] = "Netzwerk Beiträge";
$a->strings["Network Posts"] = "Netzwerk-Beiträge";
$a->strings["Edit Contact"] = "Kontakt bearbeiten";
$a->strings["Send PM"] = "Private Nachricht senden";
$a->strings["post/item"] = "Nachricht/Beitrag";
@ -1526,6 +1585,14 @@ $a->strings["like"] = "mag ich";
$a->strings["dislike"] = "mag ich nicht";
$a->strings["Share this"] = "Teile dieses";
$a->strings["share"] = "Teilen";
$a->strings["Bold"] = "Fett";
$a->strings["Italic"] = "Kursiv";
$a->strings["Underline"] = "Unterstrichen";
$a->strings["Quote"] = "Zitat";
$a->strings["Code"] = "Code";
$a->strings["Image"] = "Bild";
$a->strings["Link"] = "Verweis";
$a->strings["Video"] = "Video";
$a->strings["add star"] = "markieren";
$a->strings["remove star"] = "Markierung entfernen";
$a->strings["toggle star status"] = "Markierung umschalten";
@ -1561,6 +1628,8 @@ $a->strings["clear location"] = "Ort löschen";
$a->strings["permissions"] = "Zugriffsrechte";
$a->strings["Delete this item?"] = "Diesen Beitrag löschen?";
$a->strings["show fewer"] = "weniger anzeigen";
$a->strings["Update %s failed. See error logs."] = "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen.";
$a->strings["Update Error at %s"] = "Updatefehler bei %s";
$a->strings["Create a New Account"] = "Neuen Account erstellen";
$a->strings["Nickname or Email address: "] = "Spitzname oder Email-Adresse: ";
$a->strings["Password: "] = "Passwort: ";
@ -1570,9 +1639,13 @@ $a->strings["Edit profile"] = "Profil bearbeiten";
$a->strings["Message"] = "Nachricht";
$a->strings["g A l F d"] = "l, d. F G \\U\\h\\r";
$a->strings["F d"] = "d. F";
$a->strings["[today]"] = "[heute]";
$a->strings["Birthday Reminders"] = "Geburtstagserinnerungen";
$a->strings["Birthdays this week:"] = "Geburtstage diese Woche:";
$a->strings["[today]"] = "[heute]";
$a->strings["[No description]"] = "[keine Beschreibung]";
$a->strings["Event Reminders"] = "Veranstaltungserinnerungen";
$a->strings["Events this week:"] = "Veranstaltungen diese Woche";
$a->strings["[No description]"] = "[keine Beschreibung]";
$a->strings["Status Messages and Posts"] = "Statusnachrichten und Beiträge";
$a->strings["Profile Details"] = "Profildetails";
$a->strings["Events and Calendar"] = "Ereignisse und Kalender";
$a->strings["Only You Can See This"] = "Nur Du Kannst Das Sehen";

View file

@ -1,12 +1,11 @@
Hey,
Ich bin's, $sitename.
Die Friendica-Entwickler haben gerade Update $update freigegeben,
aber als ich es installieren wollte, ist irgendetwas schief gegangen.
Das sollte schnell repariert werden und alleine schaffe ich es nicht.
Wende dich bitte an einen Friendica-Entwickler, wenn du mir nicht selbst helfen kannst.
Meine Datenbank könnte ziemlich durcheinander sein.
Hi,
ich bin $sitename.
Die friendica Entwickler haben jüngst Update $update veröffentlicht,
aber als ich versucht habe es zu installieren ist etwas schrecklich schief gegangen.
Das sollte schnellst möglichst behoben werden und ich kann das nicht alleine machen.
Bitte wende dich an einen friendica Entwickler, falls du mir nicht alleine helfen kannst. Meine Datenbank könnte unbrauchbar sein.
Die Fehlermeldung ist '$error'.
Die Fehlermeldung lautet '$error'.
Tut mir leid,
dein Friendica Server unter $siteurl
Tut mir Leid!
Deine friendica Instanz auf $siteurl

View file

@ -0,0 +1,14 @@
Kara $[myname],
Vi havas novan abonanton ĉe $[sitename] - '$[requestor]'.
Vi povas viziti ilian profilon ĉe $[url].
Bonvolu ensaluti en vian retejon por aprobi au malaprobi/nuligi la peton.
$[siteurl]
Salutoj,
[$sitename] administranto

View file

@ -0,0 +1,22 @@
Kara $[username],
Boegaj novaĵoj.... '$[fn]' ĉe '$[dfrn_url]' aprobis
vian kontaktpeton ĉe '$[sitename]'.
Vi nun estas reciprokaj amikoj kaj povas interŝanĝi afiŝojn, bildojn kaj mesaĝojn
senkatene.
Bonvolu viziti vian 'Kontaktoj' paĝon ĉe $[sitename] se vi volas
ŝangi la rilaton.
$[siteurl]
[Ekzempe, vi eble volas krei disiĝintan profilon kun informoj kiu ne
haveblas al la komuna publiko - kaj rajtigi '$[fn]' al ĝi]'
Salutoj,
$[sitename] administranto

View file

@ -0,0 +1,22 @@
Kara $[username],
'$[fn]' ĉe '$[dfrn_url]' akceptis
vian kontaktpeton ĉe '$[sitename]'.
'$[fn]' elektis vin kiel "admiranto", kio malpermesas
kelkajn komunikilojn - ekzemple privataj mesaĝoj kaj kelkaj profilrilataj
agoj. Se tio estas konto de komunumo aŭ de eminentulo, tiaj agordoj
aŭtomate aktiviĝis.
'$[fn]' eblas konverti la rilaton al ambaŭdirekta rilato
aŭ apliki pli da permesoj.
Vi ekricevos publikajn afiŝojn de '$[fn]',
kiuj aperos sur via 'Reto' paĝo ĉe
$[siteurl]
Salutoj,
$[sitename] administranto

View file

@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: http://bugs.friendica.com/\n"
"POT-Creation-Date: 2012-04-16 10:00-0700\n"
"PO-Revision-Date: 2012-04-18 17:16+0000\n"
"POT-Creation-Date: 2012-05-03 17:20-0700\n"
"PO-Revision-Date: 2012-05-04 09:50+0000\n"
"Last-Translator: Martin Schmitt <mas@scsy.de>\n"
"Language-Team: Esperanto (http://www.transifex.net/projects/p/friendica/language/eo/)\n"
"MIME-Version: 1.0\n"
@ -37,12 +37,12 @@ msgid "Contact update failed."
msgstr "Ĝisdatigo de kontakto malsukcesis."
#: ../../mod/crepair.php:115 ../../mod/wall_attach.php:44
#: ../../mod/fsuggest.php:78 ../../mod/events.php:110 ../../mod/api.php:26
#: ../../mod/api.php:31 ../../mod/photos.php:130 ../../mod/photos.php:866
#: ../../mod/fsuggest.php:78 ../../mod/events.php:138 ../../mod/api.php:26
#: ../../mod/api.php:31 ../../mod/photos.php:130 ../../mod/photos.php:865
#: ../../mod/editpost.php:10 ../../mod/install.php:171
#: ../../mod/notifications.php:66 ../../mod/contacts.php:125
#: ../../mod/settings.php:99 ../../mod/settings.php:514
#: ../../mod/settings.php:519 ../../mod/manage.php:86 ../../mod/network.php:6
#: ../../mod/settings.php:104 ../../mod/settings.php:521
#: ../../mod/settings.php:526 ../../mod/manage.php:86 ../../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
@ -52,13 +52,13 @@ msgstr "Ĝisdatigo de kontakto malsukcesis."
#: ../../mod/profile_photo.php:139 ../../mod/profile_photo.php:150
#: ../../mod/profile_photo.php:163 ../../mod/message.php:38
#: ../../mod/message.php:90 ../../mod/allfriends.php:9
#: ../../mod/nogroup.php:25 ../../mod/wall_upload.php:46
#: ../../mod/nogroup.php:25 ../../mod/wall_upload.php:53
#: ../../mod/follow.php:8 ../../mod/common.php:9 ../../mod/display.php:138
#: ../../mod/profiles.php:7 ../../mod/profiles.php:329
#: ../../mod/profiles.php:7 ../../mod/profiles.php:365
#: ../../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:461 ../../include/items.php:3170
#: ../../index.php:309
#: ../../addon/facebook/facebook.php:485 ../../include/items.php:3187
#: ../../index.php:306
msgid "Permission denied."
msgstr "Malpermesita."
@ -87,8 +87,8 @@ msgstr "Bonvolu klaki 'malantaŭen' en via retesplorilo <strong>nun</strong> se
msgid "Return to contact editor"
msgstr "Reen al kontakta redaktilo"
#: ../../mod/crepair.php:148 ../../mod/settings.php:534
#: ../../mod/settings.php:560 ../../mod/admin.php:544 ../../mod/admin.php:553
#: ../../mod/crepair.php:148 ../../mod/settings.php:541
#: ../../mod/settings.php:567 ../../mod/admin.php:638 ../../mod/admin.php:647
msgid "Name"
msgstr "Nomo"
@ -125,28 +125,29 @@ msgid "New photo from this URL"
msgstr "Nova bildo el tiu adreso"
#: ../../mod/crepair.php:166 ../../mod/fsuggest.php:107
#: ../../mod/events.php:400 ../../mod/photos.php:901 ../../mod/photos.php:959
#: ../../mod/photos.php:1194 ../../mod/photos.php:1234
#: ../../mod/photos.php:1274 ../../mod/photos.php:1305
#: ../../mod/events.php:428 ../../mod/photos.php:900 ../../mod/photos.php:958
#: ../../mod/photos.php:1193 ../../mod/photos.php:1233
#: ../../mod/photos.php:1273 ../../mod/photos.php:1304
#: ../../mod/install.php:251 ../../mod/install.php:289
#: ../../mod/localtime.php:45 ../../mod/contacts.php:325
#: ../../mod/settings.php:532 ../../mod/settings.php:678
#: ../../mod/settings.php:739 ../../mod/settings.php:930
#: ../../mod/manage.php:109 ../../mod/group.php:85 ../../mod/admin.php:374
#: ../../mod/admin.php:541 ../../mod/admin.php:670 ../../mod/admin.php:850
#: ../../mod/admin.php:930 ../../mod/profiles.php:498 ../../mod/invite.php:119
#: ../../addon/facebook/facebook.php:552 ../../addon/yourls/yourls.php:76
#: ../../addon/ljpost/ljpost.php:93 ../../addon/nsfw/nsfw.php:57
#: ../../addon/planets/planets.php:158
#: ../../mod/localtime.php:45 ../../mod/contacts.php:322
#: ../../mod/settings.php:539 ../../mod/settings.php:685
#: ../../mod/settings.php:746 ../../mod/settings.php:940
#: ../../mod/manage.php:109 ../../mod/group.php:85 ../../mod/admin.php:400
#: ../../mod/admin.php:635 ../../mod/admin.php:771 ../../mod/admin.php:970
#: ../../mod/admin.php:1057 ../../mod/profiles.php:534
#: ../../mod/invite.php:119 ../../addon/facebook/facebook.php:575
#: ../../addon/yourls/yourls.php:76 ../../addon/ljpost/ljpost.php:93
#: ../../addon/nsfw/nsfw.php:57 ../../addon/planets/planets.php:158
#: ../../addon/uhremotestorage/uhremotestorage.php:89
#: ../../addon/randplace/randplace.php:177 ../../addon/dwpost/dwpost.php:93
#: ../../addon/drpost/drpost.php:110 ../../addon/geonames/geonames.php:187
#: ../../addon/oembed.old/oembed.php:41 ../../addon/impressum/impressum.php:80
#: ../../addon/oembed.old/oembed.php:41 ../../addon/impressum/impressum.php:82
#: ../../addon/blockem/blockem.php:57 ../../addon/qcomment/qcomment.php:61
#: ../../addon/openstreetmap/openstreetmap.php:70
#: ../../addon/mathjax/mathjax.php:42 ../../addon/editplain/editplain.php:84
#: ../../addon/blackout/blackout.php:94 ../../addon/gravatar/gravatar.php:86
#: ../../addon/pageheader/pageheader.php:55 ../../addon/ijpost/ijpost.php:93
#: ../../addon/jappixmini/jappixmini.php:302
#: ../../addon/statusnet/statusnet.php:278
#: ../../addon/statusnet/statusnet.php:292
#: ../../addon/statusnet/statusnet.php:318
@ -159,11 +160,9 @@ msgstr "Nova bildo el tiu adreso"
#: ../../addon/twitter/twitter.php:209 ../../addon/twitter/twitter.php:375
#: ../../addon/irc/irc.php:55 ../../addon/blogger/blogger.php:102
#: ../../addon/posterous/posterous.php:90
#: ../../view/theme/diabook-red/config.php:64
#: ../../view/theme/diabook-blue/config.php:64
#: ../../view/theme/diabook/config.php:76
#: ../../view/theme/quattro/config.php:52
#: ../../view/theme/diabook-aerith/config.php:64
#: ../../view/theme/cleanzero/config.php:71
#: ../../view/theme/diabook/config.php:91
#: ../../view/theme/quattro/config.php:52 ../../view/theme/dispy/config.php:70
#: ../../include/conversation.php:555
msgid "Submit"
msgstr "Sendi"
@ -176,11 +175,11 @@ msgstr "Helpo:"
msgid "Help"
msgstr "Helpo"
#: ../../mod/help.php:38 ../../index.php:228
#: ../../mod/help.php:38 ../../index.php:225
msgid "Not Found"
msgstr "Ne trovita"
#: ../../mod/help.php:41 ../../index.php:231
#: ../../mod/help.php:41 ../../index.php:228
msgid "Page not found."
msgstr "Paĝo ne trovita"
@ -206,87 +205,84 @@ msgstr "Sugesti amikojn"
msgid "Suggest a friend for %s"
msgstr "Sugesti amikon por %s"
#: ../../mod/events.php:62
#: ../../mod/events.php:65
msgid "Event description and start time are required."
msgstr "Okazo bezonas priskribon kaj startotempon."
#: ../../mod/events.php:230
#: ../../mod/events.php:258
msgid "l, F j"
msgstr "l, F j"
#: ../../mod/events.php:252
#: ../../mod/events.php:280
msgid "Edit event"
msgstr "Redakti okazon"
#: ../../mod/events.php:272 ../../include/text.php:1053
#: ../../mod/events.php:300 ../../include/text.php:1053
msgid "link to source"
msgstr "ligi al fonto"
#: ../../mod/events.php:296 ../../view/theme/diabook-red/theme.php:243
#: ../../view/theme/diabook-blue/theme.php:243
#: ../../view/theme/diabook/theme.php:253
#: ../../view/theme/diabook-aerith/theme.php:244 ../../include/nav.php:52
#: ../../boot.php:1471
#: ../../mod/events.php:324 ../../view/theme/diabook/theme.php:69
#: ../../include/nav.php:52 ../../boot.php:1493
msgid "Events"
msgstr "Okazoj"
#: ../../mod/events.php:297
#: ../../mod/events.php:325
msgid "Create New Event"
msgstr "Krei novan okazon"
#: ../../mod/events.php:298
#: ../../mod/events.php:326
msgid "Previous"
msgstr "antaŭa"
#: ../../mod/events.php:299 ../../mod/install.php:210
#: ../../mod/events.php:327 ../../mod/install.php:210
msgid "Next"
msgstr "sekva"
#: ../../mod/events.php:371
#: ../../mod/events.php:399
msgid "hour:minute"
msgstr "horo:minuto"
#: ../../mod/events.php:380
#: ../../mod/events.php:408
msgid "Event details"
msgstr "Detaloj de okazo"
#: ../../mod/events.php:381
#: ../../mod/events.php:409
#, php-format
msgid "Format is %s %s. Starting date and Description are required."
msgstr "Formato estas %s %s. Startotempo kaj priskribo estas bezonataj"
#: ../../mod/events.php:383
#: ../../mod/events.php:411
msgid "Event Starts:"
msgstr "Okazo startas:"
#: ../../mod/events.php:386
#: ../../mod/events.php:414
msgid "Finish date/time is not known or not relevant"
msgstr "Fina dato/tempo ne estas konata aŭ ne bezonata"
#: ../../mod/events.php:388
#: ../../mod/events.php:416
msgid "Event Finishes:"
msgstr "Okazo finas:"
#: ../../mod/events.php:391
#: ../../mod/events.php:419
msgid "Adjust for viewer timezone"
msgstr "Agordi al horzono de la leganto"
#: ../../mod/events.php:393
#: ../../mod/events.php:421
msgid "Description:"
msgstr "Priskribo"
#: ../../mod/events.php:395 ../../include/event.php:37
#: ../../include/bb2diaspora.php:260 ../../boot.php:1083
#: ../../mod/events.php:423 ../../include/event.php:37
#: ../../include/bb2diaspora.php:260 ../../boot.php:1092
msgid "Location:"
msgstr "Loko:"
#: ../../mod/events.php:397
#: ../../mod/events.php:425
msgid "Share this event"
msgstr "Kunhavigi la okazon"
#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94
#: ../../mod/dfrn_request.php:752 ../../mod/settings.php:533
#: ../../mod/settings.php:559 ../../addon/js_upload/js_upload.php:45
#: ../../mod/dfrn_request.php:818 ../../mod/settings.php:540
#: ../../mod/settings.php:566 ../../addon/js_upload/js_upload.php:45
msgid "Cancel"
msgstr "Nuligi"
@ -329,43 +325,40 @@ msgid ""
" and/or create new posts for you?"
msgstr "Ĉu rajtigi ĉi tiun programon por atingi viajn afiŝojn kaj kontaktojn kaj/aŭ krei novajn afiŝojn?"
#: ../../mod/api.php:105 ../../mod/dfrn_request.php:740
#: ../../mod/settings.php:844 ../../mod/settings.php:850
#: ../../mod/settings.php:858 ../../mod/settings.php:862
#: ../../mod/settings.php:867 ../../mod/settings.php:873
#: ../../mod/settings.php:879 ../../mod/settings.php:885
#: ../../mod/settings.php:921 ../../mod/settings.php:922
#: ../../mod/settings.php:923 ../../mod/settings.php:924
#: ../../mod/register.php:532 ../../mod/profiles.php:475
#: ../../mod/api.php:105 ../../mod/dfrn_request.php:806
#: ../../mod/settings.php:854 ../../mod/settings.php:860
#: ../../mod/settings.php:868 ../../mod/settings.php:872
#: ../../mod/settings.php:877 ../../mod/settings.php:883
#: ../../mod/settings.php:889 ../../mod/settings.php:895
#: ../../mod/settings.php:931 ../../mod/settings.php:932
#: ../../mod/settings.php:933 ../../mod/settings.php:934
#: ../../mod/register.php:532 ../../mod/profiles.php:511
msgid "Yes"
msgstr "Jes"
#: ../../mod/api.php:106 ../../mod/dfrn_request.php:741
#: ../../mod/settings.php:844 ../../mod/settings.php:850
#: ../../mod/settings.php:858 ../../mod/settings.php:862
#: ../../mod/settings.php:867 ../../mod/settings.php:873
#: ../../mod/settings.php:879 ../../mod/settings.php:885
#: ../../mod/settings.php:921 ../../mod/settings.php:922
#: ../../mod/settings.php:923 ../../mod/settings.php:924
#: ../../mod/register.php:533 ../../mod/profiles.php:476
#: ../../mod/api.php:106 ../../mod/dfrn_request.php:807
#: ../../mod/settings.php:854 ../../mod/settings.php:860
#: ../../mod/settings.php:868 ../../mod/settings.php:872
#: ../../mod/settings.php:877 ../../mod/settings.php:883
#: ../../mod/settings.php:889 ../../mod/settings.php:895
#: ../../mod/settings.php:931 ../../mod/settings.php:932
#: ../../mod/settings.php:933 ../../mod/settings.php:934
#: ../../mod/register.php:533 ../../mod/profiles.php:512
msgid "No"
msgstr "Ne"
#: ../../mod/photos.php:43
#: ../../mod/photos.php:43 ../../boot.php:1487
msgid "Photo Albums"
msgstr "Bildalbumoj"
#: ../../mod/photos.php:51 ../../mod/photos.php:151 ../../mod/photos.php:880
#: ../../mod/photos.php:951 ../../mod/photos.php:966 ../../mod/photos.php:1383
#: ../../mod/photos.php:1395 ../../addon/communityhome/communityhome.php:110
#: ../../view/theme/diabook-red/theme.php:113
#: ../../view/theme/diabook-blue/theme.php:113
#: ../../view/theme/diabook/theme.php:119
#: ../../view/theme/diabook-aerith/theme.php:114
#: ../../mod/photos.php:51 ../../mod/photos.php:151 ../../mod/photos.php:879
#: ../../mod/photos.php:950 ../../mod/photos.php:965 ../../mod/photos.php:1382
#: ../../mod/photos.php:1394 ../../addon/communityhome/communityhome.php:110
#: ../../view/theme/diabook/theme.php:436
msgid "Contact Photos"
msgstr "Kontaktbildoj"
#: ../../mod/photos.php:58 ../../mod/photos.php:976 ../../mod/photos.php:1425
#: ../../mod/photos.php:58 ../../mod/photos.php:975 ../../mod/photos.php:1424
msgid "Upload New Photos"
msgstr "Alŝuti novajn bildojn"
@ -377,17 +370,14 @@ msgstr "ĉiuj"
msgid "Contact information unavailable"
msgstr "Kontaktoj informoj ne disponeblas"
#: ../../mod/photos.php:151 ../../mod/photos.php:598 ../../mod/photos.php:951
#: ../../mod/photos.php:966 ../../mod/register.php:335
#: ../../mod/photos.php:151 ../../mod/photos.php:597 ../../mod/photos.php:950
#: ../../mod/photos.php:965 ../../mod/register.php:335
#: ../../mod/register.php:342 ../../mod/register.php:349
#: ../../mod/profile_photo.php:60 ../../mod/profile_photo.php:67
#: ../../mod/profile_photo.php:74 ../../mod/profile_photo.php:174
#: ../../mod/profile_photo.php:252 ../../mod/profile_photo.php:261
#: ../../addon/communityhome/communityhome.php:111
#: ../../view/theme/diabook-red/theme.php:114
#: ../../view/theme/diabook-blue/theme.php:114
#: ../../view/theme/diabook/theme.php:120
#: ../../view/theme/diabook-aerith/theme.php:115
#: ../../view/theme/diabook/theme.php:437
msgid "Profile Photos"
msgstr "Profilbildoj"
@ -395,192 +385,189 @@ msgstr "Profilbildoj"
msgid "Album not found."
msgstr "Albumo ne trovita."
#: ../../mod/photos.php:179 ../../mod/photos.php:960
#: ../../mod/photos.php:179 ../../mod/photos.php:959
msgid "Delete Album"
msgstr "Forviŝi albumon"
#: ../../mod/photos.php:242 ../../mod/photos.php:1195
#: ../../mod/photos.php:242 ../../mod/photos.php:1194
msgid "Delete Photo"
msgstr "Forviŝi bildon"
#: ../../mod/photos.php:529
#: ../../mod/photos.php:528
msgid "was tagged in a"
msgstr "estas markita en"
#: ../../mod/photos.php:529 ../../mod/like.php:127 ../../mod/tagger.php:70
#: ../../mod/photos.php:528 ../../mod/like.php:127 ../../mod/tagger.php:70
#: ../../addon/communityhome/communityhome.php:163
#: ../../view/theme/diabook-red/theme.php:85
#: ../../view/theme/diabook-blue/theme.php:85
#: ../../view/theme/diabook/theme.php:91
#: ../../view/theme/diabook-aerith/theme.php:86 ../../include/text.php:1304
#: ../../view/theme/diabook/theme.php:408 ../../include/text.php:1304
#: ../../include/diaspora.php:1654 ../../include/conversation.php:53
#: ../../include/conversation.php:126
msgid "photo"
msgstr "bildo"
#: ../../mod/photos.php:529
#: ../../mod/photos.php:528
msgid "by"
msgstr "de"
#: ../../mod/photos.php:632 ../../addon/js_upload/js_upload.php:315
#: ../../mod/photos.php:631 ../../addon/js_upload/js_upload.php:315
msgid "Image exceeds size limit of "
msgstr "Bildo estas pli granda ol la limito de"
#: ../../mod/photos.php:640
#: ../../mod/photos.php:639
msgid "Image file is empty."
msgstr "Bilddosiero estas malplena."
#: ../../mod/photos.php:654 ../../mod/profile_photo.php:124
#: ../../mod/wall_upload.php:69
#: ../../mod/photos.php:653 ../../mod/profile_photo.php:124
#: ../../mod/wall_upload.php:83
msgid "Unable to process image."
msgstr "Ne eblas procedi la bildon."
#: ../../mod/photos.php:674 ../../mod/profile_photo.php:257
#: ../../mod/wall_upload.php:88
#: ../../mod/photos.php:673 ../../mod/profile_photo.php:257
#: ../../mod/wall_upload.php:102
msgid "Image upload failed."
msgstr "Alŝuto de bildo malsukcesis."
#: ../../mod/photos.php:760 ../../mod/community.php:16
#: ../../mod/dfrn_request.php:671 ../../mod/viewcontacts.php:17
#: ../../mod/photos.php:759 ../../mod/community.php:16
#: ../../mod/dfrn_request.php:732 ../../mod/viewcontacts.php:17
#: ../../mod/display.php:7 ../../mod/search.php:71 ../../mod/directory.php:29
msgid "Public access denied."
msgstr "Publika atingo ne permesita."
#: ../../mod/photos.php:770
#: ../../mod/photos.php:769
msgid "No photos selected"
msgstr "Neniu bildoj elektita"
#: ../../mod/photos.php:847
#: ../../mod/photos.php:846
msgid "Access to this item is restricted."
msgstr "Atingo al tio elemento estas limigita."
#: ../../mod/photos.php:908
#: ../../mod/photos.php:907
msgid "Upload Photos"
msgstr "Alŝuti bildojn"
#: ../../mod/photos.php:911 ../../mod/photos.php:955
#: ../../mod/photos.php:910 ../../mod/photos.php:954
msgid "New album name: "
msgstr "Nomo por nova albumo:"
#: ../../mod/photos.php:912
#: ../../mod/photos.php:911
msgid "or existing album name: "
msgstr "aŭ nomo de estanta albumo:"
#: ../../mod/photos.php:913
#: ../../mod/photos.php:912
msgid "Do not show a status post for this upload"
msgstr "Ne kreu statan afiŝon por tio alŝuto."
#: ../../mod/photos.php:915 ../../mod/photos.php:1190
#: ../../mod/photos.php:914 ../../mod/photos.php:1189
msgid "Permissions"
msgstr "Permesoj"
#: ../../mod/photos.php:970
#: ../../mod/photos.php:969
msgid "Edit Album"
msgstr "Redakti albumon"
#: ../../mod/photos.php:985 ../../mod/photos.php:1408
#: ../../mod/photos.php:984 ../../mod/photos.php:1407
msgid "View Photo"
msgstr "Vidi bildon"
#: ../../mod/photos.php:1020
#: ../../mod/photos.php:1019
msgid "Permission denied. Access to this item may be restricted."
msgstr "Malpermesita. Atingo al tio elemento eble estas limigita."
#: ../../mod/photos.php:1022
#: ../../mod/photos.php:1021
msgid "Photo not available"
msgstr "La bildo ne disponeblas"
#: ../../mod/photos.php:1072
#: ../../mod/photos.php:1071
msgid "View photo"
msgstr "Vidi bildon"
#: ../../mod/photos.php:1072
#: ../../mod/photos.php:1071
msgid "Edit photo"
msgstr "Redakti bildon"
#: ../../mod/photos.php:1073
#: ../../mod/photos.php:1072
msgid "Use as profile photo"
msgstr "Uzi kiel profilbildo"
#: ../../mod/photos.php:1079 ../../include/conversation.php:480
#: ../../mod/photos.php:1078 ../../include/conversation.php:480
msgid "Private Message"
msgstr "Privata mesaĝo"
#: ../../mod/photos.php:1101
#: ../../mod/photos.php:1100
msgid "View Full Size"
msgstr "Vidi plengrande "
#: ../../mod/photos.php:1169
#: ../../mod/photos.php:1168
msgid "Tags: "
msgstr "Markoj:"
#: ../../mod/photos.php:1172
#: ../../mod/photos.php:1171
msgid "[Remove any tag]"
msgstr "[Forviŝi iun markon]"
#: ../../mod/photos.php:1183
#: ../../mod/photos.php:1182
msgid "New album name"
msgstr "Nova nomo de albumo"
#: ../../mod/photos.php:1186
#: ../../mod/photos.php:1185
msgid "Caption"
msgstr "Apudskribo"
#: ../../mod/photos.php:1188
#: ../../mod/photos.php:1187
msgid "Add a Tag"
msgstr "Aldoni markon"
#: ../../mod/photos.php:1192
#: ../../mod/photos.php:1191
msgid ""
"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
msgstr "Ekzemple: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
#: ../../mod/photos.php:1212 ../../include/conversation.php:529
#: ../../mod/photos.php:1211 ../../include/conversation.php:529
msgid "I like this (toggle)"
msgstr "Mi ŝatas tion (ŝalti)"
#: ../../mod/photos.php:1213 ../../include/conversation.php:530
#: ../../mod/photos.php:1212 ../../include/conversation.php:530
msgid "I don't like this (toggle)"
msgstr "Mi malŝatas tion(ŝalti)"
#: ../../mod/photos.php:1214 ../../include/conversation.php:956
#: ../../mod/photos.php:1213 ../../include/conversation.php:964
msgid "Share"
msgstr "Kunhavigi"
#: ../../mod/photos.php:1215 ../../mod/editpost.php:104
#: ../../mod/photos.php:1214 ../../mod/editpost.php:104
#: ../../mod/wallmessage.php:145 ../../mod/message.php:188
#: ../../mod/message.php:357 ../../include/conversation.php:362
#: ../../include/conversation.php:698 ../../include/conversation.php:975
#: ../../mod/message.php:380 ../../include/conversation.php:361
#: ../../include/conversation.php:706 ../../include/conversation.php:983
msgid "Please wait"
msgstr "Bonvolu atendi"
#: ../../mod/photos.php:1231 ../../mod/photos.php:1271
#: ../../mod/photos.php:1302 ../../include/conversation.php:552
#: ../../mod/photos.php:1230 ../../mod/photos.php:1270
#: ../../mod/photos.php:1301 ../../include/conversation.php:552
msgid "This is you"
msgstr "Tiu estas vi"
#: ../../mod/photos.php:1233 ../../mod/photos.php:1273
#: ../../mod/photos.php:1304 ../../include/conversation.php:554
#: ../../boot.php:495
#: ../../mod/photos.php:1232 ../../mod/photos.php:1272
#: ../../mod/photos.php:1303 ../../include/conversation.php:554
#: ../../boot.php:506
msgid "Comment"
msgstr "Komenti"
#: ../../mod/photos.php:1235 ../../mod/editpost.php:125
#: ../../include/conversation.php:556 ../../include/conversation.php:993
#: ../../mod/photos.php:1234 ../../mod/editpost.php:125
#: ../../include/conversation.php:564 ../../include/conversation.php:1001
msgid "Preview"
msgstr "Antaŭrigardi"
#: ../../mod/photos.php:1332 ../../mod/settings.php:595
#: ../../mod/settings.php:676 ../../mod/group.php:168 ../../mod/admin.php:548
#: ../../include/conversation.php:318 ../../include/conversation.php:576
#: ../../mod/photos.php:1331 ../../mod/settings.php:602
#: ../../mod/settings.php:683 ../../mod/group.php:168 ../../mod/admin.php:642
#: ../../include/conversation.php:318 ../../include/conversation.php:584
msgid "Delete"
msgstr "Forviŝi"
#: ../../mod/photos.php:1414
#: ../../mod/photos.php:1413
msgid "View Album"
msgstr "Vidi albumon"
#: ../../mod/photos.php:1423
#: ../../mod/photos.php:1422
msgid "Recent Photos"
msgstr "̂Ĵusaj bildoj"
@ -588,46 +575,44 @@ msgstr "̂Ĵusaj bildoj"
msgid "Not available."
msgstr "Ne disponebla."
#: ../../mod/community.php:30 ../../view/theme/diabook-red/theme.php:245
#: ../../view/theme/diabook-blue/theme.php:245
#: ../../view/theme/diabook/theme.php:255
#: ../../view/theme/diabook-aerith/theme.php:246 ../../include/nav.php:101
#: ../../mod/community.php:30 ../../view/theme/diabook/theme.php:71
#: ../../include/nav.php:101
msgid "Community"
msgstr "Komunumo"
#: ../../mod/community.php:61 ../../mod/search.php:115
#: ../../mod/community.php:61 ../../mod/search.php:128
msgid "No results."
msgstr "Nenion trovita."
#: ../../mod/friendica.php:47
#: ../../mod/friendica.php:55
msgid "This is Friendica, version"
msgstr "Tio estas Friendica en la versio"
#: ../../mod/friendica.php:48
#: ../../mod/friendica.php:56
msgid "running at web location"
msgstr "instalita ĉe la adreso"
#: ../../mod/friendica.php:50
#: ../../mod/friendica.php:58
msgid ""
"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
"more about the Friendica project."
msgstr "Bonvolu iri al <a href=\"http://friendica.com\">Friendica.com</a> por lerni pli pri la projekto Friendica"
#: ../../mod/friendica.php:52
#: ../../mod/friendica.php:60
msgid "Bug reports and issues: please visit"
msgstr "Cimraportoj kaj atendindaĵo: bonvolu iri al"
#: ../../mod/friendica.php:53
#: ../../mod/friendica.php:61
msgid ""
"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
"dot com"
msgstr "Sugestoj, laŭdoj, donacoj ktp - bonvolu sendi mesĝon al \"Info\" ĉe Friendica - punkto com"
#: ../../mod/friendica.php:58
#: ../../mod/friendica.php:75
msgid "Installed plugins/addons/apps:"
msgstr "Instalitaj kromprogramoj/programoj:"
#: ../../mod/friendica.php:71
#: ../../mod/friendica.php:88
msgid "No installed plugins/addons/apps"
msgstr "Neniom da instalitaj aldonaĵoj/programoj"
@ -639,28 +624,28 @@ msgstr "Elemento ne trovita"
msgid "Edit post"
msgstr "Redakti afiŝon"
#: ../../mod/editpost.php:80 ../../include/conversation.php:942
#: ../../mod/editpost.php:80 ../../include/conversation.php:950
msgid "Post to Email"
msgstr "Sendi tra retpoŝto"
#: ../../mod/editpost.php:95 ../../mod/settings.php:594
#: ../../include/conversation.php:563
#: ../../mod/editpost.php:95 ../../mod/settings.php:601
#: ../../include/conversation.php:571
msgid "Edit"
msgstr "Redakti"
#: ../../mod/editpost.php:96 ../../mod/wallmessage.php:143
#: ../../mod/message.php:186 ../../mod/message.php:355
#: ../../include/conversation.php:957
#: ../../mod/message.php:186 ../../mod/message.php:378
#: ../../include/conversation.php:965
msgid "Upload photo"
msgstr "Alŝuti bildon"
#: ../../mod/editpost.php:97 ../../include/conversation.php:959
#: ../../mod/editpost.php:97 ../../include/conversation.php:967
msgid "Attach file"
msgstr "Kunligi dosieron"
#: ../../mod/editpost.php:98 ../../mod/wallmessage.php:144
#: ../../mod/message.php:187 ../../mod/message.php:356
#: ../../include/conversation.php:961
#: ../../mod/message.php:187 ../../mod/message.php:379
#: ../../include/conversation.php:969
msgid "Insert web link"
msgstr "Enmeti retan adreson"
@ -676,35 +661,35 @@ msgstr "Enmeti videton en formato Vorbis [.ogg]"
msgid "Insert Vorbis [.ogg] audio"
msgstr "Enmeti sonon en formato Vorbis [.ogg]"
#: ../../mod/editpost.php:102 ../../include/conversation.php:967
#: ../../mod/editpost.php:102 ../../include/conversation.php:975
msgid "Set your location"
msgstr "Agordi vian lokon"
#: ../../mod/editpost.php:103 ../../include/conversation.php:969
#: ../../mod/editpost.php:103 ../../include/conversation.php:977
msgid "Clear browser location"
msgstr "Forviŝu retesplorilan lokon"
#: ../../mod/editpost.php:105 ../../include/conversation.php:976
#: ../../mod/editpost.php:105 ../../include/conversation.php:984
msgid "Permission settings"
msgstr "Permesagordoj"
#: ../../mod/editpost.php:113 ../../include/conversation.php:985
#: ../../mod/editpost.php:113 ../../include/conversation.php:993
msgid "CC: email addresses"
msgstr "CC: retpoŝtadresojn"
#: ../../mod/editpost.php:114 ../../include/conversation.php:986
#: ../../mod/editpost.php:114 ../../include/conversation.php:994
msgid "Public post"
msgstr "Publika afiŝo"
#: ../../mod/editpost.php:117 ../../include/conversation.php:972
#: ../../mod/editpost.php:117 ../../include/conversation.php:980
msgid "Set title"
msgstr "Redakti titolon"
#: ../../mod/editpost.php:119 ../../include/conversation.php:974
#: ../../mod/editpost.php:119 ../../include/conversation.php:982
msgid "Categories (comma-separated list)"
msgstr "Kategorioj (disigita per komo)"
#: ../../mod/editpost.php:120 ../../include/conversation.php:988
#: ../../mod/editpost.php:120 ../../include/conversation.php:996
msgid "Example: bob@example.com, mary@example.com"
msgstr "Ekzemple: bob@example.com, mary@example.com"
@ -712,19 +697,19 @@ msgstr "Ekzemple: bob@example.com, mary@example.com"
msgid "This introduction has already been accepted."
msgstr "Tia prezento jam estas akceptita"
#: ../../mod/dfrn_request.php:117 ../../mod/dfrn_request.php:427
#: ../../mod/dfrn_request.php:117 ../../mod/dfrn_request.php:487
msgid "Profile location is not valid or does not contain profile information."
msgstr "La adreso de la profilo ne validas aŭ ne enhavas profilinformojn."
#: ../../mod/dfrn_request.php:122 ../../mod/dfrn_request.php:432
#: ../../mod/dfrn_request.php:122 ../../mod/dfrn_request.php:492
msgid "Warning: profile location has no identifiable owner name."
msgstr "Averto: La adreso de la profilo ne enhavas identeblan personan nomon."
#: ../../mod/dfrn_request.php:124 ../../mod/dfrn_request.php:434
#: ../../mod/dfrn_request.php:124 ../../mod/dfrn_request.php:494
msgid "Warning: profile location has no profile photo."
msgstr "Averto: La adreso de la profilo ne enhavas bildon."
#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:437
#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:497
#, php-format
msgid "%d required parameter was not found at the given location"
msgid_plural "%d required parameters were not found at the given location"
@ -768,128 +753,128 @@ msgstr "Nevalida repoŝtadreso."
msgid "This account has not been configured for email. Request failed."
msgstr "La konto ne estas agordita por retpoŝto. La peto malsukcesis."
#: ../../mod/dfrn_request.php:372
#: ../../mod/dfrn_request.php:432
msgid "Unable to resolve your name at the provided location."
msgstr "Via nomo ne troveblas al la donita adreso."
#: ../../mod/dfrn_request.php:385
#: ../../mod/dfrn_request.php:445
msgid "You have already introduced yourself here."
msgstr "Vi vin jam prezentis tie."
#: ../../mod/dfrn_request.php:389
#: ../../mod/dfrn_request.php:449
#, php-format
msgid "Apparently you are already friends with %s."
msgstr "Ŝajnas kvazaŭ vi jam amikiĝis kun %s."
#: ../../mod/dfrn_request.php:410
#: ../../mod/dfrn_request.php:470
msgid "Invalid profile URL."
msgstr "Nevalida adreso de profilo."
#: ../../mod/dfrn_request.php:416 ../../mod/follow.php:20
#: ../../mod/dfrn_request.php:476 ../../mod/follow.php:20
msgid "Disallowed profile URL."
msgstr "Malpermesita adreso de profilo."
#: ../../mod/dfrn_request.php:485 ../../mod/contacts.php:102
#: ../../mod/dfrn_request.php:545 ../../mod/contacts.php:102
msgid "Failed to update contact record."
msgstr "Ĝisdatigo de via kontaktrikordo malsukcesis."
#: ../../mod/dfrn_request.php:506
#: ../../mod/dfrn_request.php:566
msgid "Your introduction has been sent."
msgstr "Via prezento estas sendita."
#: ../../mod/dfrn_request.php:559
#: ../../mod/dfrn_request.php:619
msgid "Please login to confirm introduction."
msgstr "Bonvolu ensaluti por jesigi la prezenton."
#: ../../mod/dfrn_request.php:573
#: ../../mod/dfrn_request.php:633
msgid ""
"Incorrect identity currently logged in. Please login to "
"<strong>this</strong> profile."
msgstr "Malĝusta identaĵo ensalutata. Bonvolu ensaluti en <strong>tiun</strong> profilon."
#: ../../mod/dfrn_request.php:585
#: ../../mod/dfrn_request.php:645
#, php-format
msgid "Welcome home %s."
msgstr "Bonvenon hejme, %s."
#: ../../mod/dfrn_request.php:586
#: ../../mod/dfrn_request.php:646
#, php-format
msgid "Please confirm your introduction/connection request to %s."
msgstr "Bonvolu konfirmi vian prezenton / kontaktpeton al %s."
#: ../../mod/dfrn_request.php:587
#: ../../mod/dfrn_request.php:647
msgid "Confirm"
msgstr "Konfirmi."
#: ../../mod/dfrn_request.php:628 ../../include/items.php:2690
#: ../../mod/dfrn_request.php:688 ../../include/items.php:2707
msgid "[Name Withheld]"
msgstr "[Kaŝita nomo]"
#: ../../mod/dfrn_request.php:715
#: ../../mod/dfrn_request.php:781
msgid ""
"Please enter your 'Identity Address' from one of the following supported "
"communications networks:"
msgstr "Bonvolu entajpi vian 'Identecan Adreson' de iu de tiuj subtenataj komunikaj retejoj: "
#: ../../mod/dfrn_request.php:731
#: ../../mod/dfrn_request.php:797
msgid "<strike>Connect as an email follower</strike> (Coming soon)"
msgstr "<strike>Konektu kiel retpoŝta sekvanto</strike> (Baldaŭ venos)"
#: ../../mod/dfrn_request.php:733
#: ../../mod/dfrn_request.php:799
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 "Se vi ne estas membro de la libra interkona reto, <a href=\"http://dir.friendica.com/siteinfo\">sekvu ĉi-ligilon por trovi publikan Friendica retejon kaj aliĝi kun ni hodiaŭ</a>."
#: ../../mod/dfrn_request.php:736
#: ../../mod/dfrn_request.php:802
msgid "Friend/Connection Request"
msgstr "Prezento / Konektpeto"
#: ../../mod/dfrn_request.php:737
#: ../../mod/dfrn_request.php:803
msgid ""
"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
"testuser@identi.ca"
msgstr "Ekzemploj: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
#: ../../mod/dfrn_request.php:738
#: ../../mod/dfrn_request.php:804
msgid "Please answer the following:"
msgstr "Bonvolu respondi:"
#: ../../mod/dfrn_request.php:739
#: ../../mod/dfrn_request.php:805
#, php-format
msgid "Does %s know you?"
msgstr "Ĉu %s konas vin?"
#: ../../mod/dfrn_request.php:742
#: ../../mod/dfrn_request.php:808
msgid "Add a personal note:"
msgstr "Aldoni personan noton:"
#: ../../mod/dfrn_request.php:744 ../../include/contact_selectors.php:76
#: ../../mod/dfrn_request.php:810 ../../include/contact_selectors.php:76
msgid "Friendica"
msgstr "Friendica"
#: ../../mod/dfrn_request.php:745
#: ../../mod/dfrn_request.php:811
msgid "StatusNet/Federated Social Web"
msgstr "StatusNet/Federaciaj interkonaj retejoj"
#: ../../mod/dfrn_request.php:746 ../../mod/settings.php:629
#: ../../mod/dfrn_request.php:812 ../../mod/settings.php:636
#: ../../include/contact_selectors.php:80
msgid "Diaspora"
msgstr "Diaspora"
#: ../../mod/dfrn_request.php:747
#: ../../mod/dfrn_request.php:813
#, php-format
msgid ""
" - please do not use this form. Instead, enter %s into your Diaspora search"
" bar."
msgstr " - bonvolu ne uzi ĉi formo. Anstataŭe, entajpu %s en la Diaspora serĉilo."
#: ../../mod/dfrn_request.php:748
#: ../../mod/dfrn_request.php:814
msgid "Your Identity Address:"
msgstr "Via identeca adreso:"
#: ../../mod/dfrn_request.php:751
#: ../../mod/dfrn_request.php:817
msgid "Submit Request"
msgstr "Sendi peton"
@ -1070,8 +1055,8 @@ msgid "mb_string PHP module"
msgstr "PHP modulo mb_string"
#: ../../mod/install.php:383 ../../mod/install.php:385
msgid "Apace mod_rewrite module"
msgstr "Apache modulo mod_rewrite"
msgid "Apache mod_rewrite module"
msgstr "Apache mod_rewrite modulo"
#: ../../mod/install.php:383
msgid ""
@ -1185,7 +1170,7 @@ msgid "is interested in:"
msgstr "interesiĝas pri:"
#: ../../mod/match.php:58 ../../mod/suggest.php:59
#: ../../include/contact_widgets.php:9 ../../boot.php:1027
#: ../../include/contact_widgets.php:9 ../../boot.php:1036
msgid "Connect"
msgstr "Konekti"
@ -1216,8 +1201,8 @@ msgid "Discard"
msgstr "Forviŝi"
#: ../../mod/notifications.php:51 ../../mod/notifications.php:160
#: ../../mod/notifications.php:206 ../../mod/contacts.php:308
#: ../../mod/contacts.php:351
#: ../../mod/notifications.php:206 ../../mod/contacts.php:296
#: ../../mod/contacts.php:348
msgid "Ignore"
msgstr "Ignori"
@ -1229,15 +1214,12 @@ msgstr "Sistemo"
msgid "Network"
msgstr "Reto"
#: ../../mod/notifications.php:85 ../../mod/network.php:182
#: ../../mod/notifications.php:85 ../../mod/network.php:184
msgid "Personal"
msgstr "Propra"
#: ../../mod/notifications.php:90 ../../view/theme/diabook-red/theme.php:239
#: ../../view/theme/diabook-blue/theme.php:239
#: ../../view/theme/diabook/theme.php:249
#: ../../view/theme/diabook-aerith/theme.php:240 ../../include/nav.php:77
#: ../../include/nav.php:115
#: ../../mod/notifications.php:90 ../../view/theme/diabook/theme.php:65
#: ../../include/nav.php:77 ../../include/nav.php:115
msgid "Home"
msgstr "Hejmo"
@ -1272,7 +1254,7 @@ msgid "suggested by %s"
msgstr "sugestita de %s"
#: ../../mod/notifications.php:153 ../../mod/notifications.php:200
#: ../../mod/contacts.php:356
#: ../../mod/contacts.php:354
msgid "Hide this contact from others"
msgstr "Kaŝi ĉi tiun kontakton al aliaj"
@ -1285,7 +1267,7 @@ msgid "if applicable"
msgstr "se aplikebla"
#: ../../mod/notifications.php:157 ../../mod/notifications.php:204
#: ../../mod/admin.php:546
#: ../../mod/admin.php:640
msgid "Approve"
msgstr "Aprobi"
@ -1422,213 +1404,275 @@ msgstr "Kontakto estas ignorita."
msgid "Contact has been unignored"
msgstr "Kontakto estas malignorita."
#: ../../mod/contacts.php:200
msgid "stopped following"
msgstr "ne plu sekvas"
#: ../../mod/contacts.php:195
msgid "Contact has been archived"
msgstr "Enarkivigis kontakton"
#: ../../mod/contacts.php:221
#: ../../mod/contacts.php:195
msgid "Contact has been unarchived"
msgstr "Elarkivigis kontakton"
#: ../../mod/contacts.php:208
msgid "Contact has been removed."
msgstr "Kontakto estas forigita."
#: ../../mod/contacts.php:251
#: ../../mod/contacts.php:238
#, php-format
msgid "You are mutual friends with %s"
msgstr "Vi estas reciproka amiko de %s"
#: ../../mod/contacts.php:255
#: ../../mod/contacts.php:242
#, php-format
msgid "You are sharing with %s"
msgstr "Vi kunhavigas kun %s"
#: ../../mod/contacts.php:260
#: ../../mod/contacts.php:247
#, php-format
msgid "%s is sharing with you"
msgstr "%s kunhavigas kun vi"
#: ../../mod/contacts.php:277
#: ../../mod/contacts.php:264
msgid "Private communications are not available for this contact."
msgstr "Privataj komunikadoj ne disponeblas por ĉi tiu kontakto."
#: ../../mod/contacts.php:280
#: ../../mod/contacts.php:267
msgid "Never"
msgstr "Neniam"
#: ../../mod/contacts.php:284
#: ../../mod/contacts.php:271
msgid "(Update was successful)"
msgstr "(Ĝisdatigo sukcesis.)"
#: ../../mod/contacts.php:284
#: ../../mod/contacts.php:271
msgid "(Update was not successful)"
msgstr "(Ĝisdatigo malsukcesis.)"
#: ../../mod/contacts.php:286
#: ../../mod/contacts.php:273
msgid "Suggest friends"
msgstr "Sugesti amikojn"
#: ../../mod/contacts.php:290
#: ../../mod/contacts.php:277
#, php-format
msgid "Network type: %s"
msgstr "Reta tipo: %s"
#: ../../mod/contacts.php:293
#: ../../mod/contacts.php:280
#, php-format
msgid "%d contact in common"
msgid_plural "%d contacts in common"
msgstr[0] "%d komuna kontakto"
msgstr[1] "%d komunaj kontaktoj"
#: ../../mod/contacts.php:298
#: ../../mod/contacts.php:285
msgid "View all contacts"
msgstr "Vidi ĉiujn kontaktojn"
#: ../../mod/contacts.php:303 ../../mod/contacts.php:350
#: ../../mod/admin.php:550
#: ../../mod/contacts.php:290 ../../mod/contacts.php:347
#: ../../mod/admin.php:644
msgid "Unblock"
msgstr "Malbloki"
#: ../../mod/contacts.php:303 ../../mod/contacts.php:350
#: ../../mod/admin.php:549
#: ../../mod/contacts.php:290 ../../mod/contacts.php:347
#: ../../mod/admin.php:643
msgid "Block"
msgstr "Bloki"
#: ../../mod/contacts.php:308 ../../mod/contacts.php:351
#: ../../mod/contacts.php:293
msgid "Toggle Blocked status"
msgstr "Ŝalti/malŝalti Blokitan staton"
#: ../../mod/contacts.php:296 ../../mod/contacts.php:348
msgid "Unignore"
msgstr "Malignori"
#: ../../mod/contacts.php:313
#: ../../mod/contacts.php:299
msgid "Toggle Ignored status"
msgstr "Ŝalti/malŝalti Ignoritan staton"
#: ../../mod/contacts.php:303
msgid "Unarchive"
msgstr "Elarkivigi"
#: ../../mod/contacts.php:303
msgid "Archive"
msgstr "Enarkivigi"
#: ../../mod/contacts.php:306
msgid "Toggle Archive status"
msgstr "Ŝalti/malŝalti Enarkivigitan staton"
#: ../../mod/contacts.php:309
msgid "Repair"
msgstr "Ripari"
#: ../../mod/contacts.php:323
#: ../../mod/contacts.php:312
msgid "Advanced Contact Settings"
msgstr "Specialaj Kontaktagordoj"
#: ../../mod/contacts.php:320
msgid "Contact Editor"
msgstr "Kontakta redaktilo."
#: ../../mod/contacts.php:326
#: ../../mod/contacts.php:323
msgid "Profile Visibility"
msgstr "Videbleco de profilo"
#: ../../mod/contacts.php:327
#: ../../mod/contacts.php:324
#, php-format
msgid ""
"Please choose the profile you would like to display to %s when viewing your "
"profile securely."
msgstr "Bonvolu elekti la profilon kiu vi volas montri al %s aspektinde kiam sekure aspektante vian profilon."
#: ../../mod/contacts.php:328
#: ../../mod/contacts.php:325
msgid "Contact Information / Notes"
msgstr "Kontaktaj informoj / Notoj"
#: ../../mod/contacts.php:329
#: ../../mod/contacts.php:326
msgid "Edit contact notes"
msgstr "Redakti kontaktnotojn"
#: ../../mod/contacts.php:334 ../../mod/contacts.php:507
#: ../../mod/contacts.php:331 ../../mod/contacts.php:522
#: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40
#, php-format
msgid "Visit %s's profile [%s]"
msgstr "Viziti la profilon de %s [%s]"
#: ../../mod/contacts.php:335
#: ../../mod/contacts.php:332
msgid "Block/Unblock contact"
msgstr "Bloki/Malbloki kontakton"
#: ../../mod/contacts.php:336
#: ../../mod/contacts.php:333
msgid "Ignore contact"
msgstr "Ignori kontakton"
#: ../../mod/contacts.php:337
#: ../../mod/contacts.php:334
msgid "Repair URL settings"
msgstr "Ripari URL agordoj"
#: ../../mod/contacts.php:338
#: ../../mod/contacts.php:335
msgid "View conversations"
msgstr "Vidi konversaciojn"
#: ../../mod/contacts.php:340
#: ../../mod/contacts.php:337
msgid "Delete contact"
msgstr "Forviŝi kontakton"
#: ../../mod/contacts.php:344
#: ../../mod/contacts.php:341
msgid "Last update:"
msgstr "Plej ĵusa ĝisdatigo:"
#: ../../mod/contacts.php:345
#: ../../mod/contacts.php:342
msgid "Update public posts"
msgstr "Ĝisdatigi publikajn afiŝojn"
#: ../../mod/contacts.php:347 ../../mod/admin.php:979
#: ../../mod/contacts.php:344 ../../mod/admin.php:1115
msgid "Update now"
msgstr "Ĝisdatigi nun"
#: ../../mod/contacts.php:354
#: ../../mod/contacts.php:351
msgid "Currently blocked"
msgstr "Nuntempe blokata"
#: ../../mod/contacts.php:355
#: ../../mod/contacts.php:352
msgid "Currently ignored"
msgstr "Nuntempe ignorata"
#: ../../mod/contacts.php:356
#: ../../mod/contacts.php:353
msgid "Currently archived"
msgstr "Nuntempe enarkivigita"
#: ../../mod/contacts.php:354
msgid ""
"Replies/likes to your public posts <strong>may</strong> still be visible"
msgstr "Rispondoj/ŝataĵo al viaj publikaj afiŝoj <strong>eble</strong> plu estos videbla"
#: ../../mod/contacts.php:405
#: ../../mod/contacts.php:407
msgid "Suggestions"
msgstr "Sugestoj"
#: ../../mod/contacts.php:410 ../../mod/group.php:191
#: ../../mod/contacts.php:410
msgid "Suggest potential friends"
msgstr "Sugesti amikojn"
#: ../../mod/contacts.php:413 ../../mod/group.php:191
msgid "All Contacts"
msgstr "Ĉiuj Kontaktoj"
#: ../../mod/contacts.php:415
msgid "Unblocked Contacts"
msgstr "Malblokitaj Kontaktoj"
#: ../../mod/contacts.php:416
msgid "Show all contacts"
msgstr "Montri ĉiujn kontaktojn"
#: ../../mod/contacts.php:421
msgid "Blocked Contacts"
msgstr "Blokitaj Kontaktoj"
#: ../../mod/contacts.php:419
msgid "Unblocked"
msgstr "Malblokita"
#: ../../mod/contacts.php:427
msgid "Ignored Contacts"
msgstr "Ignoritaj Kontaktoj"
#: ../../mod/contacts.php:422
msgid "Only show unblocked contacts"
msgstr "Nur montri neblokitajn kontaktojn"
#: ../../mod/contacts.php:426
msgid "Blocked"
msgstr "Blokita"
#: ../../mod/contacts.php:429
msgid "Only show blocked contacts"
msgstr "Nur montri blokitajn kontaktojn"
#: ../../mod/contacts.php:433
msgid "Hidden Contacts"
msgstr "Kaŝitaj Kontaktoj"
msgid "Ignored"
msgstr "Ignorita"
#: ../../mod/contacts.php:483
#: ../../mod/contacts.php:436
msgid "Only show ignored contacts"
msgstr "Nur montri ignoritajn kontaktojn"
#: ../../mod/contacts.php:440
msgid "Archived"
msgstr "Enarkivigita"
#: ../../mod/contacts.php:443
msgid "Only show archived contacts"
msgstr "Nur montri enarkivigitajn kontaktojn"
#: ../../mod/contacts.php:447
msgid "Hidden"
msgstr "Kaŝita"
#: ../../mod/contacts.php:450
msgid "Only show hidden contacts"
msgstr "Nur montri kaŝitajn kontaktojn"
#: ../../mod/contacts.php:498
msgid "Mutual Friendship"
msgstr "Reciproka amikeco"
#: ../../mod/contacts.php:487
#: ../../mod/contacts.php:502
msgid "is a fan of yours"
msgstr "estas admiranto de vi"
#: ../../mod/contacts.php:491
#: ../../mod/contacts.php:506
msgid "you are a fan of"
msgstr "vi estas admiranto de"
#: ../../mod/contacts.php:508 ../../mod/nogroup.php:41
#: ../../mod/contacts.php:523 ../../mod/nogroup.php:41
msgid "Edit contact"
msgstr "Redakti kontakton"
#: ../../mod/contacts.php:529 ../../view/theme/diabook-red/theme.php:241
#: ../../view/theme/diabook-blue/theme.php:241
#: ../../view/theme/diabook/theme.php:251
#: ../../view/theme/diabook-aerith/theme.php:242 ../../include/nav.php:139
#: ../../mod/contacts.php:544 ../../view/theme/diabook/theme.php:67
#: ../../include/nav.php:139
msgid "Contacts"
msgstr "Kontaktoj"
#: ../../mod/contacts.php:533
#: ../../mod/contacts.php:548
msgid "Search your contacts"
msgstr "Serĉi viajn kontaktojn"
#: ../../mod/contacts.php:534 ../../mod/directory.php:57
#: ../../mod/contacts.php:549 ../../mod/directory.php:57
msgid "Finding: "
msgstr "Trovata:"
#: ../../mod/contacts.php:535 ../../mod/directory.php:59
#: ../../mod/contacts.php:550 ../../mod/directory.php:59
#: ../../include/contact_widgets.php:33
msgid "Find"
msgstr "Trovi"
@ -1648,10 +1692,11 @@ msgstr "Pasvorta riparado petita je %s"
#: ../../mod/lostpass.php:45 ../../mod/lostpass.php:107
#: ../../mod/register.php:388 ../../mod/register.php:442
#: ../../mod/regmod.php:54 ../../mod/dfrn_confirm.php:732
#: ../../addon/facebook/facebook.php:625
#: ../../addon/facebook/facebook.php:1090
#: ../../addon/testdrive/testdrive.php:58 ../../include/items.php:2699
#: ../../mod/regmod.php:54 ../../mod/dfrn_confirm.php:742
#: ../../addon/facebook/facebook.php:658
#: ../../addon/facebook/facebook.php:1148
#: ../../addon/testdrive/testdrive.php:58 ../../include/items.php:2716
#: ../../boot.php:686
msgid "Administrator"
msgstr "Administranto"
@ -1661,7 +1706,7 @@ msgid ""
"Password reset failed."
msgstr "Ne povis konfirmi la peton. (Eble vi sendis ĝin antaŭ.) Pasvorta riparado malsukcesis."
#: ../../mod/lostpass.php:83 ../../boot.php:809
#: ../../mod/lostpass.php:83 ../../boot.php:818
msgid "Password Reset"
msgstr "Pasvorta riparado"
@ -1707,19 +1752,19 @@ msgstr "Repari"
#: ../../mod/settings.php:49 ../../include/nav.php:137
msgid "Account settings"
msgstr "Kontoagordoj"
msgstr "Konto"
#: ../../mod/settings.php:54
msgid "Display settings"
msgstr "Ekranagordoj"
msgstr "Ekrano"
#: ../../mod/settings.php:60
msgid "Connector settings"
msgstr "Konektiloagordoj"
msgstr "Konektiloj"
#: ../../mod/settings.php:65
msgid "Plugin settings"
msgstr "Agordoj pri kromprogramoj"
msgstr "Kromprogramoj"
#: ../../mod/settings.php:70
msgid "Connected apps"
@ -1727,470 +1772,477 @@ msgstr "Konektitaj programoj"
#: ../../mod/settings.php:75
msgid "Export personal data"
msgstr "Eksporti personan datumaron"
msgstr "Eksporto"
#: ../../mod/settings.php:83 ../../mod/admin.php:631 ../../mod/admin.php:817
#: ../../mod/settings.php:80
msgid "Remove account"
msgstr "Forigi konton"
#: ../../mod/settings.php:88 ../../mod/admin.php:730 ../../mod/admin.php:935
#: ../../addon/mathjax/mathjax.php:36 ../../include/nav.php:137
msgid "Settings"
msgstr "Agordoj"
#: ../../mod/settings.php:126
#: ../../mod/settings.php:131
msgid "Missing some important data!"
msgstr "Mankas importantaj datumoj!"
#: ../../mod/settings.php:129 ../../mod/settings.php:558
#: ../../mod/admin.php:89
#: ../../mod/settings.php:134 ../../mod/settings.php:565
msgid "Update"
msgstr "Ĝisdatigi"
#: ../../mod/settings.php:234
#: ../../mod/settings.php:239
msgid "Failed to connect with email account using the settings provided."
msgstr "Ne sukcesis konekti al retpoŝtkonto kun la provizitaj agordoj."
#: ../../mod/settings.php:239
#: ../../mod/settings.php:244
msgid "Email settings updated."
msgstr "Retpoŝtagordoj ĝisdatigita"
#: ../../mod/settings.php:298
#: ../../mod/settings.php:303
msgid "Passwords do not match. Password unchanged."
msgstr "La pasvortoj ne estas egala. Pasvorto ne ŝanĝita."
#: ../../mod/settings.php:303
#: ../../mod/settings.php:308
msgid "Empty passwords are not allowed. Password unchanged."
msgstr "Malplenaj pasvortoj ne estas permesita. Pasvorto ne ŝanĝita."
#: ../../mod/settings.php:314
#: ../../mod/settings.php:319
msgid "Password changed."
msgstr "Pasvorto ŝanĝita."
#: ../../mod/settings.php:316
#: ../../mod/settings.php:321
msgid "Password update failed. Please try again."
msgstr "Ĝisdatigo de pasvorto malsukcesis. Bonvolu provi refoje."
#: ../../mod/settings.php:379
#: ../../mod/settings.php:385
msgid " Please use a shorter name."
msgstr " Bonvolu uzi pli mallongan nomon."
#: ../../mod/settings.php:381
#: ../../mod/settings.php:387
msgid " Name too short."
msgstr " Nomo estas tro mallonga."
#: ../../mod/settings.php:387
#: ../../mod/settings.php:393
msgid " Not valid email."
msgstr " Repoŝtadreso ne validas."
#: ../../mod/settings.php:389
#: ../../mod/settings.php:395
msgid " Cannot change to that email."
msgstr " Ne povas ŝanĝi al tio retpoŝtadreso."
#: ../../mod/settings.php:461 ../../addon/facebook/facebook.php:450
#: ../../addon/impressum/impressum.php:75
#: ../../mod/settings.php:468 ../../addon/facebook/facebook.php:470
#: ../../addon/impressum/impressum.php:77
#: ../../addon/openstreetmap/openstreetmap.php:80
#: ../../addon/mathjax/mathjax.php:64 ../../addon/piwik/piwik.php:105
#: ../../addon/mathjax/mathjax.php:66 ../../addon/piwik/piwik.php:105
#: ../../addon/twitter/twitter.php:370
msgid "Settings updated."
msgstr "Agordoj ĝisdatigita."
#: ../../mod/settings.php:531 ../../mod/settings.php:557
#: ../../mod/settings.php:593
#: ../../mod/settings.php:538 ../../mod/settings.php:564
#: ../../mod/settings.php:600
msgid "Add application"
msgstr "Aldoni programon"
#: ../../mod/settings.php:535 ../../mod/settings.php:561
#: ../../mod/settings.php:542 ../../mod/settings.php:568
#: ../../addon/statusnet/statusnet.php:547
msgid "Consumer Key"
msgstr "Ŝlosilo de kliento"
#: ../../mod/settings.php:536 ../../mod/settings.php:562
#: ../../mod/settings.php:543 ../../mod/settings.php:569
#: ../../addon/statusnet/statusnet.php:546
msgid "Consumer Secret"
msgstr "Sekreto de kliento"
#: ../../mod/settings.php:537 ../../mod/settings.php:563
#: ../../mod/settings.php:544 ../../mod/settings.php:570
msgid "Redirect"
msgstr "Alidirekto"
#: ../../mod/settings.php:538 ../../mod/settings.php:564
#: ../../mod/settings.php:545 ../../mod/settings.php:571
msgid "Icon url"
msgstr "Piktograma adreso"
#: ../../mod/settings.php:549
#: ../../mod/settings.php:556
msgid "You can't edit this application."
msgstr "Ĉi tio programo ne estas redaktebla."
#: ../../mod/settings.php:592
#: ../../mod/settings.php:599
msgid "Connected Apps"
msgstr "Konektitaj Programoj"
#: ../../mod/settings.php:596
#: ../../mod/settings.php:603
msgid "Client key starts with"
msgstr "Ŝlosilo de kliento komencas kun"
#: ../../mod/settings.php:597
#: ../../mod/settings.php:604
msgid "No name"
msgstr "Neniu nomo"
#: ../../mod/settings.php:598
#: ../../mod/settings.php:605
msgid "Remove authorization"
msgstr "Forviŝi rajtigon"
#: ../../mod/settings.php:609
#: ../../mod/settings.php:616
msgid "No Plugin settings configured"
msgstr "Neniom da kromprogramoagordoj farita"
#: ../../mod/settings.php:617 ../../addon/widgets/widgets.php:123
#: ../../mod/settings.php:624 ../../addon/widgets/widgets.php:123
msgid "Plugin Settings"
msgstr "Kromprogramoagordoj"
#: ../../mod/settings.php:629 ../../mod/settings.php:630
#: ../../mod/settings.php:636 ../../mod/settings.php:637
#, php-format
msgid "Built-in support for %s connectivity is %s"
msgstr "Integrita subteno por %s koneto estas %s"
#: ../../mod/settings.php:629 ../../mod/settings.php:630
#: ../../mod/settings.php:636 ../../mod/settings.php:637
msgid "enabled"
msgstr "ŝaltita"
#: ../../mod/settings.php:629 ../../mod/settings.php:630
#: ../../mod/settings.php:636 ../../mod/settings.php:637
msgid "disabled"
msgstr "malŝaltita"
#: ../../mod/settings.php:630
#: ../../mod/settings.php:637
msgid "StatusNet"
msgstr "StatusNet"
#: ../../mod/settings.php:660
#: ../../mod/settings.php:667
msgid "Connector Settings"
msgstr "Konektiloagordoj"
#: ../../mod/settings.php:665
#: ../../mod/settings.php:672
msgid "Email/Mailbox Setup"
msgstr "Agordoj pri Retpoŝto"
#: ../../mod/settings.php:666
#: ../../mod/settings.php:673
msgid ""
"If you wish to communicate with email contacts using this service "
"(optional), please specify how to connect to your mailbox."
msgstr "Se vi volas uzi ĉi tiun servon por komuniki tra retpoŝto (nedeviga), bonvolu specifi kiel konekti al vian retpoŝtkonton."
#: ../../mod/settings.php:667
#: ../../mod/settings.php:674
msgid "Last successful email check:"
msgstr "Plej ĵusa sukcesa kontrolo de poŝto:"
#: ../../mod/settings.php:668
#: ../../mod/settings.php:675
msgid "Email access is disabled on this site."
msgstr "Retpoŝta atingo ne disponeblas ĉi tie."
#: ../../mod/settings.php:669
#: ../../mod/settings.php:676
msgid "IMAP server name:"
msgstr "Nomo de IMAP servilo:"
#: ../../mod/settings.php:670
#: ../../mod/settings.php:677
msgid "IMAP port:"
msgstr "Numero de IMAP pordo:"
#: ../../mod/settings.php:671
#: ../../mod/settings.php:678
msgid "Security:"
msgstr "Sekureco:"
#: ../../mod/settings.php:671 ../../mod/settings.php:676
#: ../../mod/settings.php:678 ../../mod/settings.php:683
msgid "None"
msgstr "Nenio"
#: ../../mod/settings.php:672
#: ../../mod/settings.php:679
msgid "Email login name:"
msgstr "Retpoŝta salutnomo:"
#: ../../mod/settings.php:673
#: ../../mod/settings.php:680
msgid "Email password:"
msgstr "Retpoŝta pasvorto:"
#: ../../mod/settings.php:674
#: ../../mod/settings.php:681
msgid "Reply-to address:"
msgstr "Responda adreso (Reply-to):"
#: ../../mod/settings.php:675
#: ../../mod/settings.php:682
msgid "Send public posts to all email contacts:"
msgstr "Sendu publikajn afiŝojn al ĉiuj retpoŝtkontaktoj:"
#: ../../mod/settings.php:676
#: ../../mod/settings.php:683
msgid "Action after import:"
msgstr "Ago post la importado:"
#: ../../mod/settings.php:676
#: ../../mod/settings.php:683
msgid "Mark as seen"
msgstr "Marki kiel legita"
#: ../../mod/settings.php:676
#: ../../mod/settings.php:683
msgid "Move to folder"
msgstr "Movi al dosierujo"
#: ../../mod/settings.php:677
#: ../../mod/settings.php:684
msgid "Move to folder:"
msgstr "Movi al dosierujo:"
#: ../../mod/settings.php:737
#: ../../mod/settings.php:744
msgid "Display Settings"
msgstr "Ekranagordoj"
#: ../../mod/settings.php:743
#: ../../mod/settings.php:750
msgid "Display Theme:"
msgstr "Vidiga etoso:"
#: ../../mod/settings.php:744
#: ../../mod/settings.php:751
msgid "Update browser every xx seconds"
msgstr "Ĝisdatigu retesplorilon ĉiu xxx sekundoj"
#: ../../mod/settings.php:744
#: ../../mod/settings.php:751
msgid "Minimum of 10 seconds, no maximum"
msgstr "Minimume 10 sekundoj, sen maksimumo"
#: ../../mod/settings.php:745
#: ../../mod/settings.php:752
msgid "Number of items to display on the network page:"
msgstr "Kvanto da elementoj kiuj estos montrata ĉe la reto paĝo."
#: ../../mod/settings.php:745
#: ../../mod/settings.php:752
msgid "Maximum of 100 items"
msgstr "Maksimume 100 eroj"
#: ../../mod/settings.php:746
#: ../../mod/settings.php:753
msgid "Don't show emoticons"
msgstr "Ne montru ridetulojn."
msgstr "Ne montru ridetulojn"
#: ../../mod/settings.php:811 ../../mod/admin.php:162 ../../mod/admin.php:522
#: ../../mod/settings.php:821 ../../mod/admin.php:180 ../../mod/admin.php:616
msgid "Normal Account"
msgstr "Normala konto"
#: ../../mod/settings.php:812
#: ../../mod/settings.php:822
msgid "This account is a normal personal profile"
msgstr "Tiu konto estas normala persona profilo"
#: ../../mod/settings.php:815 ../../mod/admin.php:163 ../../mod/admin.php:523
#: ../../mod/settings.php:825 ../../mod/admin.php:181 ../../mod/admin.php:617
msgid "Soapbox Account"
msgstr "Konto ĉe Soapbox"
msgstr "Soapbox Konto"
#: ../../mod/settings.php:816
#: ../../mod/settings.php:826
msgid "Automatically approve all connection/friend requests as read-only fans"
msgstr "Aŭtomate konfirmi ĉiujn kontaktpetojn kiel nurlegaj admirantoj"
#: ../../mod/settings.php:819 ../../mod/admin.php:164 ../../mod/admin.php:524
#: ../../mod/settings.php:829 ../../mod/admin.php:182 ../../mod/admin.php:618
msgid "Community/Celebrity Account"
msgstr "Komunuma/eminentula Konto"
#: ../../mod/settings.php:820
#: ../../mod/settings.php:830
msgid ""
"Automatically approve all connection/friend requests as read-write fans"
msgstr "Aŭtomate konfirmi ĉiujn kontaktpetojn kiel admirantoj kapable legi kaj skribi"
#: ../../mod/settings.php:823 ../../mod/admin.php:165 ../../mod/admin.php:525
#: ../../mod/settings.php:833 ../../mod/admin.php:183 ../../mod/admin.php:619
msgid "Automatic Friend Account"
msgstr "Aŭtomata Amika Konto"
#: ../../mod/settings.php:824
#: ../../mod/settings.php:834
msgid "Automatically approve all connection/friend requests as friends"
msgstr "Aŭtomate konfirmi ĉiujn kontaktpetojn kiel amikoj"
#: ../../mod/settings.php:834
#: ../../mod/settings.php:844
msgid "OpenID:"
msgstr "OpenID:"
#: ../../mod/settings.php:834
#: ../../mod/settings.php:844
msgid "(Optional) Allow this OpenID to login to this account."
msgstr "(Nedeviga) Permesi atingon al la konton al ĉi tio OpenID."
#: ../../mod/settings.php:844
#: ../../mod/settings.php:854
msgid "Publish your default profile in your local site directory?"
msgstr "Publikigi vian defaŭltan profilon en la loka reteja katalogo?"
#: ../../mod/settings.php:850
#: ../../mod/settings.php:860
msgid "Publish your default profile in the global social directory?"
msgstr "Publikigi vian defaŭltan profilon en la tutmonda interkona katalogo?"
#: ../../mod/settings.php:858
#: ../../mod/settings.php:868
msgid "Hide your contact/friend list from viewers of your default profile?"
msgstr "Kaŝi vian liston de kontaktoj/amiko al spektantoj de via defaŭlta profilo?"
#: ../../mod/settings.php:862
#: ../../mod/settings.php:872
msgid "Hide your profile details from unknown viewers?"
msgstr "Kaŝi viajn profilajn detalojn al nekonataj spektantoj?"
#: ../../mod/settings.php:867
#: ../../mod/settings.php:877
msgid "Allow friends to post to your profile page?"
msgstr "Ĉu amikoj povu afiŝi al via profilo?"
#: ../../mod/settings.php:873
#: ../../mod/settings.php:883
msgid "Allow friends to tag your posts?"
msgstr "Ĉu amikoj povu aldoni markojn al viaj afiŝoj?"
#: ../../mod/settings.php:879
#: ../../mod/settings.php:889
msgid "Allow us to suggest you as a potential friend to new members?"
msgstr "Ĉu ni povu sugesti vin kiel amiko al novaj membroj?"
#: ../../mod/settings.php:885
#: ../../mod/settings.php:895
msgid "Permit unknown people to send you private mail?"
msgstr "Permesigi nekonatulojn sendi retpoŝton al vi?"
#: ../../mod/settings.php:896
#: ../../mod/settings.php:906
msgid "Profile is <strong>not published</strong>."
msgstr "Profilo <strong>ne estas publika</strong>."
#: ../../mod/settings.php:902 ../../mod/profile_photo.php:211
#: ../../mod/settings.php:912 ../../mod/profile_photo.php:211
msgid "or"
msgstr "aŭ"
#: ../../mod/settings.php:907
#: ../../mod/settings.php:917
msgid "Your Identity Address is"
msgstr "Via identeco adreso estas"
msgstr "Via identeca adreso estas"
#: ../../mod/settings.php:918
#: ../../mod/settings.php:928
msgid "Automatically expire posts after this many days:"
msgstr "Automatike senvalidigi afiŝojn post tiom da tagoj:"
#: ../../mod/settings.php:918
#: ../../mod/settings.php:928
msgid "If empty, posts will not expire. Expired posts will be deleted"
msgstr "Se malplena, afiŝoj neniam senvalidiĝos. Senvalidigitajn afiŝon estos forviŝata"
#: ../../mod/settings.php:919
#: ../../mod/settings.php:929
msgid "Advanced expiration settings"
msgstr "Detalaj agordoj rilate al senvalidiĝo"
#: ../../mod/settings.php:920
#: ../../mod/settings.php:930
msgid "Advanced Expiration"
msgstr "Detala senvalidiĝo"
#: ../../mod/settings.php:921
#: ../../mod/settings.php:931
msgid "Expire posts:"
msgstr "Senvalidigi afiŝojn:"
#: ../../mod/settings.php:922
#: ../../mod/settings.php:932
msgid "Expire personal notes:"
msgstr "Senvalidigi personajn notojn:"
#: ../../mod/settings.php:923
#: ../../mod/settings.php:933
msgid "Expire starred posts:"
msgstr "Senvalidigi steligitajn afiŝojn:"
#: ../../mod/settings.php:924
#: ../../mod/settings.php:934
msgid "Expire photos:"
msgstr "Senvalidigi bildojn:"
#: ../../mod/settings.php:928
#: ../../mod/settings.php:938
msgid "Account Settings"
msgstr "Kontoagordoj"
#: ../../mod/settings.php:937
#: ../../mod/settings.php:947
msgid "Password Settings"
msgstr "Agordoj pri Pasvorto"
#: ../../mod/settings.php:938
#: ../../mod/settings.php:948
msgid "New Password:"
msgstr "Nova pasvorto:"
#: ../../mod/settings.php:939
#: ../../mod/settings.php:949
msgid "Confirm:"
msgstr "Konfirmi:"
#: ../../mod/settings.php:939
#: ../../mod/settings.php:949
msgid "Leave password fields blank unless changing"
msgstr "Lasu pasvortkampojn malplenaj se vi ne ŝanĝas la pasvorton."
#: ../../mod/settings.php:943
#: ../../mod/settings.php:953
msgid "Basic Settings"
msgstr "Bazaj Agordoj"
#: ../../mod/settings.php:944 ../../include/profile_advanced.php:15
#: ../../mod/settings.php:954 ../../include/profile_advanced.php:15
msgid "Full Name:"
msgstr "Plena Nomo:"
#: ../../mod/settings.php:945
#: ../../mod/settings.php:955
msgid "Email Address:"
msgstr "Retpoŝtadreso:"
#: ../../mod/settings.php:946
#: ../../mod/settings.php:956
msgid "Your Timezone:"
msgstr "Via Horzono:"
#: ../../mod/settings.php:947
#: ../../mod/settings.php:957
msgid "Default Post Location:"
msgstr "Defaŭlta Loko por Afiŝoj:"
#: ../../mod/settings.php:948
#: ../../mod/settings.php:958
msgid "Use Browser Location:"
msgstr "Uzu Lokon laŭ Retesplorilo:"
#: ../../mod/settings.php:951
#: ../../mod/settings.php:961
msgid "Security and Privacy Settings"
msgstr "Agordoj pri Sekureco kaj Privateco"
#: ../../mod/settings.php:953
#: ../../mod/settings.php:963
msgid "Maximum Friend Requests/Day:"
msgstr "Taga maksimumo da kontaktpetoj:"
#: ../../mod/settings.php:953 ../../mod/settings.php:968
#: ../../mod/settings.php:963 ../../mod/settings.php:978
msgid "(to prevent spam abuse)"
msgstr "(por malhelpi spamaĵojn)"
#: ../../mod/settings.php:954
#: ../../mod/settings.php:964
msgid "Default Post Permissions"
msgstr "Defaŭltaj permesoj por afiŝoj"
#: ../../mod/settings.php:955
#: ../../mod/settings.php:965
msgid "(click to open/close)"
msgstr "(klaku por malfermi/fermi)"
#: ../../mod/settings.php:968
#: ../../mod/settings.php:978
msgid "Maximum private messages per day from unknown people:"
msgstr "Taga maksimumo da privataj mesaĝoj."
#: ../../mod/settings.php:971
#: ../../mod/settings.php:981
msgid "Notification Settings"
msgstr "Agordoj pri Atentigoj"
#: ../../mod/settings.php:972
#: ../../mod/settings.php:982
msgid "By default post a status message when:"
msgstr "Defaŭlte afiŝi statmesaĝon okaze de:"
#: ../../mod/settings.php:973
#: ../../mod/settings.php:983
msgid "accepting a friend request"
msgstr "akcepti kontaktpeton"
#: ../../mod/settings.php:974
#: ../../mod/settings.php:984
msgid "joining a forum/community"
msgstr "aliĝi forumon/komunumon"
#: ../../mod/settings.php:985
msgid "making an <em>interesting</em> profile change"
msgstr "fari <em>interesan</em> profilŝanĝon"
#: ../../mod/settings.php:975
#: ../../mod/settings.php:986
msgid "Send a notification email when:"
msgstr "Sendu atentiga repoŝton se:"
#: ../../mod/settings.php:976
#: ../../mod/settings.php:987
msgid "You receive an introduction"
msgstr "Vi ricevas inviton"
#: ../../mod/settings.php:977
#: ../../mod/settings.php:988
msgid "Your introductions are confirmed"
msgstr "Viaj prezentoj estas konfirmata."
#: ../../mod/settings.php:978
#: ../../mod/settings.php:989
msgid "Someone writes on your profile wall"
msgstr "Iu skribas je via profila muro."
#: ../../mod/settings.php:979
#: ../../mod/settings.php:990
msgid "Someone writes a followup comment"
msgstr "Iu skribas sekvan komenton"
#: ../../mod/settings.php:980
#: ../../mod/settings.php:991
msgid "You receive a private message"
msgstr "Vi ricevas privatan mesaĝon."
#: ../../mod/settings.php:981
#: ../../mod/settings.php:992
msgid "You receive a friend suggestion"
msgstr "Vi ricevas amikosugeston"
#: ../../mod/settings.php:982
#: ../../mod/settings.php:993
msgid "You are tagged in a post"
msgstr "Vi estas markita en afiŝon"
#: ../../mod/settings.php:985
#: ../../mod/settings.php:996
msgid "Advanced Page Settings"
msgstr "Specialaj agordoj pri paĝoj"
@ -2228,23 +2280,47 @@ msgstr "aldoni"
msgid "Commented Order"
msgstr "Komenta Ordo"
#: ../../mod/network.php:176
#: ../../mod/network.php:174
msgid "Sort by Comment Date"
msgstr "Ordigi laŭ Dato de Komento"
#: ../../mod/network.php:177
msgid "Posted Order"
msgstr "Afiŝita Ordo"
#: ../../mod/network.php:180
msgid "Sort by Post Date"
msgstr "Ordigi laŭ Dato de Afiŝado"
#: ../../mod/network.php:187
msgid "Posts that mention or involve you"
msgstr "Afiŝoj menciantaj vin aŭ pri vi"
#: ../../mod/network.php:190
msgid "New"
msgstr "Nova"
#: ../../mod/network.php:192
#: ../../mod/network.php:193
msgid "Activity Stream - by date"
msgstr "Fluo de Aktiveco - laŭ dato"
#: ../../mod/network.php:196
msgid "Starred"
msgstr "Steligita"
#: ../../mod/network.php:197
#: ../../mod/network.php:199
msgid "Favourite Posts"
msgstr "Favorigitaj Afiŝoj"
#: ../../mod/network.php:202
msgid "Shared Links"
msgstr "Kunhavigitaj Ligiloj"
#: ../../mod/network.php:274
#: ../../mod/network.php:205
msgid "Interesting Links"
msgstr "Interesaj Ligiloj"
#: ../../mod/network.php:281
#, php-format
msgid "Warning: This group contains %s member from an insecure network."
msgid_plural ""
@ -2252,40 +2328,42 @@ msgid_plural ""
msgstr[0] "Averto: La grupo enhavas %s membron el nesekuraj retejoj."
msgstr[1] "Averto: La grupo enhavas %s membrojn el nesekuraj retejoj."
#: ../../mod/network.php:277
#: ../../mod/network.php:284
msgid "Private messages to this group are at risk of public disclosure."
msgstr "La privateco de privataj mesaĝoj al ĉi tiu grupo ne ĉiam estas garantita."
#: ../../mod/network.php:322
#: ../../mod/network.php:329
msgid "No such group"
msgstr "Grupo ne estas trovita"
#: ../../mod/network.php:333
#: ../../mod/network.php:340
msgid "Group is empty"
msgstr "Grupo estas malplena"
#: ../../mod/network.php:337
#: ../../mod/network.php:344
msgid "Group: "
msgstr "Grupo:"
#: ../../mod/network.php:347
#: ../../mod/network.php:354
msgid "Contact: "
msgstr "Kontakto:"
#: ../../mod/network.php:349
#: ../../mod/network.php:356
msgid "Private messages to this person are at risk of public disclosure."
msgstr "La privateco de privataj mesaĝoj al ĉi tiu persono ne ĉiam estas garantita."
#: ../../mod/network.php:354
#: ../../mod/network.php:361
msgid "Invalid contact."
msgstr "Nevalida kontakto."
#: ../../mod/notes.php:44 ../../boot.php:1476
#: ../../mod/notes.php:44 ../../boot.php:1499
msgid "Personal Notes"
msgstr "Personaj Notoj"
#: ../../mod/notes.php:63 ../../mod/filer.php:30
#: ../../addon/facebook/facebook.php:683 ../../include/text.php:652
#: ../../addon/facebook/facebook.php:726
#: ../../addon/privacy_image_cache/privacy_image_cache.php:147
#: ../../include/text.php:652
msgid "Save"
msgstr "Konservi"
@ -2319,7 +2397,7 @@ msgid "No recipient."
msgstr "Neniom da ricevontoj."
#: ../../mod/wallmessage.php:124 ../../mod/message.php:169
#: ../../include/conversation.php:910
#: ../../include/conversation.php:918
msgid "Please enter a link URL:"
msgstr "Bonvolu entajpu adreson de ligilo:"
@ -2335,17 +2413,17 @@ msgid ""
msgstr "Se vi deziras ke %s respondu, bonvolu kontroli ke la privatecaj agordoj je via retejo permesas privatajn mesaĝojn de nekonataj sendantoj."
#: ../../mod/wallmessage.php:133 ../../mod/message.php:178
#: ../../mod/message.php:347
#: ../../mod/message.php:370
msgid "To:"
msgstr "Al:"
#: ../../mod/wallmessage.php:134 ../../mod/message.php:179
#: ../../mod/message.php:348
#: ../../mod/message.php:371
msgid "Subject:"
msgstr "Temo:"
#: ../../mod/wallmessage.php:140 ../../mod/message.php:183
#: ../../mod/message.php:351 ../../mod/invite.php:113
#: ../../mod/message.php:374 ../../mod/invite.php:113
msgid "Your message:"
msgstr "Via mesaĝo:"
@ -2487,7 +2565,7 @@ msgstr "Grupo ne estas trovita."
msgid "Group name changed."
msgstr "La nomo de la grupo estas ŝanĝita."
#: ../../mod/group.php:72 ../../mod/profperm.php:19 ../../index.php:308
#: ../../mod/group.php:72 ../../mod/profperm.php:19 ../../index.php:305
msgid "Permission denied"
msgstr "Malpermesita"
@ -2527,12 +2605,9 @@ msgstr "Nevaliada profila identigilo."
msgid "Profile Visibility Editor"
msgstr "Redaktilo por profila videbleco."
#: ../../mod/profperm.php:103 ../../view/theme/diabook-red/theme.php:240
#: ../../view/theme/diabook-blue/theme.php:240
#: ../../view/theme/diabook/theme.php:250
#: ../../view/theme/diabook-aerith/theme.php:241
#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:76
#: ../../include/nav.php:50 ../../boot.php:1458
#: ../../mod/profperm.php:103 ../../view/theme/diabook/theme.php:66
#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:74
#: ../../include/nav.php:50 ../../boot.php:1478
msgid "Profile"
msgstr "Profilo"
@ -2681,7 +2756,7 @@ msgstr "Membriĝi ĉi tie nur eblas laŭ invito."
msgid "Your invitation ID: "
msgstr "Via invita idento: "
#: ../../mod/register.php:553 ../../mod/admin.php:375
#: ../../mod/register.php:553 ../../mod/admin.php:401
msgid "Registration"
msgstr "Registrado"
@ -2704,7 +2779,7 @@ msgstr "Elektu kaŝnomon por la profilo. Tiu bezonas komenci kun teksta litero.
msgid "Choose a nickname: "
msgstr "Elektu kaŝnomon: "
#: ../../mod/register.php:567 ../../include/nav.php:81 ../../boot.php:775
#: ../../mod/register.php:567 ../../include/nav.php:81 ../../boot.php:784
msgid "Register"
msgstr "Registri"
@ -2713,29 +2788,20 @@ msgid "People Search"
msgstr "Serĉi Membrojn"
#: ../../mod/like.php:127 ../../mod/tagger.php:70
#: ../../addon/facebook/facebook.php:1574
#: ../../addon/facebook/facebook.php:1542
#: ../../addon/communityhome/communityhome.php:158
#: ../../addon/communityhome/communityhome.php:167
#: ../../view/theme/diabook-red/theme.php:80
#: ../../view/theme/diabook-red/theme.php:89
#: ../../view/theme/diabook-blue/theme.php:80
#: ../../view/theme/diabook-blue/theme.php:89
#: ../../view/theme/diabook/theme.php:86 ../../view/theme/diabook/theme.php:95
#: ../../view/theme/diabook-aerith/theme.php:81
#: ../../view/theme/diabook-aerith/theme.php:90
#: ../../include/diaspora.php:1654 ../../include/conversation.php:48
#: ../../include/conversation.php:57 ../../include/conversation.php:121
#: ../../include/conversation.php:130
#: ../../view/theme/diabook/theme.php:403
#: ../../view/theme/diabook/theme.php:412 ../../include/diaspora.php:1654
#: ../../include/conversation.php:48 ../../include/conversation.php:57
#: ../../include/conversation.php:121 ../../include/conversation.php:130
msgid "status"
msgstr "staton"
#: ../../mod/like.php:144 ../../addon/facebook/facebook.php:1578
#: ../../mod/like.php:144 ../../addon/facebook/facebook.php:1546
#: ../../addon/communityhome/communityhome.php:172
#: ../../view/theme/diabook-red/theme.php:94
#: ../../view/theme/diabook-blue/theme.php:94
#: ../../view/theme/diabook/theme.php:100
#: ../../view/theme/diabook-aerith/theme.php:95
#: ../../include/diaspora.php:1670 ../../include/conversation.php:65
#: ../../view/theme/diabook/theme.php:417 ../../include/diaspora.php:1670
#: ../../include/conversation.php:65
#, php-format
msgid "%1$s likes %2$s's %3$s"
msgstr "%1$s ŝatas la %3$s de %2$s"
@ -2745,9 +2811,9 @@ msgstr "%1$s ŝatas la %3$s de %2$s"
msgid "%1$s doesn't like %2$s's %3$s"
msgstr "%1$s malŝatas la %3$s de %2$s"
#: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 ../../mod/admin.php:141
#: ../../mod/admin.php:582 ../../mod/admin.php:761 ../../mod/display.php:37
#: ../../mod/display.php:142 ../../include/items.php:3082
#: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 ../../mod/admin.php:156
#: ../../mod/admin.php:679 ../../mod/admin.php:878 ../../mod/display.php:37
#: ../../mod/display.php:142 ../../include/items.php:3099
msgid "Item not found."
msgstr "Elemento ne estas trovita."
@ -2755,6 +2821,15 @@ msgstr "Elemento ne estas trovita."
msgid "Access denied."
msgstr "Atingo nepermesita."
#: ../../mod/fbrowser.php:23 ../../view/theme/diabook/theme.php:68
#: ../../include/nav.php:51 ../../boot.php:1484
msgid "Photos"
msgstr "Bildoj"
#: ../../mod/fbrowser.php:86
msgid "Files"
msgstr "Dosieroj"
#: ../../mod/regmod.php:61
msgid "Account approved."
msgstr "Konto aprobita."
@ -2776,35 +2851,35 @@ msgstr "Ne eblas trovi originalan afiŝon."
msgid "Empty post discarded."
msgstr "Forviŝis malplenan afiŝon."
#: ../../mod/item.php:372 ../../mod/wall_upload.php:85
#: ../../mod/wall_upload.php:94 ../../mod/wall_upload.php:101
#: ../../mod/item.php:372 ../../mod/wall_upload.php:99
#: ../../mod/wall_upload.php:108 ../../mod/wall_upload.php:115
#: ../../include/message.php:144
msgid "Wall Photos"
msgstr "Muraj Bildoj"
#: ../../mod/item.php:762
#: ../../mod/item.php:781
msgid "System error. Post not saved."
msgstr "Sistema eraro. Afiŝo ne registrita."
#: ../../mod/item.php:787
#: ../../mod/item.php:806
#, php-format
msgid ""
"This message was sent to you by %s, a member of the Friendica social "
"network."
msgstr "Ĉi mesaĝo estas sendita al vi de %s, membro de la Friendica interkona reto."
#: ../../mod/item.php:789
#: ../../mod/item.php:808
#, php-format
msgid "You may visit them online at %s"
msgstr "Vi povas viziti ilin rete ĉe %s"
#: ../../mod/item.php:790
#: ../../mod/item.php:809
msgid ""
"Please contact the sender by replying to this post if you do not wish to "
"receive these messages."
msgstr "Bonvolu rispondi al ĉi mesaĝo kaj kontaktu la sendinto se vi ne volas ricevi tiujn mesaĝojn."
#: ../../mod/item.php:792
#: ../../mod/item.php:811
#, php-format
msgid "%s posted an update."
msgstr "%s publikigis afiŝon."
@ -2829,7 +2904,7 @@ msgstr "Reŝarĝu la paĝon au malplenigu la kaŝmemoro de la retesplorilo se la
msgid "Unable to process image"
msgstr "Ne eblas procezi bildon."
#: ../../mod/profile_photo.php:115 ../../mod/wall_upload.php:60
#: ../../mod/profile_photo.php:115 ../../mod/wall_upload.php:74
#, php-format
msgid "Image exceeds size limit of %d"
msgstr "Bildo estas pli granda ol la limito %d"
@ -2923,7 +2998,7 @@ msgstr "Vi kaj %s"
msgid "%s and You"
msgstr "%s kaj vi"
#: ../../mod/message.php:242 ../../mod/message.php:340
#: ../../mod/message.php:242 ../../mod/message.php:363
msgid "Delete conversation"
msgstr "Forviŝi dialogon"
@ -2942,17 +3017,17 @@ msgstr[1] "%d mesaĝoj"
msgid "Message not available."
msgstr "Mesaĝo nedisponebla."
#: ../../mod/message.php:324
#: ../../mod/message.php:347
msgid "Delete message"
msgstr "Forviŝu mesaĝon"
#: ../../mod/message.php:342
#: ../../mod/message.php:365
msgid ""
"No secure communications available. You <strong>may</strong> be able to "
"respond from the sender's profile page."
msgstr "Sekura komunikado ne disponeblas. Vi <strong>eble</strong> povus respondi sur la profilpaĝo de la sendanto."
#: ../../mod/message.php:346
#: ../../mod/message.php:369
msgid "Send Reply"
msgstr "Respondi"
@ -2965,538 +3040,602 @@ msgstr "Amikoj de %s"
msgid "No friends to display."
msgstr "Neniom da amiko al montri."
#: ../../mod/admin.php:51
#: ../../mod/admin.php:55
msgid "Theme settings updated."
msgstr "Gisdatigis agordojn pri etosoj."
#: ../../mod/admin.php:85 ../../mod/admin.php:373
#: ../../mod/admin.php:96 ../../mod/admin.php:399
msgid "Site"
msgstr "Retejo"
#: ../../mod/admin.php:86 ../../mod/admin.php:540 ../../mod/admin.php:552
#: ../../mod/admin.php:97 ../../mod/admin.php:634 ../../mod/admin.php:646
msgid "Users"
msgstr "Uzantoj"
#: ../../mod/admin.php:87 ../../mod/admin.php:629 ../../mod/admin.php:669
#: ../../mod/admin.php:98 ../../mod/admin.php:728 ../../mod/admin.php:770
msgid "Plugins"
msgstr "Kromprogramoj"
#: ../../mod/admin.php:88 ../../mod/admin.php:815 ../../mod/admin.php:849
#: ../../mod/admin.php:99 ../../mod/admin.php:933 ../../mod/admin.php:969
msgid "Themes"
msgstr "Etosoj"
#: ../../mod/admin.php:103 ../../mod/admin.php:929
#: ../../mod/admin.php:100
msgid "DB updates"
msgstr "DB ĝisdatigoj"
#: ../../mod/admin.php:101
msgid "Software Update"
msgstr "Friendica Ĝisdatigoj"
#: ../../mod/admin.php:115 ../../mod/admin.php:1056
msgid "Logs"
msgstr "Protokoloj"
#: ../../mod/admin.php:108
#: ../../mod/admin.php:120
msgid "User registrations waiting for confirmation"
msgstr "Uzantaj registradoj atendante konfirmon"
#: ../../mod/admin.php:177 ../../mod/admin.php:372 ../../mod/admin.php:539
#: ../../mod/admin.php:628 ../../mod/admin.php:668 ../../mod/admin.php:814
#: ../../mod/admin.php:848 ../../mod/admin.php:928
#: ../../mod/admin.php:195 ../../mod/admin.php:398 ../../mod/admin.php:633
#: ../../mod/admin.php:727 ../../mod/admin.php:769 ../../mod/admin.php:932
#: ../../mod/admin.php:968 ../../mod/admin.php:1055
msgid "Administration"
msgstr "Administrado"
#: ../../mod/admin.php:178
#: ../../mod/admin.php:196
msgid "Summary"
msgstr "Resumo"
#: ../../mod/admin.php:179
#: ../../mod/admin.php:197
msgid "Registered users"
msgstr "Registrataj uzantoj"
#: ../../mod/admin.php:181
#: ../../mod/admin.php:199
msgid "Pending registrations"
msgstr "Okazontaj registradoj"
#: ../../mod/admin.php:182
#: ../../mod/admin.php:200
msgid "Version"
msgstr "Versio"
#: ../../mod/admin.php:184
#: ../../mod/admin.php:202
msgid "Active plugins"
msgstr "Ŝaltitaj kromprogramoj"
#: ../../mod/admin.php:315
#: ../../mod/admin.php:337
msgid "Site settings updated."
msgstr "Ĝisdatigis retejaj agordoj."
#: ../../mod/admin.php:359
#: ../../mod/admin.php:385
msgid "Closed"
msgstr "Ferma"
#: ../../mod/admin.php:360
#: ../../mod/admin.php:386
msgid "Requires approval"
msgstr "Bezonas aprobon"
#: ../../mod/admin.php:361
#: ../../mod/admin.php:387
msgid "Open"
msgstr "Malferma"
#: ../../mod/admin.php:365
#: ../../mod/admin.php:391
msgid "No SSL policy, links will track page SSL state"
msgstr "Sen SSL strategio. Ligiloj sekvos la SSL staton de la paĝo."
#: ../../mod/admin.php:366
#: ../../mod/admin.php:392
msgid "Force all links to use SSL"
msgstr "Devigi ke ĉiuj ligiloj uzu SSL."
#: ../../mod/admin.php:367
#: ../../mod/admin.php:393
msgid "Self-signed certificate, use SSL for local links only (discouraged)"
msgstr "Memsubskribita atestilo, nur uzu SSL por lokaj ligiloj (malkuraĝigata)"
#: ../../mod/admin.php:376
#: ../../mod/admin.php:402
msgid "File upload"
msgstr "Alŝuto"
#: ../../mod/admin.php:377
#: ../../mod/admin.php:403
msgid "Policies"
msgstr "Politiko"
#: ../../mod/admin.php:378
#: ../../mod/admin.php:404
msgid "Advanced"
msgstr "Altnivela"
#: ../../mod/admin.php:382 ../../addon/statusnet/statusnet.php:544
#: ../../mod/admin.php:408 ../../addon/statusnet/statusnet.php:544
msgid "Site name"
msgstr "Nomo de retejo"
#: ../../mod/admin.php:383
#: ../../mod/admin.php:409
msgid "Banner/Logo"
msgstr "Emblemo"
#: ../../mod/admin.php:384
#: ../../mod/admin.php:410
msgid "System language"
msgstr "Sistema lingvo"
#: ../../mod/admin.php:385
#: ../../mod/admin.php:411
msgid "System theme"
msgstr "Sistema etoso"
#: ../../mod/admin.php:385
#: ../../mod/admin.php:411
msgid ""
"Default system theme - may be over-ridden by user profiles - <a href='#' "
"id='cnftheme'>change theme settings</a>"
msgstr "Defaŭlta sistema etoso - transpasebla de uzantprofiloj - <a href='#' id='cnftheme'>redakti agordoj pri etosoj</a>"
#: ../../mod/admin.php:386
#: ../../mod/admin.php:412
msgid "SSL link policy"
msgstr "Strategio por SSL ligiloj"
#: ../../mod/admin.php:386
#: ../../mod/admin.php:412
msgid "Determines whether generated links should be forced to use SSL"
msgstr "Difinas ĉu generotaj ligiloj devige uzu SSL."
#: ../../mod/admin.php:387
#: ../../mod/admin.php:413
msgid "Maximum image size"
msgstr "Maksimuma bildgrando"
#: ../../mod/admin.php:387
#: ../../mod/admin.php:413
msgid ""
"Maximum size in bytes of uploaded images. Default is 0, which means no "
"limits."
msgstr "Maksimuma grando en bajtoj por alŝutotaj bildoj. Defaŭlte 0, kio signifas neniu limito."
#: ../../mod/admin.php:389
#: ../../mod/admin.php:415
msgid "Register policy"
msgstr "Interkonsento pri registrado"
#: ../../mod/admin.php:390
#: ../../mod/admin.php:416
msgid "Register text"
msgstr "Interkonsento teksto"
#: ../../mod/admin.php:390
#: ../../mod/admin.php:416
msgid "Will be displayed prominently on the registration page."
msgstr "Tio estos eminente montrata en la registro paĝo."
#: ../../mod/admin.php:391
#: ../../mod/admin.php:417
msgid "Accounts abandoned after x days"
msgstr "Kontoj forlasitaj post x tagoj"
#: ../../mod/admin.php:391
#: ../../mod/admin.php:417
msgid ""
"Will not waste system resources polling external sites for abandoned "
"Will not waste system resources polling external sites for abandonded "
"accounts. Enter 0 for no time limit."
msgstr "Mi ne malŝparu energion por enketi aliajn retejojn pri forlasitaj kontoj. Entajpu 0 por ne uzi templimo."
#: ../../mod/admin.php:392
#: ../../mod/admin.php:418
msgid "Allowed friend domains"
msgstr "Permesitaj amikaj domainoj"
#: ../../mod/admin.php:392
#: ../../mod/admin.php:418
msgid ""
"Comma separated list of domains which are allowed to establish friendships "
"with this site. Wildcards are accepted. Empty to allow any domains"
msgstr "Perkome disigita listo da domajnoj kiuj rajtas konstrui amikecojn kun ĉi tiu retejo. Ĵokeroj eblas. Malplena por rajtigi ĉiujn ajn domajnojn."
#: ../../mod/admin.php:393
#: ../../mod/admin.php:419
msgid "Allowed email domains"
msgstr "Permesitaj retpoŝtaj domajnoj"
#: ../../mod/admin.php:393
#: ../../mod/admin.php:419
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 "Perkome disigita listo da domajnoj kiuj uzeblas kiel retpoŝtaj adresoj en novaj registradoj. Ĵokeroj eblas. Malplena por rajtigi ĉiujn ajn domajnojn."
#: ../../mod/admin.php:394
#: ../../mod/admin.php:420
msgid "Block public"
msgstr "Bloki publike"
#: ../../mod/admin.php:394
#: ../../mod/admin.php:420
msgid ""
"Check to block public access to all otherwise public personal pages on this "
"site unless you are currently logged in."
msgstr "Elektu por bloki publikan atingon al ĉiuj alie publikajn paĝojn en ĉi tiu retejo kiam vi ne estas ensalutita."
#: ../../mod/admin.php:395
#: ../../mod/admin.php:421
msgid "Force publish"
msgstr "Devigi publikigon"
#: ../../mod/admin.php:395
#: ../../mod/admin.php:421
msgid ""
"Check to force all profiles on this site to be listed in the site directory."
msgstr "Elektu por devigi la registradon en la loka katalogo al ĉiuj profiloj en ĉi tiu retejo."
#: ../../mod/admin.php:396
#: ../../mod/admin.php:422
msgid "Global directory update URL"
msgstr "Ĝenerala adreso por ĝisdatigi la katalogon"
#: ../../mod/admin.php:396
#: ../../mod/admin.php:422
msgid ""
"URL to update the global directory. If this is not set, the global directory"
" is completely unavailable to the application."
msgstr "URL adreso por ĝisdatigi la tutmondan katalogon. Se ne agordita, la tutmonda katatolge tute ne disponeblas al la programo."
#: ../../mod/admin.php:398
#: ../../mod/admin.php:424
msgid "Block multiple registrations"
msgstr "Bloki pluroblajn registradojn."
#: ../../mod/admin.php:398
#: ../../mod/admin.php:424
msgid "Disallow users to register additional accounts for use as pages."
msgstr "Malpermesi al uzantoj la permeson por registri pluajn kontojn kiel paĝoj."
#: ../../mod/admin.php:399
#: ../../mod/admin.php:425
msgid "OpenID support"
msgstr "Subteno por OpenID"
#: ../../mod/admin.php:399
#: ../../mod/admin.php:425
msgid "OpenID support for registration and logins."
msgstr "Subteni OpenID por registrado kaj ensaluto."
#: ../../mod/admin.php:400
#: ../../mod/admin.php:426
msgid "Fullname check"
msgstr "Kontroli plenan nomon"
#: ../../mod/admin.php:400
#: ../../mod/admin.php:426
msgid ""
"Force users to register with a space between firstname and lastname in Full "
"name, as an antispam measure"
msgstr "Kiel kontraŭspamilo, devigi uzantoj al registrado kun spaceto inter la persona nomo kaj la familia nomo."
#: ../../mod/admin.php:401
#: ../../mod/admin.php:427
msgid "UTF-8 Regular expressions"
msgstr "UTF-8 regulaj exprimoj"
#: ../../mod/admin.php:401
#: ../../mod/admin.php:427
msgid "Use PHP UTF8 regular expressions"
msgstr "Uzi PHP UTF8 regulajn esprimojn."
#: ../../mod/admin.php:402
#: ../../mod/admin.php:428
msgid "Show Community Page"
msgstr "Montri Komunuma Paĝo"
#: ../../mod/admin.php:402
#: ../../mod/admin.php:428
msgid ""
"Display a Community page showing all recent public postings on this site."
msgstr "Montri komunuma paĝo kun ĉiuj ĵusaj afiŝoj en ĉi tiu retejo."
#: ../../mod/admin.php:403
#: ../../mod/admin.php:429
msgid "Enable OStatus support"
msgstr "Ŝalti subtenon por OStatus"
#: ../../mod/admin.php:403
#: ../../mod/admin.php:429
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 "Provizi integritan OStatus (identi.ca, status.net ktp) subtenon. Ĉiuj komunikadoj en OStatus estas publikaj, do privatecaj avertoj aperos de tempo al tempo."
#: ../../mod/admin.php:404
#: ../../mod/admin.php:430
msgid "Enable Diaspora support"
msgstr "Ŝalti subtenon por Diaspora"
#: ../../mod/admin.php:404
#: ../../mod/admin.php:430
msgid "Provide built-in Diaspora network compatibility."
msgstr "Provizi integritan Diaspora subtenon."
#: ../../mod/admin.php:405
#: ../../mod/admin.php:431
msgid "Only allow Friendica contacts"
msgstr "Nur permesigi Friendica kontaktojn"
#: ../../mod/admin.php:405
#: ../../mod/admin.php:431
msgid ""
"All contacts must use Friendica protocols. All other built-in communication "
"protocols disabled."
msgstr "Ĉiuj kontaktoj devas uzi Friendica protokolojn. Ĉiuj aliaj komunikaj protokoloj malaktivita."
#: ../../mod/admin.php:406
#: ../../mod/admin.php:432
msgid "Verify SSL"
msgstr "Kontroli SSL"
#: ../../mod/admin.php:406
#: ../../mod/admin.php:432
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 "Se vi deziras, vi povas aktivigi severan kontroladon de SSL atestiloj. Pro tio, vie (tute) ne eblos konekti al SSL retejoj kun memsubskribitaj atestiloj."
#: ../../mod/admin.php:407
#: ../../mod/admin.php:433
msgid "Proxy user"
msgstr "Uzantnomo por retperanto"
#: ../../mod/admin.php:408
#: ../../mod/admin.php:434
msgid "Proxy URL"
msgstr "URL adreso de retperanto"
#: ../../mod/admin.php:409
#: ../../mod/admin.php:435
msgid "Network timeout"
msgstr "Reta tempolimo"
#: ../../mod/admin.php:409
#: ../../mod/admin.php:435
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
msgstr "Valoro en sekundoj. Uzu 0 por mallimitigi (ne rekomendata)."
#: ../../mod/admin.php:430
#: ../../mod/admin.php:436
msgid "Delivery interval"
msgstr "Intervalo de liverado"
#: ../../mod/admin.php:436
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 "Malfruigi fonan liveradon dum tiom da sekundoj por malpliigi la ŝargon de la sistemo. Rekomendoj: 4-5 por komunaj serviloj, 2-3 por virtualaj privataj serviloj, 0-1 por grandaj dediĉitaj serviloj."
#: ../../mod/admin.php:451
msgid "Update has been marked successful"
msgstr "Ĝisdatigo estas markita sukcesa"
#: ../../mod/admin.php:461
#, php-format
msgid "Executing %s failed. Check system logs."
msgstr "Ne sukcesis plenumi %s. Kontrolu la sistemprotokolojn."
#: ../../mod/admin.php:464
#, php-format
msgid "Update %s was successfully applied."
msgstr "Sukcese aplikis la ĝisdatigo %s."
#: ../../mod/admin.php:468
#, php-format
msgid "Update %s did not return a status. Unknown if it succeeded."
msgstr "Ĝisdatigo %s ne liveris elirstaton. "
#: ../../mod/admin.php:471
#, php-format
msgid "Update function %s could not be found."
msgstr "Ne troveblas ĝisdatigo funkcio %s."
#: ../../mod/admin.php:486
msgid "No failed updates."
msgstr "Neniom da malsukcesaj ĝisdatigoj."
#: ../../mod/admin.php:490
msgid "Failed Updates"
msgstr "Malsukcesaj Ĝisdatigoj"
#: ../../mod/admin.php:491
msgid ""
"This does not include updates prior to 1139, which did not return a status."
msgstr "Ne inkluzivas ĝisdatigojn antaŭ 1139, kiuj ne liveris elirstaton."
#: ../../mod/admin.php:492
msgid "Mark success (if update was manually applied)"
msgstr "Marki sukcesa (se la ĝisdatigo estas instalita mane)"
#: ../../mod/admin.php:493
msgid "Attempt to execute this update step automatically"
msgstr "Provi automate plenumi ĉi tian paŝon de la ĝisdatigo."
#: ../../mod/admin.php:518
#, php-format
msgid "%s user blocked/unblocked"
msgid_plural "%s users blocked/unblocked"
msgstr[0] "Blokis/malblokis %s uzanton"
msgstr[1] "Blokis/malblokis %s uzantojn"
#: ../../mod/admin.php:437
#: ../../mod/admin.php:525
#, php-format
msgid "%s user deleted"
msgid_plural "%s users deleted"
msgstr[0] "%s uzanto forviŝita"
msgstr[1] "%s uzanto forviŝitaj"
#: ../../mod/admin.php:471
#: ../../mod/admin.php:564
#, php-format
msgid "User '%s' deleted"
msgstr "Uzanto '%s' forviŝita"
#: ../../mod/admin.php:478
#: ../../mod/admin.php:572
#, php-format
msgid "User '%s' unblocked"
msgstr "Uzanto '%s' malblokita"
#: ../../mod/admin.php:478
#: ../../mod/admin.php:572
#, php-format
msgid "User '%s' blocked"
msgstr "Uzanto '%s' blokita"
#: ../../mod/admin.php:542
#: ../../mod/admin.php:636
msgid "select all"
msgstr "elekti ĉiujn"
#: ../../mod/admin.php:543
#: ../../mod/admin.php:637
msgid "User registrations waiting for confirm"
msgstr "Registriĝoj atendante aprobon"
#: ../../mod/admin.php:544
#: ../../mod/admin.php:638
msgid "Request date"
msgstr "Dato de peto"
#: ../../mod/admin.php:544 ../../mod/admin.php:553
#: ../../mod/admin.php:638 ../../mod/admin.php:647
#: ../../include/contact_selectors.php:79
msgid "Email"
msgstr "Retpoŝto"
#: ../../mod/admin.php:545
#: ../../mod/admin.php:639
msgid "No registrations."
msgstr "Neniom da registriĝoj."
#: ../../mod/admin.php:547
#: ../../mod/admin.php:641
msgid "Deny"
msgstr "Negi"
#: ../../mod/admin.php:553
#: ../../mod/admin.php:647
msgid "Register date"
msgstr "Dato de registrado"
#: ../../mod/admin.php:553
#: ../../mod/admin.php:647
msgid "Last login"
msgstr "Plej ĵusa ensaluto"
#: ../../mod/admin.php:553
#: ../../mod/admin.php:647
msgid "Last item"
msgstr "Plej ĵusa elemento"
#: ../../mod/admin.php:553
#: ../../mod/admin.php:647
msgid "Account"
msgstr "Konto"
#: ../../mod/admin.php:555
#: ../../mod/admin.php:649
msgid ""
"Selected users will be deleted!\\n\\nEverything these users had posted on "
"this site will be permanently deleted!\\n\\nAre you sure?"
msgstr "La elektitaj uzantkontoj estas forviŝotaj!\\n\\nĈiuj elementoj kiujn ili afiŝis je la retpaĝo estos permanente forviŝitaj.\\n\\nĈu vi certas?"
#: ../../mod/admin.php:556
#: ../../mod/admin.php:650
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 "La uzanto {0} estas forviŝota!\\n\\nĈiuj elementoj kiujn li afiŝis je la retpaĝo estos permanente forviŝitaj.\\n\\nĈu vi certas?"
#: ../../mod/admin.php:592
#: ../../mod/admin.php:691
#, php-format
msgid "Plugin %s disabled."
msgstr "Kromprogramo %s estas malŝaltita."
#: ../../mod/admin.php:596
#: ../../mod/admin.php:695
#, php-format
msgid "Plugin %s enabled."
msgstr "Kromprogramo %s estas ŝaltita."
#: ../../mod/admin.php:606 ../../mod/admin.php:785
#: ../../mod/admin.php:705 ../../mod/admin.php:903
msgid "Disable"
msgstr "Malŝalti"
#: ../../mod/admin.php:608 ../../mod/admin.php:787
#: ../../mod/admin.php:707 ../../mod/admin.php:905
msgid "Enable"
msgstr "Ŝalti"
#: ../../mod/admin.php:630 ../../mod/admin.php:816
#: ../../mod/admin.php:729 ../../mod/admin.php:934
msgid "Toggle"
msgstr "Ŝalti/Malŝalti"
#: ../../mod/admin.php:638 ../../mod/admin.php:826
#: ../../mod/admin.php:737 ../../mod/admin.php:944
msgid "Author: "
msgstr "Aŭtoro: "
#: ../../mod/admin.php:639 ../../mod/admin.php:827
#: ../../mod/admin.php:738 ../../mod/admin.php:945
msgid "Maintainer: "
msgstr "Prizorganto: "
#: ../../mod/admin.php:750
#: ../../mod/admin.php:867
msgid "No themes found."
msgstr "Ne trovis etosojn."
#: ../../mod/admin.php:808
#: ../../mod/admin.php:926
msgid "Screenshot"
msgstr "Ekrankopio"
#: ../../mod/admin.php:854
#: ../../mod/admin.php:974
msgid "[Experimental]"
msgstr "[Eksperimenta]"
#: ../../mod/admin.php:855
#: ../../mod/admin.php:975
msgid "[Unsupported]"
msgstr "[Nesubtenata]"
#: ../../mod/admin.php:878
#: ../../mod/admin.php:1002
msgid "Log settings updated."
msgstr "Protokolagordoj ĝisdatigitaj."
#: ../../mod/admin.php:931
#: ../../mod/admin.php:1058
msgid "Clear"
msgstr "Forviŝi"
#: ../../mod/admin.php:937
#: ../../mod/admin.php:1064
msgid "Debugging"
msgstr "Sencimigado"
#: ../../mod/admin.php:938
#: ../../mod/admin.php:1065
msgid "Log file"
msgstr "Protokolo"
#: ../../mod/admin.php:938
#: ../../mod/admin.php:1065
msgid ""
"Must be writable by web server. Relative to your Friendica top-level "
"directory."
msgstr "Devas esti skribebla de la retservilo. Relativa al via plej supra Friendica dosierujo."
#: ../../mod/admin.php:939
#: ../../mod/admin.php:1066
msgid "Log level"
msgstr "Protokolnivelo"
#: ../../mod/admin.php:980
#: ../../mod/admin.php:1116
msgid "Close"
msgstr "Fermi"
#: ../../mod/admin.php:986
#: ../../mod/admin.php:1122
msgid "FTP Host"
msgstr "FTP Servilo"
#: ../../mod/admin.php:987
#: ../../mod/admin.php:1123
msgid "FTP Path"
msgstr "FTP Vojo"
#: ../../mod/admin.php:988
#: ../../mod/admin.php:1124
msgid "FTP User"
msgstr "FTP Uzanto"
#: ../../mod/admin.php:989
#: ../../mod/admin.php:1125
msgid "FTP Password"
msgstr "FTP Pasvorto"
#: ../../mod/profile.php:21 ../../boot.php:940
#: ../../mod/profile.php:21 ../../boot.php:949
msgid "Requested profile is not available."
msgstr "La petita profilo ne disponeblas."
#: ../../mod/profile.php:124 ../../mod/display.php:75
#: ../../mod/profile.php:126 ../../mod/display.php:75
msgid "Access to this profile has been restricted."
msgstr "Atingo al ĉi tio profilo estas limitigita"
#: ../../mod/profile.php:145
#: ../../mod/profile.php:151
msgid "Tips for New Members"
msgstr "Konsilo por novaj membroj"
#: ../../mod/ping.php:175
#: ../../mod/ping.php:177
msgid "{0} wants to be your friend"
msgstr "{0} volas amikiĝi kun vi"
#: ../../mod/ping.php:180
#: ../../mod/ping.php:182
msgid "{0} sent you a message"
msgstr "{0} sendis mesaĝon al vi"
#: ../../mod/ping.php:185
#: ../../mod/ping.php:187
msgid "{0} requested registration"
msgstr "{0} petis registradon"
#: ../../mod/ping.php:191
#: ../../mod/ping.php:193
#, php-format
msgid "{0} commented %s's post"
msgstr "{0} komentis pri la afiŝo de %s"
#: ../../mod/ping.php:196
#: ../../mod/ping.php:198
#, php-format
msgid "{0} liked %s's post"
msgstr "{0} satis la afiŝon de %s"
#: ../../mod/ping.php:201
#: ../../mod/ping.php:203
#, php-format
msgid "{0} disliked %s's post"
msgstr "{0} malŝatis la afiŝon de %s"
#: ../../mod/ping.php:206
#: ../../mod/ping.php:208
#, php-format
msgid "{0} is now friends with %s"
msgstr "{0} amikiĝis kun %s"
#: ../../mod/ping.php:211
#: ../../mod/ping.php:213
msgid "{0} posted"
msgstr "{0} afiŝis"
#: ../../mod/ping.php:216
#: ../../mod/ping.php:218
#, php-format
msgid "{0} tagged %s's post with #%s"
msgstr "{0} markis la afiŝon de %s kun #%s"
#: ../../mod/ping.php:222
#: ../../mod/ping.php:224
msgid "{0} mentioned you in a post"
msgstr "{0} menciis vin en afiŝo"
@ -3587,8 +3726,8 @@ msgstr "Neniom da instalitaj programoj."
msgid "Search This Site"
msgstr "Serĉi ĉi-tiun retejon"
#: ../../mod/profiles.php:21 ../../mod/profiles.php:339
#: ../../mod/profiles.php:453 ../../mod/dfrn_confirm.php:62
#: ../../mod/profiles.php:21 ../../mod/profiles.php:375
#: ../../mod/profiles.php:489 ../../mod/dfrn_confirm.php:62
msgid "Profile not found."
msgstr "Profilo ne trovita."
@ -3596,263 +3735,272 @@ msgstr "Profilo ne trovita."
msgid "Profile Name is required."
msgstr "Nomo de profilo estas bezonata."
#: ../../mod/profiles.php:143
#: ../../mod/profiles.php:145
msgid "Marital Status"
msgstr "Amrilata Stato"
#: ../../mod/profiles.php:144
#: ../../mod/profiles.php:149
msgid "Romantic Partner"
msgstr "Kora Partnero"
#: ../../mod/profiles.php:145
#: ../../mod/profiles.php:153
msgid "Work/Employment"
msgstr "Laboro"
#: ../../mod/profiles.php:146
#: ../../mod/profiles.php:156
msgid "Religion"
msgstr "Religio"
#: ../../mod/profiles.php:147
#: ../../mod/profiles.php:160
msgid "Political Views"
msgstr "Politikaj Opinioj"
#: ../../mod/profiles.php:148
#: ../../mod/profiles.php:164
msgid "Gender"
msgstr "Sekso"
#: ../../mod/profiles.php:149
#: ../../mod/profiles.php:168
msgid "Sexual Preference"
msgstr "Seksa Prefero"
#: ../../mod/profiles.php:150
#: ../../mod/profiles.php:172
msgid "Homepage"
msgstr "Hejmpaĝo"
#: ../../mod/profiles.php:151
#: ../../mod/profiles.php:176
msgid "Interests"
msgstr "Interesoj"
#: ../../mod/profiles.php:154
#: ../../mod/profiles.php:181
msgid "Location"
msgstr "Loko"
#: ../../mod/profiles.php:225
#: ../../mod/profiles.php:253
msgid "Profile updated."
msgstr "Profilo ĝisdatigita."
#: ../../mod/profiles.php:300
#: ../../mod/profiles.php:320
msgid " and "
msgstr " kaj "
#: ../../mod/profiles.php:328
msgid "public profile"
msgstr "publika profilo"
#: ../../mod/profiles.php:302
#: ../../mod/profiles.php:331
#, php-format
msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
msgstr "%1$s ŝanĝis %2$s al &ldquo;%3$s&rdquo;"
#: ../../mod/profiles.php:335
#, php-format
msgid "%1$s has an updated %2$s, changing %3$s."
msgstr "%1$s havas ĝisdatigigan %2$s, ŝanĝas %3$s."
#: ../../mod/profiles.php:358
#: ../../mod/profiles.php:394
msgid "Profile deleted."
msgstr "Profilo forviŝita."
#: ../../mod/profiles.php:376 ../../mod/profiles.php:410
#: ../../mod/profiles.php:412 ../../mod/profiles.php:446
msgid "Profile-"
msgstr "Profilo-"
#: ../../mod/profiles.php:395 ../../mod/profiles.php:437
#: ../../mod/profiles.php:431 ../../mod/profiles.php:473
msgid "New profile created."
msgstr "Nova profilo kreita."
#: ../../mod/profiles.php:416
#: ../../mod/profiles.php:452
msgid "Profile unavailable to clone."
msgstr "Ne eblas kopii profilon."
#: ../../mod/profiles.php:474
#: ../../mod/profiles.php:510
msgid "Hide your contact/friend list from viewers of this profile?"
msgstr "Kaŝi vian liston de kontaktoj/amikoj al vidantoj de ĉi-tio profilo?"
#: ../../mod/profiles.php:497
#: ../../mod/profiles.php:533
msgid "Edit Profile Details"
msgstr "Redakti Detalojn de Profilo"
#: ../../mod/profiles.php:499
#: ../../mod/profiles.php:535
msgid "View this profile"
msgstr "Vidi la profilon."
#: ../../mod/profiles.php:500
#: ../../mod/profiles.php:536
msgid "Create a new profile using these settings"
msgstr "Krei novan profilon kun tiaj agordoj"
#: ../../mod/profiles.php:501
#: ../../mod/profiles.php:537
msgid "Clone this profile"
msgstr "Kopii ĉi tiun profilon"
#: ../../mod/profiles.php:502
#: ../../mod/profiles.php:538
msgid "Delete this profile"
msgstr "Forviŝi ĉi tiun profilon"
#: ../../mod/profiles.php:503
#: ../../mod/profiles.php:539
msgid "Profile Name:"
msgstr "Nomo de Profilo:"
#: ../../mod/profiles.php:504
#: ../../mod/profiles.php:540
msgid "Your Full Name:"
msgstr "Via Plena Nomo:"
#: ../../mod/profiles.php:505
#: ../../mod/profiles.php:541
msgid "Title/Description:"
msgstr "Titolo/Priskribo:"
#: ../../mod/profiles.php:506
#: ../../mod/profiles.php:542
msgid "Your Gender:"
msgstr "Via Sekso:"
#: ../../mod/profiles.php:507
#: ../../mod/profiles.php:543
#, php-format
msgid "Birthday (%s):"
msgstr "Naskiĝtago (%s):"
#: ../../mod/profiles.php:508
#: ../../mod/profiles.php:544
msgid "Street Address:"
msgstr "Adreso:"
#: ../../mod/profiles.php:509
#: ../../mod/profiles.php:545
msgid "Locality/City:"
msgstr "Urbo:"
#: ../../mod/profiles.php:510
#: ../../mod/profiles.php:546
msgid "Postal/Zip Code:"
msgstr "Poŝtkodo:"
#: ../../mod/profiles.php:511
#: ../../mod/profiles.php:547
msgid "Country:"
msgstr "Lando:"
#: ../../mod/profiles.php:512
#: ../../mod/profiles.php:548
msgid "Region/State:"
msgstr "Ŝtato:"
#: ../../mod/profiles.php:513
#: ../../mod/profiles.php:549
msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
msgstr "<span class=\"heart\">&hearts;</span> Civita Stato:"
#: ../../mod/profiles.php:514
#: ../../mod/profiles.php:550
msgid "Who: (if applicable)"
msgstr "Kiu (se aplikeble):"
#: ../../mod/profiles.php:515
#: ../../mod/profiles.php:551
msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
msgstr "Ekzemploj: cathy123, Cathy Williams, cathy@example.com"
#: ../../mod/profiles.php:516 ../../include/profile_advanced.php:43
#: ../../mod/profiles.php:552 ../../include/profile_advanced.php:43
msgid "Sexual Preference:"
msgstr "Seksa Prefero:"
#: ../../mod/profiles.php:517
#: ../../mod/profiles.php:553
msgid "Homepage URL:"
msgstr "Adreso de Hejmpaĝo:"
#: ../../mod/profiles.php:518 ../../include/profile_advanced.php:49
#: ../../mod/profiles.php:554 ../../include/profile_advanced.php:49
msgid "Political Views:"
msgstr "Politikaj Opinioj:"
#: ../../mod/profiles.php:519
#: ../../mod/profiles.php:555
msgid "Religious Views:"
msgstr "Religiaj Opinioj:"
#: ../../mod/profiles.php:520
#: ../../mod/profiles.php:556
msgid "Public Keywords:"
msgstr "Publikaj ŝlosilvortoj:"
#: ../../mod/profiles.php:521
#: ../../mod/profiles.php:557
msgid "Private Keywords:"
msgstr "Privataj ŝlosilvortoj:"
#: ../../mod/profiles.php:522
#: ../../mod/profiles.php:558
msgid "Example: fishing photography software"
msgstr "Ekzemple: fiŝkapti fotografio programaro"
#: ../../mod/profiles.php:523
#: ../../mod/profiles.php:559
msgid "(Used for suggesting potential friends, can be seen by others)"
msgstr "(Por sugesti amikoj. Videbla al aliaj.)"
#: ../../mod/profiles.php:524
#: ../../mod/profiles.php:560
msgid "(Used for searching profiles, never shown to others)"
msgstr "(Por serĉi profilojn. Neniam videbla al aliaj.)"
#: ../../mod/profiles.php:525
#: ../../mod/profiles.php:561
msgid "Tell us about yourself..."
msgstr "Diru al ni pri vi..."
#: ../../mod/profiles.php:526
#: ../../mod/profiles.php:562
msgid "Hobbies/Interests"
msgstr "Ŝatokupoj/Interesoj"
#: ../../mod/profiles.php:527
#: ../../mod/profiles.php:563
msgid "Contact information and Social Networks"
msgstr "Kontaktaj informoj kaj Interkonaj Retejoj"
#: ../../mod/profiles.php:528
#: ../../mod/profiles.php:564
msgid "Musical interests"
msgstr "Muzikaj interesoj"
#: ../../mod/profiles.php:529
#: ../../mod/profiles.php:565
msgid "Books, literature"
msgstr "Libroj, literaturo"
#: ../../mod/profiles.php:530
#: ../../mod/profiles.php:566
msgid "Television"
msgstr "Televido"
#: ../../mod/profiles.php:531
#: ../../mod/profiles.php:567
msgid "Film/dance/culture/entertainment"
msgstr "Filmoj/dancoj/arto/amuzaĵoj"
#: ../../mod/profiles.php:532
#: ../../mod/profiles.php:568
msgid "Love/romance"
msgstr "Amo/romanco"
#: ../../mod/profiles.php:533
#: ../../mod/profiles.php:569
msgid "Work/employment"
msgstr "Laboro"
#: ../../mod/profiles.php:534
#: ../../mod/profiles.php:570
msgid "School/education"
msgstr "Lernejo/eduko"
#: ../../mod/profiles.php:539
#: ../../mod/profiles.php:575
msgid ""
"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
"be visible to anybody using the internet."
msgstr "Ĉi tio estas via <strong>publika</strong> profilo. Ĝi <strong>eble</strong> estas videbla al ĉiuj en interreto. "
#: ../../mod/profiles.php:549 ../../mod/directory.php:111
#: ../../mod/profiles.php:585 ../../mod/directory.php:111
msgid "Age: "
msgstr "Aĝo:"
#: ../../mod/profiles.php:584
#: ../../mod/profiles.php:620
msgid "Edit/Manage Profiles"
msgstr "Redakti/administri Profilojn"
#: ../../mod/profiles.php:585 ../../boot.php:1049
#: ../../mod/profiles.php:621 ../../boot.php:1058
msgid "Change profile photo"
msgstr "Ŝanĝi profilbildon"
#: ../../mod/profiles.php:586 ../../boot.php:1050
#: ../../mod/profiles.php:622 ../../boot.php:1059
msgid "Create New Profile"
msgstr "Krei novan profilon"
#: ../../mod/profiles.php:597 ../../boot.php:1060
#: ../../mod/profiles.php:633 ../../boot.php:1069
msgid "Profile Image"
msgstr "Profilbildo"
#: ../../mod/profiles.php:599 ../../boot.php:1063
#: ../../mod/profiles.php:635 ../../boot.php:1072
msgid "visible to everybody"
msgstr "videbla al ĉiuj"
#: ../../mod/profiles.php:600 ../../boot.php:1064
#: ../../mod/profiles.php:636 ../../boot.php:1073
msgid "Edit visibility"
msgstr "Redakti videblecon"
#: ../../mod/filer.php:29 ../../include/conversation.php:914
#: ../../mod/filer.php:29 ../../include/conversation.php:922
msgid "Save to Folder:"
msgstr "Konservi en Dosierujo:"
@ -3900,13 +4048,10 @@ msgstr "Aldoni"
msgid "No entries."
msgstr "Neniom da afiŝoj."
#: ../../mod/suggest.php:38 ../../view/theme/diabook-red/theme.php:149
#: ../../view/theme/diabook-blue/theme.php:149
#: ../../view/theme/diabook/theme.php:155
#: ../../view/theme/diabook-aerith/theme.php:150
#: ../../mod/suggest.php:38 ../../view/theme/diabook/theme.php:464
#: ../../include/contact_widgets.php:34
msgid "Friend Suggestions"
msgstr "Amikosugestoj."
msgstr "Amikosugestoj"
#: ../../mod/suggest.php:44
msgid ""
@ -3918,10 +4063,7 @@ msgstr "Neniu sugestoj disponeblas. Se ĉi tiu estas nova retejo, bonvolu reprov
msgid "Ignore/Hide"
msgstr "Ignori/Kaŝi"
#: ../../mod/directory.php:47 ../../view/theme/diabook-red/theme.php:147
#: ../../view/theme/diabook-blue/theme.php:147
#: ../../view/theme/diabook/theme.php:153
#: ../../view/theme/diabook-aerith/theme.php:148
#: ../../mod/directory.php:47 ../../view/theme/diabook/theme.php:462
msgid "Global Directory"
msgstr "Tutmonda Katalogo"
@ -4060,118 +4202,123 @@ msgstr "La prezento malsukcesis au estas revokita."
msgid "Unable to set contact photo."
msgstr "Neeblas agordi la kontaktbildo."
#: ../../mod/dfrn_confirm.php:477 ../../include/diaspora.php:507
#: ../../mod/dfrn_confirm.php:482 ../../include/diaspora.php:507
#: ../../include/conversation.php:101
#, php-format
msgid "%1$s is now friends with %2$s"
msgstr "%1$s amikiĝis kun %2$s"
#: ../../mod/dfrn_confirm.php:548
#: ../../mod/dfrn_confirm.php:554
#, php-format
msgid "No user record found for '%s' "
msgstr "Ne trovis uzanton '%s' "
#: ../../mod/dfrn_confirm.php:558
#: ../../mod/dfrn_confirm.php:564
msgid "Our site encryption key is apparently messed up."
msgstr "Ŝajnas kvazaŭ la ĉifroŝlosilo de nia retejo estas fuŝita."
#: ../../mod/dfrn_confirm.php:569
#: ../../mod/dfrn_confirm.php:575
msgid "Empty site URL was provided or URL could not be decrypted by us."
msgstr "Malplena adreso de retejo provizita, aŭ ni ne povis malĉifri la adreson."
#: ../../mod/dfrn_confirm.php:590
#: ../../mod/dfrn_confirm.php:596
msgid "Contact record was not found for you on our site."
msgstr "Kontakto ne trovita por vi en via retejo."
#: ../../mod/dfrn_confirm.php:604
#: ../../mod/dfrn_confirm.php:610
#, php-format
msgid "Site public key not available in contact record for URL %s."
msgstr "Publika ŝlosilo de retejo ne disponeblas en la kontaktrikordo por la URL adreso %s."
#: ../../mod/dfrn_confirm.php:624
#: ../../mod/dfrn_confirm.php:630
msgid ""
"The ID provided by your system is a duplicate on our system. It should work "
"if you try again."
msgstr "La identeco provizita de via sistemo estas duoblo ĉe nia sistemo. Ĝi eble funkcias se vi provas refoje."
#: ../../mod/dfrn_confirm.php:635
#: ../../mod/dfrn_confirm.php:641
msgid "Unable to set your contact credentials on our system."
msgstr "Ne sukcesis agordi la legitimaĵojn de via kontakto ĉe nia sistemo."
#: ../../mod/dfrn_confirm.php:700
#: ../../mod/dfrn_confirm.php:706
msgid "Unable to update your contact profile details on our system"
msgstr "Neeblas ĝisdatigi viajn profildetalojn ĉe nia sistemo."
#: ../../mod/dfrn_confirm.php:730
#: ../../mod/dfrn_confirm.php:740
#, php-format
msgid "Connection accepted at %s"
msgstr "Konekto akceptita je %s"
#: ../../addon/facebook/facebook.php:467
#: ../../mod/dfrn_confirm.php:789
#, php-format
msgid "%1$s has joined %2$s"
msgstr "%1$s aliĝis al %2$s"
#: ../../addon/facebook/facebook.php:491
msgid "Facebook disabled"
msgstr "Facebook malŝaltita"
#: ../../addon/facebook/facebook.php:472
#: ../../addon/facebook/facebook.php:496
msgid "Updating contacts"
msgstr "Mi ĝisdatigas la kontaktojn."
#: ../../addon/facebook/facebook.php:493
#: ../../addon/facebook/facebook.php:516
msgid "Facebook API key is missing."
msgstr "La API ŝlosilo de Facebook ne estas konata ĉi tie."
#: ../../addon/facebook/facebook.php:500
#: ../../addon/facebook/facebook.php:523
msgid "Facebook Connect"
msgstr "Kontekto al Facebook"
#: ../../addon/facebook/facebook.php:506
#: ../../addon/facebook/facebook.php:529
msgid "Install Facebook connector for this account."
msgstr "Instali la Facebook konektilo por ĉi tiu konto."
#: ../../addon/facebook/facebook.php:513
#: ../../addon/facebook/facebook.php:536
msgid "Remove Facebook connector"
msgstr "Forigi la Facebook konektilon."
#: ../../addon/facebook/facebook.php:518
#: ../../addon/facebook/facebook.php:541
msgid ""
"Re-authenticate [This is necessary whenever your Facebook password is "
"changed.]"
msgstr "Reaŭtentiĝi [Tio estas bezonata ĉiam kiam vi ŝanĝis vian pasvorton ĉe Facebook.]"
#: ../../addon/facebook/facebook.php:525
#: ../../addon/facebook/facebook.php:548
msgid "Post to Facebook by default"
msgstr "Ĉiam afiŝi al Facebook."
#: ../../addon/facebook/facebook.php:529
#: ../../addon/facebook/facebook.php:552
msgid "Link all your Facebook friends and conversations on this website"
msgstr "Alligu ĉiujn viajn Facebook amikojn kaj konversaciojn je ĉi-tiu retejo."
#: ../../addon/facebook/facebook.php:531
#: ../../addon/facebook/facebook.php:554
msgid ""
"Facebook conversations consist of your <em>profile wall</em> and your friend"
" <em>stream</em>."
msgstr "Facebok konversacioj konsistas el via <em>profilmuro</em> kaj la <em>fluo</em> de viaj amikoj."
#: ../../addon/facebook/facebook.php:532
#: ../../addon/facebook/facebook.php:555
msgid "On this website, your Facebook friend stream is only visible to you."
msgstr "Je ĉi-tiu retejo, la fluo de viaj amikoj ĉe Facebook nur videblas al vi."
#: ../../addon/facebook/facebook.php:533
#: ../../addon/facebook/facebook.php:556
msgid ""
"The following settings determine the privacy of your Facebook profile wall "
"on this website."
msgstr "La sekvontaj agordoj difinas la privatecon de via Facebook profilmuro je ĉi-tiu retejo."
#: ../../addon/facebook/facebook.php:537
#: ../../addon/facebook/facebook.php:560
msgid ""
"On this website your Facebook profile wall conversations will only be "
"visible to you"
msgstr "Je ĉi-tiu retejo, la conversacioj sur via Facebook profilmuro nur videblas al vi."
#: ../../addon/facebook/facebook.php:542
#: ../../addon/facebook/facebook.php:565
msgid "Do not import your Facebook profile wall conversations"
msgstr "Ne importi konversaciojn de via Facebook profilmuro"
#: ../../addon/facebook/facebook.php:544
#: ../../addon/facebook/facebook.php:567
msgid ""
"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 "
@ -4179,114 +4326,120 @@ msgid ""
"who may see the conversations."
msgstr "Se vi elektas alligi conversaciojn kaj ne elektas tiujn butonojn, via Facebook profilmuro estas kunigota kun via profilmuro ĉi tie. Viaj privatecaj agordoj ĉi tie difinos kiu povas vidi la coversaciojn."
#: ../../addon/facebook/facebook.php:549
#: ../../addon/facebook/facebook.php:572
msgid "Comma separated applications to ignore"
msgstr "Ignorotaj programoj, disigita per komo"
#: ../../addon/facebook/facebook.php:623
#: ../../addon/facebook/facebook.php:656
msgid "Problems with Facebook Real-Time Updates"
msgstr "Problemoj kun Facebook Realtempaj Ĝisdatigoj"
#: ../../addon/facebook/facebook.php:647
#: ../../addon/facebook/facebook.php:684
#: ../../include/contact_selectors.php:81
msgid "Facebook"
msgstr "Facebook"
#: ../../addon/facebook/facebook.php:648
#: ../../addon/facebook/facebook.php:685
msgid "Facebook Connector Settings"
msgstr "Agordoj por la Facebook konektilo"
#: ../../addon/facebook/facebook.php:659
#: ../../addon/facebook/facebook.php:700
msgid "Facebook API Key"
msgstr "Facebook API ŝlosilo"
#: ../../addon/facebook/facebook.php:668
#: ../../addon/facebook/facebook.php:710
msgid ""
"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>"
msgstr "Eraro: Ŝajnas kvazaŭ vi agordis la App-ID kaj la sekreton en via .htconfig.php dosiero. Kiam ili estas agordita tie, vi ne povas agordi ĝin tra tiu ĉi formo.<br><br>"
#: ../../addon/facebook/facebook.php:673
#: ../../addon/facebook/facebook.php:715
msgid ""
"Error: the given API Key seems to be incorrect (the application access token"
" could not be retrieved)."
msgstr "Eraro: La API ŝlosilo aspektas malĝusta (ne eblas ricevi la programa atingoĵetono)."
#: ../../addon/facebook/facebook.php:675
#: ../../addon/facebook/facebook.php:717
msgid "The given API Key seems to work correctly."
msgstr "La API ŝlosilo ŝajne ĝuste funkcias."
#: ../../addon/facebook/facebook.php:677
#: ../../addon/facebook/facebook.php:719
msgid ""
"The correctness of the API Key could not be detected. Somthing strange's "
"going on."
msgstr "Ne povis kontroli la ĝustecon de la API ŝlosilo. Ia stranga afero okazas. "
#: ../../addon/facebook/facebook.php:680
#: ../../addon/facebook/facebook.php:722
msgid "App-ID / API-Key"
msgstr "Programo ID / API Ŝlosilo"
#: ../../addon/facebook/facebook.php:681
#: ../../addon/facebook/facebook.php:723
msgid "Application secret"
msgstr "Programo sekreto"
#: ../../addon/facebook/facebook.php:682
#: ../../addon/facebook/facebook.php:724
#, php-format
msgid "Polling Interval (min. %1$s minutes)"
msgstr "Intervalo por la enketilo (poller intervalo, minimume %1$s mintuoj) "
msgid "Polling Interval in minutes (minimum %1$s minutes)"
msgstr "Intervalo de enketo en minutoj (minimume %1$s minutoj)"
#: ../../addon/facebook/facebook.php:686
#: ../../addon/facebook/facebook.php:725
msgid ""
"Synchronize comments (no comments on Facebook are missed, at the cost of "
"increased system load)"
msgstr "Sinkronigi komentojn (vi ricevas ĉiujn komentojn de Facebook, sed la ŝargo de la sistemo iom kreskas)"
#: ../../addon/facebook/facebook.php:729
msgid "Real-Time Updates"
msgstr "Realtempaj Ĝisdatigoj"
#: ../../addon/facebook/facebook.php:690
#: ../../addon/facebook/facebook.php:733
msgid "Real-Time Updates are activated."
msgstr "Realtempaj Ĝisdatigoj estas ŝaltita"
#: ../../addon/facebook/facebook.php:691
#: ../../addon/facebook/facebook.php:734
msgid "Deactivate Real-Time Updates"
msgstr "Malŝalti Realtempaj Ĝisdatigoj"
#: ../../addon/facebook/facebook.php:693
#: ../../addon/facebook/facebook.php:736
msgid "Real-Time Updates not activated."
msgstr "Realtempaj Ĝisdatigoj estas malŝaltita"
#: ../../addon/facebook/facebook.php:693
#: ../../addon/facebook/facebook.php:736
msgid "Activate Real-Time Updates"
msgstr "Ŝalti Realtempaj Ĝisdatigoj"
#: ../../addon/facebook/facebook.php:707
#: ../../addon/facebook/facebook.php:755
msgid "The new values have been saved."
msgstr "Konservis novajn valorojn."
#: ../../addon/facebook/facebook.php:726
#: ../../addon/facebook/facebook.php:779
msgid "Post to Facebook"
msgstr "Afiŝi al Facebook"
#: ../../addon/facebook/facebook.php:818
#: ../../addon/facebook/facebook.php:877
msgid ""
"Post to Facebook cancelled because of multi-network access permission "
"conflict."
msgstr "Afiŝado al Facebook nuligita ĉar okazis konflikto en la multretpermesoj."
#: ../../addon/facebook/facebook.php:1039
#: ../../addon/facebook/facebook.php:1097
msgid "View on Friendica"
msgstr "Vidi ĉe Friendica"
#: ../../addon/facebook/facebook.php:1072
#: ../../addon/facebook/facebook.php:1130
msgid "Facebook post failed. Queued for retry."
msgstr "Malsukcesis afiŝi ĉe Facebook. Enigita en vico."
#: ../../addon/facebook/facebook.php:1108
#: ../../addon/facebook/facebook.php:1170
msgid "Your Facebook connection became invalid. Please Re-authenticate."
msgstr "Via Facbook konekto iĝis nevalida. Bonvolu reaŭtentiĝi."
#: ../../addon/facebook/facebook.php:1109
#: ../../addon/facebook/facebook.php:1171
msgid "Facebook connection became invalid"
msgstr "Facebook konekto iĝis nevalida."
#: ../../addon/facebook/facebook.php:1110
#: ../../addon/facebook/facebook.php:1172
#, php-format
msgid ""
"Hi %1$s,\n"
@ -4294,6 +4447,26 @@ msgid ""
"The connection between your accounts on %2$s and Facebook became invalid. This usually happens after you change your Facebook-password. To enable the connection again, you have to %3$sre-authenticate the Facebook-connector%4$s."
msgstr "Saluton %1$s,\n\nla kontekto inter viaj kontoj ĉe %2$s kaj Facebook malvalidiĝis. Tio kutime okazas post kiam via ŝangas vian pasvorton ĉe Facebook. Por reaktivigi la konekto, vi bezonas %3$sreaŭtentiĝi la Facebook konektilon%4$s."
#: ../../addon/privacy_image_cache/privacy_image_cache.php:144
msgid "Lifetime of the cache (in hours)"
msgstr "Vivodaŭro de kaŝmemoro (horoj)"
#: ../../addon/privacy_image_cache/privacy_image_cache.php:149
msgid "Cache Statistics"
msgstr "Statistikoj pri kaŝmemoro"
#: ../../addon/privacy_image_cache/privacy_image_cache.php:152
msgid "Number of items"
msgstr "Kvanto da eroj"
#: ../../addon/privacy_image_cache/privacy_image_cache.php:154
msgid "Size of the cache"
msgstr "Grando de la kaŝmemoro"
#: ../../addon/privacy_image_cache/privacy_image_cache.php:156
msgid "Delete the whole cache"
msgstr "Forviŝi la kaŝmemoron"
#: ../../addon/widgets/widget_like.php:58
#, php-format
msgid "%d person likes this"
@ -4308,6 +4481,10 @@ msgid_plural "%d people don't like this"
msgstr[0] "%d homo malŝatas tiun"
msgstr[1] "%d homo malŝatas tiun"
#: ../../addon/widgets/widget_friendheader.php:40
msgid "Get added to this list!"
msgstr "Iĝu membro de ĉi tiu listo!"
#: ../../addon/widgets/widgets.php:56
msgid "Generate new key"
msgstr "Generi novan ĉifroŝlosilon"
@ -4407,10 +4584,15 @@ msgstr "NSFW agordoj konservitaj."
msgid "%s - Click to open/close"
msgstr "%s - Klaku por malfermi/fermi"
#: ../../addon/page/page.php:47
#: ../../addon/page/page.php:48
msgid "Forums"
msgstr "Forumoj"
#: ../../addon/page/page.php:63 ../../addon/showmore/showmore.php:87
#: ../../include/conversation.php:466 ../../boot.php:507
msgid "show more"
msgstr "montri pli"
#: ../../addon/planets/planets.php:150
msgid "Planets Settings"
msgstr "Agordo pri Planets"
@ -4423,7 +4605,7 @@ msgstr "Ŝalti la Planets kromprogamon"
#: ../../addon/communityhome/communityhome.php:34
#: ../../addon/communityhome/twillingham/communityhome.php:28
#: ../../addon/communityhome/twillingham/communityhome.php:34
#: ../../include/nav.php:64 ../../boot.php:796
#: ../../include/nav.php:64 ../../boot.php:805
msgid "Login"
msgstr "Ensaluti"
@ -4451,10 +4633,7 @@ msgid "Latest likes"
msgstr "Ĵusaj ŝatitaĵoj"
#: ../../addon/communityhome/communityhome.php:155
#: ../../view/theme/diabook-red/theme.php:77
#: ../../view/theme/diabook-blue/theme.php:77
#: ../../view/theme/diabook/theme.php:83
#: ../../view/theme/diabook-aerith/theme.php:78 ../../include/text.php:1302
#: ../../view/theme/diabook/theme.php:400 ../../include/text.php:1302
#: ../../include/conversation.php:45 ../../include/conversation.php:118
msgid "event"
msgstr "okazo"
@ -4607,7 +4786,7 @@ msgid "Post to Drupal by default"
msgstr "Defaŭlte afiŝi ĉe Drupal"
#: ../../addon/drpost/drpost.php:184 ../../addon/wppost/wppost.php:190
#: ../../addon/blogger/blogger.php:172 ../../addon/posterous/posterous.php:173
#: ../../addon/blogger/blogger.php:172 ../../addon/posterous/posterous.php:177
msgid "Post from Friendica"
msgstr "Afiŝo de Friendica"
@ -4663,68 +4842,70 @@ msgstr "Uzi OEmbed por YouTube videtoj"
msgid "URL to embed:"
msgstr "Enigi la URL adreson:"
#: ../../addon/impressum/impressum.php:34
#: ../../addon/impressum/impressum.php:36
msgid "Impressum"
msgstr "Kolofono"
#: ../../addon/impressum/impressum.php:47
#: ../../addon/impressum/impressum.php:49
#: ../../addon/impressum/impressum.php:81
#: ../../addon/impressum/impressum.php:51
#: ../../addon/impressum/impressum.php:83
msgid "Site Owner"
msgstr "Proprietulo de la laĝo"
msgstr "Proprietulo de la paĝo"
#: ../../addon/impressum/impressum.php:47
#: ../../addon/impressum/impressum.php:85
#: ../../addon/impressum/impressum.php:49
#: ../../addon/impressum/impressum.php:87
msgid "Email Address"
msgstr "Retpoŝta Adreso"
#: ../../addon/impressum/impressum.php:52
#: ../../addon/impressum/impressum.php:83
#: ../../addon/impressum/impressum.php:54
#: ../../addon/impressum/impressum.php:85
msgid "Postal Address"
msgstr "Poŝta Adreso"
#: ../../addon/impressum/impressum.php:58
#: ../../addon/impressum/impressum.php:60
msgid ""
"The impressum addon needs to be configured!<br />Please add at least the "
"<tt>owner</tt> variable to your config file. For other variables please "
"refer to the README file of the addon."
msgstr "La kolofono (impressum) kromprogramo bezonas agordojn!<br />Bonvolu aldoni minimume la <tt>owner</tt> variablon al via agorda dosiero. Por aliaj variabloj, bonvolu legi la README dosieron de la kromprogramo."
#: ../../addon/impressum/impressum.php:81
#: ../../addon/impressum/impressum.php:83
msgid "The page operators name."
msgstr "La nomo de la funkciigisto de la retejo."
#: ../../addon/impressum/impressum.php:82
#: ../../addon/impressum/impressum.php:84
msgid "Site Owners Profile"
msgstr "Profilo de la Proprietulo de la Retejo"
#: ../../addon/impressum/impressum.php:82
#: ../../addon/impressum/impressum.php:84
msgid "Profile address of the operator."
msgstr "La profilo de la funkciigisto de la retejo."
#: ../../addon/impressum/impressum.php:83
msgid "How to contact the operator via snail mail."
msgstr "Kiel kontakti la funkciigiston de la retejo tra paperpoŝto."
#: ../../addon/impressum/impressum.php:85
msgid "How to contact the operator via snail mail. You can use BBCode here."
msgstr "Kiel poŝte kontakti la funkciigisto de la retejo. Vi eblas uzi BBCode ĉi tie."
#: ../../addon/impressum/impressum.php:84
#: ../../addon/impressum/impressum.php:86
msgid "Notes"
msgstr "Notoj"
#: ../../addon/impressum/impressum.php:84
msgid "Additional notes that are displayed beneath the contact information."
msgstr "Pliaj notoj kiuj estas montrigota malsupre la kontaktinformojn."
#: ../../addon/impressum/impressum.php:86
msgid ""
"Additional notes that are displayed beneath the contact information. You can"
" use BBCode here."
msgstr "Pli da notoj kiuj aperas sub la kontaktinformoj. Vi eblas uzi BBCode ĉi tie."
#: ../../addon/impressum/impressum.php:85
#: ../../addon/impressum/impressum.php:87
msgid "How to contact the operator via email. (will be displayed obfuscated)"
msgstr "Kiel kontakti la funkciigiston de la retejo tra retpoŝto. (montriĝos vuale) "
#: ../../addon/impressum/impressum.php:86
#: ../../addon/impressum/impressum.php:88
msgid "Footer note"
msgstr "Paĝpiednoto"
#: ../../addon/impressum/impressum.php:86
msgid "Text for the footer."
msgstr "Teksto por la paĝpiedo."
#: ../../addon/impressum/impressum.php:88
msgid "Text for the footer. You can use BBCode here."
msgstr "Teksto por la paĝpiedo. Vie eblas uzi BBCode ĉi tie."
#: ../../addon/buglink/buglink.php:15
msgid "Report Bug"
@ -4818,11 +4999,11 @@ msgstr "La Mathjax kromprogramo bildigas matematikajn formulojn skribitajn en la
msgid "Use the MathJax renderer"
msgstr "Ĉu uzi la Mathjax bildigilo"
#: ../../addon/mathjax/mathjax.php:72
#: ../../addon/mathjax/mathjax.php:74
msgid "MathJax Base URL"
msgstr "Mathjax Baza URL Adreso"
#: ../../addon/mathjax/mathjax.php:72
#: ../../addon/mathjax/mathjax.php:74
msgid ""
"The URL for the javascript file that should be included to use MathJax. Can "
"be either the MathJax CDN or another installation of MathJax."
@ -5161,11 +5342,6 @@ msgstr "Limitigi afiŝojn al kiom da literoj"
msgid "Show More Settings saved."
msgstr "Konservis \"montri pli\" agordojn."
#: ../../addon/showmore/showmore.php:87 ../../include/conversation.php:466
#: ../../boot.php:496
msgid "show more"
msgstr "montri pli"
#: ../../addon/piwik/piwik.php:79
msgid ""
"This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> "
@ -5348,187 +5524,112 @@ msgstr "Posterous pasvorto"
msgid "Post to Posterous by default"
msgstr "Defaŭlte afiŝi al Posterous"
#: ../../view/theme/diabook-red/theme.php:26
#: ../../view/theme/diabook-blue/theme.php:26
#: ../../view/theme/diabook/theme.php:32
#: ../../view/theme/diabook-aerith/theme.php:27
msgid "Last users"
msgstr "Ĵusaj uzantoj"
#: ../../view/theme/cleanzero/config.php:73
#: ../../view/theme/diabook/config.php:93
#: ../../view/theme/quattro/config.php:54 ../../view/theme/dispy/config.php:72
msgid "Theme settings"
msgstr "Agordoj pri la etoso"
#: ../../view/theme/diabook-red/theme.php:55
#: ../../view/theme/diabook-blue/theme.php:55
#: ../../view/theme/diabook/theme.php:61
#: ../../view/theme/diabook-aerith/theme.php:56
msgid "Last likes"
msgstr "Ĵusaj ŝatitaj elementoj"
#: ../../view/theme/cleanzero/config.php:74
msgid "Set resize level for images in posts and comments (width and height)"
msgstr "Agordi la regrandignivelo por bildoj en afiŝoj kaj komentoj (larĝo kaj alto)"
#: ../../view/theme/diabook-red/theme.php:100
#: ../../view/theme/diabook-blue/theme.php:100
#: ../../view/theme/diabook/theme.php:106
#: ../../view/theme/diabook-aerith/theme.php:101
msgid "Last photos"
msgstr "Ĵusaj bildoj"
#: ../../view/theme/cleanzero/config.php:75
#: ../../view/theme/diabook/config.php:94 ../../view/theme/dispy/config.php:73
msgid "Set font-size for posts and comments"
msgstr "Agordi la tiparan grandon por afiŝoj kaj komentoj"
#: ../../view/theme/diabook-red/theme.php:145
#: ../../view/theme/diabook-blue/theme.php:145
#: ../../view/theme/diabook/theme.php:151
#: ../../view/theme/diabook-aerith/theme.php:146
msgid "Find Friends"
msgstr "Trovi Amikojn"
#: ../../view/theme/cleanzero/config.php:76
#: ../../view/theme/quattro/config.php:56
msgid "Color scheme"
msgstr "Kolorskemo"
#: ../../view/theme/diabook-red/theme.php:146
#: ../../view/theme/diabook-blue/theme.php:146
#: ../../view/theme/diabook/theme.php:152
#: ../../view/theme/diabook-aerith/theme.php:147
msgid "Local Directory"
msgstr "Loka Katalogo"
#: ../../view/theme/diabook-red/theme.php:148
#: ../../view/theme/diabook-blue/theme.php:148
#: ../../view/theme/diabook/theme.php:154
#: ../../view/theme/diabook-aerith/theme.php:149
#: ../../include/contact_widgets.php:35
msgid "Similar Interests"
msgstr "Similaj Interesoj"
#: ../../view/theme/diabook-red/theme.php:150
#: ../../view/theme/diabook-blue/theme.php:150
#: ../../view/theme/diabook/theme.php:156
#: ../../view/theme/diabook-aerith/theme.php:151
#: ../../include/contact_widgets.php:37
msgid "Invite Friends"
msgstr "Inviti amikojn"
#: ../../view/theme/diabook-red/theme.php:165
#: ../../view/theme/diabook-red/theme.php:246
#: ../../view/theme/diabook-blue/theme.php:165
#: ../../view/theme/diabook-blue/theme.php:246
#: ../../view/theme/diabook/theme.php:172
#: ../../view/theme/diabook/theme.php:256
#: ../../view/theme/diabook-aerith/theme.php:166
#: ../../view/theme/diabook-aerith/theme.php:247
msgid "Community Pages"
msgstr "Komunumaj paĝoj"
#: ../../view/theme/diabook-red/theme.php:198
#: ../../view/theme/diabook-blue/theme.php:198
#: ../../view/theme/diabook/theme.php:205
#: ../../view/theme/diabook-aerith/theme.php:199
msgid "Help or @NewHere ?"
msgstr "Helpu aŭ @NewHere ?"
#: ../../view/theme/diabook-red/theme.php:204
#: ../../view/theme/diabook-blue/theme.php:204
#: ../../view/theme/diabook/theme.php:211
#: ../../view/theme/diabook-aerith/theme.php:205
msgid "Connect Services"
msgstr "Konekti Servojn"
#: ../../view/theme/diabook-red/theme.php:210
#: ../../view/theme/diabook-blue/theme.php:210
#: ../../view/theme/diabook/theme.php:217
#: ../../view/theme/diabook-aerith/theme.php:211
msgid "PostIt to Friendica"
msgstr "PostIt al Friendica"
#: ../../view/theme/diabook-red/theme.php:210
#: ../../view/theme/diabook-blue/theme.php:210
#: ../../view/theme/diabook/theme.php:217
#: ../../view/theme/diabook-aerith/theme.php:211
msgid "Post to Friendica"
msgstr "Afiŝi al Friendica"
#: ../../view/theme/diabook-red/theme.php:211
#: ../../view/theme/diabook-blue/theme.php:211
#: ../../view/theme/diabook/theme.php:218
#: ../../view/theme/diabook-aerith/theme.php:212
msgid " from anywhere by bookmarking this Link."
msgstr " de iu kun ĉi tio ligilo."
#: ../../view/theme/diabook-red/theme.php:239
#: ../../view/theme/diabook-blue/theme.php:239
#: ../../view/theme/diabook/theme.php:249
#: ../../view/theme/diabook-aerith/theme.php:240 ../../include/nav.php:49
#: ../../view/theme/diabook/theme.php:65 ../../include/nav.php:49
#: ../../include/nav.php:115
msgid "Your posts and conversations"
msgstr "Viaj afiŝoj kaj komunikadoj"
#: ../../view/theme/diabook-red/theme.php:240
#: ../../view/theme/diabook-blue/theme.php:240
#: ../../view/theme/diabook/theme.php:250
#: ../../view/theme/diabook-aerith/theme.php:241 ../../include/nav.php:50
#: ../../view/theme/diabook/theme.php:66 ../../include/nav.php:50
msgid "Your profile page"
msgstr "Via profilo"
#: ../../view/theme/diabook-red/theme.php:241
#: ../../view/theme/diabook-blue/theme.php:241
#: ../../view/theme/diabook/theme.php:251
#: ../../view/theme/diabook-aerith/theme.php:242
#: ../../view/theme/diabook/theme.php:67
msgid "Your contacts"
msgstr "Viaj kontaktoj"
#: ../../view/theme/diabook-red/theme.php:242
#: ../../view/theme/diabook-blue/theme.php:242
#: ../../view/theme/diabook/theme.php:252
#: ../../view/theme/diabook-aerith/theme.php:243 ../../include/nav.php:51
#: ../../boot.php:1463
msgid "Photos"
msgstr "Bildoj"
#: ../../view/theme/diabook-red/theme.php:242
#: ../../view/theme/diabook-blue/theme.php:242
#: ../../view/theme/diabook/theme.php:252
#: ../../view/theme/diabook-aerith/theme.php:243 ../../include/nav.php:51
#: ../../view/theme/diabook/theme.php:68 ../../include/nav.php:51
msgid "Your photos"
msgstr "Viaj bildoj"
#: ../../view/theme/diabook-red/theme.php:243
#: ../../view/theme/diabook-blue/theme.php:243
#: ../../view/theme/diabook/theme.php:253
#: ../../view/theme/diabook-aerith/theme.php:244 ../../include/nav.php:52
#: ../../view/theme/diabook/theme.php:69 ../../include/nav.php:52
msgid "Your events"
msgstr "Viaj okazoj"
#: ../../view/theme/diabook-red/theme.php:244
#: ../../view/theme/diabook-blue/theme.php:244
#: ../../view/theme/diabook/theme.php:254
#: ../../view/theme/diabook-aerith/theme.php:245 ../../include/nav.php:53
#: ../../view/theme/diabook/theme.php:70 ../../include/nav.php:53
msgid "Personal notes"
msgstr "Personaj notoj"
#: ../../view/theme/diabook-red/theme.php:244
#: ../../view/theme/diabook-blue/theme.php:244
#: ../../view/theme/diabook/theme.php:254
#: ../../view/theme/diabook-aerith/theme.php:245 ../../include/nav.php:53
#: ../../view/theme/diabook/theme.php:70 ../../include/nav.php:53
msgid "Your personal photos"
msgstr "Viaj personaj bildoj"
#: ../../view/theme/diabook-red/config.php:66
#: ../../view/theme/diabook-blue/config.php:66
#: ../../view/theme/diabook/config.php:78
#: ../../view/theme/quattro/config.php:54
#: ../../view/theme/diabook-aerith/config.php:66
msgid "Theme settings"
msgstr "Agordoj pri la etoso"
#: ../../view/theme/diabook/theme.php:72
#: ../../view/theme/diabook/theme.php:481
msgid "Community Pages"
msgstr "Komunumaj paĝoj"
#: ../../view/theme/diabook-red/config.php:67
#: ../../view/theme/diabook-blue/config.php:67
#: ../../view/theme/diabook/config.php:79
#: ../../view/theme/diabook-aerith/config.php:67
msgid "Set font-size for posts and comments"
msgstr "Agordi la tiparan grandon por afiŝoj kaj komentoj"
#: ../../view/theme/diabook/theme.php:328
msgid "Community Profiles"
msgstr "Komunumaj Profiloj"
#: ../../view/theme/diabook-red/config.php:68
#: ../../view/theme/diabook-blue/config.php:68
#: ../../view/theme/diabook/config.php:80
#: ../../view/theme/diabook-aerith/config.php:68
#: ../../view/theme/diabook/theme.php:349
msgid "Last users"
msgstr "Ĵusaj uzantoj"
#: ../../view/theme/diabook/theme.php:378
msgid "Last likes"
msgstr "Ĵusaj ŝatitaj elementoj"
#: ../../view/theme/diabook/theme.php:423
msgid "Last photos"
msgstr "Ĵusaj bildoj"
#: ../../view/theme/diabook/theme.php:460
msgid "Find Friends"
msgstr "Trovi Amikojn"
#: ../../view/theme/diabook/theme.php:461
msgid "Local Directory"
msgstr "Loka Katalogo"
#: ../../view/theme/diabook/theme.php:463 ../../include/contact_widgets.php:35
msgid "Similar Interests"
msgstr "Similaj Interesoj"
#: ../../view/theme/diabook/theme.php:465 ../../include/contact_widgets.php:37
msgid "Invite Friends"
msgstr "Inviti amikojn"
#: ../../view/theme/diabook/theme.php:515
msgid "Help or @NewHere ?"
msgstr "Helpu aŭ @NewHere ?"
#: ../../view/theme/diabook/theme.php:522
msgid "Connect Services"
msgstr "Konekti Servojn"
#: ../../view/theme/diabook/config.php:95 ../../view/theme/dispy/config.php:74
msgid "Set line-height for posts and comments"
msgstr "Agordi la linigrandon por afiŝoj kaj komentoj"
#: ../../view/theme/diabook/config.php:81
#: ../../view/theme/diabook/config.php:96
msgid "Set resolution for middle column"
msgstr "Agordi la distingivon por la meza kolumno"
#: ../../view/theme/diabook/config.php:97
msgid "Set color scheme"
msgstr "Agordi Kolorskemon"
#: ../../view/theme/quattro/config.php:55
msgid "Alignment"
msgstr "Ĝisrandigo"
@ -5541,11 +5642,11 @@ msgstr "Maldekstren"
msgid "Center"
msgstr "Centren"
#: ../../view/theme/quattro/config.php:56
msgid "Color scheme"
msgstr "Kolorskemo"
#: ../../view/theme/dispy/config.php:75
msgid "Set colour scheme"
msgstr "Agordi Kolorskemon"
#: ../../include/profile_advanced.php:17 ../../boot.php:1085
#: ../../include/profile_advanced.php:17 ../../boot.php:1094
msgid "Gender:"
msgstr "Sekso:"
@ -5558,7 +5659,7 @@ msgid "j F"
msgstr "j F"
#: ../../include/profile_advanced.php:30 ../../include/datetime.php:448
#: ../../include/items.php:1402
#: ../../include/items.php:1403
msgid "Birthday:"
msgstr "Naskiĝtago:"
@ -5566,11 +5667,11 @@ msgstr "Naskiĝtago:"
msgid "Age:"
msgstr "Aĝo:"
#: ../../include/profile_advanced.php:37 ../../boot.php:1088
#: ../../include/profile_advanced.php:37 ../../boot.php:1097
msgid "Status:"
msgstr "Stato:"
#: ../../include/profile_advanced.php:45 ../../boot.php:1090
#: ../../include/profile_advanced.php:45 ../../boot.php:1099
msgid "Homepage:"
msgstr "Hejmpaĝo:"
@ -5750,179 +5851,179 @@ msgstr "Alia"
msgid "Undecided"
msgstr "Nedecida"
#: ../../include/profile_selectors.php:19
#: ../../include/profile_selectors.php:21
msgid "Males"
msgstr "Viroj"
#: ../../include/profile_selectors.php:19
#: ../../include/profile_selectors.php:21
msgid "Females"
msgstr "Inoj"
#: ../../include/profile_selectors.php:19
#: ../../include/profile_selectors.php:21
msgid "Gay"
msgstr "Geja"
#: ../../include/profile_selectors.php:19
#: ../../include/profile_selectors.php:21
msgid "Lesbian"
msgstr "Lesba"
#: ../../include/profile_selectors.php:19
#: ../../include/profile_selectors.php:21
msgid "No Preference"
msgstr "Neniu Prefero"
#: ../../include/profile_selectors.php:19
#: ../../include/profile_selectors.php:21
msgid "Bisexual"
msgstr "Ambaŭseksema"
#: ../../include/profile_selectors.php:19
#: ../../include/profile_selectors.php:21
msgid "Autosexual"
msgstr "Memseksema"
#: ../../include/profile_selectors.php:19
#: ../../include/profile_selectors.php:21
msgid "Abstinent"
msgstr "Abstinema"
#: ../../include/profile_selectors.php:19
#: ../../include/profile_selectors.php:21
msgid "Virgin"
msgstr "Virgulino"
#: ../../include/profile_selectors.php:19
#: ../../include/profile_selectors.php:21
msgid "Deviant"
msgstr "Devia"
#: ../../include/profile_selectors.php:19
#: ../../include/profile_selectors.php:21
msgid "Fetish"
msgstr "Fetiĉo"
#: ../../include/profile_selectors.php:19
#: ../../include/profile_selectors.php:21
msgid "Oodles"
msgstr "Amasa"
#: ../../include/profile_selectors.php:19
#: ../../include/profile_selectors.php:21
msgid "Nonsexual"
msgstr "Neseksa"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Single"
msgstr "Sola"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Lonely"
msgstr "Soleca"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Available"
msgstr "Havebla"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Unavailable"
msgstr "Nehavebla"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Has crush"
msgstr "Sekrete enamiĝinta"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Infatuated"
msgstr "Blinda amo"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Dating"
msgstr "Rendevuanta"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Unfaithful"
msgstr "Malfidela"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Sex Addict"
msgstr "Seksmaniulo"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Friends"
msgstr "Amikoj"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Friends/Benefits"
msgstr "Amikoj/Avantaĝoj"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Casual"
msgstr "Neformala"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Engaged"
msgstr "Fianĉiginta"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Married"
msgstr "Edziĝinta"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Imaginarily married"
msgstr "Image edziĝinta"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Partners"
msgstr "Geparuloj"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Cohabiting"
msgstr "Kunloĝanta"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Common law"
msgstr "Registrita partnereco "
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Happy"
msgstr "Feliĉa"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Not looking"
msgstr "Ne interesiĝis"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Swinger"
msgstr "Swinger"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Betrayed"
msgstr "Trompita"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Separated"
msgstr "Disiĝinta"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Unstable"
msgstr "Malfirma"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Divorced"
msgstr "Eksedziĝinta"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Imaginarily divorced"
msgstr "Image eksedziĝinta"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Widowed"
msgstr "Vidva"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Uncertain"
msgstr "Ne certa"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "It's complicated"
msgstr "Estas komplika"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Don't care"
msgstr "Egala"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:37
msgid "Ask me"
msgstr "Demandu min"
@ -5934,12 +6035,12 @@ msgstr "Ekas:"
msgid "Finishes:"
msgstr "Finas:"
#: ../../include/delivery.php:434 ../../include/notifier.php:651
#: ../../include/delivery.php:434 ../../include/notifier.php:652
msgid "(no subject)"
msgstr "(neniu temo)"
#: ../../include/delivery.php:441 ../../include/enotify.php:23
#: ../../include/notifier.php:658
#: ../../include/notifier.php:659
msgid "noreply"
msgstr "nerespondi"
@ -6111,7 +6212,7 @@ msgstr "Kunsendaĵoj:"
msgid "[Relayed] Comment authored by %s from network %s"
msgstr "[Plusendita] %s en la reto %s skribis komenton"
#: ../../include/network.php:823
#: ../../include/network.php:824
msgid "view full size"
msgstr "vidi plengrande"
@ -6154,7 +6255,7 @@ msgstr "Krei novan grupon"
msgid "Contacts not in any group"
msgstr "Kontaktoj en neniu grupo"
#: ../../include/nav.php:46 ../../boot.php:795
#: ../../include/nav.php:46 ../../boot.php:804
msgid "Logout"
msgstr "Elsaluti"
@ -6162,7 +6263,7 @@ msgstr "Elsaluti"
msgid "End this session"
msgstr "Fini ĉi-tiun seancon"
#: ../../include/nav.php:49 ../../boot.php:1453
#: ../../include/nav.php:49 ../../boot.php:1472
msgid "Status"
msgstr "Stato"
@ -6242,11 +6343,11 @@ msgstr "Administri"
msgid "Manage other pages"
msgstr "Administri aliajn paĝojn"
#: ../../include/nav.php:138 ../../boot.php:1043
#: ../../include/nav.php:138 ../../boot.php:1052
msgid "Profiles"
msgstr "Profiloj:"
msgstr "Profiloj"
#: ../../include/nav.php:138 ../../boot.php:1043
#: ../../include/nav.php:138 ../../boot.php:1052
msgid "Manage/edit profiles"
msgstr "Administri/redakti profilojn"
@ -6325,6 +6426,13 @@ msgstr "Ĉio"
msgid "Categories"
msgstr "Kategorioj"
#: ../../include/contact_widgets.php:183
#, php-format
msgid "%d friend in common"
msgid_plural "%d friends in common"
msgstr[0] "%d komuna amiko"
msgstr[1] "%d komunaj amikoj"
#: ../../include/auth.php:29
msgid "Logged out."
msgstr "Elsalutita."
@ -6412,7 +6520,7 @@ msgstr "sekundoj"
msgid "%1$d %2$s ago"
msgstr "antaŭ %1$d %2$s"
#: ../../include/poller.php:543
#: ../../include/onepoll.php:402
msgid "From: "
msgstr "De: "
@ -6420,7 +6528,7 @@ msgstr "De: "
msgid "$1 wrote:"
msgstr "$1 skribis:"
#: ../../include/bbcode.php:238 ../../include/bbcode.php:304
#: ../../include/bbcode.php:238 ../../include/bbcode.php:307
msgid "Image/photo"
msgstr "Bildo"
@ -6439,11 +6547,11 @@ msgstr "Videbla al ĉiuj"
#: ../../include/acl_selectors.php:287
msgid "show"
msgstr "montru"
msgstr "montri"
#: ../../include/acl_selectors.php:288
msgid "don't show"
msgstr "ne montru"
msgstr "kaŝi"
#: ../../include/enotify.php:14
msgid "Friendica Notification"
@ -6633,11 +6741,11 @@ msgstr "Bildo:"
msgid "Please visit %s to approve or reject the suggestion."
msgstr "Bonvolu viziti %s por aprobi aŭ malaprobi la sugeston."
#: ../../include/items.php:2697
#: ../../include/items.php:2714
msgid "A new person is sharing with you at "
msgstr "Nova persono kunhavigas kun vi ĉe "
#: ../../include/items.php:2697
#: ../../include/items.php:2714
msgid "You have a new follower at "
msgstr "Vi havas novan sekvanton ĉe "
@ -6668,30 +6776,34 @@ msgid ""
"form has been opened for too long (>3 hours) before submitting it."
msgstr "La sekuriga ĵetono de la formo estis malĝusta. Tio verŝajne okazis ĉar la formo estis malfermita dum tro longa tempo (>3 horoj) antaŭ la sendado."
#: ../../include/Contact.php:145 ../../include/conversation.php:809
#: ../../include/Contact.php:111
msgid "stopped following"
msgstr "ne plu sekvas"
#: ../../include/Contact.php:203 ../../include/conversation.php:817
msgid "View Status"
msgstr "Vidi Staton"
#: ../../include/Contact.php:146 ../../include/conversation.php:810
#: ../../include/Contact.php:204 ../../include/conversation.php:818
msgid "View Profile"
msgstr "Vidi Profilon"
#: ../../include/Contact.php:147 ../../include/conversation.php:811
#: ../../include/Contact.php:205 ../../include/conversation.php:819
msgid "View Photos"
msgstr "Vidi Bildojn"
#: ../../include/Contact.php:148 ../../include/Contact.php:161
#: ../../include/conversation.php:812
#: ../../include/Contact.php:206 ../../include/Contact.php:219
#: ../../include/conversation.php:820
msgid "Network Posts"
msgstr "Enretaj Afiŝoj"
#: ../../include/Contact.php:149 ../../include/Contact.php:161
#: ../../include/conversation.php:813
#: ../../include/Contact.php:207 ../../include/Contact.php:219
#: ../../include/conversation.php:821
msgid "Edit Contact"
msgstr "Redakti Kontakton"
#: ../../include/Contact.php:150 ../../include/Contact.php:161
#: ../../include/conversation.php:814
#: ../../include/Contact.php:208 ../../include/Contact.php:219
#: ../../include/conversation.php:822
msgid "Send PM"
msgstr "Sendi PM"
@ -6704,22 +6816,22 @@ msgstr "afiŝo/elemento"
msgid "%1$s marked %2$s's %3$s as favorite"
msgstr "%1$s markis la %3$s de %2$s kiel preferita."
#: ../../include/conversation.php:317 ../../include/conversation.php:575
#: ../../include/conversation.php:317 ../../include/conversation.php:583
msgid "Select"
msgstr "Elekti"
#: ../../include/conversation.php:334 ../../include/conversation.php:668
#: ../../include/conversation.php:669
#: ../../include/conversation.php:334 ../../include/conversation.php:676
#: ../../include/conversation.php:677
#, php-format
msgid "View %s's profile @ %s"
msgstr "Vidi la profilon de %s ĉe %s"
#: ../../include/conversation.php:344 ../../include/conversation.php:680
#: ../../include/conversation.php:344 ../../include/conversation.php:688
#, php-format
msgid "%s from %s"
msgstr "%s de %s"
#: ../../include/conversation.php:360
#: ../../include/conversation.php:359
msgid "View in context"
msgstr "Vidi kun kunteksto"
@ -6746,209 +6858,267 @@ msgstr "Kunhavigi ĉi tiun"
msgid "share"
msgstr "kunhavigi"
#: ../../include/conversation.php:588
#: ../../include/conversation.php:556
msgid "Bold"
msgstr "Grasa"
#: ../../include/conversation.php:557
msgid "Italic"
msgstr "Kursiva"
#: ../../include/conversation.php:558
msgid "Underline"
msgstr "Substreki"
#: ../../include/conversation.php:559
msgid "Quote"
msgstr "Citaĵo"
#: ../../include/conversation.php:560
msgid "Code"
msgstr "Kodo"
#: ../../include/conversation.php:561
msgid "Image"
msgstr "Bildo"
#: ../../include/conversation.php:562
msgid "Link"
msgstr "Ligilo"
#: ../../include/conversation.php:563
msgid "Video"
msgstr "Video"
#: ../../include/conversation.php:596
msgid "add star"
msgstr "aldoni stelon"
#: ../../include/conversation.php:589
#: ../../include/conversation.php:597
msgid "remove star"
msgstr "forpreni stelon"
#: ../../include/conversation.php:590
#: ../../include/conversation.php:598
msgid "toggle star status"
msgstr "ŝalti/malŝalti steloŝtato"
#: ../../include/conversation.php:593
#: ../../include/conversation.php:601
msgid "starred"
msgstr "steligita"
#: ../../include/conversation.php:594
#: ../../include/conversation.php:602
msgid "add tag"
msgstr "aldoni markon"
#: ../../include/conversation.php:598
#: ../../include/conversation.php:606
msgid "save to folder"
msgstr "konservi en dosierujo"
#: ../../include/conversation.php:670
#: ../../include/conversation.php:678
msgid "to"
msgstr "al"
#: ../../include/conversation.php:671
#: ../../include/conversation.php:679
msgid "Wall-to-Wall"
msgstr "Muro-al-Muro"
#: ../../include/conversation.php:672
#: ../../include/conversation.php:680
msgid "via Wall-To-Wall:"
msgstr "tra Muro-al-Muro:"
#: ../../include/conversation.php:717
#: ../../include/conversation.php:725
msgid "Delete Selected Items"
msgstr "Forviŝi Elektitajn Elementojn"
#: ../../include/conversation.php:868
#: ../../include/conversation.php:876
#, php-format
msgid "%s likes this."
msgstr "%s ŝatas tiun."
#: ../../include/conversation.php:868
#: ../../include/conversation.php:876
#, php-format
msgid "%s doesn't like this."
msgstr "%s malŝatas tiun."
#: ../../include/conversation.php:872
#: ../../include/conversation.php:880
#, php-format
msgid "<span %1$s>%2$d people</span> like this."
msgstr "<span %1$s>%2$d homoj</span> ŝatas tiun."
#: ../../include/conversation.php:874
#: ../../include/conversation.php:882
#, php-format
msgid "<span %1$s>%2$d people</span> don't like this."
msgstr "<span %1$s>%2$d homoj</span>malŝatas tiun."
#: ../../include/conversation.php:880
#: ../../include/conversation.php:888
msgid "and"
msgstr "kaj"
#: ../../include/conversation.php:883
#: ../../include/conversation.php:891
#, php-format
msgid ", and %d other people"
msgstr ", kaj %d aliaj homoj."
#: ../../include/conversation.php:884
#: ../../include/conversation.php:892
#, php-format
msgid "%s like this."
msgstr "%s ŝatas tiun."
#: ../../include/conversation.php:884
#: ../../include/conversation.php:892
#, php-format
msgid "%s don't like this."
msgstr "%s malŝatas tiun."
#: ../../include/conversation.php:909
#: ../../include/conversation.php:917
msgid "Visible to <strong>everybody</strong>"
msgstr "Videbla al <strong>ĉiuj</strong>"
#: ../../include/conversation.php:911
#: ../../include/conversation.php:919
msgid "Please enter a video link/URL:"
msgstr "Bonvolu entajpi ligilon/adreson de video:"
#: ../../include/conversation.php:912
#: ../../include/conversation.php:920
msgid "Please enter an audio link/URL:"
msgstr "Bonvolu entajpi ligilon/adreson de sono:"
#: ../../include/conversation.php:913
#: ../../include/conversation.php:921
msgid "Tag term:"
msgstr "Markfrazo:"
#: ../../include/conversation.php:915
#: ../../include/conversation.php:923
msgid "Where are you right now?"
msgstr "Kie vi estas nun?"
#: ../../include/conversation.php:958
#: ../../include/conversation.php:966
msgid "upload photo"
msgstr "alŝuti bildon"
#: ../../include/conversation.php:960
#: ../../include/conversation.php:968
msgid "attach file"
msgstr "kunsendi dosieron"
#: ../../include/conversation.php:962
#: ../../include/conversation.php:970
msgid "web link"
msgstr "TTT ligilo"
#: ../../include/conversation.php:963
#: ../../include/conversation.php:971
msgid "Insert video link"
msgstr "Alglui ligilon de video"
#: ../../include/conversation.php:964
#: ../../include/conversation.php:972
msgid "video link"
msgstr "video ligilo"
#: ../../include/conversation.php:965
#: ../../include/conversation.php:973
msgid "Insert audio link"
msgstr "Alglui ligilon de sono"
#: ../../include/conversation.php:966
#: ../../include/conversation.php:974
msgid "audio link"
msgstr "sono ligilo"
#: ../../include/conversation.php:968
#: ../../include/conversation.php:976
msgid "set location"
msgstr "agordi lokon"
#: ../../include/conversation.php:970
#: ../../include/conversation.php:978
msgid "clear location"
msgstr "forviŝi lokon"
#: ../../include/conversation.php:977
#: ../../include/conversation.php:985
msgid "permissions"
msgstr "permesoj"
#: ../../boot.php:494
#: ../../boot.php:505
msgid "Delete this item?"
msgstr "Forviŝi ĉi tiun elementon?"
#: ../../boot.php:497
#: ../../boot.php:508
msgid "show fewer"
msgstr "montri malpli"
#: ../../boot.php:774
#: ../../boot.php:681
#, php-format
msgid "Update %s failed. See error logs."
msgstr "Malsukcesis ĝisdatigi %s. Vidu la protokolojn."
#: ../../boot.php:683
#, php-format
msgid "Update Error at %s"
msgstr "Eraro dum ĝisdatigo ĉe %s"
#: ../../boot.php:783
msgid "Create a New Account"
msgstr "Krei Novan Konton"
#: ../../boot.php:798
#: ../../boot.php:807
msgid "Nickname or Email address: "
msgstr "Kaŝnomo aŭ retpoŝtadreso:"
#: ../../boot.php:799
#: ../../boot.php:808
msgid "Password: "
msgstr "Pasvorto:"
#: ../../boot.php:802
#: ../../boot.php:811
msgid "Or login using OpenID: "
msgstr "Aŭ ensaluti per OpenID:"
#: ../../boot.php:808
#: ../../boot.php:817
msgid "Forgot your password?"
msgstr "Ĉu vi vorgesis vian pasvorton?"
#: ../../boot.php:975
#: ../../boot.php:984
msgid "Edit profile"
msgstr "Redakti profilon"
#: ../../boot.php:1035
#: ../../boot.php:1044
msgid "Message"
msgstr "Mesaĝo"
#: ../../boot.php:1151 ../../boot.php:1223
#: ../../boot.php:1160 ../../boot.php:1236
msgid "g A l F d"
msgstr "\\j\\e \\l\\a G\\a \\h\\o\\r\\o, l F d"
#: ../../boot.php:1152 ../../boot.php:1224
#: ../../boot.php:1161 ../../boot.php:1237
msgid "F d"
msgstr "F d"
#: ../../boot.php:1177
msgid "Birthday Reminders"
msgstr "Memorigilo pri naskiĝtagoj"
#: ../../boot.php:1178
msgid "Birthdays this week:"
msgstr "Naskiĝtagoj ĉi-semajne:"
#: ../../boot.php:1201 ../../boot.php:1266
#: ../../boot.php:1206 ../../boot.php:1277
msgid "[today]"
msgstr "[hodiaŭ]"
#: ../../boot.php:1247
#: ../../boot.php:1218
msgid "Birthday Reminders"
msgstr "Memorigilo pri naskiĝtagoj"
#: ../../boot.php:1219
msgid "Birthdays this week:"
msgstr "Naskiĝtagoj ĉi-semajne:"
#: ../../boot.php:1270
msgid "[No description]"
msgstr "[Neniu priskribo]"
#: ../../boot.php:1288
msgid "Event Reminders"
msgstr "Memorigiloj pri Okazoj"
#: ../../boot.php:1248
#: ../../boot.php:1289
msgid "Events this week:"
msgstr "Okazoj ĉi-semajne:"
#: ../../boot.php:1260
msgid "[No description]"
msgstr "[Neniu priskribo]"
#: ../../boot.php:1475
msgid "Status Messages and Posts"
msgstr "Ŝtatmesaĝoj kaj Afiŝoj"
#: ../../boot.php:1481
msgid "Profile Details"
msgstr "Profildetaloj"
#: ../../boot.php:1496
msgid "Events and Calendar"
msgstr "Okazoj kaj Kalendaro"
#: ../../boot.php:1502
msgid "Only You Can See This"
msgstr "Nur Vi Povas Vidi Tiun"

View file

@ -0,0 +1,20 @@
Kara $[username],
Via pasvorto estas ŝanĝita laŭ via peto. Bonvolu konservi ĉi tiun
informon (aŭ tuj ŝanĝu vian pasvorton al
iu kiun vi povas memori).
Jen viaj legitimaĵoj:
Retejo:»$[siteurl]
Salutnomo:»$[email]
Pasvorto:»$[new_password]
Vi eblas ŝanĝi la pasvorton ĉe la paĝo Agordoj -> Konto kiam vi estas ensalutita.
Salutoj,
$[sitename] administranto

View file

@ -0,0 +1,34 @@
Kara $[username],
Dankon pro via registrado ĉe $[sitename]. Vian konton estas kreita.
Jen viaj legitimaĵoj:
Retejo:»$[siteurl]
Salutnomo:»$[email]
Pasvorto:»$[password]
Vi eblas ŝanĝi la pasvorton ĉe la paĝo Agordoj -> Konto kiam vi estas
ensalutita.
Bonvolu preni kelkajn momentoj por kontroli la aliajn kontaktagordojn.
Eble vi volas aldoni kelkajn bazajn informojn al via profilo
(ĉe la paĝo "Profiloj"), tial vi troveblas al aliaj uzantoj.
Ni rekomendas agordi vian plenan noman, aldoni profilbildon,
kaj aldojo kelkajn ŝlosilvortojn (tre utila por trovi novajn amikojn) - kaj
eble en kiu lando vi loĝas, se vi ne volas pli specifa
ol tio.
Ni tute respektas vian privatecon, kaj neniu de tiuj agordoj necesas.
Se vi novas kaj ne konas iun ĉi tie, ili eble helpas
vin trovi novajn kaj interesajn amikojn.
Dankon kaj bonvenon ĉe $[sitename].
Salutoj,
$[sitename] administranto

View file

@ -0,0 +1,25 @@
Nova peto por registrado atendas ĉe $[sitename]
kaj bezonas vian aprobon.
Jen la detaloj de la peto:
Plena Nomo:»$[username]
Retejo:»$[siteurl]
Salutnomo:»$[email]
Aprobonte la peton, bonvolu klaki tiun ligilon:
$[siteurl]/regmod/allow/$[hash]
Malaprobonte kaj forviŝonte la konton, bonvolu klaki:
$[siteurl]/regmod/deny/$[hash]
Dankon!

View file

@ -0,0 +1,17 @@
Kara $[myname],
Vi ĵus ricevis kontaktpeton ĉe $[sitename]
de '$[requestor]'.
Vi eblas viziti la profilon de la petanto ĉe $[url].
Bonvolu ensaluti en la retejo por vidi la plenan prezenton
kaj aprobi aŭ ignori/nuligi la peton.
$[siteurl]
Salutoj,
$[sitename] administranto

View file

@ -223,7 +223,7 @@ $a->strings["GD graphics PHP module"] = "PHP modulo GD";
$a->strings["OpenSSL PHP module"] = "PHP modulo OpenSSL";
$a->strings["mysqli PHP module"] = "PHP modulo mysqli";
$a->strings["mb_string PHP module"] = "PHP modulo mb_string";
$a->strings["Apace mod_rewrite module"] = "Apache modulo mod_rewrite";
$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite modulo";
$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Eraro: La modulo mod_rewrite en la Apache retservilo estas bezonata sed ne instalita.";
$a->strings["Error: libCURL PHP module required but not installed."] = "Eraro: La modulo libCURL en PHP estas bezonata sed ne instalita.";
$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Eraro: La modulo GD en PHP kun subteno por JPEG estas bezonata sed ne instalita.";
@ -301,7 +301,8 @@ $a->strings["Contact has been blocked"] = "Kontakto estas blokita.";
$a->strings["Contact has been unblocked"] = "Kontakto estas malblokita.";
$a->strings["Contact has been ignored"] = "Kontakto estas ignorita.";
$a->strings["Contact has been unignored"] = "Kontakto estas malignorita.";
$a->strings["stopped following"] = "ne plu sekvas";
$a->strings["Contact has been archived"] = "Enarkivigis kontakton";
$a->strings["Contact has been unarchived"] = "Elarkivigis kontakton";
$a->strings["Contact has been removed."] = "Kontakto estas forigita.";
$a->strings["You are mutual friends with %s"] = "Vi estas reciproka amiko de %s";
$a->strings["You are sharing with %s"] = "Vi kunhavigas kun %s";
@ -319,8 +320,14 @@ $a->strings["%d contact in common"] = array(
$a->strings["View all contacts"] = "Vidi ĉiujn kontaktojn";
$a->strings["Unblock"] = "Malbloki";
$a->strings["Block"] = "Bloki";
$a->strings["Toggle Blocked status"] = "Ŝalti/malŝalti Blokitan staton";
$a->strings["Unignore"] = "Malignori";
$a->strings["Toggle Ignored status"] = "Ŝalti/malŝalti Ignoritan staton";
$a->strings["Unarchive"] = "Elarkivigi";
$a->strings["Archive"] = "Enarkivigi";
$a->strings["Toggle Archive status"] = "Ŝalti/malŝalti Enarkivigitan staton";
$a->strings["Repair"] = "Ripari";
$a->strings["Advanced Contact Settings"] = "Specialaj Kontaktagordoj";
$a->strings["Contact Editor"] = "Kontakta redaktilo.";
$a->strings["Profile Visibility"] = "Videbleco de profilo";
$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bonvolu elekti la profilon kiu vi volas montri al %s aspektinde kiam sekure aspektante vian profilon.";
@ -337,13 +344,22 @@ $a->strings["Update public posts"] = "Ĝisdatigi publikajn afiŝojn";
$a->strings["Update now"] = "Ĝisdatigi nun";
$a->strings["Currently blocked"] = "Nuntempe blokata";
$a->strings["Currently ignored"] = "Nuntempe ignorata";
$a->strings["Currently archived"] = "Nuntempe enarkivigita";
$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Rispondoj/ŝataĵo al viaj publikaj afiŝoj <strong>eble</strong> plu estos videbla";
$a->strings["Suggestions"] = "Sugestoj";
$a->strings["Suggest potential friends"] = "Sugesti amikojn";
$a->strings["All Contacts"] = "Ĉiuj Kontaktoj";
$a->strings["Unblocked Contacts"] = "Malblokitaj Kontaktoj";
$a->strings["Blocked Contacts"] = "Blokitaj Kontaktoj";
$a->strings["Ignored Contacts"] = "Ignoritaj Kontaktoj";
$a->strings["Hidden Contacts"] = "Kaŝitaj Kontaktoj";
$a->strings["Show all contacts"] = "Montri ĉiujn kontaktojn";
$a->strings["Unblocked"] = "Malblokita";
$a->strings["Only show unblocked contacts"] = "Nur montri neblokitajn kontaktojn";
$a->strings["Blocked"] = "Blokita";
$a->strings["Only show blocked contacts"] = "Nur montri blokitajn kontaktojn";
$a->strings["Ignored"] = "Ignorita";
$a->strings["Only show ignored contacts"] = "Nur montri ignoritajn kontaktojn";
$a->strings["Archived"] = "Enarkivigita";
$a->strings["Only show archived contacts"] = "Nur montri enarkivigitajn kontaktojn";
$a->strings["Hidden"] = "Kaŝita";
$a->strings["Only show hidden contacts"] = "Nur montri kaŝitajn kontaktojn";
$a->strings["Mutual Friendship"] = "Reciproka amikeco";
$a->strings["is a fan of yours"] = "estas admiranto de vi";
$a->strings["you are a fan of"] = "vi estas admiranto de";
@ -367,12 +383,13 @@ $a->strings["Forgot your Password?"] = "Ĉu vi forgesis vian pasvorton?";
$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Entajpu vian retpoŝtadreson kaj sendu por pasvorta riparado. Poste, bonvolu legi vian retpoŝton por trovi pliajn instrukciojn.";
$a->strings["Nickname or Email: "] = "Salutnomo aŭ retpoŝtadreso: ";
$a->strings["Reset"] = "Repari";
$a->strings["Account settings"] = "Kontoagordoj";
$a->strings["Display settings"] = "Ekranagordoj";
$a->strings["Connector settings"] = "Konektiloagordoj";
$a->strings["Plugin settings"] = "Agordoj pri kromprogramoj";
$a->strings["Account settings"] = "Konto";
$a->strings["Display settings"] = "Ekrano";
$a->strings["Connector settings"] = "Konektiloj";
$a->strings["Plugin settings"] = "Kromprogramoj";
$a->strings["Connected apps"] = "Konektitaj programoj";
$a->strings["Export personal data"] = "Eksporti personan datumaron";
$a->strings["Export personal data"] = "Eksporto";
$a->strings["Remove account"] = "Forigi konton";
$a->strings["Settings"] = "Agordoj";
$a->strings["Missing some important data!"] = "Mankas importantaj datumoj!";
$a->strings["Update"] = "Ĝisdatigi";
@ -426,10 +443,10 @@ $a->strings["Update browser every xx seconds"] = "Ĝisdatigu retesplorilon ĉiu
$a->strings["Minimum of 10 seconds, no maximum"] = "Minimume 10 sekundoj, sen maksimumo";
$a->strings["Number of items to display on the network page:"] = "Kvanto da elementoj kiuj estos montrata ĉe la reto paĝo.";
$a->strings["Maximum of 100 items"] = "Maksimume 100 eroj";
$a->strings["Don't show emoticons"] = "Ne montru ridetulojn.";
$a->strings["Don't show emoticons"] = "Ne montru ridetulojn";
$a->strings["Normal Account"] = "Normala konto";
$a->strings["This account is a normal personal profile"] = "Tiu konto estas normala persona profilo";
$a->strings["Soapbox Account"] = "Konto ĉe Soapbox";
$a->strings["Soapbox Account"] = "Soapbox Konto";
$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Aŭtomate konfirmi ĉiujn kontaktpetojn kiel nurlegaj admirantoj";
$a->strings["Community/Celebrity Account"] = "Komunuma/eminentula Konto";
$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Aŭtomate konfirmi ĉiujn kontaktpetojn kiel admirantoj kapable legi kaj skribi";
@ -447,7 +464,7 @@ $a->strings["Allow us to suggest you as a potential friend to new members?"] = "
$a->strings["Permit unknown people to send you private mail?"] = "Permesigi nekonatulojn sendi retpoŝton al vi?";
$a->strings["Profile is <strong>not published</strong>."] = "Profilo <strong>ne estas publika</strong>.";
$a->strings["or"] = "";
$a->strings["Your Identity Address is"] = "Via identeco adreso estas";
$a->strings["Your Identity Address is"] = "Via identeca adreso estas";
$a->strings["Automatically expire posts after this many days:"] = "Automatike senvalidigi afiŝojn post tiom da tagoj:";
$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Se malplena, afiŝoj neniam senvalidiĝos. Senvalidigitajn afiŝon estos forviŝata";
$a->strings["Advanced expiration settings"] = "Detalaj agordoj rilate al senvalidiĝo";
@ -476,6 +493,7 @@ $a->strings["Maximum private messages per day from unknown people:"] = "Taga mak
$a->strings["Notification Settings"] = "Agordoj pri Atentigoj";
$a->strings["By default post a status message when:"] = "Defaŭlte afiŝi statmesaĝon okaze de:";
$a->strings["accepting a friend request"] = "akcepti kontaktpeton";
$a->strings["joining a forum/community"] = "aliĝi forumon/komunumon";
$a->strings["making an <em>interesting</em> profile change"] = "fari <em>interesan</em> profilŝanĝon";
$a->strings["Send a notification email when:"] = "Sendu atentiga repoŝton se:";
$a->strings["You receive an introduction"] = "Vi ricevas inviton";
@ -494,10 +512,16 @@ $a->strings["Remove term"] = "Forviŝu terminon";
$a->strings["Saved Searches"] = "Konservitaj Serĉadoj";
$a->strings["add"] = "aldoni";
$a->strings["Commented Order"] = "Komenta Ordo";
$a->strings["Sort by Comment Date"] = "Ordigi laŭ Dato de Komento";
$a->strings["Posted Order"] = "Afiŝita Ordo";
$a->strings["Sort by Post Date"] = "Ordigi laŭ Dato de Afiŝado";
$a->strings["Posts that mention or involve you"] = "Afiŝoj menciantaj vin aŭ pri vi";
$a->strings["New"] = "Nova";
$a->strings["Activity Stream - by date"] = "Fluo de Aktiveco - laŭ dato";
$a->strings["Starred"] = "Steligita";
$a->strings["Favourite Posts"] = "Favorigitaj Afiŝoj";
$a->strings["Shared Links"] = "Kunhavigitaj Ligiloj";
$a->strings["Interesting Links"] = "Interesaj Ligiloj";
$a->strings["Warning: This group contains %s member from an insecure network."] = array(
0 => "Averto: La grupo enhavas %s membron el nesekuraj retejoj.",
1 => "Averto: La grupo enhavas %s membrojn el nesekuraj retejoj.",
@ -603,6 +627,8 @@ $a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s ŝatas la %3\$s de %2\$s";
$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s malŝatas la %3\$s de %2\$s";
$a->strings["Item not found."] = "Elemento ne estas trovita.";
$a->strings["Access denied."] = "Atingo nepermesita.";
$a->strings["Photos"] = "Bildoj";
$a->strings["Files"] = "Dosieroj";
$a->strings["Account approved."] = "Konto aprobita.";
$a->strings["Registration revoked for %s"] = "Registraĵo por %s senvalidigita.";
$a->strings["Please login."] = "Bonvolu ensaluti.";
@ -657,6 +683,8 @@ $a->strings["Site"] = "Retejo";
$a->strings["Users"] = "Uzantoj";
$a->strings["Plugins"] = "Kromprogramoj";
$a->strings["Themes"] = "Etosoj";
$a->strings["DB updates"] = "DB ĝisdatigoj";
$a->strings["Software Update"] = "Friendica Ĝisdatigoj";
$a->strings["Logs"] = "Protokoloj";
$a->strings["User registrations waiting for confirmation"] = "Uzantaj registradoj atendante konfirmon";
$a->strings["Administration"] = "Administrado";
@ -688,7 +716,7 @@ $a->strings["Register policy"] = "Interkonsento pri registrado";
$a->strings["Register text"] = "Interkonsento teksto";
$a->strings["Will be displayed prominently on the registration page."] = "Tio estos eminente montrata en la registro paĝo.";
$a->strings["Accounts abandoned after x days"] = "Kontoj forlasitaj post x tagoj";
$a->strings["Will not waste system resources polling external sites for abandoned accounts. Enter 0 for no time limit."] = "Mi ne malŝparu energion por enketi aliajn retejojn pri forlasitaj kontoj. Entajpu 0 por ne uzi templimo.";
$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Mi ne malŝparu energion por enketi aliajn retejojn pri forlasitaj kontoj. Entajpu 0 por ne uzi templimo.";
$a->strings["Allowed friend domains"] = "Permesitaj amikaj domainoj";
$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Perkome disigita listo da domajnoj kiuj rajtas konstrui amikecojn kun ĉi tiu retejo. Ĵokeroj eblas. Malplena por rajtigi ĉiujn ajn domajnojn.";
$a->strings["Allowed email domains"] = "Permesitaj retpoŝtaj domajnoj";
@ -721,6 +749,18 @@ $a->strings["Proxy user"] = "Uzantnomo por retperanto";
$a->strings["Proxy URL"] = "URL adreso de retperanto";
$a->strings["Network timeout"] = "Reta tempolimo";
$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valoro en sekundoj. Uzu 0 por mallimitigi (ne rekomendata).";
$a->strings["Delivery interval"] = "Intervalo de liverado";
$a->strings["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."] = "Malfruigi fonan liveradon dum tiom da sekundoj por malpliigi la ŝargon de la sistemo. Rekomendoj: 4-5 por komunaj serviloj, 2-3 por virtualaj privataj serviloj, 0-1 por grandaj dediĉitaj serviloj.";
$a->strings["Update has been marked successful"] = "Ĝisdatigo estas markita sukcesa";
$a->strings["Executing %s failed. Check system logs."] = "Ne sukcesis plenumi %s. Kontrolu la sistemprotokolojn.";
$a->strings["Update %s was successfully applied."] = "Sukcese aplikis la ĝisdatigo %s.";
$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "Ĝisdatigo %s ne liveris elirstaton. ";
$a->strings["Update function %s could not be found."] = "Ne troveblas ĝisdatigo funkcio %s.";
$a->strings["No failed updates."] = "Neniom da malsukcesaj ĝisdatigoj.";
$a->strings["Failed Updates"] = "Malsukcesaj Ĝisdatigoj";
$a->strings["This does not include updates prior to 1139, which did not return a status."] = "Ne inkluzivas ĝisdatigojn antaŭ 1139, kiuj ne liveris elirstaton.";
$a->strings["Mark success (if update was manually applied)"] = "Marki sukcesa (se la ĝisdatigo estas instalita mane)";
$a->strings["Attempt to execute this update step automatically"] = "Provi automate plenumi ĉi tian paŝon de la ĝisdatigo.";
$a->strings["%s user blocked/unblocked"] = array(
0 => "Blokis/malblokis %s uzanton",
1 => "Blokis/malblokis %s uzantojn",
@ -812,7 +852,9 @@ $a->strings["Homepage"] = "Hejmpaĝo";
$a->strings["Interests"] = "Interesoj";
$a->strings["Location"] = "Loko";
$a->strings["Profile updated."] = "Profilo ĝisdatigita.";
$a->strings[" and "] = " kaj ";
$a->strings["public profile"] = "publika profilo";
$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s ŝanĝis %2\$s al &ldquo;%3\$s&rdquo;";
$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s havas ĝisdatigigan %2\$s, ŝanĝas %3\$s.";
$a->strings["Profile deleted."] = "Profilo forviŝita.";
$a->strings["Profile-"] = "Profilo-";
@ -875,7 +917,7 @@ $a->strings["Existing Page Delegates"] = "Estantaj Delegitoj de la Paĝo";
$a->strings["Potential Delegates"] = "Eblaj Delegitoj";
$a->strings["Add"] = "Aldoni";
$a->strings["No entries."] = "Neniom da afiŝoj.";
$a->strings["Friend Suggestions"] = "Amikosugestoj.";
$a->strings["Friend Suggestions"] = "Amikosugestoj";
$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Neniu sugestoj disponeblas. Se ĉi tiu estas nova retejo, bonvolu reprovi post 24 horoj.";
$a->strings["Ignore/Hide"] = "Ignori/Kaŝi";
$a->strings["Global Directory"] = "Tutmonda Katalogo";
@ -919,6 +961,7 @@ $a->strings["The ID provided by your system is a duplicate on our system. It sho
$a->strings["Unable to set your contact credentials on our system."] = "Ne sukcesis agordi la legitimaĵojn de via kontakto ĉe nia sistemo.";
$a->strings["Unable to update your contact profile details on our system"] = "Neeblas ĝisdatigi viajn profildetalojn ĉe nia sistemo.";
$a->strings["Connection accepted at %s"] = "Konekto akceptita je %s";
$a->strings["%1\$s has joined %2\$s"] = "%1\$s aliĝis al %2\$s";
$a->strings["Facebook disabled"] = "Facebook malŝaltita";
$a->strings["Updating contacts"] = "Mi ĝisdatigas la kontaktojn.";
$a->strings["Facebook API key is missing."] = "La API ŝlosilo de Facebook ne estas konata ĉi tie.";
@ -945,7 +988,8 @@ $a->strings["The given API Key seems to work correctly."] = "La API ŝlosilo ŝa
$a->strings["The correctness of the API Key could not be detected. Somthing strange's going on."] = "Ne povis kontroli la ĝustecon de la API ŝlosilo. Ia stranga afero okazas. ";
$a->strings["App-ID / API-Key"] = "Programo ID / API Ŝlosilo";
$a->strings["Application secret"] = "Programo sekreto";
$a->strings["Polling Interval (min. %1\$s minutes)"] = "Intervalo por la enketilo (poller intervalo, minimume %1\$s mintuoj) ";
$a->strings["Polling Interval in minutes (minimum %1\$s minutes)"] = "Intervalo de enketo en minutoj (minimume %1\$s minutoj)";
$a->strings["Synchronize comments (no comments on Facebook are missed, at the cost of increased system load)"] = "Sinkronigi komentojn (vi ricevas ĉiujn komentojn de Facebook, sed la ŝargo de la sistemo iom kreskas)";
$a->strings["Real-Time Updates"] = "Realtempaj Ĝisdatigoj";
$a->strings["Real-Time Updates are activated."] = "Realtempaj Ĝisdatigoj estas ŝaltita";
$a->strings["Deactivate Real-Time Updates"] = "Malŝalti Realtempaj Ĝisdatigoj";
@ -959,6 +1003,11 @@ $a->strings["Facebook post failed. Queued for retry."] = "Malsukcesis afiŝi ĉe
$a->strings["Your Facebook connection became invalid. Please Re-authenticate."] = "Via Facbook konekto iĝis nevalida. Bonvolu reaŭtentiĝi.";
$a->strings["Facebook connection became invalid"] = "Facebook konekto iĝis nevalida.";
$a->strings["Hi %1\$s,\n\nThe connection between your accounts on %2\$s and Facebook became invalid. This usually happens after you change your Facebook-password. To enable the connection again, you have to %3\$sre-authenticate the Facebook-connector%4\$s."] = "Saluton %1\$s,\n\nla kontekto inter viaj kontoj ĉe %2\$s kaj Facebook malvalidiĝis. Tio kutime okazas post kiam via ŝangas vian pasvorton ĉe Facebook. Por reaktivigi la konekto, vi bezonas %3\$sreaŭtentiĝi la Facebook konektilon%4\$s.";
$a->strings["Lifetime of the cache (in hours)"] = "Vivodaŭro de kaŝmemoro (horoj)";
$a->strings["Cache Statistics"] = "Statistikoj pri kaŝmemoro";
$a->strings["Number of items"] = "Kvanto da eroj";
$a->strings["Size of the cache"] = "Grando de la kaŝmemoro";
$a->strings["Delete the whole cache"] = "Forviŝi la kaŝmemoron";
$a->strings["%d person likes this"] = array(
0 => "%d homo ŝatas tiun",
1 => "%d homoj ŝatas tiun",
@ -967,6 +1016,7 @@ $a->strings["%d person doesn't like this"] = array(
0 => "%d homo malŝatas tiun",
1 => "%d homo malŝatas tiun",
);
$a->strings["Get added to this list!"] = "Iĝu membro de ĉi tiu listo!";
$a->strings["Generate new key"] = "Generi novan ĉifroŝlosilon";
$a->strings["Widgets key"] = "Ŝlosilo por fenestraĵoj";
$a->strings["Widgets available"] = "Disponeblaj fenestraĵoj";
@ -991,6 +1041,7 @@ $a->strings["Use /expression/ to provide regular expressions"] = "Uzu /expr/ por
$a->strings["NSFW Settings saved."] = "NSFW agordoj konservitaj.";
$a->strings["%s - Click to open/close"] = "%s - Klaku por malfermi/fermi";
$a->strings["Forums"] = "Forumoj";
$a->strings["show more"] = "montri pli";
$a->strings["Planets Settings"] = "Agordo pri Planets";
$a->strings["Enable Planets Plugin"] = "Ŝalti la Planets kromprogamon";
$a->strings["Login"] = "Ensaluti";
@ -1049,19 +1100,19 @@ $a->strings["OEmbed settings updated"] = "Ĝisdatigis OEmbed agordojn";
$a->strings["Use OEmbed for YouTube videos"] = "Uzi OEmbed por YouTube videtoj";
$a->strings["URL to embed:"] = "Enigi la URL adreson:";
$a->strings["Impressum"] = "Kolofono";
$a->strings["Site Owner"] = "Proprietulo de la laĝo";
$a->strings["Site Owner"] = "Proprietulo de la paĝo";
$a->strings["Email Address"] = "Retpoŝta Adreso";
$a->strings["Postal Address"] = "Poŝta Adreso";
$a->strings["The impressum addon needs to be configured!<br />Please add at least the <tt>owner</tt> variable to your config file. For other variables please refer to the README file of the addon."] = "La kolofono (impressum) kromprogramo bezonas agordojn!<br />Bonvolu aldoni minimume la <tt>owner</tt> variablon al via agorda dosiero. Por aliaj variabloj, bonvolu legi la README dosieron de la kromprogramo.";
$a->strings["The page operators name."] = "La nomo de la funkciigisto de la retejo.";
$a->strings["Site Owners Profile"] = "Profilo de la Proprietulo de la Retejo";
$a->strings["Profile address of the operator."] = "La profilo de la funkciigisto de la retejo.";
$a->strings["How to contact the operator via snail mail."] = "Kiel kontakti la funkciigiston de la retejo tra paperpoŝto.";
$a->strings["How to contact the operator via snail mail. You can use BBCode here."] = "Kiel poŝte kontakti la funkciigisto de la retejo. Vi eblas uzi BBCode ĉi tie.";
$a->strings["Notes"] = "Notoj";
$a->strings["Additional notes that are displayed beneath the contact information."] = "Pliaj notoj kiuj estas montrigota malsupre la kontaktinformojn.";
$a->strings["Additional notes that are displayed beneath the contact information. You can use BBCode here."] = "Pli da notoj kiuj aperas sub la kontaktinformoj. Vi eblas uzi BBCode ĉi tie.";
$a->strings["How to contact the operator via email. (will be displayed obfuscated)"] = "Kiel kontakti la funkciigiston de la retejo tra retpoŝto. (montriĝos vuale) ";
$a->strings["Footer note"] = "Paĝpiednoto";
$a->strings["Text for the footer."] = "Teksto por la paĝpiedo.";
$a->strings["Text for the footer. You can use BBCode here."] = "Teksto por la paĝpiedo. Vie eblas uzi BBCode ĉi tie.";
$a->strings["Report Bug"] = "Skribi cimraporton";
$a->strings["\"Blockem\" Settings"] = "\"Blockem\" Agordoj";
$a->strings["Comma separated profile URLS to block"] = "Blokotaj URL adresoj, disigita per komo";
@ -1161,7 +1212,6 @@ $a->strings["\"Show more\" Settings"] = "\"Montri pli\" agordoj";
$a->strings["Enable Show More"] = "Ŝalti \"montri pli\"";
$a->strings["Cutting posts after how much characters"] = "Limitigi afiŝojn al kiom da literoj";
$a->strings["Show More Settings saved."] = "Konservis \"montri pli\" agordojn.";
$a->strings["show more"] = "montri pli";
$a->strings["This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> analytics tool."] = "Ĉi retejo uzas <a href='http://www.piwik.org'>Piwik</a> kiel retuma analizilo.";
$a->strings["If you do not want that your visits are logged this way you <a href='%s'>can set a cookie to prevent Piwik from tracking further visits of the site</a> (opt-out)."] = "Se ni ne protokolu viajn vizitojn tiel, vi <a href='%s'>povas agordi kuketon por malpermesi Piwik al plu protokoli pliajn vizitojn</a> (mem-for-elekti / opt-out).";
$a->strings["Piwik Base URL"] = "Piwik baza URL adreso";
@ -1202,6 +1252,19 @@ $a->strings["Enable Posterous Post Plugin"] = "Ŝalti la Poserous-afiŝo krompro
$a->strings["Posterous login"] = "Posterous salutnomo";
$a->strings["Posterous password"] = "Posterous pasvorto";
$a->strings["Post to Posterous by default"] = "Defaŭlte afiŝi al Posterous";
$a->strings["Theme settings"] = "Agordoj pri la etoso";
$a->strings["Set resize level for images in posts and comments (width and height)"] = "Agordi la regrandignivelo por bildoj en afiŝoj kaj komentoj (larĝo kaj alto)";
$a->strings["Set font-size for posts and comments"] = "Agordi la tiparan grandon por afiŝoj kaj komentoj";
$a->strings["Color scheme"] = "Kolorskemo";
$a->strings["Your posts and conversations"] = "Viaj afiŝoj kaj komunikadoj";
$a->strings["Your profile page"] = "Via profilo";
$a->strings["Your contacts"] = "Viaj kontaktoj";
$a->strings["Your photos"] = "Viaj bildoj";
$a->strings["Your events"] = "Viaj okazoj";
$a->strings["Personal notes"] = "Personaj notoj";
$a->strings["Your personal photos"] = "Viaj personaj bildoj";
$a->strings["Community Pages"] = "Komunumaj paĝoj";
$a->strings["Community Profiles"] = "Komunumaj Profiloj";
$a->strings["Last users"] = "Ĵusaj uzantoj";
$a->strings["Last likes"] = "Ĵusaj ŝatitaj elementoj";
$a->strings["Last photos"] = "Ĵusaj bildoj";
@ -1209,28 +1272,15 @@ $a->strings["Find Friends"] = "Trovi Amikojn";
$a->strings["Local Directory"] = "Loka Katalogo";
$a->strings["Similar Interests"] = "Similaj Interesoj";
$a->strings["Invite Friends"] = "Inviti amikojn";
$a->strings["Community Pages"] = "Komunumaj paĝoj";
$a->strings["Help or @NewHere ?"] = "Helpu aŭ @NewHere ?";
$a->strings["Connect Services"] = "Konekti Servojn";
$a->strings["PostIt to Friendica"] = "PostIt al Friendica";
$a->strings["Post to Friendica"] = "Afiŝi al Friendica";
$a->strings[" from anywhere by bookmarking this Link."] = " de iu kun ĉi tio ligilo.";
$a->strings["Your posts and conversations"] = "Viaj afiŝoj kaj komunikadoj";
$a->strings["Your profile page"] = "Via profilo";
$a->strings["Your contacts"] = "Viaj kontaktoj";
$a->strings["Photos"] = "Bildoj";
$a->strings["Your photos"] = "Viaj bildoj";
$a->strings["Your events"] = "Viaj okazoj";
$a->strings["Personal notes"] = "Personaj notoj";
$a->strings["Your personal photos"] = "Viaj personaj bildoj";
$a->strings["Theme settings"] = "Agordoj pri la etoso";
$a->strings["Set font-size for posts and comments"] = "Agordi la tiparan grandon por afiŝoj kaj komentoj";
$a->strings["Set line-height for posts and comments"] = "Agordi la linigrandon por afiŝoj kaj komentoj";
$a->strings["Set resolution for middle column"] = "Agordi la distingivon por la meza kolumno";
$a->strings["Set color scheme"] = "Agordi Kolorskemon";
$a->strings["Alignment"] = "Ĝisrandigo";
$a->strings["Left"] = "Maldekstren";
$a->strings["Center"] = "Centren";
$a->strings["Color scheme"] = "Kolorskemo";
$a->strings["Set colour scheme"] = "Agordi Kolorskemon";
$a->strings["Gender:"] = "Sekso:";
$a->strings["j F, Y"] = "j F, Y";
$a->strings["j F"] = "j F";
@ -1406,7 +1456,7 @@ $a->strings["Inbox"] = "Enirkesto";
$a->strings["Outbox"] = "Elirkesto";
$a->strings["Manage"] = "Administri";
$a->strings["Manage other pages"] = "Administri aliajn paĝojn";
$a->strings["Profiles"] = "Profiloj:";
$a->strings["Profiles"] = "Profiloj";
$a->strings["Manage/edit profiles"] = "Administri/redakti profilojn";
$a->strings["Manage/edit friends and contacts"] = "Administri/redakti amikojn kaj kontaktojn";
$a->strings["Admin"] = "Administrado";
@ -1429,6 +1479,10 @@ $a->strings["All Networks"] = "Ĉiuj Retoj";
$a->strings["Saved Folders"] = "Konservitaj Dosierujoj";
$a->strings["Everything"] = "Ĉio";
$a->strings["Categories"] = "Kategorioj";
$a->strings["%d friend in common"] = array(
0 => "%d komuna amiko",
1 => "%d komunaj amikoj",
);
$a->strings["Logged out."] = "Elsalutita.";
$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Okazis problemo ensalutinta kun via OpenID. Bonvolu kontroli la ID.";
$a->strings["The error message was:"] = "La erarmesaĝo estis:";
@ -1456,8 +1510,8 @@ $a->strings["Image/photo"] = "Bildo";
$a->strings["Cannot locate DNS info for database server '%s'"] = "Ne trovis DNS informojn por datumbaza servilo '%s'.";
$a->strings["[no subject]"] = "[neniu temo]";
$a->strings["Visible to everybody"] = "Videbla al ĉiuj";
$a->strings["show"] = "montru";
$a->strings["don't show"] = "ne montru";
$a->strings["show"] = "montri";
$a->strings["don't show"] = "kaŝi";
$a->strings["Friendica Notification"] = "Friendica Atentigo";
$a->strings["Thank You,"] = "Dankon,";
$a->strings["%s Administrator"] = "%s Administranto";
@ -1506,6 +1560,7 @@ $a->strings["Welcome "] = "Bonvenon ";
$a->strings["Please upload a profile photo."] = "Bonvolu alŝuti profilbildon.";
$a->strings["Welcome back "] = "Bonvenon ";
$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "La sekuriga ĵetono de la formo estis malĝusta. Tio verŝajne okazis ĉar la formo estis malfermita dum tro longa tempo (>3 horoj) antaŭ la sendado.";
$a->strings["stopped following"] = "ne plu sekvas";
$a->strings["View Status"] = "Vidi Staton";
$a->strings["View Profile"] = "Vidi Profilon";
$a->strings["View Photos"] = "Vidi Bildojn";
@ -1526,6 +1581,14 @@ $a->strings["like"] = "ŝati";
$a->strings["dislike"] = "malŝati";
$a->strings["Share this"] = "Kunhavigi ĉi tiun";
$a->strings["share"] = "kunhavigi";
$a->strings["Bold"] = "Grasa";
$a->strings["Italic"] = "Kursiva";
$a->strings["Underline"] = "Substreki";
$a->strings["Quote"] = "Citaĵo";
$a->strings["Code"] = "Kodo";
$a->strings["Image"] = "Bildo";
$a->strings["Link"] = "Ligilo";
$a->strings["Video"] = "Video";
$a->strings["add star"] = "aldoni stelon";
$a->strings["remove star"] = "forpreni stelon";
$a->strings["toggle star status"] = "ŝalti/malŝalti steloŝtato";
@ -1561,6 +1624,8 @@ $a->strings["clear location"] = "forviŝi lokon";
$a->strings["permissions"] = "permesoj";
$a->strings["Delete this item?"] = "Forviŝi ĉi tiun elementon?";
$a->strings["show fewer"] = "montri malpli";
$a->strings["Update %s failed. See error logs."] = "Malsukcesis ĝisdatigi %s. Vidu la protokolojn.";
$a->strings["Update Error at %s"] = "Eraro dum ĝisdatigo ĉe %s";
$a->strings["Create a New Account"] = "Krei Novan Konton";
$a->strings["Nickname or Email address: "] = "Kaŝnomo aŭ retpoŝtadreso:";
$a->strings["Password: "] = "Pasvorto:";
@ -1570,9 +1635,13 @@ $a->strings["Edit profile"] = "Redakti profilon";
$a->strings["Message"] = "Mesaĝo";
$a->strings["g A l F d"] = "\\j\\e \\l\\a G\\a \\h\\o\\r\\o, l F d";
$a->strings["F d"] = "F d";
$a->strings["[today]"] = "[hodiaŭ]";
$a->strings["Birthday Reminders"] = "Memorigilo pri naskiĝtagoj";
$a->strings["Birthdays this week:"] = "Naskiĝtagoj ĉi-semajne:";
$a->strings["[today]"] = "[hodiaŭ]";
$a->strings["[No description]"] = "[Neniu priskribo]";
$a->strings["Event Reminders"] = "Memorigiloj pri Okazoj";
$a->strings["Events this week:"] = "Okazoj ĉi-semajne:";
$a->strings["[No description]"] = "[Neniu priskribo]";
$a->strings["Status Messages and Posts"] = "Ŝtatmesaĝoj kaj Afiŝoj";
$a->strings["Profile Details"] = "Profildetaloj";
$a->strings["Events and Calendar"] = "Okazoj kaj Kalendaro";
$a->strings["Only You Can See This"] = "Nur Vi Povas Vidi Tiun";

View file

@ -3,8 +3,17 @@
src="$baseurl/library/fullcalendar/fullcalendar.min.js"></script>
<script>
function showEvent(eventid) {
$.get(
'$baseurl/events/?id='+eventid,
function(data){
$.fancybox(data);
}
);
}
$(document).ready(function() {
$('#events-calendar').fullCalendar({
$('#events-calendar').fullCalendar({
events: '$baseurl/events/json/',
header: {
left: 'prev,next today',
@ -13,12 +22,7 @@
},
timeFormat: 'H(:mm)',
eventClick: function(calEvent, jsEvent, view) {
$.get(
'$baseurl/events/?id='+calEvent.id,
function(data){
$.fancybox(data);
}
);
showEvent(calEvent.id);
},
eventRender: function(event, element, view) {
@ -55,70 +59,81 @@
}
})
// center on date
var args=location.href.replace(baseurl,"").split("/");
if (args.length>=4) {
$("#events-calendar").fullCalendar('gotoDate',args[2] , args[3]-1);
}
// show event popup
var hash = location.hash.split("-")
if (hash.length==2 && hash[0]=="#link") showEvent(hash[1]);
});
</script>
<script language="javascript" type="text/javascript"
src="$baseurl/library/tinymce/jscripts/tiny_mce/tiny_mce_src.js"></script>
<script language="javascript" type="text/javascript">
<script language="javascript" type="text/javascript">
tinyMCE.init({
theme : "advanced",
mode : "textareas",
plugins : "bbcode,paste",
theme_advanced_buttons1 : "bold,italic,underline,undo,redo,link,unlink,image,forecolor,formatselect,code",
theme_advanced_buttons2 : "",
theme_advanced_buttons3 : "",
theme_advanced_toolbar_location : "top",
theme_advanced_toolbar_align : "center",
theme_advanced_blockformats : "blockquote,code",
gecko_spellcheck : true,
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 : '',
content_css: "$baseurl/view/custom_tinymce.css",
theme_advanced_path : false,
setup : function(ed) {
ed.onInit.add(function(ed) {
ed.pasteAsPlainText = true;
});
}
});
$(document).ready(function() {
$('#event-share-checkbox').change(function() {
if ($('#event-share-checkbox').is(':checked')) {
$('#acl-wrapper').show();
}
else {
$('#acl-wrapper').hide();
}
}).trigger('change');
$('#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-public').hide();
});
if(selstr == null) {
$('#jot-public').show();
tinyMCE.init({
theme : "advanced",
mode : "textareas",
plugins : "bbcode,paste",
theme_advanced_buttons1 : "bold,italic,underline,undo,redo,link,unlink,image,forecolor,formatselect,code",
theme_advanced_buttons2 : "",
theme_advanced_buttons3 : "",
theme_advanced_toolbar_location : "top",
theme_advanced_toolbar_align : "center",
theme_advanced_blockformats : "blockquote,code",
gecko_spellcheck : true,
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 : '',
content_css: "$baseurl/view/custom_tinymce.css",
theme_advanced_path : false,
setup : function(ed) {
ed.onInit.add(function(ed) {
ed.pasteAsPlainText = true;
});
}
}).trigger('change');
});
});
$(document).ready(function() {
$('#event-share-checkbox').change(function() {
if ($('#event-share-checkbox').is(':checked')) {
$('#acl-wrapper').show();
}
else {
$('#acl-wrapper').hide();
}
}).trigger('change');
$('#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-public').hide();
});
if(selstr == null) {
$('#jot-public').show();
}
}).trigger('change');
});
</script>

10
view/events_reminder.tpl Normal file
View file

@ -0,0 +1,10 @@
{{ if $count }}
<div id="event-notice" class="birthday-notice fakelink $classtoday" onclick="openClose('event-wrapper');">$event_reminders ($count)</div>
<div id="event-wrapper" style="display: none;" ><div id="event-title">$event_title</div>
<div id="event-title-end"></div>
{{ for $events as $event }}
<div class="event-list" id="event-$event.id"></a> <a href="events/$event.link">$event.title</a> $event.date </div>
{{ endfor }}
</div></div>
{{ endif }}

17
view/failed_updates.tpl Normal file
View file

@ -0,0 +1,17 @@
<h2>$banner</h2>
<div id="failed_updates_desc">$desc</div>
{{ if $failed }}
{{ for $failed as $f }}
<h4>$f</h4>
<ul>
<li><a href="$base/admin/dbsync/mark/$f">$mark</a></li>
<li><a href="$base/admin/dbsync/$f">$apply</a></li>
</ul>
<hr />
{{ endfor }}
{{ endif }}

View file

@ -1,13 +1,13 @@
Cher $username,
Cher(e) $username,
'$from' a commenté sur un élément ou une conversation que vous suivez.
« $from » a commenté un élément ou une conversation que vous suivez.
-----
$body
-----
Connectez-vous à $siteurl si vous souhaitez voir la conversation complète:
Connectez-vous à $siteurl si vous souhaitez voir la conversation complète :
$display

View file

@ -1,15 +1,15 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional //EN">
<html>
<head>
<title>Friendika Message</title>
<title>Message de Friendica</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
</head>
<body>
<table style="border:1px solid #ccc">
<tbody>
<tr><td colspan="2" style="background:#3b5998; color:#FFFFFF; font-weight:bold; font-family:'lucida grande', tahoma, verdana,arial, sans-serif; padding: 4px 8px; vertical-align: middle; font-size:16px; letter-spacing: -0.03em; text-align: left;"><img style="width:32px;height:32px;" src='$siteurl/images/friendika-32.png'><span style="padding:7px;">Friendika</span></td></tr>
<tr><td colspan="2" style="background:#3b5998; color:#FFFFFF; font-weight:bold; font-family:'lucida grande', tahoma, verdana,arial, sans-serif; padding: 4px 8px; vertical-align: middle; font-size:16px; letter-spacing: -0.03em; text-align: left;"><img style="width:32px;height:32px;" src='$siteurl/images/friendika-32.png'><span style="padding:7px;">Friendica</span></td></tr>
<tr><td style="padding-top:22px;" colspan="2">$from a commenté sur un élément ou une conversation que vous suivez.</td></tr>
<tr><td style="padding-top:22px;" colspan="2">$from a commenté un élément ou une conversation que vous suivez.</td></tr>
<tr><td style="padding-left:22px;padding-top:22px;width:60px;" valign="top" rowspan=3><a href="$url"><img style="border:0px;width:48px;height:48px;" src="$thumb"></a></td>

View file

@ -1,12 +1,13 @@
Cher $username,
'$from' a commentŽ sur un ŽlŽment ou une conversation que vous suivez.
Cher(e) $username,
« $from » a commenté un éléŽment ou une conversation que vous suivez.
-----
$body
-----
Connectez-vous ˆ $siteurl si vous souhaitez voir la conversation compl<70>te:
Connectez-vous à $siteurl si vous souhaitez voir la conversation complète :
$display

View file

@ -1,9 +1,9 @@
Chèr(e) $myname,
Cher(e) $myname,
Une nouvelle personne - $requestor - vous suit désormais sur $sitename.
Vous pouvez visiter son profil sur $url.
Vous pouvez consulter son profil sur $url.
Merci de vous connecter à votre site pour approuver ou ignorer/annuler cette demande.

View file

@ -1,20 +1,20 @@
Chèr(e) $username,
Cher(e) $username,
Grande nouvelle... '$fn' (de '$dfrn_url') à accepté votre
demande de connexion à '$sitename'.
Grande nouvelle… « $fn » (de « $dfrn_url ») a accepté votre
demande de connexion à « $sitename ».
Vous êtes désormais dans une relation réciproque et pouvez échanger des
photos, des humeurs et des messages sans restriction.
Merci de visiter votre page 'Contacts' sur $sitename pour toute
Merci de visiter votre page « Contacts » sur $sitename pour toute
modification que vous souhaiteriez apporter à cette relation.
$siteurl
[Par exemple, vous pouvez créer un profil spécifique avec des informations
cachées au grand public - et ainsi assigner des droits privilégiés à
'$fn']/
« $fn »]/
Sincèremment,

View file

@ -1,19 +1,19 @@
Chèr(e) $username,
Cher(e) $username,
'$fn' du site '$dfrn_url' a accepté votre
demande de mise en relation sur '$sitename'.
« $fn » du site « $dfrn_url » a accepté votre
demande de mise en relation sur « $sitename ».
'$fn' a décidé de vous accepter comme "fan", ce qui restreint
« $fn » a décidé de vous accepter comme « fan », ce qui restreint
certains de vos moyens de communication - tels que les messages privés et
certaines interactions avec son profil. S'il s'agit de la page d'une
célébrité et/ou communauté, ces réglages ont été définis automatiquement.
'$fn' pourra choisir d'étendre votre relation à quelque-chose de
« $fn » pourra choisir d'étendre votre relation à quelque chose de
plus permissif dans l'avenir.
Vous allez commencer à recevoir les mises-à-jour publiques du
statut de '$fn', lesquelles apparaîtront sur votre page 'Réseau' sur
Vous allez commencer à recevoir les mises à jour publiques du
statut de « $fn », lesquelles apparaîtront sur votre page « Réseau » sur
$siteurl

View file

@ -1,6 +1,7 @@
Chèr(e) $username,
Nous avons récemment reçu, chez $sitename, un demande de remise
Cher(e) $username,
Nous avons récemment reçu, chez $sitename, une demande de remise
à zéro du mot de passe protégeant votre compte. Pour confirmer cette
demande, merci de cliquer sur le lien de vérification suivant, ou de le
coller dans la barre d'adresse de votre navigateur web.
@ -11,7 +12,7 @@ le lien en question, et d'ignorer/supprimer ce courriel.
Votre mot de passe ne sera réinitialisé qu'une fois que nous aurons pu
nous assurer que vous êtes bien à l'origine de cette demande.
Merci de suivre le lien suivant pour confirmer votre identité:
Merci de suivre le lien suivant pour confirmer votre identité :
$reset_link
@ -20,10 +21,10 @@ Vous recevrez en retour un message avec votre nouveau mot de passe.
Vous pourrez ensuite changer ce mot de passe, après connexion, dans la
page des réglages du compte.
Les informations du compte concerné sont:
Les informations du compte concerné sont :
Site: $siteurl
Pseudo/Courriel: $email
Site : $siteurl
Pseudo/Courriel : $email

View file

@ -1,22 +1,22 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional //EN">
<html>
<head>
<title>Friendika Message</title>
<title>Message de Friendica</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
</head>
<body>
<table style="border:1px solid #ccc">
<tbody>
<tr><td colspan="2" style="background:#3b5998; color:#FFFFFF; font-weight:bold; font-family:'lucida grande', tahoma, verdana,arial, sans-serif; padding: 4px 8px; vertical-align: middle; font-size:16px; letter-spacing: -0.03em; text-align: left;"><img style="width:32px;height:32px;" src='$siteurl/images/friendika-32.png'><span style="padding:7px;">Friendika</span></td></tr>
<tr><td colspan="2" style="background:#3b5998; color:#FFFFFF; font-weight:bold; font-family:'lucida grande', tahoma, verdana,arial, sans-serif; padding: 4px 8px; vertical-align: middle; font-size:16px; letter-spacing: -0.03em; text-align: left;"><img style="width:32px;height:32px;" src='$siteurl/images/friendika-32.png'><span style="padding:7px;">Friendica</span></td></tr>
<tr><td style="padding-top:22px;" colspan="2">$from t'a envoyŽ un message ˆ $siteName.</td></tr>
<tr><td style="padding-top:22px;" colspan="2">$from vous a envoyé un message à $siteName.</td></tr>
<tr><td style="padding-left:22px;padding-top:22px;width:60px;" valign="top" rowspan=3><a href="$url"><img style="border:0px;width:48px;height:48px;" src="$thumb"></a></td>
<td style="padding-top:22px;"><a href="$url">$from</a></td></tr>
<tr><td style="font-weight:bold;padding-bottom:5px;">$title</td></tr>
<tr><td style="padding-right:22px;">$htmlversion</td></tr>
<tr><td style="padding-top:11px;padding-bottom:11px;" colspan="2">Ouvrez une session svp ˆ <a href="$siteurl">$siteurl</a> pour lire et rŽpondre ˆ vos messages privŽs.</td></tr>
<tr><td style="padding-top:11px;padding-bottom:11px;" colspan="2">Veuillez Ouvrir une session sur <a href="$siteurl">$siteurl</a> pour lire et répondre à vos messages privés.</td></tr>
<tr><td></td><td>Merci,</td></tr>
<tr><td></td><td>$siteName Administrateur</td></tr>
</tbody>

View file

@ -1,10 +1,10 @@
$from t'a envoyŽ un message ˆ $siteName.
$from vous a envoyé un message à $siteName.
$title
$textversion
Ouvrez une session svp ˆ $siteurl pour lire et rŽpondre ˆ vos messages privŽs.
Veuillez ouvrir une session sur $siteurl pour lire et répondre à vos messages privés.
Merci,
$siteName Administrateur

View file

@ -1,16 +1,17 @@
Chèr(e) $username,
Votre mot de passe a été changé, comme demandé. Merci de conserver
Cher(e) $username,
Votre mot de passe a été modifié comme demandé. Merci de conserver
cette information pour un usage ultérieur (ou bien de changer votre mot de
passe immédiatement en quelque-chose dont vous vous souviendrez).
passe immédiatement en quelque chose dont vous vous souviendrez).
Vos informations de connexion sont désormais:
Vos informations de connexion sont désormais :
Site: $siteurl
Pseudo/Courriel: $email
Mot de passe: $new_password
Site : $siteurl
Pseudo/Courriel : $email
Mot de passe : $new_password
Vous pouvez changer ce mot de passe depuis la page des réglages de votre compte,
Vous pouvez changer ce mot de passe depuis la page des « réglages » de votre compte,
après connexion
Sincèrement votre,

View file

@ -1,13 +1,14 @@
Chèr(e) $username,
Cher(e) $username,
Merci de votre inscription à $sitename. Votre compte a été créé.
Les informations de connexion sont comme suit:
Les informations de connexion sont les suivantes :
Site: $siteurl
Pseudo/Courriel: $email
Mot de passe: $password
Site : $siteurl
Pseudo/Courriel : $email
Mot de passe : $password
Vous pouvez changer de mot de passe dans la page des "Réglages" de votre compte,
Vous pouvez changer de mot de passe dans la page des « Réglages » de votre compte,
après connexion.
Merci de prendre quelques minutes pour découvrir les autres réglages disponibles

View file

@ -3,21 +3,21 @@ Une nouvelle demande d'inscription a été reçue sur $sitename, et elle
nécessite votre approbation.
Les informations de connexion sont comme suit:
Les informations de connexion sont les suivantes :
Nom complet: $username
Site: $siteurl
Pseudo/Courriel: $email
Nom complet : $username
Site : $siteurl
Pseudo/Courriel : $email
Pour approuver cette demande, merci de suivre le lien:
Pour approuver cette demande, merci de suivre le lien :
$siteurl/regmod/allow/$hash
Pour rejeter cette demande et supprimer le compte associé,
merci de suivre le lien:
merci de suivre le lien :
$siteurl/regmod/deny/$hash

View file

@ -1,9 +1,9 @@
Chèr(e) $myname,
Cher(e) $myname,
Vous venez de recevoir une demande de mise en relation sur $sitename
venant de '$requestor'.
venant de « $requestor ».
Vous pouvez visiter son profil sur $url.

View file

@ -1,13 +1,13 @@
Chèr(e) $username,
Cher(e) $username,
'$from' a posté quelque-chose sur le mur de votre profil.
« $from » a posté quelque chose sur le mur de votre profil.
-----
$body
-----
Connectez-vous à $siteurl pour voir et/ou supprimer l'élément:
Connectez-vous à $siteurl pour voir et/ou supprimer l'élément :
$display

View file

@ -79,6 +79,7 @@
ins = ins.replace('&amp;','&');
ins = ins.replace('&quot;','"');
$("#comment-edit-text-" + id).val(tmpStr + ins);
$(obj).val('');
}
function showHideComments(id) {

View file

@ -13,4 +13,4 @@
<div class="profile-match-connect"><a href="$connlnk" title="$conntxt">$conntxt</a></div>
{{ endif }}
</div>
</div>

View file

@ -0,0 +1,21 @@
<div id="remote-friends-in-common" class="bigwidget">
<div id="rfic-desc">$desc &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{{ if $linkmore }}<a href="$base/common/rem/$uid/$cid">$more</a>{{ endif }}</div>
{{ if $items }}
{{ for $items as $item }}
<div class="profile-match-wrapper">
<div class="profile-match-photo">
<a href="$item.url">
<img src="$item.photo" width="80" height="80" alt="$item.name" title="$item.name" />
</a>
</div>
<div class="profile-match-break"></div>
<div class="profile-match-name">
<a href="$itemurl" title="$item.name">$item.name</a>
</div>
<div class="profile-match-end"></div>
</div>
{{ endfor }}
{{ endif }}
<div id="rfic-end" class="clear"></div>
</div>

View file

@ -102,6 +102,7 @@ $unkmail
<strong>$activity_options</strong>
{{inc field_checkbox.tpl with $field=$post_newfriend }}{{endinc}}
{{inc field_checkbox.tpl with $field=$post_joingroup }}{{endinc}}
{{inc field_checkbox.tpl with $field=$post_profilechange }}{{endinc}}

View file

@ -0,0 +1,127 @@
@import url('../greenzero/style.css');
body {background-image:none;
}
.wall-item-content-wrapper {
border-top: 1px solid #ccc;
//border-top:none;
border-left:none;
border-right:none;
border-radius:0px;
//border:none;
//background: #f8f8f8 !important;
}
.wall-item-content-wrapper.comment {
// background: #f8f8f8 !important;
// border-left: 1px solid #ccc;
border-top: 1px solid #ccc;
border-left:none;
border-right:none;
border-radius:0px;
}
.wall-item-tools {
// border-top: 1px solid #ccc;
// background: #f8f8f8 !important;
background: #ffffff !important;
}
.comment-edit-text-empty, .comment-edit-text-full {
border: 1px solid #ccc;
border-left: 1px solid #EEE;
background: #ffffff;
}
.comment-edit-wrapper, .comment-wwedit-wrapper {
// background: #ffffff; !important;
//background: #f8f8f8 !important;
}
section {
margin: 0px 10%;
margin-right:12%;
background-image:none;
}
aside {
margin-left: 10%;
background-image:none;
}
nav {
margin-left: 32px;
margin-right: 5%;
}
nav #site-location {
top: 80px;
right: 5%;
}
.wall-item-photo, .photo, .contact-block-img, .my-comment-photo {
border-radius: 3px;
-moz-border-radius: 3px;
}
.tabs { background-image:none;
}
.tab.active {
padding: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
border: 1px solid #CCCCCC;
//background: #F8F8F8;
font-weight: bold;
}
.tab { margin-right: 1px ;
}
#group-sidebar {
margin-bottom: 10px;
border:none;
}
#nets-sidebar {
margin-bottom: 10px;
border:none;
}
#saved-search-list {
border:none;
}
blockquote {
//background-color: #f8f8f8;
border: 1px solid #ccc;
-moz-border-radius: 3px;
border-radius: 3px;
}
.widget {
border: none;
}
.wall-item-content {
max-height: 20000px;
overflow: none;
}
.nav-commlink, .nav-login-link {
margin-top: 67px;
height: 15px;
float:left;
padding: 6px 3px;
}
nav .nav-link {
//float: left;
}

View file

@ -0,0 +1,127 @@
@import url('../purplezero/style.css');
body {background-image:none;
}
.wall-item-content-wrapper {
border-top: 1px solid #ccc;
//border-top:none;
border-left:none;
border-right:none;
border-radius:0px;
//border:none;
//background: #f8f8f8 !important;
}
.wall-item-content-wrapper.comment {
// background: #f8f8f8 !important;
// border-left: 1px solid #ccc;
border-top: 1px solid #ccc;
border-left:none;
border-right:none;
border-radius:0px;
}
.wall-item-tools {
// border-top: 1px solid #ccc;
// background: #f8f8f8 !important;
background: #ffffff !important;
}
.comment-edit-text-empty, .comment-edit-text-full {
border: 1px solid #ccc;
border-left: 1px solid #EEE;
background: #ffffff;
}
.comment-edit-wrapper, .comment-wwedit-wrapper {
// background: #ffffff; !important;
// background: #f8f8f8 !important;
}
section {
margin: 0px 10%;
margin-right:12%;
background-image:none;
}
aside {
margin-left: 10%;
background-image:none;
}
nav {
margin-left: 32px;
margin-right: 5%;
}
nav #site-location {
top: 80px;
right: 5%;
}
.wall-item-photo, .photo, .contact-block-img, .my-comment-photo {
border-radius: 3px;
-moz-border-radius: 3px;
}
.tabs { background-image:none;
}
.tab.active {
padding: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
border: 1px solid #CCCCCC;
// background: #F8F8F8;
font-weight: bold;
}
.tab { margin-right: 1px ;
}
#group-sidebar {
margin-bottom: 10px;
border:none;
}
#nets-sidebar {
margin-bottom: 10px;
border:none;
}
#saved-search-list {
border:none;
}
blockquote {
background-color: #f8f8f8;
border: 1px solid #ccc;
-moz-border-radius: 3px;
border-radius: 3px;
}
.widget {
border: none;
}
.wall-item-content {
max-height: 20000px;
overflow: none;
}
.nav-commlink, .nav-login-link {
margin-top: 67px;
height: 15px;
float:left;
padding: 6px 3px;
}
nav .nav-link {
//float: left;
}

View file

@ -0,0 +1,127 @@
@import url('../duepuntozero/style.css');
body {background-image:none;
}
.wall-item-content-wrapper {
border-top: 1px solid #ccc;
//border-top:none;
border-left:none;
border-right:none;
border-radius:0px;
//border:none;
//background: #f8f8f8 !important;
}
.wall-item-content-wrapper.comment {
background: #f8f8f8 !important;
// border-left: 1px solid #ccc;
border-top: 1px solid #ccc;
border-left:none;
border-right:none;
border-radius:0px;
}
.wall-item-tools {
// border-top: 1px solid #ccc;
// background: #f8f8f8 !important;
background: #ffffff !important;
}
.comment-edit-text-empty, .comment-edit-text-full {
border: 1px solid #ccc;
border-left: 1px solid #EEE;
background: #ffffff;
}
.comment-edit-wrapper, .comment-wwedit-wrapper {
// background: #ffffff; !important;
background: #f8f8f8 !important;
}
section {
margin: 0px 10%;
margin-right:12%;
background-image:none;
}
aside {
margin-left: 10%;
background-image:none;
}
nav {
margin-left: 32px;
margin-right: 5%;
}
nav #site-location {
top: 80px;
right: 5%;
}
.wall-item-photo, .photo, .contact-block-img, .my-comment-photo {
border-radius: 3px;
-moz-border-radius: 3px;
}
.tabs { background-image:none;
}
.tab.active {
padding: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
border: 1px solid #CCCCCC;
background: #F8F8F8;
font-weight: bold;
}
.tab { margin-right: 1px ;
}
#group-sidebar {
margin-bottom: 10px;
border:none;
}
#nets-sidebar {
margin-bottom: 10px;
border:none;
}
#saved-search-list {
border:none;
}
blockquote {
background-color: #f8f8f8;
border: 1px solid #ccc;
-moz-border-radius: 3px;
border-radius: 3px;
}
.widget {
border: none;
}
.wall-item-content {
max-height: 20000px;
overflow: none;
}
.nav-commlink, .nav-login-link {
margin-top: 67px;
height: 15px;
float:left;
padding: 6px 3px;
}
nav .nav-link {
//float: left;
}

View file

@ -0,0 +1,89 @@
<?php
/**
* Theme settings
*/
function theme_content(&$a){
if(!local_user())
return;
$resize = get_pconfig(local_user(), 'cleanzero', 'resize' );
$color = get_pconfig(local_user(), 'cleanzero', 'color' );
$font_size = get_pconfig(local_user(), 'cleanzero', 'font_size' );
$theme_width= get_pconfig(local_user(), 'cleanzero', 'theme_width' );
return cleanzero_form($a,$color,$font_size,$resize,$theme_width);
}
function theme_post(&$a){
if(! local_user())
return;
if (isset($_POST['cleanzero-settings-submit'])){
set_pconfig(local_user(), 'cleanzero', 'resize', $_POST['cleanzero_resize']);
set_pconfig(local_user(), 'cleanzero', 'color', $_POST['cleanzero_color']);
set_pconfig(local_user(), 'cleanzero', 'font_size', $_POST['cleanzero_font_size']);
set_pconfig(local_user(), 'cleanzero', 'theme_width', $_POST['cleanzero_theme_width']);
}
}
function theme_admin(&$a){
$resize = get_config('cleanzero', 'resize' );
$color = get_config('cleanzero', 'color' );
$font_size = get_config('cleanzero', 'font_size' );
$theme_width= get_config('cleanzero', 'theme_width' );
return cleanzero_form($a,$color,$font_size,$resize,$theme_width);
}
function theme_admin_post(&$a){
if (isset($_POST['cleanzero-settings-submit'])){
set_config('cleanzero', 'resize', $_POST['cleanzero_resize']);
set_config('cleanzero', 'color', $_POST['cleanzero_color']);
set_config('cleanzero', 'font_size', $_POST['cleanzero_font_size']);
set_config('cleanzero', 'theme_width', $_POST['cleanzero_theme_width']);
}
}
function cleanzero_form(&$a, $color,$font_size,$resize,$theme_width){
$colors = array(
"cleanzero"=>"cleanzero",
"cleanzero-green"=>"green",
"cleanzero-purple"=>"purple"
);
$font_sizes = array(
'12'=>'12',
"---"=>"---",
"16"=>"16",
"14"=>"14",
'10'=>'10',
);
$resizes = array(
"0"=>"0 (no resizing)",
"600"=>"1 (600px)",
"300"=>"2 (300px)",
"250"=>"3 (250px)",
"150"=>"4 (150px)",
);
$theme_widths =array (
"standard"=>"standard",
"narrow"=>"narrow",
"wide"=>"wide",
);
$t = file_get_contents( dirname(__file__). "/theme_settings.tpl" );
$o .= replace_macros($t, array(
'$submit' => t('Submit'),
'$baseurl' => $a->get_baseurl(),
'$title' => t("Theme settings"),
'$resize' => array('cleanzero_resize',t ('Set resize level for images in posts and comments (width and height)'),$resize,'',$resizes),
'$font_size' => array('cleanzero_font_size', t('Set font-size for posts and comments'), $font_size, '', $font_sizes),
'$theme_width' => array('cleanzero_theme_width', t('Set theme width'), $theme_width, '', $theme_widths),
'$color' => array('cleanzero_color', t('Color scheme'), $color, '', $colors),
));
return $o;
}

View file

@ -0,0 +1,73 @@
<nav>
$langselector
<div id="site-location">$sitelocation</div>
<span id="nav-commlink-wrapper">
{{ if $nav.register }}<a id="nav-register-link" class="nav-commlink $nav.register.2 $sel.register" href="$nav.register.0" title="$nav.register.3" >$nav.register.1</a>{{ endif }}
{{ if $nav.network }}
<a id="nav-network-link" class="nav-commlink $nav.network.2 $sel.network" href="$nav.network.0" title="$nav.network.3" >$nav.network.1</a>
<span id="net-update" class="nav-ajax-left"></span>
{{ endif }}
{{ if $nav.home }}
<a id="nav-home-link" class="nav-commlink $nav.home.2 $sel.home" href="$nav.home.0" title="$nav.home.3" >$nav.home.1</a>
<span id="home-update" class="nav-ajax-left"></span>
{{ endif }}
{{ if $nav.community }}
<a id="nav-community-link" class="nav-commlink $nav.community.2 $sel.community" href="$nav.community.0" title="$nav.community.3" >$nav.community.1</a>
{{ endif }}
{{ if $nav.introductions }}
<a id="nav-notify-link" class="nav-commlink $nav.introductions.2 $sel.introductions" href="$nav.introductions.0" title="$nav.introductions.3" >$nav.introductions.1</a>
<span id="intro-update" class="nav-ajax-left"></span>
{{ endif }}
{{ if $nav.messages }}
<a id="nav-messages-link" class="nav-commlink $nav.messages.2 $sel.messages" href="$nav.messages.0" title="$nav.messages.3" >$nav.messages.1</a>
<span id="mail-update" class="nav-ajax-left"></span>
{{ endif }}
{{ if $nav.notifications }}
<a id="nav-notifications-linkmenu" class="nav-commlink" href="$nav.notifications.0" rel="#nav-notifications-menu" title="$nav.notifications.1">$nav.notifications.1</a>
<span id="notify-update" class="nav-ajax-left"></span>
<ul id="nav-notifications-menu" class="menu-popup">
<li id="nav-notifications-see-all"><a href="$nav.notifications.all.0">$nav.notifications.all.1</a></li>
<li id="nav-notifications-mark-all"><a href="#" onclick="notifyMarkAll(); return false;">$nav.notifications.mark.1</a></li>
<li class="empty">$emptynotifications</li>
</ul>
{{ endif }}
</span>
<span id="banner">$banner</span>
<span id="nav-link-wrapper">
{{ if $nav.logout }}<a id="nav-logout-link" class="nav-link $nav.logout.2" href="$nav.logout.0" title="$nav.logout.3" >$nav.logout.1</a> {{ endif }}
{{ if $nav.login }}<a id="nav-login-link" class="nav-login-link $nav.login.2" href="$nav.login.0" title="$nav.login.3" >$nav.login.1</a> {{ endif }}
{{ if $nav.help }} <a id="nav-help-link" class="nav-link $nav.help.2" target="friendika-help" href="$nav.help.0" title="$nav.help.3" >$nav.help.1</a>{{ endif }}
{{ if $nav.apps }}<a id="nav-apps-link" class="nav-link $nav.apps.2" href="$nav.apps.0" title="$nav.apps.3" >$nav.apps.1</a>{{ endif }}
<a id="nav-search-link" class="nav-link $nav.search.2" href="$nav.search.0" title="$nav.search.3" >$nav.search.1</a>
<a id="nav-directory-link" class="nav-link $nav.directory.2" href="$nav.directory.0" title="$nav.directory.3" >$nav.directory.1</a>
{{ if $nav.admin }}<a id="nav-admin-link" class="nav-link $nav.admin.2" href="$nav.admin.0" title="$nav.admin.3" >$nav.admin.1</a>{{ endif }}
{{ if $nav.settings }}<a id="nav-settings-link" class="nav-link $nav.settings.2" href="$nav.settings.0" title="$nav.settings.3">$nav.settings.1</a>{{ endif }}
{{ if $nav.profiles }}<a id="nav-profiles-link" class="nav-link $nav.profiles.2" href="$nav.profiles.0" title="$nav.profiles.3" >$nav.profiles.1</a>{{ endif }}
{{ if $nav.contacts }}<a id="nav-contacts-link" class="nav-link $nav.contacts.2" href="$nav.contacts.0" title="$nav.contacts.3" >$nav.contacts.1</a>{{ endif }}
{{ if $nav.manage }}<a id="nav-manage-link" class="nav-link $nav.manage.2 $sel.manage" href="$nav.manage.0" title="$nav.manage.3">$nav.manage.1</a>{{ endif }}
</span>
<span id="nav-end"></span>
</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>

Binary file not shown.

After

Width:  |  Height:  |  Size: 123 KiB

View file

@ -0,0 +1,127 @@
@import url('../duepuntozero/style.css');
body {background-image:none;
}
.wall-item-content-wrapper {
border-top: 1px solid #ccc;
//border-top:none;
border-left:none;
border-right:none;
border-radius:0px;
//border:none;
//background: #f8f8f8 !important;
}
.wall-item-content-wrapper.comment {
background: #f8f8f8 !important;
// border-left: 1px solid #ccc;
border-top: 1px solid #ccc;
border-left:none;
border-right:none;
border-radius:0px;
}
.wall-item-tools {
// border-top: 1px solid #ccc;
// background: #f8f8f8 !important;
background: #ffffff !important;
}
.comment-edit-text-empty, .comment-edit-text-full {
border: 1px solid #ccc;
border-left: 1px solid #EEE;
background: #ffffff;
}
.comment-edit-wrapper, .comment-wwedit-wrapper {
// background: #ffffff; !important;
background: #f8f8f8 !important;
}
section {
margin: 0px 10%;
margin-right:12%;
background-image:none;
}
aside {
margin-left: 10%;
background-image:none;
}
nav {
margin-left: 32px;
margin-right: 5%;
}
nav #site-location {
top: 80px;
right: 5%;
}
.wall-item-photo, .photo, .contact-block-img, .my-comment-photo {
border-radius: 3px;
-moz-border-radius: 3px;
}
.tabs { background-image:none;
}
.tab.active {
padding: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
border: 1px solid #CCCCCC;
background: #F8F8F8;
font-weight: bold;
}
.tab { margin-right: 1px ;
}
#group-sidebar {
margin-bottom: 10px;
border:none;
}
#nets-sidebar {
margin-bottom: 10px;
border:none;
}
#saved-search-list {
border:none;
}
blockquote {
background-color: #f8f8f8;
border: 1px solid #ccc;
-moz-border-radius: 3px;
border-radius: 3px;
}
.widget {
border: none;
}
.wall-item-content {
max-height: 20000px;
overflow: none;
}
.nav-commlink, .nav-login-link {
margin-top: 67px;
height: 15px;
float:left;
padding: 6px 3px;
}
nav .nav-link {
//float: left;
}

View file

@ -0,0 +1,140 @@
<?php
$color=false;
$cleanzero_font_size=false;
$cleanzero_theme_width=false;
$site_color = get_config("cleanzero","color");
$site_cleanzero_font_size = get_config("cleanzero", "font_size" );
$site_cleanzero_theme_width = get_config("cleanzero", "theme_width");
if (local_user()) {
$color = get_pconfig(local_user(), "cleanzero","color");
$cleanzero_font_size = get_pconfig(local_user(), "cleanzero", "font_size");
$cleanzero_theme_width = get_pconfig(local_user(), "cleanzero", "theme_width");
}
if ($color===false) $color=$site_color;
if ($color===false) $color="cleanzero";
if ($cleanzero_font_size===false) $cleanzero_font_size=$site_cleanzero_font_size;
if ($cleanzero_theme_width===false) $cleanzero_theme_width=$site_cleanzero_theme_width;
if ($cleanzero_theme_width===false) $cleanzero_theme_width="standard";
if (file_exists("$THEMEPATH/$color/style.css")){
echo file_get_contents("$THEMEPATH/$color/style.css");
}
if($cleanzero_font_size == "16"){
echo "
.wall-item-content-wrapper {
font-size: 16px;
}
.wall-item-content-wrapper.comment {
font-size: 16px;
}
";
}
if($cleanzero_font_size == "14"){
echo "
.wall-item-content-wrapper {
font-size: 14px;
}
.wall-item-content-wrapper.comment {
font-size: 14px;
}
";
}
if($cleanzero_font_size == "12"){
echo "
.wall-item-content-wrapper {
font-size: 12px;
}
.wall-item-content-wrapper.comment {
font-size: 12px;
}
";
}
if($cleanzero_font_size == "10"){
echo "
.wall-item-content-wrapper {
font-size: 10px;
}
.wall-item-content-wrapper.comment {
font-size: 10px;
}
";
}
if ($cleanzero_theme_width === "standard") {
echo "
section {
margin: 0px 10%;
margin-right:10%;
}
aside {
margin-left: 10%;
}
nav {
margin-left: 10%;
margin-right: 10%;
}
nav #site-location {
right: 10%;
}
";
}
if ($cleanzero_theme_width === "narrow") {
echo "
section {
margin: 0px 15%;
margin-right:15%;
}
aside {
margin-left: 15%;
}
nav {
margin-left: 15%;
margin-right: 15%;
}
nav #site-location {
right: 15%;
}
";
}
if ($cleanzero_theme_width === "wide") {
echo "
section {
margin: 0px 5%;
margin-right:5%;
}
aside {
margin-left: 5%;
}
nav {
margin-left: 5%;
margin-right: 5%;
}
nav #site-location {
right: 5%;
}
";
}

View file

@ -0,0 +1,114 @@
<?php
/*
* Name: cleanzero
* Description: Theme with clean design derived from the zero theme family. Including options to set color schemes, font sizes and resizing of images in posts
* Version:
* Author: Christian Vogeley (https://christian-vogeley.de/profile/christian)
*/
$a->theme_info = array(
'extends' => 'duepuntozero',
);
function cleanzero_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() {
$('.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;
// get resize configuration
$resize=false;
$site_resize = get_config('cleanzero', 'resize' );
if(local_user()) $resize = get_pconfig(local_user(), 'cleanzero', 'resize' );
if ($resize===false) $resize=$site_resize;
if ($resize===false) $resize=0;
if (intval($resize) > 0) {
//load jquery.ae.image.resize.js
$imageresizeJS = $a->get_baseurl($ssl_state)."/view/theme/cleanzero/js/jquery.ae.image.resize.js";
$a->page['htmlhead'] .= sprintf('<script language="JavaScript" src="%s" ></script>', $imageresizeJS);
$a->page['htmlhead'] .= '
<script>
$(function() {
$(".wall-item-content img").aeImageResize({height: '.$resize.', width: '.$resize.'});
});
</script>';}
}

View file

@ -0,0 +1,10 @@
{{inc field_select.tpl with $field=$color}}{{endinc}}
{{inc field_select.tpl with $field=$font_size}}{{endinc}}
{{inc field_select.tpl with $field=$resize}}{{endinc}}
{{inc field_select.tpl with $field=$theme_width}}{{endinc}}
<div class="settings-submit-wrapper">
<input type="submit" value="$submit" class="settings-submit" name="cleanzero-settings-submit" />
</div>

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.2 KiB

View file

@ -14,6 +14,42 @@ $a->theme_info = array(
function darkzero_NS_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(id) {
$(".comment-edit-bb-" + id).hide();
}
$(document).ready(function() {
$('html').click(function() { $("#nav-notifications-menu" ).hide(); });

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.2 KiB

View file

@ -15,6 +15,43 @@ $a->theme_info = array(
function darkzero_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(id) {
$(".comment-edit-bb-" + id).hide();
}
$(document).ready(function() {
$('html').click(function() { $("#nav-notifications-menu" ).hide(); });

View file

@ -1,89 +0,0 @@
<script>
function confirm_delete(uname){
return confirm( "$confirm_delete".format(uname));
}
function confirm_delete_multi(){
return confirm("$confirm_delete_multi");
}
function selectall(cls){
$("."+cls).attr('checked','checked');
return false;
}
</script>
<div id='adminpage'>
<h1>$title - $page</h1>
<form action="$baseurl/admin/users" method="post">
<input type='hidden' name='form_security_token' value='$form_security_token'>
<h3>$h_pending</h3>
{{ if $pending }}
<table id='pending'>
<thead>
<tr>
{{ for $th_pending as $th }}<th>$th</th>{{ endfor }}
<th></th>
<th></th>
</tr>
</thead>
<tbody>
{{ for $pending as $u }}
<tr>
<td class="created">$u.created</td>
<td class="name">$u.name</td>
<td class="email">$u.email</td>
<td class="checkbox"><input type="checkbox" class="pending_ckbx" id="id_pending_$u.hash" name="pending[]" value="$u.hash" /></td>
<td class="tools">
<a href="$baseurl/regmod/allow/$u.hash" title='$approve'><span class='icon like'></span></a>
<a href="$baseurl/regmod/deny/$u.hash" title='$deny'><span class='icon dislike'></span></a>
</td>
</tr>
{{ endfor }}
</tbody>
</table>
<div class='selectall'><a href='#' onclick="return selectall('pending_ckbx');">$select_all</a></div>
<div class="submit"><input type="submit" name="page_users_deny" value="$deny"/> <input type="submit" name="page_users_approve" value="$approve" /></div>
{{ else }}
<p>$no_pending</p>
{{ endif }}
<h3>$h_users</h3>
{{ if $users }}
<table id='users'>
<thead>
<tr>
<th></th>
{{ for $th_users as $th }}<th>$th</th>{{ endfor }}
<th></th>
<th></th>
</tr>
</thead>
<tbody>
{{ for $users as $u }}
<tr>
<td><img src="$u.micro" alt="$u.nickname" title="$u.nickname"></td>
<td class='name'><a href="$u.url" title="$u.nickname" >$u.name</a></td>
<td class='email'>$u.email</td>
<td class='register_date'>$u.register_date</td>
<td class='login_date'>$u.login_date</td>
<td class='lastitem_date'>$u.lastitem_date</td>
<td class='login_date'>$u.page-flags</td>
<td class="checkbox"><input type="checkbox" class="users_ckbx" id="id_user_$u.uid" name="user[]" value="$u.uid"/></td>
<td class="tools" style="width:60px;">
<a href="$baseurl/admin/users/block/$u.uid?t=$form_security_token" title='{{ if $u.blocked }}$unblock{{ else }}$block{{ endif }}'><span class='icon block {{ if $u.blocked==0 }}dim{{ endif }}'></span></a>
<a href="$baseurl/admin/users/delete/$u.uid?t=$form_security_token" title='$delete' onclick="return confirm_delete('$u.name')"><span class='icon ad_drop'></span></a>
</td>
</tr>
{{ endfor }}
</tbody>
</table>
<div class='selectall'><a href='#' onclick="return selectall('users_ckbx');">$select_all</a></div>
<div class="submit"><input type="submit" name="page_users_block" value="$block/$unblock" /> <input type="submit" name="page_users_delete" value="$delete" onclick="return confirm_delete_multi()" /></div>
{{ else }}
NO USERS?!?
{{ endif }}
</form>
</div>

View file

@ -1,10 +0,0 @@
<div class="directory-item" id="directory-item-$id" >
<div class="directory-photo-wrapper" id="directory-photo-wrapper-$id" >
<div class="directory-photo" id="directory-photo-$id" >
<a href="$profile-link" class="directory-profile-link" id="directory-profile-link-$id" >
<img class="directory-photo-img" src="$photo" alt="$alt-text" title="$alt-text" />
</a>
</div>
</div>
</div>

View file

@ -1,41 +0,0 @@
<div class="comment-wwedit-wrapper" id="comment-edit-wrapper-$id" style="display: block;">
<form class="comment-edit-form" id="comment-edit-form-$id" action="item" method="post" onsubmit="post_comment($id); return false;">
<input type="hidden" name="type" value="$type" />
<input type="hidden" name="profile_uid" value="$profile_uid" />
<input type="hidden" name="parent" value="$parent" />
<input type="hidden" name="return" value="$return_path" />
<input type="hidden" name="jsreload" value="$jsreload" />
<input type="hidden" name="preview" id="comment-preview-inp-$id" value="0" />
<div class="comment-edit-photo" id="comment-edit-photo-$id" >
<a class="comment-edit-photo-link" href="$mylink" title="$mytitle"><img class="my-comment-photo" src="$myphoto" alt="$mytitle" title="$mytitle" /></a>
</div>
<div class="comment-edit-photo-end"></div>
<textarea id="comment-edit-text-$id" class="comment-edit-text-empty" name="body" onFocus="commentOpen(this,$id);tautogrow($id)" onBlur="commentClose(this,$id);" >$comment</textarea>
<a class="icon bb-image" style="cursor: pointer;" onclick="insertFormatting('$comment','img',$id);">img</a>
<a class="icon bb-url" style="cursor: pointer;" onclick="insertFormatting('$comment','url',$id);">url</a>
<a class="icon bb-video" style="cursor: pointer;" onclick="insertFormatting('$comment','video',$id);">video</a>
<a class="icon underline" style="cursor: pointer;" onclick="insertFormatting('$comment','u',$id);">u</a>
<a class="icon italic" style="cursor: pointer;" onclick="insertFormatting('$comment','i',$id);">i</a>
<a class="icon bold" style="cursor: pointer;" onclick="insertFormatting('$comment','b',$id);">b</a>
<a class="icon quote" style="cursor: pointer;" onclick="insertFormatting('$comment','quote',$id);">quote</a>
{{ if $qcomment }}
<select id="qcomment-select-$id" name="qcomment-$id" class="qcomment" onchange="qCommentInsert(this,$id);" >
<option value=""></option>
{{ for $qcomment as $qc }}
<option value="$qc">$qc</option>
{{ endfor }}
</select>
{{ endif }}
<div class="comment-edit-text-end"></div>
<div class="comment-edit-submit-wrapper" id="comment-edit-submit-wrapper-$id" style="display: none;" >
<input type="submit" onclick="post_comment($id); return false;" id="comment-edit-submit-$id" class="comment-edit-submit" name="submit" value="$submit" />
<span onclick="preview_comment($id);" id="comment-edit-preview-link-$id" class="fakelink">$preview</span>
<div id="comment-edit-preview-$id" class="comment-edit-preview" style="display:none;"></div>
</div>
<div class="comment-edit-end"></div>
</form>
</div>

View file

@ -1,86 +0,0 @@
<div id="close_pages">
{{ if $page }}
<div>$page</div>
{{ endif }}
</div>
<div id="close_helpers">
{{ if $lastusers_title }}
<h3 style="margin-top:0px;">$helpers.title.1<a id="close_helpers_icon" onClick="close_helpers()" class="icon close_box" title="close"></a></h3>
<a href="http://kakste.com/profile/newhere" title="#NewHere" style="margin-left: 10px; " target="blank">NewHere</a><br>
<a href="https://helpers.pyxis.uberspace.de/profile/helpers" style="margin-left: 10px; " title="Friendica Support" target="blank">Friendica Support</a><br>
<a href="https://letstalk.pyxis.uberspace.de/profile/letstalk" style="margin-left: 10px; " title="Let's talk" target="blank">Let's talk</a><br>
<a href="http://newzot.hydra.uberspace.de/profile/newzot" title="Local Friendica" style="margin-left: 10px; " target="blank">Local Friendica</a>
{{ endif }}
</div>
<div id="close_services">
{{ if $lastusers_title }}
<h3>$con_services.title.1<a id="close_services_icon" onClick="close_services()" class="icon close_box" title="close"></a></h3>
<div id="right_service_icons" style="margin-left: 16px; margin-top: 5px;">
<a href="$url/facebook"><img alt="Facebook" src="view/theme/diabook-aerith/icons/facebook.png" title="Facebook"></a>
<a href="$url/settings/connectors"><img alt="StatusNet" src="view/theme/diabook-aerith/icons/StatusNet.png?" title="StatusNet"></a>
<a href="$url/settings/connectors"><img alt="LiveJournal" src="view/theme/diabook-aerith/icons/livejournal.png?" title="LiveJournal"></a>
<a href="$url/settings/connectors"><img alt="Posterous" src="view/theme/diabook-aerith/icons/posterous.png?" title="Posterous"></a>
<a href="$url/settings/connectors"><img alt="Tumblr" src="view/theme/diabook-aerith/icons/tumblr.png?" title="Tumblr"></a>
<a href="$url/settings/connectors"><img alt="Twitter" src="view/theme/diabook-aerith/icons/twitter.png?" title="Twitter"></a>
<a href="$url/settings/connectors"><img alt="WordPress" src="view/theme/diabook-aerith/icons/wordpress.png?" title="WordPress"></a>
<a href="$url/settings/connectors"><img alt="E-Mail" src="view/theme/diabook-aerith/icons/email.png?" title="E-Mail"></a>
</div>
{{ endif }}
</div>
<div id="close_friends" style="margin-bottom:53px;">
{{ if $nv }}
<h3>$nv.title.1<a id="close_friends_icon" onClick="close_friends()" class="icon close_box" title="close"></a></h3>
<a class="$nv.directory.2" href="$nv.directory.0" style="margin-left: 10px; " title="$nv.directory.3" >$nv.directory.1</a><br>
<a class="$nv.global_directory.2" href="$nv.global_directory.0" target="blank" style="margin-left: 10px; " title="$nv.global_directory.3" >$nv.global_directory.1</a><br>
<a class="$nv.match.2" href="$nv.match.0" style="margin-left: 10px; " title="$nv.match.3" >$nv.match.1</a><br>
<a class="$nv.suggest.2" href="$nv.suggest.0" style="margin-left: 10px; " title="$nv.suggest.3" >$nv.suggest.1</a><br>
<a class="$nv.invite.2" href="$nv.invite.0" style="margin-left: 10px; " title="$nv.invite.3" >$nv.invite.1</a>
$nv.search
{{ endif }}
</div>
<div id="close_lastusers">
{{ if $lastusers_title }}
<h3>$lastusers_title<a id="close_lastusers_icon" onClick="close_lastusers()" class="icon close_box" title="close"></a></h3>
<div id='lastusers-wrapper' class='items-wrapper'>
{{ for $lastusers_items as $i }}
$i
{{ endfor }}
</div>
{{ endif }}
</div>
{{ if $activeusers_title }}
<h3>$activeusers_title</h3>
<div class='items-wrapper'>
{{ for $activeusers_items as $i }}
$i
{{ endfor }}
</div>
{{ endif }}
<div id="close_lastphotos">
{{ if $photos_title }}
<h3>$photos_title<a id="close_photos_icon" onClick="close_lastphotos()" class="icon close_box" title="close"></a></h3>
<div id='ra-photos-wrapper' class='items-wrapper'>
{{ for $photos_items as $i }}
$i
{{ endfor }}
</div>
{{ endif }}
</div>
<div id="close_lastlikes">
{{ if $like_title }}
<h3>$like_title<a id="close_lastlikes_icon" onClick="close_lastlikes()" class="icon close_box" title="close"></a></h3>
<ul id='likes'>
{{ for $like_items as $i }}
<li id='ra-photos-wrapper'>$i</li>
{{ endfor }}
</ul>
{{ endif }}
</div>

View file

@ -1,84 +0,0 @@
<?php
/**
* Theme settings
*/
function theme_content(&$a){
if(!local_user())
return;
$font_size = get_pconfig(local_user(), 'diabook-aerith', 'font_size' );
$line_height = get_pconfig(local_user(), 'diabook-aerith', 'line_height' );
$resolution = get_pconfig(local_user(), 'diabook-aerith', 'resolution' );
return diabook_form($a,$font_size, $line_height,$resolution);
}
function theme_post(&$a){
if(! local_user())
return;
if (isset($_POST['diabook-aerith-settings-submit'])){
set_pconfig(local_user(), 'diabook-aerith', 'font_size', $_POST['diabook-aerith_font_size']);
set_pconfig(local_user(), 'diabook-aerith', 'line_height', $_POST['diabook-aerith_line_height']);
set_pconfig(local_user(), 'diabook-aerith', 'resolution', $_POST['diabook-aerith_resolution']);
}
}
function theme_admin(&$a){
$font_size = get_config('diabook-aerith', 'font_size' );
$line_height = get_config('diabook-aerith', 'line_height' );
$resolution = get_config('diabook-aerith', 'resolution' );
return diabook_form($a,$font_size, $line_height,$resolution);
}
function theme_admin_post(&$a){
if (isset($_POST['diabook-aerith-settings-submit'])){
set_config('diabook-aerith', 'font_size', $_POST['diabook-aerith_font_size']);
set_config('diabook-aerith', 'line_height', $_POST['diabook-aerith_line_height']);
set_config('diabook-aerith', 'resolution', $_POST['diabook-aerith_resolution']);
}
}
function diabook_form(&$a, $font_size, $line_height, $resolution){
$line_heights = array(
"1.3"=>"1.3",
"---"=>"---",
"1.5"=>"1.5",
"1.4"=>"1.4",
"1.2"=>"1.2",
"1.1"=>"1.1",
);
$font_sizes = array(
'13'=>'13',
"---"=>"---",
"15"=>"15",
'14'=>'14',
'13.5'=>'13.5',
'12.5'=>'12.5',
'12'=>'12',
);
$resolutions = array(
'normal'=>'normal',
'wide'=>'wide',
);
$t = file_get_contents( dirname(__file__). "/theme_settings.tpl" );
$o .= replace_macros($t, array(
'$submit' => t('Submit'),
'$baseurl' => $a->get_baseurl(),
'$title' => t("Theme settings"),
'$font_size' => array('diabook-aerith_font_size', t('Set font-size for posts and comments'), $font_size, '', $font_sizes),
'$line_height' => array('diabook-aerith_line_height', t('Set line-height for posts and comments'), $line_height, '', $line_heights),
'$resolution' => array('diabook-aerith_resolution', t('Set resolution for middle column'), $resolution, '', $resolutions),
));
return $o;
}

View file

@ -1,25 +0,0 @@
<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>

View file

@ -1,11 +0,0 @@
<div class="directory-item" id="directory-item-$id" >
<div class="directory-photo-wrapper" id="directory-photo-wrapper-$id" >
<div class="directory-photo" id="directory-photo-$id" >
<a href="$profile-link" class="directory-profile-link" id="directory-profile-link-$id" >
<img class="directory-photo-img" src="$photo" alt="$alt-text" title="$alt-text" />
</a>
</div>
</div>
<div class="contact-name" id="directory-name-$id">$name</div>
</div>

View file

@ -1,11 +0,0 @@
<div id="widget_$title">
{{if $title}}<h3 style="border-bottom: 1px solid #D2D2D2;">$title</h3>{{endif}}
{{if $desc}}<div class="desc">$desc</div>{{endif}}
<ul class="rs_tabs">
{{ for $items as $item }}
<li><a href="$item.url" class="rs_tab button {{ if $item.selected }}selected{{ endif }}">$item.label</a></li>
{{ endfor }}
</ul>
</div>

View file

@ -1,34 +0,0 @@
<div id="profile_side" >
<div class="">
<h3 style="margin-left: 2px;">$title<a href="group/new" title="$createtext" class="icon text_add"></a></h3>
</div>
<div id="sidebar-group-list">
<ul class="menu-profile-side">
{{ for $groups as $group }}
<li class="menu-profile-list">
<span class="menu-profile-icon {{ if $group.selected }}group_selected{{else}}group_unselected{{ endif }}"></span>
<a href="$group.href" class="menu-profile-list-item">
$group.text
</a>
{{ if $group.edit }}
<a href="$group.edit.href" class="action"><span class="icon text_edit" ></span></a>
{{ endif }}
{{ 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 }}
</li>
{{ endfor }}
</ul>
</div>
{{ if $ungrouped }}
<div id="sidebar-ungrouped">
<a href="nogroup">$ungrouped</a>
</div>
{{ endif }}
</div>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 762 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 697 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 939 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 917 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 335 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 699 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 685 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 206 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 774 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 475 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 803 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 568 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 568 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 386 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 292 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 880 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 723 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 352 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 706 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 577 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 849 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 388 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 365 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 366 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 697 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 637 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 901 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 579 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 579 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 300 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 764 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 754 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 795 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 795 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 286 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 384 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 336 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 664 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 688 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 631 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 296 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 427 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 296 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 293 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 65 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 303 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 227 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 278 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 388 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 183 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 501 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 353 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 834 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 715 B

Some files were not shown because too many files have changed in this diff Show more