aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormarijus <mario@localhost.localdomain>2013-12-02 11:30:02 +0100
committermarijus <mario@localhost.localdomain>2013-12-02 11:30:02 +0100
commitfc8c34826ea361a49c29742f15b98b573e6c7c86 (patch)
tree082c5d1c39a358cc19bcbb9465ccf831f134b751
parent51cad9cafef228090cc1641a425ba272b1a3b470 (diff)
parentf22302cbb649013087e27ba5d6679dcefb3953f1 (diff)
downloadvolse-hubzilla-fc8c34826ea361a49c29742f15b98b573e6c7c86.tar.gz
volse-hubzilla-fc8c34826ea361a49c29742f15b98b573e6c7c86.tar.bz2
volse-hubzilla-fc8c34826ea361a49c29742f15b98b573e6c7c86.zip
Merge branch 'master' of https://github.com/friendica/red
-rw-r--r--images/default-profile-mm.jpgbin322 -> 0 bytes
-rw-r--r--images/default-profile-sm.jpgbin346 -> 0 bytes
-rw-r--r--images/default-profile.jpgbin490 -> 0 bytes
-rw-r--r--include/network.php207
-rwxr-xr-xinclude/plugin.php2
-rwxr-xr-xmod/events.php23
-rw-r--r--mod/match.php12
-rw-r--r--mod/post.php239
-rw-r--r--util/wp/post_to_red/post_to_red.php35
-rw-r--r--view/css/mod_connections.css34
-rw-r--r--view/css/mod_profiles.css144
-rw-r--r--view/css/mod_settings.css11
-rw-r--r--view/de/messages.po2882
-rw-r--r--view/de/strings.php310
-rw-r--r--view/it/messages.po1686
-rw-r--r--view/it/strings.php201
-rw-r--r--view/theme/redbasic/css/style.css261
-rwxr-xr-xview/tpl/event_form.tpl2
18 files changed, 3269 insertions, 2780 deletions
diff --git a/images/default-profile-mm.jpg b/images/default-profile-mm.jpg
deleted file mode 100644
index 79c1a8530..000000000
--- a/images/default-profile-mm.jpg
+++ /dev/null
Binary files differ
diff --git a/images/default-profile-sm.jpg b/images/default-profile-sm.jpg
deleted file mode 100644
index 348957fb4..000000000
--- a/images/default-profile-sm.jpg
+++ /dev/null
Binary files differ
diff --git a/images/default-profile.jpg b/images/default-profile.jpg
deleted file mode 100644
index 85fbca8cd..000000000
--- a/images/default-profile.jpg
+++ /dev/null
Binary files differ
diff --git a/include/network.php b/include/network.php
index a15b89c67..dac039230 100644
--- a/include/network.php
+++ b/include/network.php
@@ -6,108 +6,6 @@ function get_capath() {
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
* @param string $url
@@ -251,6 +149,8 @@ function z_post_url($url,$params, $redirects = 0, $opts = array()) {
"Accept: " . $opts['accept_content']
));
}
+ if(x($opts,'headers'))
+ curl_setopt($ch, CURLOPT_HTTPHEADER, $opts['headers']);
if(x($opts,'timeout') && intval($opts['timeout'])) {
@curl_setopt($ch, CURLOPT_TIMEOUT, $opts['timeout']);
@@ -676,63 +576,6 @@ function parse_xml_string($s,$strict = true) {
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) {
@@ -810,52 +653,6 @@ function scale_external_images($s, $include_link = true, $scale_replace = false)
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.
* Link: http://www.bin-co.com/php/scripts/xml2array/
diff --git a/include/plugin.php b/include/plugin.php
index 4d28909d2..5ed2a1736 100755
--- a/include/plugin.php
+++ b/include/plugin.php
@@ -197,7 +197,7 @@ function load_hooks() {
$a->hooks[$rr['hook']][] = array($rr['file'],$rr['function']);
}
}
-logger('hooks: ' . print_r($a->hooks,true));
+//logger('hooks: ' . print_r($a->hooks,true));
}
diff --git a/mod/events.php b/mod/events.php
index f43a99cba..77756fb13 100755
--- a/mod/events.php
+++ b/mod/events.php
@@ -11,7 +11,7 @@ function events_post(&$a) {
return;
$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();
$startyear = intval($_POST['startyear']);
$startmonth = intval($_POST['startmonth']);
@@ -28,6 +28,11 @@ function events_post(&$a) {
$adjust = intval($_POST['adjust']);
$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
$private_event = false;
@@ -389,11 +394,9 @@ function events_content(&$a) {
else
$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" ';
-
-
$tpl = get_markup_template('event_form.tpl');
$sdt = ((x($orig_event)) ? $orig_event['start'] : 'now');
@@ -426,6 +429,15 @@ function events_content(&$a) {
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(
'$post' => $a->get_baseurl() . '/events',
'$eid' => $eid,
@@ -453,8 +465,7 @@ function events_content(&$a) {
'$t_orig' => $t_orig,
'$sh_text' => t('Share this event'),
'$sh_checked' => $sh_checked,
-// FIXME
- '$acl' => (($cid) ? '' : populate_acl(((x($orig_event)) ? $orig_event : $a->user),false)),
+ '$acl' => (($orig_event['event_xchan']) ? '' : populate_acl(((x($orig_event)) ? $orig_event : $perm_defaults))),
'$submit' => t('Submit')
));
diff --git a/mod/match.php b/mod/match.php
index 23eeb9370..5447f755d 100644
--- a/mod/match.php
+++ b/mod/match.php
@@ -1,5 +1,9 @@
<?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) {
@@ -30,10 +34,10 @@ function match_content(&$a) {
if($a->pager['page'] != 1)
$params['p'] = $a->pager['page'];
- if(strlen(get_config('system','directory_submit_url')))
- $x = post_url('http://dir.friendica.com/msearch', $params);
- else
- $x = post_url($a->get_baseurl() . '/msearch', $params);
+// if(strlen(get_config('system','directory_submit_url')))
+// $x = post_url('http://dir.friendica.com/msearch', $params);
+// else
+// $x = post_url($a->get_baseurl() . '/msearch', $params);
$j = json_decode($x);
diff --git a/mod/post.php b/mod/post.php
index 0ce58ec9f..2422afa8c 100644
--- a/mod/post.php
+++ b/mod/post.php
@@ -14,6 +14,72 @@ function post_init(&$a) {
// Here we will pick out the magic auth params which arrive
// 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) {
$webbie = argv(1);
}
@@ -45,11 +111,23 @@ function post_init(&$a) {
$c = q("select * from channel where channel_address = '%s' limit 1",
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) {
+
+ // nobody here
+
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.
- // In fact we only need the name to map the destination, auth can proceed
- // without it.
+ goaway($desturl);
}
}
@@ -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) {
diff --git a/util/wp/post_to_red/post_to_red.php b/util/wp/post_to_red/post_to_red.php
index 81ae9b3ed..11b1b48f7 100644
--- a/util/wp/post_to_red/post_to_red.php
+++ b/util/wp/post_to_red/post_to_red.php
@@ -69,6 +69,7 @@ function post_to_red_post($post_id) {
$password = post_to_red_get_password();
$seed_location = post_to_red_get_seed_location();
$channel = post_to_red_get_channel_name();
+ $backlink = get_option('post_to_red_backlink');
if ((isset($user_name)) && (isset($password)) && (isset($seed_location))) {
// remove potential comments
@@ -88,7 +89,23 @@ function post_to_red_post($post_id) {
$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);
+
+ if($backlink)
+ $bbcode .= "\n\n" . _('Source:') . ' ' . '[url]' . get_permalink($post_id) . '[/url]';
$url = $seed_location . '/api/statuses/update';
@@ -103,7 +120,9 @@ function post_to_red_post($post_id) {
);
if($channel)
$body['channel'] = $channel;
-
+ if($cats)
+ $body['category'] = $cats;
+
// post:
$request = new WP_Http;
$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();
$user_acct = post_to_red_get_acct_name();
$channel = post_to_red_get_channel_name();
-
+ $backlink = get_option('post_to_red_backlink');
+ $backlink_checked = ((intval($backlink)) ? ' checked="checked" ' : '');
// debug...
// echo "seed location: $seed_url</br>";
// echo "password: $password</br>";
@@ -204,10 +224,11 @@ function post_to_red_displayAdminContent() {
<h2>Configuration</h2>
<form method="post" action="{$_SERVER["REQUEST_URI"]}">
Enter the login details of your Red Matrix account<br /><br />
- <input type="text" name="post_to_red_acct_name" value="{$user_acct}"/> &nbsp;
- Password: <input type="password" name="post_to_red_password" value="{$password}"/> &nbsp;
- Red Matrix URL: <input type="text" name="post_to_red_url" value="{$seed_url}"/> &nbsp;
- Optional channel nickname: <input type="text" name="post_to_red_channel" value="{$channel}"/> &nbsp;
+ 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}"/><br />
+ 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}"/><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" />
</form>
<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_seed_location', $red_url);
update_option('post_to_red_password', $password);
-
+ update_option('post_to_red_backlink', $_REQUEST['post_to_red_backlink']);
}
post_to_red_displayAdminContent();
diff --git a/view/css/mod_connections.css b/view/css/mod_connections.css
new file mode 100644
index 000000000..c2f6eeff0
--- /dev/null
+++ b/view/css/mod_connections.css
@@ -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;
+}
diff --git a/view/css/mod_profiles.css b/view/css/mod_profiles.css
new file mode 100644
index 000000000..8378245d2
--- /dev/null
+++ b/view/css/mod_profiles.css
@@ -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;
+}
diff --git a/view/css/mod_settings.css b/view/css/mod_settings.css
index 0532268f1..601cb2e0e 100644
--- a/view/css/mod_settings.css
+++ b/view/css/mod_settings.css
@@ -13,3 +13,14 @@
margin-top: 15px;
margin-bottom: 45px;
}
+
+
+
+#settings-notifications label {
+ margin-left: 20px;
+}
+#settings-notify-desc, #settings-activity-desc {
+ font-weight: bold;
+ margin-bottom: 15px;
+}
+
diff --git a/view/de/messages.po b/view/de/messages.po
index 58cc1e25c..d8365eccd 100644
--- a/view/de/messages.po
+++ b/view/de/messages.po
@@ -4,17 +4,22 @@
#
# Translators:
# alexej <info@pixelbits.de>, 2013
+# alexej <info@pixelbits.de>, 2013
+# balder <andreas.bauer@ymail.com>, 2013
# balder <andreas.bauer@ymail.com>, 2013
+# bavatar <tobias.diekershoff@gmx.net>, 2013
+# EinerVonVielen <tom@jfellow.net>, 2013
# EinerVonVielen <tom@jfellow.net>, 2013
# Fraengii <frank@lumina-verte.org>, 2013
+# Fraengii <frank@lumina-verte.org>, 2013
# Oliver <post@toktan.org>, 2013
# bavatar <tobias.diekershoff@gmx.net>, 2013
msgid ""
msgstr ""
"Project-Id-Version: Red Matrix\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-10-04 00:01-0700\n"
-"PO-Revision-Date: 2013-10-10 11:37+0000\n"
+"POT-Creation-Date: 2013-11-29 00:03-0800\n"
+"PO-Revision-Date: 2013-12-02 08:10+0000\n"
"Last-Translator: bavatar <tobias.diekershoff@gmx.net>\n"
"Language-Team: German (http://www.transifex.com/projects/p/red-matrix/language/de/)\n"
"MIME-Version: 1.0\n"
@@ -37,7 +42,7 @@ msgstr "Verbergen"
#: ../../include/activities.php:37
msgid " and "
-msgstr " und "
+msgstr "und"
#: ../../include/activities.php:45
msgid "public profile"
@@ -58,14 +63,14 @@ msgstr "Besuche %1$s's %2$s"
msgid "%1$s has an updated %2$s, changing %3$s."
msgstr "%1$s hat ein aktualisiertes %2$s, %3$s wurde verändert."
-#: ../../include/api.php:970
-msgid "Public Timeline"
-msgstr "Öffentliche Zeitleiste"
-
#: ../../include/enotify.php:36
msgid "Red Matrix Notification"
msgstr "Red Matrix Benachrichtigung"
+#: ../../include/enotify.php:37
+msgid "redmatrix"
+msgstr ""
+
#: ../../include/enotify.php:39
msgid "Thank You,"
msgstr "Danke."
@@ -75,199 +80,200 @@ msgstr "Danke."
msgid "%s Administrator"
msgstr "%s Administrator"
-#: ../../include/enotify.php:75
+#: ../../include/enotify.php:76
#, php-format
msgid "%s <!item_type!>"
msgstr "%s <!item_type!>"
-#: ../../include/enotify.php:79
+#: ../../include/enotify.php:80
#, php-format
msgid "[Red:Notify] New mail received at %s"
msgstr "[Red Notify] Neue Mail auf %s empfangen"
-#: ../../include/enotify.php:81
+#: ../../include/enotify.php:82
#, php-format
-msgid "%1$s sent you a new private message at %2$s."
-msgstr "%1$s hat Dir eine private Nachricht auf %2$s geschickt."
+msgid "%1$s, %2$s sent you a new private message at %3$s."
+msgstr "%1$s, %2$s hat dir eine private Nachricht auf %3$s gesendet."
-#: ../../include/enotify.php:82
+#: ../../include/enotify.php:83
#, php-format
msgid "%1$s sent you %2$s."
msgstr "%1$s hat dir %2$s geschickt."
-#: ../../include/enotify.php:82
+#: ../../include/enotify.php:83
msgid "a private message"
msgstr "eine private Nachricht"
-#: ../../include/enotify.php:83
+#: ../../include/enotify.php:84
#, php-format
msgid "Please visit %s to view and/or reply to your private messages."
msgstr "Bitte besuche %s, um die private Nachricht anzusehen und/oder darauf zu antworten."
-#: ../../include/enotify.php:134
+#: ../../include/enotify.php:135
#, php-format
-msgid "%1$s commented on [zrl=%2$s]a %3$s[/zrl]"
-msgstr "%1$s hat auf [zrl=%2$s]einen %3$s[/zrl] kommentiert"
+msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]"
+msgstr ""
-#: ../../include/enotify.php:141
+#: ../../include/enotify.php:143
#, php-format
-msgid "%1$s commented on [zrl=%2$s]%3$s's %4$s[/zrl]"
-msgstr "%1$s kommentierte auf [zrl=%2$s]%3$s's %4$s[/zrl]"
+msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]"
+msgstr ""
-#: ../../include/enotify.php:149
+#: ../../include/enotify.php:152
#, php-format
-msgid "%1$s commented on [zrl=%2$s]your %3$s[/zrl]"
-msgstr "%1$s hat auf [zrl=%2$s]Dein %3$s[/zrl] kommentiert"
+msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]"
+msgstr ""
-#: ../../include/enotify.php:159
+#: ../../include/enotify.php:163
#, php-format
msgid "[Red:Notify] Comment to conversation #%1$d by %2$s"
msgstr "[Red:Notify] Kommentar in Unterhaltung #%1$d von %2$s"
-#: ../../include/enotify.php:160
+#: ../../include/enotify.php:164
#, php-format
-msgid "%s commented on an item/conversation you have been following."
-msgstr "%s hat einen Beitrag/eine Konversation kommentiert, dem/der du folgst."
+msgid "%1$s, %2$s commented on an item/conversation you have been following."
+msgstr ""
-#: ../../include/enotify.php:163 ../../include/enotify.php:180
-#: ../../include/enotify.php:206 ../../include/enotify.php:224
-#: ../../include/enotify.php:237
+#: ../../include/enotify.php:167 ../../include/enotify.php:186
+#: ../../include/enotify.php:212 ../../include/enotify.php:231
+#: ../../include/enotify.php:245
#, php-format
msgid "Please visit %s to view and/or reply to the conversation."
msgstr "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren."
-#: ../../include/enotify.php:170
+#: ../../include/enotify.php:174
#, php-format
msgid "[Red:Notify] %s posted to your profile wall"
msgstr "[Red:Hinweis] %s schrieb auf Deine Pinnwand"
-#: ../../include/enotify.php:172
+#: ../../include/enotify.php:176
#, php-format
-msgid "%1$s posted to your profile wall at %2$s"
-msgstr "%1$s schrieb auf Deine Pinnwand auf %2$s"
+msgid "%1$s, %2$s posted to your profile wall at %3$s"
+msgstr ""
-#: ../../include/enotify.php:174
+#: ../../include/enotify.php:178
#, php-format
-msgid "%1$s posted to [zrl=%2$s]your wall[/zrl]"
-msgstr "%1$s schrieb auf [zrl=%2$s]Deine Pinnwand[/zrl]"
+msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]"
+msgstr ""
-#: ../../include/enotify.php:200
+#: ../../include/enotify.php:205
#, php-format
msgid "[Red:Notify] %s tagged you"
msgstr "[Red Notify] %s hat dich getaggt"
-#: ../../include/enotify.php:201
+#: ../../include/enotify.php:206
#, php-format
-msgid "%1$s tagged you at %2$s"
-msgstr "%1$s hat dich auf %2$s getaggt"
+msgid "%1$s, %2$s tagged you at %3$s"
+msgstr "%1$s, %2$s hat dich auf %3$s getaggt"
-#: ../../include/enotify.php:202
+#: ../../include/enotify.php:207
#, php-format
-msgid "%1$s [zrl=%2$s]tagged you[/zrl]."
-msgstr "%1$s hat [zrl=%2$s]Dich getagged[/zrl]."
+msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]."
+msgstr ""
-#: ../../include/enotify.php:214
+#: ../../include/enotify.php:220
#, php-format
msgid "[Red:Notify] %1$s poked you"
msgstr "[Red Notify] %1$s hat dich angestupst"
-#: ../../include/enotify.php:215
+#: ../../include/enotify.php:221
#, php-format
-msgid "%1$s poked you at %2$s"
-msgstr "%1$s hat dich auf %2$s angestupst"
+msgid "%1$s, %2$s poked you at %3$s"
+msgstr "%1$s, %2$s hat dich auf %3$s angestubst"
-#: ../../include/enotify.php:216
+#: ../../include/enotify.php:222
#, php-format
-msgid "%1$s [zrl=%2$s]poked you[/zrl]."
-msgstr "%1$s [zrl=%2$s]hat dich angestupst.[/zrl]."
+msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]."
+msgstr ""
-#: ../../include/enotify.php:231
+#: ../../include/enotify.php:238
#, php-format
msgid "[Red:Notify] %s tagged your post"
msgstr "[Red:Hinweis] %s hat Dich getagged"
-#: ../../include/enotify.php:232
+#: ../../include/enotify.php:239
#, php-format
-msgid "%1$s tagged your post at %2$s"
-msgstr "%1$s hat Deinen Beitrag auf %2$s getagged"
+msgid "%1$s, %2$s tagged your post at %3$s"
+msgstr ""
-#: ../../include/enotify.php:233
+#: ../../include/enotify.php:240
#, php-format
-msgid "%1$s tagged [zrl=%2$s]your post[/zrl]"
-msgstr "%1$s hat [zrl=%2$s]Deinen Beitrag[/zrl] getagged"
+msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]"
+msgstr ""
-#: ../../include/enotify.php:244
+#: ../../include/enotify.php:252
msgid "[Red:Notify] Introduction received"
msgstr "[Red:Notify] Vorstellung erhalten"
-#: ../../include/enotify.php:245
+#: ../../include/enotify.php:253
#, php-format
-msgid "You've received an introduction from '%1$s' at %2$s"
-msgstr "Du hast auf %2$s eine Vorstellung von %1$s erhalten."
+msgid "%1$s, you've received an introduction from '%2$s' at %3$s"
+msgstr ""
-#: ../../include/enotify.php:246
+#: ../../include/enotify.php:254
#, php-format
-msgid "You've received [zrl=%1$s]an introduction[/zrl] from %2$s."
-msgstr "Du hast [zrl=%1$s]eine Vorstellung[/zrl] von %2$s erhalten."
+msgid "%1$s, you've received [zrl=%2$s]an introduction[/zrl] from %3$s."
+msgstr ""
-#: ../../include/enotify.php:249 ../../include/enotify.php:267
+#: ../../include/enotify.php:258 ../../include/enotify.php:277
#, php-format
msgid "You may visit their profile at %s"
msgstr "Du kannst Dir das Profil unter %s ansehen"
-#: ../../include/enotify.php:251
+#: ../../include/enotify.php:260
#, php-format
msgid "Please visit %s to approve or reject the introduction."
msgstr "Bitte besuche %s um sie anzunehmen oder abzulehnen."
-#: ../../include/enotify.php:258
+#: ../../include/enotify.php:267
msgid "[Red:Notify] Friend suggestion received"
msgstr "[Red:Hinweis] Freundschaftsvorschlag erhalten"
-#: ../../include/enotify.php:259
+#: ../../include/enotify.php:268
#, php-format
-msgid "You've received a friend suggestion from '%1$s' at %2$s"
-msgstr "Du hast einen Freundschaftsvorschlag von %1$s auf %2$s erhalten"
+msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s"
+msgstr ""
-#: ../../include/enotify.php:260
+#: ../../include/enotify.php:269
#, php-format
msgid ""
-"You've received [zrl=%1$s]a friend suggestion[/zrl] for %2$s from %3$s."
-msgstr "Du hast einen [zrl=%1$s]Freundschaftsvorschlag[/zrl] für %2$s von %3$s erhalten."
+"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from "
+"%4$s."
+msgstr ""
-#: ../../include/enotify.php:265
+#: ../../include/enotify.php:275
msgid "Name:"
msgstr "Name:"
-#: ../../include/enotify.php:266
+#: ../../include/enotify.php:276
msgid "Photo:"
msgstr "Foto:"
-#: ../../include/enotify.php:269
+#: ../../include/enotify.php:279
#, php-format
msgid "Please visit %s to approve or reject the suggestion."
msgstr "Bitte besuche %s um den Vorschlag zu akzeptieren oder abzulehnen."
-#: ../../include/ItemObject.php:88 ../../mod/photos.php:960
+#: ../../include/ItemObject.php:88 ../../mod/photos.php:952
msgid "Private Message"
msgstr "Private Nachricht"
#: ../../include/ItemObject.php:95 ../../include/page_widgets.php:8
-#: ../../mod/webpages.php:98 ../../mod/settings.php:710 ../../mod/menu.php:55
-#: ../../mod/layouts.php:89 ../../mod/editlayout.php:100
-#: ../../mod/editwebpage.php:119 ../../mod/blocks.php:92
-#: ../../mod/editpost.php:94 ../../mod/editblock.php:114
+#: ../../mod/webpages.php:101 ../../mod/settings.php:713 ../../mod/menu.php:55
+#: ../../mod/layouts.php:102 ../../mod/editlayout.php:100
+#: ../../mod/editwebpage.php:119 ../../mod/blocks.php:93
+#: ../../mod/editpost.php:97 ../../mod/editblock.php:114
msgid "Edit"
msgstr "Bearbeiten"
-#: ../../include/ItemObject.php:107 ../../include/conversation.php:631
-#: ../../mod/settings.php:711 ../../mod/admin.php:677 ../../mod/group.php:182
-#: ../../mod/photos.php:1141 ../../mod/connections.php:351
+#: ../../include/ItemObject.php:107 ../../include/conversation.php:628
+#: ../../mod/settings.php:714 ../../mod/admin.php:690 ../../mod/group.php:182
+#: ../../mod/photos.php:1130 ../../mod/connections.php:374
#: ../../mod/filestorage.php:82
msgid "Delete"
msgstr "Löschen"
-#: ../../include/ItemObject.php:113 ../../include/conversation.php:630
+#: ../../include/ItemObject.php:113 ../../include/conversation.php:627
msgid "Select"
msgstr "Auswählen"
@@ -291,7 +297,7 @@ msgstr "Stern-Status umschalten"
msgid "starred"
msgstr "markiert"
-#: ../../include/ItemObject.php:160 ../../include/conversation.php:641
+#: ../../include/ItemObject.php:160 ../../include/conversation.php:638
msgid "Message is verified"
msgstr "Nachricht überprüft"
@@ -299,19 +305,19 @@ msgstr "Nachricht überprüft"
msgid "add tag"
msgstr "Schlagwort hinzufügen"
-#: ../../include/ItemObject.php:174 ../../mod/photos.php:1070
+#: ../../include/ItemObject.php:174 ../../mod/photos.php:1058
msgid "I like this (toggle)"
msgstr "Ich mag das (Umschalter)"
-#: ../../include/ItemObject.php:174 ../../include/taxonomy.php:249
+#: ../../include/ItemObject.php:174 ../../include/taxonomy.php:251
msgid "like"
msgstr "Gefällt-mir"
-#: ../../include/ItemObject.php:175 ../../mod/photos.php:1071
+#: ../../include/ItemObject.php:175 ../../mod/photos.php:1059
msgid "I don't like this (toggle)"
msgstr "Ich mag das nicht (Umschalter)"
-#: ../../include/ItemObject.php:175 ../../include/taxonomy.php:250
+#: ../../include/ItemObject.php:175 ../../include/taxonomy.php:252
msgid "dislike"
msgstr "Gefällt-mir-nicht"
@@ -333,110 +339,127 @@ msgid "to"
msgstr "zu"
#: ../../include/ItemObject.php:204
+msgid "via"
+msgstr "via"
+
+#: ../../include/ItemObject.php:205
msgid "Wall-to-Wall"
msgstr "Wall-to-Wall"
-#: ../../include/ItemObject.php:205
+#: ../../include/ItemObject.php:206
msgid "via Wall-To-Wall:"
msgstr "via Wall-To-Wall:"
-#: ../../include/ItemObject.php:215 ../../include/conversation.php:685
+#: ../../include/ItemObject.php:216 ../../include/conversation.php:682
#, php-format
msgid " from %s"
msgstr "von %s"
-#: ../../include/ItemObject.php:244 ../../include/conversation.php:704
-#: ../../include/conversation.php:1104 ../../mod/photos.php:1073
-#: ../../mod/message.php:303 ../../mod/message.php:466
+#: ../../include/ItemObject.php:219 ../../include/conversation.php:685
+#, php-format
+msgid "last edited: %s"
+msgstr "zuletzt bearbeitet: %s"
+
+#: ../../include/ItemObject.php:246 ../../include/conversation.php:702
+#: ../../include/conversation.php:1112 ../../mod/photos.php:1061
+#: ../../mod/message.php:332 ../../mod/message.php:516
#: ../../mod/editlayout.php:109 ../../mod/editwebpage.php:128
-#: ../../mod/editpost.php:103 ../../mod/editblock.php:123
+#: ../../mod/editpost.php:106 ../../mod/editblock.php:123
msgid "Please wait"
msgstr "Bitte warten"
-#: ../../include/ItemObject.php:265
+#: ../../include/ItemObject.php:267
#, php-format
msgid "%d comment"
msgid_plural "%d comments"
msgstr[0] "%d Kommentar"
msgstr[1] "%d Kommentare"
-#: ../../include/ItemObject.php:266 ../../include/js_strings.php:7
+#: ../../include/ItemObject.php:268 ../../include/js_strings.php:7
#: ../../include/contact_widgets.php:148
msgid "show more"
msgstr "mehr zeigen"
-#: ../../include/ItemObject.php:525 ../../mod/photos.php:1089
-#: ../../mod/photos.php:1175
+#: ../../include/ItemObject.php:527 ../../mod/photos.php:1077
+#: ../../mod/photos.php:1164
msgid "This is you"
msgstr "Das bist du"
-#: ../../include/ItemObject.php:527 ../../include/js_strings.php:6
-#: ../../mod/photos.php:1091 ../../mod/photos.php:1177
+#: ../../include/ItemObject.php:529 ../../include/js_strings.php:6
+#: ../../mod/photos.php:1079 ../../mod/photos.php:1166
msgid "Comment"
msgstr "Kommentar"
-#: ../../include/ItemObject.php:528 ../../mod/events.php:458
-#: ../../mod/thing.php:190 ../../mod/invite.php:153 ../../mod/setup.php:283
-#: ../../mod/setup.php:326 ../../mod/settings.php:648
-#: ../../mod/settings.php:760 ../../mod/settings.php:788
-#: ../../mod/settings.php:812 ../../mod/settings.php:883
-#: ../../mod/settings.php:1051 ../../mod/connect.php:96
+#: ../../include/ItemObject.php:530 ../../mod/events.php:458
+#: ../../mod/thing.php:190 ../../mod/invite.php:154 ../../mod/setup.php:302
+#: ../../mod/setup.php:345 ../../mod/settings.php:651
+#: ../../mod/settings.php:763 ../../mod/settings.php:791
+#: ../../mod/settings.php:815 ../../mod/settings.php:886
+#: ../../mod/settings.php:1054 ../../mod/connect.php:96
#: ../../mod/sources.php:83 ../../mod/sources.php:110 ../../mod/admin.php:418
-#: ../../mod/admin.php:670 ../../mod/admin.php:810 ../../mod/admin.php:1009
-#: ../../mod/admin.php:1096 ../../mod/group.php:87 ../../mod/photos.php:693
-#: ../../mod/photos.php:787 ../../mod/photos.php:1052
-#: ../../mod/photos.php:1092 ../../mod/photos.php:1178
-#: ../../mod/message.php:304 ../../mod/message.php:465
-#: ../../mod/connections.php:428 ../../mod/profiles.php:529
+#: ../../mod/admin.php:683 ../../mod/admin.php:823 ../../mod/admin.php:1022
+#: ../../mod/admin.php:1109 ../../mod/group.php:87 ../../mod/photos.php:685
+#: ../../mod/photos.php:779 ../../mod/photos.php:1040
+#: ../../mod/photos.php:1080 ../../mod/photos.php:1167
+#: ../../mod/message.php:333 ../../mod/message.php:515
+#: ../../mod/connections.php:452 ../../mod/profiles.php:529
#: ../../mod/import.php:385 ../../mod/crepair.php:166 ../../mod/poke.php:166
#: ../../mod/fsuggest.php:108 ../../mod/mood.php:137
-#: ../../view/theme/redbasic/php/config.php:46
-#: ../../view/theme/redstrap/php/config.php:131
+#: ../../view/theme/redbasic/php/config.php:85
+#: ../../view/theme/apw/php/config.php:231
+#: ../../view/theme/blogga/view/theme/blog/config.php:67
+#: ../../view/theme/blogga/php/config.php:67
msgid "Submit"
msgstr "Bestätigen"
-#: ../../include/ItemObject.php:529
+#: ../../include/ItemObject.php:531
msgid "Bold"
msgstr "Fett"
-#: ../../include/ItemObject.php:530
+#: ../../include/ItemObject.php:532
msgid "Italic"
msgstr "Kursiv"
-#: ../../include/ItemObject.php:531
+#: ../../include/ItemObject.php:533
msgid "Underline"
msgstr "Unterstrichen"
-#: ../../include/ItemObject.php:532
+#: ../../include/ItemObject.php:534
msgid "Quote"
msgstr "Zitat"
-#: ../../include/ItemObject.php:533
+#: ../../include/ItemObject.php:535
msgid "Code"
msgstr "Code"
-#: ../../include/ItemObject.php:534
+#: ../../include/ItemObject.php:536
msgid "Image"
msgstr "Bild"
-#: ../../include/ItemObject.php:535
+#: ../../include/ItemObject.php:537
msgid "Link"
msgstr "Link"
-#: ../../include/ItemObject.php:536
+#: ../../include/ItemObject.php:538
msgid "Video"
msgstr "Video"
-#: ../../include/ItemObject.php:537 ../../include/conversation.php:1124
-#: ../../mod/photos.php:1093 ../../mod/editlayout.php:129
-#: ../../mod/editwebpage.php:150 ../../mod/editpost.php:123
-#: ../../mod/editblock.php:144
+#: ../../include/ItemObject.php:539 ../../include/conversation.php:1075
+#: ../../mod/webpages.php:105 ../../mod/photos.php:1081
+#: ../../mod/editlayout.php:129 ../../mod/editwebpage.php:150
+#: ../../mod/editpost.php:126 ../../mod/editblock.php:144
msgid "Preview"
msgstr "Vorschau"
+#: ../../include/ItemObject.php:542 ../../include/conversation.php:1139
+#: ../../mod/message.php:338 ../../mod/message.php:521
+#: ../../mod/editpost.php:134
+msgid "Encrypt text"
+msgstr "Text verschlüsseln"
+
#: ../../include/Contact.php:87 ../../include/contact_widgets.php:23
-#: ../../mod/match.php:58 ../../mod/suggest.php:56 ../../mod/directory.php:183
-#: ../../boot.php:1710
+#: ../../mod/match.php:58 ../../mod/suggest.php:56 ../../mod/directory.php:198
+#: ../../boot.php:1741
msgid "Connect"
msgstr "Verbinden"
@@ -448,33 +471,33 @@ msgstr "Neues Fenster"
msgid "Open the selected location in a different window or browser tab"
msgstr "Öffne die markierte Adresse in einem neuen Browser Fenster oder Tab"
-#: ../../include/Contact.php:492 ../../include/conversation.php:932
+#: ../../include/Contact.php:524 ../../include/conversation.php:930
msgid "Poke"
msgstr "Anstupsen"
-#: ../../include/Contact.php:493 ../../include/conversation.php:926
+#: ../../include/Contact.php:525 ../../include/conversation.php:924
msgid "View Status"
msgstr "Status ansehen"
-#: ../../include/Contact.php:494 ../../include/nav.php:75
-#: ../../include/conversation.php:927 ../../mod/connections.php:304
-#: ../../mod/connections.php:418
+#: ../../include/Contact.php:526 ../../include/nav.php:76
+#: ../../include/conversation.php:925 ../../mod/connections.php:327
+#: ../../mod/connections.php:441
msgid "View Profile"
msgstr "Profil ansehen"
-#: ../../include/Contact.php:495 ../../include/conversation.php:928
+#: ../../include/Contact.php:527 ../../include/conversation.php:926
msgid "View Photos"
msgstr "Fotos ansehen"
-#: ../../include/Contact.php:496
+#: ../../include/Contact.php:528
msgid "Network Posts"
msgstr "Netzwerkbeiträge"
-#: ../../include/Contact.php:497 ../../include/conversation.php:930
+#: ../../include/Contact.php:529 ../../include/conversation.php:928
msgid "Edit Contact"
msgstr "Kontakt bearbeiten"
-#: ../../include/Contact.php:498 ../../include/conversation.php:931
+#: ../../include/Contact.php:530 ../../include/conversation.php:929
msgid "Send PM"
msgstr "Sende PN"
@@ -538,8 +561,8 @@ msgstr "OStatus"
msgid "RSS/Atom"
msgstr "RSS/Atom"
-#: ../../include/contact_selectors.php:77 ../../mod/admin.php:673
-#: ../../mod/admin.php:682 ../../boot.php:1438
+#: ../../include/contact_selectors.php:77 ../../mod/admin.php:686
+#: ../../mod/admin.php:695 ../../boot.php:1461
msgid "Email"
msgstr "E-Mail"
@@ -658,7 +681,7 @@ msgid "Finishes:"
msgstr "Endet:"
#: ../../include/event.php:40 ../../include/bb2diaspora.php:455
-#: ../../mod/events.php:450 ../../mod/directory.php:158 ../../boot.php:1760
+#: ../../mod/events.php:450 ../../mod/directory.php:173 ../../boot.php:1791
msgid "Location:"
msgstr "Ort:"
@@ -666,6 +689,14 @@ msgstr "Ort:"
msgid "General Features"
msgstr "Allgemeine Funktionen"
+#: ../../include/features.php:23
+msgid "Content Expiration"
+msgstr "Verfall von Inhalten"
+
+#: ../../include/features.php:23
+msgid "Remove posts/comments and/or private messages at a future time"
+msgstr "Lösche Beiträge, Kommentare und/oder private Nachrichten automatisch zu einem zukünftigen Datum."
+
#: ../../include/features.php:24
msgid "Multiple Profiles"
msgstr "Mehrfachprofile"
@@ -694,7 +725,7 @@ msgstr "Aktiviere Fotoalbum mit erweiterten Funktionen"
msgid "Extended Identity Sharing"
msgstr "Erweitertes Teilen von Identitäten"
-#: ../../include/features.php:28 ../../include/js_strings.php:28
+#: ../../include/features.php:28 ../../include/js_strings.php:30
msgid " "
msgstr " "
@@ -736,7 +767,7 @@ msgstr "Voransicht"
msgid "Allow previewing posts and comments before publishing them"
msgstr "Erlaube Voransicht von Beiträgen und Kommentaren vor Veröffentlichung"
-#: ../../include/features.php:38 ../../mod/settings.php:118
+#: ../../include/features.php:38 ../../mod/settings.php:120
#: ../../mod/sources.php:67
msgid "Channel Sources"
msgstr "Kanal Quellen"
@@ -745,124 +776,124 @@ msgstr "Kanal Quellen"
msgid "Automatically import channel content from other channels or feeds"
msgstr "Importiere automatisch Inhalte für diesen Kanal von anderen Kanälen oder Feeds."
-#: ../../include/features.php:43
+#: ../../include/features.php:39
+msgid "Even More Encryption"
+msgstr "Noch mehr Verschlüsselung"
+
+#: ../../include/features.php:39
+msgid "Allow encryption of content end-to-end with a shared secret key"
+msgstr "Erlaube Ende-zu-Ende Verschlüsselung von Inhalten, mit einem geteilten geheimen Schlüssel"
+
+#: ../../include/features.php:44
msgid "Network and Stream Filtering"
msgstr "Netzwerk- und Stream-Filter"
-#: ../../include/features.php:44
+#: ../../include/features.php:45
msgid "Search by Date"
msgstr "Suche nach Datum"
-#: ../../include/features.php:44
+#: ../../include/features.php:45
msgid "Ability to select posts by date ranges"
msgstr "Möglichkeit, Beiträge nach Zeiträumen auszuwählen"
-#: ../../include/features.php:45
+#: ../../include/features.php:46
msgid "Collections Filter"
msgstr "Filter für Sammlung"
-#: ../../include/features.php:45
+#: ../../include/features.php:46
msgid "Enable widget to display Network posts only from selected collections"
msgstr "Aktiviere nur Netzwerk-Beiträge von ausgewählten Sammlungen"
-#: ../../include/features.php:46 ../../mod/network.php:173
-#: ../../mod/search.php:17
+#: ../../include/features.php:47 ../../mod/search.php:17
+#: ../../mod/network.php:173
msgid "Saved Searches"
msgstr "Gesicherte Suchanfragen"
-#: ../../include/features.php:46
+#: ../../include/features.php:47
msgid "Save search terms for re-use"
msgstr "Gesicherte Suchbegriffe zur Wiederverwendung"
-#: ../../include/features.php:47
+#: ../../include/features.php:48
msgid "Network Personal Tab"
msgstr "Persönlicher Netzwerkreiter"
-#: ../../include/features.php:47
+#: ../../include/features.php:48
msgid "Enable tab to display only Network posts that you've interacted on"
msgstr "Aktiviere Reiter nur für die Netzwerk-Beiträge, mit denen Du interagiert hast"
-#: ../../include/features.php:48
+#: ../../include/features.php:49
msgid "Network New Tab"
msgstr "Netzwerkreiter Neu"
-#: ../../include/features.php:48
+#: ../../include/features.php:49
msgid "Enable tab to display all new Network activity"
msgstr "Aktiviere Reiter, um alle neuen Netzwerkaktivitäten zu zeigen"
-#: ../../include/features.php:49
+#: ../../include/features.php:50
msgid "Affinity Tool"
msgstr "Beziehungs-Tool"
-#: ../../include/features.php:49
+#: ../../include/features.php:50
msgid "Filter stream activity by depth of relationships"
msgstr "Filter Aktivitätenstream nach Tiefe der Beziehung"
-#: ../../include/features.php:54
+#: ../../include/features.php:55
msgid "Post/Comment Tools"
msgstr "Beitrag-/Kommentar-Tools"
-#: ../../include/features.php:55
-msgid "Multiple Deletion"
-msgstr "Mehrfachlöschung"
-
-#: ../../include/features.php:55
-msgid "Select and delete multiple posts/comments at once"
-msgstr "Mehrfachlöschung und -auswahl von Beiträgen/Kommentaren in einem Rutsch"
-
-#: ../../include/features.php:56
+#: ../../include/features.php:57
msgid "Edit Sent Posts"
msgstr "Bearbeite gesendete Beiträge"
-#: ../../include/features.php:56
+#: ../../include/features.php:57
msgid "Edit and correct posts and comments after sending"
msgstr "Bearbeite und korrigiere Beiträge und Kommentare nach dem Senden"
-#: ../../include/features.php:57
+#: ../../include/features.php:58
msgid "Tagging"
msgstr "Verschlagworten"
-#: ../../include/features.php:57
+#: ../../include/features.php:58
msgid "Ability to tag existing posts"
msgstr "Möglichkeit, um existierende Beiträge zu verschlagworten"
-#: ../../include/features.php:58
+#: ../../include/features.php:59
msgid "Post Categories"
msgstr "Beitrags-Kategorien"
-#: ../../include/features.php:58
+#: ../../include/features.php:59
msgid "Add categories to your posts"
msgstr "Kategorien für Beiträge"
-#: ../../include/features.php:59 ../../include/contact_widgets.php:76
+#: ../../include/features.php:60 ../../include/contact_widgets.php:76
msgid "Saved Folders"
msgstr "Gesicherte Ordner"
-#: ../../include/features.php:59
+#: ../../include/features.php:60
msgid "Ability to file posts under folders"
msgstr "Möglichkeit, Beiträge in Verzeichnissen zu sammeln"
-#: ../../include/features.php:60
+#: ../../include/features.php:61
msgid "Dislike Posts"
msgstr "Gefällt-mir-nicht Beiträge"
-#: ../../include/features.php:60
+#: ../../include/features.php:61
msgid "Ability to dislike posts/comments"
msgstr "Möglichkeit für Gefällt-mir-nicht für Beiträge/Kommentare"
-#: ../../include/features.php:61
+#: ../../include/features.php:62
msgid "Star Posts"
msgstr "Beiträge mit Sternchen versehen"
-#: ../../include/features.php:61
+#: ../../include/features.php:62
msgid "Ability to mark special posts with a star indicator"
msgstr "Möglichkeit, spezielle Beiträge mit Sternchen-Symbol zu markieren"
-#: ../../include/features.php:62
+#: ../../include/features.php:63
msgid "Tag Cloud"
msgstr "Tag Wolke"
-#: ../../include/features.php:62
+#: ../../include/features.php:63
msgid "Provide a personal tag cloud on your channel page"
msgstr "Persönliche Schlagwort-Wolke für deine Kanal-Seite anlegen"
@@ -877,7 +908,7 @@ msgstr "Ein gelöschte Gruppe mit diesem Namen wurde gefunden. Existierende Zuga
msgid "Default privacy group for new contacts"
msgstr "Standard-Privatsphärengruppe für neue Kontakte"
-#: ../../include/group.php:242
+#: ../../include/group.php:242 ../../mod/admin.php:695
msgid "All Channels"
msgstr "Alle Kanäle"
@@ -895,7 +926,7 @@ msgstr "Bearbeite Sammlungen"
#: ../../include/group.php:287
msgid "Create a new collection"
-msgstr "Erzeuge neue Sammlung"
+msgstr "Neue Sammlung erzeugen"
#: ../../include/group.php:288
msgid "Channels not in any collection"
@@ -925,72 +956,80 @@ msgstr "Kennwörter stimmen nicht überein"
msgid "everybody"
msgstr "alle"
+#: ../../include/js_strings.php:12
+msgid "Secret Passphrase"
+msgstr "geheime Passwort-Phrase"
+
#: ../../include/js_strings.php:13
+msgid "Passphrase hint"
+msgstr "Hinweis zur Phrase"
+
+#: ../../include/js_strings.php:15
msgid "timeago.prefixAgo"
msgstr "timeago.prefixAgo"
-#: ../../include/js_strings.php:14
+#: ../../include/js_strings.php:16
msgid "timeago.suffixAgo"
msgstr "timeago.suffixAgo"
-#: ../../include/js_strings.php:15
+#: ../../include/js_strings.php:17
msgid "ago"
msgstr "her"
-#: ../../include/js_strings.php:16
+#: ../../include/js_strings.php:18
msgid "from now"
msgstr "von jetzt"
-#: ../../include/js_strings.php:17
+#: ../../include/js_strings.php:19
msgid "less than a minute"
msgstr "weniger als eine Minute"
-#: ../../include/js_strings.php:18
+#: ../../include/js_strings.php:20
msgid "about a minute"
msgstr "ungefähr eine Minute"
-#: ../../include/js_strings.php:19
+#: ../../include/js_strings.php:21
#, php-format
msgid "%d minutes"
msgstr "%d Minuten"
-#: ../../include/js_strings.php:20
+#: ../../include/js_strings.php:22
msgid "about an hour"
msgstr "ungefähr eine Stunde"
-#: ../../include/js_strings.php:21
+#: ../../include/js_strings.php:23
#, php-format
msgid "about %d hours"
msgstr "ungefähr %d Stunden"
-#: ../../include/js_strings.php:22
+#: ../../include/js_strings.php:24
msgid "a day"
msgstr "ein Tag"
-#: ../../include/js_strings.php:23
+#: ../../include/js_strings.php:25
#, php-format
msgid "%d days"
msgstr "%d Tage"
-#: ../../include/js_strings.php:24
+#: ../../include/js_strings.php:26
msgid "about a month"
msgstr "ungefähr ein Monat"
-#: ../../include/js_strings.php:25
+#: ../../include/js_strings.php:27
#, php-format
msgid "%d months"
msgstr "%d Monate"
-#: ../../include/js_strings.php:26
+#: ../../include/js_strings.php:28
msgid "about a year"
msgstr "ungefähr ein Jahr"
-#: ../../include/js_strings.php:27
+#: ../../include/js_strings.php:29
#, php-format
msgid "%d years"
msgstr "%d Jahre"
-#: ../../include/js_strings.php:29
+#: ../../include/js_strings.php:31
msgid "timeago.numbers"
msgstr "timeago.numbers"
@@ -1002,11 +1041,11 @@ msgstr "Kein Empfänger angegeben"
msgid "[no subject]"
msgstr "[no subject]"
-#: ../../include/message.php:38
+#: ../../include/message.php:42
msgid "Unable to determine sender."
msgstr "Kann Absender nicht bestimmen."
-#: ../../include/message.php:138
+#: ../../include/message.php:143
msgid "Stored post could not be verified."
msgstr "Gespeicherter Beitrag konnten nicht überprüft werden."
@@ -1015,7 +1054,7 @@ msgid "view full size"
msgstr "In Vollbildansicht anschauen"
#: ../../include/photo/photo_driver.php:609 ../../include/photos.php:51
-#: ../../mod/photos.php:97 ../../mod/photos.php:772 ../../mod/photos.php:794
+#: ../../mod/photos.php:97 ../../mod/photos.php:764 ../../mod/photos.php:786
#: ../../mod/profile_photo.php:88 ../../mod/profile_photo.php:235
#: ../../mod/profile_photo.php:346
msgid "Profile Photos"
@@ -1026,12 +1065,12 @@ msgstr "Profilfotos"
msgid "Profile"
msgstr "Profil"
-#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1059
+#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1062
msgid "Full Name:"
msgstr "Voller Name:"
-#: ../../include/profile_advanced.php:17 ../../mod/directory.php:160
-#: ../../boot.php:1762
+#: ../../include/profile_advanced.php:17 ../../mod/directory.php:175
+#: ../../boot.php:1793
msgid "Gender:"
msgstr "Geschlecht:"
@@ -1051,8 +1090,8 @@ msgstr "Geburtstag:"
msgid "Age:"
msgstr "Alter:"
-#: ../../include/profile_advanced.php:37 ../../mod/directory.php:162
-#: ../../boot.php:1763
+#: ../../include/profile_advanced.php:37 ../../mod/directory.php:177
+#: ../../boot.php:1794
msgid "Status:"
msgstr "Status:"
@@ -1065,8 +1104,8 @@ msgstr "für %1$d %2$s"
msgid "Sexual Preference:"
msgstr "Sexuelle Orientierung:"
-#: ../../include/profile_advanced.php:48 ../../mod/directory.php:164
-#: ../../boot.php:1764
+#: ../../include/profile_advanced.php:48 ../../mod/directory.php:179
+#: ../../boot.php:1795
msgid "Homepage:"
msgstr "Homepage:"
@@ -1086,7 +1125,7 @@ msgstr "Politische Ansichten:"
msgid "Religion:"
msgstr "Religion:"
-#: ../../include/profile_advanced.php:58 ../../mod/directory.php:166
+#: ../../include/profile_advanced.php:58 ../../mod/directory.php:181
msgid "About:"
msgstr "Über:"
@@ -1134,352 +1173,347 @@ msgstr "Arbeit/Anstellung:"
msgid "School/education:"
msgstr "Schule/Ausbildung:"
-#: ../../include/text.php:309
+#: ../../include/text.php:312
msgid "prev"
msgstr "vorherige"
-#: ../../include/text.php:311
+#: ../../include/text.php:314
msgid "first"
msgstr "erste"
-#: ../../include/text.php:340
+#: ../../include/text.php:343
msgid "last"
msgstr "letzte"
-#: ../../include/text.php:343
+#: ../../include/text.php:346
msgid "next"
msgstr "nächste"
-#: ../../include/text.php:355
+#: ../../include/text.php:358
msgid "older"
msgstr "älter"
-#: ../../include/text.php:357
+#: ../../include/text.php:360
msgid "newer"
msgstr "neuer"
-#: ../../include/text.php:648
+#: ../../include/text.php:651
msgid "No connections"
msgstr "Keine Verbindungen"
-#: ../../include/text.php:659
+#: ../../include/text.php:662
#, php-format
msgid "%d Connection"
msgid_plural "%d Connections"
msgstr[0] "%d Verbindung"
msgstr[1] "%d Verbindungen"
-#: ../../include/text.php:671
+#: ../../include/text.php:674
msgid "View Connections"
msgstr "Zeige Verbindungen"
-#: ../../include/text.php:729 ../../include/text.php:730
-#: ../../include/nav.php:130 ../../mod/search.php:96
+#: ../../include/text.php:733 ../../include/nav.php:135
+#: ../../mod/search.php:96
msgid "Search"
msgstr "Suche"
-#: ../../include/text.php:732 ../../mod/filer.php:36
+#: ../../include/text.php:735 ../../mod/filer.php:36
msgid "Save"
msgstr "Speichern"
-#: ../../include/text.php:770
+#: ../../include/text.php:773
msgid "poke"
msgstr "anstupsen"
-#: ../../include/text.php:770 ../../include/conversation.php:236
+#: ../../include/text.php:773 ../../include/conversation.php:236
msgid "poked"
msgstr "stupste"
-#: ../../include/text.php:771
+#: ../../include/text.php:774
msgid "ping"
msgstr "anpingen"
-#: ../../include/text.php:771
+#: ../../include/text.php:774
msgid "pinged"
msgstr "pingte"
-#: ../../include/text.php:772
+#: ../../include/text.php:775
msgid "prod"
msgstr "knuffen"
-#: ../../include/text.php:772
+#: ../../include/text.php:775
msgid "prodded"
msgstr "knuffte"
-#: ../../include/text.php:773
+#: ../../include/text.php:776
msgid "slap"
msgstr "ohrfeigen"
-#: ../../include/text.php:773
+#: ../../include/text.php:776
msgid "slapped"
msgstr "ohrfeigte"
-#: ../../include/text.php:774
+#: ../../include/text.php:777
msgid "finger"
msgstr "befummeln"
-#: ../../include/text.php:774
+#: ../../include/text.php:777
msgid "fingered"
msgstr "befummelte"
-#: ../../include/text.php:775
+#: ../../include/text.php:778
msgid "rebuff"
msgstr "eine Abfuhr erteilen"
-#: ../../include/text.php:775
+#: ../../include/text.php:778
msgid "rebuffed"
msgstr "abfuhrerteilte"
-#: ../../include/text.php:787
+#: ../../include/text.php:790
msgid "happy"
msgstr "glücklich"
-#: ../../include/text.php:788
+#: ../../include/text.php:791
msgid "sad"
msgstr "traurig"
-#: ../../include/text.php:789
+#: ../../include/text.php:792
msgid "mellow"
msgstr "sanft"
-#: ../../include/text.php:790
+#: ../../include/text.php:793
msgid "tired"
msgstr "müde"
-#: ../../include/text.php:791
+#: ../../include/text.php:794
msgid "perky"
msgstr "frech"
-#: ../../include/text.php:792
+#: ../../include/text.php:795
msgid "angry"
msgstr "sauer"
-#: ../../include/text.php:793
+#: ../../include/text.php:796
msgid "stupified"
msgstr "verblüfft"
-#: ../../include/text.php:794
+#: ../../include/text.php:797
msgid "puzzled"
msgstr "verwirrt"
-#: ../../include/text.php:795
+#: ../../include/text.php:798
msgid "interested"
msgstr "interessiert"
-#: ../../include/text.php:796
+#: ../../include/text.php:799
msgid "bitter"
msgstr "verbittert"
-#: ../../include/text.php:797
+#: ../../include/text.php:800
msgid "cheerful"
msgstr "fröhlich"
-#: ../../include/text.php:798
+#: ../../include/text.php:801
msgid "alive"
msgstr "lebendig"
-#: ../../include/text.php:799
+#: ../../include/text.php:802
msgid "annoyed"
msgstr "verärgert"
-#: ../../include/text.php:800
+#: ../../include/text.php:803
msgid "anxious"
msgstr "unruhig"
-#: ../../include/text.php:801
+#: ../../include/text.php:804
msgid "cranky"
msgstr "schrullig"
-#: ../../include/text.php:802
+#: ../../include/text.php:805
msgid "disturbed"
msgstr "verstört"
-#: ../../include/text.php:803
+#: ../../include/text.php:806
msgid "frustrated"
msgstr "frustriert"
-#: ../../include/text.php:804
+#: ../../include/text.php:807
msgid "motivated"
msgstr "motiviert"
-#: ../../include/text.php:805
+#: ../../include/text.php:808
msgid "relaxed"
msgstr "entspannt"
-#: ../../include/text.php:806
+#: ../../include/text.php:809
msgid "surprised"
msgstr "überrascht"
-#: ../../include/text.php:968
+#: ../../include/text.php:973
msgid "Monday"
msgstr "Montag"
-#: ../../include/text.php:968
+#: ../../include/text.php:973
msgid "Tuesday"
msgstr "Dienstag"
-#: ../../include/text.php:968
+#: ../../include/text.php:973
msgid "Wednesday"
msgstr "Mittwoch"
-#: ../../include/text.php:968
+#: ../../include/text.php:973
msgid "Thursday"
msgstr "Donnerstag"
-#: ../../include/text.php:968
+#: ../../include/text.php:973
msgid "Friday"
msgstr "Freitag"
-#: ../../include/text.php:968
+#: ../../include/text.php:973
msgid "Saturday"
msgstr "Samstag"
-#: ../../include/text.php:968
+#: ../../include/text.php:973
msgid "Sunday"
msgstr "Sonntag"
-#: ../../include/text.php:972
+#: ../../include/text.php:977
msgid "January"
msgstr "Januar"
-#: ../../include/text.php:972
+#: ../../include/text.php:977
msgid "February"
msgstr "Februar"
-#: ../../include/text.php:972
+#: ../../include/text.php:977
msgid "March"
msgstr "März"
-#: ../../include/text.php:972
+#: ../../include/text.php:977
msgid "April"
msgstr "April"
-#: ../../include/text.php:972
+#: ../../include/text.php:977
msgid "May"
msgstr "Mai"
-#: ../../include/text.php:972
+#: ../../include/text.php:977
msgid "June"
msgstr "Juni"
-#: ../../include/text.php:972
+#: ../../include/text.php:977
msgid "July"
msgstr "Juli"
-#: ../../include/text.php:972
+#: ../../include/text.php:977
msgid "August"
msgstr "August"
-#: ../../include/text.php:972
+#: ../../include/text.php:977
msgid "September"
msgstr "September"
-#: ../../include/text.php:972
+#: ../../include/text.php:977
msgid "October"
msgstr "Oktober"
-#: ../../include/text.php:972
+#: ../../include/text.php:977
msgid "November"
msgstr "November"
-#: ../../include/text.php:972
+#: ../../include/text.php:977
msgid "December"
msgstr "Dezember"
-#: ../../include/text.php:1062 ../../mod/message.php:405
+#: ../../include/text.php:1055 ../../mod/message.php:453
msgid "unknown.???"
msgstr "unbekannt.???"
-#: ../../include/text.php:1063 ../../mod/message.php:406
+#: ../../include/text.php:1056 ../../mod/message.php:454
msgid "bytes"
msgstr "Bytes"
-#: ../../include/text.php:1099 ../../include/text.php:1114
-#: ../../include/conversation.php:828
-msgid "remove"
-msgstr "lösche"
-
-#: ../../include/text.php:1099 ../../include/text.php:1114
-msgid "[remove]"
-msgstr "[lösche]"
-
-#: ../../include/text.php:1102 ../../include/conversation.php:675
-msgid "Categories:"
-msgstr "Kategorien:"
+#: ../../include/text.php:1091
+msgid "remove category"
+msgstr "Kategorie entfernen"
-#: ../../include/text.php:1117 ../../include/conversation.php:676
-msgid "Filed under:"
-msgstr "Gespeichert unter:"
+#: ../../include/text.php:1113
+msgid "remove from file"
+msgstr "aus der Datei entfernen"
-#: ../../include/text.php:1133 ../../include/text.php:1145
+#: ../../include/text.php:1167 ../../include/text.php:1179
msgid "Click to open/close"
msgstr "Klicke zum Öffnen/Schließen"
-#: ../../include/text.php:1316 ../../mod/events.php:326
+#: ../../include/text.php:1355 ../../mod/events.php:326
msgid "link to source"
msgstr "Link zum Originalbeitrag"
-#: ../../include/text.php:1335
+#: ../../include/text.php:1374
msgid "Select a page layout: "
msgstr "Ein Seiten-Layout auswählen"
-#: ../../include/text.php:1338 ../../include/text.php:1403
+#: ../../include/text.php:1377 ../../include/text.php:1442
msgid "default"
msgstr "Standard"
-#: ../../include/text.php:1374
+#: ../../include/text.php:1413
msgid "Page content type: "
msgstr "Content-Typ der Seite"
-#: ../../include/text.php:1415
+#: ../../include/text.php:1454
msgid "Select an alternate language"
msgstr "Wähle eine alternative Sprache"
-#: ../../include/text.php:1567 ../../include/conversation.php:117
+#: ../../include/text.php:1606 ../../include/conversation.php:117
#: ../../mod/like.php:103 ../../mod/subthread.php:89 ../../mod/tagger.php:45
msgid "photo"
msgstr "Foto"
-#: ../../include/text.php:1570 ../../include/conversation.php:120
+#: ../../include/text.php:1609 ../../include/conversation.php:120
#: ../../mod/tagger.php:49
msgid "event"
msgstr "Ereignis"
-#: ../../include/text.php:1573 ../../include/conversation.php:145
+#: ../../include/text.php:1612 ../../include/conversation.php:145
#: ../../mod/like.php:103 ../../mod/subthread.php:89 ../../mod/tagger.php:53
msgid "status"
msgstr "Status"
-#: ../../include/text.php:1575 ../../include/conversation.php:147
+#: ../../include/text.php:1614 ../../include/conversation.php:147
#: ../../mod/tagger.php:55
msgid "comment"
msgstr "Kommentar"
-#: ../../include/text.php:1580
+#: ../../include/text.php:1619
msgid "activity"
msgstr "Aktivität"
-#: ../../include/text.php:1842
+#: ../../include/text.php:1881
msgid "Design"
msgstr "Design"
-#: ../../include/text.php:1844
+#: ../../include/text.php:1883
msgid "Blocks"
msgstr "Blöcke"
-#: ../../include/text.php:1845
+#: ../../include/text.php:1884
msgid "Menus"
msgstr "Menüs"
-#: ../../include/text.php:1846
+#: ../../include/text.php:1885
msgid "Layouts"
msgstr "Layouts"
-#: ../../include/text.php:1847
+#: ../../include/text.php:1886
msgid "Pages"
msgstr "Seiten"
-#: ../../include/identity.php:14 ../../mod/item.php:1172
+#: ../../include/api.php:972
+msgid "Public Timeline"
+msgstr "Öffentliche Zeitleiste"
+
+#: ../../include/identity.php:14 ../../mod/item.php:1148
msgid "Unable to obtain identity information from database"
msgstr "Kann keine Identitäts-Informationen aus Datenbank beziehen"
@@ -1495,45 +1529,57 @@ msgstr "Name ist zu lang"
msgid "No account identifier"
msgstr "Keine Account-Kennung"
-#: ../../include/identity.php:98
+#: ../../include/identity.php:90
+msgid "Nickname is required."
+msgstr "Spitzname ist erforderlich."
+
+#: ../../include/identity.php:104
msgid ""
"Nickname has unsupported characters or is already being used on this site."
msgstr "Der Spitzname enthält nicht-unterstütze Zeichen oder wird bereits auf dieser Seite genutzt."
-#: ../../include/identity.php:157
+#: ../../include/identity.php:163
msgid "Unable to retrieve created identity"
msgstr "Kann die erstellte Identität nicht empfangen"
-#: ../../include/identity.php:214
+#: ../../include/identity.php:220
msgid "Default Profile"
msgstr "Standard-Profil"
-#: ../../include/identity.php:239 ../../include/profile_selectors.php:42
-#: ../../mod/network.php:387 ../../mod/connections.php:384
+#: ../../include/identity.php:245 ../../include/profile_selectors.php:42
+#: ../../mod/network.php:387 ../../mod/connections.php:407
msgid "Friends"
msgstr "Freunde"
-#: ../../include/bbcode.php:94 ../../include/bbcode.php:451
-#: ../../include/bbcode.php:454
+#: ../../include/bbcode.php:94 ../../include/bbcode.php:494
+#: ../../include/bbcode.php:497
msgid "Image/photo"
msgstr "Bild/Foto"
-#: ../../include/bbcode.php:141
+#: ../../include/bbcode.php:126 ../../include/bbcode.php:502
+msgid "Encrypted content"
+msgstr "Verschlüsselter Inhalt"
+
+#: ../../include/bbcode.php:173
#, php-format
msgid "%1$s wrote the following %2$s %3$s"
msgstr "%1$s schrieb den folgenden %2$s %3$s"
-#: ../../include/bbcode.php:143
+#: ../../include/bbcode.php:175
msgid "post"
msgstr "Beitrag"
-#: ../../include/bbcode.php:411 ../../include/bbcode.php:431
+#: ../../include/bbcode.php:454 ../../include/bbcode.php:474
msgid "$1 wrote:"
msgstr "$1 schrieb:"
-#: ../../include/bbcode.php:458 ../../include/bbcode.php:459
-msgid "Encrypted content"
-msgstr "Verschlüsselter Inhalt"
+#: ../../include/oembed.php:149
+msgid "Embedded content"
+msgstr "Eingebetteter Inhalt"
+
+#: ../../include/oembed.php:158
+msgid "Embedding disabled"
+msgstr "Einbetten ausgeschaltet"
#: ../../include/notify.php:23
msgid "created a new post"
@@ -1544,41 +1590,33 @@ msgstr "Neuer Beitrag wurde erzeugt"
msgid "commented on %s's post"
msgstr "hat %s's Beitrag kommentiert"
-#: ../../include/oembed.php:148
-msgid "Embedded content"
-msgstr "Eingebetteter Inhalt"
-
-#: ../../include/oembed.php:157
-msgid "Embedding disabled"
-msgstr "Einbetten ausgeschaltet"
-
#: ../../include/photos.php:15 ../../include/attach.php:102
#: ../../include/attach.php:133 ../../include/attach.php:189
#: ../../include/attach.php:204 ../../include/attach.php:237
#: ../../include/attach.php:251 ../../include/attach.php:272
-#: ../../include/attach.php:464 ../../include/items.php:3513
-#: ../../mod/common.php:43 ../../mod/events.php:134 ../../mod/invite.php:13
-#: ../../mod/invite.php:102 ../../mod/allfriends.php:10
-#: ../../mod/webpages.php:40 ../../mod/api.php:26 ../../mod/api.php:31
-#: ../../mod/lastpost.php:93 ../../mod/page.php:30 ../../mod/setup.php:181
-#: ../../mod/settings.php:625 ../../mod/viewconnections.php:33
-#: ../../mod/viewconnections.php:38 ../../mod/delegate.php:6
-#: ../../mod/sources.php:48 ../../mod/mitem.php:92 ../../mod/group.php:15
-#: ../../mod/photos.php:74 ../../mod/photos.php:662 ../../mod/viewsrc.php:12
-#: ../../mod/menu.php:40 ../../mod/message.php:204 ../../mod/layouts.php:27
-#: ../../mod/layouts.php:42 ../../mod/network.php:7 ../../mod/intro.php:50
-#: ../../mod/connections.php:174 ../../mod/profiles.php:163
-#: ../../mod/profiles.php:476 ../../mod/new_channel.php:66
-#: ../../mod/new_channel.php:97 ../../mod/filestorage.php:26
-#: ../../mod/manage.php:6 ../../mod/crepair.php:115
-#: ../../mod/editlayout.php:48 ../../mod/nogroup.php:25
-#: ../../mod/profile_photo.php:197 ../../mod/profile_photo.php:210
-#: ../../mod/editwebpage.php:42 ../../mod/editwebpage.php:64
-#: ../../mod/notifications.php:66 ../../mod/blocks.php:29
-#: ../../mod/blocks.php:44 ../../mod/editpost.php:13 ../../mod/poke.php:128
-#: ../../mod/channel.php:118 ../../mod/fsuggest.php:78
-#: ../../mod/editblock.php:48 ../../mod/item.php:171 ../../mod/item.php:179
-#: ../../mod/suggest.php:32 ../../mod/register.php:60 ../../mod/regmod.php:18
+#: ../../include/attach.php:464 ../../include/attach.php:539
+#: ../../include/items.php:3608 ../../mod/common.php:43
+#: ../../mod/events.php:134 ../../mod/invite.php:13 ../../mod/invite.php:102
+#: ../../mod/allfriends.php:10 ../../mod/webpages.php:40 ../../mod/api.php:26
+#: ../../mod/api.php:31 ../../mod/lastpost.php:93 ../../mod/page.php:30
+#: ../../mod/page.php:80 ../../mod/setup.php:200 ../../mod/settings.php:628
+#: ../../mod/viewconnections.php:33 ../../mod/viewconnections.php:38
+#: ../../mod/delegate.php:6 ../../mod/sources.php:48 ../../mod/mitem.php:92
+#: ../../mod/group.php:15 ../../mod/photos.php:74 ../../mod/photos.php:654
+#: ../../mod/viewsrc.php:12 ../../mod/menu.php:40 ../../mod/message.php:208
+#: ../../mod/layouts.php:27 ../../mod/layouts.php:42 ../../mod/network.php:7
+#: ../../mod/intro.php:50 ../../mod/connections.php:197
+#: ../../mod/profiles.php:163 ../../mod/profiles.php:476
+#: ../../mod/new_channel.php:66 ../../mod/new_channel.php:97
+#: ../../mod/filestorage.php:26 ../../mod/manage.php:6
+#: ../../mod/crepair.php:115 ../../mod/editlayout.php:48
+#: ../../mod/nogroup.php:25 ../../mod/profile_photo.php:197
+#: ../../mod/profile_photo.php:210 ../../mod/editwebpage.php:42
+#: ../../mod/editwebpage.php:64 ../../mod/notifications.php:66
+#: ../../mod/blocks.php:29 ../../mod/blocks.php:44 ../../mod/editpost.php:13
+#: ../../mod/poke.php:128 ../../mod/channel.php:123 ../../mod/fsuggest.php:78
+#: ../../mod/editblock.php:48 ../../mod/item.php:181 ../../mod/item.php:189
+#: ../../mod/suggest.php:32 ../../mod/register.php:68 ../../mod/regmod.php:18
#: ../../mod/mood.php:114 ../../index.php:178 ../../index.php:340
msgid "Permission denied."
msgstr "Zugang verweigert"
@@ -1600,12 +1638,12 @@ msgstr "Kann Bild nicht verarbeiten"
msgid "Photo storage failed."
msgstr "Foto speichern schlug fehl"
-#: ../../include/photos.php:288 ../../boot.php:2211
+#: ../../include/photos.php:288 ../../boot.php:2242
msgid "Photo Albums"
msgstr "Fotoalben"
-#: ../../include/photos.php:292 ../../mod/photos.php:810
-#: ../../mod/photos.php:1287
+#: ../../include/photos.php:292 ../../mod/photos.php:802
+#: ../../mod/photos.php:1276
msgid "Upload New Photos"
msgstr "Lade neue Fotos hoch"
@@ -1875,250 +1913,277 @@ msgstr "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen."
msgid "Path not available."
msgstr "Pfad nicht verfügbar."
-#: ../../include/nav.php:71 ../../include/nav.php:86 ../../boot.php:1435
+#: ../../include/attach.php:544
+msgid "Empty pathname"
+msgstr "leere Pfadangabe"
+
+#: ../../include/attach.php:562
+msgid "duplicate filename or path"
+msgstr "doppelter Dateiname oder Pfad"
+
+#: ../../include/attach.php:584
+msgid "Path not found."
+msgstr "Pfad nicht gefunden."
+
+#: ../../include/attach.php:628
+msgid "mkdir failed."
+msgstr "mkdir fehlgeschlagen."
+
+#: ../../include/attach.php:632
+msgid "database storage failed."
+msgstr "Speichern in der Datenbank fehlgeschlagen."
+
+#: ../../include/zot.php:542
+msgid "Invalid data packet"
+msgstr "Ungültiges Datenpaket"
+
+#: ../../include/zot.php:552
+msgid "Unable to verify channel signature"
+msgstr "Konnte die Signatur des Kanals nicht verifizieren"
+
+#: ../../include/zot.php:697
+#, php-format
+msgid "Unable to verify site signature for %s"
+msgstr "Kann die Signatur der Seite von %s nicht verifizieren"
+
+#: ../../include/nav.php:72 ../../include/nav.php:87 ../../boot.php:1458
msgid "Logout"
msgstr "Abmelden"
-#: ../../include/nav.php:71 ../../include/nav.php:86
+#: ../../include/nav.php:72 ../../include/nav.php:87
msgid "End this session"
msgstr "Beende diese Sitzung"
-#: ../../include/nav.php:74 ../../include/nav.php:116
-#: ../../include/nav.php:148
+#: ../../include/nav.php:75 ../../include/nav.php:121
msgid "Home"
msgstr "Home"
-#: ../../include/nav.php:74 ../../include/nav.php:148
+#: ../../include/nav.php:75
msgid "Your posts and conversations"
msgstr "Deine Beiträge und Unterhaltungen"
-#: ../../include/nav.php:75
+#: ../../include/nav.php:76
msgid "Your profile page"
msgstr "Deine Profilseite"
-#: ../../include/nav.php:77
+#: ../../include/nav.php:78
msgid "Edit Profiles"
msgstr "Profile bearbeiten"
-#: ../../include/nav.php:77
+#: ../../include/nav.php:78
msgid "Manage/Edit Profiles"
msgstr "Verwalte/Bearbeite Profile"
-#: ../../include/nav.php:78 ../../mod/fbrowser.php:25 ../../boot.php:2208
+#: ../../include/nav.php:79 ../../mod/fbrowser.php:25 ../../boot.php:2239
msgid "Photos"
msgstr "Fotos"
-#: ../../include/nav.php:78
+#: ../../include/nav.php:79
msgid "Your photos"
msgstr "Deine Bilder"
-#: ../../include/nav.php:84 ../../boot.php:1436
+#: ../../include/nav.php:85 ../../boot.php:1459
msgid "Login"
msgstr "Anmelden"
-#: ../../include/nav.php:84
+#: ../../include/nav.php:85
msgid "Sign in"
msgstr "Anmelden"
-#: ../../include/nav.php:100
+#: ../../include/nav.php:102
#, php-format
msgid "%s - click to logout"
msgstr "%s - Klick zum Abmelden"
-#: ../../include/nav.php:103
+#: ../../include/nav.php:107
msgid "Click to authenticate to your home hub"
msgstr "Klick zum Authentifizieren bei Deinem Heimat-Hub"
-#: ../../include/nav.php:116
+#: ../../include/nav.php:121
msgid "Home Page"
msgstr "Homepage"
-#: ../../include/nav.php:120 ../../mod/register.php:187 ../../boot.php:1411
+#: ../../include/nav.php:125 ../../mod/register.php:195 ../../boot.php:1435
msgid "Register"
msgstr "Registrieren"
-#: ../../include/nav.php:120
+#: ../../include/nav.php:125
msgid "Create an account"
msgstr "Erzeuge ein Konto"
-#: ../../include/nav.php:125 ../../mod/help.php:34
+#: ../../include/nav.php:130 ../../mod/help.php:45 ../../mod/help.php:49
msgid "Help"
msgstr "Hilfe"
-#: ../../include/nav.php:125
+#: ../../include/nav.php:130
msgid "Help and documentation"
msgstr "Hilfe und Dokumentation"
-#: ../../include/nav.php:128
+#: ../../include/nav.php:133
msgid "Apps"
msgstr "Apps"
-#: ../../include/nav.php:128
+#: ../../include/nav.php:133
msgid "Addon applications, utilities, games"
msgstr "Addon Programme, Helferlein, Spiele"
-#: ../../include/nav.php:130
+#: ../../include/nav.php:135
msgid "Search site content"
msgstr "Durchsuche Seiten-Inhalt"
-#: ../../include/nav.php:133 ../../mod/directory.php:210
+#: ../../include/nav.php:138 ../../mod/directory.php:225
msgid "Directory"
msgstr "Verzeichnis"
-#: ../../include/nav.php:133
+#: ../../include/nav.php:138
msgid "Channel Locator"
msgstr "Kanal-Anzeiger"
-#: ../../include/nav.php:144
+#: ../../include/nav.php:149
msgid "Matrix"
msgstr "Matrix"
-#: ../../include/nav.php:144
-msgid "Conversations from your grid"
-msgstr "Unterhaltungen von Deinem Netz"
+#: ../../include/nav.php:149
+msgid "Your matrix"
+msgstr "Deine Matrix"
-#: ../../include/nav.php:145
+#: ../../include/nav.php:150
msgid "See all matrix notifications"
msgstr "Alle Matrix-Benachrichtigungen ansehen"
-#: ../../include/nav.php:146
+#: ../../include/nav.php:151
msgid "Mark all matrix notifications seen"
msgstr "Markiere alle Matrix-Benachrichtigungen als angesehen"
-#: ../../include/nav.php:149
+#: ../../include/nav.php:153
+msgid "Channel Home"
+msgstr "Mein Kanal"
+
+#: ../../include/nav.php:153
+msgid "Channel home"
+msgstr "Mein Kanal"
+
+#: ../../include/nav.php:154
msgid "See all channel notifications"
msgstr "Alle Kanal-Benachrichtigungen ansehen"
-#: ../../include/nav.php:150
+#: ../../include/nav.php:155
msgid "Mark all channel notifications seen"
msgstr "Markiere alle Kanal-Benachrichtigungen als angesehen"
-#: ../../include/nav.php:153
+#: ../../include/nav.php:158
msgid "Intros"
msgstr "Vorstellungen"
-#: ../../include/nav.php:153 ../../mod/connections.php:561
+#: ../../include/nav.php:158 ../../mod/connections.php:585
msgid "New Connections"
msgstr "Neue Verbindungen"
-#: ../../include/nav.php:154
+#: ../../include/nav.php:159
msgid "See all channel introductions"
msgstr "Alle Kanal-Einladungen ansehen"
-#: ../../include/nav.php:157
+#: ../../include/nav.php:162
msgid "Notices"
msgstr "Benachrichtigungen"
-#: ../../include/nav.php:157 ../../mod/notifications.php:218
+#: ../../include/nav.php:162 ../../mod/notifications.php:218
msgid "Notifications"
msgstr "Benachrichtigungen"
-#: ../../include/nav.php:158
+#: ../../include/nav.php:163
msgid "See all notifications"
msgstr "Alle Benachrichtigungen ansehen"
-#: ../../include/nav.php:159
+#: ../../include/nav.php:164
msgid "Mark all system notifications seen"
msgstr "Markiere alle System-Benachrichtigungen als gesehen"
-#: ../../include/nav.php:161
+#: ../../include/nav.php:166
msgid "Mail"
msgstr "Mail"
-#: ../../include/nav.php:161
+#: ../../include/nav.php:166
msgid "Private mail"
msgstr "Persönliche Mail"
-#: ../../include/nav.php:162
+#: ../../include/nav.php:167
msgid "See all private messages"
msgstr "Alle persönlichen Nachrichten ansehen"
-#: ../../include/nav.php:163
+#: ../../include/nav.php:168
msgid "Mark all private messages seen"
msgstr "Markiere alle persönlichen Nachrichten als gesehen"
-#: ../../include/nav.php:164
+#: ../../include/nav.php:169
msgid "Inbox"
msgstr "Eingang"
-#: ../../include/nav.php:165
+#: ../../include/nav.php:170
msgid "Outbox"
msgstr "Ausgang"
-#: ../../include/nav.php:166 ../../mod/message.php:21
+#: ../../include/nav.php:171 ../../mod/message.php:24
msgid "New Message"
msgstr "Neue Nachricht"
-#: ../../include/nav.php:169 ../../mod/events.php:348 ../../boot.php:2219
+#: ../../include/nav.php:174 ../../mod/events.php:348 ../../boot.php:2250
msgid "Events"
msgstr "Veranstaltungen"
-#: ../../include/nav.php:169
+#: ../../include/nav.php:174
msgid "Event Calendar"
msgstr "Veranstaltungskalender"
-#: ../../include/nav.php:170
+#: ../../include/nav.php:175
msgid "See all events"
msgstr "Alle Ereignisse ansehen"
-#: ../../include/nav.php:171
+#: ../../include/nav.php:176
msgid "Mark all events seen"
msgstr "Markiere alle Ereignisse als gesehen"
-#: ../../include/nav.php:173
+#: ../../include/nav.php:178
msgid "Channel Select"
msgstr "Kanal-Auswahl"
-#: ../../include/nav.php:173
+#: ../../include/nav.php:178
msgid "Manage Your Channels"
msgstr "Verwalte Deine Kanäle"
-#: ../../include/nav.php:175 ../../mod/settings.php:129
-#: ../../mod/admin.php:769 ../../mod/admin.php:974
+#: ../../include/nav.php:180 ../../mod/settings.php:131
+#: ../../mod/admin.php:782 ../../mod/admin.php:987
msgid "Settings"
msgstr "Einstellungen"
-#: ../../include/nav.php:175
+#: ../../include/nav.php:180
msgid "Account/Channel Settings"
msgstr "Konto-/Kanal-Einstellungen"
-#: ../../include/nav.php:177 ../../mod/connections.php:667
+#: ../../include/nav.php:182 ../../mod/connections.php:691
msgid "Connections"
msgstr "Verbindungen"
-#: ../../include/nav.php:177
+#: ../../include/nav.php:182
msgid "Manage/Edit Friends and Connections"
msgstr "Verwalte/Bearbeite Freunde und Verbindungen"
-#: ../../include/nav.php:184 ../../mod/admin.php:111
+#: ../../include/nav.php:189 ../../mod/admin.php:111
msgid "Admin"
msgstr "Admin"
-#: ../../include/nav.php:184
+#: ../../include/nav.php:189
msgid "Site Setup and Configuration"
msgstr "Seiten-Einrichtung und -Konfiguration"
-#: ../../include/nav.php:207
+#: ../../include/nav.php:215
msgid "Nothing new here"
msgstr "Nichts Neues hier"
-#: ../../include/nav.php:212
+#: ../../include/nav.php:220
msgid "Please wait..."
msgstr "Bitte warten..."
-#: ../../include/zot.php:426
-msgid "Invalid data packet"
-msgstr "Ungültiges Datenpaket"
-
-#: ../../include/zot.php:436
-msgid "Unable to verify channel signature"
-msgstr "Konnte die Signatur des Kanals nicht verifizieren"
-
-#: ../../include/zot.php:582
-#, php-format
-msgid "Unable to verify site signature for %s"
-msgstr "Kann die Signatur der Seite von %s nicht verifizieren"
-
#: ../../include/account.php:23
msgid "Not a valid email address"
msgstr "Ungültige E-Mail-Adresse"
@@ -2175,15 +2240,282 @@ msgstr "Account bestätigt."
msgid "Registration revoked for %s"
msgstr "Registrierung für %s widerrufen"
-#: ../../include/auth.php:66
+#: ../../include/conversation.php:123
+msgid "channel"
+msgstr "Kanal"
+
+#: ../../include/conversation.php:161 ../../mod/like.php:134
+#, php-format
+msgid "%1$s likes %2$s's %3$s"
+msgstr "%1$s mag %2$s's %3$s"
+
+#: ../../include/conversation.php:164 ../../mod/like.php:136
+#, php-format
+msgid "%1$s doesn't like %2$s's %3$s"
+msgstr "%1$s mag %2$s's %3$s nicht"
+
+#: ../../include/conversation.php:201
+#, php-format
+msgid "%1$s is now connected with %2$s"
+msgstr "%1$s ist jetzt mit %2$s verbunden"
+
+#: ../../include/conversation.php:232
+#, php-format
+msgid "%1$s poked %2$s"
+msgstr "%1$s stupste %2$s"
+
+#: ../../include/conversation.php:254 ../../mod/mood.php:63
+#, php-format
+msgid "%1$s is currently %2$s"
+msgstr "%1$s ist momentan %2$s"
+
+#: ../../include/conversation.php:658
+#, php-format
+msgid "View %s's profile @ %s"
+msgstr "Schaue Dir %s's Profil auf %s an."
+
+#: ../../include/conversation.php:672
+msgid "Categories:"
+msgstr "Kategorien:"
+
+#: ../../include/conversation.php:673
+msgid "Filed under:"
+msgstr "Gespeichert unter:"
+
+#: ../../include/conversation.php:700
+msgid "View in context"
+msgstr "Im Zusammenhang anschauen"
+
+#: ../../include/conversation.php:826
+msgid "remove"
+msgstr "lösche"
+
+#: ../../include/conversation.php:830
+msgid "Loading..."
+msgstr "Lädt ..."
+
+#: ../../include/conversation.php:831
+msgid "Delete Selected Items"
+msgstr "Lösche die ausgewählten Elemente"
+
+#: ../../include/conversation.php:922
+msgid "View Source"
+msgstr "Quelle anzeigen"
+
+#: ../../include/conversation.php:923
+msgid "Follow Thread"
+msgstr "Unterhaltung folgen"
+
+#: ../../include/conversation.php:927
+msgid "Matrix Activity"
+msgstr "Matrix Aktivität"
+
+#: ../../include/conversation.php:992
+#, php-format
+msgid "%s likes this."
+msgstr "%s gefällt das."
+
+#: ../../include/conversation.php:992
+#, php-format
+msgid "%s doesn't like this."
+msgstr "%s gefällt das nicht."
+
+#: ../../include/conversation.php:996
+#, php-format
+msgid "<span %1$s>%2$d people</span> like this."
+msgid_plural "<span %1$s>%2$d people</span> like this."
+msgstr[0] ""
+msgstr[1] "<span %1$s>%2$d Personen</span> mögen dies."
+
+#: ../../include/conversation.php:998
+#, php-format
+msgid "<span %1$s>%2$d people</span> don't like this."
+msgid_plural "<span %1$s>%2$d people</span> don't like this."
+msgstr[0] ""
+msgstr[1] "<span %1$s>%2$d Personen</span> mögen dies nicht."
+
+#: ../../include/conversation.php:1004
+msgid "and"
+msgstr "und"
+
+#: ../../include/conversation.php:1007
+#, php-format
+msgid ", and %d other people"
+msgid_plural ", and %d other people"
+msgstr[0] ""
+msgstr[1] ", und %d andere"
+
+#: ../../include/conversation.php:1008
+#, php-format
+msgid "%s like this."
+msgstr "%s gefällt das."
+
+#: ../../include/conversation.php:1008
+#, php-format
+msgid "%s don't like this."
+msgstr "%s gefällt das nicht."
+
+#: ../../include/conversation.php:1058
+msgid "Visible to <strong>everybody</strong>"
+msgstr "Sichtbar für <strong>jeden</strong>"
+
+#: ../../include/conversation.php:1059 ../../mod/message.php:281
+#: ../../mod/message.php:417
+msgid "Please enter a link URL:"
+msgstr "Geben Sie eine URL ein:"
+
+#: ../../include/conversation.php:1060
+msgid "Please enter a video link/URL:"
+msgstr "Geben Sie einen Video-Link/URL ein:"
+
+#: ../../include/conversation.php:1061
+msgid "Please enter an audio link/URL:"
+msgstr "Geben Sie einen Audio-Link/URL ein:"
+
+#: ../../include/conversation.php:1062
+msgid "Tag term:"
+msgstr "Schlagwort:"
+
+#: ../../include/conversation.php:1063 ../../mod/filer.php:35
+msgid "Save to Folder:"
+msgstr "Speichern in Ordner:"
+
+#: ../../include/conversation.php:1064
+msgid "Where are you right now?"
+msgstr "Wo bist du jetzt grade?"
+
+#: ../../include/conversation.php:1065 ../../mod/message.php:282
+#: ../../mod/message.php:418 ../../mod/editpost.php:52
+msgid "Expires YYYY-MM-DD HH:MM"
+msgstr "Verfällt YYYY-MM-DD HH;MM"
+
+#: ../../include/conversation.php:1089 ../../mod/photos.php:1060
+msgid "Share"
+msgstr "Teilen"
+
+#: ../../include/conversation.php:1091
+msgid "Page link title"
+msgstr "Seitentitel-Link"
+
+#: ../../include/conversation.php:1093 ../../mod/message.php:329
+#: ../../mod/message.php:512 ../../mod/editlayout.php:101
+#: ../../mod/editwebpage.php:120 ../../mod/editpost.php:98
+#: ../../mod/editblock.php:115
+msgid "Upload photo"
+msgstr "Foto hochladen"
+
+#: ../../include/conversation.php:1094
+msgid "upload photo"
+msgstr "Foto hochladen"
+
+#: ../../include/conversation.php:1095 ../../mod/message.php:330
+#: ../../mod/message.php:513 ../../mod/editlayout.php:102
+#: ../../mod/editwebpage.php:121 ../../mod/editpost.php:99
+#: ../../mod/editblock.php:116
+msgid "Attach file"
+msgstr "Datei anhängen"
+
+#: ../../include/conversation.php:1096
+msgid "attach file"
+msgstr "Datei anfügen"
+
+#: ../../include/conversation.php:1097 ../../mod/message.php:331
+#: ../../mod/message.php:514 ../../mod/editlayout.php:103
+#: ../../mod/editwebpage.php:122 ../../mod/editpost.php:100
+#: ../../mod/editblock.php:117
+msgid "Insert web link"
+msgstr "Link einfügen"
+
+#: ../../include/conversation.php:1098
+msgid "web link"
+msgstr "Web-Link"
+
+#: ../../include/conversation.php:1099
+msgid "Insert video link"
+msgstr "Video-Link einfügen"
+
+#: ../../include/conversation.php:1100
+msgid "video link"
+msgstr "Video-Link"
+
+#: ../../include/conversation.php:1101
+msgid "Insert audio link"
+msgstr "Audio-Link einfügen"
+
+#: ../../include/conversation.php:1102
+msgid "audio link"
+msgstr "Audio-Link"
+
+#: ../../include/conversation.php:1103 ../../mod/editlayout.php:107
+#: ../../mod/editwebpage.php:126 ../../mod/editpost.php:104
+#: ../../mod/editblock.php:121
+msgid "Set your location"
+msgstr "Legen Sie Ihren Aufenthaltsort fest"
+
+#: ../../include/conversation.php:1104
+msgid "set location"
+msgstr "Ort festlegen"
+
+#: ../../include/conversation.php:1105 ../../mod/editlayout.php:108
+#: ../../mod/editwebpage.php:127 ../../mod/editpost.php:105
+#: ../../mod/editblock.php:122
+msgid "Clear browser location"
+msgstr "Browser-Standort löschen"
+
+#: ../../include/conversation.php:1106
+msgid "clear location"
+msgstr "Standort löschen"
+
+#: ../../include/conversation.php:1108 ../../mod/editlayout.php:121
+#: ../../mod/editwebpage.php:142 ../../mod/editpost.php:118
+#: ../../mod/editblock.php:136
+msgid "Set title"
+msgstr "Titel festlegen"
+
+#: ../../include/conversation.php:1111 ../../mod/editlayout.php:123
+#: ../../mod/editwebpage.php:144 ../../mod/editpost.php:120
+#: ../../mod/editblock.php:138
+msgid "Categories (comma-separated list)"
+msgstr "Kategorien (Kommagetrennte Liste)"
+
+#: ../../include/conversation.php:1113 ../../mod/editlayout.php:110
+#: ../../mod/editwebpage.php:129 ../../mod/editpost.php:107
+#: ../../mod/editblock.php:124
+msgid "Permission settings"
+msgstr "Berechtigungs-Einstellungen"
+
+#: ../../include/conversation.php:1114
+msgid "permissions"
+msgstr "Berechtigungen"
+
+#: ../../include/conversation.php:1122 ../../mod/editlayout.php:118
+#: ../../mod/editwebpage.php:137 ../../mod/editpost.php:115
+#: ../../mod/editblock.php:133
+msgid "Public post"
+msgstr "Öffentlicher Beitrag"
+
+#: ../../include/conversation.php:1124 ../../mod/editlayout.php:124
+#: ../../mod/editwebpage.php:145 ../../mod/editpost.php:121
+#: ../../mod/editblock.php:139
+msgid "Example: bob@example.com, mary@example.com"
+msgstr "Beispiel: bob@example.com, mary@example.com"
+
+#: ../../include/conversation.php:1137 ../../mod/message.php:336
+#: ../../mod/message.php:519 ../../mod/editlayout.php:134
+#: ../../mod/editwebpage.php:155 ../../mod/editpost.php:132
+#: ../../mod/editblock.php:149
+msgid "Set expiration date"
+msgstr "Verfallsdatum setzen"
+
+#: ../../include/auth.php:67
msgid "Logged out."
msgstr "Ausgeloggt."
-#: ../../include/auth.php:178
+#: ../../include/auth.php:179
msgid "Failed authentication"
msgstr "Authentifizierung fehlgeschlagen"
-#: ../../include/auth.php:187
+#: ../../include/auth.php:188
msgid "Login failed."
msgstr "Login fehlgeschlagen."
@@ -2227,8 +2559,8 @@ msgstr "Verbinden/Folgen"
msgid "Examples: Robert Morgenstein, Fishing"
msgstr "Beispiele: Robert Morgenstein, Angeln"
-#: ../../include/contact_widgets.php:48 ../../mod/connections.php:673
-#: ../../mod/directory.php:206 ../../mod/directory.php:211
+#: ../../include/contact_widgets.php:48 ../../mod/connections.php:697
+#: ../../mod/directory.php:221 ../../mod/directory.php:226
msgid "Find"
msgstr "Finde"
@@ -2248,7 +2580,7 @@ msgstr "Lade Freunde ein"
msgid "Everything"
msgstr "Alles"
-#: ../../include/contact_widgets.php:110
+#: ../../include/contact_widgets.php:110 ../../include/widgets.php:26
msgid "Categories"
msgstr "Kategorien"
@@ -2376,291 +2708,55 @@ msgid ""
"Extremely advanced. Leave this alone unless you know what you are doing"
msgstr "Sehr fortgeschritten. Bearbeite dies nur, wenn du genau weißt, was du machst"
-#: ../../include/taxonomy.php:208
+#: ../../include/taxonomy.php:210
msgid "Tags"
msgstr "Tags"
-#: ../../include/taxonomy.php:222
+#: ../../include/taxonomy.php:224
msgid "Keywords"
msgstr "Schlüsselbegriffe"
-#: ../../include/taxonomy.php:247
+#: ../../include/taxonomy.php:249
msgid "have"
msgstr "habe"
-#: ../../include/taxonomy.php:247
+#: ../../include/taxonomy.php:249
msgid "has"
msgstr "hat"
-#: ../../include/taxonomy.php:248
+#: ../../include/taxonomy.php:250
msgid "want"
msgstr "will"
-#: ../../include/taxonomy.php:248
+#: ../../include/taxonomy.php:250
msgid "wants"
msgstr "will"
-#: ../../include/taxonomy.php:249
+#: ../../include/taxonomy.php:251
msgid "likes"
msgstr "Gefällt-mir"
-#: ../../include/taxonomy.php:250
+#: ../../include/taxonomy.php:252
msgid "dislikes"
msgstr "Gefällt-mir-nicht"
-#: ../../include/plugin.php:440 ../../include/plugin.php:442
+#: ../../include/plugin.php:473 ../../include/plugin.php:475
msgid "Click here to upgrade."
msgstr "Klicke hier, um das Upgrade durchzuführen."
-#: ../../include/plugin.php:448
+#: ../../include/plugin.php:481
msgid "This action exceeds the limits set by your subscription plan."
msgstr "Diese Aktion überschreitet die Grenzen Ihres Abonnements."
-#: ../../include/plugin.php:453
+#: ../../include/plugin.php:486
msgid "This action is not available under your subscription plan."
msgstr "Diese Aktion ist in Ihrem Abonnement nicht verfügbar."
-#: ../../include/comanche.php:33
+#: ../../include/comanche.php:35 ../../view/theme/redbasic/php/config.php:62
+#: ../../view/theme/apw/php/config.php:176
msgid "Default"
msgstr "Standard"
-#: ../../include/conversation.php:123
-msgid "channel"
-msgstr "Kanal"
-
-#: ../../include/conversation.php:161 ../../mod/like.php:134
-#, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr "%1$s mag %2$s's %3$s"
-
-#: ../../include/conversation.php:164 ../../mod/like.php:136
-#, php-format
-msgid "%1$s doesn't like %2$s's %3$s"
-msgstr "%1$s mag %2$s's %3$s nicht"
-
-#: ../../include/conversation.php:201
-#, php-format
-msgid "%1$s is now connected with %2$s"
-msgstr "%1$s ist jetzt mit %2$s verbunden"
-
-#: ../../include/conversation.php:232
-#, php-format
-msgid "%1$s poked %2$s"
-msgstr "%1$s stupste %2$s"
-
-#: ../../include/conversation.php:254 ../../mod/mood.php:63
-#, php-format
-msgid "%1$s is currently %2$s"
-msgstr "%1$s ist momentan %2$s"
-
-#: ../../include/conversation.php:661
-#, php-format
-msgid "View %s's profile @ %s"
-msgstr "Schaue Dir %s's Profil auf %s an."
-
-#: ../../include/conversation.php:702
-msgid "View in context"
-msgstr "Im Zusammenhang anschauen"
-
-#: ../../include/conversation.php:832
-msgid "Loading..."
-msgstr "Lädt ..."
-
-#: ../../include/conversation.php:833
-msgid "Delete Selected Items"
-msgstr "Lösche die ausgewählten Elemente"
-
-#: ../../include/conversation.php:924
-msgid "View Source"
-msgstr "Quelle anzeigen"
-
-#: ../../include/conversation.php:925
-msgid "Follow Thread"
-msgstr "Unterhaltung folgen"
-
-#: ../../include/conversation.php:929
-msgid "Matrix Activity"
-msgstr "Matrix Aktivität"
-
-#: ../../include/conversation.php:994
-#, php-format
-msgid "%s likes this."
-msgstr "%s gefällt das."
-
-#: ../../include/conversation.php:994
-#, php-format
-msgid "%s doesn't like this."
-msgstr "%s gefällt das nicht."
-
-#: ../../include/conversation.php:998
-#, php-format
-msgid "<span %1$s>%2$d people</span> like this."
-msgstr "<span %1$s>%2$d Personen</span> mögen dies."
-
-#: ../../include/conversation.php:1000
-#, php-format
-msgid "<span %1$s>%2$d people</span> don't like this."
-msgstr "<span %1$s>%2$d Personen</span> mögen dies nicht."
-
-#: ../../include/conversation.php:1006
-msgid "and"
-msgstr "und"
-
-#: ../../include/conversation.php:1009
-#, php-format
-msgid ", and %d other people"
-msgstr ", und %d andere"
-
-#: ../../include/conversation.php:1010
-#, php-format
-msgid "%s like this."
-msgstr "%s gefällt das."
-
-#: ../../include/conversation.php:1010
-#, php-format
-msgid "%s don't like this."
-msgstr "%s gefällt das nicht."
-
-#: ../../include/conversation.php:1060
-msgid "Visible to <strong>everybody</strong>"
-msgstr "Sichtbar für <strong>jeden</strong>"
-
-#: ../../include/conversation.php:1061 ../../mod/message.php:253
-#: ../../mod/message.php:370
-msgid "Please enter a link URL:"
-msgstr "Geben Sie eine URL ein:"
-
-#: ../../include/conversation.php:1062
-msgid "Please enter a video link/URL:"
-msgstr "Geben Sie einen Video-Link/URL ein:"
-
-#: ../../include/conversation.php:1063
-msgid "Please enter an audio link/URL:"
-msgstr "Geben Sie einen Audio-Link/URL ein:"
-
-#: ../../include/conversation.php:1064
-msgid "Tag term:"
-msgstr "Schlagwort:"
-
-#: ../../include/conversation.php:1065 ../../mod/filer.php:35
-msgid "Save to Folder:"
-msgstr "Speichern in Ordner:"
-
-#: ../../include/conversation.php:1066
-msgid "Where are you right now?"
-msgstr "Wo bist du jetzt grade?"
-
-#: ../../include/conversation.php:1081 ../../mod/photos.php:1072
-msgid "Share"
-msgstr "Teilen"
-
-#: ../../include/conversation.php:1083
-msgid "Page link title"
-msgstr "Seitentitel-Link"
-
-#: ../../include/conversation.php:1085 ../../mod/message.php:300
-#: ../../mod/message.php:462 ../../mod/editlayout.php:101
-#: ../../mod/editwebpage.php:120 ../../mod/editpost.php:95
-#: ../../mod/editblock.php:115
-msgid "Upload photo"
-msgstr "Foto hochladen"
-
-#: ../../include/conversation.php:1086
-msgid "upload photo"
-msgstr "Foto hochladen"
-
-#: ../../include/conversation.php:1087 ../../mod/message.php:301
-#: ../../mod/message.php:463 ../../mod/editlayout.php:102
-#: ../../mod/editwebpage.php:121 ../../mod/editpost.php:96
-#: ../../mod/editblock.php:116
-msgid "Attach file"
-msgstr "Datei anhängen"
-
-#: ../../include/conversation.php:1088
-msgid "attach file"
-msgstr "Datei anfügen"
-
-#: ../../include/conversation.php:1089 ../../mod/message.php:302
-#: ../../mod/message.php:464 ../../mod/editlayout.php:103
-#: ../../mod/editwebpage.php:122 ../../mod/editpost.php:97
-#: ../../mod/editblock.php:117
-msgid "Insert web link"
-msgstr "Link einfügen"
-
-#: ../../include/conversation.php:1090
-msgid "web link"
-msgstr "Web-Link"
-
-#: ../../include/conversation.php:1091
-msgid "Insert video link"
-msgstr "Video-Link einfügen"
-
-#: ../../include/conversation.php:1092
-msgid "video link"
-msgstr "Video-Link"
-
-#: ../../include/conversation.php:1093
-msgid "Insert audio link"
-msgstr "Audio-Link einfügen"
-
-#: ../../include/conversation.php:1094
-msgid "audio link"
-msgstr "Audio-Link"
-
-#: ../../include/conversation.php:1095 ../../mod/editlayout.php:107
-#: ../../mod/editwebpage.php:126 ../../mod/editpost.php:101
-#: ../../mod/editblock.php:121
-msgid "Set your location"
-msgstr "Legen Sie Ihren Aufenthaltsort fest"
-
-#: ../../include/conversation.php:1096
-msgid "set location"
-msgstr "Ort festlegen"
-
-#: ../../include/conversation.php:1097 ../../mod/editlayout.php:108
-#: ../../mod/editwebpage.php:127 ../../mod/editpost.php:102
-#: ../../mod/editblock.php:122
-msgid "Clear browser location"
-msgstr "Browser-Standort löschen"
-
-#: ../../include/conversation.php:1098
-msgid "clear location"
-msgstr "Standort löschen"
-
-#: ../../include/conversation.php:1100 ../../mod/editlayout.php:121
-#: ../../mod/editwebpage.php:142 ../../mod/editpost.php:115
-#: ../../mod/editblock.php:136
-msgid "Set title"
-msgstr "Titel festlegen"
-
-#: ../../include/conversation.php:1103 ../../mod/editlayout.php:123
-#: ../../mod/editwebpage.php:144 ../../mod/editpost.php:117
-#: ../../mod/editblock.php:138
-msgid "Categories (comma-separated list)"
-msgstr "Kategorien (Kommagetrennte Liste)"
-
-#: ../../include/conversation.php:1105 ../../mod/editlayout.php:110
-#: ../../mod/editwebpage.php:129 ../../mod/editpost.php:104
-#: ../../mod/editblock.php:124
-msgid "Permission settings"
-msgstr "Berechtigungs-Einstellungen"
-
-#: ../../include/conversation.php:1106
-msgid "permissions"
-msgstr "Berechtigungen"
-
-#: ../../include/conversation.php:1114 ../../mod/editlayout.php:118
-#: ../../mod/editwebpage.php:137 ../../mod/editpost.php:112
-#: ../../mod/editblock.php:133
-msgid "Public post"
-msgstr "Öffentlicher Beitrag"
-
-#: ../../include/conversation.php:1116 ../../mod/editlayout.php:124
-#: ../../mod/editwebpage.php:145 ../../mod/editpost.php:118
-#: ../../mod/editblock.php:139
-msgid "Example: bob@example.com, mary@example.com"
-msgstr "Beispiel: bob@example.com, mary@example.com"
-
#: ../../include/security.php:49
msgid "Welcome "
msgstr "Willkommen"
@@ -2684,28 +2780,56 @@ msgstr "Das Security-Token des Formulars war nicht korrekt. Das ist wahrscheinli
msgid "Permission denied"
msgstr "Keine Berechtigung"
-#: ../../include/items.php:3462 ../../mod/page.php:66 ../../mod/admin.php:150
-#: ../../mod/admin.php:714 ../../mod/admin.php:917 ../../mod/viewsrc.php:18
+#: ../../include/items.php:3546 ../../mod/admin.php:150
+#: ../../mod/admin.php:727 ../../mod/admin.php:930 ../../mod/viewsrc.php:18
#: ../../mod/home.php:64 ../../mod/display.php:32
msgid "Item not found."
msgstr "Element nicht gefunden."
-#: ../../include/items.php:3634
+#: ../../include/items.php:3729
msgid "Archives"
msgstr "Archive"
-#: ../../include/items.php:3795 ../../mod/group.php:44 ../../mod/group.php:146
+#: ../../include/items.php:3895 ../../mod/group.php:44 ../../mod/group.php:146
msgid "Collection not found."
msgstr "Sammlung nicht gefunden"
-#: ../../include/items.php:3811 ../../mod/network.php:469
+#: ../../include/items.php:3911 ../../mod/network.php:469
msgid "Group is empty"
msgstr "Gruppe ist leer"
-#: ../../include/items.php:3827
+#: ../../include/items.php:3927
msgid "Connection not found."
msgstr "Die Verbindung wurde nicht gefunden."
+#: ../../include/dir_fns.php:15
+msgid "Sort Options"
+msgstr "Sortieroptionen"
+
+#: ../../include/dir_fns.php:16
+msgid "Alphabetic"
+msgstr "alphabetisch"
+
+#: ../../include/dir_fns.php:17
+msgid "Reverse Alphabetic"
+msgstr "Entgegengesetzt alphabetisch"
+
+#: ../../include/dir_fns.php:18
+msgid "Newest to Oldest"
+msgstr "Neueste zuerst"
+
+#: ../../include/dir_fns.php:29
+msgid "Enable Safe Search"
+msgstr "Sichere Suche einschalten"
+
+#: ../../include/dir_fns.php:31
+msgid "Disable Safe Search"
+msgstr "Sichere Suche ausschalten"
+
+#: ../../include/dir_fns.php:33
+msgid "Safe Mode"
+msgstr "Sicherer Modus"
+
#: ../../mod/common.php:10
msgid "No channel."
msgstr "Kein Channel."
@@ -2738,7 +2862,7 @@ msgstr "Neue Veranstaltung erstellen"
msgid "Previous"
msgstr "Voriges"
-#: ../../mod/events.php:351 ../../mod/setup.php:237
+#: ../../mod/events.php:351 ../../mod/setup.php:256
msgid "Next"
msgstr "Nächste"
@@ -2869,31 +2993,37 @@ msgstr "Einladungen senden"
msgid "Enter email addresses, one per line:"
msgstr "Email-Adressen eintragen, eine pro Zeile:"
-#: ../../mod/invite.php:141 ../../mod/message.php:297
-#: ../../mod/message.php:458
+#: ../../mod/invite.php:141 ../../mod/message.php:326
+#: ../../mod/message.php:508
msgid "Your message:"
msgstr "Deine Nachricht:"
#: ../../mod/invite.php:142
msgid ""
"You are cordially invited to join me and some other close friends on the Red"
-" Matrix - a revolutionary new decentralised social and information tool."
-msgstr "Du bist herzlich dazu eingeladen mir und einigen anderen gute Freunde zur Red Matrix zu folgen, einem neuen revolutionären dezentralen sozialen Informationswerkzeug."
+" Matrix - a revolutionary new decentralised communication and information "
+"tool."
+msgstr "Du bist herzlich eingeladen mir und einigen anderen guten Freunden in die Red Matrix zu folgen - einem revolutionaren neuen, dezentralisiertem Kommunikations- und Informationsnetzwerk."
#: ../../mod/invite.php:144
msgid "You will need to supply this invitation code: $invite_code"
msgstr "Du musst dann den folgenden Einladungs-Code angeben: $invite_code"
-#: ../../mod/invite.php:146
+#: ../../mod/invite.php:145
msgid "Please visit my channel at"
msgstr "Bitte besuche meinen Kanal auf"
-#: ../../mod/invite.php:150
+#: ../../mod/invite.php:149
msgid ""
-"Once you have registered, please connect with my Red Matrix channel address:"
-msgstr "Sobald du dich registriert hat, verbinde dich bitte mit meinem Red Matrix Kanal unter folgender Adresse:"
+"Once you have registered (on ANY Red Matrix site - they are all inter-"
+"connected), please connect with my Red Matrix channel address:"
+msgstr "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."
-#: ../../mod/invite.php:152
+#: ../../mod/invite.php:151
+msgid "Click the [Register] link on the following page to join."
+msgstr ""
+
+#: ../../mod/invite.php:153
msgid ""
"For more information about the Red Matrix Project and why it has the "
"potential to change the internet as we know it, please visit "
@@ -2911,11 +3041,12 @@ msgstr "Keine Freunde zum Anzeigen."
#: ../../mod/webpages.php:8 ../../mod/connect.php:13 ../../mod/layouts.php:8
#: ../../mod/filestorage.php:8 ../../mod/blocks.php:10 ../../mod/profile.php:8
-#: ../../boot.php:1609
+#: ../../boot.php:1640
msgid "Requested profile is not available."
msgstr "Erwünschte Profil ist nicht verfügbar."
-#: ../../mod/webpages.php:101 ../../mod/layouts.php:92 ../../mod/blocks.php:95
+#: ../../mod/webpages.php:104 ../../mod/layouts.php:105
+#: ../../mod/blocks.php:96
msgid "View"
msgstr "Ansicht"
@@ -2937,17 +3068,17 @@ msgid ""
" and/or create new posts for you?"
msgstr "Möchtest du der Anwendung erlauben deine Nachrichten und Kontakte abzurufen und/oder neue Nachrichten für dich zu erstellen?"
-#: ../../mod/api.php:105 ../../mod/settings.php:1006
-#: ../../mod/settings.php:1011 ../../mod/settings.php:1034
-#: ../../mod/settings.php:1036 ../../mod/settings.php:1037
-#: ../../mod/settings.php:1038 ../../mod/profiles.php:506
+#: ../../mod/api.php:105 ../../mod/settings.php:1009
+#: ../../mod/settings.php:1014 ../../mod/settings.php:1037
+#: ../../mod/settings.php:1039 ../../mod/settings.php:1040
+#: ../../mod/settings.php:1041 ../../mod/profiles.php:506
msgid "Yes"
msgstr "Ja"
-#: ../../mod/api.php:106 ../../mod/settings.php:1006
-#: ../../mod/settings.php:1011 ../../mod/settings.php:1034
-#: ../../mod/settings.php:1036 ../../mod/settings.php:1037
-#: ../../mod/settings.php:1038 ../../mod/profiles.php:507
+#: ../../mod/api.php:106 ../../mod/settings.php:1009
+#: ../../mod/settings.php:1014 ../../mod/settings.php:1037
+#: ../../mod/settings.php:1039 ../../mod/settings.php:1040
+#: ../../mod/settings.php:1041 ../../mod/profiles.php:507
msgid "No"
msgstr "Nein"
@@ -2968,349 +3099,358 @@ msgid "Invalid item."
msgstr "Ungültiges Element."
#: ../../mod/page.php:47 ../../mod/chanview.php:78 ../../mod/home.php:51
-#: ../../mod/magic.php:65 ../../mod/wall_upload.php:35
+#: ../../mod/magic.php:95 ../../mod/wall_upload.php:35
msgid "Channel not found."
msgstr "Kanal nicht gefunden."
+#: ../../mod/page.php:83 ../../mod/help.php:56 ../../mod/display.php:92
+#: ../../index.php:229
+msgid "Page not found."
+msgstr "Seite nicht gefunden."
+
#: ../../mod/attach.php:9
msgid "Item not available."
msgstr "Element nicht verfügbar."
-#: ../../mod/setup.php:142
+#: ../../mod/setup.php:161
msgid "Red Matrix Server - Setup"
msgstr "Red Matrix Server - Installation"
-#: ../../mod/setup.php:148
+#: ../../mod/setup.php:167
msgid "Could not connect to database."
msgstr "Kann nicht mit der Datenbank verbinden."
-#: ../../mod/setup.php:152
+#: ../../mod/setup.php:171
msgid ""
"Could not connect to specified site URL. Possible SSL certificate or DNS "
"issue."
msgstr "Konnte die angegebene Webseiten URL nicht erreichen. Möglicherweise ein Problem mit dem SSL Zertifikat oder dem DNS."
-#: ../../mod/setup.php:157
+#: ../../mod/setup.php:176
msgid "Could not create table."
msgstr "Kann Tabelle nicht erstellen."
-#: ../../mod/setup.php:163
+#: ../../mod/setup.php:182
msgid "Your site database has been installed."
msgstr "Die Datenbank deiner Seite wurde installiert."
-#: ../../mod/setup.php:168
+#: ../../mod/setup.php:187
msgid ""
"You may need to import the file \"install/database.sql\" manually using "
"phpmyadmin or mysql."
msgstr "Eventuell musst du die Datei \"install/database.sql\" händisch mit phpmyadmin oder mysql importieren."
-#: ../../mod/setup.php:169 ../../mod/setup.php:236 ../../mod/setup.php:565
+#: ../../mod/setup.php:188 ../../mod/setup.php:255 ../../mod/setup.php:584
msgid "Please see the file \"install/INSTALL.txt\"."
msgstr "Lesen Sie die Datei \"install/INSTALL.txt\"."
-#: ../../mod/setup.php:233
+#: ../../mod/setup.php:252
msgid "System check"
msgstr "Systemprüfung"
-#: ../../mod/setup.php:238
+#: ../../mod/setup.php:257
msgid "Check again"
msgstr "Bitte nochmal prüfen"
-#: ../../mod/setup.php:260
+#: ../../mod/setup.php:279
msgid "Database connection"
msgstr "Datenbank Verbindung"
-#: ../../mod/setup.php:261
+#: ../../mod/setup.php:280
msgid ""
"In order to install Red Matrix we need to know how to connect to your "
"database."
msgstr "Um die Red Matrix installieren zu können, müssen wir wissen wie wir deine Datenbank kontaktieren können."
-#: ../../mod/setup.php:262
+#: ../../mod/setup.php:281
msgid ""
"Please contact your hosting provider or site administrator if you have "
"questions about these settings."
msgstr "Bitte kontaktiere deinen Hosting Provider oder den Administrator der Seite wenn du Fragen zu diesen Einstellungen haben solltest."
-#: ../../mod/setup.php:263
+#: ../../mod/setup.php:282
msgid ""
"The database you specify below should already exist. If it does not, please "
"create it before continuing."
msgstr "Die Datenbank die du weiter unten angibst sollte bereits existieren. Sollte dies nicht der Fall sein erzeuge sie bitte bevor du fortfärst."
-#: ../../mod/setup.php:267
+#: ../../mod/setup.php:286
msgid "Database Server Name"
msgstr "Datenbank-Servername"
-#: ../../mod/setup.php:267
+#: ../../mod/setup.php:286
msgid "Default is localhost"
msgstr "Standard ist localhost"
-#: ../../mod/setup.php:268
+#: ../../mod/setup.php:287
msgid "Database Port"
msgstr "Datenbank-Port"
-#: ../../mod/setup.php:268
+#: ../../mod/setup.php:287
msgid "Communication port number - use 0 for default"
msgstr "Port Nummer zur Kommunikation - verwende 0 für die Standardeinstellung:"
-#: ../../mod/setup.php:269
+#: ../../mod/setup.php:288
msgid "Database Login Name"
msgstr "Datenbank-Benutzername"
-#: ../../mod/setup.php:270
+#: ../../mod/setup.php:289
msgid "Database Login Password"
msgstr "Datenbank-Kennwort"
-#: ../../mod/setup.php:271
+#: ../../mod/setup.php:290
msgid "Database Name"
msgstr "Datenbank-Name"
-#: ../../mod/setup.php:273 ../../mod/setup.php:315
+#: ../../mod/setup.php:292 ../../mod/setup.php:334
msgid "Site administrator email address"
msgstr "E-Mail Adresse des Seiten-Administrators"
-#: ../../mod/setup.php:273 ../../mod/setup.php:315
+#: ../../mod/setup.php:292 ../../mod/setup.php:334
msgid ""
"Your account email address must match this in order to use the web admin "
"panel."
-msgstr "Die Email-Adresse deines Accounts muss dieser Adresse entsprechen, damit du Zugriff zum Admin Panel erhälst."
+msgstr "Die Email-Adresse deines Accounts muss dieser Adresse entsprechen, damit du Zugriff zum Admin Panel erhältst."
-#: ../../mod/setup.php:274 ../../mod/setup.php:317
+#: ../../mod/setup.php:293 ../../mod/setup.php:336
msgid "Website URL"
msgstr "Webseiten URL"
-#: ../../mod/setup.php:274 ../../mod/setup.php:317
+#: ../../mod/setup.php:293 ../../mod/setup.php:336
msgid "Please use SSL (https) URL if available."
msgstr "Nutzen Sie bitte SSL (https) URL falls möglich."
-#: ../../mod/setup.php:277 ../../mod/setup.php:320
+#: ../../mod/setup.php:296 ../../mod/setup.php:339
msgid "Please select a default timezone for your website"
msgstr "Wählen Sie die Standard-Zeitzone für Ihre Webseite aus"
-#: ../../mod/setup.php:304
+#: ../../mod/setup.php:323
msgid "Site settings"
msgstr "Seiteneinstellungen"
-#: ../../mod/setup.php:360
+#: ../../mod/setup.php:379
msgid "Could not find a command line version of PHP in the web server PATH."
msgstr "Konnte die Kommandozeilen Version von PHP nicht im PATH des Servers finden."
-#: ../../mod/setup.php:361
+#: ../../mod/setup.php:380
msgid ""
"If you don't have a command line version of PHP installed on server, you "
"will not be able to run background polling via cron."
msgstr "Solltest du keine Kommandozeilen Version von PHP auf dem Server installiert haben wirst du nicht in der Lage sein Hintergrundprozesse via cron auszuführen."
-#: ../../mod/setup.php:365
+#: ../../mod/setup.php:384
msgid "PHP executable path"
msgstr "PHP Pfad zu ausführbarer Datei"
-#: ../../mod/setup.php:365
+#: ../../mod/setup.php:384
msgid ""
"Enter full path to php executable. You can leave this blank to continue the "
"installation."
msgstr "Gib den vollen Pfad zum PHP Interpreter an. Du kannst dieses Felds frei lassen und mit der Installation fortfahren."
-#: ../../mod/setup.php:370
+#: ../../mod/setup.php:389
msgid "Command line PHP"
msgstr "PHP Befehlszeile"
-#: ../../mod/setup.php:379
+#: ../../mod/setup.php:398
msgid ""
"The command line version of PHP on your system does not have "
"\"register_argc_argv\" enabled."
msgstr "Die Kommandozeilen Version von PHP auf deinem System hat \"register_argc_argv\" nicht aktiviert."
-#: ../../mod/setup.php:380
+#: ../../mod/setup.php:399
msgid "This is required for message delivery to work."
msgstr "Dies wird benötigt, damit die Auslieferung von Nachrichten funktioniert."
-#: ../../mod/setup.php:382
+#: ../../mod/setup.php:401
msgid "PHP register_argc_argv"
msgstr "PHP register_argc_argv"
-#: ../../mod/setup.php:403
+#: ../../mod/setup.php:422
msgid ""
"Error: the \"openssl_pkey_new\" function on this system is not able to "
"generate encryption keys"
msgstr "Fehler: Die \"openssl_pkey_new\" Funktion auf diesem System ist nicht in der Lage Schlüssel für die Verschlüsselung zu erzeugen."
-#: ../../mod/setup.php:404
+#: ../../mod/setup.php:423
msgid ""
"If running under Windows, please see "
"\"http://www.php.net/manual/en/openssl.installation.php\"."
msgstr "Wenn du Windows verwendest, siehe \"http://www.php.net/manual/en/openssl.installation.php\" für eine Installationsanleitung."
-#: ../../mod/setup.php:406
+#: ../../mod/setup.php:425
msgid "Generate encryption keys"
msgstr "Verschlüsselungsschlüssel generieren"
-#: ../../mod/setup.php:413
+#: ../../mod/setup.php:432
msgid "libCurl PHP module"
msgstr "libCurl PHP Modul"
-#: ../../mod/setup.php:414
+#: ../../mod/setup.php:433
msgid "GD graphics PHP module"
msgstr "GD Graphik PHP Modul"
-#: ../../mod/setup.php:415
+#: ../../mod/setup.php:434
msgid "OpenSSL PHP module"
msgstr "OpenSSL PHP Modul"
-#: ../../mod/setup.php:416
+#: ../../mod/setup.php:435
msgid "mysqli PHP module"
msgstr "mysqli PHP Modul"
-#: ../../mod/setup.php:417
+#: ../../mod/setup.php:436
msgid "mb_string PHP module"
msgstr "mb_string PHP Modul"
-#: ../../mod/setup.php:418
+#: ../../mod/setup.php:437
msgid "mcrypt PHP module"
msgstr "mcrypt PHP Modul"
-#: ../../mod/setup.php:423 ../../mod/setup.php:425
+#: ../../mod/setup.php:442 ../../mod/setup.php:444
msgid "Apache mod_rewrite module"
msgstr "Apache mod_rewrite Modul"
-#: ../../mod/setup.php:423
+#: ../../mod/setup.php:442
msgid ""
"Error: Apache webserver mod-rewrite module is required but not installed."
msgstr "Fehler: Das Apache Modul mod-rewrite wird benötigt ist aber nicht installiert."
-#: ../../mod/setup.php:429 ../../mod/setup.php:432
+#: ../../mod/setup.php:448 ../../mod/setup.php:451
msgid "proc_open"
msgstr "proc_open"
-#: ../../mod/setup.php:429
+#: ../../mod/setup.php:448
msgid ""
"Error: proc_open is required but is either not installed or has been "
"disabled in php.ini"
msgstr "Fehler: proc_open wird benötigt ist aber entweder nicht installiert oder wurde in der php.ini deaktiviert"
-#: ../../mod/setup.php:437
+#: ../../mod/setup.php:456
msgid "Error: libCURL PHP module required but not installed."
msgstr "Fehler: das PHP Modul libCURL wird benütigt ist aber nicht installiert."
-#: ../../mod/setup.php:441
+#: ../../mod/setup.php:460
msgid ""
"Error: GD graphics PHP module with JPEG support required but not installed."
msgstr "Fehler: das PHP Modul GD Grafik mit JPEG Unterstützung wird benötigt ist aber nicht installiert."
-#: ../../mod/setup.php:445
+#: ../../mod/setup.php:464
msgid "Error: openssl PHP module required but not installed."
msgstr "Fehler: das OpenSSL PHP Modul wird benötigt ist aber nicht installiert."
-#: ../../mod/setup.php:449
+#: ../../mod/setup.php:468
msgid "Error: mysqli PHP module required but not installed."
msgstr "Fehler: das PHP Modul mysqli wird benötigt ist aber nicht installiert."
-#: ../../mod/setup.php:453
+#: ../../mod/setup.php:472
msgid "Error: mb_string PHP module required but not installed."
msgstr "Fehler: das PHP Modul mb_string wird benötigt ist aber nicht installiert."
-#: ../../mod/setup.php:457
+#: ../../mod/setup.php:476
msgid "Error: mcrypt PHP module required but not installed."
msgstr "Fehler: das PHP Modul mcrypt wird benötigt ist aber nicht installiert."
-#: ../../mod/setup.php:473
+#: ../../mod/setup.php:492
msgid ""
"The web installer needs to be able to create a file called \".htconfig.php\""
" in the top folder of your web server and it is unable to do so."
msgstr "Der Installations-Assistent muss in der Lage sein die Datei \".htconfig.php\" im Stammverzeichnis des Web-Servers anzulegen, ist es aber nicht."
-#: ../../mod/setup.php:474
+#: ../../mod/setup.php:493
msgid ""
"This is most often a permission setting, as the web server may not be able "
"to write files in your folder - even if you can."
msgstr "Meist liegt dies daran, dass der Nutzer unter dem der Web-Server läuft keine Rechte zum Schreiben in dem Verzeichnis hat - selbst wenn du das kannst."
-#: ../../mod/setup.php:475
+#: ../../mod/setup.php:494
msgid ""
"At the end of this procedure, we will give you a text to save in a file "
"named .htconfig.php in your Red top folder."
msgstr "Am Schluss des Vorgangs wird ein Text generiert, den du unter dem Dateinamen .htconfig.php im Stammverzeichnis deiner Red Installation speichern."
-#: ../../mod/setup.php:476
+#: ../../mod/setup.php:495
msgid ""
"You can alternatively skip this procedure and perform a manual installation."
" Please see the file \"install/INSTALL.txt\" for instructions."
msgstr "Alternativ kannst du diesen Schritt überspringen und die Installation manuell vornehmen. Siehe dazu bitte die \"Install/INSTALL.txt\" Datei."
-#: ../../mod/setup.php:479
+#: ../../mod/setup.php:498
msgid ".htconfig.php is writable"
msgstr ".htconfig.php ist beschreibbar"
-#: ../../mod/setup.php:489
+#: ../../mod/setup.php:508
msgid ""
"Red uses the Smarty3 template engine to render its web views. Smarty3 "
"compiles templates to PHP to speed up rendering."
msgstr "Red verwendet Smarty3 um Vorlagen für die Webdarstellung zu übersetzen. Smarty3 übersetzt diese Vorlagen nach PHP um die Darstellung zu beschleunigen."
-#: ../../mod/setup.php:490
+#: ../../mod/setup.php:509
msgid ""
"In order to store these compiled templates, the web server needs to have "
"write access to the directory view/tpl/smarty3/ under the Red top level "
"folder."
msgstr "Um die übersetzten Vorlagen speichern zu können muss der Webserver schreib Zugriff auf das Verzeichnis view/tpl/smarty3/ unterhalb des Red Stammverzeichnisses haben."
-#: ../../mod/setup.php:491
+#: ../../mod/setup.php:510
msgid ""
"Please ensure that the user that your web server runs as (e.g. www-data) has"
" write access to this folder."
msgstr "Bitte stelle sicher, dass der Nutzer unter dem der Webserver läuft (z.B. www-data) Zugriff zum Schreiben auf dieses Verzeichnis hat."
-#: ../../mod/setup.php:492
+#: ../../mod/setup.php:511
msgid ""
"Note: as a security measure, you should give the web server write access to "
"view/tpl/smarty3/ only--not the template files (.tpl) that it contains."
msgstr "Hinweis: Als Sicherheitsvorkehrung solltest du dem Webserver nur Schreib-Zugriff auf das Verzeichnis view/tpl/smarty3 geben, nicht dem Vorlagen (.tpl) die in diesem Verzeichnis liegen."
-#: ../../mod/setup.php:495
+#: ../../mod/setup.php:514
msgid "view/tpl/smarty3 is writable"
msgstr "view/tpl/smarty3 ist beschreibbar"
-#: ../../mod/setup.php:509
+#: ../../mod/setup.php:528
msgid "SSL certificate validation"
msgstr "SSL Zertifikatverifizierung"
-#: ../../mod/setup.php:509
+#: ../../mod/setup.php:528
msgid ""
"SSL certificate cannot be validated. Fix certificate or disable https access"
" to this site."
msgstr "Das SSL Zertifikat konnte nicht validiert werden. Korrigiere das Zertifikat oder schalte HTTPS ab um auf diese Seite zuzugreifen."
-#: ../../mod/setup.php:516
+#: ../../mod/setup.php:535
msgid ""
"Url rewrite in .htaccess is not working. Check your server configuration."
msgstr "URL rewrite funktioniert in der .htaccess nicht. Überprüfe deine Server-Konfiguration."
-#: ../../mod/setup.php:518
+#: ../../mod/setup.php:537
msgid "Url rewrite is working"
msgstr "Url rewrite funktioniert"
-#: ../../mod/setup.php:528
+#: ../../mod/setup.php:547
msgid ""
"The database configuration file \".htconfig.php\" could not be written. "
"Please use the enclosed text to create a configuration file in your web "
"server root."
msgstr "Die Datenbank Konfigurationsdatei \".htconfig.php\" konnte nicht geschrieben werden. Bitte verwende den unten angegebenen Text um die Konfigurationsdatei im Stammverzeichnis des Webservers anzulegen."
-#: ../../mod/setup.php:552
+#: ../../mod/setup.php:571
msgid "Errors encountered creating database tables."
msgstr "Fehler während des Anlegens der Datenbank Tabellen aufgetreten."
-#: ../../mod/setup.php:563
+#: ../../mod/setup.php:582
msgid "<h1>What next</h1>"
msgstr "<h1>Was als Nächstes</h1>"
-#: ../../mod/setup.php:564
+#: ../../mod/setup.php:583
msgid ""
"IMPORTANT: You will need to [manually] setup a scheduled task for the "
"poller."
msgstr "WICHTIG: Du musst die geplanten Aufgaben für den Poller [manuell] einrichten."
+#: ../../mod/rpost.php:84 ../../mod/editpost.php:42
+msgid "Edit post"
+msgstr "Bearbeite Beitrag"
+
#: ../../mod/subthread.php:105
#, php-format
msgid "%1$s is following %2$s's %3$s"
@@ -3331,463 +3471,463 @@ msgstr "auf Vollbildmodus umschalten"
msgid "%1$s tagged %2$s's %3$s with %4$s"
msgstr "%1$s hat %2$s's %3$s mit %4$s getaggt"
-#: ../../mod/settings.php:51
+#: ../../mod/settings.php:53
msgid "Account settings"
msgstr "Konto-Einstellungen"
-#: ../../mod/settings.php:57
+#: ../../mod/settings.php:59
msgid "Channel settings"
msgstr "Kanal-Einstellungen"
-#: ../../mod/settings.php:63
+#: ../../mod/settings.php:65
msgid "Additional features"
msgstr "Zusätzliche Funktionen"
-#: ../../mod/settings.php:69
+#: ../../mod/settings.php:71
msgid "Feature settings"
msgstr "Funktions-Einstellungen"
-#: ../../mod/settings.php:75
+#: ../../mod/settings.php:77
msgid "Display settings"
msgstr "Anzeige-Einstellungen"
-#: ../../mod/settings.php:81
+#: ../../mod/settings.php:83
msgid "Connected apps"
msgstr "Verbundene Apps"
-#: ../../mod/settings.php:87
+#: ../../mod/settings.php:89
msgid "Export channel"
msgstr "Kanal exportieren"
-#: ../../mod/settings.php:99
+#: ../../mod/settings.php:101
msgid "Automatic Permissions (Advanced)"
msgstr "Automatische Berechtigungen (Erweitert)"
-#: ../../mod/settings.php:109
+#: ../../mod/settings.php:111
msgid "Premium Channel Settings"
msgstr "Prämium-Kanal Einstellungen"
-#: ../../mod/settings.php:169
+#: ../../mod/settings.php:171
msgid "Name is required"
msgstr "Name wird benötigt"
-#: ../../mod/settings.php:173
+#: ../../mod/settings.php:175
msgid "Key and Secret are required"
msgstr "Schlüssel und Geheimnis werden benötigt"
-#: ../../mod/settings.php:177 ../../mod/settings.php:674
+#: ../../mod/settings.php:179 ../../mod/settings.php:677
msgid "Update"
msgstr "Update"
-#: ../../mod/settings.php:290
+#: ../../mod/settings.php:292
msgid "Passwords do not match. Password unchanged."
msgstr "Kennwörter stimmen nicht überein. Kennwort nicht verändert."
-#: ../../mod/settings.php:294
+#: ../../mod/settings.php:296
msgid "Empty passwords are not allowed. Password unchanged."
msgstr "Leere Kennwörter sind nicht erlaubt. Kennwort nicht verändert."
-#: ../../mod/settings.php:307
+#: ../../mod/settings.php:309
msgid "Password changed."
msgstr "Kennwort geändert."
-#: ../../mod/settings.php:309
+#: ../../mod/settings.php:311
msgid "Password update failed. Please try again."
msgstr "Kennwortänderung fehlgeschlagen. Wiederholen Sie den Vorgang."
-#: ../../mod/settings.php:323
+#: ../../mod/settings.php:325
msgid "Not valid email."
msgstr "Keine gültige E-Mail Adresse."
-#: ../../mod/settings.php:326
+#: ../../mod/settings.php:328
msgid "Protected email address. Cannot change to that email."
msgstr "Geschützte E-Mail Adresse. Diese kann nicht verändert werden."
-#: ../../mod/settings.php:335
+#: ../../mod/settings.php:337
msgid "System failure storing new email. Please try again."
msgstr "Systemfehler während des Speicherns der neuen Mail. Bitte versuche es noch einmal."
-#: ../../mod/settings.php:576
+#: ../../mod/settings.php:579
msgid "Settings updated."
msgstr "Einstellungen aktualisiert."
-#: ../../mod/settings.php:647 ../../mod/settings.php:673
-#: ../../mod/settings.php:709
+#: ../../mod/settings.php:650 ../../mod/settings.php:676
+#: ../../mod/settings.php:712
msgid "Add application"
msgstr "Anwendung hinzufügen"
-#: ../../mod/settings.php:649 ../../mod/settings.php:675
+#: ../../mod/settings.php:652 ../../mod/settings.php:678
#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/fbrowser.php:82
#: ../../mod/fbrowser.php:117
msgid "Cancel"
msgstr "Abbrechen"
-#: ../../mod/settings.php:650 ../../mod/settings.php:676
-#: ../../mod/admin.php:673 ../../mod/crepair.php:148
+#: ../../mod/settings.php:653 ../../mod/settings.php:679
+#: ../../mod/admin.php:686 ../../mod/crepair.php:148
msgid "Name"
msgstr "Name"
-#: ../../mod/settings.php:650
+#: ../../mod/settings.php:653
msgid "Name of application"
msgstr "Name der Anwendung"
-#: ../../mod/settings.php:651 ../../mod/settings.php:677
+#: ../../mod/settings.php:654 ../../mod/settings.php:680
msgid "Consumer Key"
msgstr "Consumer Key"
-#: ../../mod/settings.php:651 ../../mod/settings.php:652
+#: ../../mod/settings.php:654 ../../mod/settings.php:655
msgid "Automatically generated - change if desired. Max length 20"
msgstr "Automatisch erzeugt - ändern falls erwünscht. Maximale Länge 20"
-#: ../../mod/settings.php:652 ../../mod/settings.php:678
+#: ../../mod/settings.php:655 ../../mod/settings.php:681
msgid "Consumer Secret"
msgstr "Consumer Secret"
-#: ../../mod/settings.php:653 ../../mod/settings.php:679
+#: ../../mod/settings.php:656 ../../mod/settings.php:682
msgid "Redirect"
msgstr "Umleitung"
-#: ../../mod/settings.php:653
+#: ../../mod/settings.php:656
msgid ""
"Redirect URI - leave blank unless your application specifically requires "
"this"
msgstr "Umleitungs-URl - lasse dies frei außer deine Anwendung erfordert dies explizit"
-#: ../../mod/settings.php:654 ../../mod/settings.php:680
+#: ../../mod/settings.php:657 ../../mod/settings.php:683
msgid "Icon url"
msgstr "Symbol-URL"
-#: ../../mod/settings.php:654
+#: ../../mod/settings.php:657
msgid "Optional"
msgstr "Optional"
-#: ../../mod/settings.php:665
+#: ../../mod/settings.php:668
msgid "You can't edit this application."
msgstr "Diese Anwendung kann nicht bearbeitet werden."
-#: ../../mod/settings.php:708
+#: ../../mod/settings.php:711
msgid "Connected Apps"
msgstr "Verbundene Apps"
-#: ../../mod/settings.php:712
+#: ../../mod/settings.php:715
msgid "Client key starts with"
msgstr "Client key beginnt mit"
-#: ../../mod/settings.php:713
+#: ../../mod/settings.php:716
msgid "No name"
msgstr "Kein Name"
-#: ../../mod/settings.php:714
+#: ../../mod/settings.php:717
msgid "Remove authorization"
msgstr "Autorisierung aufheben"
-#: ../../mod/settings.php:725
+#: ../../mod/settings.php:728
msgid "No feature settings configured"
msgstr "Keine Funktions-Einstellungen konfiguriert"
-#: ../../mod/settings.php:733
+#: ../../mod/settings.php:736
msgid "Feature Settings"
msgstr "Funktions-Einstellungen"
-#: ../../mod/settings.php:756
+#: ../../mod/settings.php:759
msgid "Account Settings"
msgstr "Konto-Einstellungen"
-#: ../../mod/settings.php:757
+#: ../../mod/settings.php:760
msgid "Password Settings"
msgstr "Kennwort-Einstellungen"
-#: ../../mod/settings.php:758
+#: ../../mod/settings.php:761
msgid "New Password:"
msgstr "Neues Passwort:"
-#: ../../mod/settings.php:759
+#: ../../mod/settings.php:762
msgid "Confirm:"
msgstr "Bestätigen:"
-#: ../../mod/settings.php:759
+#: ../../mod/settings.php:762
msgid "Leave password fields blank unless changing"
msgstr "Lasse die Passwort -Felder leer außer du möchtest das Passwort ändern"
-#: ../../mod/settings.php:761 ../../mod/settings.php:1060
+#: ../../mod/settings.php:764 ../../mod/settings.php:1063
msgid "Email Address:"
msgstr "Email Adresse:"
-#: ../../mod/settings.php:762
+#: ../../mod/settings.php:765
msgid "Remove Account"
msgstr "Konto entfernen"
-#: ../../mod/settings.php:763
+#: ../../mod/settings.php:766
msgid "Warning: This action is permanent and cannot be reversed."
msgstr "Achtung: Diese Aktion ist permanent und kann nicht rückgänging gemacht werden."
-#: ../../mod/settings.php:779
+#: ../../mod/settings.php:782
msgid "Off"
msgstr "Aus"
-#: ../../mod/settings.php:779
+#: ../../mod/settings.php:782
msgid "On"
msgstr "An"
-#: ../../mod/settings.php:786
+#: ../../mod/settings.php:789
msgid "Additional Features"
msgstr "Zusätzliche Funktionen"
-#: ../../mod/settings.php:811
+#: ../../mod/settings.php:814
msgid "Connector Settings"
msgstr "Connector-Einstellungen"
-#: ../../mod/settings.php:841 ../../mod/admin.php:369
+#: ../../mod/settings.php:844 ../../mod/admin.php:369
msgid "No special theme for mobile devices"
msgstr "Keine spezielle Theme für mobile Geräte"
-#: ../../mod/settings.php:881
+#: ../../mod/settings.php:884
msgid "Display Settings"
msgstr "Anzeige-Einstellungen"
-#: ../../mod/settings.php:887
+#: ../../mod/settings.php:890
msgid "Display Theme:"
msgstr "Anzeige Theme:"
-#: ../../mod/settings.php:888
+#: ../../mod/settings.php:891
msgid "Mobile Theme:"
msgstr "Mobile Theme:"
-#: ../../mod/settings.php:889
+#: ../../mod/settings.php:892
msgid "Update browser every xx seconds"
msgstr "Browser alle xx Sekunden aktualisieren"
-#: ../../mod/settings.php:889
+#: ../../mod/settings.php:892
msgid "Minimum of 10 seconds, no maximum"
msgstr "Minimum von 10 Sekunden, kein Maximum"
-#: ../../mod/settings.php:890
+#: ../../mod/settings.php:893
msgid "Maximum number of conversations to load at any time:"
msgstr "Maximale Anzahl von Unterhaltungen die gleichzeitig geladen werden sollen:"
-#: ../../mod/settings.php:890
+#: ../../mod/settings.php:893
msgid "Maximum of 100 items"
msgstr "Maximum von 100 Beiträgen"
-#: ../../mod/settings.php:891
+#: ../../mod/settings.php:894
msgid "Don't show emoticons"
msgstr "Emoticons nicht zeigen"
-#: ../../mod/settings.php:927
+#: ../../mod/settings.php:930
msgid "Nobody except yourself"
msgstr "Niemand außer du selbst"
-#: ../../mod/settings.php:928
+#: ../../mod/settings.php:931
msgid "Only those you specifically allow"
msgstr "Nur diejenigen, die Sie erlauben"
-#: ../../mod/settings.php:929
+#: ../../mod/settings.php:932
msgid "Anybody in your address book"
msgstr "Jeder aus Ihrem Adressbuch"
-#: ../../mod/settings.php:930
+#: ../../mod/settings.php:933
msgid "Anybody on this website"
msgstr "Jeder auf dieser Website"
-#: ../../mod/settings.php:931
+#: ../../mod/settings.php:934
msgid "Anybody in this network"
msgstr "Jeder in diesem Netzwerk"
-#: ../../mod/settings.php:932
+#: ../../mod/settings.php:935
msgid "Anybody on the internet"
msgstr "Jeder im Internet"
-#: ../../mod/settings.php:1006
+#: ../../mod/settings.php:1009
msgid "Publish your default profile in the network directory"
msgstr "Veröffentliche dein Standard-Profil im Netzwerk-Verzeichnis"
-#: ../../mod/settings.php:1011
+#: ../../mod/settings.php:1014
msgid "Allow us to suggest you as a potential friend to new members?"
msgstr "Dürfen wir dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?"
-#: ../../mod/settings.php:1015 ../../mod/profile_photo.php:298
+#: ../../mod/settings.php:1018 ../../mod/profile_photo.php:298
msgid "or"
msgstr "oder"
-#: ../../mod/settings.php:1020
+#: ../../mod/settings.php:1023
msgid "Your channel address is"
msgstr "Deine Kanal-Adresse lautet"
-#: ../../mod/settings.php:1031
+#: ../../mod/settings.php:1034
msgid "Automatically expire posts after this many days:"
msgstr "Lösche Beiträge automatisch nach dieser Anzahl von Tagen:"
-#: ../../mod/settings.php:1031
+#: ../../mod/settings.php:1034
msgid "If empty, posts will not expire. Expired posts will be deleted"
msgstr "Falls leer werden Beiträge nie verfallen. Verfallene Beiträge werden gelöscht"
-#: ../../mod/settings.php:1032
+#: ../../mod/settings.php:1035
msgid "Advanced expiration settings"
msgstr "Erweitere Verfalls-Einstellungen"
-#: ../../mod/settings.php:1033
+#: ../../mod/settings.php:1036
msgid "Advanced Expiration"
msgstr "Erweitertes Verfallen"
-#: ../../mod/settings.php:1034
+#: ../../mod/settings.php:1037
msgid "Expire posts:"
msgstr "Beiträge verfallen lassen:"
-#: ../../mod/settings.php:1036
+#: ../../mod/settings.php:1039
msgid "Expire starred posts:"
msgstr "Markierte Beiträge verfallen lassen:"
-#: ../../mod/settings.php:1037
+#: ../../mod/settings.php:1040
msgid "Expire photos:"
msgstr "Fotos verfallen lassen:"
-#: ../../mod/settings.php:1038
+#: ../../mod/settings.php:1041
msgid "Only expire posts by others:"
msgstr "Nur Beiträge anderer verfallen lassen:"
-#: ../../mod/settings.php:1049
+#: ../../mod/settings.php:1052
msgid "Channel Settings"
msgstr "Channel-Einstellungen"
-#: ../../mod/settings.php:1058
+#: ../../mod/settings.php:1061
msgid "Basic Settings"
msgstr "Grundeinstellungen"
-#: ../../mod/settings.php:1061
+#: ../../mod/settings.php:1064
msgid "Your Timezone:"
msgstr "Ihre Zeitzone:"
-#: ../../mod/settings.php:1062
+#: ../../mod/settings.php:1065
msgid "Default Post Location:"
msgstr "Standardstandort:"
-#: ../../mod/settings.php:1063
+#: ../../mod/settings.php:1066
msgid "Use Browser Location:"
msgstr "Standort des Browsers verwenden:"
-#: ../../mod/settings.php:1065
+#: ../../mod/settings.php:1068
msgid "Adult Content"
msgstr "Nicht Jugendfreie-Inhalte"
-#: ../../mod/settings.php:1065
+#: ../../mod/settings.php:1068
msgid "This channel publishes adult content."
msgstr "Dieser Kanal veröffentlicht nicht Jugendfreie-Inhalte"
-#: ../../mod/settings.php:1067
+#: ../../mod/settings.php:1070
msgid "Security and Privacy Settings"
msgstr "Sicherheits- und Datenschutz-Einstellungen"
-#: ../../mod/settings.php:1069
+#: ../../mod/settings.php:1072
msgid "Quick Privacy Settings:"
msgstr "Schnelle Datenschutz-Einstellungen:"
-#: ../../mod/settings.php:1070
+#: ../../mod/settings.php:1073
msgid "Very Public - extremely permissive"
msgstr "Sehr offen - extrem freizügig"
-#: ../../mod/settings.php:1071
+#: ../../mod/settings.php:1074
msgid "Typical - default public, privacy when desired"
msgstr "Typisch - Standard öffentlich, Privatheit wenn gewünscht"
-#: ../../mod/settings.php:1072
+#: ../../mod/settings.php:1075
msgid "Private - default private, rarely open or public"
msgstr "Privat - Standard privat, selten offen oder öffentlich"
-#: ../../mod/settings.php:1073
+#: ../../mod/settings.php:1076
msgid "Blocked - default blocked to/from everybody"
msgstr "Geschlossen - Standard zu und von jedem geblockt"
-#: ../../mod/settings.php:1076
+#: ../../mod/settings.php:1079
msgid "Maximum Friend Requests/Day:"
msgstr "Maximale Kontaktanfragen pro Tag:"
-#: ../../mod/settings.php:1076
+#: ../../mod/settings.php:1079
msgid "May reduce spam activity"
msgstr "Kann die Spam-Aktivität verringern"
-#: ../../mod/settings.php:1077
+#: ../../mod/settings.php:1080
msgid "Default Post Permissions"
msgstr "Beitragszugriffrechte Standardeinstellungen"
-#: ../../mod/settings.php:1078
+#: ../../mod/settings.php:1081
msgid "(click to open/close)"
msgstr "(zum öffnen/schließen anklicken)"
-#: ../../mod/settings.php:1091
+#: ../../mod/settings.php:1094
msgid "Maximum private messages per day from unknown people:"
msgstr "Maximale Anzahl privater Nachrichten pro Tag von unbekannten Leuten:"
-#: ../../mod/settings.php:1091
+#: ../../mod/settings.php:1094
msgid "Useful to reduce spamming"
msgstr "Nützlich um Spam zu verringern"
-#: ../../mod/settings.php:1094
+#: ../../mod/settings.php:1097
msgid "Notification Settings"
msgstr "Benachrichtigungs-Einstellungen"
-#: ../../mod/settings.php:1095
+#: ../../mod/settings.php:1098
msgid "By default post a status message when:"
msgstr "Sende standardmäßig Status-Nachrichten wenn:"
-#: ../../mod/settings.php:1096
+#: ../../mod/settings.php:1099
msgid "accepting a friend request"
msgstr "einer Kontaktanfrage stattgegeben wurde"
-#: ../../mod/settings.php:1097
+#: ../../mod/settings.php:1100
msgid "joining a forum/community"
msgstr "ein Forum beigetreten wurde"
-#: ../../mod/settings.php:1098
+#: ../../mod/settings.php:1101
msgid "making an <em>interesting</em> profile change"
msgstr "eine <em>interessante</em> Änderung am Profil vorgenommen wurde"
-#: ../../mod/settings.php:1099
+#: ../../mod/settings.php:1102
msgid "Send a notification email when:"
msgstr "Eine Email Benachrichtigung senden wenn:"
-#: ../../mod/settings.php:1100
+#: ../../mod/settings.php:1103
msgid "You receive an introduction"
msgstr "Du eine Vorstellung erhältst"
-#: ../../mod/settings.php:1101
+#: ../../mod/settings.php:1104
msgid "Your introductions are confirmed"
msgstr "Deine Vorstellung bestätigt wurde."
-#: ../../mod/settings.php:1102
+#: ../../mod/settings.php:1105
msgid "Someone writes on your profile wall"
msgstr "Jemand auf deine Pinnwand schreibt"
-#: ../../mod/settings.php:1103
+#: ../../mod/settings.php:1106
msgid "Someone writes a followup comment"
msgstr "Jemand einen Beitrag kommentiert"
-#: ../../mod/settings.php:1104
+#: ../../mod/settings.php:1107
msgid "You receive a private message"
-msgstr "Du eine private Nachricht erhälst"
+msgstr "Du eine private Nachricht erhältst"
-#: ../../mod/settings.php:1105
+#: ../../mod/settings.php:1108
msgid "You receive a friend suggestion"
-msgstr "Du einen Kontaktvorschlag erhälst"
+msgstr "Du einen Kontaktvorschlag erhältst"
-#: ../../mod/settings.php:1106
+#: ../../mod/settings.php:1109
msgid "You are tagged in a post"
msgstr "Du wurdest in einem Beitrag getaggt"
-#: ../../mod/settings.php:1107
+#: ../../mod/settings.php:1110
msgid "You are poked/prodded/etc. in a post"
msgstr "Du in einer Nachricht angestupst/geknufft/o.ä. wirst"
-#: ../../mod/settings.php:1110
+#: ../../mod/settings.php:1113
msgid "Advanced Account/Page Type Settings"
msgstr "Erweiterte Account / Seiten Arten Einstellungen"
-#: ../../mod/settings.php:1111
+#: ../../mod/settings.php:1114
msgid "Change the behaviour of this account for special situations"
msgstr "Ändere das Verhalten dieses Accounts unter speziellen Umständen"
-#: ../../mod/viewconnections.php:28 ../../mod/photos.php:576
-#: ../../mod/display.php:9 ../../mod/search.php:80 ../../mod/community.php:18
-#: ../../mod/directory.php:23
+#: ../../mod/viewconnections.php:28 ../../mod/search.php:80
+#: ../../mod/photos.php:576 ../../mod/display.php:9 ../../mod/community.php:18
+#: ../../mod/directory.php:32
msgid "Public access denied."
msgstr "Öffentlicher Zugang verweigert."
@@ -3961,15 +4101,15 @@ msgstr "Theme Einstellungen aktualisiert."
msgid "Site"
msgstr "Seite"
-#: ../../mod/admin.php:88 ../../mod/admin.php:669 ../../mod/admin.php:681
+#: ../../mod/admin.php:88 ../../mod/admin.php:682 ../../mod/admin.php:694
msgid "Users"
msgstr "Benutzer"
-#: ../../mod/admin.php:89 ../../mod/admin.php:767 ../../mod/admin.php:809
+#: ../../mod/admin.php:89 ../../mod/admin.php:780 ../../mod/admin.php:822
msgid "Plugins"
msgstr "Plug-Ins"
-#: ../../mod/admin.php:90 ../../mod/admin.php:972 ../../mod/admin.php:1008
+#: ../../mod/admin.php:90 ../../mod/admin.php:985 ../../mod/admin.php:1021
msgid "Themes"
msgstr "Themes"
@@ -3979,9 +4119,9 @@ msgstr "Server"
#: ../../mod/admin.php:92
msgid "DB updates"
-msgstr "Datenbankaktualisierungen"
+msgstr "DB Aktualisierungen"
-#: ../../mod/admin.php:106 ../../mod/admin.php:113 ../../mod/admin.php:1095
+#: ../../mod/admin.php:106 ../../mod/admin.php:113 ../../mod/admin.php:1108
msgid "Logs"
msgstr "Protokolle"
@@ -3998,8 +4138,8 @@ msgid "Message queues"
msgstr "Nachrichten Warteschlange"
#: ../../mod/admin.php:193 ../../mod/admin.php:416 ../../mod/admin.php:474
-#: ../../mod/admin.php:668 ../../mod/admin.php:766 ../../mod/admin.php:808
-#: ../../mod/admin.php:971 ../../mod/admin.php:1007 ../../mod/admin.php:1094
+#: ../../mod/admin.php:681 ../../mod/admin.php:779 ../../mod/admin.php:821
+#: ../../mod/admin.php:984 ../../mod/admin.php:1020 ../../mod/admin.php:1107
msgid "Administration"
msgstr "Administration"
@@ -4059,7 +4199,7 @@ msgstr "Kostenloser Zugang"
msgid "Tiered Access"
msgstr "Abgestufter Zugang"
-#: ../../mod/admin.php:419 ../../mod/register.php:172
+#: ../../mod/admin.php:419 ../../mod/register.php:180
msgid "Registration"
msgstr "Registrierung"
@@ -4248,7 +4388,7 @@ msgstr "Maximale Systemlast bevor Verteil- und Empfangsprozesse verschoben werde
msgid "No server found"
msgstr "Kein Server gefunden"
-#: ../../mod/admin.php:473
+#: ../../mod/admin.php:473 ../../mod/admin.php:695
msgid "ID"
msgstr "ID"
@@ -4337,149 +4477,137 @@ msgstr "Benutzer '%s' freigegeben"
msgid "User '%s' blocked"
msgstr "Benutzer '%s' blockiert"
-#: ../../mod/admin.php:650
-msgid "Normal Account"
-msgstr "Normales Konto"
-
-#: ../../mod/admin.php:651
-msgid "Soapbox Account"
-msgstr "Marktschreier Konto"
-
-#: ../../mod/admin.php:652
-msgid "Community/Celebrity Account"
-msgstr "Community/Celebrity Konto"
-
-#: ../../mod/admin.php:653
-msgid "Automatic Friend Account"
-msgstr "Automatisches Freundschafts- Konto"
-
-#: ../../mod/admin.php:671
+#: ../../mod/admin.php:684
msgid "select all"
msgstr "Alle auswählen"
-#: ../../mod/admin.php:672
+#: ../../mod/admin.php:685
msgid "User registrations waiting for confirm"
msgstr "Neuanmeldungen, die auf deine Bestätigung warten"
-#: ../../mod/admin.php:673
+#: ../../mod/admin.php:686
msgid "Request date"
msgstr "Antragsdatum"
-#: ../../mod/admin.php:674
+#: ../../mod/admin.php:687
msgid "No registrations."
msgstr "Keine Registrierungen."
-#: ../../mod/admin.php:675 ../../mod/intro.php:11 ../../mod/intro.php:98
+#: ../../mod/admin.php:688 ../../mod/intro.php:11 ../../mod/intro.php:98
#: ../../mod/notifications.php:159 ../../mod/notifications.php:206
msgid "Approve"
msgstr "Genehmigen"
-#: ../../mod/admin.php:676
+#: ../../mod/admin.php:689
msgid "Deny"
msgstr "Verweigern"
-#: ../../mod/admin.php:678 ../../mod/intro.php:14 ../../mod/intro.php:99
-#: ../../mod/connections.php:325 ../../mod/connections.php:466
+#: ../../mod/admin.php:691 ../../mod/intro.php:14 ../../mod/intro.php:99
+#: ../../mod/connections.php:348 ../../mod/connections.php:490
msgid "Block"
msgstr "Blockieren"
-#: ../../mod/admin.php:679 ../../mod/connections.php:325
-#: ../../mod/connections.php:466
+#: ../../mod/admin.php:692 ../../mod/connections.php:348
+#: ../../mod/connections.php:490
msgid "Unblock"
msgstr "Freigeben"
-#: ../../mod/admin.php:682
+#: ../../mod/admin.php:695
msgid "Register date"
msgstr "Registrierungs-Datum"
-#: ../../mod/admin.php:682
+#: ../../mod/admin.php:695
msgid "Last login"
msgstr "Letzte Anmeldung"
-#: ../../mod/admin.php:682
+#: ../../mod/admin.php:695
+msgid "Expires"
+msgstr "Verfällt"
+
+#: ../../mod/admin.php:695
msgid "Service Class"
msgstr "Service-Klasse"
-#: ../../mod/admin.php:684
+#: ../../mod/admin.php:697
msgid ""
"Selected users will be deleted!\\n\\nEverything these users had posted on "
"this site will be permanently deleted!\\n\\nAre you sure?"
msgstr "Markierte Nutzer werden gelöscht\\n\\nAlles was diese Nutzer auf dieser Seite veröffentlicht haben wird permanent gelöscht\\n\\nBist du sicher?"
-#: ../../mod/admin.php:685
+#: ../../mod/admin.php:698
msgid ""
"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
"site will be permanently deleted!\\n\\nAre you sure?"
msgstr "Der Nutzer {0} wird gelöscht\\n\\nAlles was dieser Nutzer auf dieser Seite veröffentlicht hat wird permanent gelöscht werden\\n\\nBist du sicher?"
-#: ../../mod/admin.php:726
+#: ../../mod/admin.php:739
#, php-format
msgid "Plugin %s disabled."
msgstr "Plug-In %s deaktiviert."
-#: ../../mod/admin.php:730
+#: ../../mod/admin.php:743
#, php-format
msgid "Plugin %s enabled."
msgstr "Plug-In %s aktiviert."
-#: ../../mod/admin.php:740 ../../mod/admin.php:942
+#: ../../mod/admin.php:753 ../../mod/admin.php:955
msgid "Disable"
msgstr "Deaktivieren"
-#: ../../mod/admin.php:742 ../../mod/admin.php:944
+#: ../../mod/admin.php:755 ../../mod/admin.php:957
msgid "Enable"
msgstr "Aktivieren"
-#: ../../mod/admin.php:768 ../../mod/admin.php:973
+#: ../../mod/admin.php:781 ../../mod/admin.php:986
msgid "Toggle"
msgstr "Umschalten"
-#: ../../mod/admin.php:776 ../../mod/admin.php:983
+#: ../../mod/admin.php:789 ../../mod/admin.php:996
msgid "Author: "
msgstr "Autor: "
-#: ../../mod/admin.php:777 ../../mod/admin.php:984
+#: ../../mod/admin.php:790 ../../mod/admin.php:997
msgid "Maintainer: "
msgstr "Betreuer:"
-#: ../../mod/admin.php:906
+#: ../../mod/admin.php:919
msgid "No themes found."
msgstr "Keine Theme gefunden."
-#: ../../mod/admin.php:965
+#: ../../mod/admin.php:978
msgid "Screenshot"
msgstr "Bildschirmfoto"
-#: ../../mod/admin.php:1013
+#: ../../mod/admin.php:1026
msgid "[Experimental]"
msgstr "[Experimentell]"
-#: ../../mod/admin.php:1014
+#: ../../mod/admin.php:1027
msgid "[Unsupported]"
msgstr "[Nicht unterstützt]"
-#: ../../mod/admin.php:1041
+#: ../../mod/admin.php:1054
msgid "Log settings updated."
msgstr "Protokoll-Einstellungen aktualisiert."
-#: ../../mod/admin.php:1097
+#: ../../mod/admin.php:1110
msgid "Clear"
msgstr "Leeren"
-#: ../../mod/admin.php:1103
+#: ../../mod/admin.php:1116
msgid "Debugging"
msgstr "Debugging"
-#: ../../mod/admin.php:1104
+#: ../../mod/admin.php:1117
msgid "Log file"
msgstr "Protokolldatei"
-#: ../../mod/admin.php:1104
+#: ../../mod/admin.php:1117
msgid ""
"Must be writable by web server. Relative to your Red top-level directory."
msgstr "Muss für den Web-Server schreibbar sein. Relativ zum Red Stammverzeichnis."
-#: ../../mod/admin.php:1105
+#: ../../mod/admin.php:1118
msgid "Log level"
msgstr "Protokollstufe"
@@ -4643,6 +4771,10 @@ msgstr "Alle verbundene Channels"
msgid "Click on a channel to add or remove."
msgstr "Wähle einen Kanal zum hinzufügen oder entfernen aus."
+#: ../../mod/search.php:20 ../../mod/network.php:164
+msgid "Remove term"
+msgstr "Eintrag löschen"
+
#: ../../mod/photos.php:83
msgid "Page owner information could not be retrieved."
msgstr "Informationen über den Betreiber der Seite konnten nicht gefunden werden."
@@ -4651,11 +4783,11 @@ msgstr "Informationen über den Betreiber der Seite konnten nicht gefunden werde
msgid "Album not found."
msgstr "Album nicht gefunden."
-#: ../../mod/photos.php:125 ../../mod/photos.php:788
+#: ../../mod/photos.php:125 ../../mod/photos.php:780
msgid "Delete Album"
msgstr "Album löschen"
-#: ../../mod/photos.php:165 ../../mod/photos.php:1053
+#: ../../mod/photos.php:165 ../../mod/photos.php:1041
msgid "Delete Photo"
msgstr "Foto löschen"
@@ -4672,111 +4804,111 @@ msgstr "Foto"
msgid "No photos selected"
msgstr "Keine Fotos ausgewählt"
-#: ../../mod/photos.php:640
+#: ../../mod/photos.php:631
msgid "Access to this item is restricted."
msgstr "Zugriff auf dieses Foto wurde eingeschränkt."
-#: ../../mod/photos.php:704
+#: ../../mod/photos.php:696
#, php-format
msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
msgstr "Du benutzt %1$.2f MBytes deines %2$.2f MBytes großen Bilder-Speichers."
-#: ../../mod/photos.php:707
+#: ../../mod/photos.php:699
#, php-format
msgid "You have used %1$.2f Mbytes of photo storage."
msgstr "Du verwendets %1$.2f MBytes deines Foto-Speichers."
-#: ../../mod/photos.php:715
+#: ../../mod/photos.php:707
msgid "Upload Photos"
msgstr "Fotos hochladen"
-#: ../../mod/photos.php:719 ../../mod/photos.php:783
+#: ../../mod/photos.php:711 ../../mod/photos.php:775
msgid "New album name: "
msgstr "Name des neuen Albums:"
-#: ../../mod/photos.php:720
+#: ../../mod/photos.php:712
msgid "or existing album name: "
msgstr "oder bestehenden Album Namen:"
-#: ../../mod/photos.php:721
+#: ../../mod/photos.php:713
msgid "Do not show a status post for this upload"
msgstr "Keine Statusnachricht für diesen Upload senden"
-#: ../../mod/photos.php:723 ../../mod/photos.php:1048
+#: ../../mod/photos.php:715 ../../mod/photos.php:1036
msgid "Permissions"
msgstr "Berechtigungen"
-#: ../../mod/photos.php:772 ../../mod/photos.php:794 ../../mod/photos.php:1223
-#: ../../mod/photos.php:1238
+#: ../../mod/photos.php:764 ../../mod/photos.php:786 ../../mod/photos.php:1212
+#: ../../mod/photos.php:1227
msgid "Contact Photos"
msgstr "Kontakt Bilder"
-#: ../../mod/photos.php:798
+#: ../../mod/photos.php:790
msgid "Edit Album"
msgstr "Album bearbeiten"
-#: ../../mod/photos.php:804
+#: ../../mod/photos.php:796
msgid "Show Newest First"
msgstr "Zeige neueste zuerst"
-#: ../../mod/photos.php:806
+#: ../../mod/photos.php:798
msgid "Show Oldest First"
msgstr "Zeige älteste zuerst"
-#: ../../mod/photos.php:850 ../../mod/photos.php:1270
+#: ../../mod/photos.php:842 ../../mod/photos.php:1259
msgid "View Photo"
msgstr "Foto ansehen"
-#: ../../mod/photos.php:894
+#: ../../mod/photos.php:886
msgid "Permission denied. Access to this item may be restricted."
msgstr "Berechtigung verweigert. Der Zugriff ist wahrscheinlich eingeschränkt worden."
-#: ../../mod/photos.php:896
+#: ../../mod/photos.php:888
msgid "Photo not available"
msgstr "Foto nicht verfügbar"
-#: ../../mod/photos.php:954
+#: ../../mod/photos.php:946
msgid "Use as profile photo"
msgstr "Als Profilfoto verwenden"
-#: ../../mod/photos.php:982
+#: ../../mod/photos.php:970
msgid "View Full Size"
msgstr "In voller Größe anzeigen"
-#: ../../mod/photos.php:1036
+#: ../../mod/photos.php:1024
msgid "Edit photo"
msgstr "Foto bearbeiten"
-#: ../../mod/photos.php:1038
+#: ../../mod/photos.php:1026
msgid "Rotate CW (right)"
msgstr "Drehen US (rechts)"
-#: ../../mod/photos.php:1039
+#: ../../mod/photos.php:1027
msgid "Rotate CCW (left)"
msgstr "Drehen EUS (links)"
-#: ../../mod/photos.php:1041
+#: ../../mod/photos.php:1029
msgid "New album name"
msgstr "Name des neuen Albums:"
-#: ../../mod/photos.php:1044
+#: ../../mod/photos.php:1032
msgid "Caption"
msgstr "Bildunterschrift"
-#: ../../mod/photos.php:1046
+#: ../../mod/photos.php:1034
msgid "Add a Tag"
msgstr "Schlagwort hinzufügen"
-#: ../../mod/photos.php:1050
+#: ../../mod/photos.php:1038
msgid ""
"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-#: ../../mod/photos.php:1276
+#: ../../mod/photos.php:1265
msgid "View Album"
msgstr "Album ansehen"
-#: ../../mod/photos.php:1285
+#: ../../mod/photos.php:1274
msgid "Recent Photos"
msgstr "Neueste Fotos"
@@ -4788,11 +4920,11 @@ msgstr "eine private Nachricht schicken"
msgid "added your channel"
msgstr "hat deinen Kanal hinzugefügt"
-#: ../../mod/ping.php:230 ../../boot.php:1827 ../../boot.php:1907
+#: ../../mod/ping.php:230 ../../boot.php:1858 ../../boot.php:1938
msgid "g A l F d"
msgstr "l, d. F G \\\\U\\\\h\\\\r"
-#: ../../mod/ping.php:252 ../../boot.php:1873 ../../boot.php:1948
+#: ../../mod/ping.php:252 ../../boot.php:1904 ../../boot.php:1979
msgid "[today]"
msgstr "[Heute]"
@@ -4829,7 +4961,7 @@ msgid "Drop"
msgstr "Löschen"
#: ../../mod/menu.php:57 ../../mod/network.php:321
-#: ../../mod/connections.php:528
+#: ../../mod/connections.php:552
msgid "New"
msgstr "Neu"
@@ -4890,77 +5022,93 @@ msgstr "Einträge zu diesem Menü hinzufügen oder entfernen"
msgid "Welcome to %s"
msgstr "Willkommen auf %s"
-#: ../../mod/message.php:16
+#: ../../mod/message.php:19
msgid "Check Mail"
msgstr "E-Mails abrufen"
-#: ../../mod/message.php:52
+#: ../../mod/message.php:56
msgid "Unable to lookup recipient."
msgstr "Konnte den Empfänger nicht finden."
-#: ../../mod/message.php:60
+#: ../../mod/message.php:64
msgid "Unable to communicate with requested channel."
msgstr "Die Kommunikation mit dem ausgewählten Kanal ist fehlgeschlagen."
-#: ../../mod/message.php:67
+#: ../../mod/message.php:71
msgid "Cannot verify requested channel."
msgstr "Verifizierung des angeforderten Kanals fehlgeschlagen."
-#: ../../mod/message.php:93
+#: ../../mod/message.php:97
msgid "Selected channel has private message restrictions. Send failed."
msgstr "Der ausgewählte Kanal hat Einschränkungen bzgl. privater Nachrichten. Senden fehlgeschlagen."
-#: ../../mod/message.php:213 ../../mod/notifications.php:101
+#: ../../mod/message.php:223 ../../mod/notifications.php:101
msgid "Messages"
msgstr "Nachrichten"
-#: ../../mod/message.php:224
+#: ../../mod/message.php:234
msgid "Message deleted."
msgstr "Nachricht gelöscht."
-#: ../../mod/message.php:231
+#: ../../mod/message.php:241
msgid "Conversation removed."
msgstr "Unterhaltung gelöscht."
-#: ../../mod/message.php:287
+#: ../../mod/message.php:258
+msgid "Message recalled."
+msgstr "Nachricht widerrufen."
+
+#: ../../mod/message.php:316
msgid "Send Private Message"
msgstr "Private Nachricht senden"
-#: ../../mod/message.php:288 ../../mod/message.php:453
+#: ../../mod/message.php:317 ../../mod/message.php:503
msgid "To:"
msgstr "An:"
-#: ../../mod/message.php:293 ../../mod/message.php:455
+#: ../../mod/message.php:322 ../../mod/message.php:505
msgid "Subject:"
msgstr "Betreff:"
-#: ../../mod/message.php:322
+#: ../../mod/message.php:359
msgid "No messages."
msgstr "Keine Nachrichten."
-#: ../../mod/message.php:338 ../../mod/message.php:424
+#: ../../mod/message.php:375 ../../mod/message.php:472
msgid "Delete message"
msgstr "Nachricht löschen"
-#: ../../mod/message.php:340
+#: ../../mod/message.php:377
msgid "D, d M Y - g:i A"
msgstr "D, d. M Y - g:i A"
-#: ../../mod/message.php:359
+#: ../../mod/message.php:396
msgid "Message not found."
msgstr "Nachricht nicht gefunden."
-#: ../../mod/message.php:446
+#: ../../mod/message.php:473
+msgid "Recall message"
+msgstr "Widerrufe die Nachricht"
+
+#: ../../mod/message.php:475
+msgid "Message has been recalled."
+msgstr "Die Nachricht wurde widerrufen."
+
+#: ../../mod/message.php:492
+msgid "Private Conversation"
+msgstr "Private Unterhaltung"
+
+#: ../../mod/message.php:496
msgid "Delete conversation"
msgstr "Unterhaltung löschen"
-#: ../../mod/message.php:448
+#: ../../mod/message.php:498
msgid ""
"No secure communications available. You <strong>may</strong> be able to "
"respond from the sender's profile page."
msgstr "Keine sichere Kommunikation verfügbar. <strong>Eventuell</strong> kannst du von der Profilseite des Absenders antworten."
-#: ../../mod/message.php:452
+#: ../../mod/message.php:502
msgid "Send Reply"
msgstr "Antwort senden"
@@ -4968,18 +5116,26 @@ msgstr "Antwort senden"
msgid "No profile"
msgstr "Kein Profil"
-#: ../../mod/help.php:30
+#: ../../mod/layouts.php:52
+msgid "Layout Help"
+msgstr "Layout Hilfe"
+
+#: ../../mod/layouts.php:55
+msgid "Help with this feature"
+msgstr "Hilfe zu diesem Feature"
+
+#: ../../mod/layouts.php:74
+msgid "Layout Name"
+msgstr "Layout Name"
+
+#: ../../mod/help.php:41
msgid "Help:"
msgstr "Hilfe:"
-#: ../../mod/help.php:38 ../../index.php:226
+#: ../../mod/help.php:53 ../../index.php:226
msgid "Not Found"
msgstr "Nicht gefunden"
-#: ../../mod/help.php:41 ../../index.php:229
-msgid "Page not found."
-msgstr "Seite nicht gefunden."
-
#: ../../mod/rmagic.php:56
msgid "Remote Authentication"
msgstr "Entfernte Authentifizierung"
@@ -4992,10 +5148,6 @@ msgstr "Geben Sie Ihre Kanal-Adresse (z.B. channel@example.com)"
msgid "Authenticate"
msgstr "Authentifizieren"
-#: ../../mod/network.php:164 ../../mod/search.php:20
-msgid "Remove term"
-msgstr "Eintrag löschen"
-
#: ../../mod/network.php:302
msgid "Commented Order"
msgstr "Neueste Kommentare"
@@ -5044,11 +5196,11 @@ msgstr "Nachrichten die als SPAM markiert wurden"
msgid "Refresh"
msgstr "Aktualisieren"
-#: ../../mod/network.php:385 ../../mod/connections.php:381
+#: ../../mod/network.php:385 ../../mod/connections.php:404
msgid "Me"
msgstr "Ich"
-#: ../../mod/network.php:386 ../../mod/connections.php:383
+#: ../../mod/network.php:386 ../../mod/connections.php:406
msgid "Best Friends"
msgstr "Beste Freunde"
@@ -5056,11 +5208,11 @@ msgstr "Beste Freunde"
msgid "Co-workers"
msgstr "Kollegen"
-#: ../../mod/network.php:389 ../../mod/connections.php:385
+#: ../../mod/network.php:389 ../../mod/connections.php:408
msgid "Former Friends"
msgstr "ehem. Freunde"
-#: ../../mod/network.php:390 ../../mod/connections.php:386
+#: ../../mod/network.php:390 ../../mod/connections.php:409
msgid "Acquaintances"
msgstr "Bekanntschaften"
@@ -5085,13 +5237,13 @@ msgid "Invalid connection."
msgstr "Ungültige Verbindung."
#: ../../mod/intro.php:17 ../../mod/intro.php:100
-#: ../../mod/connections.php:332 ../../mod/connections.php:467
+#: ../../mod/connections.php:355 ../../mod/connections.php:491
#: ../../mod/notifications.php:51 ../../mod/notifications.php:162
#: ../../mod/notifications.php:208
msgid "Ignore"
msgstr "Ignorieren"
-#: ../../mod/intro.php:29 ../../mod/connections.php:119
+#: ../../mod/intro.php:29 ../../mod/connections.php:122
msgid "Connection updated."
msgstr "Verbindung aktualisiert."
@@ -5111,7 +5263,7 @@ msgstr "Keine wartenden Vorstellungen."
msgid "System error. Please try again later."
msgstr "Systemfehler. Bitte später erneut versuchen."
-#: ../../mod/intro.php:95 ../../mod/connections.php:472
+#: ../../mod/intro.php:95 ../../mod/connections.php:496
#: ../../mod/notifications.php:155 ../../mod/notifications.php:202
msgid "Hide this contact from others"
msgstr "Diese Verbindung vor den anderen verbergen."
@@ -5131,381 +5283,385 @@ msgstr "falls anwendbar"
msgid "Discard"
msgstr "Verwerfen"
-#: ../../mod/connections.php:64
+#: ../../mod/connections.php:67
msgid "Could not access contact record."
msgstr "Konnte auf den Kontakteintrag nicht zugreifen."
-#: ../../mod/connections.php:78
+#: ../../mod/connections.php:81
msgid "Could not locate selected profile."
msgstr "Konnte das gewählte Profil nicht finden."
-#: ../../mod/connections.php:121
+#: ../../mod/connections.php:124
msgid "Failed to update connection record."
msgstr "Konnte den Verbindungseintrag nicht aktualisieren."
-#: ../../mod/connections.php:196
+#: ../../mod/connections.php:219
msgid "Could not access address book record."
msgstr "Konnte nicht auf den Eintrag im Adressbuch zugreifen."
-#: ../../mod/connections.php:210
+#: ../../mod/connections.php:233
msgid "Refresh failed - channel is currently unavailable."
msgstr "Aktualisierung fehlgeschlagen - der Kanal ist im Moment nicht erreichbar."
-#: ../../mod/connections.php:217
+#: ../../mod/connections.php:240
msgid "Channel has been unblocked"
msgstr "Kanal nicht mehr blockiert"
-#: ../../mod/connections.php:218
+#: ../../mod/connections.php:241
msgid "Channel has been blocked"
msgstr "Kanal blockiert"
-#: ../../mod/connections.php:222 ../../mod/connections.php:234
-#: ../../mod/connections.php:246 ../../mod/connections.php:258
-#: ../../mod/connections.php:273
+#: ../../mod/connections.php:245 ../../mod/connections.php:257
+#: ../../mod/connections.php:269 ../../mod/connections.php:281
+#: ../../mod/connections.php:296
msgid "Unable to set address book parameters."
msgstr "Konnte die Adressbuch Parameter nicht setzen."
-#: ../../mod/connections.php:229
+#: ../../mod/connections.php:252
msgid "Channel has been unignored"
msgstr "Kanal wird nicht mehr ignoriert"
-#: ../../mod/connections.php:230
+#: ../../mod/connections.php:253
msgid "Channel has been ignored"
msgstr "Kanal wird ignoriert"
-#: ../../mod/connections.php:241
+#: ../../mod/connections.php:264
msgid "Channel has been unarchived"
msgstr "Kanal wurde aus dem Archiv zurück geholt"
-#: ../../mod/connections.php:242
+#: ../../mod/connections.php:265
msgid "Channel has been archived"
msgstr "Kanal wurde archiviert"
-#: ../../mod/connections.php:253
+#: ../../mod/connections.php:276
msgid "Channel has been unhidden"
msgstr "Kanal wird nicht mehr versteckt"
-#: ../../mod/connections.php:254
+#: ../../mod/connections.php:277
msgid "Channel has been hidden"
msgstr "Kanal wurde versteckt"
-#: ../../mod/connections.php:268
+#: ../../mod/connections.php:291
msgid "Channel has been approved"
msgstr "Kanal wurde zugelassen"
-#: ../../mod/connections.php:269
+#: ../../mod/connections.php:292
msgid "Channel has been unapproved"
msgstr "Zulassung des Kanals entfernt"
-#: ../../mod/connections.php:287
+#: ../../mod/connections.php:310
msgid "Contact has been removed."
msgstr "Kontakt wurde entfernt."
-#: ../../mod/connections.php:307
+#: ../../mod/connections.php:330
#, php-format
msgid "View %s's profile"
msgstr "%s's Profil ansehen"
-#: ../../mod/connections.php:311
+#: ../../mod/connections.php:334
msgid "Refresh Permissions"
msgstr "Zugriffsrechte auffrischen"
-#: ../../mod/connections.php:314
+#: ../../mod/connections.php:337
msgid "Fetch updated permissions"
msgstr "Aktualisierte Zugriffsrechte abfragen"
-#: ../../mod/connections.php:318
+#: ../../mod/connections.php:341
msgid "Recent Activity"
msgstr "Kürzliche Aktivitäten"
-#: ../../mod/connections.php:321
+#: ../../mod/connections.php:344
msgid "View recent posts and comments"
msgstr "Betrachte die neuesten Beiträge und Kommentare"
-#: ../../mod/connections.php:328
+#: ../../mod/connections.php:351
msgid "Block or Unblock this connection"
msgstr "Verbindung blockieren oder frei geben"
-#: ../../mod/connections.php:332 ../../mod/connections.php:467
+#: ../../mod/connections.php:355 ../../mod/connections.php:491
msgid "Unignore"
msgstr "Nicht ignorieren"
-#: ../../mod/connections.php:335
+#: ../../mod/connections.php:358
msgid "Ignore or Unignore this connection"
msgstr "Verbindung ignorieren oder wieder beachten"
-#: ../../mod/connections.php:338
+#: ../../mod/connections.php:361
msgid "Unarchive"
msgstr "Aus Archiv zurückholen"
-#: ../../mod/connections.php:338
+#: ../../mod/connections.php:361
msgid "Archive"
msgstr "Archivieren"
-#: ../../mod/connections.php:341
+#: ../../mod/connections.php:364
msgid "Archive or Unarchive this connection"
msgstr "Archiviere diese Verbindung oder hole sie aus dem Archiv zurück"
-#: ../../mod/connections.php:344
+#: ../../mod/connections.php:367
msgid "Unhide"
msgstr "aufdecken"
-#: ../../mod/connections.php:344
+#: ../../mod/connections.php:367
msgid "Hide"
msgstr "Verbergen"
-#: ../../mod/connections.php:347
+#: ../../mod/connections.php:370
msgid "Hide or Unhide this connection"
msgstr "Diese Verbindung verstecken oder aufdecken"
-#: ../../mod/connections.php:354
+#: ../../mod/connections.php:377
msgid "Delete this connection"
msgstr "Verbindung löschen"
-#: ../../mod/connections.php:387
+#: ../../mod/connections.php:410
msgid "Unknown"
msgstr "Unbekannt"
-#: ../../mod/connections.php:397 ../../mod/connections.php:425
+#: ../../mod/connections.php:420 ../../mod/connections.php:449
msgid "Approve this connection"
msgstr "Verbindung genehmigen"
-#: ../../mod/connections.php:397
+#: ../../mod/connections.php:420
msgid "Accept connection to allow communication"
msgstr "Aktzeptiere die Verbindung um Kommunikation zu ermöglichen"
-#: ../../mod/connections.php:413
+#: ../../mod/connections.php:436
msgid "Automatic Permissions Settings"
msgstr "Automatische Berechtigungs-Einstellungen"
-#: ../../mod/connections.php:413
+#: ../../mod/connections.php:436
#, php-format
msgid "Connections: settings for %s"
msgstr "Verbindungseinstellungen für %s"
-#: ../../mod/connections.php:417
+#: ../../mod/connections.php:440
msgid ""
"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."
msgstr "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."
-#: ../../mod/connections.php:419
+#: ../../mod/connections.php:442
msgid "Slide to adjust your degree of friendship"
msgstr "Schieben um den Grad der Freundschaft zu wählen"
-#: ../../mod/connections.php:426
+#: ../../mod/connections.php:448
+msgid "inherited"
+msgstr "Geerbt"
+
+#: ../../mod/connections.php:450
msgid "Connection has no individual permissions!"
msgstr "Diese Verbindung hat keine individuellen Zugriffseinstellungen."
-#: ../../mod/connections.php:427
+#: ../../mod/connections.php:451
msgid ""
"This may be appropriate based on your <a href=\"settings\">privacy "
"settings</a>, though you may wish to review the \"Advanced Permissions\"."
msgstr "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."
-#: ../../mod/connections.php:429
+#: ../../mod/connections.php:453
msgid "Profile Visibility"
msgstr "Sichtbarkeit des Profils"
-#: ../../mod/connections.php:430
+#: ../../mod/connections.php:454
#, php-format
msgid ""
"Please choose the profile you would like to display to %s when viewing your "
"profile securely."
msgstr "Bitte wähle ein Profil, das wir %s zeigen sollen, wenn deine Profilseite über eine verifizierte Verbindung aufgerufen wird."
-#: ../../mod/connections.php:431
+#: ../../mod/connections.php:455
msgid "Contact Information / Notes"
msgstr "Kontaktinformationen / Notizen"
-#: ../../mod/connections.php:432
+#: ../../mod/connections.php:456
msgid "Edit contact notes"
msgstr "Kontaktnotizen editieren"
-#: ../../mod/connections.php:434
+#: ../../mod/connections.php:458
msgid "Their Settings"
msgstr "Deren Einstellungen"
-#: ../../mod/connections.php:435
+#: ../../mod/connections.php:459
msgid "My Settings"
msgstr "Meine Einstellungen"
-#: ../../mod/connections.php:437
+#: ../../mod/connections.php:461
msgid "Forum Members"
msgstr "Forum Mitglieder"
-#: ../../mod/connections.php:438
+#: ../../mod/connections.php:462
msgid "Soapbox"
msgstr "Marktschreier"
-#: ../../mod/connections.php:439
+#: ../../mod/connections.php:463
msgid "Full Sharing"
msgstr "Volles Teilen"
-#: ../../mod/connections.php:440
+#: ../../mod/connections.php:464
msgid "Cautious Sharing"
msgstr "Vorsichtiges Teilen"
-#: ../../mod/connections.php:441
+#: ../../mod/connections.php:465
msgid "Follow Only"
msgstr "Nur Folgen"
-#: ../../mod/connections.php:442
+#: ../../mod/connections.php:466
msgid "Individual Permissions"
msgstr "Individuelle Zugriffseinstellungen"
-#: ../../mod/connections.php:443
+#: ../../mod/connections.php:467
msgid ""
-"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."
-msgstr "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."
+"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."
+msgstr ""
-#: ../../mod/connections.php:444
+#: ../../mod/connections.php:468
msgid "Advanced Permissions"
msgstr "Erweiterte Zugriffsrechte"
-#: ../../mod/connections.php:445
+#: ../../mod/connections.php:469
msgid "Quick Links"
msgstr "Quick Links"
-#: ../../mod/connections.php:449
+#: ../../mod/connections.php:473
#, php-format
msgid "Visit %s's profile - %s"
msgstr "%s's Profil besuchen - %s"
-#: ../../mod/connections.php:450
+#: ../../mod/connections.php:474
msgid "Block/Unblock contact"
msgstr "Geblockt Status ein- / ausschalten"
-#: ../../mod/connections.php:451
+#: ../../mod/connections.php:475
msgid "Ignore contact"
msgstr "Kontakt ignorieren"
-#: ../../mod/connections.php:452
+#: ../../mod/connections.php:476
msgid "Repair URL settings"
msgstr "URL Einstellungen reparieren"
-#: ../../mod/connections.php:453
+#: ../../mod/connections.php:477
msgid "View conversations"
msgstr "Unterhaltungen anzeigen"
-#: ../../mod/connections.php:455
+#: ../../mod/connections.php:479
msgid "Delete contact"
msgstr "Kontakt löschen"
-#: ../../mod/connections.php:458
+#: ../../mod/connections.php:482
msgid "Last update:"
msgstr "Letzte Aktualisierung:"
-#: ../../mod/connections.php:460
+#: ../../mod/connections.php:484
msgid "Update public posts"
msgstr "Öffentliche Beiträge aktualisieren"
-#: ../../mod/connections.php:462
+#: ../../mod/connections.php:486
msgid "Update now"
msgstr "Jetzt aktualisieren"
-#: ../../mod/connections.php:468
+#: ../../mod/connections.php:492
msgid "Currently blocked"
msgstr "Derzeit blockiert"
-#: ../../mod/connections.php:469
+#: ../../mod/connections.php:493
msgid "Currently ignored"
msgstr "Derzeit ignoriert"
-#: ../../mod/connections.php:470
+#: ../../mod/connections.php:494
msgid "Currently archived"
msgstr "Derzeit archiviert"
-#: ../../mod/connections.php:471
+#: ../../mod/connections.php:495
msgid "Currently pending"
msgstr "Derzeit anstehend"
-#: ../../mod/connections.php:472
+#: ../../mod/connections.php:496
msgid ""
"Replies/likes to your public posts <strong>may</strong> still be visible"
msgstr "Antworten/Likes auf deine öffentlichen Beiträge <strong>können</strong> immer noch sichtbar sein"
-#: ../../mod/connections.php:508 ../../mod/connections.php:580
+#: ../../mod/connections.php:532 ../../mod/connections.php:604
msgid "Blocked"
msgstr "Blockiert"
-#: ../../mod/connections.php:513 ../../mod/connections.php:587
+#: ../../mod/connections.php:537 ../../mod/connections.php:611
msgid "Ignored"
msgstr "Ignoriert"
-#: ../../mod/connections.php:518 ../../mod/connections.php:601
+#: ../../mod/connections.php:542 ../../mod/connections.php:625
msgid "Hidden"
msgstr "Versteckt"
-#: ../../mod/connections.php:523 ../../mod/connections.php:594
+#: ../../mod/connections.php:547 ../../mod/connections.php:618
msgid "Archived"
msgstr "Archiviert"
-#: ../../mod/connections.php:534
+#: ../../mod/connections.php:558
msgid "All"
msgstr "Alle"
-#: ../../mod/connections.php:555
+#: ../../mod/connections.php:579
msgid "Suggestions"
msgstr "Vorschläge"
-#: ../../mod/connections.php:558
+#: ../../mod/connections.php:582
msgid "Suggest new connections"
msgstr "Neue Verbindungen vorschlagen"
-#: ../../mod/connections.php:564
+#: ../../mod/connections.php:588
msgid "Show pending (new) connections"
msgstr "Zeige schwebende (neue) Verbindungen"
-#: ../../mod/connections.php:567
+#: ../../mod/connections.php:591
msgid "All Connections"
msgstr "Alle Verbindungen"
-#: ../../mod/connections.php:570
+#: ../../mod/connections.php:594
msgid "Show all connections"
msgstr "Zeige alle Verbindungen"
-#: ../../mod/connections.php:573
+#: ../../mod/connections.php:597
msgid "Unblocked"
msgstr "Freigegeben"
-#: ../../mod/connections.php:576
+#: ../../mod/connections.php:600
msgid "Only show unblocked connections"
msgstr "Zeige nur freigegebene Verbindungen"
-#: ../../mod/connections.php:583
+#: ../../mod/connections.php:607
msgid "Only show blocked connections"
msgstr "Zeige nur blockierte Verbindungen"
-#: ../../mod/connections.php:590
+#: ../../mod/connections.php:614
msgid "Only show ignored connections"
msgstr "Zeige nur ignorierte Verbindungen"
-#: ../../mod/connections.php:597
+#: ../../mod/connections.php:621
msgid "Only show archived connections"
msgstr "Zeige nur archivierte Verbindungen"
-#: ../../mod/connections.php:604
+#: ../../mod/connections.php:628
msgid "Only show hidden connections"
msgstr "Zeige nur versteckte Verbindungen"
-#: ../../mod/connections.php:646
+#: ../../mod/connections.php:670
#, php-format
msgid "%1$s [%2$s]"
msgstr "%1$s [%2$s]"
-#: ../../mod/connections.php:647 ../../mod/nogroup.php:41
+#: ../../mod/connections.php:671 ../../mod/nogroup.php:41
msgid "Edit contact"
msgstr "Kontakt bearbeiten"
-#: ../../mod/connections.php:671
+#: ../../mod/connections.php:695
msgid "Search your connections"
msgstr "Verbindungen durchsuchen"
-#: ../../mod/connections.php:672
+#: ../../mod/connections.php:696
msgid "Finding: "
msgstr "Ergebnisse:"
@@ -5594,7 +5750,7 @@ msgstr "Hobbys/Interessen"
msgid "Address"
msgstr "Adresse"
-#: ../../mod/profiles.php:367
+#: ../../mod/profiles.php:367 ../../mod/pubsites.php:31
msgid "Location"
msgstr "Ort"
@@ -5757,7 +5913,7 @@ msgid ""
"be visible to anybody using the internet."
msgstr "Dies ist Dein <strong>öffentliches</strong> Profil.<br />Es <strong>könnte</strong> für jeden im Internet sichtbar sein."
-#: ../../mod/profiles.php:584 ../../mod/directory.php:145
+#: ../../mod/profiles.php:584 ../../mod/directory.php:160
msgid "Age: "
msgstr "Alter:"
@@ -5765,23 +5921,23 @@ msgstr "Alter:"
msgid "Edit/Manage Profiles"
msgstr "Bearbeite/Verwalte Profile"
-#: ../../mod/profiles.php:624 ../../boot.php:1724
+#: ../../mod/profiles.php:624 ../../boot.php:1755
msgid "Change profile photo"
msgstr "Ändere das Profilfoto"
-#: ../../mod/profiles.php:625 ../../boot.php:1731
+#: ../../mod/profiles.php:625 ../../boot.php:1762
msgid "Create New Profile"
msgstr "Neues Profil erstellen"
-#: ../../mod/profiles.php:636 ../../boot.php:1745
+#: ../../mod/profiles.php:636 ../../boot.php:1776
msgid "Profile Image"
msgstr "Profilfoto:"
-#: ../../mod/profiles.php:639 ../../boot.php:1748
+#: ../../mod/profiles.php:639 ../../boot.php:1779
msgid "visible to everybody"
msgstr "sichtbar für jeden"
-#: ../../mod/profiles.php:640 ../../boot.php:1749
+#: ../../mod/profiles.php:640 ../../boot.php:1780
msgid "Edit visibility"
msgstr "Sichtbarkeit bearbeiten"
@@ -5859,7 +6015,7 @@ msgid ""
"Password reset failed."
msgstr "Die Anfrage konnte nicht verifiziert werden. (Es könnte sein, dass du vorher bereits eine Anfrage eingereicht hast.) Passwort Anforderung fehlgeschlagen."
-#: ../../mod/lostpass.php:85 ../../boot.php:1446
+#: ../../mod/lostpass.php:85 ../../boot.php:1469
msgid "Password Reset"
msgstr "Zurücksetzen des Kennworts"
@@ -5985,32 +6141,32 @@ msgstr "Egal welche Option du wählst, bitte lege fest, ob dieser Hub deine neue
msgid "Make this hub my primary location"
msgstr "Dieser Hub ist mein primärer Server."
-#: ../../mod/manage.php:62
+#: ../../mod/manage.php:63
#, php-format
msgid "You have created %1$.0f of %2$.0f allowed channels."
msgstr "Du hast %1$.0f von %2$.0f erlaubten Kanälen eingerichtet."
-#: ../../mod/manage.php:70
+#: ../../mod/manage.php:71
msgid "Create a new channel"
msgstr "Erzeuge neues Kanal"
-#: ../../mod/manage.php:75
+#: ../../mod/manage.php:76
msgid "Channel Manager"
msgstr "Kanal-Manager"
-#: ../../mod/manage.php:76
+#: ../../mod/manage.php:77
msgid "Current Channel"
msgstr "Aktueller Kanal"
-#: ../../mod/manage.php:78
+#: ../../mod/manage.php:79
msgid "Attach to one of your channels by selecting it."
msgstr "Wähle einen deiner Kanäle aus um ihn zu verwenden."
-#: ../../mod/manage.php:79
+#: ../../mod/manage.php:80
msgid "Default Channel"
msgstr "Standard Kanal"
-#: ../../mod/manage.php:80
+#: ../../mod/manage.php:81
msgid "Make Default"
msgstr "Zum Standard machen"
@@ -6121,21 +6277,21 @@ msgid "Edit Layout"
msgstr "Layout bearbeiten"
#: ../../mod/editlayout.php:104 ../../mod/editwebpage.php:123
-#: ../../mod/editpost.php:98 ../../mod/editblock.php:118
+#: ../../mod/editpost.php:101 ../../mod/editblock.php:118
msgid "Insert YouTube video"
msgstr "YouTube-Video einfügen"
#: ../../mod/editlayout.php:105 ../../mod/editwebpage.php:124
-#: ../../mod/editpost.php:99 ../../mod/editblock.php:119
+#: ../../mod/editpost.php:102 ../../mod/editblock.php:119
msgid "Insert Vorbis [.ogg] video"
msgstr "Vorbis [.ogg]-Video einfügen"
#: ../../mod/editlayout.php:106 ../../mod/editwebpage.php:125
-#: ../../mod/editpost.php:100 ../../mod/editblock.php:120
+#: ../../mod/editpost.php:103 ../../mod/editblock.php:120
msgid "Insert Vorbis [.ogg] audio"
msgstr "Vorbis [.ogg]-Audio einfügen"
-#: ../../mod/editlayout.php:137
+#: ../../mod/editlayout.php:140
msgid "Delete Layout"
msgstr "Layout löschen"
@@ -6223,7 +6379,7 @@ msgstr "Reduzierung der Bildgröße [%s] fehlgeschlagen."
msgid "Edit Webpage"
msgstr "Webseite bearbeiten"
-#: ../../mod/editwebpage.php:158
+#: ../../mod/editwebpage.php:162
msgid "Delete Webpage"
msgstr "Webseite löschen"
@@ -6361,7 +6517,15 @@ msgstr "Keine Pinwand-Benachrichtigungen mehr."
msgid "Home Notifications"
msgstr "Pinwand-Benachrichtigungen"
-#: ../../mod/oexchange.php:22
+#: ../../mod/blocks.php:65
+msgid "Block Name"
+msgstr "Block Name"
+
+#: ../../mod/oexchange.php:23
+msgid "Unable to find your hub."
+msgstr "Konnte den Hub nicht finden."
+
+#: ../../mod/oexchange.php:37
msgid "Post successful."
msgstr "Veröffentlichung erfolgreich."
@@ -6369,10 +6533,6 @@ msgstr "Veröffentlichung erfolgreich."
msgid "Item is not editable"
msgstr "Element kann nicht bearbeitet werden."
-#: ../../mod/editpost.php:40
-msgid "Edit post"
-msgstr "Bearbeite Beitrag"
-
#: ../../mod/profile.php:111
msgid "Access to this profile has been restricted."
msgstr "Der Zugang zu diesem Profil ist begrenzt."
@@ -6397,10 +6557,14 @@ msgstr "Wähle was du mit dem/r Empfänger/in tun willst"
msgid "Make this post private"
msgstr "Diesen Beitrag privat machen"
-#: ../../mod/wall_upload.php:41 ../../mod/item.php:1098
+#: ../../mod/wall_upload.php:41 ../../mod/item.php:1074
msgid "Wall Photos"
msgstr "Wall Fotos"
+#: ../../mod/channel.php:120
+msgid "Insufficient permissions. Request redirected to profile page."
+msgstr "Unzureichende Zugriffsrechte. Die Anfrage wurde zur Profil-Seite umgeleitet."
+
#: ../../mod/community.php:23
msgid "Not available."
msgstr "Nicht verfügbar."
@@ -6434,7 +6598,7 @@ msgstr "Schlage %s einen Kontakt vor"
msgid "Edit Block"
msgstr "Block bearbeiten"
-#: ../../mod/editblock.php:153
+#: ../../mod/editblock.php:156
msgid "Delete Block"
msgstr "Block löschen"
@@ -6458,28 +6622,28 @@ msgstr "Sichtbar für"
msgid "All Contacts (with secure profile access)"
msgstr "Alle Kontakte (mit sicherem Zuging zum Profil)"
-#: ../../mod/item.php:133
+#: ../../mod/item.php:144
msgid "Unable to locate original post."
msgstr "Originalbeitrag kann nicht gefunden werden."
-#: ../../mod/item.php:317
+#: ../../mod/item.php:341
msgid "Empty post discarded."
msgstr "Leerer Beitrag verworfen."
-#: ../../mod/item.php:361
+#: ../../mod/item.php:383
msgid "Executable content type not permitted to this channel."
msgstr "Ausführbarer Content-Typ ist für diesen Kanal nicht freigegeben."
-#: ../../mod/item.php:813
+#: ../../mod/item.php:793
msgid "System error. Post not saved."
msgstr "Systemfehler. Beitrag nicht gespeichert."
-#: ../../mod/item.php:1177
+#: ../../mod/item.php:1153
#, php-format
msgid "You have reached your limit of %1$.0f top level posts."
msgstr "Du hast die maximale Anzahl von %1$.0f Beiträgen erreicht."
-#: ../../mod/item.php:1183
+#: ../../mod/item.php:1159
#, php-format
msgid "You have reached your limit of %1$.0f webpages."
msgstr "Du hast die maximale Anzahl von %1$.0f Webseiten erreicht."
@@ -6503,9 +6667,9 @@ msgstr "Red"
#: ../../mod/siteinfo.php:82
msgid ""
-"This is Red - another decentralized, distributed communications project by "
-"the folks at Friendica."
-msgstr "Dies ist Red - ein anderes dezentralisiertes, verteiltest Kommunikationsprojekt von den Machern von Friendica."
+"This is a hub of the Red Matrix - a global cooperative network of "
+"decentralised privacy enhanced websites."
+msgstr ""
#: ../../mod/siteinfo.php:84
msgid "Running at web location"
@@ -6513,9 +6677,9 @@ msgstr "Erreichbar unter der Web-Adresse"
#: ../../mod/siteinfo.php:85
msgid ""
-"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
-"more about the Friendica and/or Red project."
-msgstr "Bitte besuche <a href=\"http://friendica.com\">Friendica.com</a> um mehr über das Friendica und/oder Red Projekt zu erfahren."
+"Please visit <a href=\"http://getzot.com\">GetZot.com</a> to learn more "
+"about the Red Matrix."
+msgstr "Besuche <a href=\"http://getzot.com\">GetZot.com</a> um mehr über die Red Matrix zu erfahren."
#: ../../mod/siteinfo.php:86
msgid "Bug reports and issues: please visit"
@@ -6523,9 +6687,9 @@ msgstr "Probleme oder Fehler gefunden? Bitte besuche"
#: ../../mod/siteinfo.php:89
msgid ""
-"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
-"dot com"
-msgstr "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com"
+"Suggestions, praise, donations, etc. - please email \"redmatrix\" at "
+"librelist - dot com"
+msgstr "Vorschläge, Lob, Spenden usw.: E-Mail an 'redmatrix' at librelist - dot - com"
#: ../../mod/suggest.php:41
msgid ""
@@ -6541,82 +6705,91 @@ msgstr "Ignorieren/Verstecken"
msgid "Public Sites"
msgstr "Öffentliche Seiten"
-#: ../../mod/pubsites.php:28
+#: ../../mod/pubsites.php:25
+msgid ""
+"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."
+msgstr "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."
+
+#: ../../mod/pubsites.php:31
msgid "Site URL"
msgstr "URL der Seite"
-#: ../../mod/pubsites.php:28
+#: ../../mod/pubsites.php:31
msgid "Access Type"
msgstr "Zugangs Typ"
-#: ../../mod/pubsites.php:28
+#: ../../mod/pubsites.php:31
msgid "Registration Policy"
msgstr "Registrierungsrichtlinien"
-#: ../../mod/register.php:35
+#: ../../mod/register.php:43
msgid "Maximum daily site registrations exceeded. Please try again tomorrow."
msgstr "Maximale Anzahl von Neuanmeldungen erreicht. Bitte versuche es morgen noch einmal."
-#: ../../mod/register.php:41
+#: ../../mod/register.php:49
msgid ""
"Please indicate acceptance of the Terms of Service. Registration failed."
msgstr "Bitte stimme den Nutzungsbedingungen zu. Anmeldung fehlgeschlagen."
-#: ../../mod/register.php:69
+#: ../../mod/register.php:77
msgid "Passwords do not match."
msgstr "Passwörter stimmen nicht überein."
-#: ../../mod/register.php:97
+#: ../../mod/register.php:105
msgid ""
"Registration successful. Please check your email for validation "
"instructions."
msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an dich gesendet."
-#: ../../mod/register.php:103
+#: ../../mod/register.php:111
msgid "Your registration is pending approval by the site owner."
msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."
-#: ../../mod/register.php:106
+#: ../../mod/register.php:114
msgid "Your registration can not be processed."
msgstr "Deine Registrierung konnte nicht verarbeitet werden."
-#: ../../mod/register.php:141
+#: ../../mod/register.php:149
msgid ""
"This site has exceeded the number of allowed daily account registrations. "
"Please try again tomorrow."
msgstr "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal."
-#: ../../mod/register.php:152
+#: ../../mod/register.php:160
msgid "Terms of Service"
msgstr "Nutzungsbedingungen"
-#: ../../mod/register.php:158
+#: ../../mod/register.php:166
#, php-format
msgid "I accept the %s for this website"
msgstr "Ich akzeptiere die %s für diese Webseite"
-#: ../../mod/register.php:160
+#: ../../mod/register.php:168
#, php-format
msgid "I am over 13 years of age and accept the %s for this website"
msgstr "Ich bin älter als 13 Jahre und akzeptiere die %s dieser Webseite"
-#: ../../mod/register.php:175
+#: ../../mod/register.php:183
msgid "Membership on this site is by invitation only."
msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."
-#: ../../mod/register.php:176
+#: ../../mod/register.php:184
msgid "Please enter your invitation code"
msgstr "Bitte trage deinen Einladungs-Code ein"
-#: ../../mod/register.php:179
+#: ../../mod/register.php:187
msgid "Your email address"
msgstr "Ihre E-Mail Adresse"
-#: ../../mod/register.php:180
+#: ../../mod/register.php:188
msgid "Choose a password"
msgstr "Wählen Sie ein Passwort"
-#: ../../mod/register.php:181
+#: ../../mod/register.php:189
msgid "Please re-enter your password"
msgstr "Bitte geben Sie erneut Ihr Passwort ein"
@@ -6624,48 +6797,62 @@ msgstr "Bitte geben Sie erneut Ihr Passwort ein"
msgid "Please login."
msgstr "Bitte loggen Sie sich ein."
-#: ../../mod/post.php:114
+#: ../../mod/post.php:119
msgid ""
"Remote authentication blocked. You are logged into this site locally. Please"
" logout and retry."
msgstr "Entfernte Authentifizierung blockiert. Du bist lokal auf dieser Seite angemeldet. Bitte melde dich ab und versuche es erneut."
-#: ../../mod/post.php:127
+#: ../../mod/post.php:132
#, php-format
msgid "Welcome %s. Remote authentication successful."
msgstr "Willkommen %s. Entfernte Authentifizierung erfolgreich."
-#: ../../mod/removeme.php:45 ../../mod/removeme.php:48
-msgid "Remove My Account"
-msgstr "Mein Konto entfernen"
+#: ../../mod/removeme.php:49
+msgid "Remove This Channel"
+msgstr "Diesen Kanal löschen!"
-#: ../../mod/removeme.php:46
+#: ../../mod/removeme.php:50
msgid ""
-"This will completely remove your account. Once this has been done it is not "
-"recoverable."
-msgstr "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen."
+"This will completely remove this channel from the network. Once this has "
+"been done it is not recoverable."
+msgstr "Hiermit wird dieser Kanal komplett aus dem Netzwerk gelöscht. Einmal eingeleitet ist dieser Prozess nicht widerrufbar."
-#: ../../mod/removeme.php:47
+#: ../../mod/removeme.php:51
msgid "Please enter your password for verification:"
msgstr "Bitte geben Sie Ihr Passwort zur Bestätigung ein:"
-#: ../../mod/directory.php:148
+#: ../../mod/removeme.php:52
+msgid "Remove this channel and all its clones from the network"
+msgstr "Lösche diesen Kanal und all seine Klone aus dem Netzwerk"
+
+#: ../../mod/removeme.php:52
+msgid ""
+"By default only the instance of the channel located on this hub will be "
+"removed from the network"
+msgstr "Standartmäßig wird der Kanal nur auf diesem Knoten gelöscht, seine Klone verbleiben im Netzwerk"
+
+#: ../../mod/removeme.php:53
+msgid "Remove My Account"
+msgstr "Mein Konto entfernen"
+
+#: ../../mod/directory.php:163
msgid "Gender: "
msgstr "Geschlecht:"
-#: ../../mod/directory.php:207
+#: ../../mod/directory.php:222
msgid "Finding:"
msgstr "Ergebnisse:"
-#: ../../mod/directory.php:215
+#: ../../mod/directory.php:230
msgid "next page"
msgstr "nächste Seite"
-#: ../../mod/directory.php:215
+#: ../../mod/directory.php:230
msgid "previous page"
msgstr "vorige Seite"
-#: ../../mod/directory.php:222
+#: ../../mod/directory.php:237
msgid "No entries (some entries may be hidden)."
msgstr "Keine Einträge gefunden (einige könnten versteckt sein)."
@@ -6677,175 +6864,358 @@ msgstr "Laune"
msgid "Set your current mood and tell your friends"
msgstr "Wähle deine aktuelle Stimmung und erzähle sie deinen Freunden"
-#: ../../view/theme/redbasic/php/config.php:48
-#: ../../view/theme/redstrap/php/config.php:133
+#: ../../view/theme/redbasic/php/config.php:74
+msgid "Scheme Default"
+msgstr ""
+
+#: ../../view/theme/redbasic/php/config.php:75
+msgid "red"
+msgstr "Rot"
+
+#: ../../view/theme/redbasic/php/config.php:76
+msgid "black"
+msgstr "Schwarz"
+
+#: ../../view/theme/redbasic/php/config.php:77
+msgid "silver"
+msgstr "Silber"
+
+#: ../../view/theme/redbasic/php/config.php:88
+#: ../../view/theme/apw/php/config.php:234
+#: ../../view/theme/blogga/view/theme/blog/config.php:69
+#: ../../view/theme/blogga/php/config.php:69
msgid "Theme settings"
msgstr "Theme-Einstellungen"
-#: ../../view/theme/redbasic/php/config.php:49
-#: ../../view/theme/redstrap/php/config.php:138
+#: ../../view/theme/redbasic/php/config.php:89
+#: ../../view/theme/apw/php/config.php:235
+msgid "Set scheme"
+msgstr "Schema wählen"
+
+#: ../../view/theme/redbasic/php/config.php:90
msgid "Navigation bar colour"
msgstr "Farbe der Navigationsleiste"
-#: ../../view/theme/redbasic/php/config.php:50
+#: ../../view/theme/redbasic/php/config.php:91
+msgid "Set font-colour for banner"
+msgstr "Farbe der Schrift des Banners setzen"
+
+#: ../../view/theme/redbasic/php/config.php:92
msgid "Set the background colour"
msgstr "Hintergrundfarbe wählen"
-#: ../../view/theme/redbasic/php/config.php:51
+#: ../../view/theme/redbasic/php/config.php:93
msgid "Set the background image"
msgstr "Hintergrundbild wählen"
-#: ../../view/theme/redbasic/php/config.php:52
+#: ../../view/theme/redbasic/php/config.php:94
msgid "Set the background colour of items"
msgstr "Hintergrundfarbe von Beiträgen wählen"
-#: ../../view/theme/redbasic/php/config.php:53
+#: ../../view/theme/redbasic/php/config.php:95
msgid "Set the opacity of items"
msgstr "Opazität von Beiträgen wählen"
-#: ../../view/theme/redbasic/php/config.php:54
-#: ../../view/theme/redstrap/php/config.php:134
+#: ../../view/theme/redbasic/php/config.php:96
+msgid "Set the basic colour for item icons"
+msgstr "Basis Farbe der Beitrags-Icons setzen"
+
+#: ../../view/theme/redbasic/php/config.php:97
+msgid "Set the hover colour for item icons"
+msgstr ""
+
+#: ../../view/theme/redbasic/php/config.php:98
+msgid "Set font-size for the entire application"
+msgstr ""
+
+#: ../../view/theme/redbasic/php/config.php:99
+#: ../../view/theme/apw/php/config.php:236
msgid "Set font-size for posts and comments"
msgstr "Wähle die Schriftgröße für Beiträge und Kommentare"
-#: ../../view/theme/redbasic/php/config.php:55
+#: ../../view/theme/redbasic/php/config.php:100
msgid "Set font-colour for posts and comments"
msgstr "Schriftfarbe für Beiträge und Kommentare wählen"
-#: ../../view/theme/redbasic/php/config.php:56
+#: ../../view/theme/redbasic/php/config.php:101
msgid "Set radius of corners"
msgstr "Radius von Ecken"
-#: ../../view/theme/redbasic/php/config.php:57
+#: ../../view/theme/redbasic/php/config.php:102
msgid "Set shadow depth of photos"
msgstr "Schattentiefe von Fotos"
-#: ../../view/theme/redstrap/php/config.php:135
+#: ../../view/theme/redbasic/php/config.php:103
+msgid "Set maximum width of conversation regions"
+msgstr ""
+
+#: ../../view/theme/redbasic/php/config.php:104
+msgid "Set minimum opacity of nav bar - to hide it"
+msgstr ""
+
+#: ../../view/theme/redbasic/php/config.php:105
+msgid "Set size of conversation author photo"
+msgstr ""
+
+#: ../../view/theme/redbasic/php/config.php:106
+msgid "Set size of followup author photos"
+msgstr ""
+
+#: ../../view/theme/redbasic/php/config.php:107
+msgid "Sloppy photo albums"
+msgstr ""
+
+#: ../../view/theme/redbasic/php/config.php:107
+msgid "Are you a clean desk or a messy desk person?"
+msgstr "Bist du jemand der einen aufgeräumten Schreibtisch hat, oder eher einen chaotischen?"
+
+#: ../../view/theme/apw/php/config.php:193
+#: ../../view/theme/apw/php/config.php:211
+msgid "Schema Default"
+msgstr "Standard-Schema"
+
+#: ../../view/theme/apw/php/config.php:194
+msgid "Sans-Serif"
+msgstr "Sans-Serif"
+
+#: ../../view/theme/apw/php/config.php:195
+msgid "Monospace"
+msgstr "Monospace"
+
+#: ../../view/theme/apw/php/config.php:237
+msgid "Set font face"
+msgstr "Schriftart wählen"
+
+#: ../../view/theme/apw/php/config.php:238
+msgid "Set iconset"
+msgstr "Iconset wählen"
+
+#: ../../view/theme/apw/php/config.php:239
+msgid "Set big shadow size, default 15px 15px 15px"
+msgstr ""
+
+#: ../../view/theme/apw/php/config.php:240
+msgid "Set small shadow size, default 5px 5px 5px"
+msgstr ""
+
+#: ../../view/theme/apw/php/config.php:241
+msgid "Set shadow colour, default #000"
+msgstr ""
+
+#: ../../view/theme/apw/php/config.php:242
+msgid "Set radius size, default 5px"
+msgstr ""
+
+#: ../../view/theme/apw/php/config.php:243
msgid "Set line-height for posts and comments"
msgstr "Wähle die Zeilenhöhe in Beiträgen und Kommentaren"
-#: ../../view/theme/redstrap/php/config.php:136
-msgid "Set colour scheme"
-msgstr "Wähle das Farbschema"
+#: ../../view/theme/apw/php/config.php:244
+msgid "Set background image"
+msgstr "Hintergrundbild wählen"
+
+#: ../../view/theme/apw/php/config.php:245
+msgid "Set background colour"
+msgstr "Hintergrundfarbe wählen"
+
+#: ../../view/theme/apw/php/config.php:246
+msgid "Set section background image"
+msgstr ""
+
+#: ../../view/theme/apw/php/config.php:247
+msgid "Set section background colour"
+msgstr ""
+
+#: ../../view/theme/apw/php/config.php:248
+msgid "Set colour of items - use hex"
+msgstr "Wähle die Farbe von Beiträgen - verwende HEX"
+
+#: ../../view/theme/apw/php/config.php:249
+msgid "Set colour of links - use hex"
+msgstr "Wähle die Farbe von Links - verwende HEX"
+
+#: ../../view/theme/apw/php/config.php:250
+msgid "Set max-width for items. Default 400px"
+msgstr "Maximale Breite von Beiträgen. Standard ist 400px"
+
+#: ../../view/theme/apw/php/config.php:251
+msgid "Set min-width for items. Default 240px"
+msgstr "Minimale Breite von Beiträgen. Standard ist 240px"
+
+#: ../../view/theme/apw/php/config.php:252
+msgid "Set the generic content wrapper width. Default 48%"
+msgstr "Breite des \"generic content wrapper\". Standard ist 48%"
-#: ../../view/theme/redstrap/php/config.php:137
-msgid "Draw shadows"
-msgstr "Zeichne Schatten"
+#: ../../view/theme/apw/php/config.php:253
+msgid "Set colour of fonts - use hex"
+msgstr "Schriftfarbe - verwende HEX"
-#: ../../view/theme/redstrap/php/config.php:139
-msgid "Display style"
-msgstr "Anzeige Stiel"
+#: ../../view/theme/apw/php/config.php:254
+msgid "Set background-size element"
+msgstr "Größe des Hintergrund-Elements"
-#: ../../view/theme/redstrap/php/config.php:140
-msgid "Display colour of links - hex value, do not include the #"
-msgstr "Farbe für Verweise - Hex Wert, die # nicht angeben"
+#: ../../view/theme/apw/php/config.php:255
+msgid "Item opacity"
+msgstr "Opazität von Beiträgen"
-#: ../../view/theme/redstrap/php/config.php:141
-msgid "Icons"
-msgstr "Symbole"
+#: ../../view/theme/apw/php/config.php:256
+msgid "Display post previews only"
+msgstr "Nur Beitragsvorschau anzeigen"
-#: ../../view/theme/redstrap/php/config.php:142
-msgid "Shiny style"
-msgstr "Glitzer Stiel"
+#: ../../view/theme/apw/php/config.php:257
+msgid "Display side bar on channel page"
+msgstr "Zeige die Seitenleiste auf der Kanal-Seite"
-#: ../../boot.php:1249
+#: ../../view/theme/apw/php/config.php:258
+msgid "Colour of the navigation bar"
+msgstr "Farbe der Navigationsleiste"
+
+#: ../../view/theme/apw/php/config.php:259
+msgid "Item float"
+msgstr "Beitragsfluss"
+
+#: ../../view/theme/apw/php/config.php:260
+msgid "Left offset of the section element"
+msgstr "Linker Rand des Section Elements"
+
+#: ../../view/theme/apw/php/config.php:261
+msgid "Right offset of the section element"
+msgstr "Rechter Rand des Section Elements"
+
+#: ../../view/theme/apw/php/config.php:262
+msgid "Section width"
+msgstr "Breite der Section"
+
+#: ../../view/theme/apw/php/config.php:263
+msgid "Left offset of the aside"
+msgstr "Linker Rand der aside"
+
+#: ../../view/theme/apw/php/config.php:264
+msgid "Right offset of the aside element"
+msgstr "Rechter Rand der aside"
+
+#: ../../view/theme/blogga/view/theme/blog/config.php:47
+#: ../../view/theme/blogga/php/config.php:47
+msgid "None"
+msgstr "Keine"
+
+#: ../../view/theme/blogga/view/theme/blog/config.php:70
+#: ../../view/theme/blogga/php/config.php:70
+msgid "Header image"
+msgstr "Titelbild"
+
+#: ../../view/theme/blogga/view/theme/blog/config.php:71
+#: ../../view/theme/blogga/php/config.php:71
+msgid "Header image only on profile pages"
+msgstr "Titelbild nur auf Profil-Seiten anzeigen"
+
+#: ../../boot.php:1274
#, php-format
msgid "Update %s failed. See error logs."
msgstr "Aktualisierung %s fehlgeschlagen. Details in den Fehlerlogs."
-#: ../../boot.php:1252
+#: ../../boot.php:1277
#, php-format
msgid "Update Error at %s"
msgstr "Aktualisierungsfehler auf %s"
-#: ../../boot.php:1410
-msgid "Create a New Account"
-msgstr "Erzeuge ein neues Konto"
+#: ../../boot.php:1434
+msgid ""
+"Create an account to access services and applications within the Red Matrix"
+msgstr "Erstelle einen Account um Anwendungen und Dienste innerhalb der Red Matrix verwenden zu können."
-#: ../../boot.php:1439
+#: ../../boot.php:1462
msgid "Password"
msgstr "Kennwort"
-#: ../../boot.php:1440
+#: ../../boot.php:1463
msgid "Remember me"
msgstr "Angaben speichern"
-#: ../../boot.php:1445
+#: ../../boot.php:1468
msgid "Forgot your password?"
msgstr "Passwort vergessen?"
-#: ../../boot.php:1564
+#: ../../boot.php:1533
+msgid "permission denied"
+msgstr "Zugriff verweigert"
+
+#: ../../boot.php:1534
+msgid "Got Zot?"
+msgstr "Haste schon Zot?"
+
+#: ../../boot.php:1593
msgid "Requested channel is not available."
msgstr "Angeforderte Kanal nicht verfügbar."
-#: ../../boot.php:1576
+#: ../../boot.php:1605
msgid " Sorry, you don't have the permission to view this profile. "
msgstr "Entschuldigung, aber du besitzt nicht die nötigen Rechte um dieses Profil ansehen zu dürfen."
-#: ../../boot.php:1730
+#: ../../boot.php:1761
msgid "Profiles"
msgstr "Profile"
-#: ../../boot.php:1730
+#: ../../boot.php:1761
msgid "Manage/edit profiles"
msgstr "Verwalte/Bearbeite Profile"
-#: ../../boot.php:1734
+#: ../../boot.php:1765
msgid "Edit Profile"
msgstr "Profile bearbeiten"
-#: ../../boot.php:1828 ../../boot.php:1908
+#: ../../boot.php:1859 ../../boot.php:1939
msgid "F d"
msgstr "d. F"
-#: ../../boot.php:1885
+#: ../../boot.php:1916
msgid "Birthday Reminders"
msgstr "Geburtstags Erinnerungen"
-#: ../../boot.php:1886
+#: ../../boot.php:1917
msgid "Birthdays this week:"
msgstr "Geburtstage in dieser Woche:"
-#: ../../boot.php:1941
+#: ../../boot.php:1972
msgid "[No description]"
msgstr "[Keine Beschreibung]"
-#: ../../boot.php:1959
+#: ../../boot.php:1990
msgid "Event Reminders"
msgstr "Veranstaltungs- Erinnerungen"
-#: ../../boot.php:1960
+#: ../../boot.php:1991
msgid "Events this week:"
msgstr "Veranstaltungen in dieser Woche:"
-#: ../../boot.php:2194
+#: ../../boot.php:2225
msgid "Channel"
msgstr "Kanal"
-#: ../../boot.php:2197
+#: ../../boot.php:2228
msgid "Status Messages and Posts"
msgstr "Statusnachrichten und Beiträge"
-#: ../../boot.php:2201
+#: ../../boot.php:2232
msgid "About"
msgstr "Über"
-#: ../../boot.php:2204
+#: ../../boot.php:2235
msgid "Profile Details"
msgstr "Profil-Details"
-#: ../../boot.php:2222
+#: ../../boot.php:2253
msgid "Events and Calendar"
msgstr "Veranstaltungen und Kalender"
-#: ../../boot.php:2227
+#: ../../boot.php:2258
msgid "Webpages"
msgstr "Webseiten"
-#: ../../boot.php:2230
+#: ../../boot.php:2261
msgid "Manage Webpages"
msgstr "Webseiten verwalten"
-#: ../../boot.php:2512
+#: ../../boot.php:2546
msgid "toggle mobile"
msgstr "auf/von Mobile Ansicht wechseln"
diff --git a/view/de/strings.php b/view/de/strings.php
index 2aa913484..254e73bf9 100644
--- a/view/de/strings.php
+++ b/view/de/strings.php
@@ -7,47 +7,47 @@ function string_plural_select_de($n){
$a->strings["Visible to everybody"] = "Für jeden sichtbar";
$a->strings["show"] = "zeigen";
$a->strings["don't show"] = "Verbergen";
-$a->strings[" and "] = " und ";
+$a->strings[" and "] = "und";
$a->strings["public profile"] = "öffentliches Profil";
$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s hat %2\$s auf &ldquo;%3\$s&rdquo; geändert";
$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["Public Timeline"] = "Öffentliche Zeitleiste";
$a->strings["Red Matrix Notification"] = "Red Matrix Benachrichtigung";
+$a->strings["redmatrix"] = "";
$a->strings["Thank You,"] = "Danke.";
$a->strings["%s Administrator"] = "%s Administrator";
$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["%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["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["%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 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 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]a %4\$s[/zrl]"] = "";
+$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "";
+$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["%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["[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 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 your profile wall at %3\$s"] = "";
+$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["%1\$s tagged you at %2\$s"] = "%1\$s hat dich auf %2\$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 tagged you at %3\$s"] = "%1\$s, %2\$s hat dich auf %3\$s getaggt";
+$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["%1\$s poked you at %2\$s"] = "%1\$s hat dich auf %2\$s angestupst";
-$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 poked you at %3\$s"] = "%1\$s, %2\$s hat dich auf %3\$s angestubst";
+$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["%1\$s tagged your post at %2\$s"] = "%1\$s hat Deinen Beitrag auf %2\$s getagged";
-$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 your post at %3\$s"] = "";
+$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["You've received an introduction from '%1\$s' at %2\$s"] = "Du hast auf %2\$s eine Vorstellung von %1\$s erhalten.";
-$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 an introduction from '%2\$s' at %3\$s"] = "";
+$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["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["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["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 a friend suggestion from '%2\$s' at %3\$s"] = "";
+$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["Photo:"] = "Foto:";
$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["View %s's profile - %s"] = "Schaue dir %s's Profil an - %s";
$a->strings["to"] = "zu";
+$a->strings["via"] = "via";
$a->strings["Wall-to-Wall"] = "Wall-to-Wall";
$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:";
$a->strings[" from %s"] = "von %s";
+$a->strings["last edited: %s"] = "zuletzt bearbeitet: %s";
$a->strings["Please wait"] = "Bitte warten";
$a->strings["%d comment"] = array(
0 => "%d Kommentar",
@@ -91,6 +93,7 @@ $a->strings["Image"] = "Bild";
$a->strings["Link"] = "Link";
$a->strings["Video"] = "Video";
$a->strings["Preview"] = "Vorschau";
+$a->strings["Encrypt text"] = "Text verschlüsseln";
$a->strings["Connect"] = "Verbinden";
$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";
@@ -147,6 +150,8 @@ $a->strings["Starts:"] = "Beginnt:";
$a->strings["Finishes:"] = "Endet:";
$a->strings["Location:"] = "Ort:";
$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["Ability to create multiple profiles"] = "Mehrfachprofile anlegen können";
$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["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["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["Search by Date"] = "Suche nach Datum";
$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["Filter stream activity by depth of relationships"] = "Filter Aktivitätenstream nach Tiefe der Beziehung";
$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 and correct posts and comments after sending"] = "Bearbeite und korrigiere Beiträge und Kommentare nach dem Senden";
$a->strings["Tagging"] = "Verschlagworten";
@@ -202,7 +207,7 @@ $a->strings["All Channels"] = "Alle Kanäle";
$a->strings["edit"] = "Bearbeiten";
$a->strings["Collections"] = "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["add"] = "hinzufügen";
$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["Passwords do not match"] = "Kennwörter stimmen nicht überein";
$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.suffixAgo"] = "timeago.suffixAgo";
$a->strings["ago"] = "her";
@@ -326,10 +333,8 @@ $a->strings["November"] = "November";
$a->strings["December"] = "Dezember";
$a->strings["unknown.???"] = "unbekannt.???";
$a->strings["bytes"] = "Bytes";
-$a->strings["remove"] = "lösche";
-$a->strings["[remove]"] = "[lösche]";
-$a->strings["Categories:"] = "Kategorien:";
-$a->strings["Filed under:"] = "Gespeichert unter:";
+$a->strings["remove category"] = "Kategorie entfernen";
+$a->strings["remove from file"] = "aus der Datei entfernen";
$a->strings["Click to open/close"] = "Klicke zum Öffnen/Schließen";
$a->strings["link to source"] = "Link zum Originalbeitrag";
$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["Layouts"] = "Layouts";
$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["Empty name"] = "Namensfeld leer";
$a->strings["Name too long"] = "Name ist zu lang";
$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["Unable to retrieve created identity"] = "Kann die erstellte Identität nicht empfangen";
$a->strings["Default Profile"] = "Standard-Profil";
$a->strings["Friends"] = "Freunde";
$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["post"] = "Beitrag";
$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["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["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.";
@@ -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["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["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["End this session"] = "Beende diese Sitzung";
$a->strings["Home"] = "Home";
@@ -460,9 +475,11 @@ $a->strings["Search site content"] = "Durchsuche Seiten-Inhalt";
$a->strings["Directory"] = "Verzeichnis";
$a->strings["Channel Locator"] = "Kanal-Anzeiger";
$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["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["Mark all channel notifications seen"] = "Markiere alle Kanal-Benachrichtigungen als angesehen";
$a->strings["Intros"] = "Vorstellungen";
@@ -493,9 +510,6 @@ $a->strings["Admin"] = "Admin";
$a->strings["Site Setup and Configuration"] = "Seiten-Einrichtung und -Konfiguration";
$a->strings["Nothing new here"] = "Nichts Neues hier";
$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["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.";
@@ -509,6 +523,70 @@ $a->strings["your registration password"] = "dein Registrierungspasswort";
$a->strings["Registration details for %s"] = "Registrierungsdetails für %s";
$a->strings["Account approved."] = "Account bestätigt.";
$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["Failed authentication"] = "Authentifizierung 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 is not available under your subscription plan."] = "Diese Aktion ist in Ihrem Abonnement nicht verfügbar.";
$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["Please upload a profile photo."] = "Bitte lade ein Profilfoto hoch.";
$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["Group is empty"] = "Gruppe ist leer";
$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["Common connections"] = "Gemeinsame 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["Enter email addresses, one per line:"] = "Email-Adressen eintragen, eine pro Zeile:";
$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["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["Friends of %s"] = "Freunde von %s";
$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["Invalid item."] = "Ungültiges Element.";
$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["Red Matrix Server - Setup"] = "Red Matrix Server - Installation";
$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 Name"] = "Datenbank-Name";
$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["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";
@@ -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["<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["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["[Embedded content - reload page to view]"] = "[Eingebetteter Inhalte - bitte lade die Seite zur Anzeige neu]";
$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["Someone writes on your profile wall"] = "Jemand auf deine Pinnwand schreibt";
$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 friend suggestion"] = "Du einen Kontaktvorschlag 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ältst";
$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["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["Themes"] = "Themes";
$a->strings["Server"] = "Server";
-$a->strings["DB updates"] = "Datenbankaktualisierungen";
+$a->strings["DB updates"] = "DB Aktualisierungen";
$a->strings["Logs"] = "Protokolle";
$a->strings["Plugin Features"] = "Plug-In Funktionen";
$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' unblocked"] = "Benutzer '%s' freigegeben";
$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["User registrations waiting for confirm"] = "Neuanmeldungen, die auf deine Bestätigung warten";
$a->strings["Request date"] = "Antragsdatum";
@@ -1031,6 +1065,7 @@ $a->strings["Block"] = "Blockieren";
$a->strings["Unblock"] = "Freigeben";
$a->strings["Register date"] = "Registrierungs-Datum";
$a->strings["Last login"] = "Letzte Anmeldung";
+$a->strings["Expires"] = "Verfällt";
$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["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["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["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["Album not found."] = "Album nicht gefunden.";
$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["Message deleted."] = "Nachricht 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["To:"] = "An:";
$a->strings["Subject:"] = "Betreff:";
@@ -1166,17 +1203,21 @@ $a->strings["No messages."] = "Keine Nachrichten.";
$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["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["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["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["Not Found"] = "Nicht gefunden";
-$a->strings["Page not found."] = "Seite nicht gefunden.";
$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["Authenticate"] = "Authentifizieren";
-$a->strings["Remove term"] = "Eintrag löschen";
$a->strings["Commented Order"] = "Neueste Kommentare";
$a->strings["Sort by Comment Date"] = "Nach Kommentardatum sortiert";
$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["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["inherited"] = "Geerbt";
$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["Profile Visibility"] = "Sichtbarkeit des Profils";
@@ -1262,7 +1304,7 @@ $a->strings["Full Sharing"] = "Volles Teilen";
$a->strings["Cautious Sharing"] = "Vorsichtiges Teilen";
$a->strings["Follow Only"] = "Nur Folgen";
$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["Quick Links"] = "Quick Links";
$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["No more home notifications."] = "Keine Pinwand-Benachrichtigungen mehr.";
$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["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["Poke/Prod"] = "Anstupsen/Kuffen";
$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["Make this post private"] = "Diesen Beitrag privat machen";
$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["Community"] = "Gemeinschaft";
$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["No installed plugins/addons/apps"] = "Keine installierten Plugins/Addons/Apps";
$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["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["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["Ignore/Hide"] = "Ignorieren/Verstecken";
$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["Access Type"] = "Zugangs Typ";
$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["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["Remove My Account"] = "Mein Konto entfernen";
-$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["Remove This Channel"] = "Diesen Kanal löschen!";
+$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["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["Finding:"] = "Ergebnisse:";
$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["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["Scheme Default"] = "";
+$a->strings["red"] = "Rot";
+$a->strings["black"] = "Schwarz";
+$a->strings["silver"] = "Silber";
$a->strings["Theme settings"] = "Theme-Einstellungen";
+$a->strings["Set scheme"] = "Schema wählen";
$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 image"] = "Hintergrundbild 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 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-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 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 colour scheme"] = "Wähle das Farbschema";
-$a->strings["Draw shadows"] = "Zeichne Schatten";
-$a->strings["Display style"] = "Anzeige Stiel";
-$a->strings["Display colour of links - hex value, do not include the #"] = "Farbe für Verweise - Hex Wert, die # nicht angeben";
-$a->strings["Icons"] = "Symbole";
-$a->strings["Shiny style"] = "Glitzer Stiel";
+$a->strings["Set background image"] = "Hintergrundbild wählen";
+$a->strings["Set background colour"] = "Hintergrundfarbe wählen";
+$a->strings["Set section background image"] = "";
+$a->strings["Set section background colour"] = "";
+$a->strings["Set colour of items - use hex"] = "Wähle die Farbe von Beiträgen - verwende HEX";
+$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 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["Remember me"] = "Angaben speichern";
$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[" 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";
diff --git a/view/it/messages.po b/view/it/messages.po
index 0143952d4..8d86d3c87 100644
--- a/view/it/messages.po
+++ b/view/it/messages.po
@@ -13,8 +13,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Red Matrix\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-11-15 00:03-0800\n"
-"PO-Revision-Date: 2013-11-22 22:02+0000\n"
+"POT-Creation-Date: 2013-11-29 00:03-0800\n"
+"PO-Revision-Date: 2013-12-01 09:46+0000\n"
"Last-Translator: tuscanhobbit Pa <pynolo@tarine.net>\n"
"Language-Team: Italian (http://www.transifex.com/projects/p/red-matrix/language/it/)\n"
"MIME-Version: 1.0\n"
@@ -58,14 +58,14 @@ msgstr "Guarda %2$s di %1$s "
msgid "%1$s has an updated %2$s, changing %3$s."
msgstr "%1$s ha aggiornato %2$s cambiando %3$s."
-#: ../../include/api.php:972
-msgid "Public Timeline"
-msgstr "Diario pubblico"
-
#: ../../include/enotify.php:36
msgid "Red Matrix Notification"
msgstr "Notifica di Red Matrix"
+#: ../../include/enotify.php:37
+msgid "redmatrix"
+msgstr "redmatrix"
+
#: ../../include/enotify.php:39
msgid "Thank You,"
msgstr "Grazie,"
@@ -87,8 +87,8 @@ msgstr "[Red:Notifica] Nuovo messaggio ricevuto alle %s"
#: ../../include/enotify.php:82
#, php-format
-msgid "%1$s sent you a new private message at %2$s."
-msgstr "%1$s ti ha mandato un messaggio privato alle %2$s."
+msgid "%1$s, %2$s sent you a new private message at %3$s."
+msgstr "%1$s, %2$s ti ha mandato un messaggio privato alle %3$s."
#: ../../include/enotify.php:83
#, php-format
@@ -106,144 +106,145 @@ msgstr "Visita %s per leggere i tuoi messaggi privati e rispondere."
#: ../../include/enotify.php:135
#, php-format
-msgid "%1$s commented on [zrl=%2$s]a %3$s[/zrl]"
-msgstr "%1$s ha commentato [zrl=%2$s]%3$s[/zrl]"
+msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]"
+msgstr "%1$s, %2$s ha commentato [zrl=%3$s]%4$s[/zrl]"
-#: ../../include/enotify.php:142
+#: ../../include/enotify.php:143
#, php-format
-msgid "%1$s commented on [zrl=%2$s]%3$s's %4$s[/zrl]"
-msgstr "%1$s ha commentato [zrl=%2$s]%4$s di %3$s[/zrl]"
+msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]"
+msgstr "%1$s, %2$s ha commentato [zrl=%3$s]%5$s di %4$s[/zrl]"
-#: ../../include/enotify.php:150
+#: ../../include/enotify.php:152
#, php-format
-msgid "%1$s commented on [zrl=%2$s]your %3$s[/zrl]"
-msgstr "%1$s ha commentato [zrl=%2$s]%3$s[/zrl] che hai creato"
+msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]"
+msgstr "%1$s, %2$s ha commentato [zrl=%3$s]%4$s che hai creato[/zrl]"
-#: ../../include/enotify.php:160
+#: ../../include/enotify.php:163
#, php-format
msgid "[Red:Notify] Comment to conversation #%1$d by %2$s"
msgstr "[Red:Notifica] Nuovo commento di %2$s alla conversazione #%1$d"
-#: ../../include/enotify.php:161
+#: ../../include/enotify.php:164
#, php-format
-msgid "%s commented on an item/conversation you have been following."
-msgstr "%s ha commentato una conversazione che stai seguendo."
+msgid "%1$s, %2$s commented on an item/conversation you have been following."
+msgstr "%1$s, %2$s ha commentato un elemento che stavi seguendo."
-#: ../../include/enotify.php:164 ../../include/enotify.php:181
-#: ../../include/enotify.php:206 ../../include/enotify.php:224
-#: ../../include/enotify.php:237
+#: ../../include/enotify.php:167 ../../include/enotify.php:186
+#: ../../include/enotify.php:212 ../../include/enotify.php:231
+#: ../../include/enotify.php:245
#, php-format
msgid "Please visit %s to view and/or reply to the conversation."
msgstr "Visita %s per leggere o commentare la conversazione."
-#: ../../include/enotify.php:171
+#: ../../include/enotify.php:174
#, php-format
msgid "[Red:Notify] %s posted to your profile wall"
msgstr "[Red:Notifica] %s ha scritto sulla tua bacheca"
-#: ../../include/enotify.php:173
+#: ../../include/enotify.php:176
#, php-format
-msgid "%1$s posted to your profile wall at %2$s"
-msgstr "%1$s ha scritto sulla tua bacheca alle %2$s"
+msgid "%1$s, %2$s posted to your profile wall at %3$s"
+msgstr "%1$s, %2$s ha scritto sulla bacheca del tuo profilo alle %3$s"
-#: ../../include/enotify.php:175
+#: ../../include/enotify.php:178
#, php-format
-msgid "%1$s posted to [zrl=%2$s]your wall[/zrl]"
-msgstr "%1$s ha scritto sulla [zrl=%2$s]tua bacheca[/zrl]"
+msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]"
+msgstr "%1$s, %2$s ha scritto sulla [zrl=%3$s]tua bacheca[/zrl]"
-#: ../../include/enotify.php:200
+#: ../../include/enotify.php:205
#, php-format
msgid "[Red:Notify] %s tagged you"
msgstr "[Red:Notifica] %s ti ha taggato"
-#: ../../include/enotify.php:201
+#: ../../include/enotify.php:206
#, php-format
-msgid "%1$s tagged you at %2$s"
-msgstr "%1$s ti ha taggato alle %2$s"
+msgid "%1$s, %2$s tagged you at %3$s"
+msgstr "%1$s, %2$s ti ha taggato alle %3$s"
-#: ../../include/enotify.php:202
+#: ../../include/enotify.php:207
#, php-format
-msgid "%1$s [zrl=%2$s]tagged you[/zrl]."
-msgstr "%1$s [zrl=%2$s]ti ha taggato[/zrl]."
+msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]."
+msgstr "%1$s, %2$s [zrl=%3$s]ti ha taggato[/zrl]."
-#: ../../include/enotify.php:214
+#: ../../include/enotify.php:220
#, php-format
msgid "[Red:Notify] %1$s poked you"
msgstr "[Red:Notifica] %1$s ti ha mandato un poke"
-#: ../../include/enotify.php:215
+#: ../../include/enotify.php:221
#, php-format
-msgid "%1$s poked you at %2$s"
-msgstr "%1$s ti ha mandato un poke alle %2$s"
+msgid "%1$s, %2$s poked you at %3$s"
+msgstr "%1$s, %2$s ti ha mandato un poke alle %3$s"
-#: ../../include/enotify.php:216
+#: ../../include/enotify.php:222
#, php-format
-msgid "%1$s [zrl=%2$s]poked you[/zrl]."
-msgstr "%1$s [zrl=%2$s]ti ha mandato un poke[/zrl]."
+msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]."
+msgstr "%1$s, %2$s [zrl=%2$s]ti ha mandato un poke[/zrl]."
-#: ../../include/enotify.php:231
+#: ../../include/enotify.php:238
#, php-format
msgid "[Red:Notify] %s tagged your post"
msgstr "[Red:Notifica] %s ha taggato il tuo articolo"
-#: ../../include/enotify.php:232
+#: ../../include/enotify.php:239
#, php-format
-msgid "%1$s tagged your post at %2$s"
-msgstr "%1$s ha taggato il tuo articolo alle %2$s"
+msgid "%1$s, %2$s tagged your post at %3$s"
+msgstr "%1$s, %2$s ha taggato il tuo articolo alle %3$s"
-#: ../../include/enotify.php:233
+#: ../../include/enotify.php:240
#, php-format
-msgid "%1$s tagged [zrl=%2$s]your post[/zrl]"
-msgstr "%1$s ha taggato [zrl=%2$s]il tuo articolo[/zrl]"
+msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]"
+msgstr "%1$s, %2$s ha taggato [zrl=%3$s]il tuo articolo[/zrl]"
-#: ../../include/enotify.php:244
+#: ../../include/enotify.php:252
msgid "[Red:Notify] Introduction received"
msgstr "[Red:Notifica] Hai una richiesta di amicizia"
-#: ../../include/enotify.php:245
+#: ../../include/enotify.php:253
#, php-format
-msgid "You've received an introduction from '%1$s' at %2$s"
-msgstr "Hai ricevuto una richiesta di amicizia da '%1$s' alle %2$s"
+msgid "%1$s, you've received an introduction from '%2$s' at %3$s"
+msgstr "%1$s, hai ricevuto una richiesta di contatto da '%2$s' alle %3$s"
-#: ../../include/enotify.php:246
+#: ../../include/enotify.php:254
#, php-format
-msgid "You've received [zrl=%1$s]an introduction[/zrl] from %2$s."
-msgstr "Hai ricevuto [zrl=%1$s]una richiesta di amicizia[/zrl] da %2$s."
+msgid "%1$s, you've received [zrl=%2$s]an introduction[/zrl] from %3$s."
+msgstr "%1$s, hai ricevuto [zrl=%2$s]una richiesta di amicizia[/zrl] da %3$s."
-#: ../../include/enotify.php:249 ../../include/enotify.php:267
+#: ../../include/enotify.php:258 ../../include/enotify.php:277
#, php-format
msgid "You may visit their profile at %s"
msgstr "Puoi visitare il suo profilo su %s"
-#: ../../include/enotify.php:251
+#: ../../include/enotify.php:260
#, php-format
msgid "Please visit %s to approve or reject the introduction."
msgstr "Visita %s per approvare o rifiutare la richiesta."
-#: ../../include/enotify.php:258
+#: ../../include/enotify.php:267
msgid "[Red:Notify] Friend suggestion received"
msgstr "[Red:Notifica] Ti è stato suggerito un amico"
-#: ../../include/enotify.php:259
+#: ../../include/enotify.php:268
#, php-format
-msgid "You've received a friend suggestion from '%1$s' at %2$s"
-msgstr "Ti è stato suggerito un amico da '%1$s' alle %2$s"
+msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s"
+msgstr "%1$s, ti è stato suggerito un amico da '%2$s' alle %3$s"
-#: ../../include/enotify.php:260
+#: ../../include/enotify.php:269
#, php-format
msgid ""
-"You've received [zrl=%1$s]a friend suggestion[/zrl] for %2$s from %3$s."
-msgstr "%3$s ti ha [zrl=%1$s]suggerito %2$s[/zrl] come amico."
+"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from "
+"%4$s."
+msgstr "%1$s, %4$s ti [zrl=%2$s]ha suggerito %3$s[/zrl] come amico."
-#: ../../include/enotify.php:265
+#: ../../include/enotify.php:275
msgid "Name:"
msgstr "Nome:"
-#: ../../include/enotify.php:266
+#: ../../include/enotify.php:276
msgid "Photo:"
msgstr "Foto:"
-#: ../../include/enotify.php:269
+#: ../../include/enotify.php:279
#, php-format
msgid "Please visit %s to approve or reject the suggestion."
msgstr "Visita %s per approvare o rifiutare il suggerimento."
@@ -253,7 +254,7 @@ msgid "Private Message"
msgstr "Messaggio privato"
#: ../../include/ItemObject.php:95 ../../include/page_widgets.php:8
-#: ../../mod/webpages.php:101 ../../mod/settings.php:712 ../../mod/menu.php:55
+#: ../../mod/webpages.php:101 ../../mod/settings.php:713 ../../mod/menu.php:55
#: ../../mod/layouts.php:102 ../../mod/editlayout.php:100
#: ../../mod/editwebpage.php:119 ../../mod/blocks.php:93
#: ../../mod/editpost.php:97 ../../mod/editblock.php:114
@@ -261,8 +262,8 @@ msgid "Edit"
msgstr "Modifica"
#: ../../include/ItemObject.php:107 ../../include/conversation.php:628
-#: ../../mod/settings.php:713 ../../mod/admin.php:677 ../../mod/group.php:182
-#: ../../mod/photos.php:1130 ../../mod/connections.php:354
+#: ../../mod/settings.php:714 ../../mod/admin.php:690 ../../mod/group.php:182
+#: ../../mod/photos.php:1130 ../../mod/connections.php:374
#: ../../mod/filestorage.php:82
msgid "Delete"
msgstr "Elimina"
@@ -386,21 +387,23 @@ msgstr "Commento"
#: ../../include/ItemObject.php:530 ../../mod/events.php:458
#: ../../mod/thing.php:190 ../../mod/invite.php:154 ../../mod/setup.php:302
-#: ../../mod/setup.php:345 ../../mod/settings.php:650
-#: ../../mod/settings.php:762 ../../mod/settings.php:790
-#: ../../mod/settings.php:814 ../../mod/settings.php:885
-#: ../../mod/settings.php:1053 ../../mod/connect.php:96
+#: ../../mod/setup.php:345 ../../mod/settings.php:651
+#: ../../mod/settings.php:763 ../../mod/settings.php:791
+#: ../../mod/settings.php:815 ../../mod/settings.php:886
+#: ../../mod/settings.php:1054 ../../mod/connect.php:96
#: ../../mod/sources.php:83 ../../mod/sources.php:110 ../../mod/admin.php:418
-#: ../../mod/admin.php:670 ../../mod/admin.php:810 ../../mod/admin.php:1009
-#: ../../mod/admin.php:1096 ../../mod/group.php:87 ../../mod/photos.php:685
+#: ../../mod/admin.php:683 ../../mod/admin.php:823 ../../mod/admin.php:1022
+#: ../../mod/admin.php:1109 ../../mod/group.php:87 ../../mod/photos.php:685
#: ../../mod/photos.php:779 ../../mod/photos.php:1040
#: ../../mod/photos.php:1080 ../../mod/photos.php:1167
#: ../../mod/message.php:333 ../../mod/message.php:515
-#: ../../mod/connections.php:432 ../../mod/profiles.php:529
+#: ../../mod/connections.php:452 ../../mod/profiles.php:529
#: ../../mod/import.php:385 ../../mod/crepair.php:166 ../../mod/poke.php:166
#: ../../mod/fsuggest.php:108 ../../mod/mood.php:137
-#: ../../view/theme/redbasic/php/config.php:79
+#: ../../view/theme/redbasic/php/config.php:85
#: ../../view/theme/apw/php/config.php:231
+#: ../../view/theme/blogga/view/theme/blog/config.php:67
+#: ../../view/theme/blogga/php/config.php:67
msgid "Submit"
msgstr "Salva"
@@ -451,9 +454,9 @@ msgstr "Crittografia del testo"
#: ../../include/Contact.php:87 ../../include/contact_widgets.php:23
#: ../../mod/match.php:58 ../../mod/suggest.php:56 ../../mod/directory.php:198
-#: ../../boot.php:1745
+#: ../../boot.php:1741
msgid "Connect"
-msgstr "Connetti"
+msgstr "Entra in contatto/segui"
#: ../../include/Contact.php:103
msgid "New window"
@@ -472,8 +475,8 @@ msgid "View Status"
msgstr "Guarda il messaggio di stato"
#: ../../include/Contact.php:526 ../../include/nav.php:76
-#: ../../include/conversation.php:925 ../../mod/connections.php:307
-#: ../../mod/connections.php:421
+#: ../../include/conversation.php:925 ../../mod/connections.php:327
+#: ../../mod/connections.php:441
msgid "View Profile"
msgstr "Profilo"
@@ -553,8 +556,8 @@ msgstr "OStatus"
msgid "RSS/Atom"
msgstr "RSS/Atom"
-#: ../../include/contact_selectors.php:77 ../../mod/admin.php:673
-#: ../../mod/admin.php:682 ../../boot.php:1465
+#: ../../include/contact_selectors.php:77 ../../mod/admin.php:686
+#: ../../mod/admin.php:695 ../../boot.php:1461
msgid "Email"
msgstr "Email"
@@ -673,7 +676,7 @@ msgid "Finishes:"
msgstr "Fine:"
#: ../../include/event.php:40 ../../include/bb2diaspora.php:455
-#: ../../mod/events.php:450 ../../mod/directory.php:173 ../../boot.php:1795
+#: ../../mod/events.php:450 ../../mod/directory.php:173 ../../boot.php:1791
msgid "Location:"
msgstr "Luogo:"
@@ -796,8 +799,8 @@ msgstr "Filtra per insiemi di canali"
msgid "Enable widget to display Network posts only from selected collections"
msgstr "Mostra il riquadro per filtrare gli articoli di certi insiemi di canali"
-#: ../../include/features.php:47 ../../mod/network.php:173
-#: ../../mod/search.php:17
+#: ../../include/features.php:47 ../../mod/search.php:17
+#: ../../mod/network.php:173
msgid "Saved Searches"
msgstr "Ricerche salvate"
@@ -833,14 +836,6 @@ msgstr "Permette di selezionare i contenuti in base al livello di amicizia"
msgid "Post/Comment Tools"
msgstr "Gestione articoli e commenti"
-#: ../../include/features.php:56
-msgid "Multiple Deletion"
-msgstr "Eliminazione multipla"
-
-#: ../../include/features.php:56
-msgid "Select and delete multiple posts/comments at once"
-msgstr "Rendi possibile l'eliminazione di molti articoli o commenti con un solo comando"
-
#: ../../include/features.php:57
msgid "Edit Sent Posts"
msgstr "Modifica gli articoli già inviati"
@@ -908,7 +903,7 @@ msgstr "È stato ripristinato un insieme con lo stesso nome che era stato elimin
msgid "Default privacy group for new contacts"
msgstr "Insieme predefinito per i nuovi canali che aggiungi"
-#: ../../include/group.php:242
+#: ../../include/group.php:242 ../../mod/admin.php:695
msgid "All Channels"
msgstr "Tutti i canali"
@@ -1065,12 +1060,12 @@ msgstr "Foto del profilo"
msgid "Profile"
msgstr "Profilo"
-#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1061
+#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1062
msgid "Full Name:"
msgstr "Nome completo:"
#: ../../include/profile_advanced.php:17 ../../mod/directory.php:175
-#: ../../boot.php:1797
+#: ../../boot.php:1793
msgid "Gender:"
msgstr "Sesso:"
@@ -1091,7 +1086,7 @@ msgid "Age:"
msgstr "Età:"
#: ../../include/profile_advanced.php:37 ../../mod/directory.php:177
-#: ../../boot.php:1798
+#: ../../boot.php:1794
msgid "Status:"
msgstr "Stato:"
@@ -1105,7 +1100,7 @@ msgid "Sexual Preference:"
msgstr "Preferenze sessuali:"
#: ../../include/profile_advanced.php:48 ../../mod/directory.php:179
-#: ../../boot.php:1799
+#: ../../boot.php:1795
msgid "Homepage:"
msgstr "Home page:"
@@ -1173,343 +1168,347 @@ msgstr "Lavoro:"
msgid "School/education:"
msgstr "Scuola:"
-#: ../../include/text.php:309
+#: ../../include/text.php:312
msgid "prev"
msgstr "prec"
-#: ../../include/text.php:311
+#: ../../include/text.php:314
msgid "first"
msgstr "inizio"
-#: ../../include/text.php:340
+#: ../../include/text.php:343
msgid "last"
msgstr "fine"
-#: ../../include/text.php:343
+#: ../../include/text.php:346
msgid "next"
msgstr "succ"
-#: ../../include/text.php:355
+#: ../../include/text.php:358
msgid "older"
msgstr "più recenti"
-#: ../../include/text.php:357
+#: ../../include/text.php:360
msgid "newer"
msgstr "più nuovi"
-#: ../../include/text.php:648
+#: ../../include/text.php:651
msgid "No connections"
msgstr "Nessun contatto"
-#: ../../include/text.php:659
+#: ../../include/text.php:662
#, php-format
msgid "%d Connection"
msgid_plural "%d Connections"
msgstr[0] "%d contatto"
msgstr[1] "%d contatti"
-#: ../../include/text.php:671
+#: ../../include/text.php:674
msgid "View Connections"
msgstr "Elenco contatti"
-#: ../../include/text.php:730 ../../include/nav.php:135
+#: ../../include/text.php:733 ../../include/nav.php:135
#: ../../mod/search.php:96
msgid "Search"
msgstr "Cerca"
-#: ../../include/text.php:732 ../../mod/filer.php:36
+#: ../../include/text.php:735 ../../mod/filer.php:36
msgid "Save"
msgstr "Salva"
-#: ../../include/text.php:770
+#: ../../include/text.php:773
msgid "poke"
msgstr "poke"
-#: ../../include/text.php:770 ../../include/conversation.php:236
+#: ../../include/text.php:773 ../../include/conversation.php:236
msgid "poked"
msgstr "ha ricevuto un poke"
-#: ../../include/text.php:771
+#: ../../include/text.php:774
msgid "ping"
msgstr "ping"
-#: ../../include/text.php:771
+#: ../../include/text.php:774
msgid "pinged"
msgstr "ha ricevuto un ping"
-#: ../../include/text.php:772
+#: ../../include/text.php:775
msgid "prod"
msgstr "prod"
-#: ../../include/text.php:772
+#: ../../include/text.php:775
msgid "prodded"
msgstr "ha ricevuto un prod"
-#: ../../include/text.php:773
+#: ../../include/text.php:776
msgid "slap"
msgstr "schiaffo"
-#: ../../include/text.php:773
+#: ../../include/text.php:776
msgid "slapped"
msgstr "ha ricevuto uno schiaffo"
-#: ../../include/text.php:774
+#: ../../include/text.php:777
msgid "finger"
msgstr "finger"
-#: ../../include/text.php:774
+#: ../../include/text.php:777
msgid "fingered"
msgstr "ha ricevuto un finger"
-#: ../../include/text.php:775
+#: ../../include/text.php:778
msgid "rebuff"
msgstr "rifiuto"
-#: ../../include/text.php:775
+#: ../../include/text.php:778
msgid "rebuffed"
msgstr "ha ricevuto un rifiuto"
-#: ../../include/text.php:787
+#: ../../include/text.php:790
msgid "happy"
msgstr "allegro"
-#: ../../include/text.php:788
+#: ../../include/text.php:791
msgid "sad"
msgstr "triste"
-#: ../../include/text.php:789
+#: ../../include/text.php:792
msgid "mellow"
msgstr "calmo"
-#: ../../include/text.php:790
+#: ../../include/text.php:793
msgid "tired"
msgstr "stanco"
-#: ../../include/text.php:791
+#: ../../include/text.php:794
msgid "perky"
msgstr "vivace"
-#: ../../include/text.php:792
+#: ../../include/text.php:795
msgid "angry"
msgstr "arrabbiato"
-#: ../../include/text.php:793
+#: ../../include/text.php:796
msgid "stupified"
msgstr "stordito"
-#: ../../include/text.php:794
+#: ../../include/text.php:797
msgid "puzzled"
msgstr "confuso"
-#: ../../include/text.php:795
+#: ../../include/text.php:798
msgid "interested"
msgstr "attento"
-#: ../../include/text.php:796
+#: ../../include/text.php:799
msgid "bitter"
msgstr "amaro"
-#: ../../include/text.php:797
+#: ../../include/text.php:800
msgid "cheerful"
msgstr "allegro"
-#: ../../include/text.php:798
+#: ../../include/text.php:801
msgid "alive"
msgstr "vivace"
-#: ../../include/text.php:799
+#: ../../include/text.php:802
msgid "annoyed"
msgstr "seccato"
-#: ../../include/text.php:800
+#: ../../include/text.php:803
msgid "anxious"
msgstr "ansioso"
-#: ../../include/text.php:801
+#: ../../include/text.php:804
msgid "cranky"
msgstr "irritabile"
-#: ../../include/text.php:802
+#: ../../include/text.php:805
msgid "disturbed"
msgstr "turbato"
-#: ../../include/text.php:803
+#: ../../include/text.php:806
msgid "frustrated"
msgstr "frustrato"
-#: ../../include/text.php:804
+#: ../../include/text.php:807
msgid "motivated"
msgstr "motivato"
-#: ../../include/text.php:805
+#: ../../include/text.php:808
msgid "relaxed"
msgstr "rilassato"
-#: ../../include/text.php:806
+#: ../../include/text.php:809
msgid "surprised"
msgstr "sorpreso"
-#: ../../include/text.php:970
+#: ../../include/text.php:973
msgid "Monday"
msgstr "lunedì"
-#: ../../include/text.php:970
+#: ../../include/text.php:973
msgid "Tuesday"
msgstr "martedì"
-#: ../../include/text.php:970
+#: ../../include/text.php:973
msgid "Wednesday"
msgstr "mercoledì"
-#: ../../include/text.php:970
+#: ../../include/text.php:973
msgid "Thursday"
msgstr "giovedì"
-#: ../../include/text.php:970
+#: ../../include/text.php:973
msgid "Friday"
msgstr "venerdì"
-#: ../../include/text.php:970
+#: ../../include/text.php:973
msgid "Saturday"
msgstr "sabato"
-#: ../../include/text.php:970
+#: ../../include/text.php:973
msgid "Sunday"
msgstr "domenica"
-#: ../../include/text.php:974
+#: ../../include/text.php:977
msgid "January"
msgstr "gennaio"
-#: ../../include/text.php:974
+#: ../../include/text.php:977
msgid "February"
msgstr "febbraio"
-#: ../../include/text.php:974
+#: ../../include/text.php:977
msgid "March"
msgstr "marzo"
-#: ../../include/text.php:974
+#: ../../include/text.php:977
msgid "April"
msgstr "aprile"
-#: ../../include/text.php:974
+#: ../../include/text.php:977
msgid "May"
msgstr "maggio"
-#: ../../include/text.php:974
+#: ../../include/text.php:977
msgid "June"
msgstr "giugno"
-#: ../../include/text.php:974
+#: ../../include/text.php:977
msgid "July"
msgstr "luglio"
-#: ../../include/text.php:974
+#: ../../include/text.php:977
msgid "August"
msgstr "agosto"
-#: ../../include/text.php:974
+#: ../../include/text.php:977
msgid "September"
msgstr "settembre"
-#: ../../include/text.php:974
+#: ../../include/text.php:977
msgid "October"
msgstr "ottobre"
-#: ../../include/text.php:974
+#: ../../include/text.php:977
msgid "November"
msgstr "novembre"
-#: ../../include/text.php:974
+#: ../../include/text.php:977
msgid "December"
msgstr "dicembre"
-#: ../../include/text.php:1052 ../../mod/message.php:453
+#: ../../include/text.php:1055 ../../mod/message.php:453
msgid "unknown.???"
msgstr "sconosciuto???"
-#: ../../include/text.php:1053 ../../mod/message.php:454
+#: ../../include/text.php:1056 ../../mod/message.php:454
msgid "bytes"
msgstr "byte"
-#: ../../include/text.php:1088
+#: ../../include/text.php:1091
msgid "remove category"
msgstr "rimuovi la categoria"
-#: ../../include/text.php:1110
+#: ../../include/text.php:1113
msgid "remove from file"
msgstr "rimuovi dal file"
-#: ../../include/text.php:1164 ../../include/text.php:1176
+#: ../../include/text.php:1167 ../../include/text.php:1179
msgid "Click to open/close"
msgstr "Clicca per aprire/chiudere"
-#: ../../include/text.php:1352 ../../mod/events.php:326
+#: ../../include/text.php:1355 ../../mod/events.php:326
msgid "link to source"
msgstr "Link all'originale"
-#: ../../include/text.php:1371
+#: ../../include/text.php:1374
msgid "Select a page layout: "
msgstr "Scegli il layout della pagina:"
-#: ../../include/text.php:1374 ../../include/text.php:1439
+#: ../../include/text.php:1377 ../../include/text.php:1442
msgid "default"
msgstr "predefinito"
-#: ../../include/text.php:1410
+#: ../../include/text.php:1413
msgid "Page content type: "
msgstr "Contenuto della pagina:"
-#: ../../include/text.php:1451
+#: ../../include/text.php:1454
msgid "Select an alternate language"
msgstr "Seleziona una lingua diversa"
-#: ../../include/text.php:1603 ../../include/conversation.php:117
+#: ../../include/text.php:1606 ../../include/conversation.php:117
#: ../../mod/like.php:103 ../../mod/subthread.php:89 ../../mod/tagger.php:45
msgid "photo"
msgstr "la foto"
-#: ../../include/text.php:1606 ../../include/conversation.php:120
+#: ../../include/text.php:1609 ../../include/conversation.php:120
#: ../../mod/tagger.php:49
msgid "event"
msgstr "l'evento"
-#: ../../include/text.php:1609 ../../include/conversation.php:145
+#: ../../include/text.php:1612 ../../include/conversation.php:145
#: ../../mod/like.php:103 ../../mod/subthread.php:89 ../../mod/tagger.php:53
msgid "status"
msgstr "il messaggio di stato"
-#: ../../include/text.php:1611 ../../include/conversation.php:147
+#: ../../include/text.php:1614 ../../include/conversation.php:147
#: ../../mod/tagger.php:55
msgid "comment"
msgstr "il commento"
-#: ../../include/text.php:1616
+#: ../../include/text.php:1619
msgid "activity"
msgstr "l'attività"
-#: ../../include/text.php:1878
+#: ../../include/text.php:1881
msgid "Design"
msgstr "Design"
-#: ../../include/text.php:1880
+#: ../../include/text.php:1883
msgid "Blocks"
msgstr "Riquadri"
-#: ../../include/text.php:1881
+#: ../../include/text.php:1884
msgid "Menus"
msgstr "Menù"
-#: ../../include/text.php:1882
+#: ../../include/text.php:1885
msgid "Layouts"
msgstr "Layout"
-#: ../../include/text.php:1883
+#: ../../include/text.php:1886
msgid "Pages"
msgstr "Pagine"
-#: ../../include/identity.php:14 ../../mod/item.php:1131
+#: ../../include/api.php:972
+msgid "Public Timeline"
+msgstr "Diario pubblico"
+
+#: ../../include/identity.php:14 ../../mod/item.php:1148
msgid "Unable to obtain identity information from database"
msgstr "Impossibile ottenere le informazioni di identificazione dal database"
@@ -1543,7 +1542,7 @@ msgid "Default Profile"
msgstr "Profilo predefinito"
#: ../../include/identity.php:245 ../../include/profile_selectors.php:42
-#: ../../mod/network.php:387 ../../mod/connections.php:387
+#: ../../mod/network.php:387 ../../mod/connections.php:407
msgid "Friends"
msgstr "Amici"
@@ -1591,17 +1590,17 @@ msgstr "ha commentato l'articolo di %s"
#: ../../include/attach.php:204 ../../include/attach.php:237
#: ../../include/attach.php:251 ../../include/attach.php:272
#: ../../include/attach.php:464 ../../include/attach.php:539
-#: ../../include/items.php:3572 ../../mod/common.php:43
+#: ../../include/items.php:3608 ../../mod/common.php:43
#: ../../mod/events.php:134 ../../mod/invite.php:13 ../../mod/invite.php:102
#: ../../mod/allfriends.php:10 ../../mod/webpages.php:40 ../../mod/api.php:26
#: ../../mod/api.php:31 ../../mod/lastpost.php:93 ../../mod/page.php:30
-#: ../../mod/page.php:80 ../../mod/setup.php:200 ../../mod/settings.php:627
+#: ../../mod/page.php:80 ../../mod/setup.php:200 ../../mod/settings.php:628
#: ../../mod/viewconnections.php:33 ../../mod/viewconnections.php:38
#: ../../mod/delegate.php:6 ../../mod/sources.php:48 ../../mod/mitem.php:92
#: ../../mod/group.php:15 ../../mod/photos.php:74 ../../mod/photos.php:654
#: ../../mod/viewsrc.php:12 ../../mod/menu.php:40 ../../mod/message.php:208
#: ../../mod/layouts.php:27 ../../mod/layouts.php:42 ../../mod/network.php:7
-#: ../../mod/intro.php:50 ../../mod/connections.php:177
+#: ../../mod/intro.php:50 ../../mod/connections.php:197
#: ../../mod/profiles.php:163 ../../mod/profiles.php:476
#: ../../mod/new_channel.php:66 ../../mod/new_channel.php:97
#: ../../mod/filestorage.php:26 ../../mod/manage.php:6
@@ -1611,8 +1610,8 @@ msgstr "ha commentato l'articolo di %s"
#: ../../mod/editwebpage.php:64 ../../mod/notifications.php:66
#: ../../mod/blocks.php:29 ../../mod/blocks.php:44 ../../mod/editpost.php:13
#: ../../mod/poke.php:128 ../../mod/channel.php:123 ../../mod/fsuggest.php:78
-#: ../../mod/editblock.php:48 ../../mod/item.php:173 ../../mod/item.php:181
-#: ../../mod/suggest.php:32 ../../mod/register.php:60 ../../mod/regmod.php:18
+#: ../../mod/editblock.php:48 ../../mod/item.php:181 ../../mod/item.php:189
+#: ../../mod/suggest.php:32 ../../mod/register.php:68 ../../mod/regmod.php:18
#: ../../mod/mood.php:114 ../../index.php:178 ../../index.php:340
msgid "Permission denied."
msgstr "Permesso negato."
@@ -1634,7 +1633,7 @@ msgstr "Impossibile elaborare l'immagine"
msgid "Photo storage failed."
msgstr "Impossibile caricare la foto."
-#: ../../include/photos.php:288 ../../boot.php:2246
+#: ../../include/photos.php:288 ../../boot.php:2242
msgid "Photo Albums"
msgstr "Album foto"
@@ -1929,20 +1928,20 @@ msgstr "mkdir fallito."
msgid "database storage failed."
msgstr "scrittura su database fallita."
-#: ../../include/zot.php:426
+#: ../../include/zot.php:542
msgid "Invalid data packet"
msgstr "Dati non validi"
-#: ../../include/zot.php:436
+#: ../../include/zot.php:552
msgid "Unable to verify channel signature"
msgstr "Impossibile verificare la firma elettronica del canale"
-#: ../../include/zot.php:582
+#: ../../include/zot.php:697
#, php-format
msgid "Unable to verify site signature for %s"
msgstr "Impossibile verificare la firma elettronica del sito %s"
-#: ../../include/nav.php:72 ../../include/nav.php:87 ../../boot.php:1462
+#: ../../include/nav.php:72 ../../include/nav.php:87 ../../boot.php:1458
msgid "Logout"
msgstr "Esci"
@@ -1970,7 +1969,7 @@ msgstr "Modifica i profili"
msgid "Manage/Edit Profiles"
msgstr "Gestisci e modifica i profili"
-#: ../../include/nav.php:79 ../../mod/fbrowser.php:25 ../../boot.php:2243
+#: ../../include/nav.php:79 ../../mod/fbrowser.php:25 ../../boot.php:2239
msgid "Photos"
msgstr "Foto"
@@ -1978,7 +1977,7 @@ msgstr "Foto"
msgid "Your photos"
msgstr "Le tue foto"
-#: ../../include/nav.php:85 ../../boot.php:1463
+#: ../../include/nav.php:85 ../../boot.php:1459
msgid "Login"
msgstr "Accedi"
@@ -1999,7 +1998,7 @@ msgstr "Clicca per autenticarti sul tuo server principale"
msgid "Home Page"
msgstr "Bacheca"
-#: ../../include/nav.php:125 ../../mod/register.php:187 ../../boot.php:1439
+#: ../../include/nav.php:125 ../../mod/register.php:195 ../../boot.php:1435
msgid "Register"
msgstr "Iscriviti"
@@ -2007,7 +2006,7 @@ msgstr "Iscriviti"
msgid "Create an account"
msgstr "Crea un account"
-#: ../../include/nav.php:130 ../../mod/help.php:34
+#: ../../include/nav.php:130 ../../mod/help.php:45 ../../mod/help.php:49
msgid "Help"
msgstr "Guida"
@@ -2071,7 +2070,7 @@ msgstr "Segna come lette le notifiche dei canali"
msgid "Intros"
msgstr "Richieste"
-#: ../../include/nav.php:158 ../../mod/connections.php:565
+#: ../../include/nav.php:158 ../../mod/connections.php:585
msgid "New Connections"
msgstr "Nuovi contatti"
@@ -2123,7 +2122,7 @@ msgstr "Inviati"
msgid "New Message"
msgstr "Nuovo messaggio"
-#: ../../include/nav.php:174 ../../mod/events.php:348 ../../boot.php:2254
+#: ../../include/nav.php:174 ../../mod/events.php:348 ../../boot.php:2250
msgid "Events"
msgstr "Eventi"
@@ -2148,7 +2147,7 @@ msgid "Manage Your Channels"
msgstr "Gestisci i contatti dei tuoi canali"
#: ../../include/nav.php:180 ../../mod/settings.php:131
-#: ../../mod/admin.php:769 ../../mod/admin.php:974
+#: ../../mod/admin.php:782 ../../mod/admin.php:987
msgid "Settings"
msgstr "Impostazioni"
@@ -2156,7 +2155,7 @@ msgstr "Impostazioni"
msgid "Account/Channel Settings"
msgstr "Impostazioni account e canali"
-#: ../../include/nav.php:182 ../../mod/connections.php:671
+#: ../../include/nav.php:182 ../../mod/connections.php:691
msgid "Connections"
msgstr "Contatti"
@@ -2172,11 +2171,11 @@ msgstr "Amministrazione"
msgid "Site Setup and Configuration"
msgstr "Configurazione del sito"
-#: ../../include/nav.php:212
+#: ../../include/nav.php:215
msgid "Nothing new here"
msgstr "Niente di nuovo qui"
-#: ../../include/nav.php:217
+#: ../../include/nav.php:220
msgid "Please wait..."
msgstr "Attendere..."
@@ -2236,256 +2235,6 @@ msgstr "Account approvato."
msgid "Registration revoked for %s"
msgstr "Registrazione revocata per %s"
-#: ../../include/auth.php:67
-msgid "Logged out."
-msgstr "Uscita effettuata."
-
-#: ../../include/auth.php:179
-msgid "Failed authentication"
-msgstr "Autenticazione fallita"
-
-#: ../../include/auth.php:188
-msgid "Login failed."
-msgstr "Accesso fallito."
-
-#: ../../include/contact_widgets.php:14
-#, php-format
-msgid "You have %1$.0f of %2$.0f allowed connections."
-msgstr "Hai attivato %1$.0f delle %2$.0f connessioni permesse."
-
-#: ../../include/contact_widgets.php:20
-msgid "Add New Connection"
-msgstr "Aggiungi un contatto"
-
-#: ../../include/contact_widgets.php:21
-msgid "Enter the channel address"
-msgstr "Scrivi l'indirizzo del canale"
-
-#: ../../include/contact_widgets.php:22
-msgid "Example: bob@example.com, http://example.com/barbara"
-msgstr "Per esempio: mario@pippo.it oppure http://pluto.com/barbara"
-
-#: ../../include/contact_widgets.php:38
-#, php-format
-msgid "%d invitation available"
-msgid_plural "%d invitations available"
-msgstr[0] "%d invito disponibile"
-msgstr[1] "%d inviti disponibili"
-
-#: ../../include/contact_widgets.php:44
-msgid "Find Channels"
-msgstr "Ricerca canali"
-
-#: ../../include/contact_widgets.php:45
-msgid "Enter name or interest"
-msgstr "Scrivi un nome o un interesse"
-
-#: ../../include/contact_widgets.php:46
-msgid "Connect/Follow"
-msgstr "Segui"
-
-#: ../../include/contact_widgets.php:47
-msgid "Examples: Robert Morgenstein, Fishing"
-msgstr "Per esempio: Mario Rossi, Pesca"
-
-#: ../../include/contact_widgets.php:48 ../../mod/connections.php:677
-#: ../../mod/directory.php:221 ../../mod/directory.php:226
-msgid "Find"
-msgstr "Cerca"
-
-#: ../../include/contact_widgets.php:49 ../../mod/suggest.php:64
-msgid "Channel Suggestions"
-msgstr "Canali suggeriti"
-
-#: ../../include/contact_widgets.php:51
-msgid "Random Profile"
-msgstr "Profilo casuale"
-
-#: ../../include/contact_widgets.php:52
-msgid "Invite Friends"
-msgstr "Invita amici"
-
-#: ../../include/contact_widgets.php:79 ../../include/contact_widgets.php:113
-msgid "Everything"
-msgstr "Tutto"
-
-#: ../../include/contact_widgets.php:110 ../../include/widgets.php:26
-msgid "Categories"
-msgstr "Categorie"
-
-#: ../../include/contact_widgets.php:143
-#, php-format
-msgid "%d connection in common"
-msgid_plural "%d connections in common"
-msgstr[0] "%d contatto in comune"
-msgstr[1] "%d contatti in comune"
-
-#: ../../include/page_widgets.php:6
-msgid "New Page"
-msgstr "Nuova pagina web"
-
-#: ../../include/follow.php:21
-msgid "Channel is blocked on this site."
-msgstr "Il canale è bloccato per questo sito."
-
-#: ../../include/follow.php:26
-msgid "Channel location missing."
-msgstr "Manca l'indirizzo del canale."
-
-#: ../../include/follow.php:43
-msgid "Channel discovery failed. Website may be down or misconfigured."
-msgstr "La ricerca del canale è fallita. Il sito potrebbe avere problemi o una configurazione sbagliata."
-
-#: ../../include/follow.php:51
-msgid "Response from remote channel was not understood."
-msgstr "La risposta dal canale non è comprensibile."
-
-#: ../../include/follow.php:58
-msgid "Response from remote channel was incomplete."
-msgstr "La risposta dal canale non è completa."
-
-#: ../../include/follow.php:129
-msgid "local account not found."
-msgstr "l'account locale non è stato trovato."
-
-#: ../../include/follow.php:138
-msgid "Cannot connect to yourself."
-msgstr "Non puoi connetterti a te stesso."
-
-#: ../../include/permissions.php:13
-msgid "Can view my \"public\" stream and posts"
-msgstr "Può vedere i miei contenuti \"pubblici\""
-
-#: ../../include/permissions.php:14
-msgid "Can view my \"public\" channel profile"
-msgstr "Può vedere il profilo del mio canale \"pubblico\""
-
-#: ../../include/permissions.php:15
-msgid "Can view my \"public\" photo albums"
-msgstr "Può vedere il mio album fotografico \"pubblico\""
-
-#: ../../include/permissions.php:16
-msgid "Can view my \"public\" address book"
-msgstr "Può vedere il mio elenco contatti \"pubblico\""
-
-#: ../../include/permissions.php:17
-msgid "Can view my \"public\" file storage"
-msgstr "Può vedere il mio archivio file \"pubblico\""
-
-#: ../../include/permissions.php:18
-msgid "Can view my \"public\" pages"
-msgstr "Può vedere le mie pagine web \"pubbliche\""
-
-#: ../../include/permissions.php:21
-msgid "Can send me their channel stream and posts"
-msgstr "Può mostrarmi i contenuti del canale e gli articoli"
-
-#: ../../include/permissions.php:22
-msgid "Can post on my channel page (\"wall\")"
-msgstr "Può scrivere sulla bacheca del mio canale"
-
-#: ../../include/permissions.php:23
-msgid "Can comment on my posts"
-msgstr "Può commentare i miei articoli"
-
-#: ../../include/permissions.php:24
-msgid "Can send me private mail messages"
-msgstr "Può inviarmi messaggi privati"
-
-#: ../../include/permissions.php:25
-msgid "Can post photos to my photo albums"
-msgstr "Può aggiungere foto ai miei album"
-
-#: ../../include/permissions.php:26
-msgid "Can forward to all my channel contacts via post @mentions"
-msgstr "Può inoltrare articoli a tutti i contatti del canale tramite una @menzione"
-
-#: ../../include/permissions.php:26
-msgid "Advanced - useful for creating group forum channels"
-msgstr "Impostazione avanzata - utile per creare un canale-forum di discussione"
-
-#: ../../include/permissions.php:27
-msgid "Can chat with me (when available)"
-msgstr "Può aprire una chat con me (se disponibile)"
-
-#: ../../include/permissions.php:27
-msgid "Requires compatible chat plugin"
-msgstr "Necessita di un plugin di chat compatibile"
-
-#: ../../include/permissions.php:28
-msgid "Can write to my \"public\" file storage"
-msgstr "Può scrivere sul mio archivio di file \"pubblico\""
-
-#: ../../include/permissions.php:29
-msgid "Can edit my \"public\" pages"
-msgstr "Può modificare le mie pagine web \"pubbliche\""
-
-#: ../../include/permissions.php:31
-msgid "Can source my \"public\" posts in derived channels"
-msgstr "Può aggiungere i miei post \"pubblici\" a un suo canale derivato"
-
-#: ../../include/permissions.php:31
-msgid "Somewhat advanced - very useful in open communities"
-msgstr "Piuttosto avanzato - molto utile nelle comunità aperte"
-
-#: ../../include/permissions.php:32
-msgid "Can administer my channel resources"
-msgstr "Può amministrare i contenuti del mio canale"
-
-#: ../../include/permissions.php:32
-msgid ""
-"Extremely advanced. Leave this alone unless you know what you are doing"
-msgstr "Impostazione pericolosa - lasciare il valore predefinito se non si è assolutamente sicuri"
-
-#: ../../include/taxonomy.php:210
-msgid "Tags"
-msgstr "Tag"
-
-#: ../../include/taxonomy.php:224
-msgid "Keywords"
-msgstr "Parole chiave"
-
-#: ../../include/taxonomy.php:249
-msgid "have"
-msgstr "ho"
-
-#: ../../include/taxonomy.php:249
-msgid "has"
-msgstr "ha"
-
-#: ../../include/taxonomy.php:250
-msgid "want"
-msgstr "voglio"
-
-#: ../../include/taxonomy.php:250
-msgid "wants"
-msgstr "vuole"
-
-#: ../../include/taxonomy.php:251
-msgid "likes"
-msgstr "ama"
-
-#: ../../include/taxonomy.php:252
-msgid "dislikes"
-msgstr "non ama"
-
-#: ../../include/plugin.php:440 ../../include/plugin.php:442
-msgid "Click here to upgrade."
-msgstr "Clicca qui per aggiornare."
-
-#: ../../include/plugin.php:448
-msgid "This action exceeds the limits set by your subscription plan."
-msgstr "Questa operazione esce dai termini del tuo abbonamento."
-
-#: ../../include/plugin.php:453
-msgid "This action is not available under your subscription plan."
-msgstr "Questa operazione non è prevista dal tuo abbonamento."
-
-#: ../../include/comanche.php:35 ../../view/theme/redbasic/php/config.php:56
-#: ../../view/theme/apw/php/config.php:176
-msgid "Default"
-msgstr "Predefinito"
-
#: ../../include/conversation.php:123
msgid "channel"
msgstr "canale"
@@ -2569,12 +2318,16 @@ msgstr "Non piace a %s."
#: ../../include/conversation.php:996
#, php-format
msgid "<span %1$s>%2$d people</span> like this."
-msgstr "Piace a <span %1$s>%2$d persone</span>."
+msgid_plural "<span %1$s>%2$d people</span> like this."
+msgstr[0] ""
+msgstr[1] "Piace a <span %1$s>%2$d persone</span>."
#: ../../include/conversation.php:998
#, php-format
msgid "<span %1$s>%2$d people</span> don't like this."
-msgstr "Non piace a <span %1$s>%2$d persone</span>."
+msgid_plural "<span %1$s>%2$d people</span> don't like this."
+msgstr[0] ""
+msgstr[1] "Non piace a <span %1$s>%2$d persone</span>."
#: ../../include/conversation.php:1004
msgid "and"
@@ -2583,7 +2336,9 @@ msgstr "e"
#: ../../include/conversation.php:1007
#, php-format
msgid ", and %d other people"
-msgstr "e altre %d persone"
+msgid_plural ", and %d other people"
+msgstr[0] ""
+msgstr[1] "e altre %d persone"
#: ../../include/conversation.php:1008
#, php-format
@@ -2747,6 +2502,256 @@ msgstr "Per esempio: mario@esempio.com, simona@esempio.com"
msgid "Set expiration date"
msgstr "Data di scadenza"
+#: ../../include/auth.php:67
+msgid "Logged out."
+msgstr "Uscita effettuata."
+
+#: ../../include/auth.php:179
+msgid "Failed authentication"
+msgstr "Autenticazione fallita"
+
+#: ../../include/auth.php:188
+msgid "Login failed."
+msgstr "Accesso fallito."
+
+#: ../../include/contact_widgets.php:14
+#, php-format
+msgid "You have %1$.0f of %2$.0f allowed connections."
+msgstr "Hai attivato %1$.0f delle %2$.0f connessioni permesse."
+
+#: ../../include/contact_widgets.php:20
+msgid "Add New Connection"
+msgstr "Aggiungi un contatto"
+
+#: ../../include/contact_widgets.php:21
+msgid "Enter the channel address"
+msgstr "Scrivi l'indirizzo del canale"
+
+#: ../../include/contact_widgets.php:22
+msgid "Example: bob@example.com, http://example.com/barbara"
+msgstr "Per esempio: mario@pippo.it oppure http://pluto.com/barbara"
+
+#: ../../include/contact_widgets.php:38
+#, php-format
+msgid "%d invitation available"
+msgid_plural "%d invitations available"
+msgstr[0] "%d invito disponibile"
+msgstr[1] "%d inviti disponibili"
+
+#: ../../include/contact_widgets.php:44
+msgid "Find Channels"
+msgstr "Ricerca canali"
+
+#: ../../include/contact_widgets.php:45
+msgid "Enter name or interest"
+msgstr "Scrivi un nome o un interesse"
+
+#: ../../include/contact_widgets.php:46
+msgid "Connect/Follow"
+msgstr "Entra in contatto/segui"
+
+#: ../../include/contact_widgets.php:47
+msgid "Examples: Robert Morgenstein, Fishing"
+msgstr "Per esempio: Mario Rossi, Pesca"
+
+#: ../../include/contact_widgets.php:48 ../../mod/connections.php:697
+#: ../../mod/directory.php:221 ../../mod/directory.php:226
+msgid "Find"
+msgstr "Cerca"
+
+#: ../../include/contact_widgets.php:49 ../../mod/suggest.php:64
+msgid "Channel Suggestions"
+msgstr "Canali suggeriti"
+
+#: ../../include/contact_widgets.php:51
+msgid "Random Profile"
+msgstr "Profilo casuale"
+
+#: ../../include/contact_widgets.php:52
+msgid "Invite Friends"
+msgstr "Invita amici"
+
+#: ../../include/contact_widgets.php:79 ../../include/contact_widgets.php:113
+msgid "Everything"
+msgstr "Tutto"
+
+#: ../../include/contact_widgets.php:110 ../../include/widgets.php:26
+msgid "Categories"
+msgstr "Categorie"
+
+#: ../../include/contact_widgets.php:143
+#, php-format
+msgid "%d connection in common"
+msgid_plural "%d connections in common"
+msgstr[0] "%d contatto in comune"
+msgstr[1] "%d contatti in comune"
+
+#: ../../include/page_widgets.php:6
+msgid "New Page"
+msgstr "Nuova pagina web"
+
+#: ../../include/follow.php:21
+msgid "Channel is blocked on this site."
+msgstr "Il canale è bloccato per questo sito."
+
+#: ../../include/follow.php:26
+msgid "Channel location missing."
+msgstr "Manca l'indirizzo del canale."
+
+#: ../../include/follow.php:43
+msgid "Channel discovery failed. Website may be down or misconfigured."
+msgstr "La ricerca del canale è fallita. Il sito potrebbe avere problemi o una configurazione sbagliata."
+
+#: ../../include/follow.php:51
+msgid "Response from remote channel was not understood."
+msgstr "La risposta dal canale non è comprensibile."
+
+#: ../../include/follow.php:58
+msgid "Response from remote channel was incomplete."
+msgstr "La risposta dal canale non è completa."
+
+#: ../../include/follow.php:129
+msgid "local account not found."
+msgstr "l'account locale non è stato trovato."
+
+#: ../../include/follow.php:138
+msgid "Cannot connect to yourself."
+msgstr "Non puoi connetterti a te stesso."
+
+#: ../../include/permissions.php:13
+msgid "Can view my \"public\" stream and posts"
+msgstr "Può vedere i miei contenuti \"pubblici\""
+
+#: ../../include/permissions.php:14
+msgid "Can view my \"public\" channel profile"
+msgstr "Può vedere il profilo del mio canale \"pubblico\""
+
+#: ../../include/permissions.php:15
+msgid "Can view my \"public\" photo albums"
+msgstr "Può vedere il mio album fotografico \"pubblico\""
+
+#: ../../include/permissions.php:16
+msgid "Can view my \"public\" address book"
+msgstr "Può vedere il mio elenco contatti \"pubblico\""
+
+#: ../../include/permissions.php:17
+msgid "Can view my \"public\" file storage"
+msgstr "Può vedere il mio archivio file \"pubblico\""
+
+#: ../../include/permissions.php:18
+msgid "Can view my \"public\" pages"
+msgstr "Può vedere le mie pagine web \"pubbliche\""
+
+#: ../../include/permissions.php:21
+msgid "Can send me their channel stream and posts"
+msgstr "Può mostrarmi i contenuti del canale e gli articoli"
+
+#: ../../include/permissions.php:22
+msgid "Can post on my channel page (\"wall\")"
+msgstr "Può scrivere sulla bacheca del mio canale"
+
+#: ../../include/permissions.php:23
+msgid "Can comment on my posts"
+msgstr "Può commentare i miei articoli"
+
+#: ../../include/permissions.php:24
+msgid "Can send me private mail messages"
+msgstr "Può inviarmi messaggi privati"
+
+#: ../../include/permissions.php:25
+msgid "Can post photos to my photo albums"
+msgstr "Può aggiungere foto ai miei album"
+
+#: ../../include/permissions.php:26
+msgid "Can forward to all my channel contacts via post @mentions"
+msgstr "Può inoltrare articoli a tutti i contatti del canale tramite una @menzione"
+
+#: ../../include/permissions.php:26
+msgid "Advanced - useful for creating group forum channels"
+msgstr "Impostazione avanzata - utile per creare un canale-forum di discussione"
+
+#: ../../include/permissions.php:27
+msgid "Can chat with me (when available)"
+msgstr "Può aprire una chat con me (se disponibile)"
+
+#: ../../include/permissions.php:27
+msgid "Requires compatible chat plugin"
+msgstr "Necessita di un plugin di chat compatibile"
+
+#: ../../include/permissions.php:28
+msgid "Can write to my \"public\" file storage"
+msgstr "Può scrivere sul mio archivio di file \"pubblico\""
+
+#: ../../include/permissions.php:29
+msgid "Can edit my \"public\" pages"
+msgstr "Può modificare le mie pagine web \"pubbliche\""
+
+#: ../../include/permissions.php:31
+msgid "Can source my \"public\" posts in derived channels"
+msgstr "Può aggiungere i miei post \"pubblici\" a un suo canale derivato"
+
+#: ../../include/permissions.php:31
+msgid "Somewhat advanced - very useful in open communities"
+msgstr "Piuttosto avanzato - molto utile nelle comunità aperte"
+
+#: ../../include/permissions.php:32
+msgid "Can administer my channel resources"
+msgstr "Può amministrare i contenuti del mio canale"
+
+#: ../../include/permissions.php:32
+msgid ""
+"Extremely advanced. Leave this alone unless you know what you are doing"
+msgstr "Impostazione pericolosa - lasciare il valore predefinito se non si è assolutamente sicuri"
+
+#: ../../include/taxonomy.php:210
+msgid "Tags"
+msgstr "Tag"
+
+#: ../../include/taxonomy.php:224
+msgid "Keywords"
+msgstr "Parole chiave"
+
+#: ../../include/taxonomy.php:249
+msgid "have"
+msgstr "ho"
+
+#: ../../include/taxonomy.php:249
+msgid "has"
+msgstr "ha"
+
+#: ../../include/taxonomy.php:250
+msgid "want"
+msgstr "voglio"
+
+#: ../../include/taxonomy.php:250
+msgid "wants"
+msgstr "vuole"
+
+#: ../../include/taxonomy.php:251
+msgid "likes"
+msgstr "ama"
+
+#: ../../include/taxonomy.php:252
+msgid "dislikes"
+msgstr "non ama"
+
+#: ../../include/plugin.php:473 ../../include/plugin.php:475
+msgid "Click here to upgrade."
+msgstr "Clicca qui per aggiornare."
+
+#: ../../include/plugin.php:481
+msgid "This action exceeds the limits set by your subscription plan."
+msgstr "Questa operazione esce dai termini del tuo abbonamento."
+
+#: ../../include/plugin.php:486
+msgid "This action is not available under your subscription plan."
+msgstr "Questa operazione non è prevista dal tuo abbonamento."
+
+#: ../../include/comanche.php:35 ../../view/theme/redbasic/php/config.php:62
+#: ../../view/theme/apw/php/config.php:176
+msgid "Default"
+msgstr "Predefinito"
+
#: ../../include/security.php:49
msgid "Welcome "
msgstr "Ciao"
@@ -2770,27 +2775,27 @@ msgstr "L'identificativo di sicurezza del modulo che hai riempito non è corrett
msgid "Permission denied"
msgstr "Permesso negato"
-#: ../../include/items.php:3521 ../../mod/admin.php:150
-#: ../../mod/admin.php:714 ../../mod/admin.php:917 ../../mod/viewsrc.php:18
+#: ../../include/items.php:3546 ../../mod/admin.php:150
+#: ../../mod/admin.php:727 ../../mod/admin.php:930 ../../mod/viewsrc.php:18
#: ../../mod/home.php:64 ../../mod/display.php:32
msgid "Item not found."
msgstr "Elemento non trovato."
-#: ../../include/items.php:3693
+#: ../../include/items.php:3729
msgid "Archives"
msgstr "Archivi"
-#: ../../include/items.php:3854 ../../mod/group.php:44 ../../mod/group.php:146
+#: ../../include/items.php:3895 ../../mod/group.php:44 ../../mod/group.php:146
msgid "Collection not found."
msgstr "Insieme non trovato."
-#: ../../include/items.php:3870 ../../mod/network.php:469
+#: ../../include/items.php:3911 ../../mod/network.php:469
msgid "Group is empty"
msgstr "L'insieme è vuoto"
-#: ../../include/items.php:3886
+#: ../../include/items.php:3927
msgid "Connection not found."
-msgstr "Gruppo non trovato."
+msgstr "Contatto non trovato."
#: ../../include/dir_fns.php:15
msgid "Sort Options"
@@ -3031,7 +3036,7 @@ msgstr "Nessun amico da visualizzare."
#: ../../mod/webpages.php:8 ../../mod/connect.php:13 ../../mod/layouts.php:8
#: ../../mod/filestorage.php:8 ../../mod/blocks.php:10 ../../mod/profile.php:8
-#: ../../boot.php:1644
+#: ../../boot.php:1640
msgid "Requested profile is not available."
msgstr "Il profilo richiesto non è disponibile."
@@ -3058,17 +3063,17 @@ msgid ""
" and/or create new posts for you?"
msgstr "Vuoi autorizzare questa app ad accedere ai messaggi e ai contatti o creare nuovi messaggi per te?"
-#: ../../mod/api.php:105 ../../mod/settings.php:1008
-#: ../../mod/settings.php:1013 ../../mod/settings.php:1036
-#: ../../mod/settings.php:1038 ../../mod/settings.php:1039
-#: ../../mod/settings.php:1040 ../../mod/profiles.php:506
+#: ../../mod/api.php:105 ../../mod/settings.php:1009
+#: ../../mod/settings.php:1014 ../../mod/settings.php:1037
+#: ../../mod/settings.php:1039 ../../mod/settings.php:1040
+#: ../../mod/settings.php:1041 ../../mod/profiles.php:506
msgid "Yes"
msgstr "Si"
-#: ../../mod/api.php:106 ../../mod/settings.php:1008
-#: ../../mod/settings.php:1013 ../../mod/settings.php:1036
-#: ../../mod/settings.php:1038 ../../mod/settings.php:1039
-#: ../../mod/settings.php:1040 ../../mod/profiles.php:507
+#: ../../mod/api.php:106 ../../mod/settings.php:1009
+#: ../../mod/settings.php:1014 ../../mod/settings.php:1037
+#: ../../mod/settings.php:1039 ../../mod/settings.php:1040
+#: ../../mod/settings.php:1041 ../../mod/profiles.php:507
msgid "No"
msgstr "No"
@@ -3089,11 +3094,11 @@ msgid "Invalid item."
msgstr "Elemento non valido."
#: ../../mod/page.php:47 ../../mod/chanview.php:78 ../../mod/home.php:51
-#: ../../mod/magic.php:77 ../../mod/wall_upload.php:35
+#: ../../mod/magic.php:95 ../../mod/wall_upload.php:35
msgid "Channel not found."
msgstr "Canale non trovato."
-#: ../../mod/page.php:83 ../../mod/help.php:41 ../../mod/display.php:92
+#: ../../mod/page.php:83 ../../mod/help.php:56 ../../mod/display.php:92
#: ../../index.php:229
msgid "Page not found."
msgstr "Pagina non trovata."
@@ -3437,7 +3442,7 @@ msgid ""
"poller."
msgstr "IMPORTANTE: Devi creare [manualmente] la pianificazione del polling."
-#: ../../mod/rpost.php:83 ../../mod/editpost.php:42
+#: ../../mod/rpost.php:84 ../../mod/editpost.php:42
msgid "Edit post"
msgstr "Modifica articolo"
@@ -3505,7 +3510,7 @@ msgstr "Il nome è obbligatorio"
msgid "Key and Secret are required"
msgstr "Chiave e Segreto sono richiesti"
-#: ../../mod/settings.php:179 ../../mod/settings.php:676
+#: ../../mod/settings.php:179 ../../mod/settings.php:677
msgid "Update"
msgstr "Aggiorna"
@@ -3537,386 +3542,386 @@ msgstr "È un indirizzo email riservato. Non puoi sceglierlo."
msgid "System failure storing new email. Please try again."
msgstr "Errore di sistema. Non è stato possibile memorizzare il tuo messaggio, riprova per favore."
-#: ../../mod/settings.php:578
+#: ../../mod/settings.php:579
msgid "Settings updated."
msgstr "Impostazioni aggiornate."
-#: ../../mod/settings.php:649 ../../mod/settings.php:675
-#: ../../mod/settings.php:711
+#: ../../mod/settings.php:650 ../../mod/settings.php:676
+#: ../../mod/settings.php:712
msgid "Add application"
msgstr "Aggiungi una app"
-#: ../../mod/settings.php:651 ../../mod/settings.php:677
+#: ../../mod/settings.php:652 ../../mod/settings.php:678
#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/fbrowser.php:82
#: ../../mod/fbrowser.php:117
msgid "Cancel"
msgstr "Annulla"
-#: ../../mod/settings.php:652 ../../mod/settings.php:678
-#: ../../mod/admin.php:673 ../../mod/crepair.php:148
+#: ../../mod/settings.php:653 ../../mod/settings.php:679
+#: ../../mod/admin.php:686 ../../mod/crepair.php:148
msgid "Name"
msgstr "Nome"
-#: ../../mod/settings.php:652
+#: ../../mod/settings.php:653
msgid "Name of application"
msgstr "Nome dell'applicazione"
-#: ../../mod/settings.php:653 ../../mod/settings.php:679
+#: ../../mod/settings.php:654 ../../mod/settings.php:680
msgid "Consumer Key"
msgstr "Consumer Key"
-#: ../../mod/settings.php:653 ../../mod/settings.php:654
+#: ../../mod/settings.php:654 ../../mod/settings.php:655
msgid "Automatically generated - change if desired. Max length 20"
msgstr "Generato automaticamente - è possibile cambiarlo. Lunghezza massima 20"
-#: ../../mod/settings.php:654 ../../mod/settings.php:680
+#: ../../mod/settings.php:655 ../../mod/settings.php:681
msgid "Consumer Secret"
msgstr "Consumer Secret"
-#: ../../mod/settings.php:655 ../../mod/settings.php:681
+#: ../../mod/settings.php:656 ../../mod/settings.php:682
msgid "Redirect"
msgstr "Redirect"
-#: ../../mod/settings.php:655
+#: ../../mod/settings.php:656
msgid ""
"Redirect URI - leave blank unless your application specifically requires "
"this"
msgstr "URI ridirezionato - lasciare bianco se non richiesto specificamente dall'applicazione."
-#: ../../mod/settings.php:656 ../../mod/settings.php:682
+#: ../../mod/settings.php:657 ../../mod/settings.php:683
msgid "Icon url"
msgstr "Url icona"
-#: ../../mod/settings.php:656
+#: ../../mod/settings.php:657
msgid "Optional"
msgstr "Opzionale"
-#: ../../mod/settings.php:667
+#: ../../mod/settings.php:668
msgid "You can't edit this application."
msgstr "Non puoi modificare questa applicazione."
-#: ../../mod/settings.php:710
+#: ../../mod/settings.php:711
msgid "Connected Apps"
msgstr "App connesse"
-#: ../../mod/settings.php:714
+#: ../../mod/settings.php:715
msgid "Client key starts with"
msgstr "La client key inizia con"
-#: ../../mod/settings.php:715
+#: ../../mod/settings.php:716
msgid "No name"
msgstr "Nessun nome"
-#: ../../mod/settings.php:716
+#: ../../mod/settings.php:717
msgid "Remove authorization"
msgstr "Revoca l'autorizzazione"
-#: ../../mod/settings.php:727
+#: ../../mod/settings.php:728
msgid "No feature settings configured"
msgstr "Non ci sono funzionalità aggiuntive personalizzabili"
-#: ../../mod/settings.php:735
+#: ../../mod/settings.php:736
msgid "Feature Settings"
msgstr "Impostazioni aggiuntive"
-#: ../../mod/settings.php:758
+#: ../../mod/settings.php:759
msgid "Account Settings"
msgstr "Impostazioni account"
-#: ../../mod/settings.php:759
+#: ../../mod/settings.php:760
msgid "Password Settings"
msgstr "Impostazioni password"
-#: ../../mod/settings.php:760
+#: ../../mod/settings.php:761
msgid "New Password:"
msgstr "Nuova password:"
-#: ../../mod/settings.php:761
+#: ../../mod/settings.php:762
msgid "Confirm:"
msgstr "Conferma:"
-#: ../../mod/settings.php:761
+#: ../../mod/settings.php:762
msgid "Leave password fields blank unless changing"
msgstr "Lascia questi campi in bianco per non cambiare la password"
-#: ../../mod/settings.php:763 ../../mod/settings.php:1062
+#: ../../mod/settings.php:764 ../../mod/settings.php:1063
msgid "Email Address:"
msgstr "Indirizzo email:"
-#: ../../mod/settings.php:764
+#: ../../mod/settings.php:765
msgid "Remove Account"
msgstr "Elimina l'account"
-#: ../../mod/settings.php:765
+#: ../../mod/settings.php:766
msgid "Warning: This action is permanent and cannot be reversed."
msgstr "Attenzione: questa azione è permanente e non potrà più essere annullata."
-#: ../../mod/settings.php:781
+#: ../../mod/settings.php:782
msgid "Off"
msgstr "Off"
-#: ../../mod/settings.php:781
+#: ../../mod/settings.php:782
msgid "On"
msgstr "On"
-#: ../../mod/settings.php:788
+#: ../../mod/settings.php:789
msgid "Additional Features"
msgstr "Funzionalità aggiuntive"
-#: ../../mod/settings.php:813
+#: ../../mod/settings.php:814
msgid "Connector Settings"
msgstr "Impostazioni del connettore"
-#: ../../mod/settings.php:843 ../../mod/admin.php:369
+#: ../../mod/settings.php:844 ../../mod/admin.php:369
msgid "No special theme for mobile devices"
msgstr "Nessun tema per dispositivi mobili"
-#: ../../mod/settings.php:883
+#: ../../mod/settings.php:884
msgid "Display Settings"
msgstr "Impostazioni grafiche"
-#: ../../mod/settings.php:889
+#: ../../mod/settings.php:890
msgid "Display Theme:"
msgstr "Tema per monitor:"
-#: ../../mod/settings.php:890
+#: ../../mod/settings.php:891
msgid "Mobile Theme:"
msgstr "Tema per dispositivi mobili:"
-#: ../../mod/settings.php:891
+#: ../../mod/settings.php:892
msgid "Update browser every xx seconds"
msgstr "Aggiorna il browser ogni x secondi"
-#: ../../mod/settings.php:891
+#: ../../mod/settings.php:892
msgid "Minimum of 10 seconds, no maximum"
msgstr "Minimo 10 secondi, nessun limite massimo"
-#: ../../mod/settings.php:892
+#: ../../mod/settings.php:893
msgid "Maximum number of conversations to load at any time:"
msgstr "Massimo numero di conversazioni da mostrare ogni volta:"
-#: ../../mod/settings.php:892
+#: ../../mod/settings.php:893
msgid "Maximum of 100 items"
msgstr "Massimo 100"
-#: ../../mod/settings.php:893
+#: ../../mod/settings.php:894
msgid "Don't show emoticons"
msgstr "Non mostrare le emoticons"
-#: ../../mod/settings.php:929
+#: ../../mod/settings.php:930
msgid "Nobody except yourself"
msgstr "Nessuno tranne te"
-#: ../../mod/settings.php:930
+#: ../../mod/settings.php:931
msgid "Only those you specifically allow"
msgstr "Solo chi riceve il mio permesso"
-#: ../../mod/settings.php:931
+#: ../../mod/settings.php:932
msgid "Anybody in your address book"
msgstr "Chiunque tra i miei contatti"
-#: ../../mod/settings.php:932
+#: ../../mod/settings.php:933
msgid "Anybody on this website"
msgstr "Chiunque su questo sito"
-#: ../../mod/settings.php:933
+#: ../../mod/settings.php:934
msgid "Anybody in this network"
msgstr "Chiunque su Red"
-#: ../../mod/settings.php:934
+#: ../../mod/settings.php:935
msgid "Anybody on the internet"
msgstr "Chiunque su internet"
-#: ../../mod/settings.php:1008
+#: ../../mod/settings.php:1009
msgid "Publish your default profile in the network directory"
msgstr "Pubblica il mio profilo predefinito sull'elenco pubblico dei canali"
-#: ../../mod/settings.php:1013
+#: ../../mod/settings.php:1014
msgid "Allow us to suggest you as a potential friend to new members?"
msgstr "Vuoi essere suggerito come potenziale amico ai nuovi membri?"
-#: ../../mod/settings.php:1017 ../../mod/profile_photo.php:298
+#: ../../mod/settings.php:1018 ../../mod/profile_photo.php:298
msgid "or"
msgstr "o"
-#: ../../mod/settings.php:1022
+#: ../../mod/settings.php:1023
msgid "Your channel address is"
msgstr "L'indirizzo del tuo canale è"
-#: ../../mod/settings.php:1033
+#: ../../mod/settings.php:1034
msgid "Automatically expire posts after this many days:"
msgstr "Gli articoli scadono automaticamente dopo questo numero di giorni:"
-#: ../../mod/settings.php:1033
+#: ../../mod/settings.php:1034
msgid "If empty, posts will not expire. Expired posts will be deleted"
msgstr "Se lasci vuoto, i messaggi non scadranno mai. I messaggi scaduti saranno eliminati."
-#: ../../mod/settings.php:1034
+#: ../../mod/settings.php:1035
msgid "Advanced expiration settings"
msgstr "Impostazioni avanzate di scandenza"
-#: ../../mod/settings.php:1035
+#: ../../mod/settings.php:1036
msgid "Advanced Expiration"
msgstr "Scadenza"
-#: ../../mod/settings.php:1036
+#: ../../mod/settings.php:1037
msgid "Expire posts:"
msgstr "Fai scadere gli articoli:"
-#: ../../mod/settings.php:1038
+#: ../../mod/settings.php:1039
msgid "Expire starred posts:"
msgstr "Fai scadere gli articoli preferiti:"
-#: ../../mod/settings.php:1039
+#: ../../mod/settings.php:1040
msgid "Expire photos:"
msgstr "Fai scadere le foto:"
-#: ../../mod/settings.php:1040
+#: ../../mod/settings.php:1041
msgid "Only expire posts by others:"
msgstr "Fai scadere solo gli articoli scritti da altri:"
-#: ../../mod/settings.php:1051
+#: ../../mod/settings.php:1052
msgid "Channel Settings"
msgstr "Impostazioni del canale"
-#: ../../mod/settings.php:1060
+#: ../../mod/settings.php:1061
msgid "Basic Settings"
msgstr "Impostazioni di base"
-#: ../../mod/settings.php:1063
+#: ../../mod/settings.php:1064
msgid "Your Timezone:"
msgstr "Il tuo fuso orario:"
-#: ../../mod/settings.php:1064
+#: ../../mod/settings.php:1065
msgid "Default Post Location:"
msgstr "Località predefinita:"
-#: ../../mod/settings.php:1065
+#: ../../mod/settings.php:1066
msgid "Use Browser Location:"
msgstr "Usa la località rilevata dal browser:"
-#: ../../mod/settings.php:1067
+#: ../../mod/settings.php:1068
msgid "Adult Content"
msgstr "Contenuto per adulti"
-#: ../../mod/settings.php:1067
+#: ../../mod/settings.php:1068
msgid "This channel publishes adult content."
msgstr "Questo canale pubblica contenuto per adulti."
-#: ../../mod/settings.php:1069
+#: ../../mod/settings.php:1070
msgid "Security and Privacy Settings"
msgstr "Impostazioni di sicurezza e privacy"
-#: ../../mod/settings.php:1071
+#: ../../mod/settings.php:1072
msgid "Quick Privacy Settings:"
msgstr "Impostazioni veloci della privacy:"
-#: ../../mod/settings.php:1072
+#: ../../mod/settings.php:1073
msgid "Very Public - extremely permissive"
msgstr "Tutto pubblico - molto permissivo"
-#: ../../mod/settings.php:1073
+#: ../../mod/settings.php:1074
msgid "Typical - default public, privacy when desired"
msgstr "Normale - tutto sarà pubblico tranne quel che vorrai tu"
-#: ../../mod/settings.php:1074
+#: ../../mod/settings.php:1075
msgid "Private - default private, rarely open or public"
msgstr "Privato - i contenuti saranno privati ma, se vorrai, alcuni potrai renderli pubblici"
-#: ../../mod/settings.php:1075
+#: ../../mod/settings.php:1076
msgid "Blocked - default blocked to/from everybody"
msgstr "Bloccato - non ci saranno interazioni con altri a meno che tu non voglia"
-#: ../../mod/settings.php:1078
+#: ../../mod/settings.php:1079
msgid "Maximum Friend Requests/Day:"
msgstr "Numero massimo giornaliero di richieste di amicizia:"
-#: ../../mod/settings.php:1078
+#: ../../mod/settings.php:1079
msgid "May reduce spam activity"
msgstr "Serve e ridurre lo spam"
-#: ../../mod/settings.php:1079
+#: ../../mod/settings.php:1080
msgid "Default Post Permissions"
msgstr "Permessi predefiniti per gli articoli"
-#: ../../mod/settings.php:1080
+#: ../../mod/settings.php:1081
msgid "(click to open/close)"
msgstr "(clicca per aprire/chiudere)"
-#: ../../mod/settings.php:1093
+#: ../../mod/settings.php:1094
msgid "Maximum private messages per day from unknown people:"
msgstr "Numero massimo giornaliero di messaggi privati da utenti sconosciuti:"
-#: ../../mod/settings.php:1093
+#: ../../mod/settings.php:1094
msgid "Useful to reduce spamming"
msgstr "Serve e ridurre lo spam"
-#: ../../mod/settings.php:1096
+#: ../../mod/settings.php:1097
msgid "Notification Settings"
msgstr "Impostazioni di notifica"
-#: ../../mod/settings.php:1097
+#: ../../mod/settings.php:1098
msgid "By default post a status message when:"
msgstr "Pubblica un messaggio di stato quando:"
-#: ../../mod/settings.php:1098
+#: ../../mod/settings.php:1099
msgid "accepting a friend request"
msgstr "accetto una nuova amicizia"
-#: ../../mod/settings.php:1099
+#: ../../mod/settings.php:1100
msgid "joining a forum/community"
msgstr "entro a far parte di un forum"
-#: ../../mod/settings.php:1100
+#: ../../mod/settings.php:1101
msgid "making an <em>interesting</em> profile change"
msgstr "faccio un cambiamento <em>interessante</em> al mio profilo"
-#: ../../mod/settings.php:1101
+#: ../../mod/settings.php:1102
msgid "Send a notification email when:"
msgstr "Invia una email di notifica quando:"
-#: ../../mod/settings.php:1102
+#: ../../mod/settings.php:1103
msgid "You receive an introduction"
msgstr "Ricevi una richiesta di amicizia"
-#: ../../mod/settings.php:1103
+#: ../../mod/settings.php:1104
msgid "Your introductions are confirmed"
msgstr "Le tue richieste di amicizia sono state accettate"
-#: ../../mod/settings.php:1104
+#: ../../mod/settings.php:1105
msgid "Someone writes on your profile wall"
msgstr "Qualcuno scrive sulla tua bacheca"
-#: ../../mod/settings.php:1105
+#: ../../mod/settings.php:1106
msgid "Someone writes a followup comment"
msgstr "Qualcuno scrive un commento a un tuo articolo"
-#: ../../mod/settings.php:1106
+#: ../../mod/settings.php:1107
msgid "You receive a private message"
msgstr "Ricevi un messaggio privato"
-#: ../../mod/settings.php:1107
+#: ../../mod/settings.php:1108
msgid "You receive a friend suggestion"
msgstr "Ti viene suggerito un amico"
-#: ../../mod/settings.php:1108
+#: ../../mod/settings.php:1109
msgid "You are tagged in a post"
msgstr "Sei taggato in un articolo"
-#: ../../mod/settings.php:1109
+#: ../../mod/settings.php:1110
msgid "You are poked/prodded/etc. in a post"
msgstr "Ricevi un poke in un articolo"
-#: ../../mod/settings.php:1112
+#: ../../mod/settings.php:1113
msgid "Advanced Account/Page Type Settings"
msgstr "Impostazioni avanzate"
-#: ../../mod/settings.php:1113
+#: ../../mod/settings.php:1114
msgid "Change the behaviour of this account for special situations"
msgstr "Cambia il funzionamento di questo account in situazioni particolari"
-#: ../../mod/viewconnections.php:28 ../../mod/photos.php:576
-#: ../../mod/display.php:9 ../../mod/search.php:80 ../../mod/community.php:18
+#: ../../mod/viewconnections.php:28 ../../mod/search.php:80
+#: ../../mod/photos.php:576 ../../mod/display.php:9 ../../mod/community.php:18
#: ../../mod/directory.php:32
msgid "Public access denied."
msgstr "Accesso pubblico negato."
@@ -4091,15 +4096,15 @@ msgstr "Le impostazioni del tema sono state aggiornate."
msgid "Site"
msgstr "Sito"
-#: ../../mod/admin.php:88 ../../mod/admin.php:669 ../../mod/admin.php:681
+#: ../../mod/admin.php:88 ../../mod/admin.php:682 ../../mod/admin.php:694
msgid "Users"
msgstr "Utenti"
-#: ../../mod/admin.php:89 ../../mod/admin.php:767 ../../mod/admin.php:809
+#: ../../mod/admin.php:89 ../../mod/admin.php:780 ../../mod/admin.php:822
msgid "Plugins"
msgstr "Plugin"
-#: ../../mod/admin.php:90 ../../mod/admin.php:972 ../../mod/admin.php:1008
+#: ../../mod/admin.php:90 ../../mod/admin.php:985 ../../mod/admin.php:1021
msgid "Themes"
msgstr "Temi"
@@ -4111,7 +4116,7 @@ msgstr "Server"
msgid "DB updates"
msgstr "Aggiornamenti al DB"
-#: ../../mod/admin.php:106 ../../mod/admin.php:113 ../../mod/admin.php:1095
+#: ../../mod/admin.php:106 ../../mod/admin.php:113 ../../mod/admin.php:1108
msgid "Logs"
msgstr "Log"
@@ -4121,15 +4126,15 @@ msgstr "Funzionalità dei componenti aggiuntivi"
#: ../../mod/admin.php:114
msgid "User registrations waiting for confirmation"
-msgstr "Utenti registrati in attesa di conferma"
+msgstr "Registrazioni in attesa"
#: ../../mod/admin.php:188
msgid "Message queues"
-msgstr "Coda dei messaggi"
+msgstr "Messaggi in attesa di recapito"
#: ../../mod/admin.php:193 ../../mod/admin.php:416 ../../mod/admin.php:474
-#: ../../mod/admin.php:668 ../../mod/admin.php:766 ../../mod/admin.php:808
-#: ../../mod/admin.php:971 ../../mod/admin.php:1007 ../../mod/admin.php:1094
+#: ../../mod/admin.php:681 ../../mod/admin.php:779 ../../mod/admin.php:821
+#: ../../mod/admin.php:984 ../../mod/admin.php:1020 ../../mod/admin.php:1107
msgid "Administration"
msgstr "Amministrazione"
@@ -4143,7 +4148,7 @@ msgstr "Utenti registrati"
#: ../../mod/admin.php:198 ../../mod/admin.php:478
msgid "Pending registrations"
-msgstr "Registrazioni in attesa"
+msgstr "Registrazioni da approvare"
#: ../../mod/admin.php:199
msgid "Version"
@@ -4189,7 +4194,7 @@ msgstr "Servizio gratuito"
msgid "Tiered Access"
msgstr "Accesso multilivello"
-#: ../../mod/admin.php:419 ../../mod/register.php:172
+#: ../../mod/admin.php:419 ../../mod/register.php:180
msgid "Registration"
msgstr "Registrazione"
@@ -4279,7 +4284,7 @@ msgstr "Sarà mostrato ben visibile nella pagina di registrazione."
#: ../../mod/admin.php:438
msgid "Accounts abandoned after x days"
-msgstr "Account abbandonati dopo x giorni"
+msgstr "Account abbandonati dopo X giorni"
#: ../../mod/admin.php:438
msgid ""
@@ -4378,7 +4383,7 @@ msgstr "Carico di sistema massimo perché i processi di recapito e polling siano
msgid "No server found"
msgstr "Server non trovato"
-#: ../../mod/admin.php:473
+#: ../../mod/admin.php:473 ../../mod/admin.php:695
msgid "ID"
msgstr "ID"
@@ -4467,149 +4472,137 @@ msgstr "Utente '%s' sbloccato"
msgid "User '%s' blocked"
msgstr "Utente '%s' bloccato"
-#: ../../mod/admin.php:650
-msgid "Normal Account"
-msgstr "Account normale"
-
-#: ../../mod/admin.php:651
-msgid "Soapbox Account"
-msgstr "Account per comunicati e annunci"
-
-#: ../../mod/admin.php:652
-msgid "Community/Celebrity Account"
-msgstr "Account per celebrità o per comunità"
-
-#: ../../mod/admin.php:653
-msgid "Automatic Friend Account"
-msgstr "Account per amicizia automatizzato"
-
-#: ../../mod/admin.php:671
+#: ../../mod/admin.php:684
msgid "select all"
msgstr "seleziona tutti"
-#: ../../mod/admin.php:672
+#: ../../mod/admin.php:685
msgid "User registrations waiting for confirm"
msgstr "Richieste di registrazione in attesa di conferma"
-#: ../../mod/admin.php:673
+#: ../../mod/admin.php:686
msgid "Request date"
msgstr "Data richiesta"
-#: ../../mod/admin.php:674
+#: ../../mod/admin.php:687
msgid "No registrations."
msgstr "Nessuna registrazione."
-#: ../../mod/admin.php:675 ../../mod/intro.php:11 ../../mod/intro.php:98
+#: ../../mod/admin.php:688 ../../mod/intro.php:11 ../../mod/intro.php:98
#: ../../mod/notifications.php:159 ../../mod/notifications.php:206
msgid "Approve"
msgstr "Approva"
-#: ../../mod/admin.php:676
+#: ../../mod/admin.php:689
msgid "Deny"
msgstr "Nega"
-#: ../../mod/admin.php:678 ../../mod/intro.php:14 ../../mod/intro.php:99
-#: ../../mod/connections.php:328 ../../mod/connections.php:470
+#: ../../mod/admin.php:691 ../../mod/intro.php:14 ../../mod/intro.php:99
+#: ../../mod/connections.php:348 ../../mod/connections.php:490
msgid "Block"
msgstr "Blocca"
-#: ../../mod/admin.php:679 ../../mod/connections.php:328
-#: ../../mod/connections.php:470
+#: ../../mod/admin.php:692 ../../mod/connections.php:348
+#: ../../mod/connections.php:490
msgid "Unblock"
msgstr "Sblocca"
-#: ../../mod/admin.php:682
+#: ../../mod/admin.php:695
msgid "Register date"
msgstr "Data registrazione"
-#: ../../mod/admin.php:682
+#: ../../mod/admin.php:695
msgid "Last login"
msgstr "Ultimo accesso"
-#: ../../mod/admin.php:682
+#: ../../mod/admin.php:695
+msgid "Expires"
+msgstr "Scadenza"
+
+#: ../../mod/admin.php:695
msgid "Service Class"
msgstr "Service Class"
-#: ../../mod/admin.php:684
+#: ../../mod/admin.php:697
msgid ""
"Selected users will be deleted!\\n\\nEverything these users had posted on "
"this site will be permanently deleted!\\n\\nAre you sure?"
msgstr "Gli utenti selezionati saranno eliminati!\\n\\nTutto quello che gli utenti hanno pubblicato su questo sito sarà permanentemente eliminato!\\n\\nConfermi?"
-#: ../../mod/admin.php:685
+#: ../../mod/admin.php:698
msgid ""
"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
"site will be permanently deleted!\\n\\nAre you sure?"
msgstr "L'utente {0} sarà eliminato!\\n\\nTutto quello che ha pubblicato su questo sito sarà permanentemente eliminato!\\n\\nConfermi?"
-#: ../../mod/admin.php:726
+#: ../../mod/admin.php:739
#, php-format
msgid "Plugin %s disabled."
msgstr "Plugin %s non attivo."
-#: ../../mod/admin.php:730
+#: ../../mod/admin.php:743
#, php-format
msgid "Plugin %s enabled."
msgstr "Plugin %s attivo."
-#: ../../mod/admin.php:740 ../../mod/admin.php:942
+#: ../../mod/admin.php:753 ../../mod/admin.php:955
msgid "Disable"
msgstr "Disattiva"
-#: ../../mod/admin.php:742 ../../mod/admin.php:944
+#: ../../mod/admin.php:755 ../../mod/admin.php:957
msgid "Enable"
msgstr "Attiva"
-#: ../../mod/admin.php:768 ../../mod/admin.php:973
+#: ../../mod/admin.php:781 ../../mod/admin.php:986
msgid "Toggle"
msgstr "Attiva/disattiva"
-#: ../../mod/admin.php:776 ../../mod/admin.php:983
+#: ../../mod/admin.php:789 ../../mod/admin.php:996
msgid "Author: "
msgstr "Autore:"
-#: ../../mod/admin.php:777 ../../mod/admin.php:984
+#: ../../mod/admin.php:790 ../../mod/admin.php:997
msgid "Maintainer: "
msgstr "Gestore:"
-#: ../../mod/admin.php:906
+#: ../../mod/admin.php:919
msgid "No themes found."
msgstr "Nessun tema trovato."
-#: ../../mod/admin.php:965
+#: ../../mod/admin.php:978
msgid "Screenshot"
msgstr "Istantanea dello schermo"
-#: ../../mod/admin.php:1013
+#: ../../mod/admin.php:1026
msgid "[Experimental]"
msgstr "[Sperimentale]"
-#: ../../mod/admin.php:1014
+#: ../../mod/admin.php:1027
msgid "[Unsupported]"
msgstr "[Non supportato]"
-#: ../../mod/admin.php:1041
+#: ../../mod/admin.php:1054
msgid "Log settings updated."
msgstr "Impostazioni di log aggiornate."
-#: ../../mod/admin.php:1097
+#: ../../mod/admin.php:1110
msgid "Clear"
msgstr "Pulisci"
-#: ../../mod/admin.php:1103
+#: ../../mod/admin.php:1116
msgid "Debugging"
msgstr "Debugging"
-#: ../../mod/admin.php:1104
+#: ../../mod/admin.php:1117
msgid "Log file"
msgstr "File di log"
-#: ../../mod/admin.php:1104
+#: ../../mod/admin.php:1117
msgid ""
"Must be writable by web server. Relative to your Red top-level directory."
msgstr "Deve essere scrivibile dal web server. È relativa alla cartella dove è installato Red."
-#: ../../mod/admin.php:1105
+#: ../../mod/admin.php:1118
msgid "Log level"
msgstr "Livello di log"
@@ -4773,6 +4766,10 @@ msgstr "Tutti i canali connessi"
msgid "Click on a channel to add or remove."
msgstr "Clicca su un canale per aggiungerlo o rimuoverlo."
+#: ../../mod/search.php:20 ../../mod/network.php:164
+msgid "Remove term"
+msgstr "Rimuovi termine"
+
#: ../../mod/photos.php:83
msgid "Page owner information could not be retrieved."
msgstr "Impossibile ottenere informazioni sul proprietario della pagina."
@@ -4918,11 +4915,11 @@ msgstr "ti ha inviato un messaggio privato"
msgid "added your channel"
msgstr "ha aggiunto il tuo canale"
-#: ../../mod/ping.php:230 ../../boot.php:1862 ../../boot.php:1942
+#: ../../mod/ping.php:230 ../../boot.php:1858 ../../boot.php:1938
msgid "g A l F d"
msgstr "g A l d F"
-#: ../../mod/ping.php:252 ../../boot.php:1908 ../../boot.php:1983
+#: ../../mod/ping.php:252 ../../boot.php:1904 ../../boot.php:1979
msgid "[today]"
msgstr "[oggi]"
@@ -4959,7 +4956,7 @@ msgid "Drop"
msgstr "Elimina"
#: ../../mod/menu.php:57 ../../mod/network.php:321
-#: ../../mod/connections.php:532
+#: ../../mod/connections.php:552
msgid "New"
msgstr "Novità"
@@ -5126,11 +5123,11 @@ msgstr "La guida per questa funzionalità"
msgid "Layout Name"
msgstr "Nome layout"
-#: ../../mod/help.php:30
+#: ../../mod/help.php:41
msgid "Help:"
msgstr "Guida:"
-#: ../../mod/help.php:38 ../../index.php:226
+#: ../../mod/help.php:53 ../../index.php:226
msgid "Not Found"
msgstr "Non disponibile"
@@ -5146,10 +5143,6 @@ msgstr "Inserisci l'indirizzo del tuo canale (ad esempio lucia@esempio.com)"
msgid "Authenticate"
msgstr "Autenticazione"
-#: ../../mod/network.php:164 ../../mod/search.php:20
-msgid "Remove term"
-msgstr "Rimuovi termine"
-
#: ../../mod/network.php:302
msgid "Commented Order"
msgstr "Ultimi commenti"
@@ -5198,11 +5191,11 @@ msgstr "Articoli marcati come spam"
msgid "Refresh"
msgstr "Aggiorna"
-#: ../../mod/network.php:385 ../../mod/connections.php:384
+#: ../../mod/network.php:385 ../../mod/connections.php:404
msgid "Me"
msgstr "Io"
-#: ../../mod/network.php:386 ../../mod/connections.php:386
+#: ../../mod/network.php:386 ../../mod/connections.php:406
msgid "Best Friends"
msgstr "Buoni amici"
@@ -5210,11 +5203,11 @@ msgstr "Buoni amici"
msgid "Co-workers"
msgstr "Colleghi"
-#: ../../mod/network.php:389 ../../mod/connections.php:388
+#: ../../mod/network.php:389 ../../mod/connections.php:408
msgid "Former Friends"
msgstr "Ex amici"
-#: ../../mod/network.php:390 ../../mod/connections.php:389
+#: ../../mod/network.php:390 ../../mod/connections.php:409
msgid "Acquaintances"
msgstr "Conoscenti"
@@ -5239,7 +5232,7 @@ msgid "Invalid connection."
msgstr "Connessione non valida."
#: ../../mod/intro.php:17 ../../mod/intro.php:100
-#: ../../mod/connections.php:335 ../../mod/connections.php:471
+#: ../../mod/connections.php:355 ../../mod/connections.php:491
#: ../../mod/notifications.php:51 ../../mod/notifications.php:162
#: ../../mod/notifications.php:208
msgid "Ignore"
@@ -5255,7 +5248,7 @@ msgstr "Impossibile aggiornare il contatto."
#: ../../mod/intro.php:56
msgid "Introductions and Connection Requests"
-msgstr "Richieste di contatto e di amicizia"
+msgstr "Richieste per entrare in contatto"
#: ../../mod/intro.php:67
msgid "No pending introductions."
@@ -5265,7 +5258,7 @@ msgstr "Nessuna richiesta in attesa."
msgid "System error. Please try again later."
msgstr "Errore di sistema. Riprovare più tardi."
-#: ../../mod/intro.php:95 ../../mod/connections.php:476
+#: ../../mod/intro.php:95 ../../mod/connections.php:496
#: ../../mod/notifications.php:155 ../../mod/notifications.php:202
msgid "Hide this contact from others"
msgstr "Nascondi questo contatto agli altri"
@@ -5295,375 +5288,375 @@ msgstr "Non riesco a trovare il profilo selezionato."
#: ../../mod/connections.php:124
msgid "Failed to update connection record."
-msgstr "Impossibile aggiornare le informazioni di contatto."
+msgstr "Impossibile aggiornare le informazioni del contatto."
-#: ../../mod/connections.php:199
+#: ../../mod/connections.php:219
msgid "Could not access address book record."
msgstr "Impossibile accedere alle informazioni della rubrica."
-#: ../../mod/connections.php:213
+#: ../../mod/connections.php:233
msgid "Refresh failed - channel is currently unavailable."
msgstr "Il canale non è disponibile - impossibile aggiornare."
-#: ../../mod/connections.php:220
+#: ../../mod/connections.php:240
msgid "Channel has been unblocked"
msgstr "Il canale è stato sbloccato"
-#: ../../mod/connections.php:221
+#: ../../mod/connections.php:241
msgid "Channel has been blocked"
msgstr "Il canale è stato bloccato"
-#: ../../mod/connections.php:225 ../../mod/connections.php:237
-#: ../../mod/connections.php:249 ../../mod/connections.php:261
-#: ../../mod/connections.php:276
+#: ../../mod/connections.php:245 ../../mod/connections.php:257
+#: ../../mod/connections.php:269 ../../mod/connections.php:281
+#: ../../mod/connections.php:296
msgid "Unable to set address book parameters."
msgstr "Impossibile impostare i parametri della rubrica."
-#: ../../mod/connections.php:232
+#: ../../mod/connections.php:252
msgid "Channel has been unignored"
msgstr "Il canale non sarà più ignorato"
-#: ../../mod/connections.php:233
+#: ../../mod/connections.php:253
msgid "Channel has been ignored"
msgstr "Il canale sarà ignorato"
-#: ../../mod/connections.php:244
+#: ../../mod/connections.php:264
msgid "Channel has been unarchived"
msgstr "Il canale non è più archiviato"
-#: ../../mod/connections.php:245
+#: ../../mod/connections.php:265
msgid "Channel has been archived"
msgstr "Il canale è stato archiviato"
-#: ../../mod/connections.php:256
+#: ../../mod/connections.php:276
msgid "Channel has been unhidden"
msgstr "Il canale non è più nascosto"
-#: ../../mod/connections.php:257
+#: ../../mod/connections.php:277
msgid "Channel has been hidden"
msgstr "Il canale è stato nascosto"
-#: ../../mod/connections.php:271
+#: ../../mod/connections.php:291
msgid "Channel has been approved"
msgstr "Il canale è stato approvato"
-#: ../../mod/connections.php:272
+#: ../../mod/connections.php:292
msgid "Channel has been unapproved"
msgstr "Il canale non è più approvato"
-#: ../../mod/connections.php:290
+#: ../../mod/connections.php:310
msgid "Contact has been removed."
msgstr "Il contatto è stato rimosso."
-#: ../../mod/connections.php:310
+#: ../../mod/connections.php:330
#, php-format
msgid "View %s's profile"
msgstr "Guarda il profilo di %s"
-#: ../../mod/connections.php:314
+#: ../../mod/connections.php:334
msgid "Refresh Permissions"
msgstr "Aggiorna i permessi"
-#: ../../mod/connections.php:317
+#: ../../mod/connections.php:337
msgid "Fetch updated permissions"
msgstr "Scarica i permessi aggiornati"
-#: ../../mod/connections.php:321
+#: ../../mod/connections.php:341
msgid "Recent Activity"
msgstr "Attività recenti"
-#: ../../mod/connections.php:324
+#: ../../mod/connections.php:344
msgid "View recent posts and comments"
msgstr "Leggi i post recenti e i commenti"
-#: ../../mod/connections.php:331
+#: ../../mod/connections.php:351
msgid "Block or Unblock this connection"
msgstr "Per bloccare o meno questo contatto"
-#: ../../mod/connections.php:335 ../../mod/connections.php:471
+#: ../../mod/connections.php:355 ../../mod/connections.php:491
msgid "Unignore"
msgstr "Non ignorare"
-#: ../../mod/connections.php:338
+#: ../../mod/connections.php:358
msgid "Ignore or Unignore this connection"
msgstr "Per ignorare o meno questo contatto"
-#: ../../mod/connections.php:341
+#: ../../mod/connections.php:361
msgid "Unarchive"
msgstr "Non archiviare"
-#: ../../mod/connections.php:341
+#: ../../mod/connections.php:361
msgid "Archive"
msgstr "Archivia"
-#: ../../mod/connections.php:344
+#: ../../mod/connections.php:364
msgid "Archive or Unarchive this connection"
msgstr "Per archiviare o meno questo contatto"
-#: ../../mod/connections.php:347
+#: ../../mod/connections.php:367
msgid "Unhide"
msgstr "Non nascondere"
-#: ../../mod/connections.php:347
+#: ../../mod/connections.php:367
msgid "Hide"
msgstr "Nascondi"
-#: ../../mod/connections.php:350
+#: ../../mod/connections.php:370
msgid "Hide or Unhide this connection"
msgstr "Per nascondere o meno questo contatto"
-#: ../../mod/connections.php:357
+#: ../../mod/connections.php:377
msgid "Delete this connection"
msgstr "Elimina questo contatto"
-#: ../../mod/connections.php:390
+#: ../../mod/connections.php:410
msgid "Unknown"
msgstr "Sconosciuto"
-#: ../../mod/connections.php:400 ../../mod/connections.php:429
+#: ../../mod/connections.php:420 ../../mod/connections.php:449
msgid "Approve this connection"
msgstr "Approva questo contatto"
-#: ../../mod/connections.php:400
+#: ../../mod/connections.php:420
msgid "Accept connection to allow communication"
-msgstr "Accetta il contatto per poter comunicare"
+msgstr "Entra in contatto per poter comunicare"
-#: ../../mod/connections.php:416
+#: ../../mod/connections.php:436
msgid "Automatic Permissions Settings"
msgstr "Permessi predefiniti"
-#: ../../mod/connections.php:416
+#: ../../mod/connections.php:436
#, php-format
msgid "Connections: settings for %s"
msgstr "Contatti: impostazioni per %s"
-#: ../../mod/connections.php:420
+#: ../../mod/connections.php:440
msgid ""
"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."
-msgstr "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."
+msgstr "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."
-#: ../../mod/connections.php:422
+#: ../../mod/connections.php:442
msgid "Slide to adjust your degree of friendship"
msgstr "Trascina per restringere il grado di amicizia da mostrare"
-#: ../../mod/connections.php:428
+#: ../../mod/connections.php:448
msgid "inherited"
msgstr "derivato"
-#: ../../mod/connections.php:430
+#: ../../mod/connections.php:450
msgid "Connection has no individual permissions!"
msgstr "Non hai assegnato permessi individuali a questo contatto!"
-#: ../../mod/connections.php:431
+#: ../../mod/connections.php:451
msgid ""
"This may be appropriate based on your <a href=\"settings\">privacy "
"settings</a>, though you may wish to review the \"Advanced Permissions\"."
msgstr "Questo corrisponde alle tue <a href='settings'>impostazioni di privacy</a>, ma puoi anche dare un'occhiata ai 'Permessi avanzati' per opzioni più dettagliate."
-#: ../../mod/connections.php:433
+#: ../../mod/connections.php:453
msgid "Profile Visibility"
msgstr "Visibilità del profilo"
-#: ../../mod/connections.php:434
+#: ../../mod/connections.php:454
#, php-format
msgid ""
"Please choose the profile you would like to display to %s when viewing your "
"profile securely."
msgstr "Seleziona il profilo che vuoi mostrare a %s quando visita il tuo profilo in modo sicuro."
-#: ../../mod/connections.php:435
+#: ../../mod/connections.php:455
msgid "Contact Information / Notes"
msgstr "Informazioni e annotazioni sul contatto"
-#: ../../mod/connections.php:436
+#: ../../mod/connections.php:456
msgid "Edit contact notes"
msgstr "Modifica le informazioni sul contatto"
-#: ../../mod/connections.php:438
+#: ../../mod/connections.php:458
msgid "Their Settings"
msgstr "Permessi concessi a te"
-#: ../../mod/connections.php:439
+#: ../../mod/connections.php:459
msgid "My Settings"
msgstr "I permessi che concedo"
-#: ../../mod/connections.php:441
+#: ../../mod/connections.php:461
msgid "Forum Members"
msgstr "Membro di un forum"
-#: ../../mod/connections.php:442
+#: ../../mod/connections.php:462
msgid "Soapbox"
msgstr "Comunicati e annunci"
-#: ../../mod/connections.php:443
+#: ../../mod/connections.php:463
msgid "Full Sharing"
msgstr "Condivisione totale"
-#: ../../mod/connections.php:444
+#: ../../mod/connections.php:464
msgid "Cautious Sharing"
msgstr "Condivisione prudente"
-#: ../../mod/connections.php:445
+#: ../../mod/connections.php:465
msgid "Follow Only"
msgstr "Follower"
-#: ../../mod/connections.php:446
+#: ../../mod/connections.php:466
msgid "Individual Permissions"
msgstr "Permessi individuali"
-#: ../../mod/connections.php:447
+#: ../../mod/connections.php:467
msgid ""
-"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."
-msgstr "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."
+"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."
+msgstr "Alcuni permessi derivano dalle <a href=\"settings\">impostazioni di privacy</a>, che hanno una priorità maggiore. Cambiarli in questa pagina non avrà alcun effetto."
-#: ../../mod/connections.php:448
+#: ../../mod/connections.php:468
msgid "Advanced Permissions"
msgstr "Permessi avanzati"
-#: ../../mod/connections.php:449
+#: ../../mod/connections.php:469
msgid "Quick Links"
msgstr "Impostazioni veloci"
-#: ../../mod/connections.php:453
+#: ../../mod/connections.php:473
#, php-format
msgid "Visit %s's profile - %s"
msgstr "Guarda il profilo di %s - %s"
-#: ../../mod/connections.php:454
+#: ../../mod/connections.php:474
msgid "Block/Unblock contact"
msgstr "Blocca/sblocca contatto"
-#: ../../mod/connections.php:455
+#: ../../mod/connections.php:475
msgid "Ignore contact"
msgstr "Ignora il contatto"
-#: ../../mod/connections.php:456
+#: ../../mod/connections.php:476
msgid "Repair URL settings"
msgstr "Ripara le impostazioni URL"
-#: ../../mod/connections.php:457
+#: ../../mod/connections.php:477
msgid "View conversations"
msgstr "Leggi le conversazioni"
-#: ../../mod/connections.php:459
+#: ../../mod/connections.php:479
msgid "Delete contact"
msgstr "Elimina contatto"
-#: ../../mod/connections.php:462
+#: ../../mod/connections.php:482
msgid "Last update:"
msgstr "Ultimo aggiornamento:"
-#: ../../mod/connections.php:464
+#: ../../mod/connections.php:484
msgid "Update public posts"
msgstr "Aggiorna gli articoli pubblici"
-#: ../../mod/connections.php:466
+#: ../../mod/connections.php:486
msgid "Update now"
msgstr "Aggiorna adesso"
-#: ../../mod/connections.php:472
+#: ../../mod/connections.php:492
msgid "Currently blocked"
msgstr "Attualmente bloccato"
-#: ../../mod/connections.php:473
+#: ../../mod/connections.php:493
msgid "Currently ignored"
msgstr "Attualmente ignorato"
-#: ../../mod/connections.php:474
+#: ../../mod/connections.php:494
msgid "Currently archived"
msgstr "Attualmente archiviato"
-#: ../../mod/connections.php:475
+#: ../../mod/connections.php:495
msgid "Currently pending"
msgstr "Attualmente da approvare"
-#: ../../mod/connections.php:476
+#: ../../mod/connections.php:496
msgid ""
"Replies/likes to your public posts <strong>may</strong> still be visible"
msgstr "Le risposte ai tuoi articoli pubblici <strong>potrebbero</strong> restare comunque visibili"
-#: ../../mod/connections.php:512 ../../mod/connections.php:584
+#: ../../mod/connections.php:532 ../../mod/connections.php:604
msgid "Blocked"
msgstr "Bloccati"
-#: ../../mod/connections.php:517 ../../mod/connections.php:591
+#: ../../mod/connections.php:537 ../../mod/connections.php:611
msgid "Ignored"
msgstr "Ignorati"
-#: ../../mod/connections.php:522 ../../mod/connections.php:605
+#: ../../mod/connections.php:542 ../../mod/connections.php:625
msgid "Hidden"
msgstr "Nascosti"
-#: ../../mod/connections.php:527 ../../mod/connections.php:598
+#: ../../mod/connections.php:547 ../../mod/connections.php:618
msgid "Archived"
msgstr "Archiviati"
-#: ../../mod/connections.php:538
+#: ../../mod/connections.php:558
msgid "All"
msgstr "Tutti"
-#: ../../mod/connections.php:559
+#: ../../mod/connections.php:579
msgid "Suggestions"
msgstr "Suggerimenti"
-#: ../../mod/connections.php:562
+#: ../../mod/connections.php:582
msgid "Suggest new connections"
msgstr "Suggerisci nuovi contatti"
-#: ../../mod/connections.php:568
+#: ../../mod/connections.php:588
msgid "Show pending (new) connections"
-msgstr "Richieste di amicizia in attesa"
+msgstr "Richieste per entrare in contatto"
-#: ../../mod/connections.php:571
+#: ../../mod/connections.php:591
msgid "All Connections"
msgstr "Tutti i contatti"
-#: ../../mod/connections.php:574
+#: ../../mod/connections.php:594
msgid "Show all connections"
msgstr "Mostra tutti i contatti"
-#: ../../mod/connections.php:577
+#: ../../mod/connections.php:597
msgid "Unblocked"
msgstr "Non bloccati"
-#: ../../mod/connections.php:580
+#: ../../mod/connections.php:600
msgid "Only show unblocked connections"
msgstr "Mostra solo i contatti non bloccati"
-#: ../../mod/connections.php:587
+#: ../../mod/connections.php:607
msgid "Only show blocked connections"
msgstr "Mostra solo i contatti bloccati"
-#: ../../mod/connections.php:594
+#: ../../mod/connections.php:614
msgid "Only show ignored connections"
msgstr "Mostra solo i contatti ignorati"
-#: ../../mod/connections.php:601
+#: ../../mod/connections.php:621
msgid "Only show archived connections"
msgstr "Mostra solo i contatti archiviati"
-#: ../../mod/connections.php:608
+#: ../../mod/connections.php:628
msgid "Only show hidden connections"
msgstr "Mostra solo i contatti nascosti"
-#: ../../mod/connections.php:650
+#: ../../mod/connections.php:670
#, php-format
msgid "%1$s [%2$s]"
msgstr "%1$s [%2$s]"
-#: ../../mod/connections.php:651 ../../mod/nogroup.php:41
+#: ../../mod/connections.php:671 ../../mod/nogroup.php:41
msgid "Edit contact"
msgstr "Modifica il contatto"
-#: ../../mod/connections.php:675
+#: ../../mod/connections.php:695
msgid "Search your connections"
msgstr "Cerca tra i contatti"
-#: ../../mod/connections.php:676
+#: ../../mod/connections.php:696
msgid "Finding: "
msgstr "Ricerca: "
@@ -5923,23 +5916,23 @@ msgstr "Età:"
msgid "Edit/Manage Profiles"
msgstr "Modifica/gestisci i profili"
-#: ../../mod/profiles.php:624 ../../boot.php:1759
+#: ../../mod/profiles.php:624 ../../boot.php:1755
msgid "Change profile photo"
msgstr "Cambia la foto del profilo"
-#: ../../mod/profiles.php:625 ../../boot.php:1766
+#: ../../mod/profiles.php:625 ../../boot.php:1762
msgid "Create New Profile"
msgstr "Crea un nuovo profilo"
-#: ../../mod/profiles.php:636 ../../boot.php:1780
+#: ../../mod/profiles.php:636 ../../boot.php:1776
msgid "Profile Image"
msgstr "Immagine del profilo"
-#: ../../mod/profiles.php:639 ../../boot.php:1783
+#: ../../mod/profiles.php:639 ../../boot.php:1779
msgid "visible to everybody"
msgstr "visibile a tutti"
-#: ../../mod/profiles.php:640 ../../boot.php:1784
+#: ../../mod/profiles.php:640 ../../boot.php:1780
msgid "Edit visibility"
msgstr "Cambia la visibilità"
@@ -6017,7 +6010,7 @@ msgid ""
"Password reset failed."
msgstr "La richiesta non può essere verificata (potresti averla già usata precedentemente). La password non può essere reimpostata."
-#: ../../mod/lostpass.php:85 ../../boot.php:1473
+#: ../../mod/lostpass.php:85 ../../boot.php:1469
msgid "Password Reset"
msgstr "Reimposta la password"
@@ -6448,7 +6441,7 @@ msgstr "Fan/Ammiratore"
#: ../../mod/notifications.php:194
msgid "Friend/Connect Request"
-msgstr "Richiesta di amicizia"
+msgstr "Richiesta per entrare in contatto"
#: ../../mod/notifications.php:194
msgid "New Follower"
@@ -6559,7 +6552,7 @@ msgstr "Scegli cosa vuoi inviare al destinatario"
msgid "Make this post private"
msgstr "Rendi privato questo articolo"
-#: ../../mod/wall_upload.php:41 ../../mod/item.php:1057
+#: ../../mod/wall_upload.php:41 ../../mod/item.php:1074
msgid "Wall Photos"
msgstr "Foto della bacheca"
@@ -6624,28 +6617,28 @@ msgstr "Visibile a"
msgid "All Contacts (with secure profile access)"
msgstr "Tutti i contatti (con accesso fidato al profilo)"
-#: ../../mod/item.php:136
+#: ../../mod/item.php:144
msgid "Unable to locate original post."
msgstr "Impossibile trovare il messaggio originale."
-#: ../../mod/item.php:321
+#: ../../mod/item.php:341
msgid "Empty post discarded."
msgstr "L'articolo vuoto è stato ignorato."
-#: ../../mod/item.php:363
+#: ../../mod/item.php:383
msgid "Executable content type not permitted to this channel."
msgstr "I contenuti eseguibili non sono permessi su questo canale."
-#: ../../mod/item.php:772
+#: ../../mod/item.php:793
msgid "System error. Post not saved."
msgstr "Errore di sistema. Articolo non salvato."
-#: ../../mod/item.php:1136
+#: ../../mod/item.php:1153
#, php-format
msgid "You have reached your limit of %1$.0f top level posts."
msgstr "Hai raggiunto il limite massimo di %1$.0f articoli sulla pagina principale."
-#: ../../mod/item.php:1142
+#: ../../mod/item.php:1159
#, php-format
msgid "You have reached your limit of %1$.0f webpages."
msgstr "Hai raggiunto il limite massimo di %1$.0f pagine web."
@@ -6728,70 +6721,70 @@ msgstr "Tipo di accesso"
msgid "Registration Policy"
msgstr "Politica di registrazione"
-#: ../../mod/register.php:35
+#: ../../mod/register.php:43
msgid "Maximum daily site registrations exceeded. Please try again tomorrow."
msgstr "È stato superato il numero massimo giornaliero di registrazioni a questo sito. Riprova domani!"
-#: ../../mod/register.php:41
+#: ../../mod/register.php:49
msgid ""
"Please indicate acceptance of the Terms of Service. Registration failed."
msgstr "Impossibile proseguire. Devi prima accettare le Condizioni d'Uso del servizio."
-#: ../../mod/register.php:69
+#: ../../mod/register.php:77
msgid "Passwords do not match."
msgstr "Le password non corrispondono."
-#: ../../mod/register.php:97
+#: ../../mod/register.php:105
msgid ""
"Registration successful. Please check your email for validation "
"instructions."
msgstr "La registrazione è terminata correttamente. Per continuare controlla l'email che ti è stata inviata."
-#: ../../mod/register.php:103
+#: ../../mod/register.php:111
msgid "Your registration is pending approval by the site owner."
msgstr "La tua richiesta è in attesa di approvazione da parte dell'amministratore del sito."
-#: ../../mod/register.php:106
+#: ../../mod/register.php:114
msgid "Your registration can not be processed."
msgstr "La tua registrazione non puo' essere acquisita."
-#: ../../mod/register.php:141
+#: ../../mod/register.php:149
msgid ""
"This site has exceeded the number of allowed daily account registrations. "
"Please try again tomorrow."
msgstr "Questo sito ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani."
-#: ../../mod/register.php:152
+#: ../../mod/register.php:160
msgid "Terms of Service"
msgstr "Condizioni d'Uso"
-#: ../../mod/register.php:158
+#: ../../mod/register.php:166
#, php-format
msgid "I accept the %s for this website"
msgstr "Accetto le %s di questo sito"
-#: ../../mod/register.php:160
+#: ../../mod/register.php:168
#, php-format
msgid "I am over 13 years of age and accept the %s for this website"
msgstr "Ho più di 13 anni e accetto le %s di questo sito"
-#: ../../mod/register.php:175
+#: ../../mod/register.php:183
msgid "Membership on this site is by invitation only."
msgstr "Per registrarsi su questo sito è necessario un invito."
-#: ../../mod/register.php:176
+#: ../../mod/register.php:184
msgid "Please enter your invitation code"
msgstr "Inserisci il codice dell'invito"
-#: ../../mod/register.php:179
+#: ../../mod/register.php:187
msgid "Your email address"
msgstr "Il tuo indirizzo email"
-#: ../../mod/register.php:180
+#: ../../mod/register.php:188
msgid "Choose a password"
msgstr "Scegli una password"
-#: ../../mod/register.php:181
+#: ../../mod/register.php:189
msgid "Please re-enter your password"
msgstr "Ripeti la password per verifica"
@@ -6799,13 +6792,13 @@ msgstr "Ripeti la password per verifica"
msgid "Please login."
msgstr "Accedi."
-#: ../../mod/post.php:114
+#: ../../mod/post.php:119
msgid ""
"Remote authentication blocked. You are logged into this site locally. Please"
" logout and retry."
msgstr "L'autenticazione remota non è disponibile. Hai accesso solamente a questo sito. Puoi provare ad uscire per tentare di nuovo."
-#: ../../mod/post.php:127
+#: ../../mod/post.php:132
#, php-format
msgid "Welcome %s. Remote authentication successful."
msgstr "Ciao %s. La tua autenticazione da remoto è avvenuta con successo."
@@ -6866,94 +6859,108 @@ msgstr "Umore"
msgid "Set your current mood and tell your friends"
msgstr "Scegli il tuo umore attuale per mostrarlo agli amici"
-#: ../../view/theme/redbasic/php/config.php:68
+#: ../../view/theme/redbasic/php/config.php:74
msgid "Scheme Default"
msgstr "Schema predefinito"
-#: ../../view/theme/redbasic/php/config.php:69
+#: ../../view/theme/redbasic/php/config.php:75
msgid "red"
msgstr "rosso"
-#: ../../view/theme/redbasic/php/config.php:70
+#: ../../view/theme/redbasic/php/config.php:76
msgid "black"
msgstr "nero"
-#: ../../view/theme/redbasic/php/config.php:71
+#: ../../view/theme/redbasic/php/config.php:77
msgid "silver"
msgstr "argento"
-#: ../../view/theme/redbasic/php/config.php:82
+#: ../../view/theme/redbasic/php/config.php:88
#: ../../view/theme/apw/php/config.php:234
+#: ../../view/theme/blogga/view/theme/blog/config.php:69
+#: ../../view/theme/blogga/php/config.php:69
msgid "Theme settings"
msgstr "Impostazioni del tema"
-#: ../../view/theme/redbasic/php/config.php:83
+#: ../../view/theme/redbasic/php/config.php:89
#: ../../view/theme/apw/php/config.php:235
msgid "Set scheme"
msgstr "Schema"
-#: ../../view/theme/redbasic/php/config.php:84
+#: ../../view/theme/redbasic/php/config.php:90
msgid "Navigation bar colour"
msgstr "Colore della barra di navigazione"
-#: ../../view/theme/redbasic/php/config.php:85
+#: ../../view/theme/redbasic/php/config.php:91
msgid "Set font-colour for banner"
msgstr "Colore del font del banner"
-#: ../../view/theme/redbasic/php/config.php:86
+#: ../../view/theme/redbasic/php/config.php:92
msgid "Set the background colour"
msgstr "Colore di sfondo"
-#: ../../view/theme/redbasic/php/config.php:87
+#: ../../view/theme/redbasic/php/config.php:93
msgid "Set the background image"
msgstr "Immagine di sfondo"
-#: ../../view/theme/redbasic/php/config.php:88
+#: ../../view/theme/redbasic/php/config.php:94
msgid "Set the background colour of items"
msgstr "Colore di sfondo degli elementi della pagina"
-#: ../../view/theme/redbasic/php/config.php:89
+#: ../../view/theme/redbasic/php/config.php:95
msgid "Set the opacity of items"
msgstr "Opacità degli oggetti"
-#: ../../view/theme/redbasic/php/config.php:90
+#: ../../view/theme/redbasic/php/config.php:96
msgid "Set the basic colour for item icons"
msgstr "Colore di base per le icone"
-#: ../../view/theme/redbasic/php/config.php:91
+#: ../../view/theme/redbasic/php/config.php:97
msgid "Set the hover colour for item icons"
msgstr "Colore per le icone in evidenza"
-#: ../../view/theme/redbasic/php/config.php:92
+#: ../../view/theme/redbasic/php/config.php:98
+msgid "Set font-size for the entire application"
+msgstr "Dimensione font per tutto il sito"
+
+#: ../../view/theme/redbasic/php/config.php:99
#: ../../view/theme/apw/php/config.php:236
msgid "Set font-size for posts and comments"
msgstr "Dimensioni del carattere per articoli e commenti"
-#: ../../view/theme/redbasic/php/config.php:93
+#: ../../view/theme/redbasic/php/config.php:100
msgid "Set font-colour for posts and comments"
msgstr "Colore del carattere per articoli e commenti"
-#: ../../view/theme/redbasic/php/config.php:94
+#: ../../view/theme/redbasic/php/config.php:101
msgid "Set radius of corners"
msgstr "Raggio degli angoli stondati"
-#: ../../view/theme/redbasic/php/config.php:95
+#: ../../view/theme/redbasic/php/config.php:102
msgid "Set shadow depth of photos"
msgstr "Profondità dell'ombra delle foto"
-#: ../../view/theme/redbasic/php/config.php:96
+#: ../../view/theme/redbasic/php/config.php:103
msgid "Set maximum width of conversation regions"
msgstr "Larghezza massima delle aree delle conversazioni"
-#: ../../view/theme/redbasic/php/config.php:97
+#: ../../view/theme/redbasic/php/config.php:104
msgid "Set minimum opacity of nav bar - to hide it"
msgstr "Imposta l'opacità minima della barra di navigazione per nasconderla"
-#: ../../view/theme/redbasic/php/config.php:98
+#: ../../view/theme/redbasic/php/config.php:105
+msgid "Set size of conversation author photo"
+msgstr "Dimensione foto dell'autore della conversazione"
+
+#: ../../view/theme/redbasic/php/config.php:106
+msgid "Set size of followup author photos"
+msgstr "Dimensione foto dei partecipanti alla conversazione"
+
+#: ../../view/theme/redbasic/php/config.php:107
msgid "Sloppy photo albums"
-msgstr "Album fotografici semplificati"
+msgstr "Album con foto storte"
-#: ../../view/theme/redbasic/php/config.php:98
+#: ../../view/theme/redbasic/php/config.php:107
msgid "Are you a clean desk or a messy desk person?"
msgstr "La tua scrivania è sempre a posto? Sei una persona disordinata?"
@@ -7082,113 +7089,128 @@ msgstr "Spazio a sinistra del aside"
msgid "Right offset of the aside element"
msgstr "Spazio a destra del aside"
-#: ../../boot.php:1278
+#: ../../view/theme/blogga/view/theme/blog/config.php:47
+#: ../../view/theme/blogga/php/config.php:47
+msgid "None"
+msgstr "Nessuno"
+
+#: ../../view/theme/blogga/view/theme/blog/config.php:70
+#: ../../view/theme/blogga/php/config.php:70
+msgid "Header image"
+msgstr "Immagine dell'intestazione"
+
+#: ../../view/theme/blogga/view/theme/blog/config.php:71
+#: ../../view/theme/blogga/php/config.php:71
+msgid "Header image only on profile pages"
+msgstr "È possibile mettere un'immagine solo nell'intestazione dei profili"
+
+#: ../../boot.php:1274
#, php-format
msgid "Update %s failed. See error logs."
msgstr "%s: aggiornamento fallito. Controlla i log di errore."
-#: ../../boot.php:1281
+#: ../../boot.php:1277
#, php-format
msgid "Update Error at %s"
msgstr "Errore di aggiornamento su %s"
-#: ../../boot.php:1438
+#: ../../boot.php:1434
msgid ""
"Create an account to access services and applications within the Red Matrix"
msgstr "Registrati per accedere ai servizi e alle applicazioni di Red Matrix"
-#: ../../boot.php:1466
+#: ../../boot.php:1462
msgid "Password"
msgstr "Password"
-#: ../../boot.php:1467
+#: ../../boot.php:1463
msgid "Remember me"
msgstr "Resta connesso"
-#: ../../boot.php:1472
+#: ../../boot.php:1468
msgid "Forgot your password?"
msgstr "Hai dimenticato la password?"
-#: ../../boot.php:1537
+#: ../../boot.php:1533
msgid "permission denied"
msgstr "permesso negato"
-#: ../../boot.php:1538
+#: ../../boot.php:1534
msgid "Got Zot?"
msgstr "Hai Zot?"
-#: ../../boot.php:1597
+#: ../../boot.php:1593
msgid "Requested channel is not available."
msgstr "Il canale che cerchi non è disponibile."
-#: ../../boot.php:1609
+#: ../../boot.php:1605
msgid " Sorry, you don't have the permission to view this profile. "
msgstr "Purtroppo non hai il permesso di vedere questo profilo."
-#: ../../boot.php:1765
+#: ../../boot.php:1761
msgid "Profiles"
msgstr "Profili"
-#: ../../boot.php:1765
+#: ../../boot.php:1761
msgid "Manage/edit profiles"
msgstr "Gestisci/modifica i profili"
-#: ../../boot.php:1769
+#: ../../boot.php:1765
msgid "Edit Profile"
msgstr "Modifica il profilo"
-#: ../../boot.php:1863 ../../boot.php:1943
+#: ../../boot.php:1859 ../../boot.php:1939
msgid "F d"
msgstr "d F"
-#: ../../boot.php:1920
+#: ../../boot.php:1916
msgid "Birthday Reminders"
msgstr "Promemoria compleanni"
-#: ../../boot.php:1921
+#: ../../boot.php:1917
msgid "Birthdays this week:"
msgstr "Compleanni questa settimana:"
-#: ../../boot.php:1976
+#: ../../boot.php:1972
msgid "[No description]"
msgstr "[Nessuna descrizione]"
-#: ../../boot.php:1994
+#: ../../boot.php:1990
msgid "Event Reminders"
msgstr "Promemoria"
-#: ../../boot.php:1995
+#: ../../boot.php:1991
msgid "Events this week:"
msgstr "Eventi di questa settimana:"
-#: ../../boot.php:2229
+#: ../../boot.php:2225
msgid "Channel"
msgstr "Canale"
-#: ../../boot.php:2232
+#: ../../boot.php:2228
msgid "Status Messages and Posts"
msgstr "Articoli e messaggi di stato"
-#: ../../boot.php:2236
+#: ../../boot.php:2232
msgid "About"
msgstr "Informazioni"
-#: ../../boot.php:2239
+#: ../../boot.php:2235
msgid "Profile Details"
msgstr "Dettagli del profilo"
-#: ../../boot.php:2257
+#: ../../boot.php:2253
msgid "Events and Calendar"
msgstr "Calendario eventi"
-#: ../../boot.php:2262
+#: ../../boot.php:2258
msgid "Webpages"
msgstr "Pagine web"
-#: ../../boot.php:2265
+#: ../../boot.php:2261
msgid "Manage Webpages"
msgstr "Gestisci le pagine web"
-#: ../../boot.php:2547
+#: ../../boot.php:2546
msgid "toggle mobile"
msgstr "attiva/disattiva versione mobile"
diff --git a/view/it/strings.php b/view/it/strings.php
index 5c71824db..7068289b1 100644
--- a/view/it/strings.php
+++ b/view/it/strings.php
@@ -12,42 +12,42 @@ $a->strings["public profile"] = "profilo pubblico";
$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s ha cambiato %2\$s in &ldquo;%3\$s&rdquo;";
$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["Public Timeline"] = "Diario pubblico";
$a->strings["Red Matrix Notification"] = "Notifica di Red Matrix";
+$a->strings["redmatrix"] = "redmatrix";
$a->strings["Thank You,"] = "Grazie,";
$a->strings["%s Administrator"] = "Amministratore %s";
$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["%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["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["%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 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 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]a %4\$s[/zrl]"] = "%1\$s, %2\$s ha commentato [zrl=%3\$s]%4\$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, %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["%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["[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 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 your profile wall at %3\$s"] = "%1\$s, %2\$s ha scritto sulla bacheca del tuo profilo alle %3\$s";
+$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["%1\$s tagged you at %2\$s"] = "%1\$s ti ha taggato alle %2\$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 tagged you at %3\$s"] = "%1\$s, %2\$s ti ha taggato alle %3\$s";
+$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["%1\$s poked you at %2\$s"] = "%1\$s ti ha mandato un poke alle %2\$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 poked you at %3\$s"] = "%1\$s, %2\$s ti ha mandato un poke alle %3\$s";
+$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["%1\$s tagged your post at %2\$s"] = "%1\$s ha taggato il tuo articolo alle %2\$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 your post at %3\$s"] = "%1\$s, %2\$s ha taggato il tuo articolo alle %3\$s";
+$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["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["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 an introduction from '%2\$s' at %3\$s"] = "%1\$s, hai ricevuto una richiesta di contatto da '%2\$s' alle %3\$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["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["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["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 a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, ti è stato suggerito un amico da '%2\$s' alle %3\$s";
+$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["Photo:"] = "Foto:";
$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["Preview"] = "Anteprima";
$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["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";
@@ -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["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["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 and correct posts and comments after sending"] = "Modifica e correggi gli articoli o i commenti anche dopo l'invio";
$a->strings["Tagging"] = "Tag";
@@ -353,6 +351,7 @@ $a->strings["Blocks"] = "Riquadri";
$a->strings["Menus"] = "Menù";
$a->strings["Layouts"] = "Layout";
$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["Empty name"] = "Nome vuoto";
$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["Account approved."] = "Account approvato.";
$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["Failed authentication"] = "Autenticazione fallita";
$a->strings["Login failed."] = "Accesso fallito.";
@@ -537,7 +600,7 @@ $a->strings["%d invitation available"] = array(
);
$a->strings["Find Channels"] = "Ricerca canali";
$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["Find"] = "Cerca";
$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 is not available under your subscription plan."] = "Questa operazione non è prevista dal tuo abbonamento.";
$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["Please upload a profile photo."] = "Carica una foto per il profilo!";
$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["Collection not found."] = "Insieme non trovato.";
$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["Alphabetic"] = "Alfabetico";
$a->strings["Reverse Alphabetic"] = "Alfabetico inverso";
@@ -963,12 +971,12 @@ $a->strings["Server"] = "Server";
$a->strings["DB updates"] = "Aggiornamenti al DB";
$a->strings["Logs"] = "Log";
$a->strings["Plugin Features"] = "Funzionalità dei componenti aggiuntivi";
-$a->strings["User registrations waiting for confirmation"] = "Utenti registrati in attesa di conferma";
-$a->strings["Message queues"] = "Coda dei messaggi";
+$a->strings["User registrations waiting for confirmation"] = "Registrazioni in attesa";
+$a->strings["Message queues"] = "Messaggi in attesa di recapito";
$a->strings["Administration"] = "Amministrazione";
$a->strings["Summary"] = "Riepilogo";
$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["Active plugins"] = "Plugin attivi";
$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["Register text"] = "Testo diregistrazione";
$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["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.";
@@ -1047,10 +1055,6 @@ $a->strings["Account not found"] = "Account non trovato";
$a->strings["User '%s' deleted"] = "Utente '%s' eliminato";
$a->strings["User '%s' unblocked"] = "Utente '%s' sbloccato";
$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["User registrations waiting for confirm"] = "Richieste di registrazione in attesa di conferma";
$a->strings["Request date"] = "Data richiesta";
@@ -1061,6 +1065,7 @@ $a->strings["Block"] = "Blocca";
$a->strings["Unblock"] = "Sblocca";
$a->strings["Register date"] = "Data registrazione";
$a->strings["Last login"] = "Ultimo accesso";
+$a->strings["Expires"] = "Scadenza";
$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["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["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["Remove term"] = "Rimuovi termine";
$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["Delete Album"] = "Elimina album";
@@ -1212,7 +1218,6 @@ $a->strings["Not Found"] = "Non disponibile";
$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["Authenticate"] = "Autenticazione";
-$a->strings["Remove term"] = "Rimuovi termine";
$a->strings["Commented Order"] = "Ultimi commenti";
$a->strings["Sort by Comment Date"] = "Per data del commento";
$a->strings["Posted Order"] = "Ultimi articoli";
@@ -1238,7 +1243,7 @@ $a->strings["Invalid connection."] = "Connessione non valida.";
$a->strings["Ignore"] = "Ignora";
$a->strings["Connection updated."] = "Contatto aggiornato.";
$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["System error. Please try again later."] = "Errore di sistema. Riprovare più tardi.";
$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["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["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["Refresh failed - channel is currently unavailable."] = "Il canale non è disponibile - impossibile aggiornare.";
$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["Unknown"] = "Sconosciuto";
$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["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["inherited"] = "derivato";
$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["Follow Only"] = "Follower";
$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["Quick Links"] = "Impostazioni veloci";
$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["Suggestions"] = "Suggerimenti";
$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["Show all connections"] = "Mostra tutti i contatti";
$a->strings["Unblocked"] = "Non bloccati";
@@ -1520,7 +1525,7 @@ $a->strings["Approve as: "] = "Approva come: ";
$a->strings["Friend"] = "Amico";
$a->strings["Sharer"] = "Sharer";
$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["No introductions."] = "Nessuna richiesta di amicizia.";
$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 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 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-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 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 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["Schema Default"] = "Schema predefinito";
$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["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["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 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";
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css
index 3aa9bc346..16ec7a34f 100644
--- a/view/theme/redbasic/css/style.css
+++ b/view/theme/redbasic/css/style.css
@@ -582,42 +582,7 @@ footer {
#viewconnections {
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 {
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-no-label,
@@ -705,10 +611,6 @@ footer {
width: 50px;
}
-#profile-edit-with-label {
- width: 175px;
- margin-left: 20px;
-}
#profile-publish-yes-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 {
list-style-type: none;
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 {
margin-top: 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 {
float: left;
width: 80px;
@@ -2782,8 +2599,6 @@ brain is weird like that */
.on { background-position: -144px -32px; }
.off { background-position: 0px -48px; }
-/*.starred { background-position: -16px -48px; }
-.unstarred { background-position: -32px -48px; }*/
.tagged { background-position: -48px -48px; }
.yellow { background-position: -64px -48px; }
@@ -2791,12 +2606,8 @@ brain is weird like that */
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); }
+
[class^="comment-edit-bb"] {
list-style: none;
display: none;
@@ -2812,81 +2623,11 @@ brain is weird like that */
[class^="comment-edit-bb-end"] {
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 {
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 */
diff --git a/view/tpl/event_form.tpl b/view/tpl/event_form.tpl
index f661eac87..da4dda82e 100755
--- a/view/tpl/event_form.tpl
+++ b/view/tpl/event_form.tpl
@@ -7,7 +7,7 @@
<form action="{{$post}}" method="post" >
<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}}" />
<div id="event-start-text">{{$s_text}}</div>