Merge branch 'master' of https://github.com/friendica/red
This commit is contained in:
commit
fc8c34826e
Binary file not shown.
Before Width: | Height: | Size: 322 B |
Binary file not shown.
Before Width: | Height: | Size: 346 B |
Binary file not shown.
Before Width: | Height: | Size: 490 B |
@ -6,108 +6,6 @@ function get_capath() {
|
|||||||
return appdirpath() . '/library/cacert.pem';
|
return appdirpath() . '/library/cacert.pem';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// curl wrapper. If binary flag is true, return binary
|
|
||||||
// results.
|
|
||||||
|
|
||||||
/**
|
|
||||||
* fetch_url is deprecated and being replaced by the more capable z_fetch_url
|
|
||||||
* please use that function instead.
|
|
||||||
* Once all occurrences of fetch_url are removed from the codebase we will
|
|
||||||
* remove this function and perhaps rename z_fetch_url back to fetch_url
|
|
||||||
*/
|
|
||||||
|
|
||||||
// post request to $url. $params is an array of post variables.
|
|
||||||
|
|
||||||
|
|
||||||
function post_url($url,$params, $headers = null, &$redirects = 0, $timeout = 0) {
|
|
||||||
$a = get_app();
|
|
||||||
$ch = curl_init($url);
|
|
||||||
if(($redirects > 8) || (! $ch))
|
|
||||||
return false;
|
|
||||||
|
|
||||||
curl_setopt($ch, CURLOPT_HEADER, true);
|
|
||||||
@curl_setopt($ch, CURLOPT_CAINFO, get_capath());
|
|
||||||
curl_setopt($ch, CURLOPT_RETURNTRANSFER,true);
|
|
||||||
curl_setopt($ch, CURLOPT_POST,1);
|
|
||||||
curl_setopt($ch, CURLOPT_POSTFIELDS,$params);
|
|
||||||
curl_setopt($ch, CURLOPT_USERAGENT, "Red");
|
|
||||||
|
|
||||||
if(intval($timeout)) {
|
|
||||||
curl_setopt($ch, CURLOPT_TIMEOUT, $timeout);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
$curl_time = intval(get_config('system','curl_timeout'));
|
|
||||||
curl_setopt($ch, CURLOPT_TIMEOUT, (($curl_time !== false) ? $curl_time : 60));
|
|
||||||
}
|
|
||||||
|
|
||||||
if(defined('LIGHTTPD')) {
|
|
||||||
if(!is_array($headers)) {
|
|
||||||
$headers = array('Expect:');
|
|
||||||
} else {
|
|
||||||
if(!in_array('Expect:', $headers)) {
|
|
||||||
array_push($headers, 'Expect:');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if($headers)
|
|
||||||
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
|
|
||||||
|
|
||||||
$check_cert = get_config('system','verifyssl');
|
|
||||||
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, (($check_cert) ? true : false));
|
|
||||||
$prx = get_config('system','proxy');
|
|
||||||
if(strlen($prx)) {
|
|
||||||
curl_setopt($ch, CURLOPT_HTTPPROXYTUNNEL, 1);
|
|
||||||
curl_setopt($ch, CURLOPT_PROXY, $prx);
|
|
||||||
$prxusr = get_config('system','proxyuser');
|
|
||||||
if(strlen($prxusr))
|
|
||||||
curl_setopt($ch, CURLOPT_PROXYUSERPWD, $prxusr);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// don't let curl abort the entire application
|
|
||||||
// if it throws any errors.
|
|
||||||
|
|
||||||
$s = @curl_exec($ch);
|
|
||||||
|
|
||||||
$base = $s;
|
|
||||||
$curl_info = curl_getinfo($ch);
|
|
||||||
$http_code = $curl_info['http_code'];
|
|
||||||
|
|
||||||
$header = '';
|
|
||||||
|
|
||||||
// Pull out multiple headers, e.g. proxy and continuation headers
|
|
||||||
// allow for HTTP/2.x without fixing code
|
|
||||||
|
|
||||||
while(preg_match('/^HTTP\/[1-2].+? [1-5][0-9][0-9]/',$base)) {
|
|
||||||
$chunk = substr($base,0,strpos($base,"\r\n\r\n")+4);
|
|
||||||
$header .= $chunk;
|
|
||||||
$base = substr($base,strlen($chunk));
|
|
||||||
}
|
|
||||||
|
|
||||||
if($http_code == 301 || $http_code == 302 || $http_code == 303 || $http_code == 307 || $http_code == 308) {
|
|
||||||
$matches = array();
|
|
||||||
preg_match('/(Location:|URI:)(.*?)\n/', $header, $matches);
|
|
||||||
$newurl = trim(array_pop($matches));
|
|
||||||
if(strpos($newurl,'/') === 0)
|
|
||||||
$newurl = $url . $newurl;
|
|
||||||
$url_parsed = @parse_url($newurl);
|
|
||||||
if (isset($url_parsed)) {
|
|
||||||
$redirects++;
|
|
||||||
@curl_close($ch);
|
|
||||||
return post_url($newurl,$params,$redirects,$timeout);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$body = substr($s,strlen($header));
|
|
||||||
curl_close($ch);
|
|
||||||
return($body);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @function z_fetch_url
|
* @function z_fetch_url
|
||||||
* @param string $url
|
* @param string $url
|
||||||
@ -251,6 +149,8 @@ function z_post_url($url,$params, $redirects = 0, $opts = array()) {
|
|||||||
"Accept: " . $opts['accept_content']
|
"Accept: " . $opts['accept_content']
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
if(x($opts,'headers'))
|
||||||
|
curl_setopt($ch, CURLOPT_HTTPHEADER, $opts['headers']);
|
||||||
|
|
||||||
if(x($opts,'timeout') && intval($opts['timeout'])) {
|
if(x($opts,'timeout') && intval($opts['timeout'])) {
|
||||||
@curl_setopt($ch, CURLOPT_TIMEOUT, $opts['timeout']);
|
@curl_setopt($ch, CURLOPT_TIMEOUT, $opts['timeout']);
|
||||||
@ -676,63 +576,6 @@ function parse_xml_string($s,$strict = true) {
|
|||||||
return $x;
|
return $x;
|
||||||
}
|
}
|
||||||
|
|
||||||
function add_fcontact($arr,$update = false) {
|
|
||||||
|
|
||||||
if($update) {
|
|
||||||
$r = q("UPDATE `fcontact` SET
|
|
||||||
`name` = '%s',
|
|
||||||
`photo` = '%s',
|
|
||||||
`request` = '%s',
|
|
||||||
`nick` = '%s',
|
|
||||||
`addr` = '%s',
|
|
||||||
`batch` = '%s',
|
|
||||||
`notify` = '%s',
|
|
||||||
`poll` = '%s',
|
|
||||||
`confirm` = '%s',
|
|
||||||
`alias` = '%s',
|
|
||||||
`pubkey` = '%s',
|
|
||||||
`updated` = '%s'
|
|
||||||
WHERE `url` = '%s' AND `network` = '%s' LIMIT 1",
|
|
||||||
dbesc($arr['name']),
|
|
||||||
dbesc($arr['photo']),
|
|
||||||
dbesc($arr['request']),
|
|
||||||
dbesc($arr['nick']),
|
|
||||||
dbesc($arr['addr']),
|
|
||||||
dbesc($arr['batch']),
|
|
||||||
dbesc($arr['notify']),
|
|
||||||
dbesc($arr['poll']),
|
|
||||||
dbesc($arr['confirm']),
|
|
||||||
dbesc($arr['alias']),
|
|
||||||
dbesc($arr['pubkey']),
|
|
||||||
dbesc(datetime_convert()),
|
|
||||||
dbesc($arr['url']),
|
|
||||||
dbesc($arr['network'])
|
|
||||||
);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
$r = q("insert into fcontact ( `url`,`name`,`photo`,`request`,`nick`,`addr`,
|
|
||||||
`batch`, `notify`,`poll`,`confirm`,`network`,`alias`,`pubkey`,`updated` )
|
|
||||||
values('%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s','%s')",
|
|
||||||
dbesc($arr['url']),
|
|
||||||
dbesc($arr['name']),
|
|
||||||
dbesc($arr['photo']),
|
|
||||||
dbesc($arr['request']),
|
|
||||||
dbesc($arr['nick']),
|
|
||||||
dbesc($arr['addr']),
|
|
||||||
dbesc($arr['batch']),
|
|
||||||
dbesc($arr['notify']),
|
|
||||||
dbesc($arr['poll']),
|
|
||||||
dbesc($arr['confirm']),
|
|
||||||
dbesc($arr['network']),
|
|
||||||
dbesc($arr['alias']),
|
|
||||||
dbesc($arr['pubkey']),
|
|
||||||
dbesc(datetime_convert())
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $r;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
function scale_external_images($s, $include_link = true, $scale_replace = false) {
|
function scale_external_images($s, $include_link = true, $scale_replace = false) {
|
||||||
|
|
||||||
@ -810,52 +653,6 @@ function scale_external_images($s, $include_link = true, $scale_replace = false)
|
|||||||
return $s;
|
return $s;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
function fix_contact_ssl_policy(&$contact,$new_policy) {
|
|
||||||
|
|
||||||
$ssl_changed = false;
|
|
||||||
if((intval($new_policy) == SSL_POLICY_SELFSIGN || $new_policy === 'self') && strstr($contact['url'],'https:')) {
|
|
||||||
$ssl_changed = true;
|
|
||||||
$contact['url'] = str_replace('https:','http:',$contact['url']);
|
|
||||||
$contact['request'] = str_replace('https:','http:',$contact['request']);
|
|
||||||
$contact['notify'] = str_replace('https:','http:',$contact['notify']);
|
|
||||||
$contact['poll'] = str_replace('https:','http:',$contact['poll']);
|
|
||||||
$contact['confirm'] = str_replace('https:','http:',$contact['confirm']);
|
|
||||||
$contact['poco'] = str_replace('https:','http:',$contact['poco']);
|
|
||||||
}
|
|
||||||
|
|
||||||
if((intval($new_policy) == SSL_POLICY_FULL || $new_policy === 'full') && strstr($contact['url'],'http:')) {
|
|
||||||
$ssl_changed = true;
|
|
||||||
$contact['url'] = str_replace('http:','https:',$contact['url']);
|
|
||||||
$contact['request'] = str_replace('http:','https:',$contact['request']);
|
|
||||||
$contact['notify'] = str_replace('http:','https:',$contact['notify']);
|
|
||||||
$contact['poll'] = str_replace('http:','https:',$contact['poll']);
|
|
||||||
$contact['confirm'] = str_replace('http:','https:',$contact['confirm']);
|
|
||||||
$contact['poco'] = str_replace('http:','https:',$contact['poco']);
|
|
||||||
}
|
|
||||||
|
|
||||||
if($ssl_changed) {
|
|
||||||
q("update contact set
|
|
||||||
url = '%s',
|
|
||||||
request = '%s',
|
|
||||||
notify = '%s',
|
|
||||||
poll = '%s',
|
|
||||||
confirm = '%s',
|
|
||||||
poco = '%s'
|
|
||||||
where id = %d limit 1",
|
|
||||||
dbesc($contact['url']),
|
|
||||||
dbesc($contact['request']),
|
|
||||||
dbesc($contact['notify']),
|
|
||||||
dbesc($contact['poll']),
|
|
||||||
dbesc($contact['confirm']),
|
|
||||||
dbesc($contact['poco']),
|
|
||||||
intval($contact['id'])
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* xml2array() will convert the given XML text to an array in the XML structure.
|
* xml2array() will convert the given XML text to an array in the XML structure.
|
||||||
* Link: http://www.bin-co.com/php/scripts/xml2array/
|
* Link: http://www.bin-co.com/php/scripts/xml2array/
|
||||||
|
@ -197,7 +197,7 @@ function load_hooks() {
|
|||||||
$a->hooks[$rr['hook']][] = array($rr['file'],$rr['function']);
|
$a->hooks[$rr['hook']][] = array($rr['file'],$rr['function']);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
logger('hooks: ' . print_r($a->hooks,true));
|
//logger('hooks: ' . print_r($a->hooks,true));
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -11,7 +11,7 @@ function events_post(&$a) {
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
$event_id = ((x($_POST,'event_id')) ? intval($_POST['event_id']) : 0);
|
$event_id = ((x($_POST,'event_id')) ? intval($_POST['event_id']) : 0);
|
||||||
$cid = ((x($_POST,'cid')) ? intval($_POST['cid']) : 0);
|
$xchan = ((x($_POST,'xchan')) ? dbesc($_POST['xchan']) : '');
|
||||||
$uid = local_user();
|
$uid = local_user();
|
||||||
$startyear = intval($_POST['startyear']);
|
$startyear = intval($_POST['startyear']);
|
||||||
$startmonth = intval($_POST['startmonth']);
|
$startmonth = intval($_POST['startmonth']);
|
||||||
@ -28,6 +28,11 @@ function events_post(&$a) {
|
|||||||
$adjust = intval($_POST['adjust']);
|
$adjust = intval($_POST['adjust']);
|
||||||
$nofinish = intval($_POST['nofinish']);
|
$nofinish = intval($_POST['nofinish']);
|
||||||
|
|
||||||
|
// only allow editing your own events.
|
||||||
|
|
||||||
|
if(($xchan) && ($xchan !== get_observer_hash()))
|
||||||
|
return;
|
||||||
|
|
||||||
// The default setting for the `private` field in event_store() is false, so mirror that
|
// The default setting for the `private` field in event_store() is false, so mirror that
|
||||||
$private_event = false;
|
$private_event = false;
|
||||||
|
|
||||||
@ -389,11 +394,9 @@ function events_content(&$a) {
|
|||||||
else
|
else
|
||||||
$sh_checked = (($orig_event['allow_cid'] === '<' . $channel['channel_hash'] . '>' && (! $orig_event['allow_gid']) && (! $orig_event['deny_cid']) && (! $orig_event['deny_gid'])) ? '' : ' checked="checked" ' );
|
$sh_checked = (($orig_event['allow_cid'] === '<' . $channel['channel_hash'] . '>' && (! $orig_event['allow_gid']) && (! $orig_event['deny_cid']) && (! $orig_event['deny_gid'])) ? '' : ' checked="checked" ' );
|
||||||
|
|
||||||
if($cid)
|
if($orig_event['event_xchan'])
|
||||||
$sh_checked .= ' disabled="disabled" ';
|
$sh_checked .= ' disabled="disabled" ';
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
$tpl = get_markup_template('event_form.tpl');
|
$tpl = get_markup_template('event_form.tpl');
|
||||||
|
|
||||||
$sdt = ((x($orig_event)) ? $orig_event['start'] : 'now');
|
$sdt = ((x($orig_event)) ? $orig_event['start'] : 'now');
|
||||||
@ -426,6 +429,15 @@ function events_content(&$a) {
|
|||||||
|
|
||||||
require_once('include/acl_selectors.php');
|
require_once('include/acl_selectors.php');
|
||||||
|
|
||||||
|
$perm_defaults = array(
|
||||||
|
'allow_cid' => $channel['channel_allow_cid'],
|
||||||
|
'allow_gid' => $channel['channel_allow_gid'],
|
||||||
|
'deny_cid' => $channel['channel_deny_cid'],
|
||||||
|
'deny_gid' => $channel['channel_deny_gid']
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
$o .= replace_macros($tpl,array(
|
$o .= replace_macros($tpl,array(
|
||||||
'$post' => $a->get_baseurl() . '/events',
|
'$post' => $a->get_baseurl() . '/events',
|
||||||
'$eid' => $eid,
|
'$eid' => $eid,
|
||||||
@ -453,8 +465,7 @@ function events_content(&$a) {
|
|||||||
'$t_orig' => $t_orig,
|
'$t_orig' => $t_orig,
|
||||||
'$sh_text' => t('Share this event'),
|
'$sh_text' => t('Share this event'),
|
||||||
'$sh_checked' => $sh_checked,
|
'$sh_checked' => $sh_checked,
|
||||||
// FIXME
|
'$acl' => (($orig_event['event_xchan']) ? '' : populate_acl(((x($orig_event)) ? $orig_event : $perm_defaults))),
|
||||||
'$acl' => (($cid) ? '' : populate_acl(((x($orig_event)) ? $orig_event : $a->user),false)),
|
|
||||||
'$submit' => t('Submit')
|
'$submit' => t('Submit')
|
||||||
|
|
||||||
));
|
));
|
||||||
|
@ -1,5 +1,9 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
// FIXME - this has never been properly ported from Friendica
|
||||||
|
// It takes keywords from your profile and queries the directory server for
|
||||||
|
// matching keywords from other profiles.
|
||||||
|
|
||||||
|
|
||||||
function match_content(&$a) {
|
function match_content(&$a) {
|
||||||
|
|
||||||
@ -30,10 +34,10 @@ function match_content(&$a) {
|
|||||||
if($a->pager['page'] != 1)
|
if($a->pager['page'] != 1)
|
||||||
$params['p'] = $a->pager['page'];
|
$params['p'] = $a->pager['page'];
|
||||||
|
|
||||||
if(strlen(get_config('system','directory_submit_url')))
|
// if(strlen(get_config('system','directory_submit_url')))
|
||||||
$x = post_url('http://dir.friendica.com/msearch', $params);
|
// $x = post_url('http://dir.friendica.com/msearch', $params);
|
||||||
else
|
// else
|
||||||
$x = post_url($a->get_baseurl() . '/msearch', $params);
|
// $x = post_url($a->get_baseurl() . '/msearch', $params);
|
||||||
|
|
||||||
$j = json_decode($x);
|
$j = json_decode($x);
|
||||||
|
|
||||||
|
239
mod/post.php
239
mod/post.php
@ -14,6 +14,72 @@ function post_init(&$a) {
|
|||||||
// Here we will pick out the magic auth params which arrive
|
// Here we will pick out the magic auth params which arrive
|
||||||
// as a get request, and the only communications to arrive this way.
|
// as a get request, and the only communications to arrive this way.
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Magic Auth
|
||||||
|
* ==========
|
||||||
|
*
|
||||||
|
* So-called "magic auth" takes place by a special exchange. On the remote computer, a redirection is made to the zot endpoint with special GET parameters.
|
||||||
|
*
|
||||||
|
* Endpoint: https://example.com/post/name (name is now optional - we are authenticating to a site, not a channel)
|
||||||
|
*
|
||||||
|
* where 'name' is the left hand side of the channel webbie, for instance 'mike' where the webbie is 'mike@zothub.com'
|
||||||
|
*
|
||||||
|
* Additionally four GET parameters are supplied:
|
||||||
|
*
|
||||||
|
** auth => the webbie of the person requesting access
|
||||||
|
** dest => the desired destination URL (urlencoded)
|
||||||
|
** sec => a random string which is also stored locally for use during the verification phase.
|
||||||
|
** version => the zot revision
|
||||||
|
*
|
||||||
|
* When this packet is received, a zot message is sent to the site hosting the request auth identity.
|
||||||
|
* (e.g. if $_GET['auth'] is foobar@podunk.edu, a zot packet is sent to the podunk.edu zot endpoint, which is typically /post)
|
||||||
|
* If no information has been recorded about the requesting identity a zot information packet will be retrieved before
|
||||||
|
* continuing.
|
||||||
|
*
|
||||||
|
* The sender of this packet is the name attached to the request endpoint. e.g. 'mike' in this example. If this channel
|
||||||
|
* cannot be located, we will choose any local channel as the sender. The recipients will be a single recipient corresponding
|
||||||
|
* to the guid and guid_sig we have associated with the auth identity
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* {
|
||||||
|
* "type":"auth_check",
|
||||||
|
* "sender":{
|
||||||
|
* "guid":"kgVFf_...",
|
||||||
|
* "guid_sig":"PT9-TApz...",
|
||||||
|
* "url":"http:\/\/podunk.edu",
|
||||||
|
* "url_sig":"T8Bp7j..."
|
||||||
|
* },
|
||||||
|
* "recipients":{
|
||||||
|
* {
|
||||||
|
* "guid":"ZHSqb...",
|
||||||
|
* "guid_sig":"JsAAXi..."
|
||||||
|
* }
|
||||||
|
* }
|
||||||
|
* "callback":"\/post",
|
||||||
|
* "version":1,
|
||||||
|
* "secret":"1eaa661",
|
||||||
|
* "secret_sig":"eKV968b1..."
|
||||||
|
* }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* auth_check messages MUST use encapsulated encryption. This message is sent to the origination site, which checks the 'secret' to see
|
||||||
|
* if it is the same as the 'sec' which it passed originally. It also checks the secret_sig which is the secret signed by the
|
||||||
|
* destination channel's private key and base64url encoded. If everything checks out, a json packet is returned:
|
||||||
|
*
|
||||||
|
* {
|
||||||
|
* "success":1,
|
||||||
|
* "confirm":"q0Ysovd1u..."
|
||||||
|
* }
|
||||||
|
*
|
||||||
|
* 'confirm' in this case is the base64url encoded RSA signature of the concatenation of 'secret' with the
|
||||||
|
* base64url encoded whirlpool hash of the source guid and guid_sig; signed with the source channel private key.
|
||||||
|
* This prevents a man-in-the-middle from inserting a rogue success packet. Upon receipt and successful
|
||||||
|
* verification of this packet, the destination site will redirect to the original destination URL and indicate a successful remote login.
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
if(argc() > 1) {
|
if(argc() > 1) {
|
||||||
$webbie = argv(1);
|
$webbie = argv(1);
|
||||||
}
|
}
|
||||||
@ -45,11 +111,23 @@ function post_init(&$a) {
|
|||||||
$c = q("select * from channel where channel_address = '%s' limit 1",
|
$c = q("select * from channel where channel_address = '%s' limit 1",
|
||||||
dbesc($webbie)
|
dbesc($webbie)
|
||||||
);
|
);
|
||||||
|
}
|
||||||
|
if(! $c) {
|
||||||
|
|
||||||
|
// They are authenticating ultimately to the site and not to a particular channel.
|
||||||
|
// Any channel will do, providing it's currently active. We just need to have an
|
||||||
|
// identity to attach to the packet we send back. So find one.
|
||||||
|
|
||||||
|
$c = q("select * from channel where not ( channel_pageflags & %d ) limit 1",
|
||||||
|
intval(PAGE_REMOVED)
|
||||||
|
);
|
||||||
|
|
||||||
if(! $c) {
|
if(! $c) {
|
||||||
|
|
||||||
|
// nobody here
|
||||||
|
|
||||||
logger('mod_zot: auth: unable to find channel ' . $webbie);
|
logger('mod_zot: auth: unable to find channel ' . $webbie);
|
||||||
// They'll get a notice when they hit the page, we don't need two of them.
|
goaway($desturl);
|
||||||
// In fact we only need the name to map the destination, auth can proceed
|
|
||||||
// without it.
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -153,7 +231,160 @@ function post_init(&$a) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @function post_post(&$a)
|
||||||
|
* zot communications and messaging
|
||||||
|
*
|
||||||
|
* Sender HTTP posts to this endpoint ($site/post typically) with 'data' parameter set to json zot message packet.
|
||||||
|
* This packet is optionally encrypted, which we will discover if the json has an 'iv' element.
|
||||||
|
* $contents => array( 'alg' => 'aes256cbc', 'iv' => initialisation vector, 'key' => decryption key, 'data' => encrypted data);
|
||||||
|
* $contents->iv and $contents->key are random strings encrypted with this site's RSA public key and then base64url encoded.
|
||||||
|
* Currently only 'aes256cbc' is used, but this is extensible should that algorithm prove inadequate.
|
||||||
|
*
|
||||||
|
* Once decrypted, one will find the normal json_encoded zot message packet.
|
||||||
|
*
|
||||||
|
* Defined packet types are: notify, purge, refresh, auth_check, ping, and pickup
|
||||||
|
*
|
||||||
|
* Standard packet: (used by notify, purge, refresh, and auth_check)
|
||||||
|
*
|
||||||
|
* {
|
||||||
|
* "type": "notify",
|
||||||
|
* "sender":{
|
||||||
|
* "guid":"kgVFf_1...",
|
||||||
|
* "guid_sig":"PT9-TApzp...",
|
||||||
|
* "url":"http:\/\/podunk.edu",
|
||||||
|
* "url_sig":"T8Bp7j5...",
|
||||||
|
* },
|
||||||
|
* "recipients": { optional recipient array },
|
||||||
|
* "callback":"\/post",
|
||||||
|
* "version":1,
|
||||||
|
* "secret":"1eaa...",
|
||||||
|
* "secret_sig": "df89025470fac8..."
|
||||||
|
* }
|
||||||
|
*
|
||||||
|
* Signature fields are all signed with the sender channel private key and base64url encoded.
|
||||||
|
* Recipients are arrays of guid and guid_sig, which were previously signed with the recipients private
|
||||||
|
* key and base64url encoded and later obtained via channel discovery. Absence of recipients indicates
|
||||||
|
* a public message or visible to all potential listeners on this site.
|
||||||
|
*
|
||||||
|
* "pickup" packet:
|
||||||
|
* The pickup packet is sent in response to a notify packet from another site
|
||||||
|
*
|
||||||
|
* {
|
||||||
|
* "type":"pickup",
|
||||||
|
* "url":"http:\/\/example.com",
|
||||||
|
* "callback":"http:\/\/example.com\/post",
|
||||||
|
* "callback_sig":"teE1_fLI...",
|
||||||
|
* "secret":"1eaa...",
|
||||||
|
* "secret_sig":"O7nB4_..."
|
||||||
|
* }
|
||||||
|
*
|
||||||
|
* In the pickup packet, the sig fields correspond to the respective data element signed with this site's system
|
||||||
|
* private key and then base64url encoded.
|
||||||
|
* The "secret" is the same as the original secret from the notify packet.
|
||||||
|
*
|
||||||
|
* If verification is successful, a json structure is returned
|
||||||
|
* containing a success indicator and an array of type 'pickup'.
|
||||||
|
* Each pickup element contains the original notify request and a message field whose contents are
|
||||||
|
* dependent on the message type
|
||||||
|
*
|
||||||
|
* This JSON array is AES encapsulated using the site public key of the site that sent the initial zot pickup packet.
|
||||||
|
* Using the above example, this would be example.com.
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* {
|
||||||
|
* "success":1,
|
||||||
|
* "pickup":{
|
||||||
|
* "notify":{
|
||||||
|
* "type":"notify",
|
||||||
|
* "sender":{
|
||||||
|
* "guid":"kgVFf_...",
|
||||||
|
* "guid_sig":"PT9-TApz...",
|
||||||
|
* "url":"http:\/\/z.podunk.edu",
|
||||||
|
* "url_sig":"T8Bp7j5D..."
|
||||||
|
* },
|
||||||
|
* "callback":"\/post",
|
||||||
|
* "version":1,
|
||||||
|
* "secret":"1eaa661..."
|
||||||
|
* },
|
||||||
|
* "message":{
|
||||||
|
* "type":"activity",
|
||||||
|
* "message_id":"10b049ce384cbb2da9467319bc98169ab36290b8bbb403aa0c0accd9cb072e76@podunk.edu",
|
||||||
|
* "message_top":"10b049ce384cbb2da9467319bc98169ab36290b8bbb403aa0c0accd9cb072e76@podunk.edu",
|
||||||
|
* "message_parent":"10b049ce384cbb2da9467319bc98169ab36290b8bbb403aa0c0accd9cb072e76@podunk.edu",
|
||||||
|
* "created":"2012-11-20 04:04:16",
|
||||||
|
* "edited":"2012-11-20 04:04:16",
|
||||||
|
* "title":"",
|
||||||
|
* "body":"Hi Nickordo",
|
||||||
|
* "app":"",
|
||||||
|
* "verb":"post",
|
||||||
|
* "object_type":"",
|
||||||
|
* "target_type":"",
|
||||||
|
* "permalink":"",
|
||||||
|
* "location":"",
|
||||||
|
* "longlat":"",
|
||||||
|
* "owner":{
|
||||||
|
* "name":"Indigo",
|
||||||
|
* "address":"indigo@podunk.edu",
|
||||||
|
* "url":"http:\/\/podunk.edu",
|
||||||
|
* "photo":{
|
||||||
|
* "mimetype":"image\/jpeg",
|
||||||
|
* "src":"http:\/\/podunk.edu\/photo\/profile\/m\/5"
|
||||||
|
* },
|
||||||
|
* "guid":"kgVFf_...",
|
||||||
|
* "guid_sig":"PT9-TAp...",
|
||||||
|
* },
|
||||||
|
* "author":{
|
||||||
|
* "name":"Indigo",
|
||||||
|
* "address":"indigo@podunk.edu",
|
||||||
|
* "url":"http:\/\/podunk.edu",
|
||||||
|
* "photo":{
|
||||||
|
* "mimetype":"image\/jpeg",
|
||||||
|
* "src":"http:\/\/podunk.edu\/photo\/profile\/m\/5"
|
||||||
|
* },
|
||||||
|
* "guid":"kgVFf_...",
|
||||||
|
* "guid_sig":"PT9-TAp..."
|
||||||
|
* }
|
||||||
|
* }
|
||||||
|
* }
|
||||||
|
*}
|
||||||
|
*
|
||||||
|
* Currently defined message types are 'activity', 'mail', 'profile' and 'channel_sync', which each have
|
||||||
|
* different content schemas.
|
||||||
|
*
|
||||||
|
* Ping packet:
|
||||||
|
* A ping packet does not require any parameters except the type. It may or may not be encrypted.
|
||||||
|
*
|
||||||
|
* {
|
||||||
|
* "type": "ping"
|
||||||
|
* }
|
||||||
|
*
|
||||||
|
* On receipt of a ping packet a ping response will be returned:
|
||||||
|
*
|
||||||
|
* {
|
||||||
|
* "success" : 1,
|
||||||
|
* "site" {
|
||||||
|
* "url":"http:\/\/podunk.edu",
|
||||||
|
* "url_sig":"T8Bp7j5...",
|
||||||
|
* "sitekey": "-----BEGIN PUBLIC KEY-----
|
||||||
|
* MIICIjANBgkqhkiG9w0BAQE..."
|
||||||
|
* }
|
||||||
|
* }
|
||||||
|
*
|
||||||
|
* The ping packet can be used to verify that a site has not been re-installed, and to
|
||||||
|
* initiate corrective action if it has. The url_sig is signed with the site private key
|
||||||
|
* and base64url encoded - and this should verify with the enclosed sitekey. Failure to
|
||||||
|
* verify indicates the site is corrupt or otherwise unable to communicate using zot.
|
||||||
|
* This return packet is not otherwise verified, so should be compared with other
|
||||||
|
* results obtained from this site which were verified prior to taking action. For instance
|
||||||
|
* if you have one verified result with this signature and key, and other records for this
|
||||||
|
* url which have different signatures and keys, it indicates that the site was re-installed
|
||||||
|
* and corrective action may commence (remove or mark invalid any entries with different
|
||||||
|
* signatures).
|
||||||
|
* If you have no records which match this url_sig and key - no corrective action should
|
||||||
|
* be taken as this packet may have been returned by an imposter.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
function post_post(&$a) {
|
function post_post(&$a) {
|
||||||
|
@ -69,6 +69,7 @@ function post_to_red_post($post_id) {
|
|||||||
$password = post_to_red_get_password();
|
$password = post_to_red_get_password();
|
||||||
$seed_location = post_to_red_get_seed_location();
|
$seed_location = post_to_red_get_seed_location();
|
||||||
$channel = post_to_red_get_channel_name();
|
$channel = post_to_red_get_channel_name();
|
||||||
|
$backlink = get_option('post_to_red_backlink');
|
||||||
|
|
||||||
if ((isset($user_name)) && (isset($password)) && (isset($seed_location))) {
|
if ((isset($user_name)) && (isset($password)) && (isset($seed_location))) {
|
||||||
// remove potential comments
|
// remove potential comments
|
||||||
@ -88,7 +89,23 @@ function post_to_red_post($post_id) {
|
|||||||
$message .= "<br />$tag_string";
|
$message .= "<br />$tag_string";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$cats = '';
|
||||||
|
|
||||||
|
$terms = get_the_terms($post_id,'category');
|
||||||
|
if($terms) {
|
||||||
|
foreach($terms as $term) {
|
||||||
|
if(strlen($cats))
|
||||||
|
$cats .= ',';
|
||||||
|
$cats .= $term->name;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
$bbcode = xpost_to_html2bbcode($message);
|
$bbcode = xpost_to_html2bbcode($message);
|
||||||
|
|
||||||
|
if($backlink)
|
||||||
|
$bbcode .= "\n\n" . _('Source:') . ' ' . '[url]' . get_permalink($post_id) . '[/url]';
|
||||||
|
|
||||||
$url = $seed_location . '/api/statuses/update';
|
$url = $seed_location . '/api/statuses/update';
|
||||||
|
|
||||||
@ -103,7 +120,9 @@ function post_to_red_post($post_id) {
|
|||||||
);
|
);
|
||||||
if($channel)
|
if($channel)
|
||||||
$body['channel'] = $channel;
|
$body['channel'] = $channel;
|
||||||
|
if($cats)
|
||||||
|
$body['category'] = $cats;
|
||||||
|
|
||||||
// post:
|
// post:
|
||||||
$request = new WP_Http;
|
$request = new WP_Http;
|
||||||
$result = $request->request($url , array( 'method' => 'POST', 'body' => $body, 'headers' => $headers));
|
$result = $request->request($url , array( 'method' => 'POST', 'body' => $body, 'headers' => $headers));
|
||||||
@ -188,7 +207,8 @@ function post_to_red_displayAdminContent() {
|
|||||||
$password = post_to_red_get_password();
|
$password = post_to_red_get_password();
|
||||||
$user_acct = post_to_red_get_acct_name();
|
$user_acct = post_to_red_get_acct_name();
|
||||||
$channel = post_to_red_get_channel_name();
|
$channel = post_to_red_get_channel_name();
|
||||||
|
$backlink = get_option('post_to_red_backlink');
|
||||||
|
$backlink_checked = ((intval($backlink)) ? ' checked="checked" ' : '');
|
||||||
// debug...
|
// debug...
|
||||||
// echo "seed location: $seed_url</br>";
|
// echo "seed location: $seed_url</br>";
|
||||||
// echo "password: $password</br>";
|
// echo "password: $password</br>";
|
||||||
@ -204,10 +224,11 @@ function post_to_red_displayAdminContent() {
|
|||||||
<h2>Configuration</h2>
|
<h2>Configuration</h2>
|
||||||
<form method="post" action="{$_SERVER["REQUEST_URI"]}">
|
<form method="post" action="{$_SERVER["REQUEST_URI"]}">
|
||||||
Enter the login details of your Red Matrix account<br /><br />
|
Enter the login details of your Red Matrix account<br /><br />
|
||||||
<input type="text" name="post_to_red_acct_name" value="{$user_acct}"/>
|
Login (email): <input type="text" name="post_to_red_acct_name" value="{$user_acct}"/><br />
|
||||||
Password: <input type="password" name="post_to_red_password" value="{$password}"/>
|
Password: <input type="password" name="post_to_red_password" value="{$password}"/><br />
|
||||||
Red Matrix URL: <input type="text" name="post_to_red_url" value="{$seed_url}"/>
|
Red Matrix URL: <input type="text" name="post_to_red_url" value="{$seed_url}"/><br />
|
||||||
Optional channel nickname: <input type="text" name="post_to_red_channel" value="{$channel}"/>
|
Optional channel nickname: <input type="text" name="post_to_red_channel" value="{$channel}"/><br />
|
||||||
|
Add permalink to posts? <input type="checkbox" name="post_to_red_backlink" value="1" {$backlink_checked} /><br />
|
||||||
<input type="submit" value="Save" name="submit" />
|
<input type="submit" value="Save" name="submit" />
|
||||||
</form>
|
</form>
|
||||||
<p></p>
|
<p></p>
|
||||||
@ -266,7 +287,7 @@ function post_to_red_display_admin_page() {
|
|||||||
update_option('post_to_red_channel_name', $channelname);
|
update_option('post_to_red_channel_name', $channelname);
|
||||||
update_option('post_to_red_seed_location', $red_url);
|
update_option('post_to_red_seed_location', $red_url);
|
||||||
update_option('post_to_red_password', $password);
|
update_option('post_to_red_password', $password);
|
||||||
|
update_option('post_to_red_backlink', $_REQUEST['post_to_red_backlink']);
|
||||||
}
|
}
|
||||||
|
|
||||||
post_to_red_displayAdminContent();
|
post_to_red_displayAdminContent();
|
||||||
|
34
view/css/mod_connections.css
Normal file
34
view/css/mod_connections.css
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
|
||||||
|
.field_abook_help {
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
.abook-them {
|
||||||
|
margin-left: 225px;
|
||||||
|
margin-bottom: 15px;
|
||||||
|
}
|
||||||
|
.abook-me {
|
||||||
|
margin-left: 36px;
|
||||||
|
margin-bottom: 15px;
|
||||||
|
}
|
||||||
|
.acheckbox {
|
||||||
|
margin-bottom: 5px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.abook-pending-contact {
|
||||||
|
background: orange;
|
||||||
|
font-weight: bold;
|
||||||
|
margin: 10px;
|
||||||
|
padding: 20px 5px 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#contact-slider {
|
||||||
|
width: 600px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.abook-edit-them, .abook-edit-me {
|
||||||
|
float: left;
|
||||||
|
width: 100px !important;
|
||||||
|
}
|
||||||
|
.field_abook_help {
|
||||||
|
float: left;
|
||||||
|
}
|
144
view/css/mod_profiles.css
Normal file
144
view/css/mod_profiles.css
Normal file
@ -0,0 +1,144 @@
|
|||||||
|
#profile-edit-default-desc {
|
||||||
|
color: #FF0000;
|
||||||
|
border: 1px solid #FF8888;
|
||||||
|
background-color: #FFEEEE;
|
||||||
|
padding: 7px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#profile-edit-clone-link-wrapper {
|
||||||
|
float: left;
|
||||||
|
margin-left: 50px;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
width: 300px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#profile-edit-links-end {
|
||||||
|
clear: both;
|
||||||
|
margin-bottom: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.profile-listing-photo {
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.profile-edit-submit-wrapper {
|
||||||
|
margin-top: 20px;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#profile-photo-link-select-wrapper {
|
||||||
|
margin-top: 2em;
|
||||||
|
}
|
||||||
|
|
||||||
|
#profile-photo-submit-wrapper {
|
||||||
|
margin-top: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#profile-edit-with-label {
|
||||||
|
width: 175px;
|
||||||
|
margin-left: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#profile-edit-profile-name-label,
|
||||||
|
#profile-edit-name-label,
|
||||||
|
#profile-edit-pdesc-label,
|
||||||
|
#profile-edit-gender-label,
|
||||||
|
#profile-edit-dob-label,
|
||||||
|
#profile-edit-address-label,
|
||||||
|
#profile-edit-locality-label,
|
||||||
|
#profile-edit-region-label,
|
||||||
|
#profile-edit-postal-code-label,
|
||||||
|
#profile-edit-country-name-label,
|
||||||
|
#profile-edit-marital-label,
|
||||||
|
#profile-edit-sexual-label,
|
||||||
|
#profile-edit-politic-label,
|
||||||
|
#profile-edit-religion-label,
|
||||||
|
#profile-edit-pubkeywords-label,
|
||||||
|
#profile-edit-prvkeywords-label,
|
||||||
|
#profile-edit-homepage-label,
|
||||||
|
#profile-edit-hometown-label {
|
||||||
|
float: left;
|
||||||
|
width: 175px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#profile-edit-profile-name,
|
||||||
|
#profile-edit-name,
|
||||||
|
#profile-edit-pdesc,
|
||||||
|
#gender-select,
|
||||||
|
#profile-edit-dob,
|
||||||
|
#profile-edit-address,
|
||||||
|
#profile-edit-locality,
|
||||||
|
#profile-edit-region,
|
||||||
|
#profile-edit-postal-code,
|
||||||
|
#profile-edit-country-name,
|
||||||
|
#marital-select,
|
||||||
|
#sexual-select,
|
||||||
|
#profile-edit-politic,
|
||||||
|
#profile-edit-religion,
|
||||||
|
#profile-edit-pubkeywords,
|
||||||
|
#profile-edit-prvkeywords,
|
||||||
|
#profile-in-dir-yes,
|
||||||
|
#profile-in-dir-no,
|
||||||
|
#profile-in-netdir-yes,
|
||||||
|
#profile-in-netdir-no,
|
||||||
|
#hide-wall-yes,
|
||||||
|
#hide-wall-no,
|
||||||
|
#hide-friends-yes,
|
||||||
|
#hide-friends-no {
|
||||||
|
float: left;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#profile-edit-pdesc-desc,
|
||||||
|
#profile-edit-pubkeywords-desc,
|
||||||
|
#profile-edit-prvkeywords-desc {
|
||||||
|
float: left;
|
||||||
|
margin-left: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#profile-edit-homepage, #profile-edit-hometown {
|
||||||
|
float: left;
|
||||||
|
margin-bottom: 35px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#profile-edit-profile-name-end,
|
||||||
|
#profile-edit-name-end,
|
||||||
|
#profile-edit-pdesc-end,
|
||||||
|
#profile-edit-gender-end,
|
||||||
|
#profile-edit-dob-end,
|
||||||
|
#profile-edit-address-end,
|
||||||
|
#profile-edit-locality-end,
|
||||||
|
#profile-edit-region-end,
|
||||||
|
#profile-edit-postal-code-end,
|
||||||
|
#profile-edit-country-name-end,
|
||||||
|
#profile-edit-marital-end,
|
||||||
|
#profile-edit-sexual-end,
|
||||||
|
#profile-edit-politic-end,
|
||||||
|
#profile-edit-religion-end,
|
||||||
|
#profile-edit-pubkeywords-end,
|
||||||
|
#profile-edit-prvkeywords-end,
|
||||||
|
#profile-edit-homepage-end,
|
||||||
|
#profile-edit-hometown-end,
|
||||||
|
#profile-in-dir-break,
|
||||||
|
#profile-in-dir-end,
|
||||||
|
#profile-in-netdir-break,
|
||||||
|
#profile-in-netdir-end,
|
||||||
|
#hide-wall-break,
|
||||||
|
#hide-wall-end,
|
||||||
|
#hide-friends-break,
|
||||||
|
#hide-friends-end {
|
||||||
|
clear: both;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#gender-select, #marital-select, #sexual-select {
|
||||||
|
width: 220px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#profile-edit-profile-name-wrapper .required {
|
||||||
|
color: #FF0000;
|
||||||
|
float: left;
|
||||||
|
}
|
@ -13,3 +13,14 @@
|
|||||||
margin-top: 15px;
|
margin-top: 15px;
|
||||||
margin-bottom: 45px;
|
margin-bottom: 45px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#settings-notifications label {
|
||||||
|
margin-left: 20px;
|
||||||
|
}
|
||||||
|
#settings-notify-desc, #settings-activity-desc {
|
||||||
|
font-weight: bold;
|
||||||
|
margin-bottom: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
2884
view/de/messages.po
2884
view/de/messages.po
File diff suppressed because it is too large
Load Diff
@ -7,47 +7,47 @@ function string_plural_select_de($n){
|
|||||||
$a->strings["Visible to everybody"] = "Für jeden sichtbar";
|
$a->strings["Visible to everybody"] = "Für jeden sichtbar";
|
||||||
$a->strings["show"] = "zeigen";
|
$a->strings["show"] = "zeigen";
|
||||||
$a->strings["don't show"] = "Verbergen";
|
$a->strings["don't show"] = "Verbergen";
|
||||||
$a->strings[" and "] = " und ";
|
$a->strings[" and "] = "und";
|
||||||
$a->strings["public profile"] = "öffentliches Profil";
|
$a->strings["public profile"] = "öffentliches Profil";
|
||||||
$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s hat %2\$s auf “%3\$s” geändert";
|
$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s hat %2\$s auf “%3\$s” geändert";
|
||||||
$a->strings["Visit %1\$s's %2\$s"] = "Besuche %1\$s's %2\$s";
|
$a->strings["Visit %1\$s's %2\$s"] = "Besuche %1\$s's %2\$s";
|
||||||
$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s hat ein aktualisiertes %2\$s, %3\$s wurde verändert.";
|
$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s hat ein aktualisiertes %2\$s, %3\$s wurde verändert.";
|
||||||
$a->strings["Public Timeline"] = "Öffentliche Zeitleiste";
|
|
||||||
$a->strings["Red Matrix Notification"] = "Red Matrix Benachrichtigung";
|
$a->strings["Red Matrix Notification"] = "Red Matrix Benachrichtigung";
|
||||||
|
$a->strings["redmatrix"] = "";
|
||||||
$a->strings["Thank You,"] = "Danke.";
|
$a->strings["Thank You,"] = "Danke.";
|
||||||
$a->strings["%s Administrator"] = "%s Administrator";
|
$a->strings["%s Administrator"] = "%s Administrator";
|
||||||
$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
|
$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
|
||||||
$a->strings["[Red:Notify] New mail received at %s"] = "[Red Notify] Neue Mail auf %s empfangen";
|
$a->strings["[Red:Notify] New mail received at %s"] = "[Red Notify] Neue Mail auf %s empfangen";
|
||||||
$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s hat Dir eine private Nachricht auf %2\$s geschickt.";
|
$a->strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s hat dir eine private Nachricht auf %3\$s gesendet.";
|
||||||
$a->strings["%1\$s sent you %2\$s."] = "%1\$s hat dir %2\$s geschickt.";
|
$a->strings["%1\$s sent you %2\$s."] = "%1\$s hat dir %2\$s geschickt.";
|
||||||
$a->strings["a private message"] = "eine private Nachricht";
|
$a->strings["a private message"] = "eine private Nachricht";
|
||||||
$a->strings["Please visit %s to view and/or reply to your private messages."] = "Bitte besuche %s, um die private Nachricht anzusehen und/oder darauf zu antworten.";
|
$a->strings["Please visit %s to view and/or reply to your private messages."] = "Bitte besuche %s, um die private Nachricht anzusehen und/oder darauf zu antworten.";
|
||||||
$a->strings["%1\$s commented on [zrl=%2\$s]a %3\$s[/zrl]"] = "%1\$s hat auf [zrl=%2\$s]einen %3\$s[/zrl] kommentiert";
|
$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "";
|
||||||
$a->strings["%1\$s commented on [zrl=%2\$s]%3\$s's %4\$s[/zrl]"] = "%1\$s kommentierte auf [zrl=%2\$s]%3\$s's %4\$s[/zrl]";
|
$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "";
|
||||||
$a->strings["%1\$s commented on [zrl=%2\$s]your %3\$s[/zrl]"] = "%1\$s hat auf [zrl=%2\$s]Dein %3\$s[/zrl] kommentiert";
|
$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "";
|
||||||
$a->strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Red:Notify] Kommentar in Unterhaltung #%1\$d von %2\$s";
|
$a->strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Red:Notify] Kommentar in Unterhaltung #%1\$d von %2\$s";
|
||||||
$a->strings["%s commented on an item/conversation you have been following."] = "%s hat einen Beitrag/eine Konversation kommentiert, dem/der du folgst.";
|
$a->strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "";
|
||||||
$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren.";
|
$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren.";
|
||||||
$a->strings["[Red:Notify] %s posted to your profile wall"] = "[Red:Hinweis] %s schrieb auf Deine Pinnwand";
|
$a->strings["[Red:Notify] %s posted to your profile wall"] = "[Red:Hinweis] %s schrieb auf Deine Pinnwand";
|
||||||
$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s schrieb auf Deine Pinnwand auf %2\$s";
|
$a->strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "";
|
||||||
$a->strings["%1\$s posted to [zrl=%2\$s]your wall[/zrl]"] = "%1\$s schrieb auf [zrl=%2\$s]Deine Pinnwand[/zrl]";
|
$a->strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "";
|
||||||
$a->strings["[Red:Notify] %s tagged you"] = "[Red Notify] %s hat dich getaggt";
|
$a->strings["[Red:Notify] %s tagged you"] = "[Red Notify] %s hat dich getaggt";
|
||||||
$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s hat dich auf %2\$s getaggt";
|
$a->strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s hat dich auf %3\$s getaggt";
|
||||||
$a->strings["%1\$s [zrl=%2\$s]tagged you[/zrl]."] = "%1\$s hat [zrl=%2\$s]Dich getagged[/zrl].";
|
$a->strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "";
|
||||||
$a->strings["[Red:Notify] %1\$s poked you"] = "[Red Notify] %1\$s hat dich angestupst";
|
$a->strings["[Red:Notify] %1\$s poked you"] = "[Red Notify] %1\$s hat dich angestupst";
|
||||||
$a->strings["%1\$s poked you at %2\$s"] = "%1\$s hat dich auf %2\$s angestupst";
|
$a->strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s hat dich auf %3\$s angestubst";
|
||||||
$a->strings["%1\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s [zrl=%2\$s]hat dich angestupst.[/zrl].";
|
$a->strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "";
|
||||||
$a->strings["[Red:Notify] %s tagged your post"] = "[Red:Hinweis] %s hat Dich getagged";
|
$a->strings["[Red:Notify] %s tagged your post"] = "[Red:Hinweis] %s hat Dich getagged";
|
||||||
$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s hat Deinen Beitrag auf %2\$s getagged";
|
$a->strings["%1\$s, %2\$s tagged your post at %3\$s"] = "";
|
||||||
$a->strings["%1\$s tagged [zrl=%2\$s]your post[/zrl]"] = "%1\$s hat [zrl=%2\$s]Deinen Beitrag[/zrl] getagged";
|
$a->strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "";
|
||||||
$a->strings["[Red:Notify] Introduction received"] = "[Red:Notify] Vorstellung erhalten";
|
$a->strings["[Red:Notify] Introduction received"] = "[Red:Notify] Vorstellung erhalten";
|
||||||
$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Du hast auf %2\$s eine Vorstellung von %1\$s erhalten.";
|
$a->strings["%1\$s, you've received an introduction from '%2\$s' at %3\$s"] = "";
|
||||||
$a->strings["You've received [zrl=%1\$s]an introduction[/zrl] from %2\$s."] = "Du hast [zrl=%1\$s]eine Vorstellung[/zrl] von %2\$s erhalten.";
|
$a->strings["%1\$s, you've received [zrl=%2\$s]an introduction[/zrl] from %3\$s."] = "";
|
||||||
$a->strings["You may visit their profile at %s"] = "Du kannst Dir das Profil unter %s ansehen";
|
$a->strings["You may visit their profile at %s"] = "Du kannst Dir das Profil unter %s ansehen";
|
||||||
$a->strings["Please visit %s to approve or reject the introduction."] = "Bitte besuche %s um sie anzunehmen oder abzulehnen.";
|
$a->strings["Please visit %s to approve or reject the introduction."] = "Bitte besuche %s um sie anzunehmen oder abzulehnen.";
|
||||||
$a->strings["[Red:Notify] Friend suggestion received"] = "[Red:Hinweis] Freundschaftsvorschlag erhalten";
|
$a->strings["[Red:Notify] Friend suggestion received"] = "[Red:Hinweis] Freundschaftsvorschlag erhalten";
|
||||||
$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Du hast einen Freundschaftsvorschlag von %1\$s auf %2\$s erhalten";
|
$a->strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "";
|
||||||
$a->strings["You've received [zrl=%1\$s]a friend suggestion[/zrl] for %2\$s from %3\$s."] = "Du hast einen [zrl=%1\$s]Freundschaftsvorschlag[/zrl] für %2\$s von %3\$s erhalten.";
|
$a->strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "";
|
||||||
$a->strings["Name:"] = "Name:";
|
$a->strings["Name:"] = "Name:";
|
||||||
$a->strings["Photo:"] = "Foto:";
|
$a->strings["Photo:"] = "Foto:";
|
||||||
$a->strings["Please visit %s to approve or reject the suggestion."] = "Bitte besuche %s um den Vorschlag zu akzeptieren oder abzulehnen.";
|
$a->strings["Please visit %s to approve or reject the suggestion."] = "Bitte besuche %s um den Vorschlag zu akzeptieren oder abzulehnen.";
|
||||||
@ -70,9 +70,11 @@ $a->strings["Share this"] = "Teile dies";
|
|||||||
$a->strings["share"] = "Teilen";
|
$a->strings["share"] = "Teilen";
|
||||||
$a->strings["View %s's profile - %s"] = "Schaue dir %s's Profil an - %s";
|
$a->strings["View %s's profile - %s"] = "Schaue dir %s's Profil an - %s";
|
||||||
$a->strings["to"] = "zu";
|
$a->strings["to"] = "zu";
|
||||||
|
$a->strings["via"] = "via";
|
||||||
$a->strings["Wall-to-Wall"] = "Wall-to-Wall";
|
$a->strings["Wall-to-Wall"] = "Wall-to-Wall";
|
||||||
$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:";
|
$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:";
|
||||||
$a->strings[" from %s"] = "von %s";
|
$a->strings[" from %s"] = "von %s";
|
||||||
|
$a->strings["last edited: %s"] = "zuletzt bearbeitet: %s";
|
||||||
$a->strings["Please wait"] = "Bitte warten";
|
$a->strings["Please wait"] = "Bitte warten";
|
||||||
$a->strings["%d comment"] = array(
|
$a->strings["%d comment"] = array(
|
||||||
0 => "%d Kommentar",
|
0 => "%d Kommentar",
|
||||||
@ -91,6 +93,7 @@ $a->strings["Image"] = "Bild";
|
|||||||
$a->strings["Link"] = "Link";
|
$a->strings["Link"] = "Link";
|
||||||
$a->strings["Video"] = "Video";
|
$a->strings["Video"] = "Video";
|
||||||
$a->strings["Preview"] = "Vorschau";
|
$a->strings["Preview"] = "Vorschau";
|
||||||
|
$a->strings["Encrypt text"] = "Text verschlüsseln";
|
||||||
$a->strings["Connect"] = "Verbinden";
|
$a->strings["Connect"] = "Verbinden";
|
||||||
$a->strings["New window"] = "Neues Fenster";
|
$a->strings["New window"] = "Neues Fenster";
|
||||||
$a->strings["Open the selected location in a different window or browser tab"] = "Öffne die markierte Adresse in einem neuen Browser Fenster oder Tab";
|
$a->strings["Open the selected location in a different window or browser tab"] = "Öffne die markierte Adresse in einem neuen Browser Fenster oder Tab";
|
||||||
@ -147,6 +150,8 @@ $a->strings["Starts:"] = "Beginnt:";
|
|||||||
$a->strings["Finishes:"] = "Endet:";
|
$a->strings["Finishes:"] = "Endet:";
|
||||||
$a->strings["Location:"] = "Ort:";
|
$a->strings["Location:"] = "Ort:";
|
||||||
$a->strings["General Features"] = "Allgemeine Funktionen";
|
$a->strings["General Features"] = "Allgemeine Funktionen";
|
||||||
|
$a->strings["Content Expiration"] = "Verfall von Inhalten";
|
||||||
|
$a->strings["Remove posts/comments and/or private messages at a future time"] = "Lösche Beiträge, Kommentare und/oder private Nachrichten automatisch zu einem zukünftigen Datum.";
|
||||||
$a->strings["Multiple Profiles"] = "Mehrfachprofile";
|
$a->strings["Multiple Profiles"] = "Mehrfachprofile";
|
||||||
$a->strings["Ability to create multiple profiles"] = "Mehrfachprofile anlegen können";
|
$a->strings["Ability to create multiple profiles"] = "Mehrfachprofile anlegen können";
|
||||||
$a->strings["Web Pages"] = "Webseiten";
|
$a->strings["Web Pages"] = "Webseiten";
|
||||||
@ -166,6 +171,8 @@ $a->strings["Post Preview"] = "Voransicht";
|
|||||||
$a->strings["Allow previewing posts and comments before publishing them"] = "Erlaube Voransicht von Beiträgen und Kommentaren vor Veröffentlichung";
|
$a->strings["Allow previewing posts and comments before publishing them"] = "Erlaube Voransicht von Beiträgen und Kommentaren vor Veröffentlichung";
|
||||||
$a->strings["Channel Sources"] = "Kanal Quellen";
|
$a->strings["Channel Sources"] = "Kanal Quellen";
|
||||||
$a->strings["Automatically import channel content from other channels or feeds"] = "Importiere automatisch Inhalte für diesen Kanal von anderen Kanälen oder Feeds.";
|
$a->strings["Automatically import channel content from other channels or feeds"] = "Importiere automatisch Inhalte für diesen Kanal von anderen Kanälen oder Feeds.";
|
||||||
|
$a->strings["Even More Encryption"] = "Noch mehr Verschlüsselung";
|
||||||
|
$a->strings["Allow encryption of content end-to-end with a shared secret key"] = "Erlaube Ende-zu-Ende Verschlüsselung von Inhalten, mit einem geteilten geheimen Schlüssel";
|
||||||
$a->strings["Network and Stream Filtering"] = "Netzwerk- und Stream-Filter";
|
$a->strings["Network and Stream Filtering"] = "Netzwerk- und Stream-Filter";
|
||||||
$a->strings["Search by Date"] = "Suche nach Datum";
|
$a->strings["Search by Date"] = "Suche nach Datum";
|
||||||
$a->strings["Ability to select posts by date ranges"] = "Möglichkeit, Beiträge nach Zeiträumen auszuwählen";
|
$a->strings["Ability to select posts by date ranges"] = "Möglichkeit, Beiträge nach Zeiträumen auszuwählen";
|
||||||
@ -180,8 +187,6 @@ $a->strings["Enable tab to display all new Network activity"] = "Aktiviere Reite
|
|||||||
$a->strings["Affinity Tool"] = "Beziehungs-Tool";
|
$a->strings["Affinity Tool"] = "Beziehungs-Tool";
|
||||||
$a->strings["Filter stream activity by depth of relationships"] = "Filter Aktivitätenstream nach Tiefe der Beziehung";
|
$a->strings["Filter stream activity by depth of relationships"] = "Filter Aktivitätenstream nach Tiefe der Beziehung";
|
||||||
$a->strings["Post/Comment Tools"] = "Beitrag-/Kommentar-Tools";
|
$a->strings["Post/Comment Tools"] = "Beitrag-/Kommentar-Tools";
|
||||||
$a->strings["Multiple Deletion"] = "Mehrfachlöschung";
|
|
||||||
$a->strings["Select and delete multiple posts/comments at once"] = "Mehrfachlöschung und -auswahl von Beiträgen/Kommentaren in einem Rutsch";
|
|
||||||
$a->strings["Edit Sent Posts"] = "Bearbeite gesendete Beiträge";
|
$a->strings["Edit Sent Posts"] = "Bearbeite gesendete Beiträge";
|
||||||
$a->strings["Edit and correct posts and comments after sending"] = "Bearbeite und korrigiere Beiträge und Kommentare nach dem Senden";
|
$a->strings["Edit and correct posts and comments after sending"] = "Bearbeite und korrigiere Beiträge und Kommentare nach dem Senden";
|
||||||
$a->strings["Tagging"] = "Verschlagworten";
|
$a->strings["Tagging"] = "Verschlagworten";
|
||||||
@ -202,7 +207,7 @@ $a->strings["All Channels"] = "Alle Kanäle";
|
|||||||
$a->strings["edit"] = "Bearbeiten";
|
$a->strings["edit"] = "Bearbeiten";
|
||||||
$a->strings["Collections"] = "Sammlungen";
|
$a->strings["Collections"] = "Sammlungen";
|
||||||
$a->strings["Edit collection"] = "Bearbeite Sammlungen";
|
$a->strings["Edit collection"] = "Bearbeite Sammlungen";
|
||||||
$a->strings["Create a new collection"] = "Erzeuge neue Sammlung";
|
$a->strings["Create a new collection"] = "Neue Sammlung erzeugen";
|
||||||
$a->strings["Channels not in any collection"] = "Kanäle, die nicht in einer Sammlung sind";
|
$a->strings["Channels not in any collection"] = "Kanäle, die nicht in einer Sammlung sind";
|
||||||
$a->strings["add"] = "hinzufügen";
|
$a->strings["add"] = "hinzufügen";
|
||||||
$a->strings["Delete this item?"] = "Dieses Element löschen?";
|
$a->strings["Delete this item?"] = "Dieses Element löschen?";
|
||||||
@ -210,6 +215,8 @@ $a->strings["show fewer"] = "Zeige weniger";
|
|||||||
$a->strings["Password too short"] = "Kennwort zu kurz";
|
$a->strings["Password too short"] = "Kennwort zu kurz";
|
||||||
$a->strings["Passwords do not match"] = "Kennwörter stimmen nicht überein";
|
$a->strings["Passwords do not match"] = "Kennwörter stimmen nicht überein";
|
||||||
$a->strings["everybody"] = "alle";
|
$a->strings["everybody"] = "alle";
|
||||||
|
$a->strings["Secret Passphrase"] = "geheime Passwort-Phrase";
|
||||||
|
$a->strings["Passphrase hint"] = "Hinweis zur Phrase";
|
||||||
$a->strings["timeago.prefixAgo"] = "timeago.prefixAgo";
|
$a->strings["timeago.prefixAgo"] = "timeago.prefixAgo";
|
||||||
$a->strings["timeago.suffixAgo"] = "timeago.suffixAgo";
|
$a->strings["timeago.suffixAgo"] = "timeago.suffixAgo";
|
||||||
$a->strings["ago"] = "her";
|
$a->strings["ago"] = "her";
|
||||||
@ -326,10 +333,8 @@ $a->strings["November"] = "November";
|
|||||||
$a->strings["December"] = "Dezember";
|
$a->strings["December"] = "Dezember";
|
||||||
$a->strings["unknown.???"] = "unbekannt.???";
|
$a->strings["unknown.???"] = "unbekannt.???";
|
||||||
$a->strings["bytes"] = "Bytes";
|
$a->strings["bytes"] = "Bytes";
|
||||||
$a->strings["remove"] = "lösche";
|
$a->strings["remove category"] = "Kategorie entfernen";
|
||||||
$a->strings["[remove]"] = "[lösche]";
|
$a->strings["remove from file"] = "aus der Datei entfernen";
|
||||||
$a->strings["Categories:"] = "Kategorien:";
|
|
||||||
$a->strings["Filed under:"] = "Gespeichert unter:";
|
|
||||||
$a->strings["Click to open/close"] = "Klicke zum Öffnen/Schließen";
|
$a->strings["Click to open/close"] = "Klicke zum Öffnen/Schließen";
|
||||||
$a->strings["link to source"] = "Link zum Originalbeitrag";
|
$a->strings["link to source"] = "Link zum Originalbeitrag";
|
||||||
$a->strings["Select a page layout: "] = "Ein Seiten-Layout auswählen";
|
$a->strings["Select a page layout: "] = "Ein Seiten-Layout auswählen";
|
||||||
@ -346,23 +351,25 @@ $a->strings["Blocks"] = "Blöcke";
|
|||||||
$a->strings["Menus"] = "Menüs";
|
$a->strings["Menus"] = "Menüs";
|
||||||
$a->strings["Layouts"] = "Layouts";
|
$a->strings["Layouts"] = "Layouts";
|
||||||
$a->strings["Pages"] = "Seiten";
|
$a->strings["Pages"] = "Seiten";
|
||||||
|
$a->strings["Public Timeline"] = "Öffentliche Zeitleiste";
|
||||||
$a->strings["Unable to obtain identity information from database"] = "Kann keine Identitäts-Informationen aus Datenbank beziehen";
|
$a->strings["Unable to obtain identity information from database"] = "Kann keine Identitäts-Informationen aus Datenbank beziehen";
|
||||||
$a->strings["Empty name"] = "Namensfeld leer";
|
$a->strings["Empty name"] = "Namensfeld leer";
|
||||||
$a->strings["Name too long"] = "Name ist zu lang";
|
$a->strings["Name too long"] = "Name ist zu lang";
|
||||||
$a->strings["No account identifier"] = "Keine Account-Kennung";
|
$a->strings["No account identifier"] = "Keine Account-Kennung";
|
||||||
|
$a->strings["Nickname is required."] = "Spitzname ist erforderlich.";
|
||||||
$a->strings["Nickname has unsupported characters or is already being used on this site."] = "Der Spitzname enthält nicht-unterstütze Zeichen oder wird bereits auf dieser Seite genutzt.";
|
$a->strings["Nickname has unsupported characters or is already being used on this site."] = "Der Spitzname enthält nicht-unterstütze Zeichen oder wird bereits auf dieser Seite genutzt.";
|
||||||
$a->strings["Unable to retrieve created identity"] = "Kann die erstellte Identität nicht empfangen";
|
$a->strings["Unable to retrieve created identity"] = "Kann die erstellte Identität nicht empfangen";
|
||||||
$a->strings["Default Profile"] = "Standard-Profil";
|
$a->strings["Default Profile"] = "Standard-Profil";
|
||||||
$a->strings["Friends"] = "Freunde";
|
$a->strings["Friends"] = "Freunde";
|
||||||
$a->strings["Image/photo"] = "Bild/Foto";
|
$a->strings["Image/photo"] = "Bild/Foto";
|
||||||
|
$a->strings["Encrypted content"] = "Verschlüsselter Inhalt";
|
||||||
$a->strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s schrieb den folgenden %2\$s %3\$s";
|
$a->strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s schrieb den folgenden %2\$s %3\$s";
|
||||||
$a->strings["post"] = "Beitrag";
|
$a->strings["post"] = "Beitrag";
|
||||||
$a->strings["$1 wrote:"] = "$1 schrieb:";
|
$a->strings["$1 wrote:"] = "$1 schrieb:";
|
||||||
$a->strings["Encrypted content"] = "Verschlüsselter Inhalt";
|
|
||||||
$a->strings["created a new post"] = "Neuer Beitrag wurde erzeugt";
|
|
||||||
$a->strings["commented on %s's post"] = "hat %s's Beitrag kommentiert";
|
|
||||||
$a->strings["Embedded content"] = "Eingebetteter Inhalt";
|
$a->strings["Embedded content"] = "Eingebetteter Inhalt";
|
||||||
$a->strings["Embedding disabled"] = "Einbetten ausgeschaltet";
|
$a->strings["Embedding disabled"] = "Einbetten ausgeschaltet";
|
||||||
|
$a->strings["created a new post"] = "Neuer Beitrag wurde erzeugt";
|
||||||
|
$a->strings["commented on %s's post"] = "hat %s's Beitrag kommentiert";
|
||||||
$a->strings["Permission denied."] = "Zugang verweigert";
|
$a->strings["Permission denied."] = "Zugang verweigert";
|
||||||
$a->strings["Image exceeds website size limit of %lu bytes"] = "Bild überschreitet das Limit der Webseite von %lu bytes";
|
$a->strings["Image exceeds website size limit of %lu bytes"] = "Bild überschreitet das Limit der Webseite von %lu bytes";
|
||||||
$a->strings["Image file is empty."] = "Bilddatei ist leer.";
|
$a->strings["Image file is empty."] = "Bilddatei ist leer.";
|
||||||
@ -436,6 +443,14 @@ $a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."]
|
|||||||
$a->strings["File upload failed. Possible system limit or action terminated."] = "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess.";
|
$a->strings["File upload failed. Possible system limit or action terminated."] = "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess.";
|
||||||
$a->strings["Stored file could not be verified. Upload failed."] = "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen.";
|
$a->strings["Stored file could not be verified. Upload failed."] = "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen.";
|
||||||
$a->strings["Path not available."] = "Pfad nicht verfügbar.";
|
$a->strings["Path not available."] = "Pfad nicht verfügbar.";
|
||||||
|
$a->strings["Empty pathname"] = "leere Pfadangabe";
|
||||||
|
$a->strings["duplicate filename or path"] = "doppelter Dateiname oder Pfad";
|
||||||
|
$a->strings["Path not found."] = "Pfad nicht gefunden.";
|
||||||
|
$a->strings["mkdir failed."] = "mkdir fehlgeschlagen.";
|
||||||
|
$a->strings["database storage failed."] = "Speichern in der Datenbank fehlgeschlagen.";
|
||||||
|
$a->strings["Invalid data packet"] = "Ungültiges Datenpaket";
|
||||||
|
$a->strings["Unable to verify channel signature"] = "Konnte die Signatur des Kanals nicht verifizieren";
|
||||||
|
$a->strings["Unable to verify site signature for %s"] = "Kann die Signatur der Seite von %s nicht verifizieren";
|
||||||
$a->strings["Logout"] = "Abmelden";
|
$a->strings["Logout"] = "Abmelden";
|
||||||
$a->strings["End this session"] = "Beende diese Sitzung";
|
$a->strings["End this session"] = "Beende diese Sitzung";
|
||||||
$a->strings["Home"] = "Home";
|
$a->strings["Home"] = "Home";
|
||||||
@ -460,9 +475,11 @@ $a->strings["Search site content"] = "Durchsuche Seiten-Inhalt";
|
|||||||
$a->strings["Directory"] = "Verzeichnis";
|
$a->strings["Directory"] = "Verzeichnis";
|
||||||
$a->strings["Channel Locator"] = "Kanal-Anzeiger";
|
$a->strings["Channel Locator"] = "Kanal-Anzeiger";
|
||||||
$a->strings["Matrix"] = "Matrix";
|
$a->strings["Matrix"] = "Matrix";
|
||||||
$a->strings["Conversations from your grid"] = "Unterhaltungen von Deinem Netz";
|
$a->strings["Your matrix"] = "Deine Matrix";
|
||||||
$a->strings["See all matrix notifications"] = "Alle Matrix-Benachrichtigungen ansehen";
|
$a->strings["See all matrix notifications"] = "Alle Matrix-Benachrichtigungen ansehen";
|
||||||
$a->strings["Mark all matrix notifications seen"] = "Markiere alle Matrix-Benachrichtigungen als angesehen";
|
$a->strings["Mark all matrix notifications seen"] = "Markiere alle Matrix-Benachrichtigungen als angesehen";
|
||||||
|
$a->strings["Channel Home"] = "Mein Kanal";
|
||||||
|
$a->strings["Channel home"] = "Mein Kanal";
|
||||||
$a->strings["See all channel notifications"] = "Alle Kanal-Benachrichtigungen ansehen";
|
$a->strings["See all channel notifications"] = "Alle Kanal-Benachrichtigungen ansehen";
|
||||||
$a->strings["Mark all channel notifications seen"] = "Markiere alle Kanal-Benachrichtigungen als angesehen";
|
$a->strings["Mark all channel notifications seen"] = "Markiere alle Kanal-Benachrichtigungen als angesehen";
|
||||||
$a->strings["Intros"] = "Vorstellungen";
|
$a->strings["Intros"] = "Vorstellungen";
|
||||||
@ -493,9 +510,6 @@ $a->strings["Admin"] = "Admin";
|
|||||||
$a->strings["Site Setup and Configuration"] = "Seiten-Einrichtung und -Konfiguration";
|
$a->strings["Site Setup and Configuration"] = "Seiten-Einrichtung und -Konfiguration";
|
||||||
$a->strings["Nothing new here"] = "Nichts Neues hier";
|
$a->strings["Nothing new here"] = "Nichts Neues hier";
|
||||||
$a->strings["Please wait..."] = "Bitte warten...";
|
$a->strings["Please wait..."] = "Bitte warten...";
|
||||||
$a->strings["Invalid data packet"] = "Ungültiges Datenpaket";
|
|
||||||
$a->strings["Unable to verify channel signature"] = "Konnte die Signatur des Kanals nicht verifizieren";
|
|
||||||
$a->strings["Unable to verify site signature for %s"] = "Kann die Signatur der Seite von %s nicht verifizieren";
|
|
||||||
$a->strings["Not a valid email address"] = "Ungültige E-Mail-Adresse";
|
$a->strings["Not a valid email address"] = "Ungültige E-Mail-Adresse";
|
||||||
$a->strings["Your email domain is not among those allowed on this site"] = "Deine E-Mail-Adresse ist nicht unter denen, die auf dieser Seite erlaubt sind";
|
$a->strings["Your email domain is not among those allowed on this site"] = "Deine E-Mail-Adresse ist nicht unter denen, die auf dieser Seite erlaubt sind";
|
||||||
$a->strings["Your email address is already registered at this site."] = "Deine E-Mail-Adresse ist auf dieser Seite bereits registriert.";
|
$a->strings["Your email address is already registered at this site."] = "Deine E-Mail-Adresse ist auf dieser Seite bereits registriert.";
|
||||||
@ -509,6 +523,70 @@ $a->strings["your registration password"] = "dein Registrierungspasswort";
|
|||||||
$a->strings["Registration details for %s"] = "Registrierungsdetails für %s";
|
$a->strings["Registration details for %s"] = "Registrierungsdetails für %s";
|
||||||
$a->strings["Account approved."] = "Account bestätigt.";
|
$a->strings["Account approved."] = "Account bestätigt.";
|
||||||
$a->strings["Registration revoked for %s"] = "Registrierung für %s widerrufen";
|
$a->strings["Registration revoked for %s"] = "Registrierung für %s widerrufen";
|
||||||
|
$a->strings["channel"] = "Kanal";
|
||||||
|
$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s mag %2\$s's %3\$s";
|
||||||
|
$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s mag %2\$s's %3\$s nicht";
|
||||||
|
$a->strings["%1\$s is now connected with %2\$s"] = "%1\$s ist jetzt mit %2\$s verbunden";
|
||||||
|
$a->strings["%1\$s poked %2\$s"] = "%1\$s stupste %2\$s";
|
||||||
|
$a->strings["%1\$s is currently %2\$s"] = "%1\$s ist momentan %2\$s";
|
||||||
|
$a->strings["View %s's profile @ %s"] = "Schaue Dir %s's Profil auf %s an.";
|
||||||
|
$a->strings["Categories:"] = "Kategorien:";
|
||||||
|
$a->strings["Filed under:"] = "Gespeichert unter:";
|
||||||
|
$a->strings["View in context"] = "Im Zusammenhang anschauen";
|
||||||
|
$a->strings["remove"] = "lösche";
|
||||||
|
$a->strings["Loading..."] = "Lädt ...";
|
||||||
|
$a->strings["Delete Selected Items"] = "Lösche die ausgewählten Elemente";
|
||||||
|
$a->strings["View Source"] = "Quelle anzeigen";
|
||||||
|
$a->strings["Follow Thread"] = "Unterhaltung folgen";
|
||||||
|
$a->strings["Matrix Activity"] = "Matrix Aktivität";
|
||||||
|
$a->strings["%s likes this."] = "%s gefällt das.";
|
||||||
|
$a->strings["%s doesn't like this."] = "%s gefällt das nicht.";
|
||||||
|
$a->strings["<span %1\$s>%2\$d people</span> like this."] = array(
|
||||||
|
0 => "",
|
||||||
|
1 => "<span %1\$s>%2\$d Personen</span> mögen dies.",
|
||||||
|
);
|
||||||
|
$a->strings["<span %1\$s>%2\$d people</span> don't like this."] = array(
|
||||||
|
0 => "",
|
||||||
|
1 => "<span %1\$s>%2\$d Personen</span> mögen dies nicht.",
|
||||||
|
);
|
||||||
|
$a->strings["and"] = "und";
|
||||||
|
$a->strings[", and %d other people"] = array(
|
||||||
|
0 => "",
|
||||||
|
1 => ", und %d andere",
|
||||||
|
);
|
||||||
|
$a->strings["%s like this."] = "%s gefällt das.";
|
||||||
|
$a->strings["%s don't like this."] = "%s gefällt das nicht.";
|
||||||
|
$a->strings["Visible to <strong>everybody</strong>"] = "Sichtbar für <strong>jeden</strong>";
|
||||||
|
$a->strings["Please enter a link URL:"] = "Geben Sie eine URL ein:";
|
||||||
|
$a->strings["Please enter a video link/URL:"] = "Geben Sie einen Video-Link/URL ein:";
|
||||||
|
$a->strings["Please enter an audio link/URL:"] = "Geben Sie einen Audio-Link/URL ein:";
|
||||||
|
$a->strings["Tag term:"] = "Schlagwort:";
|
||||||
|
$a->strings["Save to Folder:"] = "Speichern in Ordner:";
|
||||||
|
$a->strings["Where are you right now?"] = "Wo bist du jetzt grade?";
|
||||||
|
$a->strings["Expires YYYY-MM-DD HH:MM"] = "Verfällt YYYY-MM-DD HH;MM";
|
||||||
|
$a->strings["Share"] = "Teilen";
|
||||||
|
$a->strings["Page link title"] = "Seitentitel-Link";
|
||||||
|
$a->strings["Upload photo"] = "Foto hochladen";
|
||||||
|
$a->strings["upload photo"] = "Foto hochladen";
|
||||||
|
$a->strings["Attach file"] = "Datei anhängen";
|
||||||
|
$a->strings["attach file"] = "Datei anfügen";
|
||||||
|
$a->strings["Insert web link"] = "Link einfügen";
|
||||||
|
$a->strings["web link"] = "Web-Link";
|
||||||
|
$a->strings["Insert video link"] = "Video-Link einfügen";
|
||||||
|
$a->strings["video link"] = "Video-Link";
|
||||||
|
$a->strings["Insert audio link"] = "Audio-Link einfügen";
|
||||||
|
$a->strings["audio link"] = "Audio-Link";
|
||||||
|
$a->strings["Set your location"] = "Legen Sie Ihren Aufenthaltsort fest";
|
||||||
|
$a->strings["set location"] = "Ort festlegen";
|
||||||
|
$a->strings["Clear browser location"] = "Browser-Standort löschen";
|
||||||
|
$a->strings["clear location"] = "Standort löschen";
|
||||||
|
$a->strings["Set title"] = "Titel festlegen";
|
||||||
|
$a->strings["Categories (comma-separated list)"] = "Kategorien (Kommagetrennte Liste)";
|
||||||
|
$a->strings["Permission settings"] = "Berechtigungs-Einstellungen";
|
||||||
|
$a->strings["permissions"] = "Berechtigungen";
|
||||||
|
$a->strings["Public post"] = "Öffentlicher Beitrag";
|
||||||
|
$a->strings["Example: bob@example.com, mary@example.com"] = "Beispiel: bob@example.com, mary@example.com";
|
||||||
|
$a->strings["Set expiration date"] = "Verfallsdatum setzen";
|
||||||
$a->strings["Logged out."] = "Ausgeloggt.";
|
$a->strings["Logged out."] = "Ausgeloggt.";
|
||||||
$a->strings["Failed authentication"] = "Authentifizierung fehlgeschlagen";
|
$a->strings["Failed authentication"] = "Authentifizierung fehlgeschlagen";
|
||||||
$a->strings["Login failed."] = "Login fehlgeschlagen.";
|
$a->strings["Login failed."] = "Login fehlgeschlagen.";
|
||||||
@ -575,56 +653,6 @@ $a->strings["Click here to upgrade."] = "Klicke hier, um das Upgrade durchzufüh
|
|||||||
$a->strings["This action exceeds the limits set by your subscription plan."] = "Diese Aktion überschreitet die Grenzen Ihres Abonnements.";
|
$a->strings["This action exceeds the limits set by your subscription plan."] = "Diese Aktion überschreitet die Grenzen Ihres Abonnements.";
|
||||||
$a->strings["This action is not available under your subscription plan."] = "Diese Aktion ist in Ihrem Abonnement nicht verfügbar.";
|
$a->strings["This action is not available under your subscription plan."] = "Diese Aktion ist in Ihrem Abonnement nicht verfügbar.";
|
||||||
$a->strings["Default"] = "Standard";
|
$a->strings["Default"] = "Standard";
|
||||||
$a->strings["channel"] = "Kanal";
|
|
||||||
$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s mag %2\$s's %3\$s";
|
|
||||||
$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s mag %2\$s's %3\$s nicht";
|
|
||||||
$a->strings["%1\$s is now connected with %2\$s"] = "%1\$s ist jetzt mit %2\$s verbunden";
|
|
||||||
$a->strings["%1\$s poked %2\$s"] = "%1\$s stupste %2\$s";
|
|
||||||
$a->strings["%1\$s is currently %2\$s"] = "%1\$s ist momentan %2\$s";
|
|
||||||
$a->strings["View %s's profile @ %s"] = "Schaue Dir %s's Profil auf %s an.";
|
|
||||||
$a->strings["View in context"] = "Im Zusammenhang anschauen";
|
|
||||||
$a->strings["Loading..."] = "Lädt ...";
|
|
||||||
$a->strings["Delete Selected Items"] = "Lösche die ausgewählten Elemente";
|
|
||||||
$a->strings["View Source"] = "Quelle anzeigen";
|
|
||||||
$a->strings["Follow Thread"] = "Unterhaltung folgen";
|
|
||||||
$a->strings["Matrix Activity"] = "Matrix Aktivität";
|
|
||||||
$a->strings["%s likes this."] = "%s gefällt das.";
|
|
||||||
$a->strings["%s doesn't like this."] = "%s gefällt das nicht.";
|
|
||||||
$a->strings["<span %1\$s>%2\$d people</span> like this."] = "<span %1\$s>%2\$d Personen</span> mögen dies.";
|
|
||||||
$a->strings["<span %1\$s>%2\$d people</span> don't like this."] = "<span %1\$s>%2\$d Personen</span> mögen dies nicht.";
|
|
||||||
$a->strings["and"] = "und";
|
|
||||||
$a->strings[", and %d other people"] = ", und %d andere";
|
|
||||||
$a->strings["%s like this."] = "%s gefällt das.";
|
|
||||||
$a->strings["%s don't like this."] = "%s gefällt das nicht.";
|
|
||||||
$a->strings["Visible to <strong>everybody</strong>"] = "Sichtbar für <strong>jeden</strong>";
|
|
||||||
$a->strings["Please enter a link URL:"] = "Geben Sie eine URL ein:";
|
|
||||||
$a->strings["Please enter a video link/URL:"] = "Geben Sie einen Video-Link/URL ein:";
|
|
||||||
$a->strings["Please enter an audio link/URL:"] = "Geben Sie einen Audio-Link/URL ein:";
|
|
||||||
$a->strings["Tag term:"] = "Schlagwort:";
|
|
||||||
$a->strings["Save to Folder:"] = "Speichern in Ordner:";
|
|
||||||
$a->strings["Where are you right now?"] = "Wo bist du jetzt grade?";
|
|
||||||
$a->strings["Share"] = "Teilen";
|
|
||||||
$a->strings["Page link title"] = "Seitentitel-Link";
|
|
||||||
$a->strings["Upload photo"] = "Foto hochladen";
|
|
||||||
$a->strings["upload photo"] = "Foto hochladen";
|
|
||||||
$a->strings["Attach file"] = "Datei anhängen";
|
|
||||||
$a->strings["attach file"] = "Datei anfügen";
|
|
||||||
$a->strings["Insert web link"] = "Link einfügen";
|
|
||||||
$a->strings["web link"] = "Web-Link";
|
|
||||||
$a->strings["Insert video link"] = "Video-Link einfügen";
|
|
||||||
$a->strings["video link"] = "Video-Link";
|
|
||||||
$a->strings["Insert audio link"] = "Audio-Link einfügen";
|
|
||||||
$a->strings["audio link"] = "Audio-Link";
|
|
||||||
$a->strings["Set your location"] = "Legen Sie Ihren Aufenthaltsort fest";
|
|
||||||
$a->strings["set location"] = "Ort festlegen";
|
|
||||||
$a->strings["Clear browser location"] = "Browser-Standort löschen";
|
|
||||||
$a->strings["clear location"] = "Standort löschen";
|
|
||||||
$a->strings["Set title"] = "Titel festlegen";
|
|
||||||
$a->strings["Categories (comma-separated list)"] = "Kategorien (Kommagetrennte Liste)";
|
|
||||||
$a->strings["Permission settings"] = "Berechtigungs-Einstellungen";
|
|
||||||
$a->strings["permissions"] = "Berechtigungen";
|
|
||||||
$a->strings["Public post"] = "Öffentlicher Beitrag";
|
|
||||||
$a->strings["Example: bob@example.com, mary@example.com"] = "Beispiel: bob@example.com, mary@example.com";
|
|
||||||
$a->strings["Welcome "] = "Willkommen";
|
$a->strings["Welcome "] = "Willkommen";
|
||||||
$a->strings["Please upload a profile photo."] = "Bitte lade ein Profilfoto hoch.";
|
$a->strings["Please upload a profile photo."] = "Bitte lade ein Profilfoto hoch.";
|
||||||
$a->strings["Welcome back "] = "Willkommen zurück";
|
$a->strings["Welcome back "] = "Willkommen zurück";
|
||||||
@ -635,6 +663,13 @@ $a->strings["Archives"] = "Archive";
|
|||||||
$a->strings["Collection not found."] = "Sammlung nicht gefunden";
|
$a->strings["Collection not found."] = "Sammlung nicht gefunden";
|
||||||
$a->strings["Group is empty"] = "Gruppe ist leer";
|
$a->strings["Group is empty"] = "Gruppe ist leer";
|
||||||
$a->strings["Connection not found."] = "Die Verbindung wurde nicht gefunden.";
|
$a->strings["Connection not found."] = "Die Verbindung wurde nicht gefunden.";
|
||||||
|
$a->strings["Sort Options"] = "Sortieroptionen";
|
||||||
|
$a->strings["Alphabetic"] = "alphabetisch";
|
||||||
|
$a->strings["Reverse Alphabetic"] = "Entgegengesetzt alphabetisch";
|
||||||
|
$a->strings["Newest to Oldest"] = "Neueste zuerst";
|
||||||
|
$a->strings["Enable Safe Search"] = "Sichere Suche einschalten";
|
||||||
|
$a->strings["Disable Safe Search"] = "Sichere Suche ausschalten";
|
||||||
|
$a->strings["Safe Mode"] = "Sicherer Modus";
|
||||||
$a->strings["No channel."] = "Kein Channel.";
|
$a->strings["No channel."] = "Kein Channel.";
|
||||||
$a->strings["Common connections"] = "Gemeinsame Verbindungen";
|
$a->strings["Common connections"] = "Gemeinsame Verbindungen";
|
||||||
$a->strings["No connections in common."] = "Keine gemeinsamen Verbindungen.";
|
$a->strings["No connections in common."] = "Keine gemeinsamen Verbindungen.";
|
||||||
@ -678,10 +713,11 @@ $a->strings["You have no more invitations available"] = "Du hast keine weiteren
|
|||||||
$a->strings["Send invitations"] = "Einladungen senden";
|
$a->strings["Send invitations"] = "Einladungen senden";
|
||||||
$a->strings["Enter email addresses, one per line:"] = "Email-Adressen eintragen, eine pro Zeile:";
|
$a->strings["Enter email addresses, one per line:"] = "Email-Adressen eintragen, eine pro Zeile:";
|
||||||
$a->strings["Your message:"] = "Deine Nachricht:";
|
$a->strings["Your message:"] = "Deine Nachricht:";
|
||||||
$a->strings["You are cordially invited to join me and some other close friends on the Red Matrix - a revolutionary new decentralised social and information tool."] = "Du bist herzlich dazu eingeladen mir und einigen anderen gute Freunde zur Red Matrix zu folgen, einem neuen revolutionären dezentralen sozialen Informationswerkzeug.";
|
$a->strings["You are cordially invited to join me and some other close friends on the Red Matrix - a revolutionary new decentralised communication and information tool."] = "Du bist herzlich eingeladen mir und einigen anderen guten Freunden in die Red Matrix zu folgen - einem revolutionaren neuen, dezentralisiertem Kommunikations- und Informationsnetzwerk.";
|
||||||
$a->strings["You will need to supply this invitation code: \$invite_code"] = "Du musst dann den folgenden Einladungs-Code angeben: \$invite_code";
|
$a->strings["You will need to supply this invitation code: \$invite_code"] = "Du musst dann den folgenden Einladungs-Code angeben: \$invite_code";
|
||||||
$a->strings["Please visit my channel at"] = "Bitte besuche meinen Kanal auf";
|
$a->strings["Please visit my channel at"] = "Bitte besuche meinen Kanal auf";
|
||||||
$a->strings["Once you have registered, please connect with my Red Matrix channel address:"] = "Sobald du dich registriert hat, verbinde dich bitte mit meinem Red Matrix Kanal unter folgender Adresse:";
|
$a->strings["Once you have registered (on ANY Red Matrix site - they are all inter-connected), please connect with my Red Matrix channel address:"] = "Wenn du dich registriert hast (egal auf welcher Seite in der Red Matrix, sie sind alle miteinander verbunden) verbinde dich bitte mit meinem Kanal in der Matrix.";
|
||||||
|
$a->strings["Click the [Register] link on the following page to join."] = "";
|
||||||
$a->strings["For more information about the Red Matrix Project and why it has the potential to change the internet as we know it, please visit http://getzot.com"] = "Für weitere Informationen über das Red Matrix Projekt und warum es das Potential hat das Internet wie wir es kennen grundlegend zu verändern schau dir bitte http://getzot.com an";
|
$a->strings["For more information about the Red Matrix Project and why it has the potential to change the internet as we know it, please visit http://getzot.com"] = "Für weitere Informationen über das Red Matrix Projekt und warum es das Potential hat das Internet wie wir es kennen grundlegend zu verändern schau dir bitte http://getzot.com an";
|
||||||
$a->strings["Friends of %s"] = "Freunde von %s";
|
$a->strings["Friends of %s"] = "Freunde von %s";
|
||||||
$a->strings["No friends to display."] = "Keine Freunde zum Anzeigen.";
|
$a->strings["No friends to display."] = "Keine Freunde zum Anzeigen.";
|
||||||
@ -698,6 +734,7 @@ $a->strings["No installed applications."] = "Keine installierten Applikationen";
|
|||||||
$a->strings["Applications"] = "Anwendungen";
|
$a->strings["Applications"] = "Anwendungen";
|
||||||
$a->strings["Invalid item."] = "Ungültiges Element.";
|
$a->strings["Invalid item."] = "Ungültiges Element.";
|
||||||
$a->strings["Channel not found."] = "Kanal nicht gefunden.";
|
$a->strings["Channel not found."] = "Kanal nicht gefunden.";
|
||||||
|
$a->strings["Page not found."] = "Seite nicht gefunden.";
|
||||||
$a->strings["Item not available."] = "Element nicht verfügbar.";
|
$a->strings["Item not available."] = "Element nicht verfügbar.";
|
||||||
$a->strings["Red Matrix Server - Setup"] = "Red Matrix Server - Installation";
|
$a->strings["Red Matrix Server - Setup"] = "Red Matrix Server - Installation";
|
||||||
$a->strings["Could not connect to database."] = "Kann nicht mit der Datenbank verbinden.";
|
$a->strings["Could not connect to database."] = "Kann nicht mit der Datenbank verbinden.";
|
||||||
@ -720,7 +757,7 @@ $a->strings["Database Login Name"] = "Datenbank-Benutzername";
|
|||||||
$a->strings["Database Login Password"] = "Datenbank-Kennwort";
|
$a->strings["Database Login Password"] = "Datenbank-Kennwort";
|
||||||
$a->strings["Database Name"] = "Datenbank-Name";
|
$a->strings["Database Name"] = "Datenbank-Name";
|
||||||
$a->strings["Site administrator email address"] = "E-Mail Adresse des Seiten-Administrators";
|
$a->strings["Site administrator email address"] = "E-Mail Adresse des Seiten-Administrators";
|
||||||
$a->strings["Your account email address must match this in order to use the web admin panel."] = "Die Email-Adresse deines Accounts muss dieser Adresse entsprechen, damit du Zugriff zum Admin Panel erhälst.";
|
$a->strings["Your account email address must match this in order to use the web admin panel."] = "Die Email-Adresse deines Accounts muss dieser Adresse entsprechen, damit du Zugriff zum Admin Panel erhältst.";
|
||||||
$a->strings["Website URL"] = "Webseiten URL";
|
$a->strings["Website URL"] = "Webseiten URL";
|
||||||
$a->strings["Please use SSL (https) URL if available."] = "Nutzen Sie bitte SSL (https) URL falls möglich.";
|
$a->strings["Please use SSL (https) URL if available."] = "Nutzen Sie bitte SSL (https) URL falls möglich.";
|
||||||
$a->strings["Please select a default timezone for your website"] = "Wählen Sie die Standard-Zeitzone für Ihre Webseite aus";
|
$a->strings["Please select a default timezone for your website"] = "Wählen Sie die Standard-Zeitzone für Ihre Webseite aus";
|
||||||
@ -770,6 +807,7 @@ $a->strings["The database configuration file \".htconfig.php\" could not be writ
|
|||||||
$a->strings["Errors encountered creating database tables."] = "Fehler während des Anlegens der Datenbank Tabellen aufgetreten.";
|
$a->strings["Errors encountered creating database tables."] = "Fehler während des Anlegens der Datenbank Tabellen aufgetreten.";
|
||||||
$a->strings["<h1>What next</h1>"] = "<h1>Was als Nächstes</h1>";
|
$a->strings["<h1>What next</h1>"] = "<h1>Was als Nächstes</h1>";
|
||||||
$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "WICHTIG: Du musst die geplanten Aufgaben für den Poller [manuell] einrichten.";
|
$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "WICHTIG: Du musst die geplanten Aufgaben für den Poller [manuell] einrichten.";
|
||||||
|
$a->strings["Edit post"] = "Bearbeite Beitrag";
|
||||||
$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt nun %2\$s's %3\$s";
|
$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt nun %2\$s's %3\$s";
|
||||||
$a->strings["[Embedded content - reload page to view]"] = "[Eingebetteter Inhalte - bitte lade die Seite zur Anzeige neu]";
|
$a->strings["[Embedded content - reload page to view]"] = "[Eingebetteter Inhalte - bitte lade die Seite zur Anzeige neu]";
|
||||||
$a->strings["toggle full screen mode"] = "auf Vollbildmodus umschalten";
|
$a->strings["toggle full screen mode"] = "auf Vollbildmodus umschalten";
|
||||||
@ -880,8 +918,8 @@ $a->strings["You receive an introduction"] = "Du eine Vorstellung erhältst";
|
|||||||
$a->strings["Your introductions are confirmed"] = "Deine Vorstellung bestätigt wurde.";
|
$a->strings["Your introductions are confirmed"] = "Deine Vorstellung bestätigt wurde.";
|
||||||
$a->strings["Someone writes on your profile wall"] = "Jemand auf deine Pinnwand schreibt";
|
$a->strings["Someone writes on your profile wall"] = "Jemand auf deine Pinnwand schreibt";
|
||||||
$a->strings["Someone writes a followup comment"] = "Jemand einen Beitrag kommentiert";
|
$a->strings["Someone writes a followup comment"] = "Jemand einen Beitrag kommentiert";
|
||||||
$a->strings["You receive a private message"] = "Du eine private Nachricht erhälst";
|
$a->strings["You receive a private message"] = "Du eine private Nachricht erhältst";
|
||||||
$a->strings["You receive a friend suggestion"] = "Du einen Kontaktvorschlag erhälst";
|
$a->strings["You receive a friend suggestion"] = "Du einen Kontaktvorschlag erhältst";
|
||||||
$a->strings["You are tagged in a post"] = "Du wurdest in einem Beitrag getaggt";
|
$a->strings["You are tagged in a post"] = "Du wurdest in einem Beitrag getaggt";
|
||||||
$a->strings["You are poked/prodded/etc. in a post"] = "Du in einer Nachricht angestupst/geknufft/o.ä. wirst";
|
$a->strings["You are poked/prodded/etc. in a post"] = "Du in einer Nachricht angestupst/geknufft/o.ä. wirst";
|
||||||
$a->strings["Advanced Account/Page Type Settings"] = "Erweiterte Account / Seiten Arten Einstellungen";
|
$a->strings["Advanced Account/Page Type Settings"] = "Erweiterte Account / Seiten Arten Einstellungen";
|
||||||
@ -930,7 +968,7 @@ $a->strings["Users"] = "Benutzer";
|
|||||||
$a->strings["Plugins"] = "Plug-Ins";
|
$a->strings["Plugins"] = "Plug-Ins";
|
||||||
$a->strings["Themes"] = "Themes";
|
$a->strings["Themes"] = "Themes";
|
||||||
$a->strings["Server"] = "Server";
|
$a->strings["Server"] = "Server";
|
||||||
$a->strings["DB updates"] = "Datenbankaktualisierungen";
|
$a->strings["DB updates"] = "DB Aktualisierungen";
|
||||||
$a->strings["Logs"] = "Protokolle";
|
$a->strings["Logs"] = "Protokolle";
|
||||||
$a->strings["Plugin Features"] = "Plug-In Funktionen";
|
$a->strings["Plugin Features"] = "Plug-In Funktionen";
|
||||||
$a->strings["User registrations waiting for confirmation"] = "Nutzer Anmeldungen die auf Bestätigung warten";
|
$a->strings["User registrations waiting for confirmation"] = "Nutzer Anmeldungen die auf Bestätigung warten";
|
||||||
@ -1017,10 +1055,6 @@ $a->strings["Account not found"] = "Konto nicht gefunden";
|
|||||||
$a->strings["User '%s' deleted"] = "Benutzer '%s' gelöscht";
|
$a->strings["User '%s' deleted"] = "Benutzer '%s' gelöscht";
|
||||||
$a->strings["User '%s' unblocked"] = "Benutzer '%s' freigegeben";
|
$a->strings["User '%s' unblocked"] = "Benutzer '%s' freigegeben";
|
||||||
$a->strings["User '%s' blocked"] = "Benutzer '%s' blockiert";
|
$a->strings["User '%s' blocked"] = "Benutzer '%s' blockiert";
|
||||||
$a->strings["Normal Account"] = "Normales Konto";
|
|
||||||
$a->strings["Soapbox Account"] = "Marktschreier Konto";
|
|
||||||
$a->strings["Community/Celebrity Account"] = "Community/Celebrity Konto";
|
|
||||||
$a->strings["Automatic Friend Account"] = "Automatisches Freundschafts- Konto";
|
|
||||||
$a->strings["select all"] = "Alle auswählen";
|
$a->strings["select all"] = "Alle auswählen";
|
||||||
$a->strings["User registrations waiting for confirm"] = "Neuanmeldungen, die auf deine Bestätigung warten";
|
$a->strings["User registrations waiting for confirm"] = "Neuanmeldungen, die auf deine Bestätigung warten";
|
||||||
$a->strings["Request date"] = "Antragsdatum";
|
$a->strings["Request date"] = "Antragsdatum";
|
||||||
@ -1031,6 +1065,7 @@ $a->strings["Block"] = "Blockieren";
|
|||||||
$a->strings["Unblock"] = "Freigeben";
|
$a->strings["Unblock"] = "Freigeben";
|
||||||
$a->strings["Register date"] = "Registrierungs-Datum";
|
$a->strings["Register date"] = "Registrierungs-Datum";
|
||||||
$a->strings["Last login"] = "Letzte Anmeldung";
|
$a->strings["Last login"] = "Letzte Anmeldung";
|
||||||
|
$a->strings["Expires"] = "Verfällt";
|
||||||
$a->strings["Service Class"] = "Service-Klasse";
|
$a->strings["Service Class"] = "Service-Klasse";
|
||||||
$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Markierte Nutzer werden gelöscht\\n\\nAlles was diese Nutzer auf dieser Seite veröffentlicht haben wird permanent gelöscht\\n\\nBist du sicher?";
|
$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Markierte Nutzer werden gelöscht\\n\\nAlles was diese Nutzer auf dieser Seite veröffentlicht haben wird permanent gelöscht\\n\\nBist du sicher?";
|
||||||
$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Der Nutzer {0} wird gelöscht\\n\\nAlles was dieser Nutzer auf dieser Seite veröffentlicht hat wird permanent gelöscht werden\\n\\nBist du sicher?";
|
$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Der Nutzer {0} wird gelöscht\\n\\nAlles was dieser Nutzer auf dieser Seite veröffentlicht hat wird permanent gelöscht werden\\n\\nBist du sicher?";
|
||||||
@ -1091,6 +1126,7 @@ $a->strings["Collection Editor"] = "Sammlung-Editor";
|
|||||||
$a->strings["Members"] = "Mitglieder";
|
$a->strings["Members"] = "Mitglieder";
|
||||||
$a->strings["All Connected Channels"] = "Alle verbundene Channels";
|
$a->strings["All Connected Channels"] = "Alle verbundene Channels";
|
||||||
$a->strings["Click on a channel to add or remove."] = "Wähle einen Kanal zum hinzufügen oder entfernen aus.";
|
$a->strings["Click on a channel to add or remove."] = "Wähle einen Kanal zum hinzufügen oder entfernen aus.";
|
||||||
|
$a->strings["Remove term"] = "Eintrag löschen";
|
||||||
$a->strings["Page owner information could not be retrieved."] = "Informationen über den Betreiber der Seite konnten nicht gefunden werden.";
|
$a->strings["Page owner information could not be retrieved."] = "Informationen über den Betreiber der Seite konnten nicht gefunden werden.";
|
||||||
$a->strings["Album not found."] = "Album nicht gefunden.";
|
$a->strings["Album not found."] = "Album nicht gefunden.";
|
||||||
$a->strings["Delete Album"] = "Album löschen";
|
$a->strings["Delete Album"] = "Album löschen";
|
||||||
@ -1159,6 +1195,7 @@ $a->strings["Selected channel has private message restrictions. Send failed."] =
|
|||||||
$a->strings["Messages"] = "Nachrichten";
|
$a->strings["Messages"] = "Nachrichten";
|
||||||
$a->strings["Message deleted."] = "Nachricht gelöscht.";
|
$a->strings["Message deleted."] = "Nachricht gelöscht.";
|
||||||
$a->strings["Conversation removed."] = "Unterhaltung gelöscht.";
|
$a->strings["Conversation removed."] = "Unterhaltung gelöscht.";
|
||||||
|
$a->strings["Message recalled."] = "Nachricht widerrufen.";
|
||||||
$a->strings["Send Private Message"] = "Private Nachricht senden";
|
$a->strings["Send Private Message"] = "Private Nachricht senden";
|
||||||
$a->strings["To:"] = "An:";
|
$a->strings["To:"] = "An:";
|
||||||
$a->strings["Subject:"] = "Betreff:";
|
$a->strings["Subject:"] = "Betreff:";
|
||||||
@ -1166,17 +1203,21 @@ $a->strings["No messages."] = "Keine Nachrichten.";
|
|||||||
$a->strings["Delete message"] = "Nachricht löschen";
|
$a->strings["Delete message"] = "Nachricht löschen";
|
||||||
$a->strings["D, d M Y - g:i A"] = "D, d. M Y - g:i A";
|
$a->strings["D, d M Y - g:i A"] = "D, d. M Y - g:i A";
|
||||||
$a->strings["Message not found."] = "Nachricht nicht gefunden.";
|
$a->strings["Message not found."] = "Nachricht nicht gefunden.";
|
||||||
|
$a->strings["Recall message"] = "Widerrufe die Nachricht";
|
||||||
|
$a->strings["Message has been recalled."] = "Die Nachricht wurde widerrufen.";
|
||||||
|
$a->strings["Private Conversation"] = "Private Unterhaltung";
|
||||||
$a->strings["Delete conversation"] = "Unterhaltung löschen";
|
$a->strings["Delete conversation"] = "Unterhaltung löschen";
|
||||||
$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Keine sichere Kommunikation verfügbar. <strong>Eventuell</strong> kannst du von der Profilseite des Absenders antworten.";
|
$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Keine sichere Kommunikation verfügbar. <strong>Eventuell</strong> kannst du von der Profilseite des Absenders antworten.";
|
||||||
$a->strings["Send Reply"] = "Antwort senden";
|
$a->strings["Send Reply"] = "Antwort senden";
|
||||||
$a->strings["No profile"] = "Kein Profil";
|
$a->strings["No profile"] = "Kein Profil";
|
||||||
|
$a->strings["Layout Help"] = "Layout Hilfe";
|
||||||
|
$a->strings["Help with this feature"] = "Hilfe zu diesem Feature";
|
||||||
|
$a->strings["Layout Name"] = "Layout Name";
|
||||||
$a->strings["Help:"] = "Hilfe:";
|
$a->strings["Help:"] = "Hilfe:";
|
||||||
$a->strings["Not Found"] = "Nicht gefunden";
|
$a->strings["Not Found"] = "Nicht gefunden";
|
||||||
$a->strings["Page not found."] = "Seite nicht gefunden.";
|
|
||||||
$a->strings["Remote Authentication"] = "Entfernte Authentifizierung";
|
$a->strings["Remote Authentication"] = "Entfernte Authentifizierung";
|
||||||
$a->strings["Enter your channel address (e.g. channel@example.com)"] = "Geben Sie Ihre Kanal-Adresse (z.B. channel@example.com)";
|
$a->strings["Enter your channel address (e.g. channel@example.com)"] = "Geben Sie Ihre Kanal-Adresse (z.B. channel@example.com)";
|
||||||
$a->strings["Authenticate"] = "Authentifizieren";
|
$a->strings["Authenticate"] = "Authentifizieren";
|
||||||
$a->strings["Remove term"] = "Eintrag löschen";
|
|
||||||
$a->strings["Commented Order"] = "Neueste Kommentare";
|
$a->strings["Commented Order"] = "Neueste Kommentare";
|
||||||
$a->strings["Sort by Comment Date"] = "Nach Kommentardatum sortiert";
|
$a->strings["Sort by Comment Date"] = "Nach Kommentardatum sortiert";
|
||||||
$a->strings["Posted Order"] = "Neueste Beiträge";
|
$a->strings["Posted Order"] = "Neueste Beiträge";
|
||||||
@ -1248,6 +1289,7 @@ $a->strings["Automatic Permissions Settings"] = "Automatische Berechtigungs-Eins
|
|||||||
$a->strings["Connections: settings for %s"] = "Verbindungseinstellungen für %s";
|
$a->strings["Connections: settings for %s"] = "Verbindungseinstellungen für %s";
|
||||||
$a->strings["When receiving a channel introduction, any permissions provided here will be applied to the new connection automatically and the introduction approved. Leave this page if you do not wish to use this feature."] = "Wenn eine Kanal-Vorstellung empfangen wird, werden die hier getroffenen Einstellungen automatisch angewandt und der Anfrage wird stattgegeben. Verlasse diese Seite, wenn du dieses Feature nicht verwanden möchtest.";
|
$a->strings["When receiving a channel introduction, any permissions provided here will be applied to the new connection automatically and the introduction approved. Leave this page if you do not wish to use this feature."] = "Wenn eine Kanal-Vorstellung empfangen wird, werden die hier getroffenen Einstellungen automatisch angewandt und der Anfrage wird stattgegeben. Verlasse diese Seite, wenn du dieses Feature nicht verwanden möchtest.";
|
||||||
$a->strings["Slide to adjust your degree of friendship"] = "Schieben um den Grad der Freundschaft zu wählen";
|
$a->strings["Slide to adjust your degree of friendship"] = "Schieben um den Grad der Freundschaft zu wählen";
|
||||||
|
$a->strings["inherited"] = "Geerbt";
|
||||||
$a->strings["Connection has no individual permissions!"] = "Diese Verbindung hat keine individuellen Zugriffseinstellungen.";
|
$a->strings["Connection has no individual permissions!"] = "Diese Verbindung hat keine individuellen Zugriffseinstellungen.";
|
||||||
$a->strings["This may be appropriate based on your <a href=\"settings\">privacy settings</a>, though you may wish to review the \"Advanced Permissions\"."] = "Abhängig von deinen <a href=\"settings\">Privatsphären Einstellungen</a> könnte dies angebracht sein, eventuell solltest du aber die \"Erweiterte Zugriffsrechte\" überprüfen.";
|
$a->strings["This may be appropriate based on your <a href=\"settings\">privacy settings</a>, though you may wish to review the \"Advanced Permissions\"."] = "Abhängig von deinen <a href=\"settings\">Privatsphären Einstellungen</a> könnte dies angebracht sein, eventuell solltest du aber die \"Erweiterte Zugriffsrechte\" überprüfen.";
|
||||||
$a->strings["Profile Visibility"] = "Sichtbarkeit des Profils";
|
$a->strings["Profile Visibility"] = "Sichtbarkeit des Profils";
|
||||||
@ -1262,7 +1304,7 @@ $a->strings["Full Sharing"] = "Volles Teilen";
|
|||||||
$a->strings["Cautious Sharing"] = "Vorsichtiges Teilen";
|
$a->strings["Cautious Sharing"] = "Vorsichtiges Teilen";
|
||||||
$a->strings["Follow Only"] = "Nur Folgen";
|
$a->strings["Follow Only"] = "Nur Folgen";
|
||||||
$a->strings["Individual Permissions"] = "Individuelle Zugriffseinstellungen";
|
$a->strings["Individual Permissions"] = "Individuelle Zugriffseinstellungen";
|
||||||
$a->strings["Individual permissions are only enabled for <a href=\"settings\">privacy settings</a> which are set to \"Only those you specifically allow\". Otherwise they are controlled by your privacy settings."] = "Individuelle Zugriffseinstellungen sind nur aktive bei <a href=\"settings\">Privatspären Einstellungen</a> die auf \"Nur diejenigen, die Sie erlauben\" gesetzt sind. Andernfalls wird dies über deine Privatsphären Einstellungen geregelt.";
|
$a->strings["Some permissions may be inherited from your channel <a href=\"settings\">privacy settings</a>, which have higher priority. Changing those inherited settings on this page will have no effect."] = "";
|
||||||
$a->strings["Advanced Permissions"] = "Erweiterte Zugriffsrechte";
|
$a->strings["Advanced Permissions"] = "Erweiterte Zugriffsrechte";
|
||||||
$a->strings["Quick Links"] = "Quick Links";
|
$a->strings["Quick Links"] = "Quick Links";
|
||||||
$a->strings["Visit %s's profile - %s"] = "%s's Profil besuchen - %s";
|
$a->strings["Visit %s's profile - %s"] = "%s's Profil besuchen - %s";
|
||||||
@ -1499,9 +1541,10 @@ $a->strings["No more personal notifications."] = "Keine persönliche Benachricht
|
|||||||
$a->strings["Personal Notifications"] = "Persönliche Benachrichtigungen";
|
$a->strings["Personal Notifications"] = "Persönliche Benachrichtigungen";
|
||||||
$a->strings["No more home notifications."] = "Keine Pinwand-Benachrichtigungen mehr.";
|
$a->strings["No more home notifications."] = "Keine Pinwand-Benachrichtigungen mehr.";
|
||||||
$a->strings["Home Notifications"] = "Pinwand-Benachrichtigungen";
|
$a->strings["Home Notifications"] = "Pinwand-Benachrichtigungen";
|
||||||
|
$a->strings["Block Name"] = "Block Name";
|
||||||
|
$a->strings["Unable to find your hub."] = "Konnte den Hub nicht finden.";
|
||||||
$a->strings["Post successful."] = "Veröffentlichung erfolgreich.";
|
$a->strings["Post successful."] = "Veröffentlichung erfolgreich.";
|
||||||
$a->strings["Item is not editable"] = "Element kann nicht bearbeitet werden.";
|
$a->strings["Item is not editable"] = "Element kann nicht bearbeitet werden.";
|
||||||
$a->strings["Edit post"] = "Bearbeite Beitrag";
|
|
||||||
$a->strings["Access to this profile has been restricted."] = "Der Zugang zu diesem Profil ist begrenzt.";
|
$a->strings["Access to this profile has been restricted."] = "Der Zugang zu diesem Profil ist begrenzt.";
|
||||||
$a->strings["Poke/Prod"] = "Anstupsen/Kuffen";
|
$a->strings["Poke/Prod"] = "Anstupsen/Kuffen";
|
||||||
$a->strings["poke, prod or do other things to somebody"] = "Stupse Leute an oder mache anderes mit ihnen";
|
$a->strings["poke, prod or do other things to somebody"] = "Stupse Leute an oder mache anderes mit ihnen";
|
||||||
@ -1509,6 +1552,7 @@ $a->strings["Recipient"] = "Empfänger";
|
|||||||
$a->strings["Choose what you wish to do to recipient"] = "Wähle was du mit dem/r Empfänger/in tun willst";
|
$a->strings["Choose what you wish to do to recipient"] = "Wähle was du mit dem/r Empfänger/in tun willst";
|
||||||
$a->strings["Make this post private"] = "Diesen Beitrag privat machen";
|
$a->strings["Make this post private"] = "Diesen Beitrag privat machen";
|
||||||
$a->strings["Wall Photos"] = "Wall Fotos";
|
$a->strings["Wall Photos"] = "Wall Fotos";
|
||||||
|
$a->strings["Insufficient permissions. Request redirected to profile page."] = "Unzureichende Zugriffsrechte. Die Anfrage wurde zur Profil-Seite umgeleitet.";
|
||||||
$a->strings["Not available."] = "Nicht verfügbar.";
|
$a->strings["Not available."] = "Nicht verfügbar.";
|
||||||
$a->strings["Community"] = "Gemeinschaft";
|
$a->strings["Community"] = "Gemeinschaft";
|
||||||
$a->strings["No results."] = "Keine Ergebnisse.";
|
$a->strings["No results."] = "Keine Ergebnisse.";
|
||||||
@ -1533,14 +1577,15 @@ $a->strings["Version %s"] = "Version %s";
|
|||||||
$a->strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Addons/Apps";
|
$a->strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Addons/Apps";
|
||||||
$a->strings["No installed plugins/addons/apps"] = "Keine installierten Plugins/Addons/Apps";
|
$a->strings["No installed plugins/addons/apps"] = "Keine installierten Plugins/Addons/Apps";
|
||||||
$a->strings["Red"] = "Red";
|
$a->strings["Red"] = "Red";
|
||||||
$a->strings["This is Red - another decentralized, distributed communications project by the folks at Friendica."] = "Dies ist Red - ein anderes dezentralisiertes, verteiltest Kommunikationsprojekt von den Machern von Friendica.";
|
$a->strings["This is a hub of the Red Matrix - a global cooperative network of decentralised privacy enhanced websites."] = "";
|
||||||
$a->strings["Running at web location"] = "Erreichbar unter der Web-Adresse";
|
$a->strings["Running at web location"] = "Erreichbar unter der Web-Adresse";
|
||||||
$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica and/or Red project."] = "Bitte besuche <a href=\"http://friendica.com\">Friendica.com</a> um mehr über das Friendica und/oder Red Projekt zu erfahren.";
|
$a->strings["Please visit <a href=\"http://getzot.com\">GetZot.com</a> to learn more about the Red Matrix."] = "Besuche <a href=\"http://getzot.com\">GetZot.com</a> um mehr über die Red Matrix zu erfahren.";
|
||||||
$a->strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche";
|
$a->strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche";
|
||||||
$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com";
|
$a->strings["Suggestions, praise, donations, etc. - please email \"redmatrix\" at librelist - dot com"] = "Vorschläge, Lob, Spenden usw.: E-Mail an 'redmatrix' at librelist - dot - com";
|
||||||
$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge vorhanden. Wenn dies eine neue Seite ist versuche es bitte in 24 Stunden erneut.";
|
$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge vorhanden. Wenn dies eine neue Seite ist versuche es bitte in 24 Stunden erneut.";
|
||||||
$a->strings["Ignore/Hide"] = "Ignorieren/Verstecken";
|
$a->strings["Ignore/Hide"] = "Ignorieren/Verstecken";
|
||||||
$a->strings["Public Sites"] = "Öffentliche Seiten";
|
$a->strings["Public Sites"] = "Öffentliche Seiten";
|
||||||
|
$a->strings["The listed sites allow public registration into the Red Matrix. All sites in the matrix are interlinked so membership on any of them conveys membership in the matrix as a whole. Some sites may require subscription or provide tiered service plans. The provider links <strong>may</strong> provide additional details."] = "Die hier aufgeführten Seiten erlauben dir einen Account in der Red Matrix anzulegen. Alle Seiten der Matrix sind mit einander verbunden, so dass die Mitgliedschaft auf einer Seite die Mitgliedschaft auf einer beliebigen anderen Seite der Matrix beinhaltet. Es könnte sein, dass einige dieser Seiten Abonnements benötigen oder abgestufte Service-Pläne anbieten. Auf den jeweiligen Seiten <strong>könnten</strong> nähere Details diesbezüglich stehen.";
|
||||||
$a->strings["Site URL"] = "URL der Seite";
|
$a->strings["Site URL"] = "URL der Seite";
|
||||||
$a->strings["Access Type"] = "Zugangs Typ";
|
$a->strings["Access Type"] = "Zugangs Typ";
|
||||||
$a->strings["Registration Policy"] = "Registrierungsrichtlinien";
|
$a->strings["Registration Policy"] = "Registrierungsrichtlinien";
|
||||||
@ -1562,9 +1607,12 @@ $a->strings["Please re-enter your password"] = "Bitte geben Sie erneut Ihr Passw
|
|||||||
$a->strings["Please login."] = "Bitte loggen Sie sich ein.";
|
$a->strings["Please login."] = "Bitte loggen Sie sich ein.";
|
||||||
$a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Entfernte Authentifizierung blockiert. Du bist lokal auf dieser Seite angemeldet. Bitte melde dich ab und versuche es erneut.";
|
$a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Entfernte Authentifizierung blockiert. Du bist lokal auf dieser Seite angemeldet. Bitte melde dich ab und versuche es erneut.";
|
||||||
$a->strings["Welcome %s. Remote authentication successful."] = "Willkommen %s. Entfernte Authentifizierung erfolgreich.";
|
$a->strings["Welcome %s. Remote authentication successful."] = "Willkommen %s. Entfernte Authentifizierung erfolgreich.";
|
||||||
$a->strings["Remove My Account"] = "Mein Konto entfernen";
|
$a->strings["Remove This Channel"] = "Diesen Kanal löschen!";
|
||||||
$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen.";
|
$a->strings["This will completely remove this channel from the network. Once this has been done it is not recoverable."] = "Hiermit wird dieser Kanal komplett aus dem Netzwerk gelöscht. Einmal eingeleitet ist dieser Prozess nicht widerrufbar.";
|
||||||
$a->strings["Please enter your password for verification:"] = "Bitte geben Sie Ihr Passwort zur Bestätigung ein:";
|
$a->strings["Please enter your password for verification:"] = "Bitte geben Sie Ihr Passwort zur Bestätigung ein:";
|
||||||
|
$a->strings["Remove this channel and all its clones from the network"] = "Lösche diesen Kanal und all seine Klone aus dem Netzwerk";
|
||||||
|
$a->strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Standartmäßig wird der Kanal nur auf diesem Knoten gelöscht, seine Klone verbleiben im Netzwerk";
|
||||||
|
$a->strings["Remove My Account"] = "Mein Konto entfernen";
|
||||||
$a->strings["Gender: "] = "Geschlecht:";
|
$a->strings["Gender: "] = "Geschlecht:";
|
||||||
$a->strings["Finding:"] = "Ergebnisse:";
|
$a->strings["Finding:"] = "Ergebnisse:";
|
||||||
$a->strings["next page"] = "nächste Seite";
|
$a->strings["next page"] = "nächste Seite";
|
||||||
@ -1572,29 +1620,73 @@ $a->strings["previous page"] = "vorige Seite";
|
|||||||
$a->strings["No entries (some entries may be hidden)."] = "Keine Einträge gefunden (einige könnten versteckt sein).";
|
$a->strings["No entries (some entries may be hidden)."] = "Keine Einträge gefunden (einige könnten versteckt sein).";
|
||||||
$a->strings["Mood"] = "Laune";
|
$a->strings["Mood"] = "Laune";
|
||||||
$a->strings["Set your current mood and tell your friends"] = "Wähle deine aktuelle Stimmung und erzähle sie deinen Freunden";
|
$a->strings["Set your current mood and tell your friends"] = "Wähle deine aktuelle Stimmung und erzähle sie deinen Freunden";
|
||||||
|
$a->strings["Scheme Default"] = "";
|
||||||
|
$a->strings["red"] = "Rot";
|
||||||
|
$a->strings["black"] = "Schwarz";
|
||||||
|
$a->strings["silver"] = "Silber";
|
||||||
$a->strings["Theme settings"] = "Theme-Einstellungen";
|
$a->strings["Theme settings"] = "Theme-Einstellungen";
|
||||||
|
$a->strings["Set scheme"] = "Schema wählen";
|
||||||
$a->strings["Navigation bar colour"] = "Farbe der Navigationsleiste";
|
$a->strings["Navigation bar colour"] = "Farbe der Navigationsleiste";
|
||||||
|
$a->strings["Set font-colour for banner"] = "Farbe der Schrift des Banners setzen";
|
||||||
$a->strings["Set the background colour"] = "Hintergrundfarbe wählen";
|
$a->strings["Set the background colour"] = "Hintergrundfarbe wählen";
|
||||||
$a->strings["Set the background image"] = "Hintergrundbild wählen";
|
$a->strings["Set the background image"] = "Hintergrundbild wählen";
|
||||||
$a->strings["Set the background colour of items"] = "Hintergrundfarbe von Beiträgen wählen";
|
$a->strings["Set the background colour of items"] = "Hintergrundfarbe von Beiträgen wählen";
|
||||||
$a->strings["Set the opacity of items"] = "Opazität von Beiträgen wählen";
|
$a->strings["Set the opacity of items"] = "Opazität von Beiträgen wählen";
|
||||||
|
$a->strings["Set the basic colour for item icons"] = "Basis Farbe der Beitrags-Icons setzen";
|
||||||
|
$a->strings["Set the hover colour for item icons"] = "";
|
||||||
|
$a->strings["Set font-size for the entire application"] = "";
|
||||||
$a->strings["Set font-size for posts and comments"] = "Wähle die Schriftgröße für Beiträge und Kommentare";
|
$a->strings["Set font-size for posts and comments"] = "Wähle die Schriftgröße für Beiträge und Kommentare";
|
||||||
$a->strings["Set font-colour for posts and comments"] = "Schriftfarbe für Beiträge und Kommentare wählen";
|
$a->strings["Set font-colour for posts and comments"] = "Schriftfarbe für Beiträge und Kommentare wählen";
|
||||||
$a->strings["Set radius of corners"] = "Radius von Ecken";
|
$a->strings["Set radius of corners"] = "Radius von Ecken";
|
||||||
$a->strings["Set shadow depth of photos"] = "Schattentiefe von Fotos";
|
$a->strings["Set shadow depth of photos"] = "Schattentiefe von Fotos";
|
||||||
|
$a->strings["Set maximum width of conversation regions"] = "";
|
||||||
|
$a->strings["Set minimum opacity of nav bar - to hide it"] = "";
|
||||||
|
$a->strings["Set size of conversation author photo"] = "";
|
||||||
|
$a->strings["Set size of followup author photos"] = "";
|
||||||
|
$a->strings["Sloppy photo albums"] = "";
|
||||||
|
$a->strings["Are you a clean desk or a messy desk person?"] = "Bist du jemand der einen aufgeräumten Schreibtisch hat, oder eher einen chaotischen?";
|
||||||
|
$a->strings["Schema Default"] = "Standard-Schema";
|
||||||
|
$a->strings["Sans-Serif"] = "Sans-Serif";
|
||||||
|
$a->strings["Monospace"] = "Monospace";
|
||||||
|
$a->strings["Set font face"] = "Schriftart wählen";
|
||||||
|
$a->strings["Set iconset"] = "Iconset wählen";
|
||||||
|
$a->strings["Set big shadow size, default 15px 15px 15px"] = "";
|
||||||
|
$a->strings["Set small shadow size, default 5px 5px 5px"] = "";
|
||||||
|
$a->strings["Set shadow colour, default #000"] = "";
|
||||||
|
$a->strings["Set radius size, default 5px"] = "";
|
||||||
$a->strings["Set line-height for posts and comments"] = "Wähle die Zeilenhöhe in Beiträgen und Kommentaren";
|
$a->strings["Set line-height for posts and comments"] = "Wähle die Zeilenhöhe in Beiträgen und Kommentaren";
|
||||||
$a->strings["Set colour scheme"] = "Wähle das Farbschema";
|
$a->strings["Set background image"] = "Hintergrundbild wählen";
|
||||||
$a->strings["Draw shadows"] = "Zeichne Schatten";
|
$a->strings["Set background colour"] = "Hintergrundfarbe wählen";
|
||||||
$a->strings["Display style"] = "Anzeige Stiel";
|
$a->strings["Set section background image"] = "";
|
||||||
$a->strings["Display colour of links - hex value, do not include the #"] = "Farbe für Verweise - Hex Wert, die # nicht angeben";
|
$a->strings["Set section background colour"] = "";
|
||||||
$a->strings["Icons"] = "Symbole";
|
$a->strings["Set colour of items - use hex"] = "Wähle die Farbe von Beiträgen - verwende HEX";
|
||||||
$a->strings["Shiny style"] = "Glitzer Stiel";
|
$a->strings["Set colour of links - use hex"] = "Wähle die Farbe von Links - verwende HEX";
|
||||||
|
$a->strings["Set max-width for items. Default 400px"] = "Maximale Breite von Beiträgen. Standard ist 400px";
|
||||||
|
$a->strings["Set min-width for items. Default 240px"] = "Minimale Breite von Beiträgen. Standard ist 240px";
|
||||||
|
$a->strings["Set the generic content wrapper width. Default 48%"] = "Breite des \"generic content wrapper\". Standard ist 48%";
|
||||||
|
$a->strings["Set colour of fonts - use hex"] = "Schriftfarbe - verwende HEX";
|
||||||
|
$a->strings["Set background-size element"] = "Größe des Hintergrund-Elements";
|
||||||
|
$a->strings["Item opacity"] = "Opazität von Beiträgen";
|
||||||
|
$a->strings["Display post previews only"] = "Nur Beitragsvorschau anzeigen";
|
||||||
|
$a->strings["Display side bar on channel page"] = "Zeige die Seitenleiste auf der Kanal-Seite";
|
||||||
|
$a->strings["Colour of the navigation bar"] = "Farbe der Navigationsleiste";
|
||||||
|
$a->strings["Item float"] = "Beitragsfluss";
|
||||||
|
$a->strings["Left offset of the section element"] = "Linker Rand des Section Elements";
|
||||||
|
$a->strings["Right offset of the section element"] = "Rechter Rand des Section Elements";
|
||||||
|
$a->strings["Section width"] = "Breite der Section";
|
||||||
|
$a->strings["Left offset of the aside"] = "Linker Rand der aside";
|
||||||
|
$a->strings["Right offset of the aside element"] = "Rechter Rand der aside";
|
||||||
|
$a->strings["None"] = "Keine";
|
||||||
|
$a->strings["Header image"] = "Titelbild";
|
||||||
|
$a->strings["Header image only on profile pages"] = "Titelbild nur auf Profil-Seiten anzeigen";
|
||||||
$a->strings["Update %s failed. See error logs."] = "Aktualisierung %s fehlgeschlagen. Details in den Fehlerlogs.";
|
$a->strings["Update %s failed. See error logs."] = "Aktualisierung %s fehlgeschlagen. Details in den Fehlerlogs.";
|
||||||
$a->strings["Update Error at %s"] = "Aktualisierungsfehler auf %s";
|
$a->strings["Update Error at %s"] = "Aktualisierungsfehler auf %s";
|
||||||
$a->strings["Create a New Account"] = "Erzeuge ein neues Konto";
|
$a->strings["Create an account to access services and applications within the Red Matrix"] = "Erstelle einen Account um Anwendungen und Dienste innerhalb der Red Matrix verwenden zu können.";
|
||||||
$a->strings["Password"] = "Kennwort";
|
$a->strings["Password"] = "Kennwort";
|
||||||
$a->strings["Remember me"] = "Angaben speichern";
|
$a->strings["Remember me"] = "Angaben speichern";
|
||||||
$a->strings["Forgot your password?"] = "Passwort vergessen?";
|
$a->strings["Forgot your password?"] = "Passwort vergessen?";
|
||||||
|
$a->strings["permission denied"] = "Zugriff verweigert";
|
||||||
|
$a->strings["Got Zot?"] = "Haste schon Zot?";
|
||||||
$a->strings["Requested channel is not available."] = "Angeforderte Kanal nicht verfügbar.";
|
$a->strings["Requested channel is not available."] = "Angeforderte Kanal nicht verfügbar.";
|
||||||
$a->strings[" Sorry, you don't have the permission to view this profile. "] = "Entschuldigung, aber du besitzt nicht die nötigen Rechte um dieses Profil ansehen zu dürfen.";
|
$a->strings[" Sorry, you don't have the permission to view this profile. "] = "Entschuldigung, aber du besitzt nicht die nötigen Rechte um dieses Profil ansehen zu dürfen.";
|
||||||
$a->strings["Profiles"] = "Profile";
|
$a->strings["Profiles"] = "Profile";
|
||||||
|
1716
view/it/messages.po
1716
view/it/messages.po
File diff suppressed because it is too large
Load Diff
@ -12,42 +12,42 @@ $a->strings["public profile"] = "profilo pubblico";
|
|||||||
$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s ha cambiato %2\$s in “%3\$s”";
|
$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s ha cambiato %2\$s in “%3\$s”";
|
||||||
$a->strings["Visit %1\$s's %2\$s"] = "Guarda %2\$s di %1\$s ";
|
$a->strings["Visit %1\$s's %2\$s"] = "Guarda %2\$s di %1\$s ";
|
||||||
$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s ha aggiornato %2\$s cambiando %3\$s.";
|
$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s ha aggiornato %2\$s cambiando %3\$s.";
|
||||||
$a->strings["Public Timeline"] = "Diario pubblico";
|
|
||||||
$a->strings["Red Matrix Notification"] = "Notifica di Red Matrix";
|
$a->strings["Red Matrix Notification"] = "Notifica di Red Matrix";
|
||||||
|
$a->strings["redmatrix"] = "redmatrix";
|
||||||
$a->strings["Thank You,"] = "Grazie,";
|
$a->strings["Thank You,"] = "Grazie,";
|
||||||
$a->strings["%s Administrator"] = "Amministratore %s";
|
$a->strings["%s Administrator"] = "Amministratore %s";
|
||||||
$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
|
$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
|
||||||
$a->strings["[Red:Notify] New mail received at %s"] = "[Red:Notifica] Nuovo messaggio ricevuto alle %s";
|
$a->strings["[Red:Notify] New mail received at %s"] = "[Red:Notifica] Nuovo messaggio ricevuto alle %s";
|
||||||
$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s ti ha mandato un messaggio privato alle %2\$s.";
|
$a->strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s ti ha mandato un messaggio privato alle %3\$s.";
|
||||||
$a->strings["%1\$s sent you %2\$s."] = "%1\$s ti ha mandato %2\$s.";
|
$a->strings["%1\$s sent you %2\$s."] = "%1\$s ti ha mandato %2\$s.";
|
||||||
$a->strings["a private message"] = "un messaggio privato";
|
$a->strings["a private message"] = "un messaggio privato";
|
||||||
$a->strings["Please visit %s to view and/or reply to your private messages."] = "Visita %s per leggere i tuoi messaggi privati e rispondere.";
|
$a->strings["Please visit %s to view and/or reply to your private messages."] = "Visita %s per leggere i tuoi messaggi privati e rispondere.";
|
||||||
$a->strings["%1\$s commented on [zrl=%2\$s]a %3\$s[/zrl]"] = "%1\$s ha commentato [zrl=%2\$s]%3\$s[/zrl]";
|
$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s ha commentato [zrl=%3\$s]%4\$s[/zrl]";
|
||||||
$a->strings["%1\$s commented on [zrl=%2\$s]%3\$s's %4\$s[/zrl]"] = "%1\$s ha commentato [zrl=%2\$s]%4\$s di %3\$s[/zrl]";
|
$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s ha commentato [zrl=%3\$s]%5\$s di %4\$s[/zrl]";
|
||||||
$a->strings["%1\$s commented on [zrl=%2\$s]your %3\$s[/zrl]"] = "%1\$s ha commentato [zrl=%2\$s]%3\$s[/zrl] che hai creato";
|
$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s ha commentato [zrl=%3\$s]%4\$s che hai creato[/zrl]";
|
||||||
$a->strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Red:Notifica] Nuovo commento di %2\$s alla conversazione #%1\$d";
|
$a->strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Red:Notifica] Nuovo commento di %2\$s alla conversazione #%1\$d";
|
||||||
$a->strings["%s commented on an item/conversation you have been following."] = "%s ha commentato una conversazione che stai seguendo.";
|
$a->strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s ha commentato un elemento che stavi seguendo.";
|
||||||
$a->strings["Please visit %s to view and/or reply to the conversation."] = "Visita %s per leggere o commentare la conversazione.";
|
$a->strings["Please visit %s to view and/or reply to the conversation."] = "Visita %s per leggere o commentare la conversazione.";
|
||||||
$a->strings["[Red:Notify] %s posted to your profile wall"] = "[Red:Notifica] %s ha scritto sulla tua bacheca";
|
$a->strings["[Red:Notify] %s posted to your profile wall"] = "[Red:Notifica] %s ha scritto sulla tua bacheca";
|
||||||
$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s ha scritto sulla tua bacheca alle %2\$s";
|
$a->strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s ha scritto sulla bacheca del tuo profilo alle %3\$s";
|
||||||
$a->strings["%1\$s posted to [zrl=%2\$s]your wall[/zrl]"] = "%1\$s ha scritto sulla [zrl=%2\$s]tua bacheca[/zrl]";
|
$a->strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s ha scritto sulla [zrl=%3\$s]tua bacheca[/zrl]";
|
||||||
$a->strings["[Red:Notify] %s tagged you"] = "[Red:Notifica] %s ti ha taggato";
|
$a->strings["[Red:Notify] %s tagged you"] = "[Red:Notifica] %s ti ha taggato";
|
||||||
$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s ti ha taggato alle %2\$s";
|
$a->strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s ti ha taggato alle %3\$s";
|
||||||
$a->strings["%1\$s [zrl=%2\$s]tagged you[/zrl]."] = "%1\$s [zrl=%2\$s]ti ha taggato[/zrl].";
|
$a->strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]ti ha taggato[/zrl].";
|
||||||
$a->strings["[Red:Notify] %1\$s poked you"] = "[Red:Notifica] %1\$s ti ha mandato un poke";
|
$a->strings["[Red:Notify] %1\$s poked you"] = "[Red:Notifica] %1\$s ti ha mandato un poke";
|
||||||
$a->strings["%1\$s poked you at %2\$s"] = "%1\$s ti ha mandato un poke alle %2\$s";
|
$a->strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s ti ha mandato un poke alle %3\$s";
|
||||||
$a->strings["%1\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s [zrl=%2\$s]ti ha mandato un poke[/zrl].";
|
$a->strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]ti ha mandato un poke[/zrl].";
|
||||||
$a->strings["[Red:Notify] %s tagged your post"] = "[Red:Notifica] %s ha taggato il tuo articolo";
|
$a->strings["[Red:Notify] %s tagged your post"] = "[Red:Notifica] %s ha taggato il tuo articolo";
|
||||||
$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s ha taggato il tuo articolo alle %2\$s";
|
$a->strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s ha taggato il tuo articolo alle %3\$s";
|
||||||
$a->strings["%1\$s tagged [zrl=%2\$s]your post[/zrl]"] = "%1\$s ha taggato [zrl=%2\$s]il tuo articolo[/zrl]";
|
$a->strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s ha taggato [zrl=%3\$s]il tuo articolo[/zrl]";
|
||||||
$a->strings["[Red:Notify] Introduction received"] = "[Red:Notifica] Hai una richiesta di amicizia";
|
$a->strings["[Red:Notify] Introduction received"] = "[Red:Notifica] Hai una richiesta di amicizia";
|
||||||
$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Hai ricevuto una richiesta di amicizia da '%1\$s' alle %2\$s";
|
$a->strings["%1\$s, you've received an introduction from '%2\$s' at %3\$s"] = "%1\$s, hai ricevuto una richiesta di contatto da '%2\$s' alle %3\$s";
|
||||||
$a->strings["You've received [zrl=%1\$s]an introduction[/zrl] from %2\$s."] = "Hai ricevuto [zrl=%1\$s]una richiesta di amicizia[/zrl] da %2\$s.";
|
$a->strings["%1\$s, you've received [zrl=%2\$s]an introduction[/zrl] from %3\$s."] = "%1\$s, hai ricevuto [zrl=%2\$s]una richiesta di amicizia[/zrl] da %3\$s.";
|
||||||
$a->strings["You may visit their profile at %s"] = "Puoi visitare il suo profilo su %s";
|
$a->strings["You may visit their profile at %s"] = "Puoi visitare il suo profilo su %s";
|
||||||
$a->strings["Please visit %s to approve or reject the introduction."] = "Visita %s per approvare o rifiutare la richiesta.";
|
$a->strings["Please visit %s to approve or reject the introduction."] = "Visita %s per approvare o rifiutare la richiesta.";
|
||||||
$a->strings["[Red:Notify] Friend suggestion received"] = "[Red:Notifica] Ti è stato suggerito un amico";
|
$a->strings["[Red:Notify] Friend suggestion received"] = "[Red:Notifica] Ti è stato suggerito un amico";
|
||||||
$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Ti è stato suggerito un amico da '%1\$s' alle %2\$s";
|
$a->strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, ti è stato suggerito un amico da '%2\$s' alle %3\$s";
|
||||||
$a->strings["You've received [zrl=%1\$s]a friend suggestion[/zrl] for %2\$s from %3\$s."] = "%3\$s ti ha [zrl=%1\$s]suggerito %2\$s[/zrl] come amico.";
|
$a->strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, %4\$s ti [zrl=%2\$s]ha suggerito %3\$s[/zrl] come amico.";
|
||||||
$a->strings["Name:"] = "Nome:";
|
$a->strings["Name:"] = "Nome:";
|
||||||
$a->strings["Photo:"] = "Foto:";
|
$a->strings["Photo:"] = "Foto:";
|
||||||
$a->strings["Please visit %s to approve or reject the suggestion."] = "Visita %s per approvare o rifiutare il suggerimento.";
|
$a->strings["Please visit %s to approve or reject the suggestion."] = "Visita %s per approvare o rifiutare il suggerimento.";
|
||||||
@ -94,7 +94,7 @@ $a->strings["Link"] = "Link";
|
|||||||
$a->strings["Video"] = "Video";
|
$a->strings["Video"] = "Video";
|
||||||
$a->strings["Preview"] = "Anteprima";
|
$a->strings["Preview"] = "Anteprima";
|
||||||
$a->strings["Encrypt text"] = "Crittografia del testo";
|
$a->strings["Encrypt text"] = "Crittografia del testo";
|
||||||
$a->strings["Connect"] = "Connetti";
|
$a->strings["Connect"] = "Entra in contatto/segui";
|
||||||
$a->strings["New window"] = "Nuova finestra";
|
$a->strings["New window"] = "Nuova finestra";
|
||||||
$a->strings["Open the selected location in a different window or browser tab"] = "Apri l'indirizzo selezionato in una nuova scheda o finestra";
|
$a->strings["Open the selected location in a different window or browser tab"] = "Apri l'indirizzo selezionato in una nuova scheda o finestra";
|
||||||
$a->strings["Poke"] = "Poke";
|
$a->strings["Poke"] = "Poke";
|
||||||
@ -187,8 +187,6 @@ $a->strings["Enable tab to display all new Network activity"] = "Abilita il link
|
|||||||
$a->strings["Affinity Tool"] = "Filtro per affinità";
|
$a->strings["Affinity Tool"] = "Filtro per affinità";
|
||||||
$a->strings["Filter stream activity by depth of relationships"] = "Permette di selezionare i contenuti in base al livello di amicizia";
|
$a->strings["Filter stream activity by depth of relationships"] = "Permette di selezionare i contenuti in base al livello di amicizia";
|
||||||
$a->strings["Post/Comment Tools"] = "Gestione articoli e commenti";
|
$a->strings["Post/Comment Tools"] = "Gestione articoli e commenti";
|
||||||
$a->strings["Multiple Deletion"] = "Eliminazione multipla";
|
|
||||||
$a->strings["Select and delete multiple posts/comments at once"] = "Rendi possibile l'eliminazione di molti articoli o commenti con un solo comando";
|
|
||||||
$a->strings["Edit Sent Posts"] = "Modifica gli articoli già inviati";
|
$a->strings["Edit Sent Posts"] = "Modifica gli articoli già inviati";
|
||||||
$a->strings["Edit and correct posts and comments after sending"] = "Modifica e correggi gli articoli o i commenti anche dopo l'invio";
|
$a->strings["Edit and correct posts and comments after sending"] = "Modifica e correggi gli articoli o i commenti anche dopo l'invio";
|
||||||
$a->strings["Tagging"] = "Tag";
|
$a->strings["Tagging"] = "Tag";
|
||||||
@ -353,6 +351,7 @@ $a->strings["Blocks"] = "Riquadri";
|
|||||||
$a->strings["Menus"] = "Menù";
|
$a->strings["Menus"] = "Menù";
|
||||||
$a->strings["Layouts"] = "Layout";
|
$a->strings["Layouts"] = "Layout";
|
||||||
$a->strings["Pages"] = "Pagine";
|
$a->strings["Pages"] = "Pagine";
|
||||||
|
$a->strings["Public Timeline"] = "Diario pubblico";
|
||||||
$a->strings["Unable to obtain identity information from database"] = "Impossibile ottenere le informazioni di identificazione dal database";
|
$a->strings["Unable to obtain identity information from database"] = "Impossibile ottenere le informazioni di identificazione dal database";
|
||||||
$a->strings["Empty name"] = "Nome vuoto";
|
$a->strings["Empty name"] = "Nome vuoto";
|
||||||
$a->strings["Name too long"] = "Nome troppo lungo";
|
$a->strings["Name too long"] = "Nome troppo lungo";
|
||||||
@ -524,6 +523,70 @@ $a->strings["your registration password"] = "la password di registrazione";
|
|||||||
$a->strings["Registration details for %s"] = "Dettagli della registrazione di %s";
|
$a->strings["Registration details for %s"] = "Dettagli della registrazione di %s";
|
||||||
$a->strings["Account approved."] = "Account approvato.";
|
$a->strings["Account approved."] = "Account approvato.";
|
||||||
$a->strings["Registration revoked for %s"] = "Registrazione revocata per %s";
|
$a->strings["Registration revoked for %s"] = "Registrazione revocata per %s";
|
||||||
|
$a->strings["channel"] = "canale";
|
||||||
|
$a->strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s piace %3\$s di %2\$s";
|
||||||
|
$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "A %1\$s non piace %3\$s di %2\$s";
|
||||||
|
$a->strings["%1\$s is now connected with %2\$s"] = "%1\$s adesso è connesso con %2\$s";
|
||||||
|
$a->strings["%1\$s poked %2\$s"] = "%1\$s ha mandato un poke a %2\$s";
|
||||||
|
$a->strings["%1\$s is currently %2\$s"] = "%1\$s al momento è %2\$s";
|
||||||
|
$a->strings["View %s's profile @ %s"] = "Vedi il profilo di %s @ %s";
|
||||||
|
$a->strings["Categories:"] = "Categorie:";
|
||||||
|
$a->strings["Filed under:"] = "Classificato come:";
|
||||||
|
$a->strings["View in context"] = "Vedi nel contesto";
|
||||||
|
$a->strings["remove"] = "rimuovi";
|
||||||
|
$a->strings["Loading..."] = "Caricamento in corso...";
|
||||||
|
$a->strings["Delete Selected Items"] = "Elimina gli oggetti selezionati";
|
||||||
|
$a->strings["View Source"] = "Vedi il sorgente";
|
||||||
|
$a->strings["Follow Thread"] = "Segui la discussione";
|
||||||
|
$a->strings["Matrix Activity"] = "Attività nella tua rete";
|
||||||
|
$a->strings["%s likes this."] = "Piace a %s.";
|
||||||
|
$a->strings["%s doesn't like this."] = "Non piace a %s.";
|
||||||
|
$a->strings["<span %1\$s>%2\$d people</span> like this."] = array(
|
||||||
|
0 => "",
|
||||||
|
1 => "Piace a <span %1\$s>%2\$d persone</span>.",
|
||||||
|
);
|
||||||
|
$a->strings["<span %1\$s>%2\$d people</span> don't like this."] = array(
|
||||||
|
0 => "",
|
||||||
|
1 => "Non piace a <span %1\$s>%2\$d persone</span>.",
|
||||||
|
);
|
||||||
|
$a->strings["and"] = "e";
|
||||||
|
$a->strings[", and %d other people"] = array(
|
||||||
|
0 => "",
|
||||||
|
1 => "e altre %d persone",
|
||||||
|
);
|
||||||
|
$a->strings["%s like this."] = "Piace a %s.";
|
||||||
|
$a->strings["%s don't like this."] = "Non piace a %s.";
|
||||||
|
$a->strings["Visible to <strong>everybody</strong>"] = "Visibile a <strong>tutti</strong>";
|
||||||
|
$a->strings["Please enter a link URL:"] = "Inserisci l'indirizzo del link:";
|
||||||
|
$a->strings["Please enter a video link/URL:"] = "Inserisci l'indirizzo del video:";
|
||||||
|
$a->strings["Please enter an audio link/URL:"] = "Inserisci l'indirizzo dell'audio:";
|
||||||
|
$a->strings["Tag term:"] = "Tag:";
|
||||||
|
$a->strings["Save to Folder:"] = "Salva nella cartella:";
|
||||||
|
$a->strings["Where are you right now?"] = "Dove sei ora?";
|
||||||
|
$a->strings["Expires YYYY-MM-DD HH:MM"] = "Scadenza il AAAA-MM-GG OO:MM";
|
||||||
|
$a->strings["Share"] = "Condividi";
|
||||||
|
$a->strings["Page link title"] = "Link del titolo";
|
||||||
|
$a->strings["Upload photo"] = "Carica foto";
|
||||||
|
$a->strings["upload photo"] = "carica foto";
|
||||||
|
$a->strings["Attach file"] = "Allega file";
|
||||||
|
$a->strings["attach file"] = "allega file";
|
||||||
|
$a->strings["Insert web link"] = "Inserisci un indirizzo web";
|
||||||
|
$a->strings["web link"] = "link web";
|
||||||
|
$a->strings["Insert video link"] = "Inserisci l'indirizzo di un video";
|
||||||
|
$a->strings["video link"] = "link video";
|
||||||
|
$a->strings["Insert audio link"] = "Inserisci l'indirizzo di un audio";
|
||||||
|
$a->strings["audio link"] = "link audio";
|
||||||
|
$a->strings["Set your location"] = "La tua località";
|
||||||
|
$a->strings["set location"] = "la tua località";
|
||||||
|
$a->strings["Clear browser location"] = "Rimuovi la località data dal browser";
|
||||||
|
$a->strings["clear location"] = "rimuovi la località";
|
||||||
|
$a->strings["Set title"] = "Scegli un titolo";
|
||||||
|
$a->strings["Categories (comma-separated list)"] = "Categorie (separate da virgola)";
|
||||||
|
$a->strings["Permission settings"] = "Impostazioni permessi";
|
||||||
|
$a->strings["permissions"] = "permessi";
|
||||||
|
$a->strings["Public post"] = "Articolo pubblico";
|
||||||
|
$a->strings["Example: bob@example.com, mary@example.com"] = "Per esempio: mario@esempio.com, simona@esempio.com";
|
||||||
|
$a->strings["Set expiration date"] = "Data di scadenza";
|
||||||
$a->strings["Logged out."] = "Uscita effettuata.";
|
$a->strings["Logged out."] = "Uscita effettuata.";
|
||||||
$a->strings["Failed authentication"] = "Autenticazione fallita";
|
$a->strings["Failed authentication"] = "Autenticazione fallita";
|
||||||
$a->strings["Login failed."] = "Accesso fallito.";
|
$a->strings["Login failed."] = "Accesso fallito.";
|
||||||
@ -537,7 +600,7 @@ $a->strings["%d invitation available"] = array(
|
|||||||
);
|
);
|
||||||
$a->strings["Find Channels"] = "Ricerca canali";
|
$a->strings["Find Channels"] = "Ricerca canali";
|
||||||
$a->strings["Enter name or interest"] = "Scrivi un nome o un interesse";
|
$a->strings["Enter name or interest"] = "Scrivi un nome o un interesse";
|
||||||
$a->strings["Connect/Follow"] = "Segui";
|
$a->strings["Connect/Follow"] = "Entra in contatto/segui";
|
||||||
$a->strings["Examples: Robert Morgenstein, Fishing"] = "Per esempio: Mario Rossi, Pesca";
|
$a->strings["Examples: Robert Morgenstein, Fishing"] = "Per esempio: Mario Rossi, Pesca";
|
||||||
$a->strings["Find"] = "Cerca";
|
$a->strings["Find"] = "Cerca";
|
||||||
$a->strings["Channel Suggestions"] = "Canali suggeriti";
|
$a->strings["Channel Suggestions"] = "Canali suggeriti";
|
||||||
@ -590,61 +653,6 @@ $a->strings["Click here to upgrade."] = "Clicca qui per aggiornare.";
|
|||||||
$a->strings["This action exceeds the limits set by your subscription plan."] = "Questa operazione esce dai termini del tuo abbonamento.";
|
$a->strings["This action exceeds the limits set by your subscription plan."] = "Questa operazione esce dai termini del tuo abbonamento.";
|
||||||
$a->strings["This action is not available under your subscription plan."] = "Questa operazione non è prevista dal tuo abbonamento.";
|
$a->strings["This action is not available under your subscription plan."] = "Questa operazione non è prevista dal tuo abbonamento.";
|
||||||
$a->strings["Default"] = "Predefinito";
|
$a->strings["Default"] = "Predefinito";
|
||||||
$a->strings["channel"] = "canale";
|
|
||||||
$a->strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s piace %3\$s di %2\$s";
|
|
||||||
$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "A %1\$s non piace %3\$s di %2\$s";
|
|
||||||
$a->strings["%1\$s is now connected with %2\$s"] = "%1\$s adesso è connesso con %2\$s";
|
|
||||||
$a->strings["%1\$s poked %2\$s"] = "%1\$s ha mandato un poke a %2\$s";
|
|
||||||
$a->strings["%1\$s is currently %2\$s"] = "%1\$s al momento è %2\$s";
|
|
||||||
$a->strings["View %s's profile @ %s"] = "Vedi il profilo di %s @ %s";
|
|
||||||
$a->strings["Categories:"] = "Categorie:";
|
|
||||||
$a->strings["Filed under:"] = "Classificato come:";
|
|
||||||
$a->strings["View in context"] = "Vedi nel contesto";
|
|
||||||
$a->strings["remove"] = "rimuovi";
|
|
||||||
$a->strings["Loading..."] = "Caricamento in corso...";
|
|
||||||
$a->strings["Delete Selected Items"] = "Elimina gli oggetti selezionati";
|
|
||||||
$a->strings["View Source"] = "Vedi il sorgente";
|
|
||||||
$a->strings["Follow Thread"] = "Segui la discussione";
|
|
||||||
$a->strings["Matrix Activity"] = "Attività nella tua rete";
|
|
||||||
$a->strings["%s likes this."] = "Piace a %s.";
|
|
||||||
$a->strings["%s doesn't like this."] = "Non piace a %s.";
|
|
||||||
$a->strings["<span %1\$s>%2\$d people</span> like this."] = "Piace a <span %1\$s>%2\$d persone</span>.";
|
|
||||||
$a->strings["<span %1\$s>%2\$d people</span> don't like this."] = "Non piace a <span %1\$s>%2\$d persone</span>.";
|
|
||||||
$a->strings["and"] = "e";
|
|
||||||
$a->strings[", and %d other people"] = "e altre %d persone";
|
|
||||||
$a->strings["%s like this."] = "Piace a %s.";
|
|
||||||
$a->strings["%s don't like this."] = "Non piace a %s.";
|
|
||||||
$a->strings["Visible to <strong>everybody</strong>"] = "Visibile a <strong>tutti</strong>";
|
|
||||||
$a->strings["Please enter a link URL:"] = "Inserisci l'indirizzo del link:";
|
|
||||||
$a->strings["Please enter a video link/URL:"] = "Inserisci l'indirizzo del video:";
|
|
||||||
$a->strings["Please enter an audio link/URL:"] = "Inserisci l'indirizzo dell'audio:";
|
|
||||||
$a->strings["Tag term:"] = "Tag:";
|
|
||||||
$a->strings["Save to Folder:"] = "Salva nella cartella:";
|
|
||||||
$a->strings["Where are you right now?"] = "Dove sei ora?";
|
|
||||||
$a->strings["Expires YYYY-MM-DD HH:MM"] = "Scadenza il AAAA-MM-GG OO:MM";
|
|
||||||
$a->strings["Share"] = "Condividi";
|
|
||||||
$a->strings["Page link title"] = "Link del titolo";
|
|
||||||
$a->strings["Upload photo"] = "Carica foto";
|
|
||||||
$a->strings["upload photo"] = "carica foto";
|
|
||||||
$a->strings["Attach file"] = "Allega file";
|
|
||||||
$a->strings["attach file"] = "allega file";
|
|
||||||
$a->strings["Insert web link"] = "Inserisci un indirizzo web";
|
|
||||||
$a->strings["web link"] = "link web";
|
|
||||||
$a->strings["Insert video link"] = "Inserisci l'indirizzo di un video";
|
|
||||||
$a->strings["video link"] = "link video";
|
|
||||||
$a->strings["Insert audio link"] = "Inserisci l'indirizzo di un audio";
|
|
||||||
$a->strings["audio link"] = "link audio";
|
|
||||||
$a->strings["Set your location"] = "La tua località";
|
|
||||||
$a->strings["set location"] = "la tua località";
|
|
||||||
$a->strings["Clear browser location"] = "Rimuovi la località data dal browser";
|
|
||||||
$a->strings["clear location"] = "rimuovi la località";
|
|
||||||
$a->strings["Set title"] = "Scegli un titolo";
|
|
||||||
$a->strings["Categories (comma-separated list)"] = "Categorie (separate da virgola)";
|
|
||||||
$a->strings["Permission settings"] = "Impostazioni permessi";
|
|
||||||
$a->strings["permissions"] = "permessi";
|
|
||||||
$a->strings["Public post"] = "Articolo pubblico";
|
|
||||||
$a->strings["Example: bob@example.com, mary@example.com"] = "Per esempio: mario@esempio.com, simona@esempio.com";
|
|
||||||
$a->strings["Set expiration date"] = "Data di scadenza";
|
|
||||||
$a->strings["Welcome "] = "Ciao";
|
$a->strings["Welcome "] = "Ciao";
|
||||||
$a->strings["Please upload a profile photo."] = "Carica una foto per il profilo!";
|
$a->strings["Please upload a profile photo."] = "Carica una foto per il profilo!";
|
||||||
$a->strings["Welcome back "] = "Ciao, è bello rivederti";
|
$a->strings["Welcome back "] = "Ciao, è bello rivederti";
|
||||||
@ -654,7 +662,7 @@ $a->strings["Item not found."] = "Elemento non trovato.";
|
|||||||
$a->strings["Archives"] = "Archivi";
|
$a->strings["Archives"] = "Archivi";
|
||||||
$a->strings["Collection not found."] = "Insieme non trovato.";
|
$a->strings["Collection not found."] = "Insieme non trovato.";
|
||||||
$a->strings["Group is empty"] = "L'insieme è vuoto";
|
$a->strings["Group is empty"] = "L'insieme è vuoto";
|
||||||
$a->strings["Connection not found."] = "Gruppo non trovato.";
|
$a->strings["Connection not found."] = "Contatto non trovato.";
|
||||||
$a->strings["Sort Options"] = "Opzioni di ordinamento";
|
$a->strings["Sort Options"] = "Opzioni di ordinamento";
|
||||||
$a->strings["Alphabetic"] = "Alfabetico";
|
$a->strings["Alphabetic"] = "Alfabetico";
|
||||||
$a->strings["Reverse Alphabetic"] = "Alfabetico inverso";
|
$a->strings["Reverse Alphabetic"] = "Alfabetico inverso";
|
||||||
@ -963,12 +971,12 @@ $a->strings["Server"] = "Server";
|
|||||||
$a->strings["DB updates"] = "Aggiornamenti al DB";
|
$a->strings["DB updates"] = "Aggiornamenti al DB";
|
||||||
$a->strings["Logs"] = "Log";
|
$a->strings["Logs"] = "Log";
|
||||||
$a->strings["Plugin Features"] = "Funzionalità dei componenti aggiuntivi";
|
$a->strings["Plugin Features"] = "Funzionalità dei componenti aggiuntivi";
|
||||||
$a->strings["User registrations waiting for confirmation"] = "Utenti registrati in attesa di conferma";
|
$a->strings["User registrations waiting for confirmation"] = "Registrazioni in attesa";
|
||||||
$a->strings["Message queues"] = "Coda dei messaggi";
|
$a->strings["Message queues"] = "Messaggi in attesa di recapito";
|
||||||
$a->strings["Administration"] = "Amministrazione";
|
$a->strings["Administration"] = "Amministrazione";
|
||||||
$a->strings["Summary"] = "Riepilogo";
|
$a->strings["Summary"] = "Riepilogo";
|
||||||
$a->strings["Registered users"] = "Utenti registrati";
|
$a->strings["Registered users"] = "Utenti registrati";
|
||||||
$a->strings["Pending registrations"] = "Registrazioni in attesa";
|
$a->strings["Pending registrations"] = "Registrazioni da approvare";
|
||||||
$a->strings["Version"] = "Versione";
|
$a->strings["Version"] = "Versione";
|
||||||
$a->strings["Active plugins"] = "Plugin attivi";
|
$a->strings["Active plugins"] = "Plugin attivi";
|
||||||
$a->strings["Site settings updated."] = "Impostazioni del sito aggiornate.";
|
$a->strings["Site settings updated."] = "Impostazioni del sito aggiornate.";
|
||||||
@ -1001,7 +1009,7 @@ $a->strings["Register policy"] = "Politica di registrazione";
|
|||||||
$a->strings["Access policy"] = "Tipo di accesso";
|
$a->strings["Access policy"] = "Tipo di accesso";
|
||||||
$a->strings["Register text"] = "Testo diregistrazione";
|
$a->strings["Register text"] = "Testo diregistrazione";
|
||||||
$a->strings["Will be displayed prominently on the registration page."] = "Sarà mostrato ben visibile nella pagina di registrazione.";
|
$a->strings["Will be displayed prominently on the registration page."] = "Sarà mostrato ben visibile nella pagina di registrazione.";
|
||||||
$a->strings["Accounts abandoned after x days"] = "Account abbandonati dopo x giorni";
|
$a->strings["Accounts abandoned after x days"] = "Account abbandonati dopo X giorni";
|
||||||
$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Eviterà di sprecare risorse di sistema controllando se i siti esterni hanno account abbandonati. Immettere 0 per non imporre nessun limite di tempo.";
|
$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Eviterà di sprecare risorse di sistema controllando se i siti esterni hanno account abbandonati. Immettere 0 per non imporre nessun limite di tempo.";
|
||||||
$a->strings["Allowed friend domains"] = "Domini fidati e consentiti";
|
$a->strings["Allowed friend domains"] = "Domini fidati e consentiti";
|
||||||
$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Elenco separato da virglola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascia vuoto per accettare connessioni da qualsiasi dominio.";
|
$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Elenco separato da virglola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascia vuoto per accettare connessioni da qualsiasi dominio.";
|
||||||
@ -1047,10 +1055,6 @@ $a->strings["Account not found"] = "Account non trovato";
|
|||||||
$a->strings["User '%s' deleted"] = "Utente '%s' eliminato";
|
$a->strings["User '%s' deleted"] = "Utente '%s' eliminato";
|
||||||
$a->strings["User '%s' unblocked"] = "Utente '%s' sbloccato";
|
$a->strings["User '%s' unblocked"] = "Utente '%s' sbloccato";
|
||||||
$a->strings["User '%s' blocked"] = "Utente '%s' bloccato";
|
$a->strings["User '%s' blocked"] = "Utente '%s' bloccato";
|
||||||
$a->strings["Normal Account"] = "Account normale";
|
|
||||||
$a->strings["Soapbox Account"] = "Account per comunicati e annunci";
|
|
||||||
$a->strings["Community/Celebrity Account"] = "Account per celebrità o per comunità";
|
|
||||||
$a->strings["Automatic Friend Account"] = "Account per amicizia automatizzato";
|
|
||||||
$a->strings["select all"] = "seleziona tutti";
|
$a->strings["select all"] = "seleziona tutti";
|
||||||
$a->strings["User registrations waiting for confirm"] = "Richieste di registrazione in attesa di conferma";
|
$a->strings["User registrations waiting for confirm"] = "Richieste di registrazione in attesa di conferma";
|
||||||
$a->strings["Request date"] = "Data richiesta";
|
$a->strings["Request date"] = "Data richiesta";
|
||||||
@ -1061,6 +1065,7 @@ $a->strings["Block"] = "Blocca";
|
|||||||
$a->strings["Unblock"] = "Sblocca";
|
$a->strings["Unblock"] = "Sblocca";
|
||||||
$a->strings["Register date"] = "Data registrazione";
|
$a->strings["Register date"] = "Data registrazione";
|
||||||
$a->strings["Last login"] = "Ultimo accesso";
|
$a->strings["Last login"] = "Ultimo accesso";
|
||||||
|
$a->strings["Expires"] = "Scadenza";
|
||||||
$a->strings["Service Class"] = "Service Class";
|
$a->strings["Service Class"] = "Service Class";
|
||||||
$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Gli utenti selezionati saranno eliminati!\\n\\nTutto quello che gli utenti hanno pubblicato su questo sito sarà permanentemente eliminato!\\n\\nConfermi?";
|
$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Gli utenti selezionati saranno eliminati!\\n\\nTutto quello che gli utenti hanno pubblicato su questo sito sarà permanentemente eliminato!\\n\\nConfermi?";
|
||||||
$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "L'utente {0} sarà eliminato!\\n\\nTutto quello che ha pubblicato su questo sito sarà permanentemente eliminato!\\n\\nConfermi?";
|
$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "L'utente {0} sarà eliminato!\\n\\nTutto quello che ha pubblicato su questo sito sarà permanentemente eliminato!\\n\\nConfermi?";
|
||||||
@ -1121,6 +1126,7 @@ $a->strings["Collection Editor"] = "Modifica l'insieme";
|
|||||||
$a->strings["Members"] = "Membri";
|
$a->strings["Members"] = "Membri";
|
||||||
$a->strings["All Connected Channels"] = "Tutti i canali connessi";
|
$a->strings["All Connected Channels"] = "Tutti i canali connessi";
|
||||||
$a->strings["Click on a channel to add or remove."] = "Clicca su un canale per aggiungerlo o rimuoverlo.";
|
$a->strings["Click on a channel to add or remove."] = "Clicca su un canale per aggiungerlo o rimuoverlo.";
|
||||||
|
$a->strings["Remove term"] = "Rimuovi termine";
|
||||||
$a->strings["Page owner information could not be retrieved."] = "Impossibile ottenere informazioni sul proprietario della pagina.";
|
$a->strings["Page owner information could not be retrieved."] = "Impossibile ottenere informazioni sul proprietario della pagina.";
|
||||||
$a->strings["Album not found."] = "Album non trovato.";
|
$a->strings["Album not found."] = "Album non trovato.";
|
||||||
$a->strings["Delete Album"] = "Elimina album";
|
$a->strings["Delete Album"] = "Elimina album";
|
||||||
@ -1212,7 +1218,6 @@ $a->strings["Not Found"] = "Non disponibile";
|
|||||||
$a->strings["Remote Authentication"] = "Autenticazione a distanza";
|
$a->strings["Remote Authentication"] = "Autenticazione a distanza";
|
||||||
$a->strings["Enter your channel address (e.g. channel@example.com)"] = "Inserisci l'indirizzo del tuo canale (ad esempio lucia@esempio.com)";
|
$a->strings["Enter your channel address (e.g. channel@example.com)"] = "Inserisci l'indirizzo del tuo canale (ad esempio lucia@esempio.com)";
|
||||||
$a->strings["Authenticate"] = "Autenticazione";
|
$a->strings["Authenticate"] = "Autenticazione";
|
||||||
$a->strings["Remove term"] = "Rimuovi termine";
|
|
||||||
$a->strings["Commented Order"] = "Ultimi commenti";
|
$a->strings["Commented Order"] = "Ultimi commenti";
|
||||||
$a->strings["Sort by Comment Date"] = "Per data del commento";
|
$a->strings["Sort by Comment Date"] = "Per data del commento";
|
||||||
$a->strings["Posted Order"] = "Ultimi articoli";
|
$a->strings["Posted Order"] = "Ultimi articoli";
|
||||||
@ -1238,7 +1243,7 @@ $a->strings["Invalid connection."] = "Connessione non valida.";
|
|||||||
$a->strings["Ignore"] = "Ignora";
|
$a->strings["Ignore"] = "Ignora";
|
||||||
$a->strings["Connection updated."] = "Contatto aggiornato.";
|
$a->strings["Connection updated."] = "Contatto aggiornato.";
|
||||||
$a->strings["Connection update failed."] = "Impossibile aggiornare il contatto.";
|
$a->strings["Connection update failed."] = "Impossibile aggiornare il contatto.";
|
||||||
$a->strings["Introductions and Connection Requests"] = "Richieste di contatto e di amicizia";
|
$a->strings["Introductions and Connection Requests"] = "Richieste per entrare in contatto";
|
||||||
$a->strings["No pending introductions."] = "Nessuna richiesta in attesa.";
|
$a->strings["No pending introductions."] = "Nessuna richiesta in attesa.";
|
||||||
$a->strings["System error. Please try again later."] = "Errore di sistema. Riprovare più tardi.";
|
$a->strings["System error. Please try again later."] = "Errore di sistema. Riprovare più tardi.";
|
||||||
$a->strings["Hide this contact from others"] = "Nascondi questo contatto agli altri";
|
$a->strings["Hide this contact from others"] = "Nascondi questo contatto agli altri";
|
||||||
@ -1247,7 +1252,7 @@ $a->strings["if applicable"] = "se possibile";
|
|||||||
$a->strings["Discard"] = "Rifiuta";
|
$a->strings["Discard"] = "Rifiuta";
|
||||||
$a->strings["Could not access contact record."] = "Non è possibile accedere alle informazioni sul contatto.";
|
$a->strings["Could not access contact record."] = "Non è possibile accedere alle informazioni sul contatto.";
|
||||||
$a->strings["Could not locate selected profile."] = "Non riesco a trovare il profilo selezionato.";
|
$a->strings["Could not locate selected profile."] = "Non riesco a trovare il profilo selezionato.";
|
||||||
$a->strings["Failed to update connection record."] = "Impossibile aggiornare le informazioni di contatto.";
|
$a->strings["Failed to update connection record."] = "Impossibile aggiornare le informazioni del contatto.";
|
||||||
$a->strings["Could not access address book record."] = "Impossibile accedere alle informazioni della rubrica.";
|
$a->strings["Could not access address book record."] = "Impossibile accedere alle informazioni della rubrica.";
|
||||||
$a->strings["Refresh failed - channel is currently unavailable."] = "Il canale non è disponibile - impossibile aggiornare.";
|
$a->strings["Refresh failed - channel is currently unavailable."] = "Il canale non è disponibile - impossibile aggiornare.";
|
||||||
$a->strings["Channel has been unblocked"] = "Il canale è stato sbloccato";
|
$a->strings["Channel has been unblocked"] = "Il canale è stato sbloccato";
|
||||||
@ -1279,10 +1284,10 @@ $a->strings["Hide or Unhide this connection"] = "Per nascondere o meno questo co
|
|||||||
$a->strings["Delete this connection"] = "Elimina questo contatto";
|
$a->strings["Delete this connection"] = "Elimina questo contatto";
|
||||||
$a->strings["Unknown"] = "Sconosciuto";
|
$a->strings["Unknown"] = "Sconosciuto";
|
||||||
$a->strings["Approve this connection"] = "Approva questo contatto";
|
$a->strings["Approve this connection"] = "Approva questo contatto";
|
||||||
$a->strings["Accept connection to allow communication"] = "Accetta il contatto per poter comunicare";
|
$a->strings["Accept connection to allow communication"] = "Entra in contatto per poter comunicare";
|
||||||
$a->strings["Automatic Permissions Settings"] = "Permessi predefiniti";
|
$a->strings["Automatic Permissions Settings"] = "Permessi predefiniti";
|
||||||
$a->strings["Connections: settings for %s"] = "Contatti: impostazioni per %s";
|
$a->strings["Connections: settings for %s"] = "Contatti: impostazioni per %s";
|
||||||
$a->strings["When receiving a channel introduction, any permissions provided here will be applied to the new connection automatically and the introduction approved. Leave this page if you do not wish to use this feature."] = "Quando ricevi una richiesta di amicizia da un canale, i permessi mostrati in questa pagina saranno applicati al nuovo contatto con l'approvazione della richiesta. Lascia questa pagina se non vuoi proseguire.";
|
$a->strings["When receiving a channel introduction, any permissions provided here will be applied to the new connection automatically and the introduction approved. Leave this page if you do not wish to use this feature."] = "Hai ricevuto da un canale una richiesta di entrare in contatto, se prosegui la richiesta sarà approvata e saranno applicati i permessi mostrati. Lascia questa pagina se non vuoi proseguire.";
|
||||||
$a->strings["Slide to adjust your degree of friendship"] = "Trascina per restringere il grado di amicizia da mostrare";
|
$a->strings["Slide to adjust your degree of friendship"] = "Trascina per restringere il grado di amicizia da mostrare";
|
||||||
$a->strings["inherited"] = "derivato";
|
$a->strings["inherited"] = "derivato";
|
||||||
$a->strings["Connection has no individual permissions!"] = "Non hai assegnato permessi individuali a questo contatto!";
|
$a->strings["Connection has no individual permissions!"] = "Non hai assegnato permessi individuali a questo contatto!";
|
||||||
@ -1299,7 +1304,7 @@ $a->strings["Full Sharing"] = "Condivisione totale";
|
|||||||
$a->strings["Cautious Sharing"] = "Condivisione prudente";
|
$a->strings["Cautious Sharing"] = "Condivisione prudente";
|
||||||
$a->strings["Follow Only"] = "Follower";
|
$a->strings["Follow Only"] = "Follower";
|
||||||
$a->strings["Individual Permissions"] = "Permessi individuali";
|
$a->strings["Individual Permissions"] = "Permessi individuali";
|
||||||
$a->strings["Some permissions may be inherited from your <a href=\"settings\">privacy settings</a>, which have higher priority. Changing those on this page will have no effect."] = "Alcuni permessi possono derivano dalle <a href=\"settings\">impostazioni di privacy</a>, che hanno una priorità maggiore. Cambiarli in questa pagina non avrà alcun effetto.";
|
$a->strings["Some permissions may be inherited from your channel <a href=\"settings\">privacy settings</a>, which have higher priority. Changing those inherited settings on this page will have no effect."] = "Alcuni permessi derivano dalle <a href=\"settings\">impostazioni di privacy</a>, che hanno una priorità maggiore. Cambiarli in questa pagina non avrà alcun effetto.";
|
||||||
$a->strings["Advanced Permissions"] = "Permessi avanzati";
|
$a->strings["Advanced Permissions"] = "Permessi avanzati";
|
||||||
$a->strings["Quick Links"] = "Impostazioni veloci";
|
$a->strings["Quick Links"] = "Impostazioni veloci";
|
||||||
$a->strings["Visit %s's profile - %s"] = "Guarda il profilo di %s - %s";
|
$a->strings["Visit %s's profile - %s"] = "Guarda il profilo di %s - %s";
|
||||||
@ -1323,7 +1328,7 @@ $a->strings["Archived"] = "Archiviati";
|
|||||||
$a->strings["All"] = "Tutti";
|
$a->strings["All"] = "Tutti";
|
||||||
$a->strings["Suggestions"] = "Suggerimenti";
|
$a->strings["Suggestions"] = "Suggerimenti";
|
||||||
$a->strings["Suggest new connections"] = "Suggerisci nuovi contatti";
|
$a->strings["Suggest new connections"] = "Suggerisci nuovi contatti";
|
||||||
$a->strings["Show pending (new) connections"] = "Richieste di amicizia in attesa";
|
$a->strings["Show pending (new) connections"] = "Richieste per entrare in contatto";
|
||||||
$a->strings["All Connections"] = "Tutti i contatti";
|
$a->strings["All Connections"] = "Tutti i contatti";
|
||||||
$a->strings["Show all connections"] = "Mostra tutti i contatti";
|
$a->strings["Show all connections"] = "Mostra tutti i contatti";
|
||||||
$a->strings["Unblocked"] = "Non bloccati";
|
$a->strings["Unblocked"] = "Non bloccati";
|
||||||
@ -1520,7 +1525,7 @@ $a->strings["Approve as: "] = "Approva come: ";
|
|||||||
$a->strings["Friend"] = "Amico";
|
$a->strings["Friend"] = "Amico";
|
||||||
$a->strings["Sharer"] = "Sharer";
|
$a->strings["Sharer"] = "Sharer";
|
||||||
$a->strings["Fan/Admirer"] = "Fan/Ammiratore";
|
$a->strings["Fan/Admirer"] = "Fan/Ammiratore";
|
||||||
$a->strings["Friend/Connect Request"] = "Richiesta di amicizia";
|
$a->strings["Friend/Connect Request"] = "Richiesta per entrare in contatto";
|
||||||
$a->strings["New Follower"] = "Nuovo follower";
|
$a->strings["New Follower"] = "Nuovo follower";
|
||||||
$a->strings["No introductions."] = "Nessuna richiesta di amicizia.";
|
$a->strings["No introductions."] = "Nessuna richiesta di amicizia.";
|
||||||
$a->strings["%s liked %s's post"] = "A %s è piaciuto l'articolo di %s";
|
$a->strings["%s liked %s's post"] = "A %s è piaciuto l'articolo di %s";
|
||||||
@ -1629,13 +1634,16 @@ $a->strings["Set the background colour of items"] = "Colore di sfondo degli elem
|
|||||||
$a->strings["Set the opacity of items"] = "Opacità degli oggetti";
|
$a->strings["Set the opacity of items"] = "Opacità degli oggetti";
|
||||||
$a->strings["Set the basic colour for item icons"] = "Colore di base per le icone";
|
$a->strings["Set the basic colour for item icons"] = "Colore di base per le icone";
|
||||||
$a->strings["Set the hover colour for item icons"] = "Colore per le icone in evidenza";
|
$a->strings["Set the hover colour for item icons"] = "Colore per le icone in evidenza";
|
||||||
|
$a->strings["Set font-size for the entire application"] = "Dimensione font per tutto il sito";
|
||||||
$a->strings["Set font-size for posts and comments"] = "Dimensioni del carattere per articoli e commenti";
|
$a->strings["Set font-size for posts and comments"] = "Dimensioni del carattere per articoli e commenti";
|
||||||
$a->strings["Set font-colour for posts and comments"] = "Colore del carattere per articoli e commenti";
|
$a->strings["Set font-colour for posts and comments"] = "Colore del carattere per articoli e commenti";
|
||||||
$a->strings["Set radius of corners"] = "Raggio degli angoli stondati";
|
$a->strings["Set radius of corners"] = "Raggio degli angoli stondati";
|
||||||
$a->strings["Set shadow depth of photos"] = "Profondità dell'ombra delle foto";
|
$a->strings["Set shadow depth of photos"] = "Profondità dell'ombra delle foto";
|
||||||
$a->strings["Set maximum width of conversation regions"] = "Larghezza massima delle aree delle conversazioni";
|
$a->strings["Set maximum width of conversation regions"] = "Larghezza massima delle aree delle conversazioni";
|
||||||
$a->strings["Set minimum opacity of nav bar - to hide it"] = "Imposta l'opacità minima della barra di navigazione per nasconderla";
|
$a->strings["Set minimum opacity of nav bar - to hide it"] = "Imposta l'opacità minima della barra di navigazione per nasconderla";
|
||||||
$a->strings["Sloppy photo albums"] = "Album fotografici semplificati";
|
$a->strings["Set size of conversation author photo"] = "Dimensione foto dell'autore della conversazione";
|
||||||
|
$a->strings["Set size of followup author photos"] = "Dimensione foto dei partecipanti alla conversazione";
|
||||||
|
$a->strings["Sloppy photo albums"] = "Album con foto storte";
|
||||||
$a->strings["Are you a clean desk or a messy desk person?"] = "La tua scrivania è sempre a posto? Sei una persona disordinata?";
|
$a->strings["Are you a clean desk or a messy desk person?"] = "La tua scrivania è sempre a posto? Sei una persona disordinata?";
|
||||||
$a->strings["Schema Default"] = "Schema predefinito";
|
$a->strings["Schema Default"] = "Schema predefinito";
|
||||||
$a->strings["Sans-Serif"] = "Sans-Serif";
|
$a->strings["Sans-Serif"] = "Sans-Serif";
|
||||||
@ -1668,6 +1676,9 @@ $a->strings["Right offset of the section element"] = "Spazio a destra dell'eleme
|
|||||||
$a->strings["Section width"] = "Larghezza section";
|
$a->strings["Section width"] = "Larghezza section";
|
||||||
$a->strings["Left offset of the aside"] = "Spazio a sinistra del aside";
|
$a->strings["Left offset of the aside"] = "Spazio a sinistra del aside";
|
||||||
$a->strings["Right offset of the aside element"] = "Spazio a destra del aside";
|
$a->strings["Right offset of the aside element"] = "Spazio a destra del aside";
|
||||||
|
$a->strings["None"] = "Nessuno";
|
||||||
|
$a->strings["Header image"] = "Immagine dell'intestazione";
|
||||||
|
$a->strings["Header image only on profile pages"] = "È possibile mettere un'immagine solo nell'intestazione dei profili";
|
||||||
$a->strings["Update %s failed. See error logs."] = "%s: aggiornamento fallito. Controlla i log di errore.";
|
$a->strings["Update %s failed. See error logs."] = "%s: aggiornamento fallito. Controlla i log di errore.";
|
||||||
$a->strings["Update Error at %s"] = "Errore di aggiornamento su %s";
|
$a->strings["Update Error at %s"] = "Errore di aggiornamento su %s";
|
||||||
$a->strings["Create an account to access services and applications within the Red Matrix"] = "Registrati per accedere ai servizi e alle applicazioni di Red Matrix";
|
$a->strings["Create an account to access services and applications within the Red Matrix"] = "Registrati per accedere ai servizi e alle applicazioni di Red Matrix";
|
||||||
|
@ -582,42 +582,7 @@ footer {
|
|||||||
#viewconnections {
|
#viewconnections {
|
||||||
margin-top: 15px;
|
margin-top: 15px;
|
||||||
}
|
}
|
||||||
#profile-edit-default-desc {
|
|
||||||
color: #FF0000;
|
|
||||||
border: 1px solid #FF8888;
|
|
||||||
background-color: #FFEEEE;
|
|
||||||
padding: 7px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#profile-edit-clone-link-wrapper {
|
|
||||||
float: left;
|
|
||||||
margin-left: 50px;
|
|
||||||
margin-bottom: 20px;
|
|
||||||
width: 300px;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
#profile-edit-links-end {
|
|
||||||
clear: both;
|
|
||||||
margin-bottom: 15px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.profile-listing-photo {
|
|
||||||
border: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.profile-edit-submit-wrapper {
|
|
||||||
margin-top: 20px;
|
|
||||||
margin-bottom: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#profile-photo-link-select-wrapper {
|
|
||||||
margin-top: 2em;
|
|
||||||
}
|
|
||||||
|
|
||||||
#profile-photo-submit-wrapper {
|
|
||||||
margin-top: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#profile-photo-wrapper img {
|
#profile-photo-wrapper img {
|
||||||
width:175px;
|
width:175px;
|
||||||
@ -632,65 +597,6 @@ footer {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#profile-edit-profile-name-label,
|
|
||||||
#profile-edit-name-label,
|
|
||||||
#profile-edit-pdesc-label,
|
|
||||||
#profile-edit-gender-label,
|
|
||||||
#profile-edit-dob-label,
|
|
||||||
#profile-edit-address-label,
|
|
||||||
#profile-edit-locality-label,
|
|
||||||
#profile-edit-region-label,
|
|
||||||
#profile-edit-postal-code-label,
|
|
||||||
#profile-edit-country-name-label,
|
|
||||||
#profile-edit-marital-label,
|
|
||||||
#profile-edit-sexual-label,
|
|
||||||
#profile-edit-politic-label,
|
|
||||||
#profile-edit-religion-label,
|
|
||||||
#profile-edit-pubkeywords-label,
|
|
||||||
#profile-edit-prvkeywords-label,
|
|
||||||
#profile-edit-homepage-label,
|
|
||||||
#profile-edit-hometown-label {
|
|
||||||
float: left;
|
|
||||||
width: 175px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#profile-edit-profile-name,
|
|
||||||
#profile-edit-name,
|
|
||||||
#profile-edit-pdesc,
|
|
||||||
#gender-select,
|
|
||||||
#profile-edit-dob,
|
|
||||||
#profile-edit-address,
|
|
||||||
#profile-edit-locality,
|
|
||||||
#profile-edit-region,
|
|
||||||
#profile-edit-postal-code,
|
|
||||||
#profile-edit-country-name,
|
|
||||||
#marital-select,
|
|
||||||
#sexual-select,
|
|
||||||
#profile-edit-politic,
|
|
||||||
#profile-edit-religion,
|
|
||||||
#profile-edit-pubkeywords,
|
|
||||||
#profile-edit-prvkeywords,
|
|
||||||
#profile-in-dir-yes,
|
|
||||||
#profile-in-dir-no,
|
|
||||||
#profile-in-netdir-yes,
|
|
||||||
#profile-in-netdir-no,
|
|
||||||
#hide-wall-yes,
|
|
||||||
#hide-wall-no,
|
|
||||||
#hide-friends-yes,
|
|
||||||
#hide-friends-no {
|
|
||||||
float: left;
|
|
||||||
margin-bottom: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
#settings-notifications label {
|
|
||||||
margin-left: 20px;
|
|
||||||
}
|
|
||||||
#settings-notify-desc, #settings-activity-desc {
|
|
||||||
font-weight: bold;
|
|
||||||
margin-bottom: 15px;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
#profile-in-dir-yes-label,
|
#profile-in-dir-yes-label,
|
||||||
#profile-in-dir-no-label,
|
#profile-in-dir-no-label,
|
||||||
@ -705,10 +611,6 @@ footer {
|
|||||||
width: 50px;
|
width: 50px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#profile-edit-with-label {
|
|
||||||
width: 175px;
|
|
||||||
margin-left: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#profile-publish-yes-reg,
|
#profile-publish-yes-reg,
|
||||||
#profile-publish-no-reg {
|
#profile-publish-no-reg {
|
||||||
@ -729,48 +631,6 @@ footer {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#profile-edit-pdesc-desc,
|
|
||||||
#profile-edit-pubkeywords-desc,
|
|
||||||
#profile-edit-prvkeywords-desc {
|
|
||||||
float: left;
|
|
||||||
margin-left: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
#profile-edit-homepage, #profile-edit-hometown {
|
|
||||||
float: left;
|
|
||||||
margin-bottom: 35px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#profile-edit-profile-name-end,
|
|
||||||
#profile-edit-name-end,
|
|
||||||
#profile-edit-pdesc-end,
|
|
||||||
#profile-edit-gender-end,
|
|
||||||
#profile-edit-dob-end,
|
|
||||||
#profile-edit-address-end,
|
|
||||||
#profile-edit-locality-end,
|
|
||||||
#profile-edit-region-end,
|
|
||||||
#profile-edit-postal-code-end,
|
|
||||||
#profile-edit-country-name-end,
|
|
||||||
#profile-edit-marital-end,
|
|
||||||
#profile-edit-sexual-end,
|
|
||||||
#profile-edit-politic-end,
|
|
||||||
#profile-edit-religion-end,
|
|
||||||
#profile-edit-pubkeywords-end,
|
|
||||||
#profile-edit-prvkeywords-end,
|
|
||||||
#profile-edit-homepage-end,
|
|
||||||
#profile-edit-hometown-end,
|
|
||||||
#profile-in-dir-break,
|
|
||||||
#profile-in-dir-end,
|
|
||||||
#profile-in-netdir-break,
|
|
||||||
#profile-in-netdir-end,
|
|
||||||
#hide-wall-break,
|
|
||||||
#hide-wall-end,
|
|
||||||
#hide-friends-break,
|
|
||||||
#hide-friends-end {
|
|
||||||
clear: both;
|
|
||||||
}
|
|
||||||
|
|
||||||
.settings-widget ul {
|
.settings-widget ul {
|
||||||
list-style-type: none;
|
list-style-type: none;
|
||||||
padding: 0px;
|
padding: 0px;
|
||||||
@ -782,15 +642,6 @@ footer {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#gender-select, #marital-select, #sexual-select {
|
|
||||||
width: 220px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#profile-edit-profile-name-wrapper .required {
|
|
||||||
color: #FF0000;
|
|
||||||
float: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
#contacts-main {
|
#contacts-main {
|
||||||
margin-top: 20px;
|
margin-top: 20px;
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
@ -2600,40 +2451,6 @@ brain is weird like that */
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.field_abook_help {
|
|
||||||
color: #000;
|
|
||||||
}
|
|
||||||
.abook-them {
|
|
||||||
margin-left: 225px;
|
|
||||||
margin-bottom: 15px;
|
|
||||||
}
|
|
||||||
.abook-me {
|
|
||||||
margin-left: 36px;
|
|
||||||
margin-bottom: 15px;
|
|
||||||
}
|
|
||||||
.acheckbox {
|
|
||||||
margin-bottom: 5px !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.abook-pending-contact {
|
|
||||||
background: orange;
|
|
||||||
font-weight: bold;
|
|
||||||
margin: 10px;
|
|
||||||
padding: 20px 5px 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#contact-slider {
|
|
||||||
width: 600px !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.abook-edit-them, .abook-edit-me {
|
|
||||||
float: left;
|
|
||||||
width: 100px !important;
|
|
||||||
}
|
|
||||||
.field_abook_help {
|
|
||||||
float: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
.field .onoff {
|
.field .onoff {
|
||||||
float: left;
|
float: left;
|
||||||
width: 80px;
|
width: 80px;
|
||||||
@ -2782,8 +2599,6 @@ brain is weird like that */
|
|||||||
.on { background-position: -144px -32px; }
|
.on { background-position: -144px -32px; }
|
||||||
|
|
||||||
.off { background-position: 0px -48px; }
|
.off { background-position: 0px -48px; }
|
||||||
/*.starred { background-position: -16px -48px; }
|
|
||||||
.unstarred { background-position: -32px -48px; }*/
|
|
||||||
.tagged { background-position: -48px -48px; }
|
.tagged { background-position: -48px -48px; }
|
||||||
.yellow { background-position: -64px -48px; }
|
.yellow { background-position: -64px -48px; }
|
||||||
|
|
||||||
@ -2791,12 +2606,8 @@ brain is weird like that */
|
|||||||
color: gold;
|
color: gold;
|
||||||
}
|
}
|
||||||
|
|
||||||
.filer-icon {
|
|
||||||
display: block; width: 16px; height: 16px;
|
|
||||||
background-image: url('../img/file.gif');
|
|
||||||
}
|
|
||||||
|
|
||||||
.icon.dim { opacity: 0.3;filter:alpha(opacity=30); }
|
.icon.dim { opacity: 0.3;filter:alpha(opacity=30); }
|
||||||
|
|
||||||
[class^="comment-edit-bb"] {
|
[class^="comment-edit-bb"] {
|
||||||
list-style: none;
|
list-style: none;
|
||||||
display: none;
|
display: none;
|
||||||
@ -2812,81 +2623,11 @@ brain is weird like that */
|
|||||||
[class^="comment-edit-bb-end"] {
|
[class^="comment-edit-bb-end"] {
|
||||||
clear: both;
|
clear: both;
|
||||||
}
|
}
|
||||||
.editicon {
|
|
||||||
display: inline-block;
|
|
||||||
width: 16px;
|
|
||||||
height: 16px;
|
|
||||||
background-image: url(../img/bbedit.png);
|
|
||||||
background-color: #fff;
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
.editicon:hover {
|
|
||||||
background-color: #ccc;
|
|
||||||
}
|
|
||||||
.boldbb {
|
|
||||||
background-position: 0px 0px;
|
|
||||||
}
|
|
||||||
.boldbb:hover {
|
|
||||||
background-position: 0px -16px;
|
|
||||||
}
|
|
||||||
.italicbb {
|
|
||||||
background-position: -16px 0px;
|
|
||||||
}
|
|
||||||
.italicbb:hover {
|
|
||||||
background-position: -16px -16px;
|
|
||||||
}
|
|
||||||
.underlinebb {
|
|
||||||
background-position: -32px 0px;
|
|
||||||
}
|
|
||||||
.underlinebb:hover {
|
|
||||||
background-position: -32px -16px;
|
|
||||||
}
|
|
||||||
.quotebb {
|
|
||||||
background-position: -48px 0px;
|
|
||||||
}
|
|
||||||
.quotebb:hover {
|
|
||||||
background-position: -48px -16px;
|
|
||||||
}
|
|
||||||
.codebb {
|
|
||||||
background-position: -64px 0px;
|
|
||||||
}
|
|
||||||
.codebb:hover {
|
|
||||||
background-position: -64px -16px;
|
|
||||||
}
|
|
||||||
.imagebb {
|
|
||||||
background-position: -80px 0px;
|
|
||||||
}
|
|
||||||
.imagebb:hover {
|
|
||||||
background-position: -80px -16px;
|
|
||||||
}
|
|
||||||
.urlbb {
|
|
||||||
background-position: -96px 0px;
|
|
||||||
}
|
|
||||||
.urlbb:hover {
|
|
||||||
background-position: -96px -16px;
|
|
||||||
}
|
|
||||||
.videobb {
|
|
||||||
background-position: -112px 0px;
|
|
||||||
}
|
|
||||||
.videobb:hover {
|
|
||||||
background-position: -112px -16px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.attachtype {
|
|
||||||
display: block; width: 20px; height: 23px;
|
|
||||||
float: left;
|
|
||||||
background-image: url('../../../../images/content-types.png');
|
|
||||||
}
|
|
||||||
|
|
||||||
.body-attach {
|
.body-attach {
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.type-video { background-position: 0px 0px; }
|
|
||||||
.type-image { background-position: -20px 0px; }
|
|
||||||
.type-audio { background-position: -40px 0px; }
|
|
||||||
.type-text { background-position: -60px 0px; }
|
|
||||||
.type-unkn { background-position: -80px 0px; }
|
|
||||||
|
|
||||||
|
|
||||||
/* autocomplete popup */
|
/* autocomplete popup */
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
<form action="{{$post}}" method="post" >
|
<form action="{{$post}}" method="post" >
|
||||||
|
|
||||||
<input type="hidden" name="event_id" value="{{$eid}}" />
|
<input type="hidden" name="event_id" value="{{$eid}}" />
|
||||||
<input type="hidden" name="cid" value="{{$cid}}" />
|
<input type="hidden" name="xchan" value="{{$xchan}}" />
|
||||||
<input type="hidden" name="mid" value="{{$mid}}" />
|
<input type="hidden" name="mid" value="{{$mid}}" />
|
||||||
|
|
||||||
<div id="event-start-text">{{$s_text}}</div>
|
<div id="event-start-text">{{$s_text}}</div>
|
||||||
|
Reference in New Issue
Block a user