Merge remote-tracking branch 'upstream/develop' into 1702-only-worker

Conflicts:
	include/onepoll.php
	include/queue.php
This commit is contained in:
Michael 2017-03-12 21:03:44 +00:00
commit 77e8c44016
26 changed files with 13391 additions and 13065 deletions

View file

@ -1,4 +1,4 @@
Version 3.5.1
Version 3.5.1 (2017-03-12)
Friendica Core:
Updates to the translations (BG, CA, CS, DE, EO, ES, FR, IS, IT, NL, PL, PT-BR, RU, SV) [translation teams]
Fix for a potential XSS vector [heluecht, thanks to Vít Šesták 'v6ak' for reporting the problem]
@ -33,7 +33,6 @@ Version 3.5.1
ping now works with JSON as well [Hypolite]
On pending registrations, an email is now send to inform the user about it [tobiasd]
On systems where the registration needs approval, a note for the admin can now be written [tobiasd]
Theme developers can now announce if their theme does support the RichText editor or not [heluecht, rabuzarus]
Meta Information for HTML descriptions is now limited to 160 character [rabuzarus]
Removed very old deprecated themes from the repository [silke]
Marked frost and frost mobile as deprecated [silke]
@ -64,7 +63,7 @@ Version 3.5.1
2850, 2858, 2865, 2892, 2894, 2895, 2907, 2908, 2914, 2015, 2926,
2948, 2955, 2958, 2963, 2964, 2968, 2987, 2993, 3020, 3052, 3062,
3066, 3091, 3108, 3113, 3116, 3117, 3118, 3126, 3130, 3135, 3155,
3163
3160, 3163, 3187, 3196
Version 3.5 (2016-09-13)
Friendica Core:

1
VERSION Normal file
View file

@ -0,0 +1 @@
3.5.2-dev

View file

@ -37,9 +37,9 @@ require_once('include/dbstructure.php');
define ( 'FRIENDICA_PLATFORM', 'Friendica');
define ( 'FRIENDICA_CODENAME', 'Asparagus');
define ( 'FRIENDICA_VERSION', '3.5.1-rc' );
define ( 'FRIENDICA_VERSION', '3.5.2-dev' );
define ( 'DFRN_PROTOCOL_VERSION', '2.23' );
define ( 'DB_UPDATE_VERSION', 1214 );
define ( 'DB_UPDATE_VERSION', 1215 );
/**
* @brief Constant with a HTML line break.

View file

@ -1,6 +1,6 @@
-- ------------------------------------------
-- Friendica 3.5.1-dev (Asparagus)
-- DB_UPDATE_VERSION 1213
-- Friendica 3.5.1-rc (Asparagus)
-- DB_UPDATE_VERSION 1215
-- ------------------------------------------
@ -532,6 +532,7 @@ CREATE TABLE IF NOT EXISTS `item` (
INDEX `parent-uri` (`parent-uri`),
INDEX `extid` (`extid`),
INDEX `uid_id` (`uid`,`id`),
INDEX `uid_contactid_id` (`uid`,`contact-id`,`id`),
INDEX `uid_created` (`uid`,`created`),
INDEX `uid_unseen_contactid` (`uid`,`unseen`,`contact-id`),
INDEX `uid_network_received` (`uid`,`network`,`received`),
@ -1016,7 +1017,8 @@ CREATE TABLE IF NOT EXISTS `thread` (
INDEX `uid_contactid_commented` (`uid`,`contact-id`,`commented`),
INDEX `uid_contactid_created` (`uid`,`contact-id`,`created`),
INDEX `uid_created` (`uid`,`created`),
INDEX `uid_commented` (`uid`,`commented`)
INDEX `uid_commented` (`uid`,`commented`),
INDEX `uid_wall_created` (`uid`,`wall`,`created`)
) DEFAULT CHARSET=utf8mb4;
--

View file

@ -1,7 +1,5 @@
<?php
require_once('include/Probe.php');
// Included here for completeness, but this is a very dangerous operation.
// It is the caller's responsibility to confirm the requestor's intent and
// authorisation to do this.
@ -355,6 +353,7 @@ function get_contact_details_by_addr($addr, $uid = -1) {
dbesc($addr));
if (!dbm::is_result($r)) {
require_once('include/Probe.php');
$data = Probe::uri($addr);
$profile = get_contact_details_by_url($data['url'], $uid);
@ -508,72 +507,96 @@ function contacts_not_grouped($uid,$start = 0,$count = 0) {
/**
* @brief Fetch the contact id for a given url and user
*
* First lookup in the contact table to find a record matching either `url`, `nurl`,
* `addr` or `alias`.
*
* If there's no record and we aren't looking for a public contact, we quit.
* If there's one, we check that it isn't time to update the picture else we
* directly return the found contact id.
*
* Second, we probe the provided $url wether it's http://server.tld/profile or
* nick@server.tld. We quit if we can't get any info back.
*
* Third, we create the contact record if it doesn't exist
*
* Fourth, we update the existing record with the new data (avatar, alias, nick)
* if there's any updates
*
* @param string $url Contact URL
* @param integer $uid The user id for the contact
* @param integer $uid The user id for the contact (0 = public contact)
* @param boolean $no_update Don't update the contact
*
* @return integer Contact ID
*/
function get_contact($url, $uid = 0, $no_update = false) {
require_once("include/Scrape.php");
logger("Get contact data for url ".$url." and user ".$uid." - ".App::callstack(), LOGGER_DEBUG);;
$data = array();
$contactid = 0;
$contact_id = 0;
// is it an address in the format user@server.tld?
/// @todo use gcontact and/or the addr field for a lookup
if (!strstr($url, "http") OR strstr($url, "@")) {
$data = probe_url($url);
$url = $data["url"];
if ($url == "")
return 0;
}
$contact = q("SELECT `id`, `avatar-date` FROM `contact` WHERE `nurl` = '%s' AND `uid` = %d ORDER BY `id` LIMIT 2",
// We first try the nurl (http://server.tld/nick), most common case
$contacts = q("SELECT `id`, `avatar-date` FROM `contact`
WHERE `nurl` = '%s'
AND `uid` = %d",
dbesc(normalise_link($url)),
intval($uid));
if (!$contact)
$contact = q("SELECT `id`, `avatar-date` FROM `contact` WHERE `alias` IN ('%s', '%s') AND `uid` = %d ORDER BY `id` LIMIT 1",
dbesc($url),
dbesc(normalise_link($url)),
intval($uid));
if ($contact) {
$contactid = $contact[0]["id"];
// Then the addr (nick@server.tld)
if (! dbm::is_result($contacts)) {
$contacts = q("SELECT `id`, `avatar-date` FROM `contact`
WHERE `addr` = '%s'
AND `uid` = %d",
dbesc($url),
intval($uid));
}
// Then the alias (which could be anything)
if (! dbm::is_result($contacts)) {
$contacts = q("SELECT `id`, `avatar-date` FROM `contact`
WHERE `alias` IN ('%s', '%s')
AND `uid` = %d",
dbesc($url),
dbesc(normalise_link($url)),
intval($uid));
}
if (dbm::is_result($contacts)) {
$contact_id = $contacts[0]["id"];
// Update the contact every 7 days
$update_photo = ($contact[0]['avatar-date'] < datetime_convert('','','now -7 days'));
//$update_photo = ($contact[0]['avatar-date'] < datetime_convert('','','now -12 hours'));
$update_photo = ($contacts[0]['avatar-date'] < datetime_convert('','','now -7 days'));
if (!$update_photo OR $no_update) {
return($contactid);
return $contact_id;
}
} elseif ($uid != 0)
} elseif ($uid != 0) {
// Non-existing user-specific contact, exiting
return 0;
}
if (!count($data))
$data = probe_url($url);
require_once('include/Probe.php');
$data = Probe::uri($url);
// Does this address belongs to a valid network?
if (!in_array($data["network"], array(NETWORK_DFRN, NETWORK_OSTATUS, NETWORK_DIASPORA))) {
if ($uid != 0)
// Last try in gcontact for unsupported networks
if (!in_array($data["network"], array(NETWORK_DFRN, NETWORK_OSTATUS, NETWORK_DIASPORA, NETWORK_PUMPIO))) {
if ($uid != 0) {
return 0;
}
// Get data from the gcontact table
$r = q("SELECT `name`, `nick`, `url`, `photo`, `addr`, `alias`, `network` FROM `gcontact` WHERE `nurl` = '%s'",
$gcontacts = q("SELECT `name`, `nick`, `url`, `photo`, `addr`, `alias`, `network` FROM `gcontact` WHERE `nurl` = '%s'",
dbesc(normalise_link($url)));
if (!$r)
if (!$gcontacts) {
return 0;
}
$data = $r[0];
$data = $gcontacts[0];
}
$url = $data["url"];
if ($contactid == 0) {
if (!$contact_id) {
q("INSERT INTO `contact` (`uid`, `created`, `url`, `nurl`, `addr`, `alias`, `notify`, `poll`,
`name`, `nick`, `photo`, `network`, `pubkey`, `rel`, `priority`,
`batch`, `request`, `confirm`, `poco`, `name-date`, `uri-date`,
@ -602,45 +625,48 @@ function get_contact($url, $uid = 0, $no_update = false) {
dbesc(datetime_convert())
);
$contact = q("SELECT `id` FROM `contact` WHERE `nurl` = '%s' AND `uid` = %d ORDER BY `id` LIMIT 2",
$contacts = q("SELECT `id` FROM `contact` WHERE `nurl` = '%s' AND `uid` = %d ORDER BY `id` LIMIT 2",
dbesc(normalise_link($data["url"])),
intval($uid));
if (!$contact)
if (!dbm::is_result($contacts)) {
return 0;
}
$contactid = $contact[0]["id"];
$contact_id = $contacts[0]["id"];
// Update the newly created contact from data in the gcontact table
$r = q("SELECT `location`, `about`, `keywords`, `gender` FROM `gcontact` WHERE `nurl` = '%s'",
$gcontacts = q("SELECT `location`, `about`, `keywords`, `gender` FROM `gcontact` WHERE `nurl` = '%s'",
dbesc(normalise_link($data["url"])));
if ($r) {
logger("Update contact ".$data["url"]);
if (dbm::is_result($gcontacts)) {
logger("Update contact " . $data["url"] . ' from gcontact');
q("UPDATE `contact` SET `location` = '%s', `about` = '%s', `keywords` = '%s', `gender` = '%s' WHERE `id` = %d",
dbesc($r["location"]), dbesc($r["about"]), dbesc($r["keywords"]),
dbesc($r["gender"]), intval($contactid));
dbesc($gcontacts[0]["location"]), dbesc($gcontacts[0]["about"]), dbesc($gcontacts[0]["keywords"]),
dbesc($gcontacts[0]["gender"]), intval($contact_id));
}
}
if ((count($contact) > 1) AND ($uid == 0) AND ($contactid != 0) AND ($url != ""))
if (count($contacts) > 1 AND $uid == 0 AND $contact_id != 0 AND $url != "") {
q("DELETE FROM `contact` WHERE `nurl` = '%s' AND `id` != %d AND NOT `self`",
dbesc(normalise_link($url)),
intval($contactid));
intval($contact_id));
}
require_once("Photo.php");
require_once "Photo.php";
update_contact_avatar($data["photo"],$uid,$contactid);
update_contact_avatar($data["photo"], $uid, $contact_id);
$r = q("SELECT `addr`, `alias`, `name`, `nick` FROM `contact` WHERE `id` = %d", intval($contactid));
$contacts = q("SELECT `addr`, `alias`, `name`, `nick` FROM `contact` WHERE `id` = %d", intval($contact_id));
// This condition should always be true
if (!dbm::is_result($r))
return $contactid;
if (!dbm::is_result($contacts)) {
return $contact_id;
}
// Only update if there had something been changed
if (($data["addr"] != $r[0]["addr"]) OR
($data["alias"] != $r[0]["alias"]) OR
($data["name"] != $r[0]["name"]) OR
($data["nick"] != $r[0]["nick"]))
if ($data["addr"] != $contacts[0]["addr"] OR
$data["alias"] != $contacts[0]["alias"] OR
$data["name"] != $contacts[0]["name"] OR
$data["nick"] != $contacts[0]["nick"]) {
q("UPDATE `contact` SET `addr` = '%s', `alias` = '%s', `name` = '%s', `nick` = '%s',
`name-date` = '%s', `uri-date` = '%s' WHERE `id` = %d",
dbesc($data["addr"]),
@ -649,10 +675,11 @@ function get_contact($url, $uid = 0, $no_update = false) {
dbesc($data["nick"]),
dbesc(datetime_convert()),
dbesc(datetime_convert()),
intval($contactid)
intval($contact_id)
);
}
return $contactid;
return $contact_id;
}
/**

View file

@ -60,11 +60,20 @@ class Probe {
$xrd_timeout = Config::get('system','xrd_timeout', 20);
$redirects = 0;
$xml = fetch_url($ssl_url, false, $redirects, $xrd_timeout, "application/xrd+xml");
$ret = z_fetch_url($ssl_url, false, $redirects, array('timeout' => $xrd_timeout, 'accept_content' => 'application/xrd+xml'));
if ($ret['errno'] == CURLE_OPERATION_TIMEDOUT) {
return false;
}
$xml = $ret['body'];
$xrd = parse_xml_string($xml, false);
if (!is_object($xrd)) {
$xml = fetch_url($url, false, $redirects, $xrd_timeout, "application/xrd+xml");
$ret = z_fetch_url($url, false, $redirects, array('timeout' => $xrd_timeout, 'accept_content' => 'application/xrd+xml'));
if ($ret['errno'] == CURLE_OPERATION_TIMEDOUT) {
return false;
}
$xml = $ret['body'];
$xrd = parse_xml_string($xml, false);
}
if (!is_object($xrd))
@ -430,7 +439,12 @@ class Probe {
$xrd_timeout = Config::get('system','xrd_timeout', 20);
$redirects = 0;
$data = fetch_url($url, false, $redirects, $xrd_timeout, "application/xrd+xml");
$ret = z_fetch_url($url, false, $redirects, array('timeout' => $xrd_timeout, 'accept_content' => 'application/xrd+xml'));
if ($ret['errno'] == CURLE_OPERATION_TIMEDOUT) {
return false;
}
$data = $ret['body'];
$xrd = parse_xml_string($data, false);
if (!is_object($xrd)) {
@ -482,9 +496,14 @@ class Probe {
* @return array noscrape data
*/
private function poll_noscrape($noscrape, $data) {
$content = fetch_url($noscrape);
if (!$content)
$ret = z_fetch_url($noscrape);
if ($ret['errno'] == CURLE_OPERATION_TIMEDOUT) {
return false;
}
$content = $ret['body'];
if (!$content) {
return false;
}
$json = json_decode($content, true);
if (!is_array($json))
@ -663,10 +682,14 @@ class Probe {
* @return array hcard data
*/
private function poll_hcard($hcard, $data, $dfrn = false) {
$content = fetch_url($hcard);
if (!$content)
$ret = z_fetch_url($hcard);
if ($ret['errno'] == CURLE_OPERATION_TIMEDOUT) {
return false;
}
$content = $ret['body'];
if (!$content) {
return false;
}
$doc = new DOMDocument();
if (!@$doc->loadHTML($content))
@ -859,8 +882,13 @@ class Probe {
$pubkey = substr($pubkey, strpos($pubkey, ',') + 1);
else
$pubkey = substr($pubkey, 5);
} elseif (normalise_link($pubkey) == 'http://')
$pubkey = fetch_url($pubkey);
} elseif (normalise_link($pubkey) == 'http://') {
$ret = z_fetch_url($pubkey);
if ($ret['errno'] == CURLE_OPERATION_TIMEDOUT) {
return false;
}
$pubkey = $ret['body'];
}
$key = explode(".", $pubkey);
@ -880,7 +908,11 @@ class Probe {
return false;
// Fetch all additional data from the feed
$feed = fetch_url($data["poll"]);
$ret = z_fetch_url($data["poll"]);
if ($ret['errno'] == CURLE_OPERATION_TIMEDOUT) {
return false;
}
$feed = $ret['body'];
$feed_data = feed_import($feed,$dummy1,$dummy2, $dummy3, true);
if (!$feed_data)
return false;
@ -1035,7 +1067,11 @@ class Probe {
* @return array feed data
*/
private function feed($url, $probe = true) {
$feed = fetch_url($url);
$ret = z_fetch_url($url);
if ($ret['errno'] == CURLE_OPERATION_TIMEDOUT) {
return false;
}
$feed = $ret['body'];
$feed_data = feed_import($feed, $dummy1, $dummy2, $dummy3, true);
if (!$feed_data) {

View file

@ -39,9 +39,9 @@ function diaspora2bb($s) {
$s = html_entity_decode($s, ENT_COMPAT, 'UTF-8');
// Handles single newlines
$s = str_replace("\r", '<br>', $s);
$s = str_replace("\r\n", "\n", $s);
$s = str_replace("\n", " \n", $s);
$s = str_replace("\r", " \n", $s);
// Replace lonely stars in lines not starting with it with literal stars
$s = preg_replace('/^([^\*]+)\*([^\*]*)$/im', '$1\*$2', $s);

View file

@ -1163,8 +1163,10 @@ function bbcode($Text,$preserve_nl = false, $tryoembed = true, $simplehtml = fal
// fix any escaped ampersands that may have been converted into links
$Text = preg_replace('/\<([^>]*?)(src|href)=(.*?)\&amp\;(.*?)\>/ism', '<$1$2=$3&$4>', $Text);
// sanitizes src attributes (only relative redir URIs or http URLs)
$Text = preg_replace('#<([^>]*?)(src)="(?!http|redir)(.*?)"(.*?)>#ism', '<$1$2=""$4 class="invalid-src" title="' . t('Invalid source protocol') . '">', $Text);
// sanitizes src attributes (http and redir URLs for displaying in a web page, cid used for inline images in emails)
static $allowed_src_protocols = array('http', 'redir', 'cid');
$Text = preg_replace('#<([^>]*?)(src)="(?!' . implode('|', $allowed_src_protocols) . ')(.*?)"(.*?)>#ism',
'<$1$2=""$4 class="invalid-src" title="' . t('Invalid source protocol') . '">', $Text);
// sanitize href attributes (only whitelisted protocols URLs)
// default value for backward compatibility

View file

@ -1526,6 +1526,7 @@ function db_definition($charset) {
"uid_contactid_created" => array("uid","contact-id","created"),
"uid_created" => array("uid","created"),
"uid_commented" => array("uid","commented"),
"uid_wall_created" => array("uid","wall","created"),
)
);
$database["tokens"] = array(

View file

@ -379,7 +379,7 @@ function delivery_run(&$argv, &$argc){
logger('notifier: dfrn_delivery to '.$contact["url"].' with guid '.$target_item["guid"].' returns '.$deliver_status);
if ($deliver_status == (-1)) {
if ($deliver_status < 0) {
logger('notifier: delivery failed: queuing message');
add_to_queue($contact['id'],NETWORK_DFRN,$atom);

View file

@ -391,7 +391,7 @@ class dfrn {
*
* @return object XML root object
*/
private function add_header($doc, $owner, $authorelement, $alternatelink = "", $public = false) {
private static function add_header($doc, $owner, $authorelement, $alternatelink = "", $public = false) {
if ($alternatelink == "")
$alternatelink = $owner['url'];
@ -462,7 +462,7 @@ class dfrn {
*
* @return object XML author object
*/
private function add_author($doc, $owner, $authorelement, $public) {
private static function add_author($doc, $owner, $authorelement, $public) {
// Is the profile hidden or shouldn't be published in the net? Then add the "hide" element
$r = q("SELECT `id` FROM `profile` INNER JOIN `user` ON `user`.`uid` = `profile`.`uid`
@ -591,7 +591,7 @@ class dfrn {
*
* @return object XML author object
*/
private function add_entry_author($doc, $element, $contact_url, $item) {
private static function add_entry_author($doc, $element, $contact_url, $item) {
$contact = get_contact_details_by_url($contact_url, $item["uid"]);
@ -631,7 +631,7 @@ class dfrn {
*
* @return object XML activity object
*/
private function create_activity($doc, $element, $activity) {
private static function create_activity($doc, $element, $activity) {
if($activity) {
$entry = $doc->createElement($element);
@ -685,7 +685,7 @@ class dfrn {
*
* @return object XML attachment object
*/
private function get_attachment($doc, $root, $item) {
private static function get_attachment($doc, $root, $item) {
$arr = explode('[/attach],',$item['attach']);
if(count($arr)) {
foreach($arr as $r) {
@ -720,7 +720,7 @@ class dfrn {
*
* @return object XML entry object
*/
private function entry($doc, $type, $item, $owner, $comment = false, $cid = 0) {
private static function entry($doc, $type, $item, $owner, $comment = false, $cid = 0) {
$mentioned = array();
@ -913,11 +913,18 @@ class dfrn {
logger('dfrn_deliver: ' . $url);
$xml = fetch_url($url);
$ret = z_fetch_url($url);
if ($ret['errno'] == CURLE_OPERATION_TIMEDOUT) {
return -2; // timed out
}
$xml = $ret['body'];
$curl_stat = $a->get_curl_code();
if(! $curl_stat)
return(-1); // timed out
if (!$curl_stat) {
return -3; // timed out
}
logger('dfrn_deliver: ' . $xml, LOGGER_DATA);
@ -1017,24 +1024,24 @@ class dfrn {
$key = Crypto::createNewRandomKey();
} catch (CryptoTestFailed $ex) {
logger('Cannot safely create a key');
return -1;
return -4;
} catch (CannotPerformOperation $ex) {
logger('Cannot safely create a key');
return -1;
return -5;
}
try {
$data = Crypto::encrypt($postvars['data'], $key);
} catch (CryptoTestFailed $ex) {
logger('Cannot safely perform encryption');
return -1;
return -6;
} catch (CannotPerformOperation $ex) {
logger('Cannot safely perform encryption');
return -1;
return -7;
}
break;
default:
logger("rino: invalid requested verision '$rino_remote_version'");
return -1;
return -8;
}
$postvars['rino'] = $rino_remote_version;
@ -1068,16 +1075,18 @@ class dfrn {
logger('dfrn_deliver: ' . "SENDING: " . print_r($postvars,true), LOGGER_DATA);
$xml = post_url($contact['notify'],$postvars);
$xml = post_url($contact['notify'], $postvars);
logger('dfrn_deliver: ' . "RECEIVED: " . $xml, LOGGER_DATA);
$curl_stat = $a->get_curl_code();
if((! $curl_stat) || (! strlen($xml)))
return(-1); // timed out
if ((!$curl_stat) || (!strlen($xml))) {
return -9; // timed out
}
if(($curl_stat == 503) && (stristr($a->get_curl_headers(),'retry-after')))
return(-1);
if (($curl_stat == 503) && (stristr($a->get_curl_headers(),'retry-after'))) {
return -10;
}
if(strpos($xml,'<?xml') === false) {
logger('dfrn_deliver: phase 2: no valid XML returned');
@ -1103,7 +1112,7 @@ class dfrn {
* @param string $birthday Birthday of the contact
*
*/
private function birthday_event($contact, $birthday) {
private static function birthday_event($contact, $birthday) {
// Check for duplicates
$r = q("SELECT `id` FROM `event` WHERE `uid` = %d AND `cid` = %d AND `start` = '%s' AND `type` = '%s' LIMIT 1",
@ -1146,7 +1155,7 @@ class dfrn {
*
* @return Returns an array with relevant data of the author
*/
private function fetchauthor($xpath, $context, $importer, $element, $onlyfetch, $xml = "") {
private static function fetchauthor($xpath, $context, $importer, $element, $onlyfetch, $xml = "") {
$author = array();
$author["name"] = $xpath->evaluate($element."/atom:name/text()", $context)->item(0)->nodeValue;
@ -1358,7 +1367,7 @@ class dfrn {
*
* @return string XML string
*/
private function transform_activity($xpath, $activity, $element) {
private static function transform_activity($xpath, $activity, $element) {
if (!is_object($activity))
return "";
@ -1403,7 +1412,7 @@ class dfrn {
* @param object $mail mail elements
* @param array $importer Record of the importer user mixed with contact of the content
*/
private function process_mail($xpath, $mail, $importer) {
private static function process_mail($xpath, $mail, $importer) {
logger("Processing mails");
@ -1454,7 +1463,7 @@ class dfrn {
* @param object $suggestion suggestion elements
* @param array $importer Record of the importer user mixed with contact of the content
*/
private function process_suggestion($xpath, $suggestion, $importer) {
private static function process_suggestion($xpath, $suggestion, $importer) {
$a = get_app();
logger("Processing suggestions");
@ -1556,7 +1565,7 @@ class dfrn {
* @param object $relocation relocation elements
* @param array $importer Record of the importer user mixed with contact of the content
*/
private function process_relocation($xpath, $relocation, $importer) {
private static function process_relocation($xpath, $relocation, $importer) {
logger("Processing relocations");
@ -1685,7 +1694,7 @@ class dfrn {
* @param array $importer Record of the importer user mixed with contact of the content
* @param int $entrytype Is it a toplevel entry, a comment or a relayed comment?
*/
private function update_content($current, $item, $importer, $entrytype) {
private static function update_content($current, $item, $importer, $entrytype) {
$changed = false;
if (edited_timestamp_is_newer($current, $item)) {
@ -1737,7 +1746,7 @@ class dfrn {
*
* @return int Is it a toplevel entry, a comment or a relayed comment?
*/
private function get_entry_type($importer, $item) {
private static function get_entry_type($importer, $item) {
if ($item["parent-uri"] != $item["uri"]) {
$community = false;
@ -1803,7 +1812,7 @@ class dfrn {
* @param array $importer Record of the importer user mixed with contact of the content
* @param int $posted_id The record number of item record that was just posted
*/
private function do_poke($item, $importer, $posted_id) {
private static function do_poke($item, $importer, $posted_id) {
$verb = urldecode(substr($item["verb"],strpos($item["verb"], "#")+1));
if(!$verb)
return;
@ -1858,7 +1867,7 @@ class dfrn {
*
* @return bool Should the processing of the entries be continued?
*/
private function process_verbs($entrytype, $importer, &$item, &$is_like) {
private static function process_verbs($entrytype, $importer, &$item, &$is_like) {
logger("Process verb ".$item["verb"]." and object-type ".$item["object-type"]." for entrytype ".$entrytype, LOGGER_DEBUG);
@ -1958,7 +1967,7 @@ class dfrn {
* @param object $links link elements
* @param array $item the item record
*/
private function parse_links($links, &$item) {
private static function parse_links($links, &$item) {
$rel = "";
$href = "";
$type = "";
@ -2001,7 +2010,7 @@ class dfrn {
* @param object $entry entry elements
* @param array $importer Record of the importer user mixed with contact of the content
*/
private function process_entry($header, $xpath, $entry, $importer) {
private static function process_entry($header, $xpath, $entry, $importer) {
logger("Processing entries");
@ -2010,6 +2019,20 @@ class dfrn {
// Get the uri
$item["uri"] = $xpath->query("atom:id/text()", $entry)->item(0)->nodeValue;
$item["edited"] = $xpath->query("atom:updated/text()", $entry)->item(0)->nodeValue;
$current = q("SELECT `id`, `uid`, `last-child`, `edited`, `body` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
dbesc($item["uri"]),
intval($importer["importer_uid"])
);
// Is there an existing item?
if (dbm::is_result($current) AND edited_timestamp_is_newer($current[0], $item) AND
(datetime_convert("UTC","UTC",$item["edited"]) < $current[0]["edited"])) {
logger("Item ".$item["uri"]." already existed.", LOGGER_DEBUG);
return;
}
// Fetch the owner
$owner = self::fetchauthor($xpath, $entry, $importer, "dfrn:owner", true);
@ -2027,7 +2050,6 @@ class dfrn {
$item["title"] = $xpath->query("atom:title/text()", $entry)->item(0)->nodeValue;
$item["created"] = $xpath->query("atom:published/text()", $entry)->item(0)->nodeValue;
$item["edited"] = $xpath->query("atom:updated/text()", $entry)->item(0)->nodeValue;
$item["body"] = $xpath->query("dfrn:env/text()", $entry)->item(0)->nodeValue;
$item["body"] = str_replace(array(' ',"\t","\r","\n"), array('','','',''),$item["body"]);
@ -2215,18 +2237,13 @@ class dfrn {
}
}
$r = q("SELECT `id`, `uid`, `last-child`, `edited`, `body` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
dbesc($item["uri"]),
intval($importer["importer_uid"])
);
if (!self::process_verbs($entrytype, $importer, $item, $is_like)) {
logger("Exiting because 'process_verbs' told us so", LOGGER_DEBUG);
return;
}
// Update content if 'updated' changes
if (dbm::is_result($r)) {
if (dbm::is_result($current)) {
if (self::update_content($r[0], $item, $importer, $entrytype))
logger("Item ".$item["uri"]." was updated.", LOGGER_DEBUG);
else
@ -2311,7 +2328,7 @@ class dfrn {
* @param object $deletion deletion elements
* @param array $importer Record of the importer user mixed with contact of the content
*/
private function process_deletion($xpath, $deletion, $importer) {
private static function process_deletion($xpath, $deletion, $importer) {
logger("Processing deletions");

View file

@ -177,18 +177,6 @@ function feed_import($xml,$importer,&$contact, &$hub, $simulate = false) {
foreach (array_reverse($entrylist) AS $entry) {
$item = array_merge($header, $author);
$item["title"] = $xpath->evaluate('atom:title/text()', $entry)->item(0)->nodeValue;
if ($item["title"] == "")
$item["title"] = $xpath->evaluate('title/text()', $entry)->item(0)->nodeValue;
if ($item["title"] == "")
$item["title"] = $xpath->evaluate('rss:title/text()', $entry)->item(0)->nodeValue;
$alternate = $xpath->query("atom:link[@rel='alternate']", $entry)->item(0)->attributes;
if (!is_object($alternate))
$alternate = $xpath->query("atom:link", $entry)->item(0)->attributes;
if (is_object($alternate))
foreach($alternate AS $attributes)
if ($attributes->name == "href")
@ -212,6 +200,27 @@ function feed_import($xml,$importer,&$contact, &$hub, $simulate = false) {
$item["parent-uri"] = $item["uri"];
if (!$simulate) {
$r = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s' AND `network` IN ('%s', '%s')",
intval($importer["uid"]), dbesc($item["uri"]), dbesc(NETWORK_FEED), dbesc(NETWORK_DFRN));
if ($r) {
logger("Item with uri ".$item["uri"]." for user ".$importer["uid"]." already existed under id ".$r[0]["id"], LOGGER_DEBUG);
continue;
}
}
$item["title"] = $xpath->evaluate('atom:title/text()', $entry)->item(0)->nodeValue;
if ($item["title"] == "")
$item["title"] = $xpath->evaluate('title/text()', $entry)->item(0)->nodeValue;
if ($item["title"] == "")
$item["title"] = $xpath->evaluate('rss:title/text()', $entry)->item(0)->nodeValue;
$alternate = $xpath->query("atom:link[@rel='alternate']", $entry)->item(0)->attributes;
if (!is_object($alternate))
$alternate = $xpath->query("atom:link", $entry)->item(0)->attributes;
$published = $xpath->query('atom:published/text()', $entry)->item(0)->nodeValue;
if ($published == "")
@ -250,15 +259,6 @@ function feed_import($xml,$importer,&$contact, &$hub, $simulate = false) {
if ($creator != "")
$item["author-name"] = $creator;
if (!$simulate) {
$r = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s' AND `network` IN ('%s', '%s')",
intval($importer["uid"]), dbesc($item["uri"]), dbesc(NETWORK_FEED), dbesc(NETWORK_DFRN));
if ($r) {
logger("Item with uri ".$item["uri"]." for user ".$importer["uid"]." already existed under id ".$r[0]["id"], LOGGER_DEBUG);
continue;
}
}
/// @TODO ?
// <category>Ausland</category>
// <media:thumbnail width="152" height="76" url="http://www.taz.de/picture/667875/192/14388767.jpg"/>

View file

@ -143,6 +143,8 @@ function z_fetch_url($url,$binary = false, &$redirects = 0, $opts=array()) {
logger('fetch_url error fetching '.$url.': '.curl_error($ch), LOGGER_NORMAL);
}
$ret['errno'] = curl_errno($ch);
$base = $s;
$curl_info = @curl_getinfo($ch);

View file

@ -29,13 +29,15 @@ function onepoll_run(&$argv, &$argc){
$force = false;
$restart = false;
if(($argc > 1) && (intval($argv[1])))
if (($argc > 1) && (intval($argv[1]))) {
$contact_id = intval($argv[1]);
}
if(($argc > 2) && ($argv[2] == "force"))
if (($argc > 2) && ($argv[2] == "force")) {
$force = true;
}
if(! $contact_id) {
if (! $contact_id) {
logger('onepoll: no contact');
return;
}
@ -59,8 +61,9 @@ function onepoll_run(&$argv, &$argc){
intval($contact_id)
);
if(! count($contacts))
if (! count($contacts)) {
return;
}
$contact = $contacts[0];
@ -70,9 +73,11 @@ function onepoll_run(&$argv, &$argc){
where `cid` = %d and updated > UTC_TIMESTAMP() - INTERVAL 1 DAY",
intval($contact['id'])
);
if (dbm::is_result($r))
if (!$r[0]['total'])
if (dbm::is_result($r)) {
if (!$r[0]['total']) {
poco_load($contact['id'],$importer_uid,0,$contact['poco']);
}
}
}
/// @TODO Check why we don't poll the Diaspora feed at the moment (some guid problem in the items?)
@ -103,24 +108,24 @@ function onepoll_run(&$argv, &$argc){
$t = $contact['last-update'];
if($contact['subhub']) {
if ($contact['subhub']) {
$poll_interval = get_config('system','pushpoll_frequency');
$contact['priority'] = (($poll_interval !== false) ? intval($poll_interval) : 3);
$hub_update = false;
if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 day"))
$hub_update = true;
}
else
if (datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 day")) {
$hub_update = true;
}
} else {
$hub_update = false;
}
$importer_uid = $contact['uid'];
$r = q("SELECT `contact`.*, `user`.`page-flags` FROM `contact` INNER JOIN `user` on `contact`.`uid` = `user`.`uid` WHERE `user`.`uid` = %d AND `contact`.`self` = 1 LIMIT 1",
intval($importer_uid)
);
if (! dbm::is_result($r)) {
if (!dbm::is_result($r)) {
return;
}
@ -134,7 +139,7 @@ function onepoll_run(&$argv, &$argc){
);
// Update the contact entry
if(($contact['network'] === NETWORK_OSTATUS) || ($contact['network'] === NETWORK_DIASPORA) || ($contact['network'] === NETWORK_DFRN)) {
if (($contact['network'] === NETWORK_OSTATUS) || ($contact['network'] === NETWORK_DIASPORA) || ($contact['network'] === NETWORK_DFRN)) {
if (!poco_reachable($contact['url'])) {
logger("Skipping probably dead contact ".$contact['url']);
return;
@ -143,40 +148,50 @@ function onepoll_run(&$argv, &$argc){
if (!update_contact($contact["id"])) {
mark_for_death($contact);
return;
} else
} else {
unmark_for_death($contact);
}
}
if($contact['network'] === NETWORK_DFRN) {
if ($contact['network'] === NETWORK_DFRN) {
$idtosend = $orig_id = (($contact['dfrn-id']) ? $contact['dfrn-id'] : $contact['issued-id']);
if(intval($contact['duplex']) && $contact['dfrn-id'])
if (intval($contact['duplex']) && $contact['dfrn-id']) {
$idtosend = '0:' . $orig_id;
if(intval($contact['duplex']) && $contact['issued-id'])
}
if (intval($contact['duplex']) && $contact['issued-id']) {
$idtosend = '1:' . $orig_id;
}
// they have permission to write to us. We already filtered this in the contact query.
$perm = 'rw';
// But this may be our first communication, so set the writable flag if it isn't set already.
if(! intval($contact['writable']))
if (! intval($contact['writable'])) {
q("update contact set writable = 1 where id = %d", intval($contact['id']));
}
$url = $contact['poll'] . '?dfrn_id=' . $idtosend
. '&dfrn_version=' . DFRN_PROTOCOL_VERSION
. '&type=data&last_update=' . $last_update
. '&perm=' . $perm ;
$handshake_xml = fetch_url($url);
$ret = z_fetch_url($url);
if ($ret['errno'] == CURLE_OPERATION_TIMEDOUT) {
return;
}
$handshake_xml = $ret['body'];
$html_code = $a->get_curl_code();
logger('onepoll: handshake with url ' . $url . ' returns xml: ' . $handshake_xml, LOGGER_DATA);
if((! strlen($handshake_xml)) || ($html_code >= 400) || (! $html_code)) {
if ((! strlen($handshake_xml)) || ($html_code >= 400) || (! $html_code)) {
logger("poller: $url appears to be dead - marking for death ");
// dead connection - might be a transient event, or this might
@ -195,7 +210,7 @@ function onepoll_run(&$argv, &$argc){
return;
}
if(! strstr($handshake_xml,'<')) {
if (! strstr($handshake_xml,'<')) {
logger('poller: response from ' . $url . ' did not contain XML.');
mark_for_death($contact);
@ -211,7 +226,7 @@ function onepoll_run(&$argv, &$argc){
$res = parse_xml_string($handshake_xml);
if(intval($res->status) == 1) {
if (intval($res->status) == 1) {
logger("poller: $url replied status 1 - marking for death ");
// we may not be friends anymore. Will keep trying for one month.
@ -224,18 +239,16 @@ function onepoll_run(&$argv, &$argc){
intval($contact['id'])
);
mark_for_death($contact);
}
else {
if($contact['term-date'] != '0000-00-00 00:00:00') {
logger("poller: $url back from the dead - removing mark for death");
unmark_for_death($contact);
}
} elseif ($contact['term-date'] != '0000-00-00 00:00:00') {
logger("poller: $url back from the dead - removing mark for death");
unmark_for_death($contact);
}
if((intval($res->status) != 0) || (! strlen($res->challenge)) || (! strlen($res->dfrn_id)))
if ((intval($res->status) != 0) || (! strlen($res->challenge)) || (! strlen($res->dfrn_id))) {
return;
}
if(((float) $res->dfrn_version > 2.21) && ($contact['poco'] == '')) {
if (((float) $res->dfrn_version > 2.21) && ($contact['poco'] == '')) {
q("update contact set poco = '%s' where id = %d",
dbesc(str_replace('/profile/','/poco/', $contact['url'])),
intval($contact['id'])
@ -249,21 +262,21 @@ function onepoll_run(&$argv, &$argc){
$final_dfrn_id = '';
if(($contact['duplex']) && strlen($contact['prvkey'])) {
if (($contact['duplex']) && strlen($contact['prvkey'])) {
openssl_private_decrypt($sent_dfrn_id,$final_dfrn_id,$contact['prvkey']);
openssl_private_decrypt($challenge,$postvars['challenge'],$contact['prvkey']);
}
else {
} else {
openssl_public_decrypt($sent_dfrn_id,$final_dfrn_id,$contact['pubkey']);
openssl_public_decrypt($challenge,$postvars['challenge'],$contact['pubkey']);
}
$final_dfrn_id = substr($final_dfrn_id, 0, strpos($final_dfrn_id, '.'));
if(strpos($final_dfrn_id,':') == 1)
if (strpos($final_dfrn_id,':') == 1) {
$final_dfrn_id = substr($final_dfrn_id,2);
}
if($final_dfrn_id != $orig_id) {
if ($final_dfrn_id != $orig_id) {
logger('poller: ID did not decode: ' . $contact['id'] . ' orig: ' . $orig_id . ' final: ' . $final_dfrn_id);
// did not decode properly - cannot trust this site
return;
@ -275,10 +288,9 @@ function onepoll_run(&$argv, &$argc){
$xml = post_url($contact['poll'],$postvars);
}
elseif(($contact['network'] === NETWORK_OSTATUS)
} elseif (($contact['network'] === NETWORK_OSTATUS)
|| ($contact['network'] === NETWORK_DIASPORA)
|| ($contact['network'] === NETWORK_FEED) ) {
|| ($contact['network'] === NETWORK_FEED)) {
// Upgrading DB fields from an older Friendica version
// Will only do this once per notify-enabled OStatus contact
@ -287,10 +299,11 @@ function onepoll_run(&$argv, &$argc){
$stat_writeable = ((($contact['notify']) && ($contact['rel'] == CONTACT_IS_FOLLOWER || $contact['rel'] == CONTACT_IS_FRIEND)) ? 1 : 0);
// Contacts from OStatus are always writable
if($contact['network'] === NETWORK_OSTATUS)
if ($contact['network'] === NETWORK_OSTATUS) {
$stat_writeable = 1;
}
if($stat_writeable != $contact['writable']) {
if ($stat_writeable != $contact['writable']) {
q("UPDATE `contact` SET `writable` = %d WHERE `id` = %d",
intval($stat_writeable),
intval($contact['id'])
@ -299,19 +312,26 @@ function onepoll_run(&$argv, &$argc){
// Are we allowed to import from this person?
if($contact['rel'] == CONTACT_IS_FOLLOWER || $contact['blocked'] || $contact['readonly'])
if ($contact['rel'] == CONTACT_IS_FOLLOWER || $contact['blocked'] || $contact['readonly']) {
return;
}
$cookiejar = tempnam(get_temppath(), 'cookiejar-onepoll-');
$xml = fetch_url($contact['poll'], false, $redirects, 0, Null, $cookiejar);
$ret = z_fetch_url($contact['poll'], false, $redirects, array('cookiejar' => $cookiejar));
if ($ret['errno'] == CURLE_OPERATION_TIMEDOUT) {
return;
}
$xml = $ret['body'];
unlink($cookiejar);
}
elseif($contact['network'] === NETWORK_MAIL || $contact['network'] === NETWORK_MAIL2) {
} elseif ($contact['network'] === NETWORK_MAIL || $contact['network'] === NETWORK_MAIL2) {
logger("Mail: Fetching", LOGGER_DEBUG);
$mail_disabled = ((function_exists('imap_open') && (! get_config('system','imap_disabled'))) ? 0 : 1);
if($mail_disabled)
if ($mail_disabled)
return;
logger("Mail: Enabled", LOGGER_DEBUG);
@ -323,38 +343,38 @@ function onepoll_run(&$argv, &$argc){
$mailconf = q("SELECT * FROM `mailacct` WHERE `server` != '' AND `uid` = %d LIMIT 1",
intval($importer_uid)
);
if(count($x) && count($mailconf)) {
if (count($x) && count($mailconf)) {
$mailbox = construct_mailbox_name($mailconf[0]);
$password = '';
openssl_private_decrypt(hex2bin($mailconf[0]['pass']),$password,$x[0]['prvkey']);
$mbox = email_connect($mailbox,$mailconf[0]['user'],$password);
unset($password);
logger("Mail: Connect to " . $mailconf[0]['user']);
if($mbox) {
if ($mbox) {
q("UPDATE `mailacct` SET `last_check` = '%s' WHERE `id` = %d AND `uid` = %d",
dbesc(datetime_convert()),
intval($mailconf[0]['id']),
intval($importer_uid)
);
logger("Mail: Connected to " . $mailconf[0]['user']);
} else
} else {
logger("Mail: Connection error ".$mailconf[0]['user']." ".print_r(imap_errors(), true));
}
}
if($mbox) {
if ($mbox) {
$msgs = email_poll($mbox,$contact['addr']);
if(count($msgs)) {
if (count($msgs)) {
logger("Mail: Parsing ".count($msgs)." mails for ".$mailconf[0]['user'], LOGGER_DEBUG);
$metas = email_msg_meta($mbox,implode(',',$msgs));
if(count($metas) != count($msgs)) {
if (count($metas) != count($msgs)) {
logger("onepoll: for " . $mailconf[0]['user'] . " there are ". count($msgs) . " messages but received " . count($metas) . " metas", LOGGER_DEBUG);
}
else {
} else {
$msgs = array_combine($msgs, $metas);
foreach($msgs as $msg_uid => $meta) {
foreach ($msgs as $msg_uid => $meta) {
logger("Mail: Parsing mail ".$msg_uid, LOGGER_DATA);
$datarray = array();
@ -376,7 +396,7 @@ function onepoll_run(&$argv, &$argc){
// Only delete when mails aren't automatically moved or deleted
if (($mailconf[0]['action'] != 1) AND ($mailconf[0]['action'] != 3))
if($meta->deleted && ! $r[0]['deleted']) {
if ($meta->deleted && ! $r[0]['deleted']) {
q("UPDATE `item` SET `deleted` = 1, `changed` = '%s' WHERE `id` = %d",
dbesc(datetime_convert()),
intval($r[0]['id'])
@ -410,13 +430,13 @@ function onepoll_run(&$argv, &$argc){
// $raw_refs = ((x($headers,'references')) ? str_replace("\t",'',$headers['references']) : '');
$raw_refs = ((property_exists($meta,'references')) ? str_replace("\t",'',$meta->references) : '');
if(! trim($raw_refs))
if (! trim($raw_refs))
$raw_refs = ((property_exists($meta,'in_reply_to')) ? str_replace("\t",'',$meta->in_reply_to) : '');
$raw_refs = trim($raw_refs); // Don't allow a blank reference in $refs_arr
if($raw_refs) {
if ($raw_refs) {
$refs_arr = explode(' ', $raw_refs);
if(count($refs_arr)) {
if (count($refs_arr)) {
for($x = 0; $x < count($refs_arr); $x ++)
$refs_arr[$x] = "'" . msgid2iri(str_replace(array('<','>',' '),array('','',''),dbesc($refs_arr[$x]))) . "'";
}
@ -432,12 +452,13 @@ function onepoll_run(&$argv, &$argc){
// Decoding the header
$subject = imap_mime_header_decode($meta->subject);
$datarray['title'] = "";
foreach($subject as $subpart)
if ($subpart->charset != "default")
foreach ($subject as $subpart) {
if ($subpart->charset != "default") {
$datarray['title'] .= iconv($subpart->charset, 'UTF-8//IGNORE', $subpart->text);
else
} else {
$datarray['title'] .= $subpart->text;
}
}
$datarray['title'] = notags(trim($datarray['title']));
//$datarray['title'] = notags(trim($meta->subject));
@ -452,7 +473,7 @@ function onepoll_run(&$argv, &$argc){
$datarray['title'] = RemoveReply($datarray['title']);
// If it seems to be a reply but a header couldn't be found take the last message with matching subject
if(!x($datarray,'parent-uri') and $reply) {
if (!x($datarray,'parent-uri') and $reply) {
$r = q("SELECT `uri` , `parent-uri` FROM `item` WHERE `title` = \"%s\" AND `uid` = %d AND `network` = '%s' ORDER BY `created` DESC LIMIT 1",
dbesc(protect_sprintf($datarray['title'])),
intval($importer_uid),
@ -461,12 +482,12 @@ function onepoll_run(&$argv, &$argc){
$datarray['parent-uri'] = $r[0]['parent-uri'];
}
if(! x($datarray,'parent-uri'))
if (! x($datarray,'parent-uri'))
$datarray['parent-uri'] = $datarray['uri'];
$r = email_get_msg($mbox,$msg_uid, $reply);
if(! $r) {
if (! $r) {
logger("Mail: can't fetch msg ".$msg_uid." for ".$mailconf[0]['user']);
continue;
}
@ -478,23 +499,26 @@ function onepoll_run(&$argv, &$argc){
// some mailing lists have the original author as 'from' - add this sender info to msg body.
/// @TODO Adding a gravatar for the original author would be cool
if(! stristr($meta->from,$contact['addr'])) {
if (! stristr($meta->from,$contact['addr'])) {
$from = imap_mime_header_decode($meta->from);
$fromdecoded = "";
foreach($from as $frompart)
if ($frompart->charset != "default")
foreach ($from as $frompart) {
if ($frompart->charset != "default") {
$fromdecoded .= iconv($frompart->charset, 'UTF-8//IGNORE', $frompart->text);
else
} else {
$fromdecoded .= $frompart->text;
}
}
$fromarr = imap_rfc822_parse_adrlist($fromdecoded, $a->get_hostname());
$frommail = $fromarr[0]->mailbox."@".$fromarr[0]->host;
if (isset($fromarr[0]->personal))
if (isset($fromarr[0]->personal)) {
$fromname = $fromarr[0]->personal;
else
} else {
$fromname = $frommail;
}
//$datarray['body'] = "[b]".t('From: ') . escape_tags($fromdecoded) . "[/b]\n\n" . $datarray['body'];
@ -514,9 +538,9 @@ function onepoll_run(&$argv, &$argc){
$datarray['uid'] = $importer_uid;
$datarray['contact-id'] = $contact['id'];
if($datarray['parent-uri'] === $datarray['uri'])
if ($datarray['parent-uri'] === $datarray['uri'])
$datarray['private'] = 1;
if(($contact['network'] === NETWORK_MAIL) && (! get_pconfig($importer_uid,'system','allow_public_email_replies'))) {
if (($contact['network'] === NETWORK_MAIL) && (! get_pconfig($importer_uid,'system','allow_public_email_replies'))) {
$datarray['private'] = 1;
$datarray['allow_cid'] = '<' . $contact['id'] . '>';
}
@ -550,24 +574,24 @@ function onepoll_run(&$argv, &$argc){
}
}
}
} else
} else {
logger("Mail: no mails for ".$mailconf[0]['user']);
}
logger("Mail: closing connection for ".$mailconf[0]['user']);
imap_close($mbox);
}
}
elseif($contact['network'] === NETWORK_FACEBOOK) {
} elseif ($contact['network'] === NETWORK_FACEBOOK) {
// This is picked up by the Facebook plugin on a cron hook.
// Ignored here.
} elseif($contact['network'] === NETWORK_PUMPIO) {
} elseif ($contact['network'] === NETWORK_PUMPIO) {
// This is picked up by the pump.io plugin on a cron hook.
// Ignored here.
}
if($xml) {
if ($xml) {
logger('poller: received xml : ' . $xml, LOGGER_DATA);
if(! strstr($xml,'<')) {
if (! strstr($xml,'<')) {
logger('poller: post_handshake: response from ' . $url . ' did not contain XML.');
$r = q("UPDATE `contact` SET `last-update` = '%s', `failure_update` = '%s' WHERE `id` = %d",
dbesc(datetime_convert()),
@ -587,10 +611,10 @@ function onepoll_run(&$argv, &$argc){
consume_feed($xml,$importer,$contact,$hub,1,2);
$hubmode = 'subscribe';
if($contact['network'] === NETWORK_DFRN || $contact['blocked'] || $contact['readonly'])
if ($contact['network'] === NETWORK_DFRN || $contact['blocked'] || $contact['readonly'])
$hubmode = 'unsubscribe';
if(($contact['network'] === NETWORK_OSTATUS || $contact['network'] == NETWORK_FEED) && (! $contact['hub-verify']))
if (($contact['network'] === NETWORK_OSTATUS || $contact['network'] == NETWORK_FEED) && (! $contact['hub-verify']))
$hub_update = true;
if ($force)
@ -598,14 +622,15 @@ function onepoll_run(&$argv, &$argc){
logger("Contact ".$contact['id']." returned hub: ".$hub." Network: ".$contact['network']." Relation: ".$contact['rel']." Update: ".$hub_update);
if((strlen($hub)) && ($hub_update) && (($contact['rel'] != CONTACT_IS_FOLLOWER) || $contact['network'] == NETWORK_FEED) ) {
if ((strlen($hub)) && ($hub_update) && (($contact['rel'] != CONTACT_IS_FOLLOWER) || $contact['network'] == NETWORK_FEED) ) {
logger('poller: hub ' . $hubmode . ' : ' . $hub . ' contact name : ' . $contact['name'] . ' local user : ' . $importer['name']);
$hubs = explode(',', $hub);
if(count($hubs)) {
foreach($hubs as $h) {
if (count($hubs)) {
foreach ($hubs as $h) {
$h = trim($h);
if(! strlen($h))
if (! strlen($h)) {
continue;
}
subscribe_to_hub($h,$importer,$contact,$hubmode);
}
}

View file

@ -211,6 +211,16 @@ function poller_exec_function($queue, $funcname, $argv) {
$duration = number_format(microtime(true) - $stamp, 3);
if ($duration > 3600) {
logger("Prio ".$queue["priority"].": ".$queue["parameter"]." - longer than 1 hour (".round($duration/60, 3).")", LOGGER_DEBUG);
} elseif ($duration > 600) {
logger("Prio ".$queue["priority"].": ".$queue["parameter"]." - longer than 10 minutes (".round($duration/60, 3).")", LOGGER_DEBUG);
} elseif ($duration > 300) {
logger("Prio ".$queue["priority"].": ".$queue["parameter"]." - longer than 5 minutes (".round($duration/60, 3).")", LOGGER_DEBUG);
} elseif ($duration > 120) {
logger("Prio ".$queue["priority"].": ".$queue["parameter"]." - longer than 2 minutes (".round($duration/60, 3).")", LOGGER_DEBUG);
}
logger("Process ".$mypid." - Prio ".$queue["priority"]." - ID ".$queue["id"].": ".$funcname." - done in ".$duration." seconds.");
// Write down the performance values into the log

View file

@ -690,7 +690,7 @@ function poco_check_server($server_url, $network = "", $force = false) {
return false;
$servers = q("SELECT * FROM `gserver` WHERE `nurl` = '%s'", dbesc(normalise_link($server_url)));
if ($servers) {
if (dbm::is_result($servers)) {
if ($servers[0]["created"] == "0000-00-00 00:00:00")
q("UPDATE `gserver` SET `created` = '%s' WHERE `nurl` = '%s'",
@ -732,21 +732,40 @@ function poco_check_server($server_url, $network = "", $force = false) {
$orig_last_failure = $last_failure;
// Check if the page is accessible via SSL.
$orig_server_url = $server_url;
$server_url = str_replace("http://", "https://", $server_url);
$serverret = z_fetch_url($server_url."/.well-known/host-meta");
// We set the timeout to 20 seconds since this operation should be done in no time if the server was vital
$serverret = z_fetch_url($server_url."/.well-known/host-meta", false, $redirects, array('timeout' => 20));
// Quit if there is a timeout.
// But we want to make sure to only quit if we are mostly sure that this server url fits.
if (dbm::is_result($servers) AND ($orig_server_url == $server_url) AND
($serverret['errno'] == CURLE_OPERATION_TIMEDOUT)) {
logger("Connection to server ".$server_url." timed out.", LOGGER_DEBUG);
return false;
}
// Maybe the page is unencrypted only?
$xmlobj = @simplexml_load_string($serverret["body"],'SimpleXMLElement',0, "http://docs.oasis-open.org/ns/xri/xrd-1.0");
if (!$serverret["success"] OR ($serverret["body"] == "") OR (@sizeof($xmlobj) == 0) OR !is_object($xmlobj)) {
$server_url = str_replace("https://", "http://", $server_url);
$serverret = z_fetch_url($server_url."/.well-known/host-meta");
// We set the timeout to 20 seconds since this operation should be done in no time if the server was vital
$serverret = z_fetch_url($server_url."/.well-known/host-meta", false, $redirects, array('timeout' => 20));
// Quit if there is a timeout
if ($serverret['errno'] == CURLE_OPERATION_TIMEDOUT) {
logger("Connection to server ".$server_url." timed out.", LOGGER_DEBUG);
return false;
}
$xmlobj = @simplexml_load_string($serverret["body"],'SimpleXMLElement',0, "http://docs.oasis-open.org/ns/xri/xrd-1.0");
}
if (!$serverret["success"] OR ($serverret["body"] == "") OR (sizeof($xmlobj) == 0) OR !is_object($xmlobj)) {
// Workaround for bad configured servers (known nginx problem)
if ($serverret["debug"]["http_code"] != "403") {
if (!in_array($serverret["debug"]["http_code"], array("403", "404"))) {
$last_failure = datetime_convert();
$failure = true;
}

View file

@ -228,9 +228,10 @@ function nodeinfo_cron() {
logger("local_posts: ".$local_posts, LOGGER_DEBUG);
$posts = qu("SELECT COUNT(*) AS `local_comments` FROM `item`
INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
WHERE `contact`.`self` and `item`.`id` != `item`.`parent` AND `item`.`network` IN ('%s', '%s', '%s')",
$posts = qu("SELECT COUNT(*) FROM `contact`
INNER JOIN `item` ON `item`.`contact-id` = `contact`.`id` AND `item`.`uid` = `contact`.`uid` AND
`item`.`id` != `item`.`parent` AND `item`.`network` IN ('%s', '%s', '%s')
WHERE `contact`.`self`",
dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DIASPORA), dbesc(NETWORK_DFRN));
if (!is_array($posts))

View file

@ -194,10 +194,14 @@ function notifications_content(App $a) {
if($it['network'] === NETWORK_DFRN) {
$lbl_knowyou = t('Claims to be known to you: ');
$knowyou = (($it['knowyou']) ? t('yes') : t('no'));
$helptext = t('Shall your connection be bidirectional or not? "Friend" implies that you allow to read and you subscribe to their posts. "Fan/Admirer" means that you allow to read but you do not want to read theirs. Approve as: ');
$helptext = t('Shall your connection be bidirectional or not?');
$helptext2 = sprintf(t('Accepting %s as a friend allows %s to subscribe to your posts, and you will also receive updates from them in your news feed.'), $it['name'], $it['name']);
$helptext3 = sprintf(t('Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed.'), $it['name']);
} else {
$knowyou = '';
$helptext = t('Shall your connection be bidirectional or not? "Friend" implies that you allow to read and you subscribe to their posts. "Sharer" means that you allow to read but you do not want to read theirs. Approve as: ');
$helptext = t('Shall your connection be bidirectional or not?');
$helptext2 = sprintf(t('Accepting %s as a friend allows %s to subscribe to your posts, and you will also receive updates from them in your news feed.'), $it['name'], $it['name']);
$helptext3 = sprintf(t('Accepting %s as a sharer allows them to subscribe to your posts, but you will not receive updates from them in your news feed.'), $it['name']);
}
}
@ -205,9 +209,11 @@ function notifications_content(App $a) {
'$intro_id' => $it['intro_id'],
'$friend_selected' => $friend_selected,
'$fan_selected' => $fan_selected,
'$approve_as' => $helptext,
'$approve_as1' => $helptext,
'$approve_as2' => $helptext2,
'$approve_as3' => $helptext3,
'$as_friend' => t('Friend'),
'$as_fan' => (($it['network'] == NETWORK_DIASPORA) ? t('Sharer') : t('Fan/Admirer'))
'$as_fan' => (($it['network'] == NETWORK_DIASPORA) ? t('Sharer') : t('Subscriber'))
));
$header = $it["name"];

View file

@ -240,6 +240,17 @@ function profile_content(App $a, $update = 0) {
$sql_extra2 .= protect_sprintf(sprintf(" AND `thread`.`created` >= '%s' ", dbesc(datetime_convert(date_default_timezone_get(),'',$datequery2))));
}
// Belongs the profile page to a forum?
// If not then we can improve the performance with an additional condition
$r = q("SELECT `uid` FROM `user` WHERE `uid` = %d AND `page-flags` IN (%d, %d)",
intval($a->profile['profile_uid']),
intval(PAGE_COMMUNITY),
intval(PAGE_PRVGROUP));
if (!dbm::is_result($r)) {
$sql_extra3 = sprintf(" AND `thread`.`contact-id` = %d ", intval(intval($a->profile['contact_id'])));
}
if(get_config('system', 'old_pager')) {
$r = q("SELECT COUNT(*) AS `total`
FROM `thread` INNER JOIN `item` ON `item`.`id` = `thread`.`iid`
@ -248,7 +259,7 @@ function profile_content(App $a, $update = 0) {
WHERE `thread`.`uid` = %d AND `thread`.`visible` = 1 AND `thread`.`deleted` = 0
and `thread`.`moderated` = 0
AND `thread`.`wall` = 1
$sql_extra $sql_extra2 ",
$sql_extra3 $sql_extra $sql_extra2 ",
intval($a->profile['profile_uid'])
);
@ -282,14 +293,12 @@ function profile_content(App $a, $update = 0) {
STRAIGHT_JOIN `contact` ON `contact`.`id` = `thread`.`contact-id`
AND NOT `contact`.`blocked` AND NOT `contact`.`pending`
WHERE `thread`.`uid` = %d AND `thread`.`visible`
AND `thread`.`contact-id` = %d
AND NOT `thread`.`deleted`
AND NOT `thread`.`moderated`
AND `thread`.`wall`
$sql_extra $sql_extra2
$sql_extra3 $sql_extra $sql_extra2
ORDER BY `thread`.`created` DESC $pager_sql",
intval($a->profile['profile_uid']),
intval($a->profile['contact_id'])
intval($a->profile['profile_uid'])
);
}

View file

@ -1,6 +1,6 @@
<?php
define('UPDATE_VERSION' , 1214);
define('UPDATE_VERSION' , 1215);
/**
*

View file

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-12-19 07:46+0100\n"
"POT-Creation-Date: 2017-03-03 10:29+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -18,112 +18,6 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
#: include/contact_widgets.php:6
msgid "Add New Contact"
msgstr ""
#: include/contact_widgets.php:7
msgid "Enter address or web location"
msgstr ""
#: include/contact_widgets.php:8
msgid "Example: bob@example.com, http://example.com/barbara"
msgstr ""
#: include/contact_widgets.php:10 include/identity.php:218
#: mod/allfriends.php:82 mod/dirfind.php:201 mod/match.php:87
#: mod/suggest.php:101
msgid "Connect"
msgstr ""
#: include/contact_widgets.php:24
#, php-format
msgid "%d invitation available"
msgid_plural "%d invitations available"
msgstr[0] ""
msgstr[1] ""
#: include/contact_widgets.php:30
msgid "Find People"
msgstr ""
#: include/contact_widgets.php:31
msgid "Enter name or interest"
msgstr ""
#: include/contact_widgets.php:32 include/Contact.php:354
#: include/conversation.php:981 mod/allfriends.php:66 mod/dirfind.php:204
#: mod/match.php:72 mod/suggest.php:83 mod/contacts.php:602 mod/follow.php:103
msgid "Connect/Follow"
msgstr ""
#: include/contact_widgets.php:33
msgid "Examples: Robert Morgenstein, Fishing"
msgstr ""
#: include/contact_widgets.php:34 mod/directory.php:204 mod/contacts.php:798
msgid "Find"
msgstr ""
#: include/contact_widgets.php:35 mod/suggest.php:114
#: view/theme/vier/theme.php:203
msgid "Friend Suggestions"
msgstr ""
#: include/contact_widgets.php:36 view/theme/vier/theme.php:202
msgid "Similar Interests"
msgstr ""
#: include/contact_widgets.php:37
msgid "Random Profile"
msgstr ""
#: include/contact_widgets.php:38 view/theme/vier/theme.php:204
msgid "Invite Friends"
msgstr ""
#: include/contact_widgets.php:108
msgid "Networks"
msgstr ""
#: include/contact_widgets.php:111
msgid "All Networks"
msgstr ""
#: include/contact_widgets.php:141 include/features.php:110
msgid "Saved Folders"
msgstr ""
#: include/contact_widgets.php:144 include/contact_widgets.php:176
msgid "Everything"
msgstr ""
#: include/contact_widgets.php:173
msgid "Categories"
msgstr ""
#: include/contact_widgets.php:237
#, php-format
msgid "%d contact in common"
msgid_plural "%d contacts in common"
msgstr[0] ""
msgstr[1] ""
#: include/contact_widgets.php:242 include/ForumManager.php:119
#: include/items.php:2245 mod/content.php:624 object/Item.php:432
#: view/theme/vier/theme.php:260 boot.php:972
msgid "show more"
msgstr ""
#: include/ForumManager.php:114 include/nav.php:131 include/text.php:1025
#: view/theme/vier/theme.php:255
msgid "Forums"
msgstr ""
#: include/ForumManager.php:116 view/theme/vier/theme.php:257
msgid "External link to forum"
msgstr ""
#: include/profile_selectors.php:6
msgid "Male"
msgstr ""
@ -176,7 +70,7 @@ msgstr ""
msgid "Other"
msgstr ""
#: include/profile_selectors.php:6 include/conversation.php:1487
#: include/profile_selectors.php:6 include/conversation.php:1478
msgid "Undecided"
msgid_plural "Undecided"
msgstr[0] ""
@ -358,432 +252,148 @@ msgstr ""
msgid "Ask me"
msgstr ""
#: include/dba_pdo.php:72 include/dba.php:56
#: include/ForumManager.php:114 include/nav.php:131 include/text.php:1027
#: view/theme/vier/theme.php:250
msgid "Forums"
msgstr ""
#: include/ForumManager.php:116 view/theme/vier/theme.php:252
msgid "External link to forum"
msgstr ""
#: include/ForumManager.php:119 include/contact_widgets.php:253
#: include/items.php:2254 mod/content.php:624 object/Item.php:447
#: view/theme/vier/theme.php:255 boot.php:971
msgid "show more"
msgstr ""
#: include/NotificationsManager.php:153
msgid "System"
msgstr ""
#: include/NotificationsManager.php:160 include/nav.php:158 mod/admin.php:412
#: view/theme/frio/theme.php:253
msgid "Network"
msgstr ""
#: include/NotificationsManager.php:167 mod/profiles.php:695
#: mod/network.php:846
msgid "Personal"
msgstr ""
#: include/NotificationsManager.php:174 include/nav.php:105
#: include/nav.php:161
msgid "Home"
msgstr ""
#: include/NotificationsManager.php:181 include/nav.php:166
msgid "Introductions"
msgstr ""
#: include/NotificationsManager.php:239 include/NotificationsManager.php:251
#, php-format
msgid "Cannot locate DNS info for database server '%s'"
msgid "%s commented on %s's post"
msgstr ""
#: include/NotificationsManager.php:250
#, php-format
msgid "%s created a new post"
msgstr ""
#: include/NotificationsManager.php:265
#, php-format
msgid "%s liked %s's post"
msgstr ""
#: include/NotificationsManager.php:278
#, php-format
msgid "%s disliked %s's post"
msgstr ""
#: include/NotificationsManager.php:291
#, php-format
msgid "%s is attending %s's event"
msgstr ""
#: include/NotificationsManager.php:304
#, php-format
msgid "%s is not attending %s's event"
msgstr ""
#: include/NotificationsManager.php:317
#, php-format
msgid "%s may attend %s's event"
msgstr ""
#: include/NotificationsManager.php:334
#, php-format
msgid "%s is now friends with %s"
msgstr ""
#: include/NotificationsManager.php:770
msgid "Friend Suggestion"
msgstr ""
#: include/NotificationsManager.php:803
msgid "Friend/Connect Request"
msgstr ""
#: include/NotificationsManager.php:803
msgid "New Follower"
msgstr ""
#: include/Photo.php:1038 include/Photo.php:1054 include/Photo.php:1062
#: include/Photo.php:1087 include/message.php:146 mod/item.php:462
#: mod/wall_upload.php:216 mod/wall_upload.php:230 mod/wall_upload.php:237
msgid "Wall Photos"
msgstr ""
#: include/auth.php:45
msgid "Logged out."
msgstr ""
#: include/auth.php:116 include/auth.php:178 mod/openid.php:100
#: include/auth.php:116 include/auth.php:177 mod/openid.php:110
msgid "Login failed."
msgstr ""
#: include/auth.php:132 include/user.php:75
#: include/auth.php:131 include/user.php:75
msgid ""
"We encountered a problem while logging in with the OpenID you provided. "
"Please check the correct spelling of the ID."
msgstr ""
#: include/auth.php:132 include/user.php:75
#: include/auth.php:131 include/user.php:75
msgid "The error message was:"
msgstr ""
#: include/group.php:25
msgid ""
"A deleted group with this name was revived. Existing item permissions "
"<strong>may</strong> apply to this group and any future members. If this is "
"not what you intended, please create another group with a different name."
#: include/bbcode.php:350 include/bbcode.php:1055 include/bbcode.php:1056
msgid "Image/photo"
msgstr ""
#: include/group.php:209
msgid "Default privacy group for new contacts"
msgstr ""
#: include/group.php:242
msgid "Everybody"
msgstr ""
#: include/group.php:265
msgid "edit"
msgstr ""
#: include/group.php:286 mod/newmember.php:61
msgid "Groups"
msgstr ""
#: include/group.php:288
msgid "Edit groups"
msgstr ""
#: include/group.php:290
msgid "Edit group"
msgstr ""
#: include/group.php:291
msgid "Create a new group"
msgstr ""
#: include/group.php:292 mod/group.php:94 mod/group.php:178
msgid "Group Name: "
msgstr ""
#: include/group.php:294
msgid "Contacts not in any group"
msgstr ""
#: include/group.php:296 mod/network.php:201
msgid "add"
msgstr ""
#: include/contact_selectors.php:32
msgid "Unknown | Not categorised"
msgstr ""
#: include/contact_selectors.php:33
msgid "Block immediately"
msgstr ""
#: include/contact_selectors.php:34
msgid "Shady, spammer, self-marketer"
msgstr ""
#: include/contact_selectors.php:35
msgid "Known to me, but no opinion"
msgstr ""
#: include/contact_selectors.php:36
msgid "OK, probably harmless"
msgstr ""
#: include/contact_selectors.php:37
msgid "Reputable, has my trust"
msgstr ""
#: include/contact_selectors.php:56 mod/admin.php:890
msgid "Frequently"
msgstr ""
#: include/contact_selectors.php:57 mod/admin.php:891
msgid "Hourly"
msgstr ""
#: include/contact_selectors.php:58 mod/admin.php:892
msgid "Twice daily"
msgstr ""
#: include/contact_selectors.php:59 mod/admin.php:893
msgid "Daily"
msgstr ""
#: include/contact_selectors.php:60
msgid "Weekly"
msgstr ""
#: include/contact_selectors.php:61
msgid "Monthly"
msgstr ""
#: include/contact_selectors.php:76 mod/dfrn_request.php:868
msgid "Friendica"
msgstr ""
#: include/contact_selectors.php:77
msgid "OStatus"
msgstr ""
#: include/contact_selectors.php:78
msgid "RSS/Atom"
msgstr ""
#: include/contact_selectors.php:79 include/contact_selectors.php:86
#: mod/admin.php:1396 mod/admin.php:1409 mod/admin.php:1422 mod/admin.php:1440
msgid "Email"
msgstr ""
#: include/contact_selectors.php:80 mod/settings.php:842
#: mod/dfrn_request.php:870
msgid "Diaspora"
msgstr ""
#: include/contact_selectors.php:81
msgid "Facebook"
msgstr ""
#: include/contact_selectors.php:82
msgid "Zot!"
msgstr ""
#: include/contact_selectors.php:83
msgid "LinkedIn"
msgstr ""
#: include/contact_selectors.php:84
msgid "XMPP/IM"
msgstr ""
#: include/contact_selectors.php:85
msgid "MySpace"
msgstr ""
#: include/contact_selectors.php:87
msgid "Google+"
msgstr ""
#: include/contact_selectors.php:88
msgid "pump.io"
msgstr ""
#: include/contact_selectors.php:89
msgid "Twitter"
msgstr ""
#: include/contact_selectors.php:90
msgid "Diaspora Connector"
msgstr ""
#: include/contact_selectors.php:91
msgid "GNU Social"
msgstr ""
#: include/contact_selectors.php:92
msgid "App.net"
msgstr ""
#: include/contact_selectors.php:103
msgid "Hubzilla/Redmatrix"
msgstr ""
#: include/acl_selectors.php:327
msgid "Post to Email"
msgstr ""
#: include/acl_selectors.php:332
#: include/bbcode.php:467
#, php-format
msgid "Connectors disabled, since \"%s\" is enabled."
msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
msgstr ""
#: include/acl_selectors.php:333 mod/settings.php:1181
msgid "Hide your profile details from unknown viewers?"
#: include/bbcode.php:1015 include/bbcode.php:1035
msgid "$1 wrote:"
msgstr ""
#: include/acl_selectors.php:338
msgid "Visible to everybody"
#: include/bbcode.php:1064 include/bbcode.php:1065
msgid "Encrypted content"
msgstr ""
#: include/acl_selectors.php:339 view/theme/vier/config.php:103
msgid "show"
#: include/bbcode.php:1167
msgid "Invalid source protocol"
msgstr ""
#: include/acl_selectors.php:340 view/theme/vier/config.php:103
msgid "don't show"
#: include/bbcode.php:1177
msgid "Invalid link protocol"
msgstr ""
#: include/acl_selectors.php:346 mod/editpost.php:133
msgid "CC: email addresses"
msgstr ""
#: include/acl_selectors.php:347 mod/editpost.php:140
msgid "Example: bob@example.com, mary@example.com"
msgstr ""
#: include/acl_selectors.php:349 mod/events.php:509 mod/photos.php:1156
#: mod/photos.php:1535
msgid "Permissions"
msgstr ""
#: include/acl_selectors.php:350
msgid "Close"
msgstr ""
#: include/like.php:163 include/conversation.php:130
#: include/conversation.php:266 include/text.php:1804 mod/subthread.php:87
#: mod/tagger.php:62
msgid "photo"
msgstr ""
#: include/like.php:163 include/diaspora.php:1406 include/conversation.php:125
#: include/conversation.php:134 include/conversation.php:261
#: include/conversation.php:270 mod/subthread.php:87 mod/tagger.php:62
msgid "status"
msgstr ""
#: include/like.php:165 include/conversation.php:122
#: include/conversation.php:258 include/text.php:1802
msgid "event"
msgstr ""
#: include/like.php:182 include/diaspora.php:1402 include/conversation.php:141
#: include/dba_pdo.php:72 include/dba.php:56
#, php-format
msgid "%1$s likes %2$s's %3$s"
msgstr ""
#: include/like.php:184 include/conversation.php:144
#, php-format
msgid "%1$s doesn't like %2$s's %3$s"
msgstr ""
#: include/like.php:186
#, php-format
msgid "%1$s is attending %2$s's %3$s"
msgstr ""
#: include/like.php:188
#, php-format
msgid "%1$s is not attending %2$s's %3$s"
msgstr ""
#: include/like.php:190
#, php-format
msgid "%1$s may attend %2$s's %3$s"
msgstr ""
#: include/message.php:15 include/message.php:173
msgid "[no subject]"
msgstr ""
#: include/message.php:145 include/Photo.php:1040 include/Photo.php:1056
#: include/Photo.php:1064 include/Photo.php:1089 mod/wall_upload.php:218
#: mod/wall_upload.php:232 mod/wall_upload.php:239 mod/item.php:478
msgid "Wall Photos"
msgstr ""
#: include/plugin.php:526 include/plugin.php:528
msgid "Click here to upgrade."
msgstr ""
#: include/plugin.php:534
msgid "This action exceeds the limits set by your subscription plan."
msgstr ""
#: include/plugin.php:539
msgid "This action is not available under your subscription plan."
msgstr ""
#: include/uimport.php:94
msgid "Error decoding account file"
msgstr ""
#: include/uimport.php:100
msgid "Error! No version data in file! This is not a Friendica account file?"
msgstr ""
#: include/uimport.php:116 include/uimport.php:127
msgid "Error! Cannot check nickname"
msgstr ""
#: include/uimport.php:120 include/uimport.php:131
#, php-format
msgid "User '%s' already exists on this server!"
msgstr ""
#: include/uimport.php:153
msgid "User creation error"
msgstr ""
#: include/uimport.php:173
msgid "User profile creation error"
msgstr ""
#: include/uimport.php:222
#, php-format
msgid "%d contact not imported"
msgid_plural "%d contacts not imported"
msgstr[0] ""
msgstr[1] ""
#: include/uimport.php:292
msgid "Done. You can now login with your username and password"
msgstr ""
#: include/datetime.php:57 include/datetime.php:59 mod/profiles.php:705
msgid "Miscellaneous"
msgstr ""
#: include/datetime.php:183 include/identity.php:629
msgid "Birthday:"
msgstr ""
#: include/datetime.php:185 mod/profiles.php:728
msgid "Age: "
msgstr ""
#: include/datetime.php:187
msgid "YYYY-MM-DD or MM-DD"
msgstr ""
#: include/datetime.php:341
msgid "never"
msgstr ""
#: include/datetime.php:347
msgid "less than a second ago"
msgstr ""
#: include/datetime.php:350
msgid "year"
msgstr ""
#: include/datetime.php:350
msgid "years"
msgstr ""
#: include/datetime.php:351 include/event.php:480 mod/cal.php:284
#: mod/events.php:389
msgid "month"
msgstr ""
#: include/datetime.php:351
msgid "months"
msgstr ""
#: include/datetime.php:352 include/event.php:481 mod/cal.php:285
#: mod/events.php:390
msgid "week"
msgstr ""
#: include/datetime.php:352
msgid "weeks"
msgstr ""
#: include/datetime.php:353 include/event.php:482 mod/cal.php:286
#: mod/events.php:391
msgid "day"
msgstr ""
#: include/datetime.php:353
msgid "days"
msgstr ""
#: include/datetime.php:354
msgid "hour"
msgstr ""
#: include/datetime.php:354
msgid "hours"
msgstr ""
#: include/datetime.php:355
msgid "minute"
msgstr ""
#: include/datetime.php:355
msgid "minutes"
msgstr ""
#: include/datetime.php:356
msgid "second"
msgstr ""
#: include/datetime.php:356
msgid "seconds"
msgstr ""
#: include/datetime.php:365
#, php-format
msgid "%1$d %2$s ago"
msgstr ""
#: include/datetime.php:572
#, php-format
msgid "%s's birthday"
msgstr ""
#: include/datetime.php:573 include/dfrn.php:1109
#, php-format
msgid "Happy Birthday %s"
msgid "Cannot locate DNS info for database server '%s'"
msgstr ""
#: include/enotify.php:24
@ -804,7 +414,7 @@ msgstr ""
msgid "%1$s, %2$s Administrator"
msgstr ""
#: include/enotify.php:43 include/delivery.php:457
#: include/enotify.php:43 include/delivery.php:482
msgid "noreply"
msgstr ""
@ -1082,209 +692,153 @@ msgstr ""
msgid "Please visit %s to approve or reject the request."
msgstr ""
#: include/event.php:16 include/bb2diaspora.php:152 mod/localtime.php:12
msgid "l F d, Y \\@ g:i A"
#: include/follow.php:81 mod/dfrn_request.php:512
msgid "Disallowed profile URL."
msgstr ""
#: include/event.php:33 include/event.php:51 include/event.php:487
#: include/bb2diaspora.php:158
msgid "Starts:"
#: include/follow.php:86
msgid "Connect URL missing."
msgstr ""
#: include/event.php:36 include/event.php:57 include/event.php:488
#: include/bb2diaspora.php:166
msgid "Finishes:"
#: include/follow.php:114
msgid ""
"This site is not configured to allow communications with other networks."
msgstr ""
#: include/event.php:39 include/event.php:63 include/event.php:489
#: include/bb2diaspora.php:174 include/identity.php:328
#: mod/notifications.php:232 mod/directory.php:137 mod/events.php:494
#: mod/contacts.php:628
msgid "Location:"
#: include/follow.php:115 include/follow.php:129
msgid "No compatible communication protocols or feeds were discovered."
msgstr ""
#: include/event.php:441
msgid "Sun"
#: include/follow.php:127
msgid "The profile address specified does not provide adequate information."
msgstr ""
#: include/event.php:442
msgid "Mon"
#: include/follow.php:132
msgid "An author or name was not found."
msgstr ""
#: include/event.php:443
msgid "Tue"
#: include/follow.php:135
msgid "No browser URL could be matched to this address."
msgstr ""
#: include/event.php:444
msgid "Wed"
#: include/follow.php:138
msgid ""
"Unable to match @-style Identity Address with a known protocol or email "
"contact."
msgstr ""
#: include/event.php:445
msgid "Thu"
#: include/follow.php:139
msgid "Use mailto: in front of address to force email check."
msgstr ""
#: include/event.php:446
msgid "Fri"
#: include/follow.php:145
msgid ""
"The profile address specified belongs to a network which has been disabled "
"on this site."
msgstr ""
#: include/event.php:447
msgid "Sat"
#: include/follow.php:150
msgid ""
"Limited profile. This person will be unable to receive direct/personal "
"notifications from you."
msgstr ""
#: include/event.php:448 include/text.php:1130 mod/settings.php:972
msgid "Sunday"
#: include/follow.php:251
msgid "Unable to retrieve contact information."
msgstr ""
#: include/event.php:449 include/text.php:1130 mod/settings.php:972
msgid "Monday"
#: include/group.php:25
msgid ""
"A deleted group with this name was revived. Existing item permissions "
"<strong>may</strong> apply to this group and any future members. If this is "
"not what you intended, please create another group with a different name."
msgstr ""
#: include/event.php:450 include/text.php:1130
msgid "Tuesday"
#: include/group.php:210
msgid "Default privacy group for new contacts"
msgstr ""
#: include/event.php:451 include/text.php:1130
msgid "Wednesday"
#: include/group.php:243
msgid "Everybody"
msgstr ""
#: include/event.php:452 include/text.php:1130
msgid "Thursday"
#: include/group.php:266
msgid "edit"
msgstr ""
#: include/event.php:453 include/text.php:1130
msgid "Friday"
#: include/group.php:287 mod/newmember.php:61
msgid "Groups"
msgstr ""
#: include/event.php:454 include/text.php:1130
msgid "Saturday"
#: include/group.php:289
msgid "Edit groups"
msgstr ""
#: include/event.php:455
msgid "Jan"
#: include/group.php:291
msgid "Edit group"
msgstr ""
#: include/event.php:456
msgid "Feb"
#: include/group.php:292
msgid "Create a new group"
msgstr ""
#: include/event.php:457
msgid "Mar"
#: include/group.php:293 mod/group.php:98 mod/group.php:188
msgid "Group Name: "
msgstr ""
#: include/event.php:458
msgid "Apr"
#: include/group.php:295
msgid "Contacts not in any group"
msgstr ""
#: include/event.php:459 include/event.php:471 include/text.php:1134
msgid "May"
#: include/group.php:297 mod/network.php:200
msgid "add"
msgstr ""
#: include/event.php:460
msgid "Jun"
#: include/like.php:164 include/conversation.php:130
#: include/conversation.php:266 include/text.php:1806 mod/subthread.php:88
#: mod/tagger.php:62
msgid "photo"
msgstr ""
#: include/event.php:461
msgid "Jul"
#: include/like.php:164 include/conversation.php:125
#: include/conversation.php:134 include/conversation.php:261
#: include/conversation.php:270 include/diaspora.php:1530 mod/subthread.php:88
#: mod/tagger.php:62
msgid "status"
msgstr ""
#: include/event.php:462
msgid "Aug"
#: include/like.php:166 include/conversation.php:122
#: include/conversation.php:258 include/text.php:1804
msgid "event"
msgstr ""
#: include/event.php:463
msgid "Sept"
#: include/like.php:184 include/conversation.php:141 include/diaspora.php:1526
#, php-format
msgid "%1$s likes %2$s's %3$s"
msgstr ""
#: include/event.php:464
msgid "Oct"
#: include/like.php:187 include/conversation.php:144
#, php-format
msgid "%1$s doesn't like %2$s's %3$s"
msgstr ""
#: include/event.php:465
msgid "Nov"
#: include/like.php:190
#, php-format
msgid "%1$s is attending %2$s's %3$s"
msgstr ""
#: include/event.php:466
msgid "Dec"
#: include/like.php:193
#, php-format
msgid "%1$s is not attending %2$s's %3$s"
msgstr ""
#: include/event.php:467 include/text.php:1134
msgid "January"
#: include/like.php:196
#, php-format
msgid "%1$s may attend %2$s's %3$s"
msgstr ""
#: include/event.php:468 include/text.php:1134
msgid "February"
msgstr ""
#: include/event.php:469 include/text.php:1134
msgid "March"
msgstr ""
#: include/event.php:470 include/text.php:1134
msgid "April"
msgstr ""
#: include/event.php:472 include/text.php:1134
msgid "June"
msgstr ""
#: include/event.php:473 include/text.php:1134
msgid "July"
msgstr ""
#: include/event.php:474 include/text.php:1134
msgid "August"
msgstr ""
#: include/event.php:475 include/text.php:1134
msgid "September"
msgstr ""
#: include/event.php:476 include/text.php:1134
msgid "October"
msgstr ""
#: include/event.php:477 include/text.php:1134
msgid "November"
msgstr ""
#: include/event.php:478 include/text.php:1134
msgid "December"
msgstr ""
#: include/event.php:479 mod/cal.php:283 mod/events.php:388
msgid "today"
msgstr ""
#: include/event.php:483
msgid "all-day"
msgstr ""
#: include/event.php:485
msgid "No events to display"
msgstr ""
#: include/event.php:574
msgid "l, F j"
msgstr ""
#: include/event.php:593
msgid "Edit event"
msgstr ""
#: include/event.php:615 include/text.php:1532 include/text.php:1539
msgid "link to source"
msgstr ""
#: include/event.php:850
msgid "Export"
msgstr ""
#: include/event.php:851
msgid "Export calendar as ical"
msgstr ""
#: include/event.php:852
msgid "Export calendar as csv"
#: include/message.php:15 include/message.php:169
msgid "[no subject]"
msgstr ""
#: include/nav.php:35 mod/navigation.php:19
@ -1295,62 +849,62 @@ msgstr ""
msgid "Clear notifications"
msgstr ""
#: include/nav.php:40 include/text.php:1015
#: include/nav.php:40 include/text.php:1017
msgid "@name, !forum, #tags, content"
msgstr ""
#: include/nav.php:78 view/theme/frio/theme.php:246 boot.php:1792
#: include/nav.php:78 view/theme/frio/theme.php:243 boot.php:1833
msgid "Logout"
msgstr ""
#: include/nav.php:78 view/theme/frio/theme.php:246
#: include/nav.php:78 view/theme/frio/theme.php:243
msgid "End this session"
msgstr ""
#: include/nav.php:81 include/identity.php:714 mod/contacts.php:637
#: mod/contacts.php:833 view/theme/frio/theme.php:249
#: include/nav.php:81 include/identity.php:766 mod/contacts.php:645
#: mod/contacts.php:841 view/theme/frio/theme.php:246
msgid "Status"
msgstr ""
#: include/nav.php:81 include/nav.php:161 view/theme/frio/theme.php:249
#: include/nav.php:81 include/nav.php:161 view/theme/frio/theme.php:246
msgid "Your posts and conversations"
msgstr ""
#: include/nav.php:82 include/identity.php:605 include/identity.php:691
#: include/identity.php:722 mod/profperm.php:104 mod/newmember.php:32
#: mod/contacts.php:639 mod/contacts.php:841 view/theme/frio/theme.php:250
#: include/nav.php:82 include/identity.php:617 include/identity.php:741
#: include/identity.php:774 mod/newmember.php:32 mod/profperm.php:105
#: mod/contacts.php:647 mod/contacts.php:849 view/theme/frio/theme.php:247
msgid "Profile"
msgstr ""
#: include/nav.php:82 view/theme/frio/theme.php:250
#: include/nav.php:82 view/theme/frio/theme.php:247
msgid "Your profile page"
msgstr ""
#: include/nav.php:83 include/identity.php:730 mod/fbrowser.php:32
#: view/theme/frio/theme.php:251
#: include/nav.php:83 include/identity.php:782 mod/fbrowser.php:31
#: view/theme/frio/theme.php:248
msgid "Photos"
msgstr ""
#: include/nav.php:83 view/theme/frio/theme.php:251
#: include/nav.php:83 view/theme/frio/theme.php:248
msgid "Your photos"
msgstr ""
#: include/nav.php:84 include/identity.php:738 include/identity.php:741
#: view/theme/frio/theme.php:252
#: include/nav.php:84 include/identity.php:790 include/identity.php:793
#: view/theme/frio/theme.php:249
msgid "Videos"
msgstr ""
#: include/nav.php:84 view/theme/frio/theme.php:252
#: include/nav.php:84 view/theme/frio/theme.php:249
msgid "Your videos"
msgstr ""
#: include/nav.php:85 include/nav.php:149 include/identity.php:750
#: include/identity.php:761 mod/cal.php:275 mod/events.php:379
#: view/theme/frio/theme.php:253 view/theme/frio/theme.php:257
#: include/nav.php:85 include/nav.php:149 include/identity.php:802
#: include/identity.php:813 mod/cal.php:270 mod/events.php:386
#: view/theme/frio/theme.php:250 view/theme/frio/theme.php:254
msgid "Events"
msgstr ""
#: include/nav.php:85 view/theme/frio/theme.php:253
#: include/nav.php:85 view/theme/frio/theme.php:250
msgid "Your events"
msgstr ""
@ -1362,7 +916,7 @@ msgstr ""
msgid "Your personal notes"
msgstr ""
#: include/nav.php:95 mod/bookmarklet.php:12 boot.php:1793
#: include/nav.php:95 mod/bookmarklet.php:12 boot.php:1834
msgid "Login"
msgstr ""
@ -1370,16 +924,11 @@ msgstr ""
msgid "Sign in"
msgstr ""
#: include/nav.php:105 include/nav.php:161
#: include/NotificationsManager.php:174
msgid "Home"
msgstr ""
#: include/nav.php:105
msgid "Home Page"
msgstr ""
#: include/nav.php:109 mod/register.php:289 boot.php:1768
#: include/nav.php:109 mod/register.php:289 boot.php:1809
msgid "Register"
msgstr ""
@ -1387,7 +936,7 @@ msgstr ""
msgid "Create an account"
msgstr ""
#: include/nav.php:115 mod/help.php:47 view/theme/vier/theme.php:298
#: include/nav.php:115 mod/help.php:47 view/theme/vier/theme.php:293
msgid "Help"
msgstr ""
@ -1403,7 +952,7 @@ msgstr ""
msgid "Addon applications, utilities, games"
msgstr ""
#: include/nav.php:123 include/text.php:1012 mod/search.php:149
#: include/nav.php:123 include/text.php:1014 mod/search.php:149
msgid "Search"
msgstr ""
@ -1411,17 +960,17 @@ msgstr ""
msgid "Search site content"
msgstr ""
#: include/nav.php:126 include/text.php:1020
#: include/nav.php:126 include/text.php:1022
msgid "Full Text"
msgstr ""
#: include/nav.php:127 include/text.php:1021
#: include/nav.php:127 include/text.php:1023
msgid "Tags"
msgstr ""
#: include/nav.php:128 include/nav.php:192 include/identity.php:783
#: include/identity.php:786 include/text.php:1022 mod/contacts.php:792
#: mod/contacts.php:853 mod/viewcontacts.php:116 view/theme/frio/theme.php:260
#: include/nav.php:128 include/nav.php:192 include/identity.php:835
#: include/identity.php:838 include/text.php:1024 mod/contacts.php:800
#: mod/contacts.php:861 mod/viewcontacts.php:121 view/theme/frio/theme.php:257
msgid "Contacts"
msgstr ""
@ -1437,8 +986,8 @@ msgstr ""
msgid "Conversations on the network"
msgstr ""
#: include/nav.php:149 include/identity.php:753 include/identity.php:764
#: view/theme/frio/theme.php:257
#: include/nav.php:149 include/identity.php:805 include/identity.php:816
#: view/theme/frio/theme.php:254
msgid "Events and Calendar"
msgstr ""
@ -1458,12 +1007,7 @@ msgstr ""
msgid "Information about this friendica instance"
msgstr ""
#: include/nav.php:158 include/NotificationsManager.php:160 mod/admin.php:411
#: view/theme/frio/theme.php:256
msgid "Network"
msgstr ""
#: include/nav.php:158 view/theme/frio/theme.php:256
#: include/nav.php:158 view/theme/frio/theme.php:253
msgid "Conversations from your friends"
msgstr ""
@ -1475,10 +1019,6 @@ msgstr ""
msgid "Load Network page with no filters"
msgstr ""
#: include/nav.php:166 include/NotificationsManager.php:181
msgid "Introductions"
msgstr ""
#: include/nav.php:166
msgid "Friend Requests"
msgstr ""
@ -1491,7 +1031,7 @@ msgstr ""
msgid "See all notifications"
msgstr ""
#: include/nav.php:171 mod/settings.php:902
#: include/nav.php:171 mod/settings.php:906
msgid "Mark as seen"
msgstr ""
@ -1499,11 +1039,11 @@ msgstr ""
msgid "Mark all system notifications seen"
msgstr ""
#: include/nav.php:175 mod/message.php:190 view/theme/frio/theme.php:258
#: include/nav.php:175 mod/message.php:179 view/theme/frio/theme.php:255
msgid "Messages"
msgstr ""
#: include/nav.php:175 view/theme/frio/theme.php:258
#: include/nav.php:175 view/theme/frio/theme.php:255
msgid "Private mail"
msgstr ""
@ -1536,15 +1076,15 @@ msgid "Delegate Page Management"
msgstr ""
#: include/nav.php:186 mod/newmember.php:22 mod/settings.php:111
#: mod/admin.php:1524 mod/admin.php:1782 view/theme/frio/theme.php:259
#: mod/admin.php:1545 mod/admin.php:1815 view/theme/frio/theme.php:256
msgid "Settings"
msgstr ""
#: include/nav.php:186 view/theme/frio/theme.php:259
#: include/nav.php:186 view/theme/frio/theme.php:256
msgid "Account settings"
msgstr ""
#: include/nav.php:189 include/identity.php:282
#: include/nav.php:189 include/identity.php:285
msgid "Profiles"
msgstr ""
@ -1552,11 +1092,11 @@ msgstr ""
msgid "Manage/Edit Profiles"
msgstr ""
#: include/nav.php:192 view/theme/frio/theme.php:260
#: include/nav.php:192 view/theme/frio/theme.php:257
msgid "Manage/edit friends and contacts"
msgstr ""
#: include/nav.php:197 mod/admin.php:186
#: include/nav.php:197 mod/admin.php:187
msgid "Admin"
msgstr ""
@ -1572,10 +1112,42 @@ msgstr ""
msgid "Site map"
msgstr ""
#: include/photos.php:53 mod/fbrowser.php:41 mod/fbrowser.php:62
#: mod/photos.php:180 mod/photos.php:1086 mod/photos.php:1211
#: mod/photos.php:1232 mod/photos.php:1795 mod/photos.php:1807
msgid "Contact Photos"
#: include/oembed.php:266
msgid "Embedded content"
msgstr ""
#: include/oembed.php:274
msgid "Embedding disabled"
msgstr ""
#: include/ostatus.php:1832
#, php-format
msgid "%s is now following %s."
msgstr ""
#: include/ostatus.php:1833
msgid "following"
msgstr ""
#: include/ostatus.php:1836
#, php-format
msgid "%s stopped following %s."
msgstr ""
#: include/ostatus.php:1837
msgid "stopped following"
msgstr ""
#: include/plugin.php:530 include/plugin.php:532
msgid "Click here to upgrade."
msgstr ""
#: include/plugin.php:538
msgid "This action exceeds the limits set by your subscription plan."
msgstr ""
#: include/plugin.php:543
msgid "This action is not available under your subscription plan."
msgstr ""
#: include/security.php:22
@ -1590,1361 +1162,49 @@ msgstr ""
msgid "Welcome back "
msgstr ""
#: include/security.php:373
#: include/security.php:375
msgid ""
"The form security token was not correct. This probably happened because the "
"form has been opened for too long (>3 hours) before submitting it."
msgstr ""
#: include/NotificationsManager.php:153
msgid "System"
#: include/uimport.php:94
msgid "Error decoding account file"
msgstr ""
#: include/NotificationsManager.php:167 mod/profiles.php:703
#: mod/network.php:845
msgid "Personal"
#: include/uimport.php:100
msgid "Error! No version data in file! This is not a Friendica account file?"
msgstr ""
#: include/NotificationsManager.php:234 include/NotificationsManager.php:244
#: include/uimport.php:116 include/uimport.php:127
msgid "Error! Cannot check nickname"
msgstr ""
#: include/uimport.php:120 include/uimport.php:131
#, php-format
msgid "%s commented on %s's post"
msgid "User '%s' already exists on this server!"
msgstr ""
#: include/NotificationsManager.php:243
#: include/uimport.php:153
msgid "User creation error"
msgstr ""
#: include/uimport.php:173
msgid "User profile creation error"
msgstr ""
#: include/uimport.php:222
#, php-format
msgid "%s created a new post"
msgstr ""
#: include/NotificationsManager.php:256
#, php-format
msgid "%s liked %s's post"
msgstr ""
#: include/NotificationsManager.php:267
#, php-format
msgid "%s disliked %s's post"
msgstr ""
#: include/NotificationsManager.php:278
#, php-format
msgid "%s is attending %s's event"
msgstr ""
#: include/NotificationsManager.php:289
#, php-format
msgid "%s is not attending %s's event"
msgstr ""
#: include/NotificationsManager.php:300
#, php-format
msgid "%s may attend %s's event"
msgstr ""
#: include/NotificationsManager.php:315
#, php-format
msgid "%s is now friends with %s"
msgstr ""
#: include/NotificationsManager.php:748
msgid "Friend Suggestion"
msgstr ""
#: include/NotificationsManager.php:781
msgid "Friend/Connect Request"
msgstr ""
#: include/NotificationsManager.php:781
msgid "New Follower"
msgstr ""
#: include/dbstructure.php:26
#, php-format
msgid ""
"\n"
"\t\t\tThe friendica developers released update %s recently,\n"
"\t\t\tbut when I tried to install it, something went terribly wrong.\n"
"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n"
"\t\t\tfriendica developer if you can not help me on your own. My database "
"might be invalid."
msgstr ""
#: include/dbstructure.php:31
#, php-format
msgid ""
"The error message is\n"
"[pre]%s[/pre]"
msgstr ""
#: include/dbstructure.php:183
msgid "Errors encountered creating database tables."
msgstr ""
#: include/dbstructure.php:260
msgid "Errors encountered performing database changes."
msgstr ""
#: include/delivery.php:446
msgid "(no subject)"
msgstr ""
#: include/diaspora.php:1958
msgid "Sharing notification from Diaspora network"
msgstr ""
#: include/diaspora.php:2864
msgid "Attachments:"
msgstr ""
#: include/network.php:595
msgid "view full size"
msgstr ""
#: include/Contact.php:340 include/Contact.php:353 include/Contact.php:398
#: include/conversation.php:968 include/conversation.php:984
#: mod/allfriends.php:65 mod/directory.php:155 mod/dirfind.php:203
#: mod/match.php:71 mod/suggest.php:82
msgid "View Profile"
msgstr ""
#: include/Contact.php:397 include/conversation.php:967
msgid "View Status"
msgstr ""
#: include/Contact.php:399 include/conversation.php:969
msgid "View Photos"
msgstr ""
#: include/Contact.php:400 include/conversation.php:970
msgid "Network Posts"
msgstr ""
#: include/Contact.php:401 include/conversation.php:971
msgid "View Contact"
msgstr ""
#: include/Contact.php:402
msgid "Drop Contact"
msgstr ""
#: include/Contact.php:403 include/conversation.php:972
msgid "Send PM"
msgstr ""
#: include/Contact.php:404 include/conversation.php:976
msgid "Poke"
msgstr ""
#: include/Contact.php:775
msgid "Organisation"
msgstr ""
#: include/Contact.php:778
msgid "News"
msgstr ""
#: include/Contact.php:781
msgid "Forum"
msgstr ""
#: include/api.php:1018
#, php-format
msgid "Daily posting limit of %d posts reached. The post was rejected."
msgstr ""
#: include/api.php:1038
#, php-format
msgid "Weekly posting limit of %d posts reached. The post was rejected."
msgstr ""
#: include/api.php:1059
#, php-format
msgid "Monthly posting limit of %d posts reached. The post was rejected."
msgstr ""
#: include/bbcode.php:350 include/bbcode.php:1057 include/bbcode.php:1058
msgid "Image/photo"
msgstr ""
#: include/bbcode.php:467
#, php-format
msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
msgstr ""
#: include/bbcode.php:1017 include/bbcode.php:1037
msgid "$1 wrote:"
msgstr ""
#: include/bbcode.php:1066 include/bbcode.php:1067
msgid "Encrypted content"
msgstr ""
#: include/bbcode.php:1169
msgid "Invalid source protocol"
msgstr ""
#: include/bbcode.php:1179
msgid "Invalid link protocol"
msgstr ""
#: include/conversation.php:147
#, php-format
msgid "%1$s attends %2$s's %3$s"
msgstr ""
#: include/conversation.php:150
#, php-format
msgid "%1$s doesn't attend %2$s's %3$s"
msgstr ""
#: include/conversation.php:153
#, php-format
msgid "%1$s attends maybe %2$s's %3$s"
msgstr ""
#: include/conversation.php:185 mod/dfrn_confirm.php:477
#, php-format
msgid "%1$s is now friends with %2$s"
msgstr ""
#: include/conversation.php:219
#, php-format
msgid "%1$s poked %2$s"
msgstr ""
#: include/conversation.php:239 mod/mood.php:62
#, php-format
msgid "%1$s is currently %2$s"
msgstr ""
#: include/conversation.php:278 mod/tagger.php:95
#, php-format
msgid "%1$s tagged %2$s's %3$s with %4$s"
msgstr ""
#: include/conversation.php:303
msgid "post/item"
msgstr ""
#: include/conversation.php:304
#, php-format
msgid "%1$s marked %2$s's %3$s as favorite"
msgstr ""
#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:346
#: mod/photos.php:1607
msgid "Likes"
msgstr ""
#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:350
#: mod/photos.php:1607
msgid "Dislikes"
msgstr ""
#: include/conversation.php:586 include/conversation.php:1481
#: mod/content.php:373 mod/photos.php:1608
msgid "Attending"
msgid_plural "Attending"
msgid "%d contact not imported"
msgid_plural "%d contacts not imported"
msgstr[0] ""
msgstr[1] ""
#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608
msgid "Not attending"
#: include/uimport.php:292
msgid "Done. You can now login with your username and password"
msgstr ""
#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608
msgid "Might attend"
msgstr ""
#: include/conversation.php:708 mod/content.php:453 mod/content.php:758
#: mod/photos.php:1681 object/Item.php:133
msgid "Select"
msgstr ""
#: include/conversation.php:709 mod/group.php:171 mod/content.php:454
#: mod/content.php:759 mod/photos.php:1682 mod/settings.php:741
#: mod/admin.php:1414 mod/contacts.php:808 mod/contacts.php:1007
#: object/Item.php:134
msgid "Delete"
msgstr ""
#: include/conversation.php:753 mod/content.php:487 mod/content.php:910
#: mod/content.php:911 object/Item.php:367 object/Item.php:368
#, php-format
msgid "View %s's profile @ %s"
msgstr ""
#: include/conversation.php:765 object/Item.php:355
msgid "Categories:"
msgstr ""
#: include/conversation.php:766 object/Item.php:356
msgid "Filed under:"
msgstr ""
#: include/conversation.php:773 mod/content.php:497 mod/content.php:923
#: object/Item.php:381
#, php-format
msgid "%s from %s"
msgstr ""
#: include/conversation.php:789 mod/content.php:513
msgid "View in context"
msgstr ""
#: include/conversation.php:791 include/conversation.php:1264
#: mod/editpost.php:124 mod/wallmessage.php:156 mod/message.php:356
#: mod/message.php:548 mod/content.php:515 mod/content.php:948
#: mod/photos.php:1570 object/Item.php:406
msgid "Please wait"
msgstr ""
#: include/conversation.php:870
msgid "remove"
msgstr ""
#: include/conversation.php:874
msgid "Delete Selected Items"
msgstr ""
#: include/conversation.php:966
msgid "Follow Thread"
msgstr ""
#: include/conversation.php:1097
#, php-format
msgid "%s likes this."
msgstr ""
#: include/conversation.php:1100
#, php-format
msgid "%s doesn't like this."
msgstr ""
#: include/conversation.php:1103
#, php-format
msgid "%s attends."
msgstr ""
#: include/conversation.php:1106
#, php-format
msgid "%s doesn't attend."
msgstr ""
#: include/conversation.php:1109
#, php-format
msgid "%s attends maybe."
msgstr ""
#: include/conversation.php:1119
msgid "and"
msgstr ""
#: include/conversation.php:1125
#, php-format
msgid ", and %d other people"
msgstr ""
#: include/conversation.php:1134
#, php-format
msgid "<span %1$s>%2$d people</span> like this"
msgstr ""
#: include/conversation.php:1135
#, php-format
msgid "%s like this."
msgstr ""
#: include/conversation.php:1138
#, php-format
msgid "<span %1$s>%2$d people</span> don't like this"
msgstr ""
#: include/conversation.php:1139
#, php-format
msgid "%s don't like this."
msgstr ""
#: include/conversation.php:1142
#, php-format
msgid "<span %1$s>%2$d people</span> attend"
msgstr ""
#: include/conversation.php:1143
#, php-format
msgid "%s attend."
msgstr ""
#: include/conversation.php:1146
#, php-format
msgid "<span %1$s>%2$d people</span> don't attend"
msgstr ""
#: include/conversation.php:1147
#, php-format
msgid "%s don't attend."
msgstr ""
#: include/conversation.php:1150
#, php-format
msgid "<span %1$s>%2$d people</span> attend maybe"
msgstr ""
#: include/conversation.php:1151
#, php-format
msgid "%s anttend maybe."
msgstr ""
#: include/conversation.php:1190 include/conversation.php:1208
msgid "Visible to <strong>everybody</strong>"
msgstr ""
#: include/conversation.php:1191 include/conversation.php:1209
#: mod/wallmessage.php:127 mod/wallmessage.php:135 mod/message.php:291
#: mod/message.php:299 mod/message.php:442 mod/message.php:450
msgid "Please enter a link URL:"
msgstr ""
#: include/conversation.php:1192 include/conversation.php:1210
msgid "Please enter a video link/URL:"
msgstr ""
#: include/conversation.php:1193 include/conversation.php:1211
msgid "Please enter an audio link/URL:"
msgstr ""
#: include/conversation.php:1194 include/conversation.php:1212
msgid "Tag term:"
msgstr ""
#: include/conversation.php:1195 include/conversation.php:1213
#: mod/filer.php:30
msgid "Save to Folder:"
msgstr ""
#: include/conversation.php:1196 include/conversation.php:1214
msgid "Where are you right now?"
msgstr ""
#: include/conversation.php:1197
msgid "Delete item(s)?"
msgstr ""
#: include/conversation.php:1245 mod/photos.php:1569
msgid "Share"
msgstr ""
#: include/conversation.php:1246 mod/editpost.php:110 mod/wallmessage.php:154
#: mod/message.php:354 mod/message.php:545
msgid "Upload photo"
msgstr ""
#: include/conversation.php:1247 mod/editpost.php:111
msgid "upload photo"
msgstr ""
#: include/conversation.php:1248 mod/editpost.php:112
msgid "Attach file"
msgstr ""
#: include/conversation.php:1249 mod/editpost.php:113
msgid "attach file"
msgstr ""
#: include/conversation.php:1250 mod/editpost.php:114 mod/wallmessage.php:155
#: mod/message.php:355 mod/message.php:546
msgid "Insert web link"
msgstr ""
#: include/conversation.php:1251 mod/editpost.php:115
msgid "web link"
msgstr ""
#: include/conversation.php:1252 mod/editpost.php:116
msgid "Insert video link"
msgstr ""
#: include/conversation.php:1253 mod/editpost.php:117
msgid "video link"
msgstr ""
#: include/conversation.php:1254 mod/editpost.php:118
msgid "Insert audio link"
msgstr ""
#: include/conversation.php:1255 mod/editpost.php:119
msgid "audio link"
msgstr ""
#: include/conversation.php:1256 mod/editpost.php:120
msgid "Set your location"
msgstr ""
#: include/conversation.php:1257 mod/editpost.php:121
msgid "set location"
msgstr ""
#: include/conversation.php:1258 mod/editpost.php:122
msgid "Clear browser location"
msgstr ""
#: include/conversation.php:1259 mod/editpost.php:123
msgid "clear location"
msgstr ""
#: include/conversation.php:1261 mod/editpost.php:137
msgid "Set title"
msgstr ""
#: include/conversation.php:1263 mod/editpost.php:139
msgid "Categories (comma-separated list)"
msgstr ""
#: include/conversation.php:1265 mod/editpost.php:125
msgid "Permission settings"
msgstr ""
#: include/conversation.php:1266 mod/editpost.php:154
msgid "permissions"
msgstr ""
#: include/conversation.php:1274 mod/editpost.php:134
msgid "Public post"
msgstr ""
#: include/conversation.php:1279 mod/editpost.php:145 mod/content.php:737
#: mod/events.php:504 mod/photos.php:1591 mod/photos.php:1639
#: mod/photos.php:1725 object/Item.php:729
msgid "Preview"
msgstr ""
#: include/conversation.php:1283 include/items.php:1974 mod/fbrowser.php:101
#: mod/fbrowser.php:136 mod/tagrm.php:11 mod/tagrm.php:94 mod/editpost.php:148
#: mod/message.php:220 mod/suggest.php:32 mod/photos.php:235
#: mod/photos.php:322 mod/settings.php:679 mod/settings.php:705
#: mod/videos.php:128 mod/contacts.php:445 mod/dfrn_request.php:876
#: mod/follow.php:121
msgid "Cancel"
msgstr ""
#: include/conversation.php:1289
msgid "Post to Groups"
msgstr ""
#: include/conversation.php:1290
msgid "Post to Contacts"
msgstr ""
#: include/conversation.php:1291
msgid "Private post"
msgstr ""
#: include/conversation.php:1296 include/identity.php:256 mod/editpost.php:152
msgid "Message"
msgstr ""
#: include/conversation.php:1297 mod/editpost.php:153
msgid "Browser"
msgstr ""
#: include/conversation.php:1453
msgid "View all"
msgstr ""
#: include/conversation.php:1475
msgid "Like"
msgid_plural "Likes"
msgstr[0] ""
msgstr[1] ""
#: include/conversation.php:1478
msgid "Dislike"
msgid_plural "Dislikes"
msgstr[0] ""
msgstr[1] ""
#: include/conversation.php:1484
msgid "Not Attending"
msgid_plural "Not Attending"
msgstr[0] ""
msgstr[1] ""
#: include/dfrn.php:1108
#, php-format
msgid "%s\\'s birthday"
msgstr ""
#: include/features.php:70
msgid "General Features"
msgstr ""
#: include/features.php:72
msgid "Multiple Profiles"
msgstr ""
#: include/features.php:72
msgid "Ability to create multiple profiles"
msgstr ""
#: include/features.php:73
msgid "Photo Location"
msgstr ""
#: include/features.php:73
msgid ""
"Photo metadata is normally stripped. This extracts the location (if present) "
"prior to stripping metadata and links it to a map."
msgstr ""
#: include/features.php:74
msgid "Export Public Calendar"
msgstr ""
#: include/features.php:74
msgid "Ability for visitors to download the public calendar"
msgstr ""
#: include/features.php:79
msgid "Post Composition Features"
msgstr ""
#: include/features.php:80
msgid "Richtext Editor"
msgstr ""
#: include/features.php:80
msgid "Enable richtext editor"
msgstr ""
#: include/features.php:81
msgid "Post Preview"
msgstr ""
#: include/features.php:81
msgid "Allow previewing posts and comments before publishing them"
msgstr ""
#: include/features.php:82
msgid "Auto-mention Forums"
msgstr ""
#: include/features.php:82
msgid ""
"Add/remove mention when a forum page is selected/deselected in ACL window."
msgstr ""
#: include/features.php:87
msgid "Network Sidebar Widgets"
msgstr ""
#: include/features.php:88
msgid "Search by Date"
msgstr ""
#: include/features.php:88
msgid "Ability to select posts by date ranges"
msgstr ""
#: include/features.php:89 include/features.php:119
msgid "List Forums"
msgstr ""
#: include/features.php:89
msgid "Enable widget to display the forums your are connected with"
msgstr ""
#: include/features.php:90
msgid "Group Filter"
msgstr ""
#: include/features.php:90
msgid "Enable widget to display Network posts only from selected group"
msgstr ""
#: include/features.php:91
msgid "Network Filter"
msgstr ""
#: include/features.php:91
msgid "Enable widget to display Network posts only from selected network"
msgstr ""
#: include/features.php:92 mod/search.php:34 mod/network.php:200
msgid "Saved Searches"
msgstr ""
#: include/features.php:92
msgid "Save search terms for re-use"
msgstr ""
#: include/features.php:97
msgid "Network Tabs"
msgstr ""
#: include/features.php:98
msgid "Network Personal Tab"
msgstr ""
#: include/features.php:98
msgid "Enable tab to display only Network posts that you've interacted on"
msgstr ""
#: include/features.php:99
msgid "Network New Tab"
msgstr ""
#: include/features.php:99
msgid "Enable tab to display only new Network posts (from the last 12 hours)"
msgstr ""
#: include/features.php:100
msgid "Network Shared Links Tab"
msgstr ""
#: include/features.php:100
msgid "Enable tab to display only Network posts with links in them"
msgstr ""
#: include/features.php:105
msgid "Post/Comment Tools"
msgstr ""
#: include/features.php:106
msgid "Multiple Deletion"
msgstr ""
#: include/features.php:106
msgid "Select and delete multiple posts/comments at once"
msgstr ""
#: include/features.php:107
msgid "Edit Sent Posts"
msgstr ""
#: include/features.php:107
msgid "Edit and correct posts and comments after sending"
msgstr ""
#: include/features.php:108
msgid "Tagging"
msgstr ""
#: include/features.php:108
msgid "Ability to tag existing posts"
msgstr ""
#: include/features.php:109
msgid "Post Categories"
msgstr ""
#: include/features.php:109
msgid "Add categories to your posts"
msgstr ""
#: include/features.php:110
msgid "Ability to file posts under folders"
msgstr ""
#: include/features.php:111
msgid "Dislike Posts"
msgstr ""
#: include/features.php:111
msgid "Ability to dislike posts/comments"
msgstr ""
#: include/features.php:112
msgid "Star Posts"
msgstr ""
#: include/features.php:112
msgid "Ability to mark special posts with a star indicator"
msgstr ""
#: include/features.php:113
msgid "Mute Post Notifications"
msgstr ""
#: include/features.php:113
msgid "Ability to mute notifications for a thread"
msgstr ""
#: include/features.php:118
msgid "Advanced Profile Settings"
msgstr ""
#: include/features.php:119
msgid "Show visitors public community forums at the Advanced Profile Page"
msgstr ""
#: include/follow.php:81 mod/dfrn_request.php:509
msgid "Disallowed profile URL."
msgstr ""
#: include/follow.php:86
msgid "Connect URL missing."
msgstr ""
#: include/follow.php:113
msgid ""
"This site is not configured to allow communications with other networks."
msgstr ""
#: include/follow.php:114 include/follow.php:134
msgid "No compatible communication protocols or feeds were discovered."
msgstr ""
#: include/follow.php:132
msgid "The profile address specified does not provide adequate information."
msgstr ""
#: include/follow.php:136
msgid "An author or name was not found."
msgstr ""
#: include/follow.php:138
msgid "No browser URL could be matched to this address."
msgstr ""
#: include/follow.php:140
msgid ""
"Unable to match @-style Identity Address with a known protocol or email "
"contact."
msgstr ""
#: include/follow.php:141
msgid "Use mailto: in front of address to force email check."
msgstr ""
#: include/follow.php:147
msgid ""
"The profile address specified belongs to a network which has been disabled "
"on this site."
msgstr ""
#: include/follow.php:157
msgid ""
"Limited profile. This person will be unable to receive direct/personal "
"notifications from you."
msgstr ""
#: include/follow.php:258
msgid "Unable to retrieve contact information."
msgstr ""
#: include/identity.php:42
msgid "Requested account is not available."
msgstr ""
#: include/identity.php:51 mod/profile.php:21
msgid "Requested profile is not available."
msgstr ""
#: include/identity.php:95 include/identity.php:311 include/identity.php:688
msgid "Edit profile"
msgstr ""
#: include/identity.php:251
msgid "Atom feed"
msgstr ""
#: include/identity.php:282
msgid "Manage/edit profiles"
msgstr ""
#: include/identity.php:287 include/identity.php:313 mod/profiles.php:795
msgid "Change profile photo"
msgstr ""
#: include/identity.php:288 mod/profiles.php:796
msgid "Create New Profile"
msgstr ""
#: include/identity.php:298 mod/profiles.php:785
msgid "Profile Image"
msgstr ""
#: include/identity.php:301 mod/profiles.php:787
msgid "visible to everybody"
msgstr ""
#: include/identity.php:302 mod/profiles.php:691 mod/profiles.php:788
msgid "Edit visibility"
msgstr ""
#: include/identity.php:330 include/identity.php:616 mod/notifications.php:238
#: mod/directory.php:139
msgid "Gender:"
msgstr ""
#: include/identity.php:333 include/identity.php:636 mod/directory.php:141
msgid "Status:"
msgstr ""
#: include/identity.php:335 include/identity.php:647 mod/directory.php:143
msgid "Homepage:"
msgstr ""
#: include/identity.php:337 include/identity.php:657 mod/notifications.php:234
#: mod/directory.php:145 mod/contacts.php:632
msgid "About:"
msgstr ""
#: include/identity.php:339 mod/contacts.php:630
msgid "XMPP:"
msgstr ""
#: include/identity.php:422 mod/notifications.php:246 mod/contacts.php:50
msgid "Network:"
msgstr ""
#: include/identity.php:451 include/identity.php:535
msgid "g A l F d"
msgstr ""
#: include/identity.php:452 include/identity.php:536
msgid "F d"
msgstr ""
#: include/identity.php:497 include/identity.php:582
msgid "[today]"
msgstr ""
#: include/identity.php:509
msgid "Birthday Reminders"
msgstr ""
#: include/identity.php:510
msgid "Birthdays this week:"
msgstr ""
#: include/identity.php:569
msgid "[No description]"
msgstr ""
#: include/identity.php:593
msgid "Event Reminders"
msgstr ""
#: include/identity.php:594
msgid "Events this week:"
msgstr ""
#: include/identity.php:614 mod/settings.php:1279
msgid "Full Name:"
msgstr ""
#: include/identity.php:621
msgid "j F, Y"
msgstr ""
#: include/identity.php:622
msgid "j F"
msgstr ""
#: include/identity.php:633
msgid "Age:"
msgstr ""
#: include/identity.php:642
#, php-format
msgid "for %1$d %2$s"
msgstr ""
#: include/identity.php:645 mod/profiles.php:710
msgid "Sexual Preference:"
msgstr ""
#: include/identity.php:649 mod/profiles.php:737
msgid "Hometown:"
msgstr ""
#: include/identity.php:651 mod/notifications.php:236 mod/contacts.php:634
#: mod/follow.php:134
msgid "Tags:"
msgstr ""
#: include/identity.php:653 mod/profiles.php:738
msgid "Political Views:"
msgstr ""
#: include/identity.php:655
msgid "Religion:"
msgstr ""
#: include/identity.php:659
msgid "Hobbies/Interests:"
msgstr ""
#: include/identity.php:661 mod/profiles.php:742
msgid "Likes:"
msgstr ""
#: include/identity.php:663 mod/profiles.php:743
msgid "Dislikes:"
msgstr ""
#: include/identity.php:666
msgid "Contact information and Social Networks:"
msgstr ""
#: include/identity.php:668
msgid "Musical interests:"
msgstr ""
#: include/identity.php:670
msgid "Books, literature:"
msgstr ""
#: include/identity.php:672
msgid "Television:"
msgstr ""
#: include/identity.php:674
msgid "Film/dance/culture/entertainment:"
msgstr ""
#: include/identity.php:676
msgid "Love/Romance:"
msgstr ""
#: include/identity.php:678
msgid "Work/employment:"
msgstr ""
#: include/identity.php:680
msgid "School/education:"
msgstr ""
#: include/identity.php:684
msgid "Forums:"
msgstr ""
#: include/identity.php:692 mod/events.php:507
msgid "Basic"
msgstr ""
#: include/identity.php:693 mod/events.php:508 mod/admin.php:959
#: mod/contacts.php:870
msgid "Advanced"
msgstr ""
#: include/identity.php:717 mod/contacts.php:836 mod/follow.php:142
msgid "Status Messages and Posts"
msgstr ""
#: include/identity.php:725 mod/contacts.php:844
msgid "Profile Details"
msgstr ""
#: include/identity.php:733 mod/photos.php:87
msgid "Photo Albums"
msgstr ""
#: include/identity.php:772 mod/notes.php:46
msgid "Personal Notes"
msgstr ""
#: include/identity.php:775
msgid "Only You Can See This"
msgstr ""
#: include/items.php:1575 mod/dfrn_confirm.php:730 mod/dfrn_request.php:746
msgid "[Name Withheld]"
msgstr ""
#: include/items.php:1930 mod/viewsrc.php:15 mod/notice.php:15
#: mod/display.php:103 mod/display.php:279 mod/display.php:478
#: mod/admin.php:234 mod/admin.php:1471 mod/admin.php:1705
msgid "Item not found."
msgstr ""
#: include/items.php:1969
msgid "Do you really want to delete this item?"
msgstr ""
#: include/items.php:1971 mod/api.php:105 mod/message.php:217
#: mod/profiles.php:648 mod/profiles.php:651 mod/profiles.php:677
#: mod/suggest.php:29 mod/register.php:245 mod/settings.php:1163
#: mod/settings.php:1169 mod/settings.php:1177 mod/settings.php:1181
#: mod/settings.php:1186 mod/settings.php:1192 mod/settings.php:1198
#: mod/settings.php:1204 mod/settings.php:1230 mod/settings.php:1231
#: mod/settings.php:1232 mod/settings.php:1233 mod/settings.php:1234
#: mod/contacts.php:442 mod/dfrn_request.php:862 mod/follow.php:110
msgid "Yes"
msgstr ""
#: include/items.php:2134 mod/notes.php:22 mod/uimport.php:23
#: mod/nogroup.php:25 mod/invite.php:15 mod/invite.php:101
#: mod/repair_ostatus.php:9 mod/delegate.php:12 mod/attach.php:33
#: mod/editpost.php:10 mod/group.php:19 mod/wallmessage.php:9
#: mod/wallmessage.php:33 mod/wallmessage.php:79 mod/wallmessage.php:103
#: mod/api.php:26 mod/api.php:31 mod/ostatus_subscribe.php:9
#: mod/message.php:46 mod/message.php:182 mod/manage.php:96
#: mod/crepair.php:100 mod/fsuggest.php:78 mod/mood.php:114 mod/poke.php:150
#: mod/profile_photo.php:19 mod/profile_photo.php:175
#: mod/profile_photo.php:186 mod/profile_photo.php:199 mod/regmod.php:110
#: mod/notifications.php:71 mod/profiles.php:166 mod/profiles.php:605
#: mod/allfriends.php:12 mod/cal.php:304 mod/common.php:18 mod/dirfind.php:11
#: mod/display.php:475 mod/events.php:190 mod/suggest.php:58
#: mod/photos.php:159 mod/photos.php:1072 mod/register.php:42
#: mod/settings.php:22 mod/settings.php:128 mod/settings.php:665
#: mod/wall_attach.php:67 mod/wall_attach.php:70 mod/wall_upload.php:77
#: mod/wall_upload.php:80 mod/contacts.php:350 mod/dfrn_confirm.php:61
#: mod/follow.php:11 mod/follow.php:73 mod/follow.php:155 mod/item.php:199
#: mod/item.php:211 mod/network.php:4 mod/viewcontacts.php:45 index.php:401
msgid "Permission denied."
msgstr ""
#: include/items.php:2239
msgid "Archives"
msgstr ""
#: include/oembed.php:264
msgid "Embedded content"
msgstr ""
#: include/oembed.php:272
msgid "Embedding disabled"
msgstr ""
#: include/ostatus.php:1825
#, php-format
msgid "%s is now following %s."
msgstr ""
#: include/ostatus.php:1826
msgid "following"
msgstr ""
#: include/ostatus.php:1829
#, php-format
msgid "%s stopped following %s."
msgstr ""
#: include/ostatus.php:1830
msgid "stopped following"
msgstr ""
#: include/text.php:304
msgid "newer"
msgstr ""
#: include/text.php:306
msgid "older"
msgstr ""
#: include/text.php:311
msgid "prev"
msgstr ""
#: include/text.php:313
msgid "first"
msgstr ""
#: include/text.php:345
msgid "last"
msgstr ""
#: include/text.php:348
msgid "next"
msgstr ""
#: include/text.php:403
msgid "Loading more entries..."
msgstr ""
#: include/text.php:404
msgid "The end"
msgstr ""
#: include/text.php:889
msgid "No contacts"
msgstr ""
#: include/text.php:912
#, php-format
msgid "%d Contact"
msgid_plural "%d Contacts"
msgstr[0] ""
msgstr[1] ""
#: include/text.php:925
msgid "View Contacts"
msgstr ""
#: include/text.php:1013 mod/notes.php:61 mod/filer.php:31
#: mod/editpost.php:109
msgid "Save"
msgstr ""
#: include/text.php:1076
msgid "poke"
msgstr ""
#: include/text.php:1076
msgid "poked"
msgstr ""
#: include/text.php:1077
msgid "ping"
msgstr ""
#: include/text.php:1077
msgid "pinged"
msgstr ""
#: include/text.php:1078
msgid "prod"
msgstr ""
#: include/text.php:1078
msgid "prodded"
msgstr ""
#: include/text.php:1079
msgid "slap"
msgstr ""
#: include/text.php:1079
msgid "slapped"
msgstr ""
#: include/text.php:1080
msgid "finger"
msgstr ""
#: include/text.php:1080
msgid "fingered"
msgstr ""
#: include/text.php:1081
msgid "rebuff"
msgstr ""
#: include/text.php:1081
msgid "rebuffed"
msgstr ""
#: include/text.php:1095
msgid "happy"
msgstr ""
#: include/text.php:1096
msgid "sad"
msgstr ""
#: include/text.php:1097
msgid "mellow"
msgstr ""
#: include/text.php:1098
msgid "tired"
msgstr ""
#: include/text.php:1099
msgid "perky"
msgstr ""
#: include/text.php:1100
msgid "angry"
msgstr ""
#: include/text.php:1101
msgid "stupified"
msgstr ""
#: include/text.php:1102
msgid "puzzled"
msgstr ""
#: include/text.php:1103
msgid "interested"
msgstr ""
#: include/text.php:1104
msgid "bitter"
msgstr ""
#: include/text.php:1105
msgid "cheerful"
msgstr ""
#: include/text.php:1106
msgid "alive"
msgstr ""
#: include/text.php:1107
msgid "annoyed"
msgstr ""
#: include/text.php:1108
msgid "anxious"
msgstr ""
#: include/text.php:1109
msgid "cranky"
msgstr ""
#: include/text.php:1110
msgid "disturbed"
msgstr ""
#: include/text.php:1111
msgid "frustrated"
msgstr ""
#: include/text.php:1112
msgid "motivated"
msgstr ""
#: include/text.php:1113
msgid "relaxed"
msgstr ""
#: include/text.php:1114
msgid "surprised"
msgstr ""
#: include/text.php:1324 mod/videos.php:380
msgid "View Video"
msgstr ""
#: include/text.php:1356
msgid "bytes"
msgstr ""
#: include/text.php:1388 include/text.php:1400
msgid "Click to open/close"
msgstr ""
#: include/text.php:1526
msgid "View on separate page"
msgstr ""
#: include/text.php:1527
msgid "view on separate page"
msgstr ""
#: include/text.php:1806
msgid "activity"
msgstr ""
#: include/text.php:1808 mod/content.php:623 object/Item.php:431
#: object/Item.php:444
msgid "comment"
msgid_plural "comments"
msgstr[0] ""
msgstr[1] ""
#: include/text.php:1809
msgid "post"
msgstr ""
#: include/text.php:1977
msgid "Item filed"
msgstr ""
#: include/user.php:39 mod/settings.php:373
#: include/user.php:39 mod/settings.php:375
msgid "Passwords do not match. Password unchanged."
msgstr ""
@ -3010,7 +1270,8 @@ msgstr ""
msgid "An error occurred during registration. Please try again."
msgstr ""
#: include/user.php:256 view/theme/duepuntozero/config.php:44
#: include/user.php:256 view/theme/duepuntozero/config.php:43
#: view/theme/clean/config.php:60
msgid "default"
msgstr ""
@ -3018,16 +1279,16 @@ msgstr ""
msgid "An error occurred creating your default profile. Please try again."
msgstr ""
#: include/user.php:326 include/user.php:333 include/user.php:340
#: mod/profile_photo.php:74 mod/profile_photo.php:81 mod/profile_photo.php:88
#: mod/profile_photo.php:210 mod/profile_photo.php:302
#: mod/profile_photo.php:311 mod/photos.php:66 mod/photos.php:180
#: mod/photos.php:751 mod/photos.php:1211 mod/photos.php:1232
#: mod/photos.php:1819
#: include/user.php:326 include/user.php:334 include/user.php:342
#: mod/profile_photo.php:74 mod/profile_photo.php:82 mod/profile_photo.php:90
#: mod/profile_photo.php:215 mod/profile_photo.php:310
#: mod/profile_photo.php:320 mod/photos.php:68 mod/photos.php:182
#: mod/photos.php:768 mod/photos.php:1231 mod/photos.php:1252
#: mod/photos.php:1839
msgid "Profile Photos"
msgstr ""
#: include/user.php:414
#: include/user.php:417
#, php-format
msgid ""
"\n"
@ -3037,12 +1298,12 @@ msgid ""
"\t"
msgstr ""
#: include/user.php:424
#: include/user.php:427
#, php-format
msgid "Registration at %s"
msgstr ""
#: include/user.php:434
#: include/user.php:437
#, php-format
msgid ""
"\n"
@ -3051,7 +1312,7 @@ msgid ""
"\t"
msgstr ""
#: include/user.php:438
#: include/user.php:441
#, php-format
msgid ""
"\n"
@ -3086,102 +1347,2501 @@ msgid ""
"\t\tThank you and welcome to %2$s."
msgstr ""
#: include/user.php:470 mod/admin.php:1213
#: include/user.php:473 mod/admin.php:1234
#, php-format
msgid "Registration details for %s"
msgstr ""
#: mod/oexchange.php:25
msgid "Post successful."
#: include/acl_selectors.php:341
msgid "Post to Email"
msgstr ""
#: mod/viewsrc.php:7
msgid "Access denied."
#: include/acl_selectors.php:346
#, php-format
msgid "Connectors disabled, since \"%s\" is enabled."
msgstr ""
#: mod/home.php:35
#: include/acl_selectors.php:347 mod/settings.php:1188
msgid "Hide your profile details from unknown viewers?"
msgstr ""
#: include/acl_selectors.php:352
msgid "Visible to everybody"
msgstr ""
#: include/acl_selectors.php:353 view/theme/vier/config.php:108
msgid "show"
msgstr ""
#: include/acl_selectors.php:354 view/theme/vier/config.php:108
msgid "don't show"
msgstr ""
#: include/acl_selectors.php:360 mod/editpost.php:123
msgid "CC: email addresses"
msgstr ""
#: include/acl_selectors.php:361 mod/editpost.php:130
msgid "Example: bob@example.com, mary@example.com"
msgstr ""
#: include/acl_selectors.php:363 mod/events.php:516 mod/photos.php:1176
#: mod/photos.php:1558
msgid "Permissions"
msgstr ""
#: include/acl_selectors.php:364
msgid "Close"
msgstr ""
#: include/conversation.php:147
#, php-format
msgid "%1$s attends %2$s's %3$s"
msgstr ""
#: include/conversation.php:150
#, php-format
msgid "%1$s doesn't attend %2$s's %3$s"
msgstr ""
#: include/conversation.php:153
#, php-format
msgid "%1$s attends maybe %2$s's %3$s"
msgstr ""
#: include/conversation.php:185 mod/dfrn_confirm.php:478
#, php-format
msgid "%1$s is now friends with %2$s"
msgstr ""
#: include/conversation.php:219
#, php-format
msgid "%1$s poked %2$s"
msgstr ""
#: include/conversation.php:239 mod/mood.php:63
#, php-format
msgid "%1$s is currently %2$s"
msgstr ""
#: include/conversation.php:278 mod/tagger.php:95
#, php-format
msgid "%1$s tagged %2$s's %3$s with %4$s"
msgstr ""
#: include/conversation.php:303
msgid "post/item"
msgstr ""
#: include/conversation.php:304
#, php-format
msgid "%1$s marked %2$s's %3$s as favorite"
msgstr ""
#: include/conversation.php:587 mod/content.php:372 mod/photos.php:1629
#: mod/profiles.php:346
msgid "Likes"
msgstr ""
#: include/conversation.php:587 mod/content.php:372 mod/photos.php:1629
#: mod/profiles.php:350
msgid "Dislikes"
msgstr ""
#: include/conversation.php:588 include/conversation.php:1472
#: mod/content.php:373 mod/photos.php:1630
msgid "Attending"
msgid_plural "Attending"
msgstr[0] ""
msgstr[1] ""
#: include/conversation.php:588 mod/content.php:373 mod/photos.php:1630
msgid "Not attending"
msgstr ""
#: include/conversation.php:588 mod/content.php:373 mod/photos.php:1630
msgid "Might attend"
msgstr ""
#: include/conversation.php:710 mod/content.php:453 mod/content.php:759
#: mod/photos.php:1703 object/Item.php:137
msgid "Select"
msgstr ""
#: include/conversation.php:711 mod/content.php:454 mod/content.php:760
#: mod/group.php:181 mod/settings.php:744 mod/contacts.php:816
#: mod/contacts.php:1015 mod/photos.php:1704 mod/admin.php:1435
#: object/Item.php:138
msgid "Delete"
msgstr ""
#: include/conversation.php:755 mod/content.php:487 mod/content.php:915
#: mod/content.php:916 object/Item.php:382 object/Item.php:383
#, php-format
msgid "View %s's profile @ %s"
msgstr ""
#: include/conversation.php:767 object/Item.php:370
msgid "Categories:"
msgstr ""
#: include/conversation.php:768 object/Item.php:371
msgid "Filed under:"
msgstr ""
#: include/conversation.php:775 mod/content.php:497 mod/content.php:928
#: object/Item.php:396
#, php-format
msgid "%s from %s"
msgstr ""
#: include/conversation.php:791 mod/content.php:513
msgid "View in context"
msgstr ""
#: include/conversation.php:793 include/conversation.php:1255
#: mod/content.php:515 mod/content.php:953 mod/editpost.php:114
#: mod/message.php:337 mod/message.php:522 mod/wallmessage.php:140
#: mod/photos.php:1592 object/Item.php:421
msgid "Please wait"
msgstr ""
#: include/conversation.php:872
msgid "remove"
msgstr ""
#: include/conversation.php:876
msgid "Delete Selected Items"
msgstr ""
#: include/conversation.php:968
msgid "Follow Thread"
msgstr ""
#: include/conversation.php:969 include/Contact.php:445
msgid "View Status"
msgstr ""
#: include/conversation.php:970 include/conversation.php:986
#: include/Contact.php:388 include/Contact.php:401 include/Contact.php:446
#: mod/allfriends.php:68 mod/directory.php:157 mod/dirfind.php:209
#: mod/match.php:73 mod/suggest.php:82
msgid "View Profile"
msgstr ""
#: include/conversation.php:971 include/Contact.php:447
msgid "View Photos"
msgstr ""
#: include/conversation.php:972 include/Contact.php:448
msgid "Network Posts"
msgstr ""
#: include/conversation.php:973 include/Contact.php:449
msgid "View Contact"
msgstr ""
#: include/conversation.php:974 include/Contact.php:451
msgid "Send PM"
msgstr ""
#: include/conversation.php:978 include/Contact.php:452
msgid "Poke"
msgstr ""
#: include/conversation.php:983 include/contact_widgets.php:32
#: include/Contact.php:402 mod/allfriends.php:69 mod/dirfind.php:210
#: mod/follow.php:106 mod/match.php:74 mod/suggest.php:83 mod/contacts.php:610
msgid "Connect/Follow"
msgstr ""
#: include/conversation.php:1099
#, php-format
msgid "%s likes this."
msgstr ""
#: include/conversation.php:1102
#, php-format
msgid "%s doesn't like this."
msgstr ""
#: include/conversation.php:1105
#, php-format
msgid "%s attends."
msgstr ""
#: include/conversation.php:1108
#, php-format
msgid "%s doesn't attend."
msgstr ""
#: include/conversation.php:1111
#, php-format
msgid "%s attends maybe."
msgstr ""
#: include/conversation.php:1121
msgid "and"
msgstr ""
#: include/conversation.php:1127
#, php-format
msgid ", and %d other people"
msgstr ""
#: include/conversation.php:1136
#, php-format
msgid "<span %1$s>%2$d people</span> like this"
msgstr ""
#: include/conversation.php:1137
#, php-format
msgid "%s like this."
msgstr ""
#: include/conversation.php:1140
#, php-format
msgid "<span %1$s>%2$d people</span> don't like this"
msgstr ""
#: include/conversation.php:1141
#, php-format
msgid "%s don't like this."
msgstr ""
#: include/conversation.php:1144
#, php-format
msgid "<span %1$s>%2$d people</span> attend"
msgstr ""
#: include/conversation.php:1145
#, php-format
msgid "%s attend."
msgstr ""
#: include/conversation.php:1148
#, php-format
msgid "<span %1$s>%2$d people</span> don't attend"
msgstr ""
#: include/conversation.php:1149
#, php-format
msgid "%s don't attend."
msgstr ""
#: include/conversation.php:1152
#, php-format
msgid "<span %1$s>%2$d people</span> attend maybe"
msgstr ""
#: include/conversation.php:1153
#, php-format
msgid "%s anttend maybe."
msgstr ""
#: include/conversation.php:1183 include/conversation.php:1199
msgid "Visible to <strong>everybody</strong>"
msgstr ""
#: include/conversation.php:1184 include/conversation.php:1200
#: mod/message.php:271 mod/message.php:278 mod/message.php:418
#: mod/message.php:425 mod/wallmessage.php:114 mod/wallmessage.php:121
msgid "Please enter a link URL:"
msgstr ""
#: include/conversation.php:1185 include/conversation.php:1201
msgid "Please enter a video link/URL:"
msgstr ""
#: include/conversation.php:1186 include/conversation.php:1202
msgid "Please enter an audio link/URL:"
msgstr ""
#: include/conversation.php:1187 include/conversation.php:1203
msgid "Tag term:"
msgstr ""
#: include/conversation.php:1188 include/conversation.php:1204
#: mod/filer.php:30
msgid "Save to Folder:"
msgstr ""
#: include/conversation.php:1189 include/conversation.php:1205
msgid "Where are you right now?"
msgstr ""
#: include/conversation.php:1190
msgid "Delete item(s)?"
msgstr ""
#: include/conversation.php:1236
msgid "Share"
msgstr ""
#: include/conversation.php:1237 mod/editpost.php:100 mod/message.php:335
#: mod/message.php:519 mod/wallmessage.php:138
msgid "Upload photo"
msgstr ""
#: include/conversation.php:1238 mod/editpost.php:101
msgid "upload photo"
msgstr ""
#: include/conversation.php:1239 mod/editpost.php:102
msgid "Attach file"
msgstr ""
#: include/conversation.php:1240 mod/editpost.php:103
msgid "attach file"
msgstr ""
#: include/conversation.php:1241 mod/editpost.php:104 mod/message.php:336
#: mod/message.php:520 mod/wallmessage.php:139
msgid "Insert web link"
msgstr ""
#: include/conversation.php:1242 mod/editpost.php:105
msgid "web link"
msgstr ""
#: include/conversation.php:1243 mod/editpost.php:106
msgid "Insert video link"
msgstr ""
#: include/conversation.php:1244 mod/editpost.php:107
msgid "video link"
msgstr ""
#: include/conversation.php:1245 mod/editpost.php:108
msgid "Insert audio link"
msgstr ""
#: include/conversation.php:1246 mod/editpost.php:109
msgid "audio link"
msgstr ""
#: include/conversation.php:1247 mod/editpost.php:110
msgid "Set your location"
msgstr ""
#: include/conversation.php:1248 mod/editpost.php:111
msgid "set location"
msgstr ""
#: include/conversation.php:1249 mod/editpost.php:112
msgid "Clear browser location"
msgstr ""
#: include/conversation.php:1250 mod/editpost.php:113
msgid "clear location"
msgstr ""
#: include/conversation.php:1252 mod/editpost.php:127
msgid "Set title"
msgstr ""
#: include/conversation.php:1254 mod/editpost.php:129
msgid "Categories (comma-separated list)"
msgstr ""
#: include/conversation.php:1256 mod/editpost.php:115
msgid "Permission settings"
msgstr ""
#: include/conversation.php:1257 mod/editpost.php:144
msgid "permissions"
msgstr ""
#: include/conversation.php:1265 mod/editpost.php:124
msgid "Public post"
msgstr ""
#: include/conversation.php:1270 mod/content.php:737 mod/editpost.php:135
#: mod/events.php:511 mod/photos.php:1613 mod/photos.php:1661
#: mod/photos.php:1747 object/Item.php:741
msgid "Preview"
msgstr ""
#: include/conversation.php:1274 include/items.php:1983 mod/follow.php:124
#: mod/settings.php:682 mod/settings.php:708 mod/suggest.php:32
#: mod/tagrm.php:11 mod/tagrm.php:96 mod/videos.php:132 mod/contacts.php:455
#: mod/editpost.php:138 mod/fbrowser.php:100 mod/fbrowser.php:135
#: mod/message.php:209 mod/photos.php:240 mod/photos.php:331
#: mod/dfrn_request.php:889
msgid "Cancel"
msgstr ""
#: include/conversation.php:1280
msgid "Post to Groups"
msgstr ""
#: include/conversation.php:1281
msgid "Post to Contacts"
msgstr ""
#: include/conversation.php:1282
msgid "Private post"
msgstr ""
#: include/conversation.php:1287 include/identity.php:259 mod/editpost.php:142
msgid "Message"
msgstr ""
#: include/conversation.php:1288 mod/editpost.php:143
msgid "Browser"
msgstr ""
#: include/conversation.php:1444
msgid "View all"
msgstr ""
#: include/conversation.php:1466
msgid "Like"
msgid_plural "Likes"
msgstr[0] ""
msgstr[1] ""
#: include/conversation.php:1469
msgid "Dislike"
msgid_plural "Dislikes"
msgstr[0] ""
msgstr[1] ""
#: include/conversation.php:1475
msgid "Not Attending"
msgid_plural "Not Attending"
msgstr[0] ""
msgstr[1] ""
#: include/delivery.php:470
msgid "(no subject)"
msgstr ""
#: include/features.php:65
msgid "General Features"
msgstr ""
#: include/features.php:67
msgid "Multiple Profiles"
msgstr ""
#: include/features.php:67
msgid "Ability to create multiple profiles"
msgstr ""
#: include/features.php:68
msgid "Photo Location"
msgstr ""
#: include/features.php:68
msgid ""
"Photo metadata is normally stripped. This extracts the location (if present) "
"prior to stripping metadata and links it to a map."
msgstr ""
#: include/features.php:69
msgid "Export Public Calendar"
msgstr ""
#: include/features.php:69
msgid "Ability for visitors to download the public calendar"
msgstr ""
#: include/features.php:74
msgid "Post Composition Features"
msgstr ""
#: include/features.php:75
msgid "Post Preview"
msgstr ""
#: include/features.php:75
msgid "Allow previewing posts and comments before publishing them"
msgstr ""
#: include/features.php:76
msgid "Auto-mention Forums"
msgstr ""
#: include/features.php:76
msgid ""
"Add/remove mention when a forum page is selected/deselected in ACL window."
msgstr ""
#: include/features.php:81
msgid "Network Sidebar Widgets"
msgstr ""
#: include/features.php:82
msgid "Search by Date"
msgstr ""
#: include/features.php:82
msgid "Ability to select posts by date ranges"
msgstr ""
#: include/features.php:83 include/features.php:113
msgid "List Forums"
msgstr ""
#: include/features.php:83
msgid "Enable widget to display the forums your are connected with"
msgstr ""
#: include/features.php:84
msgid "Group Filter"
msgstr ""
#: include/features.php:84
msgid "Enable widget to display Network posts only from selected group"
msgstr ""
#: include/features.php:85
msgid "Network Filter"
msgstr ""
#: include/features.php:85
msgid "Enable widget to display Network posts only from selected network"
msgstr ""
#: include/features.php:86 mod/network.php:199 mod/search.php:34
msgid "Saved Searches"
msgstr ""
#: include/features.php:86
msgid "Save search terms for re-use"
msgstr ""
#: include/features.php:91
msgid "Network Tabs"
msgstr ""
#: include/features.php:92
msgid "Network Personal Tab"
msgstr ""
#: include/features.php:92
msgid "Enable tab to display only Network posts that you've interacted on"
msgstr ""
#: include/features.php:93
msgid "Network New Tab"
msgstr ""
#: include/features.php:93
msgid "Enable tab to display only new Network posts (from the last 12 hours)"
msgstr ""
#: include/features.php:94
msgid "Network Shared Links Tab"
msgstr ""
#: include/features.php:94
msgid "Enable tab to display only Network posts with links in them"
msgstr ""
#: include/features.php:99
msgid "Post/Comment Tools"
msgstr ""
#: include/features.php:100
msgid "Multiple Deletion"
msgstr ""
#: include/features.php:100
msgid "Select and delete multiple posts/comments at once"
msgstr ""
#: include/features.php:101
msgid "Edit Sent Posts"
msgstr ""
#: include/features.php:101
msgid "Edit and correct posts and comments after sending"
msgstr ""
#: include/features.php:102
msgid "Tagging"
msgstr ""
#: include/features.php:102
msgid "Ability to tag existing posts"
msgstr ""
#: include/features.php:103
msgid "Post Categories"
msgstr ""
#: include/features.php:103
msgid "Add categories to your posts"
msgstr ""
#: include/features.php:104 include/contact_widgets.php:150
msgid "Saved Folders"
msgstr ""
#: include/features.php:104
msgid "Ability to file posts under folders"
msgstr ""
#: include/features.php:105
msgid "Dislike Posts"
msgstr ""
#: include/features.php:105
msgid "Ability to dislike posts/comments"
msgstr ""
#: include/features.php:106
msgid "Star Posts"
msgstr ""
#: include/features.php:106
msgid "Ability to mark special posts with a star indicator"
msgstr ""
#: include/features.php:107
msgid "Mute Post Notifications"
msgstr ""
#: include/features.php:107
msgid "Ability to mute notifications for a thread"
msgstr ""
#: include/features.php:112
msgid "Advanced Profile Settings"
msgstr ""
#: include/features.php:113
msgid "Show visitors public community forums at the Advanced Profile Page"
msgstr ""
#: include/photos.php:57 include/photos.php:67 mod/fbrowser.php:40
#: mod/fbrowser.php:61 mod/photos.php:182 mod/photos.php:1106
#: mod/photos.php:1231 mod/photos.php:1252 mod/photos.php:1817
#: mod/photos.php:1829
msgid "Contact Photos"
msgstr ""
#: include/datetime.php:58 include/datetime.php:60 mod/profiles.php:697
msgid "Miscellaneous"
msgstr ""
#: include/datetime.php:184 include/identity.php:641
msgid "Birthday:"
msgstr ""
#: include/datetime.php:186 mod/profiles.php:720
msgid "Age: "
msgstr ""
#: include/datetime.php:188
msgid "YYYY-MM-DD or MM-DD"
msgstr ""
#: include/datetime.php:343
msgid "never"
msgstr ""
#: include/datetime.php:349
msgid "less than a second ago"
msgstr ""
#: include/datetime.php:352
msgid "year"
msgstr ""
#: include/datetime.php:352
msgid "years"
msgstr ""
#: include/datetime.php:353 include/event.php:481 mod/cal.php:279
#: mod/events.php:396
msgid "month"
msgstr ""
#: include/datetime.php:353
msgid "months"
msgstr ""
#: include/datetime.php:354 include/event.php:482 mod/cal.php:280
#: mod/events.php:397
msgid "week"
msgstr ""
#: include/datetime.php:354
msgid "weeks"
msgstr ""
#: include/datetime.php:355 include/event.php:483 mod/cal.php:281
#: mod/events.php:398
msgid "day"
msgstr ""
#: include/datetime.php:355
msgid "days"
msgstr ""
#: include/datetime.php:356
msgid "hour"
msgstr ""
#: include/datetime.php:356
msgid "hours"
msgstr ""
#: include/datetime.php:357
msgid "minute"
msgstr ""
#: include/datetime.php:357
msgid "minutes"
msgstr ""
#: include/datetime.php:358
msgid "second"
msgstr ""
#: include/datetime.php:358
msgid "seconds"
msgstr ""
#: include/datetime.php:367
#, php-format
msgid "%1$d %2$s ago"
msgstr ""
#: include/datetime.php:585
#, php-format
msgid "%s's birthday"
msgstr ""
#: include/datetime.php:586 include/dfrn.php:1122
#, php-format
msgid "Happy Birthday %s"
msgstr ""
#: include/event.php:16 include/bb2diaspora.php:199 mod/localtime.php:12
msgid "l F d, Y \\@ g:i A"
msgstr ""
#: include/event.php:33 include/event.php:51 include/event.php:488
#: include/bb2diaspora.php:205
msgid "Starts:"
msgstr ""
#: include/event.php:36 include/event.php:57 include/event.php:489
#: include/bb2diaspora.php:213
msgid "Finishes:"
msgstr ""
#: include/event.php:39 include/event.php:63 include/event.php:490
#: include/bb2diaspora.php:221 include/identity.php:331 mod/directory.php:139
#: mod/contacts.php:636 mod/events.php:501 mod/notifications.php:238
msgid "Location:"
msgstr ""
#: include/event.php:442
msgid "Sun"
msgstr ""
#: include/event.php:443
msgid "Mon"
msgstr ""
#: include/event.php:444
msgid "Tue"
msgstr ""
#: include/event.php:445
msgid "Wed"
msgstr ""
#: include/event.php:446
msgid "Thu"
msgstr ""
#: include/event.php:447
msgid "Fri"
msgstr ""
#: include/event.php:448
msgid "Sat"
msgstr ""
#: include/event.php:449 include/text.php:1132 mod/settings.php:981
msgid "Sunday"
msgstr ""
#: include/event.php:450 include/text.php:1132 mod/settings.php:981
msgid "Monday"
msgstr ""
#: include/event.php:451 include/text.php:1132
msgid "Tuesday"
msgstr ""
#: include/event.php:452 include/text.php:1132
msgid "Wednesday"
msgstr ""
#: include/event.php:453 include/text.php:1132
msgid "Thursday"
msgstr ""
#: include/event.php:454 include/text.php:1132
msgid "Friday"
msgstr ""
#: include/event.php:455 include/text.php:1132
msgid "Saturday"
msgstr ""
#: include/event.php:456
msgid "Jan"
msgstr ""
#: include/event.php:457
msgid "Feb"
msgstr ""
#: include/event.php:458
msgid "Mar"
msgstr ""
#: include/event.php:459
msgid "Apr"
msgstr ""
#: include/event.php:460 include/event.php:472 include/text.php:1136
msgid "May"
msgstr ""
#: include/event.php:461
msgid "Jun"
msgstr ""
#: include/event.php:462
msgid "Jul"
msgstr ""
#: include/event.php:463
msgid "Aug"
msgstr ""
#: include/event.php:464
msgid "Sept"
msgstr ""
#: include/event.php:465
msgid "Oct"
msgstr ""
#: include/event.php:466
msgid "Nov"
msgstr ""
#: include/event.php:467
msgid "Dec"
msgstr ""
#: include/event.php:468 include/text.php:1136
msgid "January"
msgstr ""
#: include/event.php:469 include/text.php:1136
msgid "February"
msgstr ""
#: include/event.php:470 include/text.php:1136
msgid "March"
msgstr ""
#: include/event.php:471 include/text.php:1136
msgid "April"
msgstr ""
#: include/event.php:473 include/text.php:1136
msgid "June"
msgstr ""
#: include/event.php:474 include/text.php:1136
msgid "July"
msgstr ""
#: include/event.php:475 include/text.php:1136
msgid "August"
msgstr ""
#: include/event.php:476 include/text.php:1136
msgid "September"
msgstr ""
#: include/event.php:477 include/text.php:1136
msgid "October"
msgstr ""
#: include/event.php:478 include/text.php:1136
msgid "November"
msgstr ""
#: include/event.php:479 include/text.php:1136
msgid "December"
msgstr ""
#: include/event.php:480 mod/cal.php:278 mod/events.php:395
msgid "today"
msgstr ""
#: include/event.php:484
msgid "all-day"
msgstr ""
#: include/event.php:486
msgid "No events to display"
msgstr ""
#: include/event.php:596
msgid "l, F j"
msgstr ""
#: include/event.php:615
msgid "Edit event"
msgstr ""
#: include/event.php:637 include/text.php:1534 include/text.php:1541
msgid "link to source"
msgstr ""
#: include/event.php:872
msgid "Export"
msgstr ""
#: include/event.php:873
msgid "Export calendar as ical"
msgstr ""
#: include/event.php:874
msgid "Export calendar as csv"
msgstr ""
#: include/dfrn.php:1121
#, php-format
msgid "%s\\'s birthday"
msgstr ""
#: include/contact_selectors.php:32
msgid "Unknown | Not categorised"
msgstr ""
#: include/contact_selectors.php:33
msgid "Block immediately"
msgstr ""
#: include/contact_selectors.php:34
msgid "Shady, spammer, self-marketer"
msgstr ""
#: include/contact_selectors.php:35
msgid "Known to me, but no opinion"
msgstr ""
#: include/contact_selectors.php:36
msgid "OK, probably harmless"
msgstr ""
#: include/contact_selectors.php:37
msgid "Reputable, has my trust"
msgstr ""
#: include/contact_selectors.php:56 mod/admin.php:901
msgid "Frequently"
msgstr ""
#: include/contact_selectors.php:57 mod/admin.php:902
msgid "Hourly"
msgstr ""
#: include/contact_selectors.php:58 mod/admin.php:903
msgid "Twice daily"
msgstr ""
#: include/contact_selectors.php:59 mod/admin.php:904
msgid "Daily"
msgstr ""
#: include/contact_selectors.php:60
msgid "Weekly"
msgstr ""
#: include/contact_selectors.php:61
msgid "Monthly"
msgstr ""
#: include/contact_selectors.php:76 mod/dfrn_request.php:881
msgid "Friendica"
msgstr ""
#: include/contact_selectors.php:77
msgid "OStatus"
msgstr ""
#: include/contact_selectors.php:78
msgid "RSS/Atom"
msgstr ""
#: include/contact_selectors.php:79 include/contact_selectors.php:86
#: mod/admin.php:1417 mod/admin.php:1430 mod/admin.php:1443 mod/admin.php:1461
msgid "Email"
msgstr ""
#: include/contact_selectors.php:80 mod/settings.php:848
#: mod/dfrn_request.php:883
msgid "Diaspora"
msgstr ""
#: include/contact_selectors.php:81
msgid "Facebook"
msgstr ""
#: include/contact_selectors.php:82
msgid "Zot!"
msgstr ""
#: include/contact_selectors.php:83
msgid "LinkedIn"
msgstr ""
#: include/contact_selectors.php:84
msgid "XMPP/IM"
msgstr ""
#: include/contact_selectors.php:85
msgid "MySpace"
msgstr ""
#: include/contact_selectors.php:87
msgid "Google+"
msgstr ""
#: include/contact_selectors.php:88
msgid "pump.io"
msgstr ""
#: include/contact_selectors.php:89
msgid "Twitter"
msgstr ""
#: include/contact_selectors.php:90
msgid "Diaspora Connector"
msgstr ""
#: include/contact_selectors.php:91
msgid "GNU Social"
msgstr ""
#: include/contact_selectors.php:92
msgid "pnut"
msgstr ""
#: include/contact_selectors.php:93
msgid "App.net"
msgstr ""
#: include/contact_selectors.php:104
msgid "Hubzilla/Redmatrix"
msgstr ""
#: include/contact_widgets.php:6
msgid "Add New Contact"
msgstr ""
#: include/contact_widgets.php:7
msgid "Enter address or web location"
msgstr ""
#: include/contact_widgets.php:8
msgid "Example: bob@example.com, http://example.com/barbara"
msgstr ""
#: include/contact_widgets.php:10 include/identity.php:219
#: mod/allfriends.php:85 mod/dirfind.php:207 mod/match.php:89
#: mod/suggest.php:101
msgid "Connect"
msgstr ""
#: include/contact_widgets.php:24
#, php-format
msgid "%d invitation available"
msgid_plural "%d invitations available"
msgstr[0] ""
msgstr[1] ""
#: include/contact_widgets.php:30
msgid "Find People"
msgstr ""
#: include/contact_widgets.php:31
msgid "Enter name or interest"
msgstr ""
#: include/contact_widgets.php:33
msgid "Examples: Robert Morgenstein, Fishing"
msgstr ""
#: include/contact_widgets.php:34 mod/directory.php:206 mod/contacts.php:806
msgid "Find"
msgstr ""
#: include/contact_widgets.php:35 mod/suggest.php:114
#: view/theme/vier/theme.php:198
msgid "Friend Suggestions"
msgstr ""
#: include/contact_widgets.php:36 view/theme/vier/theme.php:197
msgid "Similar Interests"
msgstr ""
#: include/contact_widgets.php:37
msgid "Random Profile"
msgstr ""
#: include/contact_widgets.php:38 view/theme/vier/theme.php:199
msgid "Invite Friends"
msgstr ""
#: include/contact_widgets.php:115
msgid "Networks"
msgstr ""
#: include/contact_widgets.php:118
msgid "All Networks"
msgstr ""
#: include/contact_widgets.php:153 include/contact_widgets.php:187
msgid "Everything"
msgstr ""
#: include/contact_widgets.php:184
msgid "Categories"
msgstr ""
#: include/contact_widgets.php:248
#, php-format
msgid "%d contact in common"
msgid_plural "%d contacts in common"
msgstr[0] ""
msgstr[1] ""
#: include/api.php:1021
#, php-format
msgid "Daily posting limit of %d posts reached. The post was rejected."
msgstr ""
#: include/api.php:1041
#, php-format
msgid "Weekly posting limit of %d posts reached. The post was rejected."
msgstr ""
#: include/api.php:1062
#, php-format
msgid "Monthly posting limit of %d posts reached. The post was rejected."
msgstr ""
#: include/diaspora.php:2087
msgid "Sharing notification from Diaspora network"
msgstr ""
#: include/diaspora.php:3096
msgid "Attachments:"
msgstr ""
#: include/identity.php:43
msgid "Requested account is not available."
msgstr ""
#: include/identity.php:52 mod/profile.php:21
msgid "Requested profile is not available."
msgstr ""
#: include/identity.php:96 include/identity.php:314 include/identity.php:737
msgid "Edit profile"
msgstr ""
#: include/identity.php:254
msgid "Atom feed"
msgstr ""
#: include/identity.php:285
msgid "Manage/edit profiles"
msgstr ""
#: include/identity.php:290 include/identity.php:316 mod/profiles.php:789
msgid "Change profile photo"
msgstr ""
#: include/identity.php:291 mod/profiles.php:790
msgid "Create New Profile"
msgstr ""
#: include/identity.php:301 mod/profiles.php:779
msgid "Profile Image"
msgstr ""
#: include/identity.php:304 mod/profiles.php:781
msgid "visible to everybody"
msgstr ""
#: include/identity.php:305 mod/profiles.php:683 mod/profiles.php:782
msgid "Edit visibility"
msgstr ""
#: include/identity.php:333 include/identity.php:628 mod/directory.php:141
#: mod/notifications.php:244
msgid "Gender:"
msgstr ""
#: include/identity.php:336 include/identity.php:648 mod/directory.php:143
msgid "Status:"
msgstr ""
#: include/identity.php:338 include/identity.php:664 mod/directory.php:145
msgid "Homepage:"
msgstr ""
#: include/identity.php:340 include/identity.php:684 mod/directory.php:147
#: mod/contacts.php:640 mod/notifications.php:240
msgid "About:"
msgstr ""
#: include/identity.php:342 mod/contacts.php:638
msgid "XMPP:"
msgstr ""
#: include/identity.php:428 mod/contacts.php:55 mod/notifications.php:252
msgid "Network:"
msgstr ""
#: include/identity.php:457 include/identity.php:547
msgid "g A l F d"
msgstr ""
#: include/identity.php:458 include/identity.php:548
msgid "F d"
msgstr ""
#: include/identity.php:509 include/identity.php:594
msgid "[today]"
msgstr ""
#: include/identity.php:521
msgid "Birthday Reminders"
msgstr ""
#: include/identity.php:522
msgid "Birthdays this week:"
msgstr ""
#: include/identity.php:581
msgid "[No description]"
msgstr ""
#: include/identity.php:605
msgid "Event Reminders"
msgstr ""
#: include/identity.php:606
msgid "Events this week:"
msgstr ""
#: include/identity.php:626 mod/settings.php:1286
msgid "Full Name:"
msgstr ""
#: include/identity.php:633
msgid "j F, Y"
msgstr ""
#: include/identity.php:634
msgid "j F"
msgstr ""
#: include/identity.php:645
msgid "Age:"
msgstr ""
#: include/identity.php:656
#, php-format
msgid "for %1$d %2$s"
msgstr ""
#: include/identity.php:660 mod/profiles.php:702
msgid "Sexual Preference:"
msgstr ""
#: include/identity.php:668 mod/profiles.php:729
msgid "Hometown:"
msgstr ""
#: include/identity.php:672 mod/follow.php:137 mod/contacts.php:642
#: mod/notifications.php:242
msgid "Tags:"
msgstr ""
#: include/identity.php:676 mod/profiles.php:730
msgid "Political Views:"
msgstr ""
#: include/identity.php:680
msgid "Religion:"
msgstr ""
#: include/identity.php:688
msgid "Hobbies/Interests:"
msgstr ""
#: include/identity.php:692 mod/profiles.php:734
msgid "Likes:"
msgstr ""
#: include/identity.php:696 mod/profiles.php:735
msgid "Dislikes:"
msgstr ""
#: include/identity.php:700
msgid "Contact information and Social Networks:"
msgstr ""
#: include/identity.php:704
msgid "Musical interests:"
msgstr ""
#: include/identity.php:708
msgid "Books, literature:"
msgstr ""
#: include/identity.php:712
msgid "Television:"
msgstr ""
#: include/identity.php:716
msgid "Film/dance/culture/entertainment:"
msgstr ""
#: include/identity.php:720
msgid "Love/Romance:"
msgstr ""
#: include/identity.php:724
msgid "Work/employment:"
msgstr ""
#: include/identity.php:728
msgid "School/education:"
msgstr ""
#: include/identity.php:733
msgid "Forums:"
msgstr ""
#: include/identity.php:742 mod/events.php:514
msgid "Basic"
msgstr ""
#: include/identity.php:743 mod/contacts.php:878 mod/events.php:515
#: mod/admin.php:980
msgid "Advanced"
msgstr ""
#: include/identity.php:769 mod/follow.php:145 mod/contacts.php:844
msgid "Status Messages and Posts"
msgstr ""
#: include/identity.php:777 mod/contacts.php:852
msgid "Profile Details"
msgstr ""
#: include/identity.php:785 mod/photos.php:89
msgid "Photo Albums"
msgstr ""
#: include/identity.php:824 mod/notes.php:47
msgid "Personal Notes"
msgstr ""
#: include/identity.php:827
msgid "Only You Can See This"
msgstr ""
#: include/text.php:304
msgid "newer"
msgstr ""
#: include/text.php:306
msgid "older"
msgstr ""
#: include/text.php:311
msgid "prev"
msgstr ""
#: include/text.php:313
msgid "first"
msgstr ""
#: include/text.php:345
msgid "last"
msgstr ""
#: include/text.php:348
msgid "next"
msgstr ""
#: include/text.php:403
msgid "Loading more entries..."
msgstr ""
#: include/text.php:404
msgid "The end"
msgstr ""
#: include/text.php:889
msgid "No contacts"
msgstr ""
#: include/text.php:914
#, php-format
msgid "%d Contact"
msgid_plural "%d Contacts"
msgstr[0] ""
msgstr[1] ""
#: include/text.php:927
msgid "View Contacts"
msgstr ""
#: include/text.php:1015 mod/filer.php:31 mod/notes.php:62 mod/editpost.php:99
msgid "Save"
msgstr ""
#: include/text.php:1078
msgid "poke"
msgstr ""
#: include/text.php:1078
msgid "poked"
msgstr ""
#: include/text.php:1079
msgid "ping"
msgstr ""
#: include/text.php:1079
msgid "pinged"
msgstr ""
#: include/text.php:1080
msgid "prod"
msgstr ""
#: include/text.php:1080
msgid "prodded"
msgstr ""
#: include/text.php:1081
msgid "slap"
msgstr ""
#: include/text.php:1081
msgid "slapped"
msgstr ""
#: include/text.php:1082
msgid "finger"
msgstr ""
#: include/text.php:1082
msgid "fingered"
msgstr ""
#: include/text.php:1083
msgid "rebuff"
msgstr ""
#: include/text.php:1083
msgid "rebuffed"
msgstr ""
#: include/text.php:1097
msgid "happy"
msgstr ""
#: include/text.php:1098
msgid "sad"
msgstr ""
#: include/text.php:1099
msgid "mellow"
msgstr ""
#: include/text.php:1100
msgid "tired"
msgstr ""
#: include/text.php:1101
msgid "perky"
msgstr ""
#: include/text.php:1102
msgid "angry"
msgstr ""
#: include/text.php:1103
msgid "stupified"
msgstr ""
#: include/text.php:1104
msgid "puzzled"
msgstr ""
#: include/text.php:1105
msgid "interested"
msgstr ""
#: include/text.php:1106
msgid "bitter"
msgstr ""
#: include/text.php:1107
msgid "cheerful"
msgstr ""
#: include/text.php:1108
msgid "alive"
msgstr ""
#: include/text.php:1109
msgid "annoyed"
msgstr ""
#: include/text.php:1110
msgid "anxious"
msgstr ""
#: include/text.php:1111
msgid "cranky"
msgstr ""
#: include/text.php:1112
msgid "disturbed"
msgstr ""
#: include/text.php:1113
msgid "frustrated"
msgstr ""
#: include/text.php:1114
msgid "motivated"
msgstr ""
#: include/text.php:1115
msgid "relaxed"
msgstr ""
#: include/text.php:1116
msgid "surprised"
msgstr ""
#: include/text.php:1326 mod/videos.php:384
msgid "View Video"
msgstr ""
#: include/text.php:1358
msgid "bytes"
msgstr ""
#: include/text.php:1390 include/text.php:1402
msgid "Click to open/close"
msgstr ""
#: include/text.php:1528
msgid "View on separate page"
msgstr ""
#: include/text.php:1529
msgid "view on separate page"
msgstr ""
#: include/text.php:1808
msgid "activity"
msgstr ""
#: include/text.php:1810 mod/content.php:623 object/Item.php:446
#: object/Item.php:458
msgid "comment"
msgid_plural "comments"
msgstr[0] ""
msgstr[1] ""
#: include/text.php:1811
msgid "post"
msgstr ""
#: include/text.php:1979
msgid "Item filed"
msgstr ""
#: include/Contact.php:450
msgid "Drop Contact"
msgstr ""
#: include/Contact.php:827
msgid "Organisation"
msgstr ""
#: include/Contact.php:830
msgid "News"
msgstr ""
#: include/Contact.php:833
msgid "Forum"
msgstr ""
#: include/items.php:1584 mod/dfrn_confirm.php:735 mod/dfrn_request.php:754
msgid "[Name Withheld]"
msgstr ""
#: include/items.php:1939 mod/notice.php:15 mod/viewsrc.php:15
#: mod/display.php:103 mod/display.php:279 mod/display.php:484
#: mod/admin.php:235 mod/admin.php:1492 mod/admin.php:1738
msgid "Item not found."
msgstr ""
#: include/items.php:1978
msgid "Do you really want to delete this item?"
msgstr ""
#: include/items.php:1980 mod/api.php:105 mod/follow.php:113
#: mod/register.php:245 mod/settings.php:1171 mod/settings.php:1177
#: mod/settings.php:1184 mod/settings.php:1188 mod/settings.php:1193
#: mod/settings.php:1198 mod/settings.php:1203 mod/settings.php:1208
#: mod/settings.php:1234 mod/settings.php:1235 mod/settings.php:1236
#: mod/settings.php:1237 mod/settings.php:1238 mod/suggest.php:29
#: mod/contacts.php:452 mod/message.php:206 mod/dfrn_request.php:875
#: mod/profiles.php:640 mod/profiles.php:643 mod/profiles.php:669
msgid "Yes"
msgstr ""
#: include/items.php:2143 mod/allfriends.php:12 mod/api.php:26 mod/api.php:31
#: mod/attach.php:33 mod/common.php:18 mod/crepair.php:102 mod/delegate.php:12
#: mod/dirfind.php:11 mod/follow.php:11 mod/follow.php:74 mod/follow.php:158
#: mod/fsuggest.php:79 mod/group.php:19 mod/invite.php:15 mod/invite.php:103
#: mod/manage.php:98 mod/mood.php:115 mod/nogroup.php:27 mod/notes.php:23
#: mod/ostatus_subscribe.php:9 mod/poke.php:154 mod/profile_photo.php:19
#: mod/profile_photo.php:180 mod/profile_photo.php:191
#: mod/profile_photo.php:204 mod/register.php:42 mod/regmod.php:113
#: mod/repair_ostatus.php:9 mod/settings.php:22 mod/settings.php:130
#: mod/settings.php:668 mod/suggest.php:58 mod/uimport.php:24
#: mod/wall_attach.php:67 mod/wall_attach.php:70 mod/cal.php:299
#: mod/contacts.php:360 mod/dfrn_confirm.php:61 mod/editpost.php:10
#: mod/events.php:195 mod/item.php:193 mod/item.php:205 mod/message.php:46
#: mod/message.php:171 mod/wall_upload.php:77 mod/wall_upload.php:80
#: mod/wallmessage.php:9 mod/wallmessage.php:33 mod/wallmessage.php:73
#: mod/wallmessage.php:97 mod/photos.php:161 mod/photos.php:1092
#: mod/profiles.php:166 mod/profiles.php:607 mod/display.php:481
#: mod/viewcontacts.php:46 mod/network.php:4 mod/notifications.php:71
#: index.php:407
msgid "Permission denied."
msgstr ""
#: include/items.php:2248
msgid "Archives"
msgstr ""
#: include/dbstructure.php:33
#, php-format
msgid ""
"\n"
"\t\t\tThe friendica developers released update %s recently,\n"
"\t\t\tbut when I tried to install it, something went terribly wrong.\n"
"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n"
"\t\t\tfriendica developer if you can not help me on your own. My database "
"might be invalid."
msgstr ""
#: include/dbstructure.php:38
#, php-format
msgid ""
"The error message is\n"
"[pre]%s[/pre]"
msgstr ""
#: include/dbstructure.php:195
msgid "Errors encountered creating database tables."
msgstr ""
#: include/dbstructure.php:329 include/dbstructure.php:337
#: include/dbstructure.php:345 include/dbstructure.php:350
#: include/dbstructure.php:355
msgid "Errors encountered performing database changes."
msgstr ""
#: include/network.php:619
msgid "view full size"
msgstr ""
#: mod/allfriends.php:46
msgid "No friends to display."
msgstr ""
#: mod/api.php:76 mod/api.php:102
msgid "Authorize application connection"
msgstr ""
#: mod/api.php:77
msgid "Return to your app and insert this Securty Code:"
msgstr ""
#: mod/api.php:89
msgid "Please login to continue."
msgstr ""
#: mod/api.php:104
msgid ""
"Do you want to authorize this application to access your posts and contacts, "
"and/or create new posts for you?"
msgstr ""
#: mod/api.php:106 mod/follow.php:113 mod/register.php:246
#: mod/settings.php:1171 mod/settings.php:1177 mod/settings.php:1184
#: mod/settings.php:1188 mod/settings.php:1193 mod/settings.php:1198
#: mod/settings.php:1203 mod/settings.php:1208 mod/settings.php:1234
#: mod/settings.php:1235 mod/settings.php:1236 mod/settings.php:1237
#: mod/settings.php:1238 mod/dfrn_request.php:875 mod/profiles.php:640
#: mod/profiles.php:644 mod/profiles.php:669
msgid "No"
msgstr ""
#: mod/apps.php:7 index.php:248
msgid "You must be logged in to use addons. "
msgstr ""
#: mod/apps.php:11
msgid "Applications"
msgstr ""
#: mod/apps.php:14
msgid "No installed applications."
msgstr ""
#: mod/attach.php:8
msgid "Item not available."
msgstr ""
#: mod/attach.php:20
msgid "Item was not found."
msgstr ""
#: mod/babel.php:17
msgid "Source (bbcode) text:"
msgstr ""
#: mod/babel.php:23
msgid "Source (Diaspora) text to convert to BBcode:"
msgstr ""
#: mod/babel.php:31
msgid "Source input: "
msgstr ""
#: mod/babel.php:35
msgid "bb2html (raw HTML): "
msgstr ""
#: mod/babel.php:39
msgid "bb2html: "
msgstr ""
#: mod/babel.php:43
msgid "bb2html2bb: "
msgstr ""
#: mod/babel.php:47
msgid "bb2md: "
msgstr ""
#: mod/babel.php:51
msgid "bb2md2html: "
msgstr ""
#: mod/babel.php:55
msgid "bb2dia2bb: "
msgstr ""
#: mod/babel.php:59
msgid "bb2md2html2bb: "
msgstr ""
#: mod/babel.php:69
msgid "Source input (Diaspora format): "
msgstr ""
#: mod/babel.php:74
msgid "diaspora2bb: "
msgstr ""
#: mod/bookmarklet.php:41
msgid "The post was created"
msgstr ""
#: mod/common.php:91
msgid "No contacts in common."
msgstr ""
#: mod/common.php:141 mod/contacts.php:871
msgid "Common Friends"
msgstr ""
#: mod/community.php:22 mod/directory.php:37 mod/videos.php:198
#: mod/photos.php:964 mod/dfrn_request.php:799 mod/display.php:200
#: mod/viewcontacts.php:36 mod/search.php:93 mod/search.php:99
msgid "Public access denied."
msgstr ""
#: mod/community.php:27
msgid "Not available."
msgstr ""
#: mod/community.php:66 mod/community.php:75 mod/search.php:224
msgid "No results."
msgstr ""
#: mod/content.php:119 mod/network.php:468
msgid "No such group"
msgstr ""
#: mod/content.php:130 mod/group.php:203 mod/network.php:495
msgid "Group is empty"
msgstr ""
#: mod/content.php:135 mod/network.php:499
#, php-format
msgid "Group: %s"
msgstr ""
#: mod/content.php:325 object/Item.php:96
msgid "This entry was edited"
msgstr ""
#: mod/content.php:621 object/Item.php:444
#, php-format
msgid "%d comment"
msgid_plural "%d comments"
msgstr[0] ""
msgstr[1] ""
#: mod/content.php:638 mod/photos.php:1402 object/Item.php:117
msgid "Private Message"
msgstr ""
#: mod/content.php:702 mod/photos.php:1590 object/Item.php:274
msgid "I like this (toggle)"
msgstr ""
#: mod/content.php:702 object/Item.php:274
msgid "like"
msgstr ""
#: mod/content.php:703 mod/photos.php:1591 object/Item.php:275
msgid "I don't like this (toggle)"
msgstr ""
#: mod/content.php:703 object/Item.php:275
msgid "dislike"
msgstr ""
#: mod/content.php:705 object/Item.php:278
msgid "Share this"
msgstr ""
#: mod/content.php:705 object/Item.php:278
msgid "share"
msgstr ""
#: mod/content.php:725 mod/photos.php:1609 mod/photos.php:1657
#: mod/photos.php:1743 object/Item.php:729
msgid "This is you"
msgstr ""
#: mod/content.php:727 mod/content.php:950 mod/photos.php:1611
#: mod/photos.php:1659 mod/photos.php:1745 object/Item.php:418
#: object/Item.php:731
msgid "Comment"
msgstr ""
#: mod/content.php:728 mod/crepair.php:156 mod/fsuggest.php:108
#: mod/invite.php:142 mod/localtime.php:45 mod/manage.php:145 mod/mood.php:138
#: mod/poke.php:203 mod/contacts.php:585 mod/events.php:513
#: mod/message.php:338 mod/message.php:521 mod/photos.php:1124
#: mod/photos.php:1246 mod/photos.php:1562 mod/photos.php:1612
#: mod/photos.php:1660 mod/photos.php:1746 mod/install.php:276
#: mod/install.php:316 mod/profiles.php:680 object/Item.php:732
#: view/theme/quattro/config.php:67 view/theme/vier/config.php:112
#: view/theme/duepuntozero/config.php:61 view/theme/clean/config.php:87
#: view/theme/frio/config.php:64
msgid "Submit"
msgstr ""
#: mod/content.php:729 object/Item.php:733
msgid "Bold"
msgstr ""
#: mod/content.php:730 object/Item.php:734
msgid "Italic"
msgstr ""
#: mod/content.php:731 object/Item.php:735
msgid "Underline"
msgstr ""
#: mod/content.php:732 object/Item.php:736
msgid "Quote"
msgstr ""
#: mod/content.php:733 object/Item.php:737
msgid "Code"
msgstr ""
#: mod/content.php:734 object/Item.php:738
msgid "Image"
msgstr ""
#: mod/content.php:735 object/Item.php:739
msgid "Link"
msgstr ""
#: mod/content.php:736 object/Item.php:740
msgid "Video"
msgstr ""
#: mod/content.php:746 mod/settings.php:743 object/Item.php:122
#: object/Item.php:124
msgid "Edit"
msgstr ""
#: mod/content.php:772 object/Item.php:238
msgid "add star"
msgstr ""
#: mod/content.php:773 object/Item.php:239
msgid "remove star"
msgstr ""
#: mod/content.php:774 object/Item.php:240
msgid "toggle star status"
msgstr ""
#: mod/content.php:777 object/Item.php:243
msgid "starred"
msgstr ""
#: mod/content.php:778 mod/content.php:800 object/Item.php:263
msgid "add tag"
msgstr ""
#: mod/content.php:789 object/Item.php:251
msgid "ignore thread"
msgstr ""
#: mod/content.php:790 object/Item.php:252
msgid "unignore thread"
msgstr ""
#: mod/content.php:791 object/Item.php:253
msgid "toggle ignore status"
msgstr ""
#: mod/content.php:794 mod/ostatus_subscribe.php:73 object/Item.php:256
msgid "ignored"
msgstr ""
#: mod/content.php:805 object/Item.php:141
msgid "save to folder"
msgstr ""
#: mod/content.php:853 object/Item.php:212
msgid "I will attend"
msgstr ""
#: mod/content.php:853 object/Item.php:212
msgid "I will not attend"
msgstr ""
#: mod/content.php:853 object/Item.php:212
msgid "I might attend"
msgstr ""
#: mod/content.php:917 object/Item.php:384
msgid "to"
msgstr ""
#: mod/content.php:918 object/Item.php:386
msgid "Wall-to-Wall"
msgstr ""
#: mod/content.php:919 object/Item.php:387
msgid "via Wall-To-Wall:"
msgstr ""
#: mod/credits.php:16
msgid "Credits"
msgstr ""
#: mod/credits.php:17
msgid ""
"Friendica is a community project, that would not be possible without the "
"help of many people. Here is a list of those who have contributed to the "
"code or the translation of Friendica. Thank you all!"
msgstr ""
#: mod/crepair.php:89
msgid "Contact settings applied."
msgstr ""
#: mod/crepair.php:91
msgid "Contact update failed."
msgstr ""
#: mod/crepair.php:116 mod/fsuggest.php:21 mod/fsuggest.php:93
#: mod/dfrn_confirm.php:126
msgid "Contact not found."
msgstr ""
#: mod/crepair.php:122
msgid ""
"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect "
"information your communications with this contact may stop working."
msgstr ""
#: mod/crepair.php:123
msgid ""
"Please use your browser 'Back' button <strong>now</strong> if you are "
"uncertain what to do on this page."
msgstr ""
#: mod/crepair.php:136 mod/crepair.php:138
msgid "No mirroring"
msgstr ""
#: mod/crepair.php:136
msgid "Mirror as forwarded posting"
msgstr ""
#: mod/crepair.php:136 mod/crepair.php:138
msgid "Mirror as my own posting"
msgstr ""
#: mod/crepair.php:152
msgid "Return to contact editor"
msgstr ""
#: mod/crepair.php:154
msgid "Refetch contact data"
msgstr ""
#: mod/crepair.php:158
msgid "Remote Self"
msgstr ""
#: mod/crepair.php:161
msgid "Mirror postings from this contact"
msgstr ""
#: mod/crepair.php:163
msgid ""
"Mark this contact as remote_self, this will cause friendica to repost new "
"entries from this contact."
msgstr ""
#: mod/crepair.php:167 mod/settings.php:683 mod/settings.php:709
#: mod/admin.php:1417 mod/admin.php:1430 mod/admin.php:1443 mod/admin.php:1459
msgid "Name"
msgstr ""
#: mod/crepair.php:168
msgid "Account Nickname"
msgstr ""
#: mod/crepair.php:169
msgid "@Tagname - overrides Name/Nickname"
msgstr ""
#: mod/crepair.php:170
msgid "Account URL"
msgstr ""
#: mod/crepair.php:171
msgid "Friend Request URL"
msgstr ""
#: mod/crepair.php:172
msgid "Friend Confirm URL"
msgstr ""
#: mod/crepair.php:173
msgid "Notification Endpoint URL"
msgstr ""
#: mod/crepair.php:174
msgid "Poll/Feed URL"
msgstr ""
#: mod/crepair.php:175
msgid "New photo from this URL"
msgstr ""
#: mod/delegate.php:101
msgid "No potential page delegates located."
msgstr ""
#: mod/delegate.php:132
msgid ""
"Delegates are able to manage all aspects of this account/page except for "
"basic account settings. Please do not delegate your personal account to "
"anybody that you do not trust completely."
msgstr ""
#: mod/delegate.php:133
msgid "Existing Page Managers"
msgstr ""
#: mod/delegate.php:135
msgid "Existing Page Delegates"
msgstr ""
#: mod/delegate.php:137
msgid "Potential Delegates"
msgstr ""
#: mod/delegate.php:139 mod/tagrm.php:95
msgid "Remove"
msgstr ""
#: mod/delegate.php:140
msgid "Add"
msgstr ""
#: mod/delegate.php:141
msgid "No entries."
msgstr ""
#: mod/dfrn_poll.php:104 mod/dfrn_poll.php:539
#, php-format
msgid "%1$s welcomes %2$s"
msgstr ""
#: mod/directory.php:199 view/theme/vier/theme.php:196
msgid "Global Directory"
msgstr ""
#: mod/directory.php:201
msgid "Find on this site"
msgstr ""
#: mod/directory.php:203
msgid "Results for:"
msgstr ""
#: mod/directory.php:205
msgid "Site Directory"
msgstr ""
#: mod/directory.php:212
msgid "No entries (some entries may be hidden)."
msgstr ""
#: mod/dirfind.php:37
#, php-format
msgid "People Search - %s"
msgstr ""
#: mod/dirfind.php:48
#, php-format
msgid "Forum Search - %s"
msgstr ""
#: mod/dirfind.php:245 mod/match.php:109
msgid "No matches"
msgstr ""
#: mod/filer.php:30
msgid "- select -"
msgstr ""
#: mod/follow.php:19 mod/dfrn_request.php:888
msgid "Submit Request"
msgstr ""
#: mod/follow.php:30
msgid "You already added this contact."
msgstr ""
#: mod/follow.php:39
msgid "Diaspora support isn't enabled. Contact can't be added."
msgstr ""
#: mod/follow.php:46
msgid "OStatus support is disabled. Contact can't be added."
msgstr ""
#: mod/follow.php:53
msgid "The network type couldn't be detected. Contact can't be added."
msgstr ""
#: mod/follow.php:112 mod/dfrn_request.php:874
msgid "Please answer the following:"
msgstr ""
#: mod/follow.php:113 mod/dfrn_request.php:875
#, php-format
msgid "Does %s know you?"
msgstr ""
#: mod/follow.php:114 mod/dfrn_request.php:879
msgid "Add a personal note:"
msgstr ""
#: mod/follow.php:120 mod/dfrn_request.php:885
msgid "Your Identity Address:"
msgstr ""
#: mod/follow.php:129 mod/contacts.php:632 mod/notifications.php:249
msgid "Profile URL"
msgstr ""
#: mod/follow.php:186
msgid "Contact added"
msgstr ""
#: mod/fsuggest.php:64
msgid "Friend suggestion sent."
msgstr ""
#: mod/fsuggest.php:98
msgid "Suggest Friends"
msgstr ""
#: mod/fsuggest.php:100
#, php-format
msgid "Suggest a friend for %s"
msgstr ""
#: mod/group.php:29
msgid "Group created."
msgstr ""
#: mod/group.php:35
msgid "Could not create group."
msgstr ""
#: mod/group.php:49 mod/group.php:150
msgid "Group not found."
msgstr ""
#: mod/group.php:63
msgid "Group name changed."
msgstr ""
#: mod/group.php:76 mod/profperm.php:20 index.php:406
msgid "Permission denied"
msgstr ""
#: mod/group.php:91
msgid "Save Group"
msgstr ""
#: mod/group.php:97
msgid "Create a group of contacts/friends."
msgstr ""
#: mod/group.php:122
msgid "Group removed."
msgstr ""
#: mod/group.php:124
msgid "Unable to remove group."
msgstr ""
#: mod/group.php:187
msgid "Group Editor"
msgstr ""
#: mod/group.php:200
msgid "Members"
msgstr ""
#: mod/group.php:202 mod/contacts.php:700
msgid "All Contacts"
msgstr ""
#: mod/group.php:233 mod/profperm.php:107
msgid "Click on a contact to add or remove."
msgstr ""
#: mod/hcard.php:11
msgid "No profile"
msgstr ""
#: mod/help.php:41
msgid "Help:"
msgstr ""
#: mod/help.php:53 mod/fetch.php:12 mod/fetch.php:39 mod/fetch.php:48
#: mod/p.php:16 mod/p.php:43 mod/p.php:52 index.php:292
msgid "Not Found"
msgstr ""
#: mod/help.php:56 index.php:295
msgid "Page not found."
msgstr ""
#: mod/home.php:39
#, php-format
msgid "Welcome to %s"
msgstr ""
#: mod/notify.php:60
msgid "No more system notifications."
#: mod/invite.php:28
msgid "Total invitation limit exceeded."
msgstr ""
#: mod/notify.php:64 mod/notifications.php:111
msgid "System Notifications"
msgstr ""
#: mod/search.php:25 mod/network.php:191
msgid "Remove term"
msgstr ""
#: mod/search.php:93 mod/search.php:99 mod/community.php:22
#: mod/directory.php:37 mod/display.php:200 mod/photos.php:944
#: mod/videos.php:194 mod/dfrn_request.php:791 mod/viewcontacts.php:35
msgid "Public access denied."
msgstr ""
#: mod/search.php:100
msgid "Only logged in users are permitted to perform a search."
msgstr ""
#: mod/search.php:124
msgid "Too Many Requests"
msgstr ""
#: mod/search.php:125
msgid "Only one search per minute is permitted for not logged in users."
msgstr ""
#: mod/search.php:224 mod/community.php:66 mod/community.php:75
msgid "No results."
msgstr ""
#: mod/search.php:230
#: mod/invite.php:51
#, php-format
msgid "Items tagged with: %s"
msgid "%s : Not a valid email address."
msgstr ""
#: mod/search.php:232 mod/contacts.php:797 mod/network.php:146
#: mod/invite.php:76
msgid "Please join us on Friendica"
msgstr ""
#: mod/invite.php:87
msgid "Invitation limit exceeded. Please contact your site administrator."
msgstr ""
#: mod/invite.php:91
#, php-format
msgid "Results for: %s"
msgid "%s : Message delivery failed."
msgstr ""
#: mod/friendica.php:70
msgid "This is Friendica, version"
#: mod/invite.php:95
#, php-format
msgid "%d message sent."
msgid_plural "%d messages sent."
msgstr[0] ""
msgstr[1] ""
#: mod/invite.php:114
msgid "You have no more invitations available"
msgstr ""
#: mod/friendica.php:71
msgid "running at web location"
msgstr ""
#: mod/friendica.php:73
#: mod/invite.php:122
#, php-format
msgid ""
"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
"more about the Friendica project."
"Visit %s for a list of public sites that you can join. Friendica members on "
"other sites can all connect with each other, as well as with members of many "
"other social networks."
msgstr ""
#: mod/friendica.php:75
msgid "Bug reports and issues: please visit"
msgstr ""
#: mod/friendica.php:75
msgid "the bugtracker at github"
msgstr ""
#: mod/friendica.php:76
#: mod/invite.php:124
#, php-format
msgid ""
"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
"dot com"
"To accept this invitation, please visit and register at %s or any other "
"public Friendica website."
msgstr ""
#: mod/friendica.php:90
msgid "Installed plugins/addons/apps:"
#: mod/invite.php:125
#, php-format
msgid ""
"Friendica sites all inter-connect to create a huge privacy-enhanced social "
"web that is owned and controlled by its members. They can also connect with "
"many traditional social networks. See %s for a list of alternate Friendica "
"sites you can join."
msgstr ""
#: mod/friendica.php:103
msgid "No installed plugins/addons/apps"
#: mod/invite.php:128
msgid ""
"Our apologies. This system is not currently configured to connect with other "
"public sites or invite members."
msgstr ""
#: mod/invite.php:134
msgid "Send invitations"
msgstr ""
#: mod/invite.php:135
msgid "Enter email addresses, one per line:"
msgstr ""
#: mod/invite.php:136 mod/message.php:332 mod/message.php:515
#: mod/wallmessage.php:135
msgid "Your message:"
msgstr ""
#: mod/invite.php:137
msgid ""
"You are cordially invited to join me and other close friends on Friendica - "
"and help us to create a better social web."
msgstr ""
#: mod/invite.php:139
msgid "You will need to supply this invitation code: $invite_code"
msgstr ""
#: mod/invite.php:139
msgid ""
"Once you have registered, please connect with me via my profile page at:"
msgstr ""
#: mod/invite.php:141
msgid ""
"For more information about the Friendica project and why we feel it is "
"important, please visit http://friendica.com"
msgstr ""
#: mod/localtime.php:24
msgid "Time Conversion"
msgstr ""
#: mod/localtime.php:26
msgid ""
"Friendica provides this service for sharing events with other networks and "
"friends in unknown timezones."
msgstr ""
#: mod/localtime.php:30
#, php-format
msgid "UTC time: %s"
msgstr ""
#: mod/localtime.php:33
#, php-format
msgid "Current timezone: %s"
msgstr ""
#: mod/localtime.php:36
#, php-format
msgid "Converted localtime: %s"
msgstr ""
#: mod/localtime.php:41
msgid "Please select your timezone:"
msgstr ""
#: mod/lockview.php:32 mod/lockview.php:40
msgid "Remote privacy information not available."
msgstr ""
#: mod/lockview.php:49
msgid "Visible to:"
msgstr ""
#: mod/lostpass.php:19
@ -3192,7 +3852,7 @@ msgstr ""
msgid "Password reset request issued. Check your email."
msgstr ""
#: mod/lostpass.php:42
#: mod/lostpass.php:41
#, php-format
msgid ""
"\n"
@ -3209,7 +3869,7 @@ msgid ""
"\t\tissued this request."
msgstr ""
#: mod/lostpass.php:53
#: mod/lostpass.php:52
#, php-format
msgid ""
"\n"
@ -3227,38 +3887,38 @@ msgid ""
"\t\tLogin Name:\t%3$s"
msgstr ""
#: mod/lostpass.php:72
#: mod/lostpass.php:71
#, php-format
msgid "Password reset requested at %s"
msgstr ""
#: mod/lostpass.php:92
#: mod/lostpass.php:91
msgid ""
"Request could not be verified. (You may have previously submitted it.) "
"Password reset failed."
msgstr ""
#: mod/lostpass.php:109 boot.php:1807
#: mod/lostpass.php:110 boot.php:1848
msgid "Password Reset"
msgstr ""
#: mod/lostpass.php:110
#: mod/lostpass.php:111
msgid "Your password has been reset as requested."
msgstr ""
#: mod/lostpass.php:111
#: mod/lostpass.php:112
msgid "Your new password is"
msgstr ""
#: mod/lostpass.php:112
#: mod/lostpass.php:113
msgid "Save or copy your new password - and then"
msgstr ""
#: mod/lostpass.php:113
#: mod/lostpass.php:114
msgid "click here to login"
msgstr ""
#: mod/lostpass.php:114
#: mod/lostpass.php:115
msgid ""
"Your password may be changed from the <em>Settings</em> page after "
"successful login."
@ -3306,7 +3966,7 @@ msgid ""
"your email for further instructions."
msgstr ""
#: mod/lostpass.php:161 boot.php:1795
#: mod/lostpass.php:161 boot.php:1836
msgid "Nickname or Email: "
msgstr ""
@ -3314,362 +3974,42 @@ msgstr ""
msgid "Reset"
msgstr ""
#: mod/hcard.php:10
msgid "No profile"
#: mod/maintenance.php:9
msgid "System down for maintenance"
msgstr ""
#: mod/help.php:41
msgid "Help:"
#: mod/manage.php:141
msgid "Manage Identities and/or Pages"
msgstr ""
#: mod/help.php:53 mod/p.php:16 mod/p.php:43 mod/p.php:52 mod/fetch.php:12
#: mod/fetch.php:39 mod/fetch.php:48 index.php:288
msgid "Not Found"
msgstr ""
#: mod/help.php:56 index.php:291
msgid "Page not found."
msgstr ""
#: mod/lockview.php:31 mod/lockview.php:39
msgid "Remote privacy information not available."
msgstr ""
#: mod/lockview.php:48
msgid "Visible to:"
msgstr ""
#: mod/openid.php:24
msgid "OpenID protocol error. No ID returned."
msgstr ""
#: mod/openid.php:60
#: mod/manage.php:142
msgid ""
"Account not found and OpenID registration is not permitted on this site."
"Toggle between different identities or community/group pages which share "
"your account details or which you have been granted \"manage\" permissions"
msgstr ""
#: mod/uimport.php:50 mod/register.php:198
msgid ""
"This site has exceeded the number of allowed daily account registrations. "
"Please try again tomorrow."
#: mod/manage.php:143
msgid "Select an identity to manage: "
msgstr ""
#: mod/uimport.php:64 mod/register.php:295
msgid "Import"
#: mod/match.php:35
msgid "No keywords to match. Please add keywords to your default profile."
msgstr ""
#: mod/uimport.php:66
msgid "Move account"
#: mod/match.php:88
msgid "is interested in:"
msgstr ""
#: mod/uimport.php:67
msgid "You can import an account from another Friendica server."
#: mod/match.php:102
msgid "Profile Match"
msgstr ""
#: mod/uimport.php:68
msgid ""
"You need to export your account from the old server and upload it here. We "
"will recreate your old account here with all your contacts. We will try also "
"to inform your friends that you moved here."
#: mod/mood.php:134
msgid "Mood"
msgstr ""
#: mod/uimport.php:69
msgid ""
"This feature is experimental. We can't import contacts from the OStatus "
"network (GNU Social/Statusnet) or from Diaspora"
msgstr ""
#: mod/uimport.php:70
msgid "Account file"
msgstr ""
#: mod/uimport.php:70
msgid ""
"To export your account, go to \"Settings->Export your personal data\" and "
"select \"Export account\""
msgstr ""
#: mod/nogroup.php:41 mod/contacts.php:586 mod/contacts.php:930
#: mod/viewcontacts.php:97
#, php-format
msgid "Visit %s's profile [%s]"
msgstr ""
#: mod/nogroup.php:42 mod/contacts.php:931
msgid "Edit contact"
msgstr ""
#: mod/nogroup.php:63
msgid "Contacts who are not members of a group"
msgstr ""
#: mod/uexport.php:29
msgid "Export account"
msgstr ""
#: mod/uexport.php:29
msgid ""
"Export your account info and contacts. Use this to make a backup of your "
"account and/or to move it to another server."
msgstr ""
#: mod/uexport.php:30
msgid "Export all"
msgstr ""
#: mod/uexport.php:30
msgid ""
"Export your accout info, contacts and all your items as json. Could be a "
"very big file, and could take a lot of time. Use this to make a full backup "
"of your account (photos are not exported)"
msgstr ""
#: mod/uexport.php:37 mod/settings.php:95
msgid "Export personal data"
msgstr ""
#: mod/invite.php:27
msgid "Total invitation limit exceeded."
msgstr ""
#: mod/invite.php:49
#, php-format
msgid "%s : Not a valid email address."
msgstr ""
#: mod/invite.php:73
msgid "Please join us on Friendica"
msgstr ""
#: mod/invite.php:84
msgid "Invitation limit exceeded. Please contact your site administrator."
msgstr ""
#: mod/invite.php:89
#, php-format
msgid "%s : Message delivery failed."
msgstr ""
#: mod/invite.php:93
#, php-format
msgid "%d message sent."
msgid_plural "%d messages sent."
msgstr[0] ""
msgstr[1] ""
#: mod/invite.php:112
msgid "You have no more invitations available"
msgstr ""
#: mod/invite.php:120
#, php-format
msgid ""
"Visit %s for a list of public sites that you can join. Friendica members on "
"other sites can all connect with each other, as well as with members of many "
"other social networks."
msgstr ""
#: mod/invite.php:122
#, php-format
msgid ""
"To accept this invitation, please visit and register at %s or any other "
"public Friendica website."
msgstr ""
#: mod/invite.php:123
#, php-format
msgid ""
"Friendica sites all inter-connect to create a huge privacy-enhanced social "
"web that is owned and controlled by its members. They can also connect with "
"many traditional social networks. See %s for a list of alternate Friendica "
"sites you can join."
msgstr ""
#: mod/invite.php:126
msgid ""
"Our apologies. This system is not currently configured to connect with other "
"public sites or invite members."
msgstr ""
#: mod/invite.php:132
msgid "Send invitations"
msgstr ""
#: mod/invite.php:133
msgid "Enter email addresses, one per line:"
msgstr ""
#: mod/invite.php:134 mod/wallmessage.php:151 mod/message.php:351
#: mod/message.php:541
msgid "Your message:"
msgstr ""
#: mod/invite.php:135
msgid ""
"You are cordially invited to join me and other close friends on Friendica - "
"and help us to create a better social web."
msgstr ""
#: mod/invite.php:137
msgid "You will need to supply this invitation code: $invite_code"
msgstr ""
#: mod/invite.php:137
msgid ""
"Once you have registered, please connect with me via my profile page at:"
msgstr ""
#: mod/invite.php:139
msgid ""
"For more information about the Friendica project and why we feel it is "
"important, please visit http://friendica.com"
msgstr ""
#: mod/invite.php:140 mod/localtime.php:45 mod/message.php:357
#: mod/message.php:547 mod/manage.php:143 mod/crepair.php:154
#: mod/content.php:728 mod/fsuggest.php:107 mod/mood.php:137 mod/poke.php:199
#: mod/profiles.php:688 mod/events.php:506 mod/photos.php:1104
#: mod/photos.php:1226 mod/photos.php:1539 mod/photos.php:1590
#: mod/photos.php:1638 mod/photos.php:1724 mod/contacts.php:577
#: mod/install.php:272 mod/install.php:312 object/Item.php:720
#: view/theme/frio/config.php:59 view/theme/quattro/config.php:64
#: view/theme/vier/config.php:107 view/theme/duepuntozero/config.php:59
msgid "Submit"
msgstr ""
#: mod/fbrowser.php:133
msgid "Files"
msgstr ""
#: mod/profperm.php:19 mod/group.php:72 index.php:400
msgid "Permission denied"
msgstr ""
#: mod/profperm.php:25 mod/profperm.php:56
msgid "Invalid profile identifier."
msgstr ""
#: mod/profperm.php:102
msgid "Profile Visibility Editor"
msgstr ""
#: mod/profperm.php:106 mod/group.php:223
msgid "Click on a contact to add or remove."
msgstr ""
#: mod/profperm.php:115
msgid "Visible To"
msgstr ""
#: mod/profperm.php:131
msgid "All Contacts (with secure profile access)"
msgstr ""
#: mod/tagrm.php:41
msgid "Tag removed"
msgstr ""
#: mod/tagrm.php:79
msgid "Remove Item Tag"
msgstr ""
#: mod/tagrm.php:81
msgid "Select a tag to remove: "
msgstr ""
#: mod/tagrm.php:93 mod/delegate.php:139
msgid "Remove"
msgstr ""
#: mod/repair_ostatus.php:14
msgid "Resubscribing to OStatus contacts"
msgstr ""
#: mod/repair_ostatus.php:30
msgid "Error"
msgstr ""
#: mod/repair_ostatus.php:44 mod/ostatus_subscribe.php:51
msgid "Done"
msgstr ""
#: mod/repair_ostatus.php:50 mod/ostatus_subscribe.php:73
msgid "Keep this window open until done."
msgstr ""
#: mod/delegate.php:101
msgid "No potential page delegates located."
msgstr ""
#: mod/delegate.php:132
msgid ""
"Delegates are able to manage all aspects of this account/page except for "
"basic account settings. Please do not delegate your personal account to "
"anybody that you do not trust completely."
msgstr ""
#: mod/delegate.php:133
msgid "Existing Page Managers"
msgstr ""
#: mod/delegate.php:135
msgid "Existing Page Delegates"
msgstr ""
#: mod/delegate.php:137
msgid "Potential Delegates"
msgstr ""
#: mod/delegate.php:140
msgid "Add"
msgstr ""
#: mod/delegate.php:141
msgid "No entries."
msgstr ""
#: mod/credits.php:16
msgid "Credits"
msgstr ""
#: mod/credits.php:17
msgid ""
"Friendica is a community project, that would not be possible without the "
"help of many people. Here is a list of those who have contributed to the "
"code or the translation of Friendica. Thank you all!"
msgstr ""
#: mod/filer.php:30
msgid "- select -"
msgstr ""
#: mod/subthread.php:103
#, php-format
msgid "%1$s is following %2$s's %3$s"
msgstr ""
#: mod/attach.php:8
msgid "Item not available."
msgstr ""
#: mod/attach.php:20
msgid "Item was not found."
msgstr ""
#: mod/apps.php:7 index.php:244
msgid "You must be logged in to use addons. "
msgstr ""
#: mod/apps.php:11
msgid "Applications"
msgstr ""
#: mod/apps.php:14
msgid "No installed applications."
msgstr ""
#: mod/p.php:9
msgid "Not Extended"
#: mod/mood.php:135
msgid "Set your current mood and tell your friends"
msgstr ""
#: mod/newmember.php:6
@ -3722,7 +4062,7 @@ msgid ""
"potential friends know exactly how to find you."
msgstr ""
#: mod/newmember.php:36 mod/profile_photo.php:250 mod/profiles.php:707
#: mod/newmember.php:36 mod/profile_photo.php:256 mod/profiles.php:699
msgid "Upload Profile Photo"
msgstr ""
@ -3841,235 +4181,39 @@ msgid ""
"features and resources."
msgstr ""
#: mod/removeme.php:46 mod/removeme.php:49
msgid "Remove My Account"
#: mod/nogroup.php:43 mod/contacts.php:594 mod/contacts.php:938
#: mod/viewcontacts.php:102
#, php-format
msgid "Visit %s's profile [%s]"
msgstr ""
#: mod/removeme.php:47
#: mod/nogroup.php:44 mod/contacts.php:939
msgid "Edit contact"
msgstr ""
#: mod/nogroup.php:65
msgid "Contacts who are not members of a group"
msgstr ""
#: mod/notify.php:65
msgid "No more system notifications."
msgstr ""
#: mod/notify.php:69 mod/notifications.php:111
msgid "System Notifications"
msgstr ""
#: mod/oexchange.php:21
msgid "Post successful."
msgstr ""
#: mod/openid.php:24
msgid "OpenID protocol error. No ID returned."
msgstr ""
#: mod/openid.php:60
msgid ""
"This will completely remove your account. Once this has been done it is not "
"recoverable."
msgstr ""
#: mod/removeme.php:48
msgid "Please enter your password for verification:"
msgstr ""
#: mod/editpost.php:17 mod/editpost.php:27
msgid "Item not found"
msgstr ""
#: mod/editpost.php:40
msgid "Edit post"
msgstr ""
#: mod/localtime.php:24
msgid "Time Conversion"
msgstr ""
#: mod/localtime.php:26
msgid ""
"Friendica provides this service for sharing events with other networks and "
"friends in unknown timezones."
msgstr ""
#: mod/localtime.php:30
#, php-format
msgid "UTC time: %s"
msgstr ""
#: mod/localtime.php:33
#, php-format
msgid "Current timezone: %s"
msgstr ""
#: mod/localtime.php:36
#, php-format
msgid "Converted localtime: %s"
msgstr ""
#: mod/localtime.php:41
msgid "Please select your timezone:"
msgstr ""
#: mod/bookmarklet.php:41
msgid "The post was created"
msgstr ""
#: mod/group.php:29
msgid "Group created."
msgstr ""
#: mod/group.php:35
msgid "Could not create group."
msgstr ""
#: mod/group.php:47 mod/group.php:140
msgid "Group not found."
msgstr ""
#: mod/group.php:60
msgid "Group name changed."
msgstr ""
#: mod/group.php:87
msgid "Save Group"
msgstr ""
#: mod/group.php:93
msgid "Create a group of contacts/friends."
msgstr ""
#: mod/group.php:113
msgid "Group removed."
msgstr ""
#: mod/group.php:115
msgid "Unable to remove group."
msgstr ""
#: mod/group.php:177
msgid "Group Editor"
msgstr ""
#: mod/group.php:190
msgid "Members"
msgstr ""
#: mod/group.php:192 mod/contacts.php:692
msgid "All Contacts"
msgstr ""
#: mod/group.php:193 mod/content.php:130 mod/network.php:496
msgid "Group is empty"
msgstr ""
#: mod/wallmessage.php:42 mod/wallmessage.php:112
#, php-format
msgid "Number of daily wall messages for %s exceeded. Message failed."
msgstr ""
#: mod/wallmessage.php:56 mod/message.php:71
msgid "No recipient selected."
msgstr ""
#: mod/wallmessage.php:59
msgid "Unable to check your home location."
msgstr ""
#: mod/wallmessage.php:62 mod/message.php:78
msgid "Message could not be sent."
msgstr ""
#: mod/wallmessage.php:65 mod/message.php:81
msgid "Message collection failure."
msgstr ""
#: mod/wallmessage.php:68 mod/message.php:84
msgid "Message sent."
msgstr ""
#: mod/wallmessage.php:86 mod/wallmessage.php:95
msgid "No recipient."
msgstr ""
#: mod/wallmessage.php:142 mod/message.php:341
msgid "Send Private Message"
msgstr ""
#: mod/wallmessage.php:143
#, php-format
msgid ""
"If you wish for %s to respond, please check that the privacy settings on "
"your site allow private mail from unknown senders."
msgstr ""
#: mod/wallmessage.php:144 mod/message.php:342 mod/message.php:536
msgid "To:"
msgstr ""
#: mod/wallmessage.php:145 mod/message.php:347 mod/message.php:538
msgid "Subject:"
msgstr ""
#: mod/share.php:38
msgid "link"
msgstr ""
#: mod/api.php:76 mod/api.php:102
msgid "Authorize application connection"
msgstr ""
#: mod/api.php:77
msgid "Return to your app and insert this Securty Code:"
msgstr ""
#: mod/api.php:89
msgid "Please login to continue."
msgstr ""
#: mod/api.php:104
msgid ""
"Do you want to authorize this application to access your posts and contacts, "
"and/or create new posts for you?"
msgstr ""
#: mod/api.php:106 mod/profiles.php:648 mod/profiles.php:652
#: mod/profiles.php:677 mod/register.php:246 mod/settings.php:1163
#: mod/settings.php:1169 mod/settings.php:1177 mod/settings.php:1181
#: mod/settings.php:1186 mod/settings.php:1192 mod/settings.php:1198
#: mod/settings.php:1204 mod/settings.php:1230 mod/settings.php:1231
#: mod/settings.php:1232 mod/settings.php:1233 mod/settings.php:1234
#: mod/dfrn_request.php:862 mod/follow.php:110
msgid "No"
msgstr ""
#: mod/babel.php:17
msgid "Source (bbcode) text:"
msgstr ""
#: mod/babel.php:23
msgid "Source (Diaspora) text to convert to BBcode:"
msgstr ""
#: mod/babel.php:31
msgid "Source input: "
msgstr ""
#: mod/babel.php:35
msgid "bb2html (raw HTML): "
msgstr ""
#: mod/babel.php:39
msgid "bb2html: "
msgstr ""
#: mod/babel.php:43
msgid "bb2html2bb: "
msgstr ""
#: mod/babel.php:47
msgid "bb2md: "
msgstr ""
#: mod/babel.php:51
msgid "bb2md2html: "
msgstr ""
#: mod/babel.php:55
msgid "bb2dia2bb: "
msgstr ""
#: mod/babel.php:59
msgid "bb2md2html2bb: "
msgstr ""
#: mod/babel.php:69
msgid "Source input (Diaspora format): "
msgstr ""
#: mod/babel.php:74
msgid "diaspora2bb: "
"Account not found and OpenID registration is not permitted on this site."
msgstr ""
#: mod/ostatus_subscribe.php:14
@ -4080,616 +4224,2598 @@ msgstr ""
msgid "No contact provided."
msgstr ""
#: mod/ostatus_subscribe.php:30
#: mod/ostatus_subscribe.php:31
msgid "Couldn't fetch information for contact."
msgstr ""
#: mod/ostatus_subscribe.php:38
#: mod/ostatus_subscribe.php:40
msgid "Couldn't fetch friends for contact."
msgstr ""
#: mod/ostatus_subscribe.php:65
#: mod/ostatus_subscribe.php:54 mod/repair_ostatus.php:44
msgid "Done"
msgstr ""
#: mod/ostatus_subscribe.php:68
msgid "success"
msgstr ""
#: mod/ostatus_subscribe.php:67
#: mod/ostatus_subscribe.php:70
msgid "failed"
msgstr ""
#: mod/ostatus_subscribe.php:69 mod/content.php:792 object/Item.php:245
msgid "ignored"
#: mod/ostatus_subscribe.php:78 mod/repair_ostatus.php:50
msgid "Keep this window open until done."
msgstr ""
#: mod/dfrn_poll.php:104 mod/dfrn_poll.php:537
#, php-format
msgid "%1$s welcomes %2$s"
msgstr ""
#: mod/message.php:75
msgid "Unable to locate contact information."
msgstr ""
#: mod/message.php:215
msgid "Do you really want to delete this message?"
msgstr ""
#: mod/message.php:235
msgid "Message deleted."
msgstr ""
#: mod/message.php:266
msgid "Conversation removed."
msgstr ""
#: mod/message.php:383
msgid "No messages."
msgstr ""
#: mod/message.php:426
msgid "Message not available."
msgstr ""
#: mod/message.php:503
msgid "Delete message"
msgstr ""
#: mod/message.php:529 mod/message.php:609
msgid "Delete conversation"
msgstr ""
#: mod/message.php:531
msgid ""
"No secure communications available. You <strong>may</strong> be able to "
"respond from the sender's profile page."
msgstr ""
#: mod/message.php:535
msgid "Send Reply"
msgstr ""
#: mod/message.php:579
#, php-format
msgid "Unknown sender - %s"
msgstr ""
#: mod/message.php:581
#, php-format
msgid "You and %s"
msgstr ""
#: mod/message.php:583
#, php-format
msgid "%s and You"
msgstr ""
#: mod/message.php:612
msgid "D, d M Y - g:i A"
msgstr ""
#: mod/message.php:615
#, php-format
msgid "%d message"
msgid_plural "%d messages"
msgstr[0] ""
msgstr[1] ""
#: mod/manage.php:139
msgid "Manage Identities and/or Pages"
msgstr ""
#: mod/manage.php:140
msgid ""
"Toggle between different identities or community/group pages which share "
"your account details or which you have been granted \"manage\" permissions"
msgstr ""
#: mod/manage.php:141
msgid "Select an identity to manage: "
msgstr ""
#: mod/crepair.php:87
msgid "Contact settings applied."
msgstr ""
#: mod/crepair.php:89
msgid "Contact update failed."
msgstr ""
#: mod/crepair.php:114 mod/fsuggest.php:20 mod/fsuggest.php:92
#: mod/dfrn_confirm.php:126
msgid "Contact not found."
msgstr ""
#: mod/crepair.php:120
msgid ""
"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect "
"information your communications with this contact may stop working."
msgstr ""
#: mod/crepair.php:121
msgid ""
"Please use your browser 'Back' button <strong>now</strong> if you are "
"uncertain what to do on this page."
msgstr ""
#: mod/crepair.php:134 mod/crepair.php:136
msgid "No mirroring"
msgstr ""
#: mod/crepair.php:134
msgid "Mirror as forwarded posting"
msgstr ""
#: mod/crepair.php:134 mod/crepair.php:136
msgid "Mirror as my own posting"
msgstr ""
#: mod/crepair.php:150
msgid "Return to contact editor"
msgstr ""
#: mod/crepair.php:152
msgid "Refetch contact data"
msgstr ""
#: mod/crepair.php:156
msgid "Remote Self"
msgstr ""
#: mod/crepair.php:159
msgid "Mirror postings from this contact"
msgstr ""
#: mod/crepair.php:161
msgid ""
"Mark this contact as remote_self, this will cause friendica to repost new "
"entries from this contact."
msgstr ""
#: mod/crepair.php:165 mod/settings.php:680 mod/settings.php:706
#: mod/admin.php:1396 mod/admin.php:1409 mod/admin.php:1422 mod/admin.php:1438
msgid "Name"
msgstr ""
#: mod/crepair.php:166
msgid "Account Nickname"
msgstr ""
#: mod/crepair.php:167
msgid "@Tagname - overrides Name/Nickname"
msgstr ""
#: mod/crepair.php:168
msgid "Account URL"
msgstr ""
#: mod/crepair.php:169
msgid "Friend Request URL"
msgstr ""
#: mod/crepair.php:170
msgid "Friend Confirm URL"
msgstr ""
#: mod/crepair.php:171
msgid "Notification Endpoint URL"
msgstr ""
#: mod/crepair.php:172
msgid "Poll/Feed URL"
msgstr ""
#: mod/crepair.php:173
msgid "New photo from this URL"
msgstr ""
#: mod/content.php:119 mod/network.php:469
msgid "No such group"
msgstr ""
#: mod/content.php:135 mod/network.php:500
#, php-format
msgid "Group: %s"
msgstr ""
#: mod/content.php:325 object/Item.php:95
msgid "This entry was edited"
msgstr ""
#: mod/content.php:621 object/Item.php:429
#, php-format
msgid "%d comment"
msgid_plural "%d comments"
msgstr[0] ""
msgstr[1] ""
#: mod/content.php:638 mod/photos.php:1379 object/Item.php:117
msgid "Private Message"
msgstr ""
#: mod/content.php:702 mod/photos.php:1567 object/Item.php:263
msgid "I like this (toggle)"
msgstr ""
#: mod/content.php:702 object/Item.php:263
msgid "like"
msgstr ""
#: mod/content.php:703 mod/photos.php:1568 object/Item.php:264
msgid "I don't like this (toggle)"
msgstr ""
#: mod/content.php:703 object/Item.php:264
msgid "dislike"
msgstr ""
#: mod/content.php:705 object/Item.php:266
msgid "Share this"
msgstr ""
#: mod/content.php:705 object/Item.php:266
msgid "share"
msgstr ""
#: mod/content.php:725 mod/photos.php:1587 mod/photos.php:1635
#: mod/photos.php:1721 object/Item.php:717
msgid "This is you"
msgstr ""
#: mod/content.php:727 mod/content.php:945 mod/photos.php:1589
#: mod/photos.php:1637 mod/photos.php:1723 object/Item.php:403
#: object/Item.php:719 boot.php:971
msgid "Comment"
msgstr ""
#: mod/content.php:729 object/Item.php:721
msgid "Bold"
msgstr ""
#: mod/content.php:730 object/Item.php:722
msgid "Italic"
msgstr ""
#: mod/content.php:731 object/Item.php:723
msgid "Underline"
msgstr ""
#: mod/content.php:732 object/Item.php:724
msgid "Quote"
msgstr ""
#: mod/content.php:733 object/Item.php:725
msgid "Code"
msgstr ""
#: mod/content.php:734 object/Item.php:726
msgid "Image"
msgstr ""
#: mod/content.php:735 object/Item.php:727
msgid "Link"
msgstr ""
#: mod/content.php:736 object/Item.php:728
msgid "Video"
msgstr ""
#: mod/content.php:746 mod/settings.php:740 object/Item.php:122
#: object/Item.php:124
msgid "Edit"
msgstr ""
#: mod/content.php:771 object/Item.php:227
msgid "add star"
msgstr ""
#: mod/content.php:772 object/Item.php:228
msgid "remove star"
msgstr ""
#: mod/content.php:773 object/Item.php:229
msgid "toggle star status"
msgstr ""
#: mod/content.php:776 object/Item.php:232
msgid "starred"
msgstr ""
#: mod/content.php:777 mod/content.php:798 object/Item.php:252
msgid "add tag"
msgstr ""
#: mod/content.php:787 object/Item.php:240
msgid "ignore thread"
msgstr ""
#: mod/content.php:788 object/Item.php:241
msgid "unignore thread"
msgstr ""
#: mod/content.php:789 object/Item.php:242
msgid "toggle ignore status"
msgstr ""
#: mod/content.php:803 object/Item.php:137
msgid "save to folder"
msgstr ""
#: mod/content.php:848 object/Item.php:201
msgid "I will attend"
msgstr ""
#: mod/content.php:848 object/Item.php:201
msgid "I will not attend"
msgstr ""
#: mod/content.php:848 object/Item.php:201
msgid "I might attend"
msgstr ""
#: mod/content.php:912 object/Item.php:369
msgid "to"
msgstr ""
#: mod/content.php:913 object/Item.php:371
msgid "Wall-to-Wall"
msgstr ""
#: mod/content.php:914 object/Item.php:372
msgid "via Wall-To-Wall:"
msgstr ""
#: mod/fsuggest.php:63
msgid "Friend suggestion sent."
msgstr ""
#: mod/fsuggest.php:97
msgid "Suggest Friends"
msgstr ""
#: mod/fsuggest.php:99
#, php-format
msgid "Suggest a friend for %s"
msgstr ""
#: mod/mood.php:133
msgid "Mood"
msgstr ""
#: mod/mood.php:134
msgid "Set your current mood and tell your friends"
msgstr ""
#: mod/poke.php:192
#: mod/poke.php:196
msgid "Poke/Prod"
msgstr ""
#: mod/poke.php:193
#: mod/poke.php:197
msgid "poke, prod or do other things to somebody"
msgstr ""
#: mod/poke.php:194
#: mod/poke.php:198
msgid "Recipient"
msgstr ""
#: mod/poke.php:195
#: mod/poke.php:199
msgid "Choose what you wish to do to recipient"
msgstr ""
#: mod/poke.php:198
#: mod/poke.php:202
msgid "Make this post private"
msgstr ""
#: mod/profile.php:154 mod/cal.php:143 mod/display.php:328
msgid "Access to this profile has been restricted."
msgstr ""
#: mod/profile.php:174
msgid "Tips for New Members"
msgstr ""
#: mod/profile_photo.php:44
msgid "Image uploaded but image cropping failed."
msgstr ""
#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91
#: mod/profile_photo.php:314
#: mod/profile_photo.php:77 mod/profile_photo.php:85 mod/profile_photo.php:93
#: mod/profile_photo.php:323
#, php-format
msgid "Image size reduction [%s] failed."
msgstr ""
#: mod/profile_photo.php:124
#: mod/profile_photo.php:127
msgid ""
"Shift-reload the page or clear browser cache if the new photo does not "
"display immediately."
msgstr ""
#: mod/profile_photo.php:134
#: mod/profile_photo.php:137
msgid "Unable to process image"
msgstr ""
#: mod/profile_photo.php:150 mod/photos.php:786 mod/wall_upload.php:151
#: mod/profile_photo.php:156 mod/wall_upload.php:151 mod/photos.php:803
#, php-format
msgid "Image exceeds size limit of %s"
msgstr ""
#: mod/profile_photo.php:159 mod/photos.php:826 mod/wall_upload.php:188
#: mod/profile_photo.php:165 mod/wall_upload.php:186 mod/photos.php:844
msgid "Unable to process image."
msgstr ""
#: mod/profile_photo.php:248
#: mod/profile_photo.php:254
msgid "Upload File:"
msgstr ""
#: mod/profile_photo.php:249
#: mod/profile_photo.php:255
msgid "Select a profile:"
msgstr ""
#: mod/profile_photo.php:251
#: mod/profile_photo.php:257
msgid "Upload"
msgstr ""
#: mod/profile_photo.php:254
#: mod/profile_photo.php:260
msgid "or"
msgstr ""
#: mod/profile_photo.php:254
#: mod/profile_photo.php:260
msgid "skip this step"
msgstr ""
#: mod/profile_photo.php:254
#: mod/profile_photo.php:260
msgid "select a photo from your photo albums"
msgstr ""
#: mod/profile_photo.php:268
#: mod/profile_photo.php:274
msgid "Crop Image"
msgstr ""
#: mod/profile_photo.php:269
#: mod/profile_photo.php:275
msgid "Please adjust the image cropping for optimum viewing."
msgstr ""
#: mod/profile_photo.php:271
#: mod/profile_photo.php:277
msgid "Done Editing"
msgstr ""
#: mod/profile_photo.php:305
#: mod/profile_photo.php:313
msgid "Image uploaded successfully."
msgstr ""
#: mod/profile_photo.php:307 mod/photos.php:853 mod/wall_upload.php:221
#: mod/profile_photo.php:315 mod/wall_upload.php:219 mod/photos.php:871
msgid "Image upload failed."
msgstr ""
#: mod/regmod.php:55
#: mod/profperm.php:26 mod/profperm.php:57
msgid "Invalid profile identifier."
msgstr ""
#: mod/profperm.php:103
msgid "Profile Visibility Editor"
msgstr ""
#: mod/profperm.php:116
msgid "Visible To"
msgstr ""
#: mod/profperm.php:132
msgid "All Contacts (with secure profile access)"
msgstr ""
#: mod/register.php:93
msgid ""
"Registration successful. Please check your email for further instructions."
msgstr ""
#: mod/register.php:98
#, php-format
msgid ""
"Failed to send email message. Here your accout details:<br> login: %s<br> "
"password: %s<br><br>You can change your password after login."
msgstr ""
#: mod/register.php:105
msgid "Registration successful."
msgstr ""
#: mod/register.php:111
msgid "Your registration can not be processed."
msgstr ""
#: mod/register.php:160
msgid "Your registration is pending approval by the site owner."
msgstr ""
#: mod/register.php:198 mod/uimport.php:51
msgid ""
"This site has exceeded the number of allowed daily account registrations. "
"Please try again tomorrow."
msgstr ""
#: mod/register.php:226
msgid ""
"You may (optionally) fill in this form via OpenID by supplying your OpenID "
"and clicking 'Register'."
msgstr ""
#: mod/register.php:227
msgid ""
"If you are not familiar with OpenID, please leave that field blank and fill "
"in the rest of the items."
msgstr ""
#: mod/register.php:228
msgid "Your OpenID (optional): "
msgstr ""
#: mod/register.php:242
msgid "Include your profile in member directory?"
msgstr ""
#: mod/register.php:267
msgid "Note for the admin"
msgstr ""
#: mod/register.php:267
msgid "Leave a message for the admin, why you want to join this node"
msgstr ""
#: mod/register.php:268
msgid "Membership on this site is by invitation only."
msgstr ""
#: mod/register.php:269
msgid "Your invitation ID: "
msgstr ""
#: mod/register.php:272 mod/admin.php:977
msgid "Registration"
msgstr ""
#: mod/register.php:280
msgid "Your Full Name (e.g. Joe Smith, real or real-looking): "
msgstr ""
#: mod/register.php:281
msgid "Your Email Address: "
msgstr ""
#: mod/register.php:283 mod/settings.php:1278
msgid "New Password:"
msgstr ""
#: mod/register.php:283
msgid "Leave empty for an auto generated password."
msgstr ""
#: mod/register.php:284 mod/settings.php:1279
msgid "Confirm:"
msgstr ""
#: mod/register.php:285
msgid ""
"Choose a profile nickname. This must begin with a text character. Your "
"profile address on this site will then be '<strong>nickname@$sitename</"
"strong>'."
msgstr ""
#: mod/register.php:286
msgid "Choose a nickname: "
msgstr ""
#: mod/register.php:295 mod/uimport.php:66
msgid "Import"
msgstr ""
#: mod/register.php:296
msgid "Import your profile to this friendica instance"
msgstr ""
#: mod/regmod.php:58
msgid "Account approved."
msgstr ""
#: mod/regmod.php:92
#: mod/regmod.php:95
#, php-format
msgid "Registration revoked for %s"
msgstr ""
#: mod/regmod.php:104
#: mod/regmod.php:107
msgid "Please login."
msgstr ""
#: mod/notifications.php:35
msgid "Invalid request identifier."
#: mod/removeme.php:52 mod/removeme.php:55
msgid "Remove My Account"
msgstr ""
#: mod/notifications.php:44 mod/notifications.php:180
#: mod/notifications.php:252
msgid "Discard"
#: mod/removeme.php:53
msgid ""
"This will completely remove your account. Once this has been done it is not "
"recoverable."
msgstr ""
#: mod/removeme.php:54
msgid "Please enter your password for verification:"
msgstr ""
#: mod/repair_ostatus.php:14
msgid "Resubscribing to OStatus contacts"
msgstr ""
#: mod/repair_ostatus.php:30
msgid "Error"
msgstr ""
#: mod/settings.php:36 mod/photos.php:107
msgid "everybody"
msgstr ""
#: mod/settings.php:43 mod/admin.php:1417
msgid "Account"
msgstr ""
#: mod/settings.php:52 mod/admin.php:161
msgid "Additional features"
msgstr ""
#: mod/settings.php:60
msgid "Display"
msgstr ""
#: mod/settings.php:67 mod/settings.php:890
msgid "Social Networks"
msgstr ""
#: mod/settings.php:74 mod/admin.php:159 mod/admin.php:1543 mod/admin.php:1606
msgid "Plugins"
msgstr ""
#: mod/settings.php:88
msgid "Connected apps"
msgstr ""
#: mod/settings.php:95 mod/uexport.php:45
msgid "Export personal data"
msgstr ""
#: mod/settings.php:102
msgid "Remove account"
msgstr ""
#: mod/settings.php:157
msgid "Missing some important data!"
msgstr ""
#: mod/settings.php:160 mod/settings.php:707 mod/contacts.php:812
msgid "Update"
msgstr ""
#: mod/settings.php:271
msgid "Failed to connect with email account using the settings provided."
msgstr ""
#: mod/settings.php:276
msgid "Email settings updated."
msgstr ""
#: mod/settings.php:291
msgid "Features updated"
msgstr ""
#: mod/settings.php:361
msgid "Relocate message has been send to your contacts"
msgstr ""
#: mod/settings.php:380
msgid "Empty passwords are not allowed. Password unchanged."
msgstr ""
#: mod/settings.php:388
msgid "Wrong password."
msgstr ""
#: mod/settings.php:399
msgid "Password changed."
msgstr ""
#: mod/settings.php:401
msgid "Password update failed. Please try again."
msgstr ""
#: mod/settings.php:481
msgid " Please use a shorter name."
msgstr ""
#: mod/settings.php:483
msgid " Name too short."
msgstr ""
#: mod/settings.php:492
msgid "Wrong Password"
msgstr ""
#: mod/settings.php:497
msgid " Not valid email."
msgstr ""
#: mod/settings.php:503
msgid " Cannot change to that email."
msgstr ""
#: mod/settings.php:559
msgid "Private forum has no privacy permissions. Using default privacy group."
msgstr ""
#: mod/settings.php:563
msgid "Private forum has no privacy permissions and no default privacy group."
msgstr ""
#: mod/settings.php:603
msgid "Settings updated."
msgstr ""
#: mod/settings.php:680 mod/settings.php:706 mod/settings.php:742
msgid "Add application"
msgstr ""
#: mod/settings.php:681 mod/settings.php:792 mod/settings.php:841
#: mod/settings.php:908 mod/settings.php:1005 mod/settings.php:1271
#: mod/admin.php:976 mod/admin.php:1607 mod/admin.php:1864 mod/admin.php:1938
#: mod/admin.php:2088
msgid "Save Settings"
msgstr ""
#: mod/settings.php:684 mod/settings.php:710
msgid "Consumer Key"
msgstr ""
#: mod/settings.php:685 mod/settings.php:711
msgid "Consumer Secret"
msgstr ""
#: mod/settings.php:686 mod/settings.php:712
msgid "Redirect"
msgstr ""
#: mod/settings.php:687 mod/settings.php:713
msgid "Icon url"
msgstr ""
#: mod/settings.php:698
msgid "You can't edit this application."
msgstr ""
#: mod/settings.php:741
msgid "Connected Apps"
msgstr ""
#: mod/settings.php:745
msgid "Client key starts with"
msgstr ""
#: mod/settings.php:746
msgid "No name"
msgstr ""
#: mod/settings.php:747
msgid "Remove authorization"
msgstr ""
#: mod/settings.php:759
msgid "No Plugin settings configured"
msgstr ""
#: mod/settings.php:768
msgid "Plugin Settings"
msgstr ""
#: mod/settings.php:782 mod/admin.php:2077 mod/admin.php:2078
msgid "Off"
msgstr ""
#: mod/settings.php:782 mod/admin.php:2077 mod/admin.php:2078
msgid "On"
msgstr ""
#: mod/settings.php:790
msgid "Additional Features"
msgstr ""
#: mod/settings.php:800 mod/settings.php:804
msgid "General Social Media Settings"
msgstr ""
#: mod/settings.php:810
msgid "Disable intelligent shortening"
msgstr ""
#: mod/settings.php:812
msgid ""
"Normally the system tries to find the best link to add to shortened posts. "
"If this option is enabled then every shortened post will always point to the "
"original friendica post."
msgstr ""
#: mod/settings.php:818
msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
msgstr ""
#: mod/settings.php:820
msgid ""
"If you receive a message from an unknown OStatus user, this option decides "
"what to do. If it is checked, a new contact will be created for every "
"unknown user."
msgstr ""
#: mod/settings.php:826
msgid "Default group for OStatus contacts"
msgstr ""
#: mod/settings.php:834
msgid "Your legacy GNU Social account"
msgstr ""
#: mod/settings.php:836
msgid ""
"If you enter your old GNU Social/Statusnet account name here (in the format "
"user@domain.tld), your contacts will be added automatically. The field will "
"be emptied when done."
msgstr ""
#: mod/settings.php:839
msgid "Repair OStatus subscriptions"
msgstr ""
#: mod/settings.php:848 mod/settings.php:849
#, php-format
msgid "Built-in support for %s connectivity is %s"
msgstr ""
#: mod/settings.php:848 mod/settings.php:849
msgid "enabled"
msgstr ""
#: mod/settings.php:848 mod/settings.php:849
msgid "disabled"
msgstr ""
#: mod/settings.php:849
msgid "GNU Social (OStatus)"
msgstr ""
#: mod/settings.php:883
msgid "Email access is disabled on this site."
msgstr ""
#: mod/settings.php:895
msgid "Email/Mailbox Setup"
msgstr ""
#: mod/settings.php:896
msgid ""
"If you wish to communicate with email contacts using this service "
"(optional), please specify how to connect to your mailbox."
msgstr ""
#: mod/settings.php:897
msgid "Last successful email check:"
msgstr ""
#: mod/settings.php:899
msgid "IMAP server name:"
msgstr ""
#: mod/settings.php:900
msgid "IMAP port:"
msgstr ""
#: mod/settings.php:901
msgid "Security:"
msgstr ""
#: mod/settings.php:901 mod/settings.php:906
msgid "None"
msgstr ""
#: mod/settings.php:902
msgid "Email login name:"
msgstr ""
#: mod/settings.php:903
msgid "Email password:"
msgstr ""
#: mod/settings.php:904
msgid "Reply-to address:"
msgstr ""
#: mod/settings.php:905
msgid "Send public posts to all email contacts:"
msgstr ""
#: mod/settings.php:906
msgid "Action after import:"
msgstr ""
#: mod/settings.php:906
msgid "Move to folder"
msgstr ""
#: mod/settings.php:907
msgid "Move to folder:"
msgstr ""
#: mod/settings.php:943 mod/admin.php:863
msgid "No special theme for mobile devices"
msgstr ""
#: mod/settings.php:1003
msgid "Display Settings"
msgstr ""
#: mod/settings.php:1009 mod/settings.php:1032
msgid "Display Theme:"
msgstr ""
#: mod/settings.php:1010
msgid "Mobile Theme:"
msgstr ""
#: mod/settings.php:1011
msgid "Suppress warning of insecure networks"
msgstr ""
#: mod/settings.php:1011
msgid ""
"Should the system suppress the warning that the current group contains "
"members of networks that can't receive non public postings."
msgstr ""
#: mod/settings.php:1012
msgid "Update browser every xx seconds"
msgstr ""
#: mod/settings.php:1012
msgid "Minimum of 10 seconds. Enter -1 to disable it."
msgstr ""
#: mod/settings.php:1013
msgid "Number of items to display per page:"
msgstr ""
#: mod/settings.php:1013 mod/settings.php:1014
msgid "Maximum of 100 items"
msgstr ""
#: mod/settings.php:1014
msgid "Number of items to display per page when viewed from mobile device:"
msgstr ""
#: mod/settings.php:1015
msgid "Don't show emoticons"
msgstr ""
#: mod/settings.php:1016
msgid "Calendar"
msgstr ""
#: mod/settings.php:1017
msgid "Beginning of week:"
msgstr ""
#: mod/settings.php:1018
msgid "Don't show notices"
msgstr ""
#: mod/settings.php:1019
msgid "Infinite scroll"
msgstr ""
#: mod/settings.php:1020
msgid "Automatic updates only at the top of the network page"
msgstr ""
#: mod/settings.php:1021
msgid "Bandwith Saver Mode"
msgstr ""
#: mod/settings.php:1021
msgid ""
"When enabled, embedded content is not displayed on automatic updates, they "
"only show on page reload."
msgstr ""
#: mod/settings.php:1023
msgid "General Theme Settings"
msgstr ""
#: mod/settings.php:1024
msgid "Custom Theme Settings"
msgstr ""
#: mod/settings.php:1025
msgid "Content Settings"
msgstr ""
#: mod/settings.php:1026 view/theme/quattro/config.php:69
#: view/theme/vier/config.php:114 view/theme/duepuntozero/config.php:63
#: view/theme/clean/config.php:89 view/theme/frio/config.php:66
msgid "Theme settings"
msgstr ""
#: mod/settings.php:1110
msgid "Account Types"
msgstr ""
#: mod/settings.php:1111
msgid "Personal Page Subtypes"
msgstr ""
#: mod/settings.php:1112
msgid "Community Forum Subtypes"
msgstr ""
#: mod/settings.php:1119
msgid "Personal Page"
msgstr ""
#: mod/settings.php:1120
msgid "This account is a regular personal profile"
msgstr ""
#: mod/settings.php:1123
msgid "Organisation Page"
msgstr ""
#: mod/settings.php:1124
msgid "This account is a profile for an organisation"
msgstr ""
#: mod/settings.php:1127
msgid "News Page"
msgstr ""
#: mod/settings.php:1128
msgid "This account is a news account/reflector"
msgstr ""
#: mod/settings.php:1131
msgid "Community Forum"
msgstr ""
#: mod/settings.php:1132
msgid ""
"This account is a community forum where people can discuss with each other"
msgstr ""
#: mod/settings.php:1135
msgid "Normal Account Page"
msgstr ""
#: mod/settings.php:1136
msgid "This account is a normal personal profile"
msgstr ""
#: mod/settings.php:1139
msgid "Soapbox Page"
msgstr ""
#: mod/settings.php:1140
msgid "Automatically approve all connection/friend requests as read-only fans"
msgstr ""
#: mod/settings.php:1143
msgid "Public Forum"
msgstr ""
#: mod/settings.php:1144
msgid "Automatically approve all contact requests"
msgstr ""
#: mod/settings.php:1147
msgid "Automatic Friend Page"
msgstr ""
#: mod/settings.php:1148
msgid "Automatically approve all connection/friend requests as friends"
msgstr ""
#: mod/settings.php:1151
msgid "Private Forum [Experimental]"
msgstr ""
#: mod/settings.php:1152
msgid "Private forum - approved members only"
msgstr ""
#: mod/settings.php:1163
msgid "OpenID:"
msgstr ""
#: mod/settings.php:1163
msgid "(Optional) Allow this OpenID to login to this account."
msgstr ""
#: mod/settings.php:1171
msgid "Publish your default profile in your local site directory?"
msgstr ""
#: mod/settings.php:1177
msgid "Publish your default profile in the global social directory?"
msgstr ""
#: mod/settings.php:1184
msgid "Hide your contact/friend list from viewers of your default profile?"
msgstr ""
#: mod/settings.php:1188
msgid ""
"If enabled, posting public messages to Diaspora and other networks isn't "
"possible."
msgstr ""
#: mod/settings.php:1193
msgid "Allow friends to post to your profile page?"
msgstr ""
#: mod/settings.php:1198
msgid "Allow friends to tag your posts?"
msgstr ""
#: mod/settings.php:1203
msgid "Allow us to suggest you as a potential friend to new members?"
msgstr ""
#: mod/settings.php:1208
msgid "Permit unknown people to send you private mail?"
msgstr ""
#: mod/settings.php:1216
msgid "Profile is <strong>not published</strong>."
msgstr ""
#: mod/settings.php:1224
#, php-format
msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
msgstr ""
#: mod/settings.php:1231
msgid "Automatically expire posts after this many days:"
msgstr ""
#: mod/settings.php:1231
msgid "If empty, posts will not expire. Expired posts will be deleted"
msgstr ""
#: mod/settings.php:1232
msgid "Advanced expiration settings"
msgstr ""
#: mod/settings.php:1233
msgid "Advanced Expiration"
msgstr ""
#: mod/settings.php:1234
msgid "Expire posts:"
msgstr ""
#: mod/settings.php:1235
msgid "Expire personal notes:"
msgstr ""
#: mod/settings.php:1236
msgid "Expire starred posts:"
msgstr ""
#: mod/settings.php:1237
msgid "Expire photos:"
msgstr ""
#: mod/settings.php:1238
msgid "Only expire posts by others:"
msgstr ""
#: mod/settings.php:1269
msgid "Account Settings"
msgstr ""
#: mod/settings.php:1277
msgid "Password Settings"
msgstr ""
#: mod/settings.php:1279
msgid "Leave password fields blank unless changing"
msgstr ""
#: mod/settings.php:1280
msgid "Current Password:"
msgstr ""
#: mod/settings.php:1280 mod/settings.php:1281
msgid "Your current password to confirm the changes"
msgstr ""
#: mod/settings.php:1281
msgid "Password:"
msgstr ""
#: mod/settings.php:1285
msgid "Basic Settings"
msgstr ""
#: mod/settings.php:1287
msgid "Email Address:"
msgstr ""
#: mod/settings.php:1288
msgid "Your Timezone:"
msgstr ""
#: mod/settings.php:1289
msgid "Your Language:"
msgstr ""
#: mod/settings.php:1289
msgid ""
"Set the language we use to show you friendica interface and to send you "
"emails"
msgstr ""
#: mod/settings.php:1290
msgid "Default Post Location:"
msgstr ""
#: mod/settings.php:1291
msgid "Use Browser Location:"
msgstr ""
#: mod/settings.php:1294
msgid "Security and Privacy Settings"
msgstr ""
#: mod/settings.php:1296
msgid "Maximum Friend Requests/Day:"
msgstr ""
#: mod/settings.php:1296 mod/settings.php:1326
msgid "(to prevent spam abuse)"
msgstr ""
#: mod/settings.php:1297
msgid "Default Post Permissions"
msgstr ""
#: mod/settings.php:1298
msgid "(click to open/close)"
msgstr ""
#: mod/settings.php:1307 mod/photos.php:1185 mod/photos.php:1567
msgid "Show to Groups"
msgstr ""
#: mod/settings.php:1308 mod/photos.php:1186 mod/photos.php:1568
msgid "Show to Contacts"
msgstr ""
#: mod/settings.php:1309
msgid "Default Private Post"
msgstr ""
#: mod/settings.php:1310
msgid "Default Public Post"
msgstr ""
#: mod/settings.php:1314
msgid "Default Permissions for New Posts"
msgstr ""
#: mod/settings.php:1326
msgid "Maximum private messages per day from unknown people:"
msgstr ""
#: mod/settings.php:1329
msgid "Notification Settings"
msgstr ""
#: mod/settings.php:1330
msgid "By default post a status message when:"
msgstr ""
#: mod/settings.php:1331
msgid "accepting a friend request"
msgstr ""
#: mod/settings.php:1332
msgid "joining a forum/community"
msgstr ""
#: mod/settings.php:1333
msgid "making an <em>interesting</em> profile change"
msgstr ""
#: mod/settings.php:1334
msgid "Send a notification email when:"
msgstr ""
#: mod/settings.php:1335
msgid "You receive an introduction"
msgstr ""
#: mod/settings.php:1336
msgid "Your introductions are confirmed"
msgstr ""
#: mod/settings.php:1337
msgid "Someone writes on your profile wall"
msgstr ""
#: mod/settings.php:1338
msgid "Someone writes a followup comment"
msgstr ""
#: mod/settings.php:1339
msgid "You receive a private message"
msgstr ""
#: mod/settings.php:1340
msgid "You receive a friend suggestion"
msgstr ""
#: mod/settings.php:1341
msgid "You are tagged in a post"
msgstr ""
#: mod/settings.php:1342
msgid "You are poked/prodded/etc. in a post"
msgstr ""
#: mod/settings.php:1344
msgid "Activate desktop notifications"
msgstr ""
#: mod/settings.php:1344
msgid "Show desktop popup on new notifications"
msgstr ""
#: mod/settings.php:1346
msgid "Text-only notification emails"
msgstr ""
#: mod/settings.php:1348
msgid "Send text only notification emails, without the html part"
msgstr ""
#: mod/settings.php:1350
msgid "Advanced Account/Page Type Settings"
msgstr ""
#: mod/settings.php:1351
msgid "Change the behaviour of this account for special situations"
msgstr ""
#: mod/settings.php:1354
msgid "Relocate"
msgstr ""
#: mod/settings.php:1355
msgid ""
"If you have moved this profile from another server, and some of your "
"contacts don't receive your updates, try pushing this button."
msgstr ""
#: mod/settings.php:1356
msgid "Resend relocate message to contacts"
msgstr ""
#: mod/share.php:38
msgid "link"
msgstr ""
#: mod/subthread.php:104
#, php-format
msgid "%1$s is following %2$s's %3$s"
msgstr ""
#: mod/suggest.php:27
msgid "Do you really want to delete this suggestion?"
msgstr ""
#: mod/suggest.php:71
msgid ""
"No suggestions available. If this is a new site, please try again in 24 "
"hours."
msgstr ""
#: mod/suggest.php:84 mod/suggest.php:104
msgid "Ignore/Hide"
msgstr ""
#: mod/tagrm.php:43
msgid "Tag removed"
msgstr ""
#: mod/tagrm.php:82
msgid "Remove Item Tag"
msgstr ""
#: mod/tagrm.php:84
msgid "Select a tag to remove: "
msgstr ""
#: mod/uexport.php:37
msgid "Export account"
msgstr ""
#: mod/uexport.php:37
msgid ""
"Export your account info and contacts. Use this to make a backup of your "
"account and/or to move it to another server."
msgstr ""
#: mod/uexport.php:38
msgid "Export all"
msgstr ""
#: mod/uexport.php:38
msgid ""
"Export your accout info, contacts and all your items as json. Could be a "
"very big file, and could take a lot of time. Use this to make a full backup "
"of your account (photos are not exported)"
msgstr ""
#: mod/uimport.php:68
msgid "Move account"
msgstr ""
#: mod/uimport.php:69
msgid "You can import an account from another Friendica server."
msgstr ""
#: mod/uimport.php:70
msgid ""
"You need to export your account from the old server and upload it here. We "
"will recreate your old account here with all your contacts. We will try also "
"to inform your friends that you moved here."
msgstr ""
#: mod/uimport.php:71
msgid ""
"This feature is experimental. We can't import contacts from the OStatus "
"network (GNU Social/Statusnet) or from Diaspora"
msgstr ""
#: mod/uimport.php:72
msgid "Account file"
msgstr ""
#: mod/uimport.php:72
msgid ""
"To export your account, go to \"Settings->Export your personal data\" and "
"select \"Export account\""
msgstr ""
#: mod/update_community.php:19 mod/update_display.php:23
#: mod/update_network.php:27 mod/update_notes.php:36 mod/update_profile.php:35
msgid "[Embedded content - reload page to view]"
msgstr ""
#: mod/videos.php:124
msgid "Do you really want to delete this video?"
msgstr ""
#: mod/videos.php:129
msgid "Delete Video"
msgstr ""
#: mod/videos.php:208
msgid "No videos selected"
msgstr ""
#: mod/videos.php:309 mod/photos.php:1074
msgid "Access to this item is restricted."
msgstr ""
#: mod/videos.php:391 mod/photos.php:1867
msgid "View Album"
msgstr ""
#: mod/videos.php:400
msgid "Recent Videos"
msgstr ""
#: mod/videos.php:402
msgid "Upload New Videos"
msgstr ""
#: mod/viewsrc.php:7
msgid "Access denied."
msgstr ""
#: mod/wall_attach.php:17 mod/wall_attach.php:25 mod/wall_attach.php:76
#: mod/wall_upload.php:20 mod/wall_upload.php:33 mod/wall_upload.php:86
#: mod/wall_upload.php:122 mod/wall_upload.php:125
msgid "Invalid request."
msgstr ""
#: mod/wall_attach.php:94
msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
msgstr ""
#: mod/wall_attach.php:94
msgid "Or - did you try to upload an empty file?"
msgstr ""
#: mod/wall_attach.php:105
#, php-format
msgid "File exceeds size limit of %s"
msgstr ""
#: mod/wall_attach.php:158 mod/wall_attach.php:174
msgid "File upload failed."
msgstr ""
#: mod/cal.php:271 mod/events.php:387
msgid "View"
msgstr ""
#: mod/cal.php:272 mod/events.php:389
msgid "Previous"
msgstr ""
#: mod/cal.php:273 mod/events.php:390 mod/install.php:235
msgid "Next"
msgstr ""
#: mod/cal.php:282 mod/events.php:399
msgid "list"
msgstr ""
#: mod/cal.php:292
msgid "User not found"
msgstr ""
#: mod/cal.php:308
msgid "This calendar format is not supported"
msgstr ""
#: mod/cal.php:310
msgid "No exportable data found"
msgstr ""
#: mod/cal.php:325
msgid "calendar"
msgstr ""
#: mod/contacts.php:134
#, php-format
msgid "%d contact edited."
msgid_plural "%d contacts edited."
msgstr[0] ""
msgstr[1] ""
#: mod/contacts.php:169 mod/contacts.php:378
msgid "Could not access contact record."
msgstr ""
#: mod/contacts.php:183
msgid "Could not locate selected profile."
msgstr ""
#: mod/contacts.php:216
msgid "Contact updated."
msgstr ""
#: mod/contacts.php:218 mod/dfrn_request.php:588
msgid "Failed to update contact record."
msgstr ""
#: mod/contacts.php:399
msgid "Contact has been blocked"
msgstr ""
#: mod/contacts.php:399
msgid "Contact has been unblocked"
msgstr ""
#: mod/contacts.php:410
msgid "Contact has been ignored"
msgstr ""
#: mod/contacts.php:410
msgid "Contact has been unignored"
msgstr ""
#: mod/contacts.php:422
msgid "Contact has been archived"
msgstr ""
#: mod/contacts.php:422
msgid "Contact has been unarchived"
msgstr ""
#: mod/contacts.php:447
msgid "Drop contact"
msgstr ""
#: mod/contacts.php:450 mod/contacts.php:809
msgid "Do you really want to delete this contact?"
msgstr ""
#: mod/contacts.php:469
msgid "Contact has been removed."
msgstr ""
#: mod/contacts.php:506
#, php-format
msgid "You are mutual friends with %s"
msgstr ""
#: mod/contacts.php:510
#, php-format
msgid "You are sharing with %s"
msgstr ""
#: mod/contacts.php:515
#, php-format
msgid "%s is sharing with you"
msgstr ""
#: mod/contacts.php:535
msgid "Private communications are not available for this contact."
msgstr ""
#: mod/contacts.php:538 mod/admin.php:899
msgid "Never"
msgstr ""
#: mod/contacts.php:542
msgid "(Update was successful)"
msgstr ""
#: mod/contacts.php:542
msgid "(Update was not successful)"
msgstr ""
#: mod/contacts.php:544 mod/contacts.php:972
msgid "Suggest friends"
msgstr ""
#: mod/contacts.php:548
#, php-format
msgid "Network type: %s"
msgstr ""
#: mod/contacts.php:561
msgid "Communications lost with this contact!"
msgstr ""
#: mod/contacts.php:564
msgid "Fetch further information for feeds"
msgstr ""
#: mod/contacts.php:565 mod/admin.php:908
msgid "Disabled"
msgstr ""
#: mod/contacts.php:565
msgid "Fetch information"
msgstr ""
#: mod/contacts.php:565
msgid "Fetch information and keywords"
msgstr ""
#: mod/contacts.php:583
msgid "Contact"
msgstr ""
#: mod/contacts.php:586
msgid "Profile Visibility"
msgstr ""
#: mod/contacts.php:587
#, php-format
msgid ""
"Please choose the profile you would like to display to %s when viewing your "
"profile securely."
msgstr ""
#: mod/contacts.php:588
msgid "Contact Information / Notes"
msgstr ""
#: mod/contacts.php:589
msgid "Edit contact notes"
msgstr ""
#: mod/contacts.php:595
msgid "Block/Unblock contact"
msgstr ""
#: mod/contacts.php:596
msgid "Ignore contact"
msgstr ""
#: mod/contacts.php:597
msgid "Repair URL settings"
msgstr ""
#: mod/contacts.php:598
msgid "View conversations"
msgstr ""
#: mod/contacts.php:604
msgid "Last update:"
msgstr ""
#: mod/contacts.php:606
msgid "Update public posts"
msgstr ""
#: mod/contacts.php:608 mod/contacts.php:982
msgid "Update now"
msgstr ""
#: mod/contacts.php:613 mod/contacts.php:813 mod/contacts.php:991
#: mod/admin.php:1437
msgid "Unblock"
msgstr ""
#: mod/contacts.php:613 mod/contacts.php:813 mod/contacts.php:991
#: mod/admin.php:1436
msgid "Block"
msgstr ""
#: mod/contacts.php:614 mod/contacts.php:814 mod/contacts.php:999
msgid "Unignore"
msgstr ""
#: mod/contacts.php:614 mod/contacts.php:814 mod/contacts.php:999
#: mod/notifications.php:60 mod/notifications.php:179
#: mod/notifications.php:251 mod/contacts.php:606 mod/contacts.php:806
#: mod/contacts.php:991
#: mod/notifications.php:257
msgid "Ignore"
msgstr ""
#: mod/notifications.php:105
msgid "Network Notifications"
#: mod/contacts.php:618
msgid "Currently blocked"
msgstr ""
#: mod/notifications.php:117
msgid "Personal Notifications"
#: mod/contacts.php:619
msgid "Currently ignored"
msgstr ""
#: mod/notifications.php:123
msgid "Home Notifications"
#: mod/contacts.php:620
msgid "Currently archived"
msgstr ""
#: mod/notifications.php:152
msgid "Show Ignored Requests"
msgstr ""
#: mod/notifications.php:152
msgid "Hide Ignored Requests"
msgstr ""
#: mod/notifications.php:164 mod/notifications.php:222
msgid "Notification type: "
msgstr ""
#: mod/notifications.php:167
#, php-format
msgid "suggested by %s"
msgstr ""
#: mod/notifications.php:172 mod/notifications.php:239 mod/contacts.php:613
#: mod/contacts.php:621 mod/notifications.php:172 mod/notifications.php:245
msgid "Hide this contact from others"
msgstr ""
#: mod/notifications.php:173 mod/notifications.php:240
msgid "Post a new friend activity"
msgstr ""
#: mod/notifications.php:173 mod/notifications.php:240
msgid "if applicable"
msgstr ""
#: mod/notifications.php:176 mod/notifications.php:249 mod/admin.php:1412
msgid "Approve"
msgstr ""
#: mod/notifications.php:195
msgid "Claims to be known to you: "
msgstr ""
#: mod/notifications.php:196
msgid "yes"
msgstr ""
#: mod/notifications.php:196
msgid "no"
msgstr ""
#: mod/notifications.php:197
#: mod/contacts.php:621
msgid ""
"Shall your connection be bidirectional or not? \"Friend\" implies that you "
"allow to read and you subscribe to their posts. \"Fan/Admirer\" means that "
"you allow to read but you do not want to read theirs. Approve as: "
"Replies/likes to your public posts <strong>may</strong> still be visible"
msgstr ""
#: mod/notifications.php:200
#: mod/contacts.php:622
msgid "Notification for new posts"
msgstr ""
#: mod/contacts.php:622
msgid "Send a notification of every new post of this contact"
msgstr ""
#: mod/contacts.php:625
msgid "Blacklisted keywords"
msgstr ""
#: mod/contacts.php:625
msgid ""
"Shall your connection be bidirectional or not? \"Friend\" implies that you "
"allow to read and you subscribe to their posts. \"Sharer\" means that you "
"allow to read but you do not want to read theirs. Approve as: "
"Comma separated list of keywords that should not be converted to hashtags, "
"when \"Fetch information and keywords\" is selected"
msgstr ""
#: mod/notifications.php:209
msgid "Friend"
#: mod/contacts.php:643
msgid "Actions"
msgstr ""
#: mod/notifications.php:210
msgid "Sharer"
#: mod/contacts.php:646
msgid "Contact Settings"
msgstr ""
#: mod/notifications.php:210
msgid "Fan/Admirer"
#: mod/contacts.php:692
msgid "Suggestions"
msgstr ""
#: mod/notifications.php:243 mod/contacts.php:624 mod/follow.php:126
msgid "Profile URL"
#: mod/contacts.php:695
msgid "Suggest potential friends"
msgstr ""
#: mod/notifications.php:260
msgid "No introductions."
#: mod/contacts.php:703
msgid "Show all contacts"
msgstr ""
#: mod/notifications.php:299
msgid "Show unread"
#: mod/contacts.php:708
msgid "Unblocked"
msgstr ""
#: mod/notifications.php:299
msgid "Show all"
#: mod/contacts.php:711
msgid "Only show unblocked contacts"
msgstr ""
#: mod/notifications.php:305
#: mod/contacts.php:717
msgid "Blocked"
msgstr ""
#: mod/contacts.php:720
msgid "Only show blocked contacts"
msgstr ""
#: mod/contacts.php:726
msgid "Ignored"
msgstr ""
#: mod/contacts.php:729
msgid "Only show ignored contacts"
msgstr ""
#: mod/contacts.php:735
msgid "Archived"
msgstr ""
#: mod/contacts.php:738
msgid "Only show archived contacts"
msgstr ""
#: mod/contacts.php:744
msgid "Hidden"
msgstr ""
#: mod/contacts.php:747
msgid "Only show hidden contacts"
msgstr ""
#: mod/contacts.php:804
msgid "Search your contacts"
msgstr ""
#: mod/contacts.php:805 mod/network.php:145 mod/search.php:232
#, php-format
msgid "No more %s notifications."
msgid "Results for: %s"
msgstr ""
#: mod/profiles.php:19 mod/profiles.php:134 mod/profiles.php:180
#: mod/profiles.php:617 mod/dfrn_confirm.php:70
#: mod/contacts.php:815 mod/contacts.php:1007
msgid "Archive"
msgstr ""
#: mod/contacts.php:815 mod/contacts.php:1007
msgid "Unarchive"
msgstr ""
#: mod/contacts.php:818
msgid "Batch Actions"
msgstr ""
#: mod/contacts.php:864
msgid "View all contacts"
msgstr ""
#: mod/contacts.php:874
msgid "View all common friends"
msgstr ""
#: mod/contacts.php:881
msgid "Advanced Contact Settings"
msgstr ""
#: mod/contacts.php:915
msgid "Mutual Friendship"
msgstr ""
#: mod/contacts.php:919
msgid "is a fan of yours"
msgstr ""
#: mod/contacts.php:923
msgid "you are a fan of"
msgstr ""
#: mod/contacts.php:993
msgid "Toggle Blocked status"
msgstr ""
#: mod/contacts.php:1001
msgid "Toggle Ignored status"
msgstr ""
#: mod/contacts.php:1009
msgid "Toggle Archive status"
msgstr ""
#: mod/contacts.php:1017
msgid "Delete contact"
msgstr ""
#: mod/dfrn_confirm.php:70 mod/profiles.php:19 mod/profiles.php:134
#: mod/profiles.php:180 mod/profiles.php:619
msgid "Profile not found."
msgstr ""
#: mod/dfrn_confirm.php:127
msgid ""
"This may occasionally happen if contact was requested by both persons and it "
"has already been approved."
msgstr ""
#: mod/dfrn_confirm.php:244
msgid "Response from remote site was not understood."
msgstr ""
#: mod/dfrn_confirm.php:253 mod/dfrn_confirm.php:258
msgid "Unexpected response from remote site: "
msgstr ""
#: mod/dfrn_confirm.php:267
msgid "Confirmation completed successfully."
msgstr ""
#: mod/dfrn_confirm.php:269 mod/dfrn_confirm.php:283 mod/dfrn_confirm.php:290
msgid "Remote site reported: "
msgstr ""
#: mod/dfrn_confirm.php:281
msgid "Temporary failure. Please wait and try again."
msgstr ""
#: mod/dfrn_confirm.php:288
msgid "Introduction failed or was revoked."
msgstr ""
#: mod/dfrn_confirm.php:418
msgid "Unable to set contact photo."
msgstr ""
#: mod/dfrn_confirm.php:559
#, php-format
msgid "No user record found for '%s' "
msgstr ""
#: mod/dfrn_confirm.php:569
msgid "Our site encryption key is apparently messed up."
msgstr ""
#: mod/dfrn_confirm.php:580
msgid "Empty site URL was provided or URL could not be decrypted by us."
msgstr ""
#: mod/dfrn_confirm.php:601
msgid "Contact record was not found for you on our site."
msgstr ""
#: mod/dfrn_confirm.php:615
#, php-format
msgid "Site public key not available in contact record for URL %s."
msgstr ""
#: mod/dfrn_confirm.php:635
msgid ""
"The ID provided by your system is a duplicate on our system. It should work "
"if you try again."
msgstr ""
#: mod/dfrn_confirm.php:646
msgid "Unable to set your contact credentials on our system."
msgstr ""
#: mod/dfrn_confirm.php:708
msgid "Unable to update your contact profile details on our system"
msgstr ""
#: mod/dfrn_confirm.php:780
#, php-format
msgid "%1$s has joined %2$s"
msgstr ""
#: mod/editpost.php:17 mod/editpost.php:27
msgid "Item not found"
msgstr ""
#: mod/editpost.php:32
msgid "Edit post"
msgstr ""
#: mod/events.php:100 mod/events.php:102
msgid "Event can not end before it has started."
msgstr ""
#: mod/events.php:109 mod/events.php:111
msgid "Event title and start time are required."
msgstr ""
#: mod/events.php:388
msgid "Create New Event"
msgstr ""
#: mod/events.php:489
msgid "Event details"
msgstr ""
#: mod/events.php:490
msgid "Starting date and Title are required."
msgstr ""
#: mod/events.php:491 mod/events.php:492
msgid "Event Starts:"
msgstr ""
#: mod/events.php:491 mod/events.php:503 mod/profiles.php:708
msgid "Required"
msgstr ""
#: mod/events.php:493 mod/events.php:509
msgid "Finish date/time is not known or not relevant"
msgstr ""
#: mod/events.php:495 mod/events.php:496
msgid "Event Finishes:"
msgstr ""
#: mod/events.php:497 mod/events.php:510
msgid "Adjust for viewer timezone"
msgstr ""
#: mod/events.php:499
msgid "Description:"
msgstr ""
#: mod/events.php:503 mod/events.php:505
msgid "Title:"
msgstr ""
#: mod/events.php:506 mod/events.php:507
msgid "Share this event"
msgstr ""
#: mod/fbrowser.php:132
msgid "Files"
msgstr ""
#: mod/friendica.php:72
msgid "This is Friendica, version"
msgstr ""
#: mod/friendica.php:73
msgid "running at web location"
msgstr ""
#: mod/friendica.php:75
msgid ""
"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
"more about the Friendica project."
msgstr ""
#: mod/friendica.php:77
msgid "Bug reports and issues: please visit"
msgstr ""
#: mod/friendica.php:77
msgid "the bugtracker at github"
msgstr ""
#: mod/friendica.php:78
msgid ""
"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
"dot com"
msgstr ""
#: mod/friendica.php:92
msgid "Installed plugins/addons/apps:"
msgstr ""
#: mod/friendica.php:105
msgid "No installed plugins/addons/apps"
msgstr ""
#: mod/item.php:118
msgid "Unable to locate original post."
msgstr ""
#: mod/item.php:336
msgid "Empty post discarded."
msgstr ""
#: mod/item.php:889
msgid "System error. Post not saved."
msgstr ""
#: mod/item.php:979
#, php-format
msgid ""
"This message was sent to you by %s, a member of the Friendica social network."
msgstr ""
#: mod/item.php:981
#, php-format
msgid "You may visit them online at %s"
msgstr ""
#: mod/item.php:982
msgid ""
"Please contact the sender by replying to this post if you do not wish to "
"receive these messages."
msgstr ""
#: mod/item.php:986
#, php-format
msgid "%s posted an update."
msgstr ""
#: mod/message.php:60 mod/wallmessage.php:50
msgid "No recipient selected."
msgstr ""
#: mod/message.php:64
msgid "Unable to locate contact information."
msgstr ""
#: mod/message.php:67 mod/wallmessage.php:56
msgid "Message could not be sent."
msgstr ""
#: mod/message.php:70 mod/wallmessage.php:59
msgid "Message collection failure."
msgstr ""
#: mod/message.php:73 mod/wallmessage.php:62
msgid "Message sent."
msgstr ""
#: mod/message.php:204
msgid "Do you really want to delete this message?"
msgstr ""
#: mod/message.php:224
msgid "Message deleted."
msgstr ""
#: mod/message.php:255
msgid "Conversation removed."
msgstr ""
#: mod/message.php:322 mod/wallmessage.php:126
msgid "Send Private Message"
msgstr ""
#: mod/message.php:323 mod/message.php:510 mod/wallmessage.php:128
msgid "To:"
msgstr ""
#: mod/message.php:328 mod/message.php:512 mod/wallmessage.php:129
msgid "Subject:"
msgstr ""
#: mod/message.php:364
msgid "No messages."
msgstr ""
#: mod/message.php:403
msgid "Message not available."
msgstr ""
#: mod/message.php:477
msgid "Delete message"
msgstr ""
#: mod/message.php:503 mod/message.php:583
msgid "Delete conversation"
msgstr ""
#: mod/message.php:505
msgid ""
"No secure communications available. You <strong>may</strong> be able to "
"respond from the sender's profile page."
msgstr ""
#: mod/message.php:509
msgid "Send Reply"
msgstr ""
#: mod/message.php:553
#, php-format
msgid "Unknown sender - %s"
msgstr ""
#: mod/message.php:555
#, php-format
msgid "You and %s"
msgstr ""
#: mod/message.php:557
#, php-format
msgid "%s and You"
msgstr ""
#: mod/message.php:586
msgid "D, d M Y - g:i A"
msgstr ""
#: mod/message.php:589
#, php-format
msgid "%d message"
msgid_plural "%d messages"
msgstr[0] ""
msgstr[1] ""
#: mod/p.php:9
msgid "Not Extended"
msgstr ""
#: mod/ping.php:270
msgid "{0} wants to be your friend"
msgstr ""
#: mod/ping.php:285
msgid "{0} sent you a message"
msgstr ""
#: mod/ping.php:300
msgid "{0} requested registration"
msgstr ""
#: mod/wallmessage.php:42 mod/wallmessage.php:106
#, php-format
msgid "Number of daily wall messages for %s exceeded. Message failed."
msgstr ""
#: mod/wallmessage.php:53
msgid "Unable to check your home location."
msgstr ""
#: mod/wallmessage.php:80 mod/wallmessage.php:89
msgid "No recipient."
msgstr ""
#: mod/wallmessage.php:127
#, php-format
msgid ""
"If you wish for %s to respond, please check that the privacy settings on "
"your site allow private mail from unknown senders."
msgstr ""
#: mod/photos.php:90 mod/photos.php:1876
msgid "Recent Photos"
msgstr ""
#: mod/photos.php:93 mod/photos.php:1303 mod/photos.php:1878
msgid "Upload New Photos"
msgstr ""
#: mod/photos.php:171
msgid "Contact information unavailable"
msgstr ""
#: mod/photos.php:192
msgid "Album not found."
msgstr ""
#: mod/photos.php:225 mod/photos.php:237 mod/photos.php:1247
msgid "Delete Album"
msgstr ""
#: mod/photos.php:235
msgid "Do you really want to delete this photo album and all its photos?"
msgstr ""
#: mod/photos.php:317 mod/photos.php:328 mod/photos.php:1563
msgid "Delete Photo"
msgstr ""
#: mod/photos.php:326
msgid "Do you really want to delete this photo?"
msgstr ""
#: mod/photos.php:705
#, php-format
msgid "%1$s was tagged in %2$s by %3$s"
msgstr ""
#: mod/photos.php:705
msgid "a photo"
msgstr ""
#: mod/photos.php:811
msgid "Image file is empty."
msgstr ""
#: mod/photos.php:974
msgid "No photos selected"
msgstr ""
#: mod/photos.php:1134
#, php-format
msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
msgstr ""
#: mod/photos.php:1168
msgid "Upload Photos"
msgstr ""
#: mod/photos.php:1172 mod/photos.php:1242
msgid "New album name: "
msgstr ""
#: mod/photos.php:1173
msgid "or existing album name: "
msgstr ""
#: mod/photos.php:1174
msgid "Do not show a status post for this upload"
msgstr ""
#: mod/photos.php:1187
msgid "Private Photo"
msgstr ""
#: mod/photos.php:1188
msgid "Public Photo"
msgstr ""
#: mod/photos.php:1254
msgid "Edit Album"
msgstr ""
#: mod/photos.php:1260
msgid "Show Newest First"
msgstr ""
#: mod/photos.php:1262
msgid "Show Oldest First"
msgstr ""
#: mod/photos.php:1289 mod/photos.php:1861
msgid "View Photo"
msgstr ""
#: mod/photos.php:1335
msgid "Permission denied. Access to this item may be restricted."
msgstr ""
#: mod/photos.php:1337
msgid "Photo not available"
msgstr ""
#: mod/photos.php:1395
msgid "View photo"
msgstr ""
#: mod/photos.php:1395
msgid "Edit photo"
msgstr ""
#: mod/photos.php:1396
msgid "Use as profile photo"
msgstr ""
#: mod/photos.php:1421
msgid "View Full Size"
msgstr ""
#: mod/photos.php:1507
msgid "Tags: "
msgstr ""
#: mod/photos.php:1510
msgid "[Remove any tag]"
msgstr ""
#: mod/photos.php:1549
msgid "New album name"
msgstr ""
#: mod/photos.php:1550
msgid "Caption"
msgstr ""
#: mod/photos.php:1551
msgid "Add a Tag"
msgstr ""
#: mod/photos.php:1551
msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
msgstr ""
#: mod/photos.php:1552
msgid "Do not rotate"
msgstr ""
#: mod/photos.php:1553
msgid "Rotate CW (right)"
msgstr ""
#: mod/photos.php:1554
msgid "Rotate CCW (left)"
msgstr ""
#: mod/photos.php:1569
msgid "Private photo"
msgstr ""
#: mod/photos.php:1570
msgid "Public photo"
msgstr ""
#: mod/photos.php:1792
msgid "Map"
msgstr ""
#: mod/dfrn_request.php:101
msgid "This introduction has already been accepted."
msgstr ""
#: mod/dfrn_request.php:124 mod/dfrn_request.php:523
msgid "Profile location is not valid or does not contain profile information."
msgstr ""
#: mod/dfrn_request.php:129 mod/dfrn_request.php:528
msgid "Warning: profile location has no identifiable owner name."
msgstr ""
#: mod/dfrn_request.php:132 mod/dfrn_request.php:531
msgid "Warning: profile location has no profile photo."
msgstr ""
#: mod/dfrn_request.php:136 mod/dfrn_request.php:535
#, php-format
msgid "%d required parameter was not found at the given location"
msgid_plural "%d required parameters were not found at the given location"
msgstr[0] ""
msgstr[1] ""
#: mod/dfrn_request.php:180
msgid "Introduction complete."
msgstr ""
#: mod/dfrn_request.php:225
msgid "Unrecoverable protocol error."
msgstr ""
#: mod/dfrn_request.php:253
msgid "Profile unavailable."
msgstr ""
#: mod/dfrn_request.php:280
#, php-format
msgid "%s has received too many connection requests today."
msgstr ""
#: mod/dfrn_request.php:281
msgid "Spam protection measures have been invoked."
msgstr ""
#: mod/dfrn_request.php:282
msgid "Friends are advised to please try again in 24 hours."
msgstr ""
#: mod/dfrn_request.php:344
msgid "Invalid locator"
msgstr ""
#: mod/dfrn_request.php:353
msgid "Invalid email address."
msgstr ""
#: mod/dfrn_request.php:378
msgid "This account has not been configured for email. Request failed."
msgstr ""
#: mod/dfrn_request.php:481
msgid "You have already introduced yourself here."
msgstr ""
#: mod/dfrn_request.php:485
#, php-format
msgid "Apparently you are already friends with %s."
msgstr ""
#: mod/dfrn_request.php:506
msgid "Invalid profile URL."
msgstr ""
#: mod/dfrn_request.php:609
msgid "Your introduction has been sent."
msgstr ""
#: mod/dfrn_request.php:651
msgid ""
"Remote subscription can't be done for your network. Please subscribe "
"directly on your system."
msgstr ""
#: mod/dfrn_request.php:672
msgid "Please login to confirm introduction."
msgstr ""
#: mod/dfrn_request.php:682
msgid ""
"Incorrect identity currently logged in. Please login to <strong>this</"
"strong> profile."
msgstr ""
#: mod/dfrn_request.php:696 mod/dfrn_request.php:713
msgid "Confirm"
msgstr ""
#: mod/dfrn_request.php:708
msgid "Hide this contact"
msgstr ""
#: mod/dfrn_request.php:711
#, php-format
msgid "Welcome home %s."
msgstr ""
#: mod/dfrn_request.php:712
#, php-format
msgid "Please confirm your introduction/connection request to %s."
msgstr ""
#: mod/dfrn_request.php:843
msgid ""
"Please enter your 'Identity Address' from one of the following supported "
"communications networks:"
msgstr ""
#: mod/dfrn_request.php:867
#, php-format
msgid ""
"If you are not yet a member of the free social web, <a href=\"%s/siteinfo"
"\">follow this link to find a public Friendica site and join us today</a>."
msgstr ""
#: mod/dfrn_request.php:872
msgid "Friend/Connection Request"
msgstr ""
#: mod/dfrn_request.php:873
msgid ""
"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
"testuser@identi.ca"
msgstr ""
#: mod/dfrn_request.php:882
msgid "StatusNet/Federated Social Web"
msgstr ""
#: mod/dfrn_request.php:884
#, php-format
msgid ""
" - please do not use this form. Instead, enter %s into your Diaspora search "
"bar."
msgstr ""
#: mod/install.php:140
msgid "Friendica Communications Server - Setup"
msgstr ""
#: mod/install.php:146
msgid "Could not connect to database."
msgstr ""
#: mod/install.php:150
msgid "Could not create table."
msgstr ""
#: mod/install.php:156
msgid "Your Friendica site database has been installed."
msgstr ""
#: mod/install.php:161
msgid ""
"You may need to import the file \"database.sql\" manually using phpmyadmin "
"or mysql."
msgstr ""
#: mod/install.php:162 mod/install.php:234 mod/install.php:609
msgid "Please see the file \"INSTALL.txt\"."
msgstr ""
#: mod/install.php:174
msgid "Database already in use."
msgstr ""
#: mod/install.php:231
msgid "System check"
msgstr ""
#: mod/install.php:236
msgid "Check again"
msgstr ""
#: mod/install.php:255
msgid "Database connection"
msgstr ""
#: mod/install.php:256
msgid ""
"In order to install Friendica we need to know how to connect to your "
"database."
msgstr ""
#: mod/install.php:257
msgid ""
"Please contact your hosting provider or site administrator if you have "
"questions about these settings."
msgstr ""
#: mod/install.php:258
msgid ""
"The database you specify below should already exist. If it does not, please "
"create it before continuing."
msgstr ""
#: mod/install.php:262
msgid "Database Server Name"
msgstr ""
#: mod/install.php:263
msgid "Database Login Name"
msgstr ""
#: mod/install.php:264
msgid "Database Login Password"
msgstr ""
#: mod/install.php:264
msgid "For security reasons the password must not be empty"
msgstr ""
#: mod/install.php:265
msgid "Database Name"
msgstr ""
#: mod/install.php:266 mod/install.php:307
msgid "Site administrator email address"
msgstr ""
#: mod/install.php:266 mod/install.php:307
msgid ""
"Your account email address must match this in order to use the web admin "
"panel."
msgstr ""
#: mod/install.php:270 mod/install.php:310
msgid "Please select a default timezone for your website"
msgstr ""
#: mod/install.php:297
msgid "Site settings"
msgstr ""
#: mod/install.php:311
msgid "System Language:"
msgstr ""
#: mod/install.php:311
msgid ""
"Set the default language for your Friendica installation interface and to "
"send emails."
msgstr ""
#: mod/install.php:351
msgid "Could not find a command line version of PHP in the web server PATH."
msgstr ""
#: mod/install.php:352
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. See <a href='https://"
"github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-"
"poller'>'Setup the poller'</a>"
msgstr ""
#: mod/install.php:356
msgid "PHP executable path"
msgstr ""
#: mod/install.php:356
msgid ""
"Enter full path to php executable. You can leave this blank to continue the "
"installation."
msgstr ""
#: mod/install.php:361
msgid "Command line PHP"
msgstr ""
#: mod/install.php:370
msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
msgstr ""
#: mod/install.php:371
msgid "Found PHP version: "
msgstr ""
#: mod/install.php:373
msgid "PHP cli binary"
msgstr ""
#: mod/install.php:384
msgid ""
"The command line version of PHP on your system does not have "
"\"register_argc_argv\" enabled."
msgstr ""
#: mod/install.php:385
msgid "This is required for message delivery to work."
msgstr ""
#: mod/install.php:387
msgid "PHP register_argc_argv"
msgstr ""
#: mod/install.php:410
msgid ""
"Error: the \"openssl_pkey_new\" function on this system is not able to "
"generate encryption keys"
msgstr ""
#: mod/install.php:411
msgid ""
"If running under Windows, please see \"http://www.php.net/manual/en/openssl."
"installation.php\"."
msgstr ""
#: mod/install.php:413
msgid "Generate encryption keys"
msgstr ""
#: mod/install.php:420
msgid "libCurl PHP module"
msgstr ""
#: mod/install.php:421
msgid "GD graphics PHP module"
msgstr ""
#: mod/install.php:422
msgid "OpenSSL PHP module"
msgstr ""
#: mod/install.php:423
msgid "mysqli PHP module"
msgstr ""
#: mod/install.php:424
msgid "mb_string PHP module"
msgstr ""
#: mod/install.php:425
msgid "mcrypt PHP module"
msgstr ""
#: mod/install.php:426
msgid "XML PHP module"
msgstr ""
#: mod/install.php:427
msgid "iconv module"
msgstr ""
#: mod/install.php:431 mod/install.php:433
msgid "Apache mod_rewrite module"
msgstr ""
#: mod/install.php:431
msgid ""
"Error: Apache webserver mod-rewrite module is required but not installed."
msgstr ""
#: mod/install.php:439
msgid "Error: libCURL PHP module required but not installed."
msgstr ""
#: mod/install.php:443
msgid ""
"Error: GD graphics PHP module with JPEG support required but not installed."
msgstr ""
#: mod/install.php:447
msgid "Error: openssl PHP module required but not installed."
msgstr ""
#: mod/install.php:451
msgid "Error: mysqli PHP module required but not installed."
msgstr ""
#: mod/install.php:455
msgid "Error: mb_string PHP module required but not installed."
msgstr ""
#: mod/install.php:459
msgid "Error: mcrypt PHP module required but not installed."
msgstr ""
#: mod/install.php:463
msgid "Error: iconv PHP module required but not installed."
msgstr ""
#: mod/install.php:472
msgid ""
"If you are using php_cli, please make sure that mcrypt module is enabled in "
"its config file"
msgstr ""
#: mod/install.php:475
msgid ""
"Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 "
"encryption layer."
msgstr ""
#: mod/install.php:477
msgid "mcrypt_create_iv() function"
msgstr ""
#: mod/install.php:485
msgid "Error, XML PHP module required but not installed."
msgstr ""
#: mod/install.php:500
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 ""
#: mod/install.php:501
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 ""
#: mod/install.php:502
msgid ""
"At the end of this procedure, we will give you a text to save in a file "
"named .htconfig.php in your Friendica top folder."
msgstr ""
#: mod/install.php:503
msgid ""
"You can alternatively skip this procedure and perform a manual installation. "
"Please see the file \"INSTALL.txt\" for instructions."
msgstr ""
#: mod/install.php:506
msgid ".htconfig.php is writable"
msgstr ""
#: mod/install.php:516
msgid ""
"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
"compiles templates to PHP to speed up rendering."
msgstr ""
#: mod/install.php:517
msgid ""
"In order to store these compiled templates, the web server needs to have "
"write access to the directory view/smarty3/ under the Friendica top level "
"folder."
msgstr ""
#: mod/install.php:518
msgid ""
"Please ensure that the user that your web server runs as (e.g. www-data) has "
"write access to this folder."
msgstr ""
#: mod/install.php:519
msgid ""
"Note: as a security measure, you should give the web server write access to "
"view/smarty3/ only--not the template files (.tpl) that it contains."
msgstr ""
#: mod/install.php:522
msgid "view/smarty3 is writable"
msgstr ""
#: mod/install.php:538
msgid ""
"Url rewrite in .htaccess is not working. Check your server configuration."
msgstr ""
#: mod/install.php:540
msgid "Url rewrite is working"
msgstr ""
#: mod/install.php:559
msgid "ImageMagick PHP extension is not installed"
msgstr ""
#: mod/install.php:561
msgid "ImageMagick PHP extension is installed"
msgstr ""
#: mod/install.php:563
msgid "ImageMagick supports GIF"
msgstr ""
#: mod/install.php:570
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 ""
#: mod/install.php:607
msgid "<h1>What next</h1>"
msgstr ""
#: mod/install.php:608
msgid ""
"IMPORTANT: You will need to [manually] setup a scheduled task for the poller."
msgstr ""
#: mod/profiles.php:38
msgid "Profile deleted."
msgstr ""
@ -4746,7 +6872,7 @@ msgstr ""
msgid "Homepage"
msgstr ""
#: mod/profiles.php:381 mod/profiles.php:702
#: mod/profiles.php:381 mod/profiles.php:694
msgid "Interests"
msgstr ""
@ -4754,7 +6880,7 @@ msgstr ""
msgid "Address"
msgstr ""
#: mod/profiles.php:392 mod/profiles.php:698
#: mod/profiles.php:392 mod/profiles.php:690
msgid "Location"
msgstr ""
@ -4762,1599 +6888,349 @@ msgstr ""
msgid "Profile updated."
msgstr ""
#: mod/profiles.php:564
#: mod/profiles.php:565
msgid " and "
msgstr ""
#: mod/profiles.php:572
#: mod/profiles.php:573
msgid "public profile"
msgstr ""
#: mod/profiles.php:575
#, php-format
msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
msgstr ""
#: mod/profiles.php:576
#, php-format
msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
msgstr ""
#: mod/profiles.php:577
#, php-format
msgid " - Visit %1$s's %2$s"
msgstr ""
#: mod/profiles.php:579
#: mod/profiles.php:580
#, php-format
msgid "%1$s has an updated %2$s, changing %3$s."
msgstr ""
#: mod/profiles.php:645
#: mod/profiles.php:637
msgid "Hide contacts and friends:"
msgstr ""
#: mod/profiles.php:650
#: mod/profiles.php:642
msgid "Hide your contact/friend list from viewers of this profile?"
msgstr ""
#: mod/profiles.php:674
#: mod/profiles.php:666
msgid "Show more profile fields:"
msgstr ""
#: mod/profiles.php:686
#: mod/profiles.php:678
msgid "Profile Actions"
msgstr ""
#: mod/profiles.php:687
#: mod/profiles.php:679
msgid "Edit Profile Details"
msgstr ""
#: mod/profiles.php:689
#: mod/profiles.php:681
msgid "Change Profile Photo"
msgstr ""
#: mod/profiles.php:690
#: mod/profiles.php:682
msgid "View this profile"
msgstr ""
#: mod/profiles.php:692
#: mod/profiles.php:684
msgid "Create a new profile using these settings"
msgstr ""
#: mod/profiles.php:693
#: mod/profiles.php:685
msgid "Clone this profile"
msgstr ""
#: mod/profiles.php:694
#: mod/profiles.php:686
msgid "Delete this profile"
msgstr ""
#: mod/profiles.php:696
#: mod/profiles.php:688
msgid "Basic information"
msgstr ""
#: mod/profiles.php:697
#: mod/profiles.php:689
msgid "Profile picture"
msgstr ""
#: mod/profiles.php:699
#: mod/profiles.php:691
msgid "Preferences"
msgstr ""
#: mod/profiles.php:700
#: mod/profiles.php:692
msgid "Status information"
msgstr ""
#: mod/profiles.php:701
#: mod/profiles.php:693
msgid "Additional information"
msgstr ""
#: mod/profiles.php:704
#: mod/profiles.php:696
msgid "Relation"
msgstr ""
#: mod/profiles.php:708
#: mod/profiles.php:700
msgid "Your Gender:"
msgstr ""
#: mod/profiles.php:709
#: mod/profiles.php:701
msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
msgstr ""
#: mod/profiles.php:711
#: mod/profiles.php:703
msgid "Example: fishing photography software"
msgstr ""
#: mod/profiles.php:716
#: mod/profiles.php:708
msgid "Profile Name:"
msgstr ""
#: mod/profiles.php:716 mod/events.php:484 mod/events.php:496
msgid "Required"
msgstr ""
#: mod/profiles.php:718
#: mod/profiles.php:710
msgid ""
"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
"be visible to anybody using the internet."
msgstr ""
#: mod/profiles.php:719
#: mod/profiles.php:711
msgid "Your Full Name:"
msgstr ""
#: mod/profiles.php:720
#: mod/profiles.php:712
msgid "Title/Description:"
msgstr ""
#: mod/profiles.php:723
#: mod/profiles.php:715
msgid "Street Address:"
msgstr ""
#: mod/profiles.php:724
#: mod/profiles.php:716
msgid "Locality/City:"
msgstr ""
#: mod/profiles.php:725
#: mod/profiles.php:717
msgid "Region/State:"
msgstr ""
#: mod/profiles.php:726
#: mod/profiles.php:718
msgid "Postal/Zip Code:"
msgstr ""
#: mod/profiles.php:727
#: mod/profiles.php:719
msgid "Country:"
msgstr ""
#: mod/profiles.php:731
#: mod/profiles.php:723
msgid "Who: (if applicable)"
msgstr ""
#: mod/profiles.php:731
#: mod/profiles.php:723
msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
msgstr ""
#: mod/profiles.php:732
#: mod/profiles.php:724
msgid "Since [date]:"
msgstr ""
#: mod/profiles.php:734
#: mod/profiles.php:726
msgid "Tell us about yourself..."
msgstr ""
#: mod/profiles.php:735
#: mod/profiles.php:727
msgid "XMPP (Jabber) address:"
msgstr ""
#: mod/profiles.php:735
#: mod/profiles.php:727
msgid ""
"The XMPP address will be propagated to your contacts so that they can follow "
"you."
msgstr ""
#: mod/profiles.php:736
#: mod/profiles.php:728
msgid "Homepage URL:"
msgstr ""
#: mod/profiles.php:739
#: mod/profiles.php:731
msgid "Religious Views:"
msgstr ""
#: mod/profiles.php:740
#: mod/profiles.php:732
msgid "Public Keywords:"
msgstr ""
#: mod/profiles.php:740
#: mod/profiles.php:732
msgid "(Used for suggesting potential friends, can be seen by others)"
msgstr ""
#: mod/profiles.php:741
#: mod/profiles.php:733
msgid "Private Keywords:"
msgstr ""
#: mod/profiles.php:741
#: mod/profiles.php:733
msgid "(Used for searching profiles, never shown to others)"
msgstr ""
#: mod/profiles.php:744
#: mod/profiles.php:736
msgid "Musical interests"
msgstr ""
#: mod/profiles.php:745
#: mod/profiles.php:737
msgid "Books, literature"
msgstr ""
#: mod/profiles.php:746
#: mod/profiles.php:738
msgid "Television"
msgstr ""
#: mod/profiles.php:747
#: mod/profiles.php:739
msgid "Film/dance/culture/entertainment"
msgstr ""
#: mod/profiles.php:748
#: mod/profiles.php:740
msgid "Hobbies/Interests"
msgstr ""
#: mod/profiles.php:749
#: mod/profiles.php:741
msgid "Love/romance"
msgstr ""
#: mod/profiles.php:750
#: mod/profiles.php:742
msgid "Work/employment"
msgstr ""
#: mod/profiles.php:751
#: mod/profiles.php:743
msgid "School/education"
msgstr ""
#: mod/profiles.php:752
#: mod/profiles.php:744
msgid "Contact information and Social Networks"
msgstr ""
#: mod/profiles.php:794
#: mod/profiles.php:788
msgid "Edit/Manage Profiles"
msgstr ""
#: mod/allfriends.php:43
msgid "No friends to display."
msgstr ""
#: mod/cal.php:149 mod/display.php:328 mod/profile.php:155
msgid "Access to this profile has been restricted."
msgstr ""
#: mod/cal.php:276 mod/events.php:380
msgid "View"
msgstr ""
#: mod/cal.php:277 mod/events.php:382
msgid "Previous"
msgstr ""
#: mod/cal.php:278 mod/events.php:383 mod/install.php:231
msgid "Next"
msgstr ""
#: mod/cal.php:287 mod/events.php:392
msgid "list"
msgstr ""
#: mod/cal.php:297
msgid "User not found"
msgstr ""
#: mod/cal.php:313
msgid "This calendar format is not supported"
msgstr ""
#: mod/cal.php:315
msgid "No exportable data found"
msgstr ""
#: mod/cal.php:330
msgid "calendar"
msgstr ""
#: mod/common.php:86
msgid "No contacts in common."
msgstr ""
#: mod/common.php:134 mod/contacts.php:863
msgid "Common Friends"
msgstr ""
#: mod/community.php:27
msgid "Not available."
msgstr ""
#: mod/directory.php:197 view/theme/vier/theme.php:201
msgid "Global Directory"
msgstr ""
#: mod/directory.php:199
msgid "Find on this site"
msgstr ""
#: mod/directory.php:201
msgid "Results for:"
msgstr ""
#: mod/directory.php:203
msgid "Site Directory"
msgstr ""
#: mod/directory.php:210
msgid "No entries (some entries may be hidden)."
msgstr ""
#: mod/dirfind.php:36
#, php-format
msgid "People Search - %s"
msgstr ""
#: mod/dirfind.php:47
#, php-format
msgid "Forum Search - %s"
msgstr ""
#: mod/dirfind.php:240 mod/match.php:107
msgid "No matches"
msgstr ""
#: mod/display.php:473
#: mod/display.php:479
msgid "Item has been removed."
msgstr ""
#: mod/events.php:95 mod/events.php:97
msgid "Event can not end before it has started."
msgstr ""
#: mod/events.php:104 mod/events.php:106
msgid "Event title and start time are required."
msgstr ""
#: mod/events.php:381
msgid "Create New Event"
msgstr ""
#: mod/events.php:482
msgid "Event details"
msgstr ""
#: mod/events.php:483
msgid "Starting date and Title are required."
msgstr ""
#: mod/events.php:484 mod/events.php:485
msgid "Event Starts:"
msgstr ""
#: mod/events.php:486 mod/events.php:502
msgid "Finish date/time is not known or not relevant"
msgstr ""
#: mod/events.php:488 mod/events.php:489
msgid "Event Finishes:"
msgstr ""
#: mod/events.php:490 mod/events.php:503
msgid "Adjust for viewer timezone"
msgstr ""
#: mod/events.php:492
msgid "Description:"
msgstr ""
#: mod/events.php:496 mod/events.php:498
msgid "Title:"
msgstr ""
#: mod/events.php:499 mod/events.php:500
msgid "Share this event"
msgstr ""
#: mod/maintenance.php:9
msgid "System down for maintenance"
msgstr ""
#: mod/match.php:33
msgid "No keywords to match. Please add keywords to your default profile."
msgstr ""
#: mod/match.php:86
msgid "is interested in:"
msgstr ""
#: mod/match.php:100
msgid "Profile Match"
msgstr ""
#: mod/profile.php:179
msgid "Tips for New Members"
msgstr ""
#: mod/suggest.php:27
msgid "Do you really want to delete this suggestion?"
msgstr ""
#: mod/suggest.php:71
msgid ""
"No suggestions available. If this is a new site, please try again in 24 "
"hours."
msgstr ""
#: mod/suggest.php:84 mod/suggest.php:104
msgid "Ignore/Hide"
msgstr ""
#: mod/update_community.php:19 mod/update_display.php:23
#: mod/update_network.php:27 mod/update_notes.php:36 mod/update_profile.php:35
msgid "[Embedded content - reload page to view]"
msgstr ""
#: mod/photos.php:88 mod/photos.php:1856
msgid "Recent Photos"
msgstr ""
#: mod/photos.php:91 mod/photos.php:1283 mod/photos.php:1858
msgid "Upload New Photos"
msgstr ""
#: mod/photos.php:105 mod/settings.php:36
msgid "everybody"
msgstr ""
#: mod/photos.php:169
msgid "Contact information unavailable"
msgstr ""
#: mod/photos.php:190
msgid "Album not found."
msgstr ""
#: mod/photos.php:220 mod/photos.php:232 mod/photos.php:1227
msgid "Delete Album"
msgstr ""
#: mod/photos.php:230
msgid "Do you really want to delete this photo album and all its photos?"
msgstr ""
#: mod/photos.php:308 mod/photos.php:319 mod/photos.php:1540
msgid "Delete Photo"
msgstr ""
#: mod/photos.php:317
msgid "Do you really want to delete this photo?"
msgstr ""
#: mod/photos.php:688
#, php-format
msgid "%1$s was tagged in %2$s by %3$s"
msgstr ""
#: mod/photos.php:688
msgid "a photo"
msgstr ""
#: mod/photos.php:794
msgid "Image file is empty."
msgstr ""
#: mod/photos.php:954
msgid "No photos selected"
msgstr ""
#: mod/photos.php:1054 mod/videos.php:305
msgid "Access to this item is restricted."
msgstr ""
#: mod/photos.php:1114
#, php-format
msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
msgstr ""
#: mod/photos.php:1148
msgid "Upload Photos"
msgstr ""
#: mod/photos.php:1152 mod/photos.php:1222
msgid "New album name: "
msgstr ""
#: mod/photos.php:1153
msgid "or existing album name: "
msgstr ""
#: mod/photos.php:1154
msgid "Do not show a status post for this upload"
msgstr ""
#: mod/photos.php:1165 mod/photos.php:1544 mod/settings.php:1300
msgid "Show to Groups"
msgstr ""
#: mod/photos.php:1166 mod/photos.php:1545 mod/settings.php:1301
msgid "Show to Contacts"
msgstr ""
#: mod/photos.php:1167
msgid "Private Photo"
msgstr ""
#: mod/photos.php:1168
msgid "Public Photo"
msgstr ""
#: mod/photos.php:1234
msgid "Edit Album"
msgstr ""
#: mod/photos.php:1240
msgid "Show Newest First"
msgstr ""
#: mod/photos.php:1242
msgid "Show Oldest First"
msgstr ""
#: mod/photos.php:1269 mod/photos.php:1841
msgid "View Photo"
msgstr ""
#: mod/photos.php:1315
msgid "Permission denied. Access to this item may be restricted."
msgstr ""
#: mod/photos.php:1317
msgid "Photo not available"
msgstr ""
#: mod/photos.php:1372
msgid "View photo"
msgstr ""
#: mod/photos.php:1372
msgid "Edit photo"
msgstr ""
#: mod/photos.php:1373
msgid "Use as profile photo"
msgstr ""
#: mod/photos.php:1398
msgid "View Full Size"
msgstr ""
#: mod/photos.php:1484
msgid "Tags: "
msgstr ""
#: mod/photos.php:1487
msgid "[Remove any tag]"
msgstr ""
#: mod/photos.php:1526
msgid "New album name"
msgstr ""
#: mod/photos.php:1527
msgid "Caption"
msgstr ""
#: mod/photos.php:1528
msgid "Add a Tag"
msgstr ""
#: mod/photos.php:1528
msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
msgstr ""
#: mod/photos.php:1529
msgid "Do not rotate"
msgstr ""
#: mod/photos.php:1530
msgid "Rotate CW (right)"
msgstr ""
#: mod/photos.php:1531
msgid "Rotate CCW (left)"
msgstr ""
#: mod/photos.php:1546
msgid "Private photo"
msgstr ""
#: mod/photos.php:1547
msgid "Public photo"
msgstr ""
#: mod/photos.php:1770
msgid "Map"
msgstr ""
#: mod/photos.php:1847 mod/videos.php:387
msgid "View Album"
msgstr ""
#: mod/register.php:93
msgid ""
"Registration successful. Please check your email for further instructions."
msgstr ""
#: mod/register.php:98
#, php-format
msgid ""
"Failed to send email message. Here your accout details:<br> login: %s<br> "
"password: %s<br><br>You can change your password after login."
msgstr ""
#: mod/register.php:105
msgid "Registration successful."
msgstr ""
#: mod/register.php:111
msgid "Your registration can not be processed."
msgstr ""
#: mod/register.php:160
msgid "Your registration is pending approval by the site owner."
msgstr ""
#: mod/register.php:226
msgid ""
"You may (optionally) fill in this form via OpenID by supplying your OpenID "
"and clicking 'Register'."
msgstr ""
#: mod/register.php:227
msgid ""
"If you are not familiar with OpenID, please leave that field blank and fill "
"in the rest of the items."
msgstr ""
#: mod/register.php:228
msgid "Your OpenID (optional): "
msgstr ""
#: mod/register.php:242
msgid "Include your profile in member directory?"
msgstr ""
#: mod/register.php:267
msgid "Note for the admin"
msgstr ""
#: mod/register.php:267
msgid "Leave a message for the admin, why you want to join this node"
msgstr ""
#: mod/register.php:268
msgid "Membership on this site is by invitation only."
msgstr ""
#: mod/register.php:269
msgid "Your invitation ID: "
msgstr ""
#: mod/register.php:272 mod/admin.php:956
msgid "Registration"
msgstr ""
#: mod/register.php:280
msgid "Your Full Name (e.g. Joe Smith, real or real-looking): "
msgstr ""
#: mod/register.php:281
msgid "Your Email Address: "
msgstr ""
#: mod/register.php:283 mod/settings.php:1271
msgid "New Password:"
msgstr ""
#: mod/register.php:283
msgid "Leave empty for an auto generated password."
msgstr ""
#: mod/register.php:284 mod/settings.php:1272
msgid "Confirm:"
msgstr ""
#: mod/register.php:285
msgid ""
"Choose a profile nickname. This must begin with a text character. Your "
"profile address on this site will then be '<strong>nickname@$sitename</"
"strong>'."
msgstr ""
#: mod/register.php:286
msgid "Choose a nickname: "
msgstr ""
#: mod/register.php:296
msgid "Import your profile to this friendica instance"
msgstr ""
#: mod/settings.php:43 mod/admin.php:1396
msgid "Account"
msgstr ""
#: mod/settings.php:52 mod/admin.php:160
msgid "Additional features"
msgstr ""
#: mod/settings.php:60
msgid "Display"
msgstr ""
#: mod/settings.php:67 mod/settings.php:886
msgid "Social Networks"
msgstr ""
#: mod/settings.php:74 mod/admin.php:158 mod/admin.php:1522 mod/admin.php:1582
msgid "Plugins"
msgstr ""
#: mod/settings.php:88
msgid "Connected apps"
msgstr ""
#: mod/settings.php:102
msgid "Remove account"
msgstr ""
#: mod/settings.php:155
msgid "Missing some important data!"
msgstr ""
#: mod/settings.php:158 mod/settings.php:704 mod/contacts.php:804
msgid "Update"
msgstr ""
#: mod/settings.php:269
msgid "Failed to connect with email account using the settings provided."
msgstr ""
#: mod/settings.php:274
msgid "Email settings updated."
msgstr ""
#: mod/settings.php:289
msgid "Features updated"
msgstr ""
#: mod/settings.php:359
msgid "Relocate message has been send to your contacts"
msgstr ""
#: mod/settings.php:378
msgid "Empty passwords are not allowed. Password unchanged."
msgstr ""
#: mod/settings.php:386
msgid "Wrong password."
msgstr ""
#: mod/settings.php:397
msgid "Password changed."
msgstr ""
#: mod/settings.php:399
msgid "Password update failed. Please try again."
msgstr ""
#: mod/settings.php:479
msgid " Please use a shorter name."
msgstr ""
#: mod/settings.php:481
msgid " Name too short."
msgstr ""
#: mod/settings.php:490
msgid "Wrong Password"
msgstr ""
#: mod/settings.php:495
msgid " Not valid email."
msgstr ""
#: mod/settings.php:501
msgid " Cannot change to that email."
msgstr ""
#: mod/settings.php:557
msgid "Private forum has no privacy permissions. Using default privacy group."
msgstr ""
#: mod/settings.php:561
msgid "Private forum has no privacy permissions and no default privacy group."
msgstr ""
#: mod/settings.php:601
msgid "Settings updated."
msgstr ""
#: mod/settings.php:677 mod/settings.php:703 mod/settings.php:739
msgid "Add application"
msgstr ""
#: mod/settings.php:678 mod/settings.php:788 mod/settings.php:835
#: mod/settings.php:904 mod/settings.php:996 mod/settings.php:1264
#: mod/admin.php:955 mod/admin.php:1583 mod/admin.php:1831 mod/admin.php:1905
#: mod/admin.php:2055
msgid "Save Settings"
msgstr ""
#: mod/settings.php:681 mod/settings.php:707
msgid "Consumer Key"
msgstr ""
#: mod/settings.php:682 mod/settings.php:708
msgid "Consumer Secret"
msgstr ""
#: mod/settings.php:683 mod/settings.php:709
msgid "Redirect"
msgstr ""
#: mod/settings.php:684 mod/settings.php:710
msgid "Icon url"
msgstr ""
#: mod/settings.php:695
msgid "You can't edit this application."
msgstr ""
#: mod/settings.php:738
msgid "Connected Apps"
msgstr ""
#: mod/settings.php:742
msgid "Client key starts with"
msgstr ""
#: mod/settings.php:743
msgid "No name"
msgstr ""
#: mod/settings.php:744
msgid "Remove authorization"
msgstr ""
#: mod/settings.php:756
msgid "No Plugin settings configured"
msgstr ""
#: mod/settings.php:764
msgid "Plugin Settings"
msgstr ""
#: mod/settings.php:778 mod/admin.php:2044 mod/admin.php:2045
msgid "Off"
msgstr ""
#: mod/settings.php:778 mod/admin.php:2044 mod/admin.php:2045
msgid "On"
msgstr ""
#: mod/settings.php:786
msgid "Additional Features"
msgstr ""
#: mod/settings.php:796 mod/settings.php:800
msgid "General Social Media Settings"
msgstr ""
#: mod/settings.php:806
msgid "Disable intelligent shortening"
msgstr ""
#: mod/settings.php:808
msgid ""
"Normally the system tries to find the best link to add to shortened posts. "
"If this option is enabled then every shortened post will always point to the "
"original friendica post."
msgstr ""
#: mod/settings.php:814
msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
msgstr ""
#: mod/settings.php:816
msgid ""
"If you receive a message from an unknown OStatus user, this option decides "
"what to do. If it is checked, a new contact will be created for every "
"unknown user."
msgstr ""
#: mod/settings.php:822
msgid "Default group for OStatus contacts"
msgstr ""
#: mod/settings.php:828
msgid "Your legacy GNU Social account"
msgstr ""
#: mod/settings.php:830
msgid ""
"If you enter your old GNU Social/Statusnet account name here (in the format "
"user@domain.tld), your contacts will be added automatically. The field will "
"be emptied when done."
msgstr ""
#: mod/settings.php:833
msgid "Repair OStatus subscriptions"
msgstr ""
#: mod/settings.php:842 mod/settings.php:843
#, php-format
msgid "Built-in support for %s connectivity is %s"
msgstr ""
#: mod/settings.php:842 mod/settings.php:843
msgid "enabled"
msgstr ""
#: mod/settings.php:842 mod/settings.php:843
msgid "disabled"
msgstr ""
#: mod/settings.php:843
msgid "GNU Social (OStatus)"
msgstr ""
#: mod/settings.php:879
msgid "Email access is disabled on this site."
msgstr ""
#: mod/settings.php:891
msgid "Email/Mailbox Setup"
msgstr ""
#: mod/settings.php:892
msgid ""
"If you wish to communicate with email contacts using this service "
"(optional), please specify how to connect to your mailbox."
msgstr ""
#: mod/settings.php:893
msgid "Last successful email check:"
msgstr ""
#: mod/settings.php:895
msgid "IMAP server name:"
msgstr ""
#: mod/settings.php:896
msgid "IMAP port:"
msgstr ""
#: mod/settings.php:897
msgid "Security:"
msgstr ""
#: mod/settings.php:897 mod/settings.php:902
msgid "None"
msgstr ""
#: mod/settings.php:898
msgid "Email login name:"
msgstr ""
#: mod/settings.php:899
msgid "Email password:"
msgstr ""
#: mod/settings.php:900
msgid "Reply-to address:"
msgstr ""
#: mod/settings.php:901
msgid "Send public posts to all email contacts:"
msgstr ""
#: mod/settings.php:902
msgid "Action after import:"
msgstr ""
#: mod/settings.php:902
msgid "Move to folder"
msgstr ""
#: mod/settings.php:903
msgid "Move to folder:"
msgstr ""
#: mod/settings.php:934 mod/admin.php:862
msgid "No special theme for mobile devices"
msgstr ""
#: mod/settings.php:994
msgid "Display Settings"
msgstr ""
#: mod/settings.php:1000 mod/settings.php:1023
msgid "Display Theme:"
msgstr ""
#: mod/settings.php:1001
msgid "Mobile Theme:"
msgstr ""
#: mod/settings.php:1002
msgid "Suppress warning of insecure networks"
msgstr ""
#: mod/settings.php:1002
msgid ""
"Should the system suppress the warning that the current group contains "
"members of networks that can't receive non public postings."
msgstr ""
#: mod/settings.php:1003
msgid "Update browser every xx seconds"
msgstr ""
#: mod/settings.php:1003
msgid "Minimum of 10 seconds. Enter -1 to disable it."
msgstr ""
#: mod/settings.php:1004
msgid "Number of items to display per page:"
msgstr ""
#: mod/settings.php:1004 mod/settings.php:1005
msgid "Maximum of 100 items"
msgstr ""
#: mod/settings.php:1005
msgid "Number of items to display per page when viewed from mobile device:"
msgstr ""
#: mod/settings.php:1006
msgid "Don't show emoticons"
msgstr ""
#: mod/settings.php:1007
msgid "Calendar"
msgstr ""
#: mod/settings.php:1008
msgid "Beginning of week:"
msgstr ""
#: mod/settings.php:1009
msgid "Don't show notices"
msgstr ""
#: mod/settings.php:1010
msgid "Infinite scroll"
msgstr ""
#: mod/settings.php:1011
msgid "Automatic updates only at the top of the network page"
msgstr ""
#: mod/settings.php:1012
msgid "Bandwith Saver Mode"
msgstr ""
#: mod/settings.php:1012
msgid ""
"When enabled, embedded content is not displayed on automatic updates, they "
"only show on page reload."
msgstr ""
#: mod/settings.php:1014
msgid "General Theme Settings"
msgstr ""
#: mod/settings.php:1015
msgid "Custom Theme Settings"
msgstr ""
#: mod/settings.php:1016
msgid "Content Settings"
msgstr ""
#: mod/settings.php:1017 view/theme/frio/config.php:61
#: view/theme/quattro/config.php:66 view/theme/vier/config.php:109
#: view/theme/duepuntozero/config.php:61
msgid "Theme settings"
msgstr ""
#: mod/settings.php:1099
msgid "Account Types"
msgstr ""
#: mod/settings.php:1100
msgid "Personal Page Subtypes"
msgstr ""
#: mod/settings.php:1101
msgid "Community Forum Subtypes"
msgstr ""
#: mod/settings.php:1108
msgid "Personal Page"
msgstr ""
#: mod/settings.php:1109
msgid "This account is a regular personal profile"
msgstr ""
#: mod/settings.php:1112
msgid "Organisation Page"
msgstr ""
#: mod/settings.php:1113
msgid "This account is a profile for an organisation"
msgstr ""
#: mod/settings.php:1116
msgid "News Page"
msgstr ""
#: mod/settings.php:1117
msgid "This account is a news account/reflector"
msgstr ""
#: mod/settings.php:1120
msgid "Community Forum"
msgstr ""
#: mod/settings.php:1121
msgid ""
"This account is a community forum where people can discuss with each other"
msgstr ""
#: mod/settings.php:1124
msgid "Normal Account Page"
msgstr ""
#: mod/settings.php:1125
msgid "This account is a normal personal profile"
msgstr ""
#: mod/settings.php:1128
msgid "Soapbox Page"
msgstr ""
#: mod/settings.php:1129
msgid "Automatically approve all connection/friend requests as read-only fans"
msgstr ""
#: mod/settings.php:1132
msgid "Public Forum"
msgstr ""
#: mod/settings.php:1133
msgid "Automatically approve all contact requests"
msgstr ""
#: mod/settings.php:1136
msgid "Automatic Friend Page"
msgstr ""
#: mod/settings.php:1137
msgid "Automatically approve all connection/friend requests as friends"
msgstr ""
#: mod/settings.php:1140
msgid "Private Forum [Experimental]"
msgstr ""
#: mod/settings.php:1141
msgid "Private forum - approved members only"
msgstr ""
#: mod/settings.php:1153
msgid "OpenID:"
msgstr ""
#: mod/settings.php:1153
msgid "(Optional) Allow this OpenID to login to this account."
msgstr ""
#: mod/settings.php:1163
msgid "Publish your default profile in your local site directory?"
msgstr ""
#: mod/settings.php:1169
msgid "Publish your default profile in the global social directory?"
msgstr ""
#: mod/settings.php:1177
msgid "Hide your contact/friend list from viewers of your default profile?"
msgstr ""
#: mod/settings.php:1181
msgid ""
"If enabled, posting public messages to Diaspora and other networks isn't "
"possible."
msgstr ""
#: mod/settings.php:1186
msgid "Allow friends to post to your profile page?"
msgstr ""
#: mod/settings.php:1192
msgid "Allow friends to tag your posts?"
msgstr ""
#: mod/settings.php:1198
msgid "Allow us to suggest you as a potential friend to new members?"
msgstr ""
#: mod/settings.php:1204
msgid "Permit unknown people to send you private mail?"
msgstr ""
#: mod/settings.php:1212
msgid "Profile is <strong>not published</strong>."
msgstr ""
#: mod/settings.php:1220
#, php-format
msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
msgstr ""
#: mod/settings.php:1227
msgid "Automatically expire posts after this many days:"
msgstr ""
#: mod/settings.php:1227
msgid "If empty, posts will not expire. Expired posts will be deleted"
msgstr ""
#: mod/settings.php:1228
msgid "Advanced expiration settings"
msgstr ""
#: mod/settings.php:1229
msgid "Advanced Expiration"
msgstr ""
#: mod/settings.php:1230
msgid "Expire posts:"
msgstr ""
#: mod/settings.php:1231
msgid "Expire personal notes:"
msgstr ""
#: mod/settings.php:1232
msgid "Expire starred posts:"
msgstr ""
#: mod/settings.php:1233
msgid "Expire photos:"
msgstr ""
#: mod/settings.php:1234
msgid "Only expire posts by others:"
msgstr ""
#: mod/settings.php:1262
msgid "Account Settings"
msgstr ""
#: mod/settings.php:1270
msgid "Password Settings"
msgstr ""
#: mod/settings.php:1272
msgid "Leave password fields blank unless changing"
msgstr ""
#: mod/settings.php:1273
msgid "Current Password:"
msgstr ""
#: mod/settings.php:1273 mod/settings.php:1274
msgid "Your current password to confirm the changes"
msgstr ""
#: mod/settings.php:1274
msgid "Password:"
msgstr ""
#: mod/settings.php:1278
msgid "Basic Settings"
msgstr ""
#: mod/settings.php:1280
msgid "Email Address:"
msgstr ""
#: mod/settings.php:1281
msgid "Your Timezone:"
msgstr ""
#: mod/settings.php:1282
msgid "Your Language:"
msgstr ""
#: mod/settings.php:1282
msgid ""
"Set the language we use to show you friendica interface and to send you "
"emails"
msgstr ""
#: mod/settings.php:1283
msgid "Default Post Location:"
msgstr ""
#: mod/settings.php:1284
msgid "Use Browser Location:"
msgstr ""
#: mod/settings.php:1287
msgid "Security and Privacy Settings"
msgstr ""
#: mod/settings.php:1289
msgid "Maximum Friend Requests/Day:"
msgstr ""
#: mod/settings.php:1289 mod/settings.php:1319
msgid "(to prevent spam abuse)"
msgstr ""
#: mod/settings.php:1290
msgid "Default Post Permissions"
msgstr ""
#: mod/settings.php:1291
msgid "(click to open/close)"
msgstr ""
#: mod/settings.php:1302
msgid "Default Private Post"
msgstr ""
#: mod/settings.php:1303
msgid "Default Public Post"
msgstr ""
#: mod/settings.php:1307
msgid "Default Permissions for New Posts"
msgstr ""
#: mod/settings.php:1319
msgid "Maximum private messages per day from unknown people:"
msgstr ""
#: mod/settings.php:1322
msgid "Notification Settings"
msgstr ""
#: mod/settings.php:1323
msgid "By default post a status message when:"
msgstr ""
#: mod/settings.php:1324
msgid "accepting a friend request"
msgstr ""
#: mod/settings.php:1325
msgid "joining a forum/community"
msgstr ""
#: mod/settings.php:1326
msgid "making an <em>interesting</em> profile change"
msgstr ""
#: mod/settings.php:1327
msgid "Send a notification email when:"
msgstr ""
#: mod/settings.php:1328
msgid "You receive an introduction"
msgstr ""
#: mod/settings.php:1329
msgid "Your introductions are confirmed"
msgstr ""
#: mod/settings.php:1330
msgid "Someone writes on your profile wall"
msgstr ""
#: mod/settings.php:1331
msgid "Someone writes a followup comment"
msgstr ""
#: mod/settings.php:1332
msgid "You receive a private message"
msgstr ""
#: mod/settings.php:1333
msgid "You receive a friend suggestion"
msgstr ""
#: mod/settings.php:1334
msgid "You are tagged in a post"
msgstr ""
#: mod/settings.php:1335
msgid "You are poked/prodded/etc. in a post"
msgstr ""
#: mod/settings.php:1337
msgid "Activate desktop notifications"
msgstr ""
#: mod/settings.php:1337
msgid "Show desktop popup on new notifications"
msgstr ""
#: mod/settings.php:1339
msgid "Text-only notification emails"
msgstr ""
#: mod/settings.php:1341
msgid "Send text only notification emails, without the html part"
msgstr ""
#: mod/settings.php:1343
msgid "Advanced Account/Page Type Settings"
msgstr ""
#: mod/settings.php:1344
msgid "Change the behaviour of this account for special situations"
msgstr ""
#: mod/settings.php:1347
msgid "Relocate"
msgstr ""
#: mod/settings.php:1348
msgid ""
"If you have moved this profile from another server, and some of your "
"contacts don't receive your updates, try pushing this button."
msgstr ""
#: mod/settings.php:1349
msgid "Resend relocate message to contacts"
msgstr ""
#: mod/videos.php:120
msgid "Do you really want to delete this video?"
msgstr ""
#: mod/videos.php:125
msgid "Delete Video"
msgstr ""
#: mod/videos.php:204
msgid "No videos selected"
msgstr ""
#: mod/videos.php:396
msgid "Recent Videos"
msgstr ""
#: mod/videos.php:398
msgid "Upload New Videos"
msgstr ""
#: mod/wall_attach.php:17 mod/wall_attach.php:25 mod/wall_attach.php:76
#: mod/wall_upload.php:20 mod/wall_upload.php:33 mod/wall_upload.php:86
#: mod/wall_upload.php:122 mod/wall_upload.php:125
msgid "Invalid request."
msgstr ""
#: mod/wall_attach.php:94
msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
msgstr ""
#: mod/wall_attach.php:94
msgid "Or - did you try to upload an empty file?"
msgstr ""
#: mod/wall_attach.php:105
#, php-format
msgid "File exceeds size limit of %s"
msgstr ""
#: mod/wall_attach.php:156 mod/wall_attach.php:172
msgid "File upload failed."
msgstr ""
#: mod/admin.php:92
msgid "Theme settings updated."
msgstr ""
#: mod/admin.php:156 mod/admin.php:954
#: mod/admin.php:157 mod/admin.php:975
msgid "Site"
msgstr ""
#: mod/admin.php:157 mod/admin.php:898 mod/admin.php:1404 mod/admin.php:1420
#: mod/admin.php:158 mod/admin.php:909 mod/admin.php:1425 mod/admin.php:1441
msgid "Users"
msgstr ""
#: mod/admin.php:159 mod/admin.php:1780 mod/admin.php:1830
#: mod/admin.php:160 mod/admin.php:1813 mod/admin.php:1863
msgid "Themes"
msgstr ""
#: mod/admin.php:161
#: mod/admin.php:162
msgid "DB updates"
msgstr ""
#: mod/admin.php:162 mod/admin.php:406
#: mod/admin.php:163 mod/admin.php:407
msgid "Inspect Queue"
msgstr ""
#: mod/admin.php:163 mod/admin.php:372
#: mod/admin.php:164 mod/admin.php:373
msgid "Federation Statistics"
msgstr ""
#: mod/admin.php:177 mod/admin.php:188 mod/admin.php:1904
#: mod/admin.php:178 mod/admin.php:189 mod/admin.php:1937
msgid "Logs"
msgstr ""
#: mod/admin.php:178 mod/admin.php:1972
#: mod/admin.php:179 mod/admin.php:2005
msgid "View Logs"
msgstr ""
#: mod/admin.php:179
#: mod/admin.php:180
msgid "probe address"
msgstr ""
#: mod/admin.php:180
#: mod/admin.php:181
msgid "check webfinger"
msgstr ""
#: mod/admin.php:187
#: mod/admin.php:188
msgid "Plugin Features"
msgstr ""
#: mod/admin.php:189
#: mod/admin.php:190
msgid "diagnostics"
msgstr ""
#: mod/admin.php:190
#: mod/admin.php:191
msgid "User registrations waiting for confirmation"
msgstr ""
#: mod/admin.php:306
#: mod/admin.php:307
msgid "unknown"
msgstr ""
#: mod/admin.php:365
#: mod/admin.php:366
msgid ""
"This page offers you some numbers to the known part of the federated social "
"network your Friendica node is part of. These numbers are not complete but "
"only reflect the part of the network your node is aware of."
msgstr ""
#: mod/admin.php:366
#: mod/admin.php:367
msgid ""
"The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
"will improve the data displayed here."
msgstr ""
#: mod/admin.php:371 mod/admin.php:405 mod/admin.php:484 mod/admin.php:953
#: mod/admin.php:1403 mod/admin.php:1521 mod/admin.php:1581 mod/admin.php:1779
#: mod/admin.php:1829 mod/admin.php:1903 mod/admin.php:1971
#: mod/admin.php:372 mod/admin.php:406 mod/admin.php:485 mod/admin.php:974
#: mod/admin.php:1424 mod/admin.php:1542 mod/admin.php:1605 mod/admin.php:1812
#: mod/admin.php:1862 mod/admin.php:1936 mod/admin.php:2004
msgid "Administration"
msgstr ""
#: mod/admin.php:378
#: mod/admin.php:379
#, php-format
msgid "Currently this node is aware of %d nodes from the following platforms:"
msgstr ""
#: mod/admin.php:408
#: mod/admin.php:409
msgid "ID"
msgstr ""
#: mod/admin.php:409
#: mod/admin.php:410
msgid "Recipient Name"
msgstr ""
#: mod/admin.php:410
#: mod/admin.php:411
msgid "Recipient Profile"
msgstr ""
#: mod/admin.php:412
#: mod/admin.php:413
msgid "Created"
msgstr ""
#: mod/admin.php:413
#: mod/admin.php:414
msgid "Last Tried"
msgstr ""
#: mod/admin.php:414
#: mod/admin.php:415
msgid ""
"This page lists the content of the queue for outgoing postings. These are "
"postings the initial delivery failed for. They will be resend later and "
"eventually deleted if the delivery fails permanently."
msgstr ""
#: mod/admin.php:439
#: mod/admin.php:440
#, php-format
msgid ""
"Your DB still runs with MyISAM tables. You should change the engine type to "
@ -6364,682 +7240,674 @@ msgid ""
"tt> in the <tt>/util</tt> directory of your Friendica installation.<br />"
msgstr ""
#: mod/admin.php:444
#: mod/admin.php:445
msgid ""
"You are using a MySQL version which does not support all features that "
"Friendica uses. You should consider switching to MariaDB."
msgstr ""
#: mod/admin.php:448 mod/admin.php:1352
#: mod/admin.php:449 mod/admin.php:1373
msgid "Normal Account"
msgstr ""
#: mod/admin.php:449 mod/admin.php:1353
#: mod/admin.php:450 mod/admin.php:1374
msgid "Soapbox Account"
msgstr ""
#: mod/admin.php:450 mod/admin.php:1354
#: mod/admin.php:451 mod/admin.php:1375
msgid "Community/Celebrity Account"
msgstr ""
#: mod/admin.php:451 mod/admin.php:1355
#: mod/admin.php:452 mod/admin.php:1376
msgid "Automatic Friend Account"
msgstr ""
#: mod/admin.php:452
#: mod/admin.php:453
msgid "Blog Account"
msgstr ""
#: mod/admin.php:453
#: mod/admin.php:454
msgid "Private Forum"
msgstr ""
#: mod/admin.php:479
#: mod/admin.php:480
msgid "Message queues"
msgstr ""
#: mod/admin.php:485
#: mod/admin.php:486
msgid "Summary"
msgstr ""
#: mod/admin.php:488
#: mod/admin.php:489
msgid "Registered users"
msgstr ""
#: mod/admin.php:490
#: mod/admin.php:491
msgid "Pending registrations"
msgstr ""
#: mod/admin.php:491
#: mod/admin.php:492
msgid "Version"
msgstr ""
#: mod/admin.php:496
#: mod/admin.php:497
msgid "Active plugins"
msgstr ""
#: mod/admin.php:521
#: mod/admin.php:522
msgid "Can not parse base url. Must have at least <scheme>://<domain>"
msgstr ""
#: mod/admin.php:826
#: mod/admin.php:827
msgid "RINO2 needs mcrypt php extension to work."
msgstr ""
#: mod/admin.php:834
#: mod/admin.php:835
msgid "Site settings updated."
msgstr ""
#: mod/admin.php:881
#: mod/admin.php:892
msgid "No community page"
msgstr ""
#: mod/admin.php:882
#: mod/admin.php:893
msgid "Public postings from users of this site"
msgstr ""
#: mod/admin.php:883
#: mod/admin.php:894
msgid "Global community page"
msgstr ""
#: mod/admin.php:888 mod/contacts.php:530
msgid "Never"
msgstr ""
#: mod/admin.php:889
#: mod/admin.php:900
msgid "At post arrival"
msgstr ""
#: mod/admin.php:897 mod/contacts.php:557
msgid "Disabled"
msgstr ""
#: mod/admin.php:899
#: mod/admin.php:910
msgid "Users, Global Contacts"
msgstr ""
#: mod/admin.php:900
#: mod/admin.php:911
msgid "Users, Global Contacts/fallback"
msgstr ""
#: mod/admin.php:904
#: mod/admin.php:915
msgid "One month"
msgstr ""
#: mod/admin.php:905
#: mod/admin.php:916
msgid "Three months"
msgstr ""
#: mod/admin.php:906
#: mod/admin.php:917
msgid "Half a year"
msgstr ""
#: mod/admin.php:907
#: mod/admin.php:918
msgid "One year"
msgstr ""
#: mod/admin.php:912
#: mod/admin.php:923
msgid "Multi user instance"
msgstr ""
#: mod/admin.php:935
#: mod/admin.php:946
msgid "Closed"
msgstr ""
#: mod/admin.php:936
#: mod/admin.php:947
msgid "Requires approval"
msgstr ""
#: mod/admin.php:937
#: mod/admin.php:948
msgid "Open"
msgstr ""
#: mod/admin.php:941
#: mod/admin.php:952
msgid "No SSL policy, links will track page SSL state"
msgstr ""
#: mod/admin.php:942
#: mod/admin.php:953
msgid "Force all links to use SSL"
msgstr ""
#: mod/admin.php:943
#: mod/admin.php:954
msgid "Self-signed certificate, use SSL for local links only (discouraged)"
msgstr ""
#: mod/admin.php:957
#: mod/admin.php:978
msgid "File upload"
msgstr ""
#: mod/admin.php:958
#: mod/admin.php:979
msgid "Policies"
msgstr ""
#: mod/admin.php:960
#: mod/admin.php:981
msgid "Auto Discovered Contact Directory"
msgstr ""
#: mod/admin.php:961
#: mod/admin.php:982
msgid "Performance"
msgstr ""
#: mod/admin.php:962
#: mod/admin.php:983
msgid "Worker"
msgstr ""
#: mod/admin.php:963
#: mod/admin.php:984
msgid ""
"Relocate - WARNING: advanced function. Could make this server unreachable."
msgstr ""
#: mod/admin.php:966
#: mod/admin.php:987
msgid "Site name"
msgstr ""
#: mod/admin.php:967
#: mod/admin.php:988
msgid "Host name"
msgstr ""
#: mod/admin.php:968
#: mod/admin.php:989
msgid "Sender Email"
msgstr ""
#: mod/admin.php:968
#: mod/admin.php:989
msgid ""
"The email address your server shall use to send notification emails from."
msgstr ""
#: mod/admin.php:969
#: mod/admin.php:990
msgid "Banner/Logo"
msgstr ""
#: mod/admin.php:970
#: mod/admin.php:991
msgid "Shortcut icon"
msgstr ""
#: mod/admin.php:970
#: mod/admin.php:991
msgid "Link to an icon that will be used for browsers."
msgstr ""
#: mod/admin.php:971
#: mod/admin.php:992
msgid "Touch icon"
msgstr ""
#: mod/admin.php:971
#: mod/admin.php:992
msgid "Link to an icon that will be used for tablets and mobiles."
msgstr ""
#: mod/admin.php:972
#: mod/admin.php:993
msgid "Additional Info"
msgstr ""
#: mod/admin.php:972
#: mod/admin.php:993
#, php-format
msgid ""
"For public servers: you can add additional information here that will be "
"listed at %s/siteinfo."
msgstr ""
#: mod/admin.php:973
#: mod/admin.php:994
msgid "System language"
msgstr ""
#: mod/admin.php:974
#: mod/admin.php:995
msgid "System theme"
msgstr ""
#: mod/admin.php:974
#: mod/admin.php:995
msgid ""
"Default system theme - may be over-ridden by user profiles - <a href='#' "
"id='cnftheme'>change theme settings</a>"
msgstr ""
#: mod/admin.php:975
#: mod/admin.php:996
msgid "Mobile system theme"
msgstr ""
#: mod/admin.php:975
#: mod/admin.php:996
msgid "Theme for mobile devices"
msgstr ""
#: mod/admin.php:976
#: mod/admin.php:997
msgid "SSL link policy"
msgstr ""
#: mod/admin.php:976
#: mod/admin.php:997
msgid "Determines whether generated links should be forced to use SSL"
msgstr ""
#: mod/admin.php:977
#: mod/admin.php:998
msgid "Force SSL"
msgstr ""
#: mod/admin.php:977
#: mod/admin.php:998
msgid ""
"Force all Non-SSL requests to SSL - Attention: on some systems it could lead "
"to endless loops."
msgstr ""
#: mod/admin.php:978
#: mod/admin.php:999
msgid "Old style 'Share'"
msgstr ""
#: mod/admin.php:978
#: mod/admin.php:999
msgid "Deactivates the bbcode element 'share' for repeating items."
msgstr ""
#: mod/admin.php:979
#: mod/admin.php:1000
msgid "Hide help entry from navigation menu"
msgstr ""
#: mod/admin.php:979
#: mod/admin.php:1000
msgid ""
"Hides the menu entry for the Help pages from the navigation menu. You can "
"still access it calling /help directly."
msgstr ""
#: mod/admin.php:980
#: mod/admin.php:1001
msgid "Single user instance"
msgstr ""
#: mod/admin.php:980
#: mod/admin.php:1001
msgid "Make this instance multi-user or single-user for the named user"
msgstr ""
#: mod/admin.php:981
#: mod/admin.php:1002
msgid "Maximum image size"
msgstr ""
#: mod/admin.php:981
#: mod/admin.php:1002
msgid ""
"Maximum size in bytes of uploaded images. Default is 0, which means no "
"limits."
msgstr ""
#: mod/admin.php:982
#: mod/admin.php:1003
msgid "Maximum image length"
msgstr ""
#: mod/admin.php:982
#: mod/admin.php:1003
msgid ""
"Maximum length in pixels of the longest side of uploaded images. Default is "
"-1, which means no limits."
msgstr ""
#: mod/admin.php:983
#: mod/admin.php:1004
msgid "JPEG image quality"
msgstr ""
#: mod/admin.php:983
#: mod/admin.php:1004
msgid ""
"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
"100, which is full quality."
msgstr ""
#: mod/admin.php:985
#: mod/admin.php:1006
msgid "Register policy"
msgstr ""
#: mod/admin.php:986
#: mod/admin.php:1007
msgid "Maximum Daily Registrations"
msgstr ""
#: mod/admin.php:986
#: mod/admin.php:1007
msgid ""
"If registration is permitted above, this sets the maximum number of new user "
"registrations to accept per day. If register is set to closed, this setting "
"has no effect."
msgstr ""
#: mod/admin.php:987
#: mod/admin.php:1008
msgid "Register text"
msgstr ""
#: mod/admin.php:987
#: mod/admin.php:1008
msgid "Will be displayed prominently on the registration page."
msgstr ""
#: mod/admin.php:988
#: mod/admin.php:1009
msgid "Accounts abandoned after x days"
msgstr ""
#: mod/admin.php:988
#: mod/admin.php:1009
msgid ""
"Will not waste system resources polling external sites for abandonded "
"accounts. Enter 0 for no time limit."
msgstr ""
#: mod/admin.php:989
#: mod/admin.php:1010
msgid "Allowed friend domains"
msgstr ""
#: mod/admin.php:989
#: mod/admin.php:1010
msgid ""
"Comma separated list of domains which are allowed to establish friendships "
"with this site. Wildcards are accepted. Empty to allow any domains"
msgstr ""
#: mod/admin.php:990
#: mod/admin.php:1011
msgid "Allowed email domains"
msgstr ""
#: mod/admin.php:990
#: mod/admin.php:1011
msgid ""
"Comma separated list of domains which are allowed in email addresses for "
"registrations to this site. Wildcards are accepted. Empty to allow any "
"domains"
msgstr ""
#: mod/admin.php:991
#: mod/admin.php:1012
msgid "Block public"
msgstr ""
#: mod/admin.php:991
#: mod/admin.php:1012
msgid ""
"Check to block public access to all otherwise public personal pages on this "
"site unless you are currently logged in."
msgstr ""
#: mod/admin.php:992
#: mod/admin.php:1013
msgid "Force publish"
msgstr ""
#: mod/admin.php:992
#: mod/admin.php:1013
msgid ""
"Check to force all profiles on this site to be listed in the site directory."
msgstr ""
#: mod/admin.php:993
#: mod/admin.php:1014
msgid "Global directory URL"
msgstr ""
#: mod/admin.php:993
#: mod/admin.php:1014
msgid ""
"URL to the global directory. If this is not set, the global directory is "
"completely unavailable to the application."
msgstr ""
#: mod/admin.php:994
#: mod/admin.php:1015
msgid "Allow threaded items"
msgstr ""
#: mod/admin.php:994
#: mod/admin.php:1015
msgid "Allow infinite level threading for items on this site."
msgstr ""
#: mod/admin.php:995
#: mod/admin.php:1016
msgid "Private posts by default for new users"
msgstr ""
#: mod/admin.php:995
#: mod/admin.php:1016
msgid ""
"Set default post permissions for all new members to the default privacy "
"group rather than public."
msgstr ""
#: mod/admin.php:996
#: mod/admin.php:1017
msgid "Don't include post content in email notifications"
msgstr ""
#: mod/admin.php:996
#: mod/admin.php:1017
msgid ""
"Don't include the content of a post/comment/private message/etc. in the "
"email notifications that are sent out from this site, as a privacy measure."
msgstr ""
#: mod/admin.php:997
#: mod/admin.php:1018
msgid "Disallow public access to addons listed in the apps menu."
msgstr ""
#: mod/admin.php:997
#: mod/admin.php:1018
msgid ""
"Checking this box will restrict addons listed in the apps menu to members "
"only."
msgstr ""
#: mod/admin.php:998
#: mod/admin.php:1019
msgid "Don't embed private images in posts"
msgstr ""
#: mod/admin.php:998
#: mod/admin.php:1019
msgid ""
"Don't replace locally-hosted private photos in posts with an embedded copy "
"of the image. This means that contacts who receive posts containing private "
"photos will have to authenticate and load each image, which may take a while."
msgstr ""
#: mod/admin.php:999
#: mod/admin.php:1020
msgid "Allow Users to set remote_self"
msgstr ""
#: mod/admin.php:999
#: mod/admin.php:1020
msgid ""
"With checking this, every user is allowed to mark every contact as a "
"remote_self in the repair contact dialog. Setting this flag on a contact "
"causes mirroring every posting of that contact in the users stream."
msgstr ""
#: mod/admin.php:1000
#: mod/admin.php:1021
msgid "Block multiple registrations"
msgstr ""
#: mod/admin.php:1000
#: mod/admin.php:1021
msgid "Disallow users to register additional accounts for use as pages."
msgstr ""
#: mod/admin.php:1001
#: mod/admin.php:1022
msgid "OpenID support"
msgstr ""
#: mod/admin.php:1001
#: mod/admin.php:1022
msgid "OpenID support for registration and logins."
msgstr ""
#: mod/admin.php:1002
#: mod/admin.php:1023
msgid "Fullname check"
msgstr ""
#: mod/admin.php:1002
#: mod/admin.php:1023
msgid ""
"Force users to register with a space between firstname and lastname in Full "
"name, as an antispam measure"
msgstr ""
#: mod/admin.php:1003
#: mod/admin.php:1024
msgid "UTF-8 Regular expressions"
msgstr ""
#: mod/admin.php:1003
#: mod/admin.php:1024
msgid "Use PHP UTF8 regular expressions"
msgstr ""
#: mod/admin.php:1004
#: mod/admin.php:1025
msgid "Community Page Style"
msgstr ""
#: mod/admin.php:1004
#: mod/admin.php:1025
msgid ""
"Type of community page to show. 'Global community' shows every public "
"posting from an open distributed network that arrived on this server."
msgstr ""
#: mod/admin.php:1005
#: mod/admin.php:1026
msgid "Posts per user on community page"
msgstr ""
#: mod/admin.php:1005
#: mod/admin.php:1026
msgid ""
"The maximum number of posts per user on the community page. (Not valid for "
"'Global Community')"
msgstr ""
#: mod/admin.php:1006
#: mod/admin.php:1027
msgid "Enable OStatus support"
msgstr ""
#: mod/admin.php:1006
#: mod/admin.php:1027
msgid ""
"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
"communications in OStatus are public, so privacy warnings will be "
"occasionally displayed."
msgstr ""
#: mod/admin.php:1007
#: mod/admin.php:1028
msgid "OStatus conversation completion interval"
msgstr ""
#: mod/admin.php:1007
#: mod/admin.php:1028
msgid ""
"How often shall the poller check for new entries in OStatus conversations? "
"This can be a very ressource task."
msgstr ""
#: mod/admin.php:1008
#: mod/admin.php:1029
msgid "Only import OStatus threads from our contacts"
msgstr ""
#: mod/admin.php:1008
#: mod/admin.php:1029
msgid ""
"Normally we import every content from our OStatus contacts. With this option "
"we only store threads that are started by a contact that is known on our "
"system."
msgstr ""
#: mod/admin.php:1009
#: mod/admin.php:1030
msgid "OStatus support can only be enabled if threading is enabled."
msgstr ""
#: mod/admin.php:1011
#: mod/admin.php:1032
msgid ""
"Diaspora support can't be enabled because Friendica was installed into a sub "
"directory."
msgstr ""
#: mod/admin.php:1012
#: mod/admin.php:1033
msgid "Enable Diaspora support"
msgstr ""
#: mod/admin.php:1012
#: mod/admin.php:1033
msgid "Provide built-in Diaspora network compatibility."
msgstr ""
#: mod/admin.php:1013
#: mod/admin.php:1034
msgid "Only allow Friendica contacts"
msgstr ""
#: mod/admin.php:1013
#: mod/admin.php:1034
msgid ""
"All contacts must use Friendica protocols. All other built-in communication "
"protocols disabled."
msgstr ""
#: mod/admin.php:1014
#: mod/admin.php:1035
msgid "Verify SSL"
msgstr ""
#: mod/admin.php:1014
#: mod/admin.php:1035
msgid ""
"If you wish, you can turn on strict certificate checking. This will mean you "
"cannot connect (at all) to self-signed SSL sites."
msgstr ""
#: mod/admin.php:1015
#: mod/admin.php:1036
msgid "Proxy user"
msgstr ""
#: mod/admin.php:1016
#: mod/admin.php:1037
msgid "Proxy URL"
msgstr ""
#: mod/admin.php:1017
#: mod/admin.php:1038
msgid "Network timeout"
msgstr ""
#: mod/admin.php:1017
#: mod/admin.php:1038
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
msgstr ""
#: mod/admin.php:1018
#: mod/admin.php:1039
msgid "Delivery interval"
msgstr ""
#: mod/admin.php:1018
#: mod/admin.php:1039
msgid ""
"Delay background delivery processes by this many seconds to reduce system "
"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
"for large dedicated servers."
msgstr ""
#: mod/admin.php:1019
#: mod/admin.php:1040
msgid "Poll interval"
msgstr ""
#: mod/admin.php:1019
#: mod/admin.php:1040
msgid ""
"Delay background polling processes by this many seconds to reduce system "
"load. If 0, use delivery interval."
msgstr ""
#: mod/admin.php:1020
#: mod/admin.php:1041
msgid "Maximum Load Average"
msgstr ""
#: mod/admin.php:1020
#: mod/admin.php:1041
msgid ""
"Maximum system load before delivery and poll processes are deferred - "
"default 50."
msgstr ""
#: mod/admin.php:1021
#: mod/admin.php:1042
msgid "Maximum Load Average (Frontend)"
msgstr ""
#: mod/admin.php:1021
#: mod/admin.php:1042
msgid "Maximum system load before the frontend quits service - default 50."
msgstr ""
#: mod/admin.php:1022
#: mod/admin.php:1043
msgid "Maximum table size for optimization"
msgstr ""
#: mod/admin.php:1022
#: mod/admin.php:1043
msgid ""
"Maximum table size (in MB) for the automatic optimization - default 100 MB. "
"Enter -1 to disable it."
msgstr ""
#: mod/admin.php:1023
#: mod/admin.php:1044
msgid "Minimum level of fragmentation"
msgstr ""
#: mod/admin.php:1023
#: mod/admin.php:1044
msgid ""
"Minimum fragmenation level to start the automatic optimization - default "
"value is 30%."
msgstr ""
#: mod/admin.php:1025
#: mod/admin.php:1046
msgid "Periodical check of global contacts"
msgstr ""
#: mod/admin.php:1025
#: mod/admin.php:1046
msgid ""
"If enabled, the global contacts are checked periodically for missing or "
"outdated data and the vitality of the contacts and servers."
msgstr ""
#: mod/admin.php:1026
#: mod/admin.php:1047
msgid "Days between requery"
msgstr ""
#: mod/admin.php:1026
#: mod/admin.php:1047
msgid "Number of days after which a server is requeried for his contacts."
msgstr ""
#: mod/admin.php:1027
#: mod/admin.php:1048
msgid "Discover contacts from other servers"
msgstr ""
#: mod/admin.php:1027
#: mod/admin.php:1048
msgid ""
"Periodically query other servers for contacts. You can choose between "
"'users': the users on the remote system, 'Global Contacts': active contacts "
@ -7049,32 +7917,32 @@ msgid ""
"Global Contacts'."
msgstr ""
#: mod/admin.php:1028
#: mod/admin.php:1049
msgid "Timeframe for fetching global contacts"
msgstr ""
#: mod/admin.php:1028
#: mod/admin.php:1049
msgid ""
"When the discovery is activated, this value defines the timeframe for the "
"activity of the global contacts that are fetched from other servers."
msgstr ""
#: mod/admin.php:1029
#: mod/admin.php:1050
msgid "Search the local directory"
msgstr ""
#: mod/admin.php:1029
#: mod/admin.php:1050
msgid ""
"Search the local directory instead of the global directory. When searching "
"locally, every search will be executed on the global directory in the "
"background. This improves the search results when the search is repeated."
msgstr ""
#: mod/admin.php:1031
#: mod/admin.php:1052
msgid "Publish server information"
msgstr ""
#: mod/admin.php:1031
#: mod/admin.php:1052
msgid ""
"If enabled, general server and usage data will be published. The data "
"contains the name and version of the server, number of users with public "
@ -7082,190 +7950,190 @@ msgid ""
"href='http://the-federation.info/'>the-federation.info</a> for details."
msgstr ""
#: mod/admin.php:1033
#: mod/admin.php:1054
msgid "Use MySQL full text engine"
msgstr ""
#: mod/admin.php:1033
#: mod/admin.php:1054
msgid ""
"Activates the full text engine. Speeds up search - but can only search for "
"four and more characters."
msgstr ""
#: mod/admin.php:1034
#: mod/admin.php:1055
msgid "Suppress Language"
msgstr ""
#: mod/admin.php:1034
#: mod/admin.php:1055
msgid "Suppress language information in meta information about a posting."
msgstr ""
#: mod/admin.php:1035
#: mod/admin.php:1056
msgid "Suppress Tags"
msgstr ""
#: mod/admin.php:1035
#: mod/admin.php:1056
msgid "Suppress showing a list of hashtags at the end of the posting."
msgstr ""
#: mod/admin.php:1036
#: mod/admin.php:1057
msgid "Path to item cache"
msgstr ""
#: mod/admin.php:1036
#: mod/admin.php:1057
msgid "The item caches buffers generated bbcode and external images."
msgstr ""
#: mod/admin.php:1037
#: mod/admin.php:1058
msgid "Cache duration in seconds"
msgstr ""
#: mod/admin.php:1037
#: mod/admin.php:1058
msgid ""
"How long should the cache files be hold? Default value is 86400 seconds (One "
"day). To disable the item cache, set the value to -1."
msgstr ""
#: mod/admin.php:1038
#: mod/admin.php:1059
msgid "Maximum numbers of comments per post"
msgstr ""
#: mod/admin.php:1038
#: mod/admin.php:1059
msgid "How much comments should be shown for each post? Default value is 100."
msgstr ""
#: mod/admin.php:1039
#: mod/admin.php:1060
msgid "Path for lock file"
msgstr ""
#: mod/admin.php:1039
#: mod/admin.php:1060
msgid ""
"The lock file is used to avoid multiple pollers at one time. Only define a "
"folder here."
msgstr ""
#: mod/admin.php:1040
#: mod/admin.php:1061
msgid "Temp path"
msgstr ""
#: mod/admin.php:1040
#: mod/admin.php:1061
msgid ""
"If you have a restricted system where the webserver can't access the system "
"temp path, enter another path here."
msgstr ""
#: mod/admin.php:1041
#: mod/admin.php:1062
msgid "Base path to installation"
msgstr ""
#: mod/admin.php:1041
#: mod/admin.php:1062
msgid ""
"If the system cannot detect the correct path to your installation, enter the "
"correct path here. This setting should only be set if you are using a "
"restricted system and symbolic links to your webroot."
msgstr ""
#: mod/admin.php:1042
#: mod/admin.php:1063
msgid "Disable picture proxy"
msgstr ""
#: mod/admin.php:1042
#: mod/admin.php:1063
msgid ""
"The picture proxy increases performance and privacy. It shouldn't be used on "
"systems with very low bandwith."
msgstr ""
#: mod/admin.php:1043
#: mod/admin.php:1064
msgid "Enable old style pager"
msgstr ""
#: mod/admin.php:1043
#: mod/admin.php:1064
msgid ""
"The old style pager has page numbers but slows down massively the page speed."
msgstr ""
#: mod/admin.php:1044
#: mod/admin.php:1065
msgid "Only search in tags"
msgstr ""
#: mod/admin.php:1044
#: mod/admin.php:1065
msgid "On large systems the text search can slow down the system extremely."
msgstr ""
#: mod/admin.php:1046
#: mod/admin.php:1067
msgid "New base url"
msgstr ""
#: mod/admin.php:1046
#: mod/admin.php:1067
msgid ""
"Change base url for this server. Sends relocate message to all DFRN contacts "
"of all users."
msgstr ""
#: mod/admin.php:1048
#: mod/admin.php:1069
msgid "RINO Encryption"
msgstr ""
#: mod/admin.php:1048
#: mod/admin.php:1069
msgid "Encryption layer between nodes."
msgstr ""
#: mod/admin.php:1049
#: mod/admin.php:1070
msgid "Embedly API key"
msgstr ""
#: mod/admin.php:1049
#: mod/admin.php:1070
msgid ""
"<a href='http://embed.ly'>Embedly</a> is used to fetch additional data for "
"web pages. This is an optional parameter."
msgstr ""
#: mod/admin.php:1051
#: mod/admin.php:1072
msgid "Enable 'worker' background processing"
msgstr ""
#: mod/admin.php:1051
#: mod/admin.php:1072
msgid ""
"The worker background processing limits the number of parallel background "
"jobs to a maximum number and respects the system load."
msgstr ""
#: mod/admin.php:1052
#: mod/admin.php:1073
msgid "Maximum number of parallel workers"
msgstr ""
#: mod/admin.php:1052
#: mod/admin.php:1073
msgid ""
"On shared hosters set this to 2. On larger systems, values of 10 are great. "
"Default value is 4."
msgstr ""
#: mod/admin.php:1053
#: mod/admin.php:1074
msgid "Don't use 'proc_open' with the worker"
msgstr ""
#: mod/admin.php:1053
#: mod/admin.php:1074
msgid ""
"Enable this if your system doesn't allow the use of 'proc_open'. This can "
"happen on shared hosters. If this is enabled you should increase the "
"frequency of poller calls in your crontab."
msgstr ""
#: mod/admin.php:1054
#: mod/admin.php:1075
msgid "Enable fastlane"
msgstr ""
#: mod/admin.php:1054
#: mod/admin.php:1075
msgid ""
"When enabed, the fastlane mechanism starts an additional worker if processes "
"with higher priority are blocked by processes of lower priority."
msgstr ""
#: mod/admin.php:1055
#: mod/admin.php:1076
msgid "Enable frontend worker"
msgstr ""
#: mod/admin.php:1055
#: mod/admin.php:1076
msgid ""
"When enabled the Worker process is triggered when backend access is "
"performed (e.g. messages being delivered). On smaller sites you might want "
@ -7274,66 +8142,66 @@ msgid ""
"on your server. The worker background process needs to be activated for this."
msgstr ""
#: mod/admin.php:1084
#: mod/admin.php:1105
msgid "Update has been marked successful"
msgstr ""
#: mod/admin.php:1092
#: mod/admin.php:1113
#, php-format
msgid "Database structure update %s was successfully applied."
msgstr ""
#: mod/admin.php:1095
#: mod/admin.php:1116
#, php-format
msgid "Executing of database structure update %s failed with error: %s"
msgstr ""
#: mod/admin.php:1107
#: mod/admin.php:1128
#, php-format
msgid "Executing %s failed with error: %s"
msgstr ""
#: mod/admin.php:1110
#: mod/admin.php:1131
#, php-format
msgid "Update %s was successfully applied."
msgstr ""
#: mod/admin.php:1114
#: mod/admin.php:1135
#, php-format
msgid "Update %s did not return a status. Unknown if it succeeded."
msgstr ""
#: mod/admin.php:1116
#: mod/admin.php:1137
#, php-format
msgid "There was no additional update function %s that needed to be called."
msgstr ""
#: mod/admin.php:1135
#: mod/admin.php:1156
msgid "No failed updates."
msgstr ""
#: mod/admin.php:1136
#: mod/admin.php:1157
msgid "Check database structure"
msgstr ""
#: mod/admin.php:1141
#: mod/admin.php:1162
msgid "Failed Updates"
msgstr ""
#: mod/admin.php:1142
#: mod/admin.php:1163
msgid ""
"This does not include updates prior to 1139, which did not return a status."
msgstr ""
#: mod/admin.php:1143
#: mod/admin.php:1164
msgid "Mark success (if update was manually applied)"
msgstr ""
#: mod/admin.php:1144
#: mod/admin.php:1165
msgid "Attempt to execute this update step automatically"
msgstr ""
#: mod/admin.php:1178
#: mod/admin.php:1199
#, php-format
msgid ""
"\n"
@ -7341,7 +8209,7 @@ msgid ""
"\t\t\t\tthe administrator of %2$s has set up an account for you."
msgstr ""
#: mod/admin.php:1181
#: mod/admin.php:1202
#, php-format
msgid ""
"\n"
@ -7377,168 +8245,162 @@ msgid ""
"\t\t\tThank you and welcome to %4$s."
msgstr ""
#: mod/admin.php:1225
#: mod/admin.php:1246
#, php-format
msgid "%s user blocked/unblocked"
msgid_plural "%s users blocked/unblocked"
msgstr[0] ""
msgstr[1] ""
#: mod/admin.php:1232
#: mod/admin.php:1253
#, php-format
msgid "%s user deleted"
msgid_plural "%s users deleted"
msgstr[0] ""
msgstr[1] ""
#: mod/admin.php:1279
#: mod/admin.php:1300
#, php-format
msgid "User '%s' deleted"
msgstr ""
#: mod/admin.php:1287
#: mod/admin.php:1308
#, php-format
msgid "User '%s' unblocked"
msgstr ""
#: mod/admin.php:1287
#: mod/admin.php:1308
#, php-format
msgid "User '%s' blocked"
msgstr ""
#: mod/admin.php:1396 mod/admin.php:1422
#: mod/admin.php:1417 mod/admin.php:1443
msgid "Register date"
msgstr ""
#: mod/admin.php:1396 mod/admin.php:1422
#: mod/admin.php:1417 mod/admin.php:1443
msgid "Last login"
msgstr ""
#: mod/admin.php:1396 mod/admin.php:1422
#: mod/admin.php:1417 mod/admin.php:1443
msgid "Last item"
msgstr ""
#: mod/admin.php:1405
#: mod/admin.php:1426
msgid "Add User"
msgstr ""
#: mod/admin.php:1406
#: mod/admin.php:1427
msgid "select all"
msgstr ""
#: mod/admin.php:1407
#: mod/admin.php:1428
msgid "User registrations waiting for confirm"
msgstr ""
#: mod/admin.php:1408
#: mod/admin.php:1429
msgid "User waiting for permanent deletion"
msgstr ""
#: mod/admin.php:1409
#: mod/admin.php:1430
msgid "Request date"
msgstr ""
#: mod/admin.php:1410
#: mod/admin.php:1431
msgid "No registrations."
msgstr ""
#: mod/admin.php:1411
#: mod/admin.php:1432
msgid "Note from the user"
msgstr ""
#: mod/admin.php:1413
#: mod/admin.php:1433 mod/notifications.php:176 mod/notifications.php:255
msgid "Approve"
msgstr ""
#: mod/admin.php:1434
msgid "Deny"
msgstr ""
#: mod/admin.php:1415 mod/contacts.php:605 mod/contacts.php:805
#: mod/contacts.php:983
msgid "Block"
msgstr ""
#: mod/admin.php:1416 mod/contacts.php:605 mod/contacts.php:805
#: mod/contacts.php:983
msgid "Unblock"
msgstr ""
#: mod/admin.php:1417
#: mod/admin.php:1438
msgid "Site admin"
msgstr ""
#: mod/admin.php:1418
#: mod/admin.php:1439
msgid "Account expired"
msgstr ""
#: mod/admin.php:1421
#: mod/admin.php:1442
msgid "New User"
msgstr ""
#: mod/admin.php:1422
#: mod/admin.php:1443
msgid "Deleted since"
msgstr ""
#: mod/admin.php:1427
#: mod/admin.php:1448
msgid ""
"Selected users will be deleted!\\n\\nEverything these users had posted on "
"this site will be permanently deleted!\\n\\nAre you sure?"
msgstr ""
#: mod/admin.php:1428
#: mod/admin.php:1449
msgid ""
"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
"site will be permanently deleted!\\n\\nAre you sure?"
msgstr ""
#: mod/admin.php:1438
#: mod/admin.php:1459
msgid "Name of the new user."
msgstr ""
#: mod/admin.php:1439
#: mod/admin.php:1460
msgid "Nickname"
msgstr ""
#: mod/admin.php:1439
#: mod/admin.php:1460
msgid "Nickname of the new user."
msgstr ""
#: mod/admin.php:1440
#: mod/admin.php:1461
msgid "Email address of the new user."
msgstr ""
#: mod/admin.php:1483
#: mod/admin.php:1504
#, php-format
msgid "Plugin %s disabled."
msgstr ""
#: mod/admin.php:1487
#: mod/admin.php:1508
#, php-format
msgid "Plugin %s enabled."
msgstr ""
#: mod/admin.php:1498 mod/admin.php:1734
#: mod/admin.php:1519 mod/admin.php:1767
msgid "Disable"
msgstr ""
#: mod/admin.php:1500 mod/admin.php:1736
#: mod/admin.php:1521 mod/admin.php:1769
msgid "Enable"
msgstr ""
#: mod/admin.php:1523 mod/admin.php:1781
#: mod/admin.php:1544 mod/admin.php:1814
msgid "Toggle"
msgstr ""
#: mod/admin.php:1531 mod/admin.php:1790
#: mod/admin.php:1552 mod/admin.php:1823
msgid "Author: "
msgstr ""
#: mod/admin.php:1532 mod/admin.php:1791
#: mod/admin.php:1553 mod/admin.php:1824
msgid "Maintainer: "
msgstr ""
#: mod/admin.php:1584
#: mod/admin.php:1608
msgid "Reload active plugins"
msgstr ""
#: mod/admin.php:1589
#: mod/admin.php:1613
#, php-format
msgid ""
"There are currently no plugins available on your node. You can find the "
@ -7546,70 +8408,70 @@ msgid ""
"in the open plugin registry at %2$s"
msgstr ""
#: mod/admin.php:1694
#: mod/admin.php:1727
msgid "No themes found."
msgstr ""
#: mod/admin.php:1772
#: mod/admin.php:1805
msgid "Screenshot"
msgstr ""
#: mod/admin.php:1832
#: mod/admin.php:1865
msgid "Reload active themes"
msgstr ""
#: mod/admin.php:1837
#: mod/admin.php:1870
#, php-format
msgid "No themes found on the system. They should be paced in %1$s"
msgstr ""
#: mod/admin.php:1838
#: mod/admin.php:1871
msgid "[Experimental]"
msgstr ""
#: mod/admin.php:1839
#: mod/admin.php:1872
msgid "[Unsupported]"
msgstr ""
#: mod/admin.php:1863
#: mod/admin.php:1896
msgid "Log settings updated."
msgstr ""
#: mod/admin.php:1895
#: mod/admin.php:1928
msgid "PHP log currently enabled."
msgstr ""
#: mod/admin.php:1897
#: mod/admin.php:1930
msgid "PHP log currently disabled."
msgstr ""
#: mod/admin.php:1906
#: mod/admin.php:1939
msgid "Clear"
msgstr ""
#: mod/admin.php:1911
#: mod/admin.php:1944
msgid "Enable Debugging"
msgstr ""
#: mod/admin.php:1912
#: mod/admin.php:1945
msgid "Log file"
msgstr ""
#: mod/admin.php:1912
#: mod/admin.php:1945
msgid ""
"Must be writable by web server. Relative to your Friendica top-level "
"directory."
msgstr ""
#: mod/admin.php:1913
#: mod/admin.php:1946
msgid "Log level"
msgstr ""
#: mod/admin.php:1916
#: mod/admin.php:1949
msgid "PHP logging"
msgstr ""
#: mod/admin.php:1917
#: mod/admin.php:1950
msgid ""
"To enable logging of PHP errors and warnings you can add the following to "
"the .htconfig.php file of your installation. The filename set in the "
@ -7618,984 +8480,24 @@ msgid ""
"'display_errors' is to enable these options, set to '0' to disable them."
msgstr ""
#: mod/admin.php:2045
#: mod/admin.php:2078
#, php-format
msgid "Lock feature %s"
msgstr ""
#: mod/admin.php:2053
#: mod/admin.php:2086
msgid "Manage Additional Features"
msgstr ""
#: mod/contacts.php:128
#, php-format
msgid "%d contact edited."
msgid_plural "%d contacts edited."
msgstr[0] ""
msgstr[1] ""
#: mod/contacts.php:159 mod/contacts.php:368
msgid "Could not access contact record."
msgstr ""
#: mod/contacts.php:173
msgid "Could not locate selected profile."
msgstr ""
#: mod/contacts.php:206
msgid "Contact updated."
msgstr ""
#: mod/contacts.php:208 mod/dfrn_request.php:583
msgid "Failed to update contact record."
msgstr ""
#: mod/contacts.php:389
msgid "Contact has been blocked"
msgstr ""
#: mod/contacts.php:389
msgid "Contact has been unblocked"
msgstr ""
#: mod/contacts.php:400
msgid "Contact has been ignored"
msgstr ""
#: mod/contacts.php:400
msgid "Contact has been unignored"
msgstr ""
#: mod/contacts.php:412
msgid "Contact has been archived"
msgstr ""
#: mod/contacts.php:412
msgid "Contact has been unarchived"
msgstr ""
#: mod/contacts.php:437
msgid "Drop contact"
msgstr ""
#: mod/contacts.php:440 mod/contacts.php:801
msgid "Do you really want to delete this contact?"
msgstr ""
#: mod/contacts.php:457
msgid "Contact has been removed."
msgstr ""
#: mod/contacts.php:498
#, php-format
msgid "You are mutual friends with %s"
msgstr ""
#: mod/contacts.php:502
#, php-format
msgid "You are sharing with %s"
msgstr ""
#: mod/contacts.php:507
#, php-format
msgid "%s is sharing with you"
msgstr ""
#: mod/contacts.php:527
msgid "Private communications are not available for this contact."
msgstr ""
#: mod/contacts.php:534
msgid "(Update was successful)"
msgstr ""
#: mod/contacts.php:534
msgid "(Update was not successful)"
msgstr ""
#: mod/contacts.php:536 mod/contacts.php:964
msgid "Suggest friends"
msgstr ""
#: mod/contacts.php:540
#, php-format
msgid "Network type: %s"
msgstr ""
#: mod/contacts.php:553
msgid "Communications lost with this contact!"
msgstr ""
#: mod/contacts.php:556
msgid "Fetch further information for feeds"
msgstr ""
#: mod/contacts.php:557
msgid "Fetch information"
msgstr ""
#: mod/contacts.php:557
msgid "Fetch information and keywords"
msgstr ""
#: mod/contacts.php:575
msgid "Contact"
msgstr ""
#: mod/contacts.php:578
msgid "Profile Visibility"
msgstr ""
#: mod/contacts.php:579
#, php-format
msgid ""
"Please choose the profile you would like to display to %s when viewing your "
"profile securely."
msgstr ""
#: mod/contacts.php:580
msgid "Contact Information / Notes"
msgstr ""
#: mod/contacts.php:581
msgid "Edit contact notes"
msgstr ""
#: mod/contacts.php:587
msgid "Block/Unblock contact"
msgstr ""
#: mod/contacts.php:588
msgid "Ignore contact"
msgstr ""
#: mod/contacts.php:589
msgid "Repair URL settings"
msgstr ""
#: mod/contacts.php:590
msgid "View conversations"
msgstr ""
#: mod/contacts.php:596
msgid "Last update:"
msgstr ""
#: mod/contacts.php:598
msgid "Update public posts"
msgstr ""
#: mod/contacts.php:600 mod/contacts.php:974
msgid "Update now"
msgstr ""
#: mod/contacts.php:606 mod/contacts.php:806 mod/contacts.php:991
msgid "Unignore"
msgstr ""
#: mod/contacts.php:610
msgid "Currently blocked"
msgstr ""
#: mod/contacts.php:611
msgid "Currently ignored"
msgstr ""
#: mod/contacts.php:612
msgid "Currently archived"
msgstr ""
#: mod/contacts.php:613
msgid ""
"Replies/likes to your public posts <strong>may</strong> still be visible"
msgstr ""
#: mod/contacts.php:614
msgid "Notification for new posts"
msgstr ""
#: mod/contacts.php:614
msgid "Send a notification of every new post of this contact"
msgstr ""
#: mod/contacts.php:617
msgid "Blacklisted keywords"
msgstr ""
#: mod/contacts.php:617
msgid ""
"Comma separated list of keywords that should not be converted to hashtags, "
"when \"Fetch information and keywords\" is selected"
msgstr ""
#: mod/contacts.php:635
msgid "Actions"
msgstr ""
#: mod/contacts.php:638
msgid "Contact Settings"
msgstr ""
#: mod/contacts.php:684
msgid "Suggestions"
msgstr ""
#: mod/contacts.php:687
msgid "Suggest potential friends"
msgstr ""
#: mod/contacts.php:695
msgid "Show all contacts"
msgstr ""
#: mod/contacts.php:700
msgid "Unblocked"
msgstr ""
#: mod/contacts.php:703
msgid "Only show unblocked contacts"
msgstr ""
#: mod/contacts.php:709
msgid "Blocked"
msgstr ""
#: mod/contacts.php:712
msgid "Only show blocked contacts"
msgstr ""
#: mod/contacts.php:718
msgid "Ignored"
msgstr ""
#: mod/contacts.php:721
msgid "Only show ignored contacts"
msgstr ""
#: mod/contacts.php:727
msgid "Archived"
msgstr ""
#: mod/contacts.php:730
msgid "Only show archived contacts"
msgstr ""
#: mod/contacts.php:736
msgid "Hidden"
msgstr ""
#: mod/contacts.php:739
msgid "Only show hidden contacts"
msgstr ""
#: mod/contacts.php:796
msgid "Search your contacts"
msgstr ""
#: mod/contacts.php:807 mod/contacts.php:999
msgid "Archive"
msgstr ""
#: mod/contacts.php:807 mod/contacts.php:999
msgid "Unarchive"
msgstr ""
#: mod/contacts.php:810
msgid "Batch Actions"
msgstr ""
#: mod/contacts.php:856
msgid "View all contacts"
msgstr ""
#: mod/contacts.php:866
msgid "View all common friends"
msgstr ""
#: mod/contacts.php:873
msgid "Advanced Contact Settings"
msgstr ""
#: mod/contacts.php:907
msgid "Mutual Friendship"
msgstr ""
#: mod/contacts.php:911
msgid "is a fan of yours"
msgstr ""
#: mod/contacts.php:915
msgid "you are a fan of"
msgstr ""
#: mod/contacts.php:985
msgid "Toggle Blocked status"
msgstr ""
#: mod/contacts.php:993
msgid "Toggle Ignored status"
msgstr ""
#: mod/contacts.php:1001
msgid "Toggle Archive status"
msgstr ""
#: mod/contacts.php:1009
msgid "Delete contact"
msgstr ""
#: mod/dfrn_confirm.php:127
msgid ""
"This may occasionally happen if contact was requested by both persons and it "
"has already been approved."
msgstr ""
#: mod/dfrn_confirm.php:246
msgid "Response from remote site was not understood."
msgstr ""
#: mod/dfrn_confirm.php:255 mod/dfrn_confirm.php:260
msgid "Unexpected response from remote site: "
msgstr ""
#: mod/dfrn_confirm.php:269
msgid "Confirmation completed successfully."
msgstr ""
#: mod/dfrn_confirm.php:271 mod/dfrn_confirm.php:285 mod/dfrn_confirm.php:292
msgid "Remote site reported: "
msgstr ""
#: mod/dfrn_confirm.php:283
msgid "Temporary failure. Please wait and try again."
msgstr ""
#: mod/dfrn_confirm.php:290
msgid "Introduction failed or was revoked."
msgstr ""
#: mod/dfrn_confirm.php:419
msgid "Unable to set contact photo."
msgstr ""
#: mod/dfrn_confirm.php:557
#, php-format
msgid "No user record found for '%s' "
msgstr ""
#: mod/dfrn_confirm.php:567
msgid "Our site encryption key is apparently messed up."
msgstr ""
#: mod/dfrn_confirm.php:578
msgid "Empty site URL was provided or URL could not be decrypted by us."
msgstr ""
#: mod/dfrn_confirm.php:599
msgid "Contact record was not found for you on our site."
msgstr ""
#: mod/dfrn_confirm.php:613
#, php-format
msgid "Site public key not available in contact record for URL %s."
msgstr ""
#: mod/dfrn_confirm.php:633
msgid ""
"The ID provided by your system is a duplicate on our system. It should work "
"if you try again."
msgstr ""
#: mod/dfrn_confirm.php:644
msgid "Unable to set your contact credentials on our system."
msgstr ""
#: mod/dfrn_confirm.php:703
msgid "Unable to update your contact profile details on our system"
msgstr ""
#: mod/dfrn_confirm.php:775
#, php-format
msgid "%1$s has joined %2$s"
msgstr ""
#: mod/dfrn_request.php:101
msgid "This introduction has already been accepted."
msgstr ""
#: mod/dfrn_request.php:124 mod/dfrn_request.php:520
msgid "Profile location is not valid or does not contain profile information."
msgstr ""
#: mod/dfrn_request.php:129 mod/dfrn_request.php:525
msgid "Warning: profile location has no identifiable owner name."
msgstr ""
#: mod/dfrn_request.php:131 mod/dfrn_request.php:527
msgid "Warning: profile location has no profile photo."
msgstr ""
#: mod/dfrn_request.php:134 mod/dfrn_request.php:530
#, php-format
msgid "%d required parameter was not found at the given location"
msgid_plural "%d required parameters were not found at the given location"
msgstr[0] ""
msgstr[1] ""
#: mod/dfrn_request.php:180
msgid "Introduction complete."
msgstr ""
#: mod/dfrn_request.php:222
msgid "Unrecoverable protocol error."
msgstr ""
#: mod/dfrn_request.php:250
msgid "Profile unavailable."
msgstr ""
#: mod/dfrn_request.php:277
#, php-format
msgid "%s has received too many connection requests today."
msgstr ""
#: mod/dfrn_request.php:278
msgid "Spam protection measures have been invoked."
msgstr ""
#: mod/dfrn_request.php:279
msgid "Friends are advised to please try again in 24 hours."
msgstr ""
#: mod/dfrn_request.php:341
msgid "Invalid locator"
msgstr ""
#: mod/dfrn_request.php:350
msgid "Invalid email address."
msgstr ""
#: mod/dfrn_request.php:375
msgid "This account has not been configured for email. Request failed."
msgstr ""
#: mod/dfrn_request.php:478
msgid "You have already introduced yourself here."
msgstr ""
#: mod/dfrn_request.php:482
#, php-format
msgid "Apparently you are already friends with %s."
msgstr ""
#: mod/dfrn_request.php:503
msgid "Invalid profile URL."
msgstr ""
#: mod/dfrn_request.php:604
msgid "Your introduction has been sent."
msgstr ""
#: mod/dfrn_request.php:644
msgid ""
"Remote subscription can't be done for your network. Please subscribe "
"directly on your system."
msgstr ""
#: mod/dfrn_request.php:664
msgid "Please login to confirm introduction."
msgstr ""
#: mod/dfrn_request.php:674
msgid ""
"Incorrect identity currently logged in. Please login to <strong>this</"
"strong> profile."
msgstr ""
#: mod/dfrn_request.php:688 mod/dfrn_request.php:705
msgid "Confirm"
msgstr ""
#: mod/dfrn_request.php:700
msgid "Hide this contact"
msgstr ""
#: mod/dfrn_request.php:703
#, php-format
msgid "Welcome home %s."
msgstr ""
#: mod/dfrn_request.php:704
#, php-format
msgid "Please confirm your introduction/connection request to %s."
msgstr ""
#: mod/dfrn_request.php:833
msgid ""
"Please enter your 'Identity Address' from one of the following supported "
"communications networks:"
msgstr ""
#: mod/dfrn_request.php:854
#, php-format
msgid ""
"If you are not yet a member of the free social web, <a href=\"%s/siteinfo"
"\">follow this link to find a public Friendica site and join us today</a>."
msgstr ""
#: mod/dfrn_request.php:859
msgid "Friend/Connection Request"
msgstr ""
#: mod/dfrn_request.php:860
msgid ""
"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
"testuser@identi.ca"
msgstr ""
#: mod/dfrn_request.php:861 mod/follow.php:109
msgid "Please answer the following:"
msgstr ""
#: mod/dfrn_request.php:862 mod/follow.php:110
#, php-format
msgid "Does %s know you?"
msgstr ""
#: mod/dfrn_request.php:866 mod/follow.php:111
msgid "Add a personal note:"
msgstr ""
#: mod/dfrn_request.php:869
msgid "StatusNet/Federated Social Web"
msgstr ""
#: mod/dfrn_request.php:871
#, php-format
msgid ""
" - please do not use this form. Instead, enter %s into your Diaspora search "
"bar."
msgstr ""
#: mod/dfrn_request.php:872 mod/follow.php:117
msgid "Your Identity Address:"
msgstr ""
#: mod/dfrn_request.php:875 mod/follow.php:19
msgid "Submit Request"
msgstr ""
#: mod/follow.php:30
msgid "You already added this contact."
msgstr ""
#: mod/follow.php:39
msgid "Diaspora support isn't enabled. Contact can't be added."
msgstr ""
#: mod/follow.php:46
msgid "OStatus support is disabled. Contact can't be added."
msgstr ""
#: mod/follow.php:53
msgid "The network type couldn't be detected. Contact can't be added."
msgstr ""
#: mod/follow.php:180
msgid "Contact added"
msgstr ""
#: mod/install.php:139
msgid "Friendica Communications Server - Setup"
msgstr ""
#: mod/install.php:145
msgid "Could not connect to database."
msgstr ""
#: mod/install.php:149
msgid "Could not create table."
msgstr ""
#: mod/install.php:155
msgid "Your Friendica site database has been installed."
msgstr ""
#: mod/install.php:160
msgid ""
"You may need to import the file \"database.sql\" manually using phpmyadmin "
"or mysql."
msgstr ""
#: mod/install.php:161 mod/install.php:230 mod/install.php:607
msgid "Please see the file \"INSTALL.txt\"."
msgstr ""
#: mod/install.php:173
msgid "Database already in use."
msgstr ""
#: mod/install.php:227
msgid "System check"
msgstr ""
#: mod/install.php:232
msgid "Check again"
msgstr ""
#: mod/install.php:251
msgid "Database connection"
msgstr ""
#: mod/install.php:252
msgid ""
"In order to install Friendica we need to know how to connect to your "
"database."
msgstr ""
#: mod/install.php:253
msgid ""
"Please contact your hosting provider or site administrator if you have "
"questions about these settings."
msgstr ""
#: mod/install.php:254
msgid ""
"The database you specify below should already exist. If it does not, please "
"create it before continuing."
msgstr ""
#: mod/install.php:258
msgid "Database Server Name"
msgstr ""
#: mod/install.php:259
msgid "Database Login Name"
msgstr ""
#: mod/install.php:260
msgid "Database Login Password"
msgstr ""
#: mod/install.php:261
msgid "Database Name"
msgstr ""
#: mod/install.php:262 mod/install.php:303
msgid "Site administrator email address"
msgstr ""
#: mod/install.php:262 mod/install.php:303
msgid ""
"Your account email address must match this in order to use the web admin "
"panel."
msgstr ""
#: mod/install.php:266 mod/install.php:306
msgid "Please select a default timezone for your website"
msgstr ""
#: mod/install.php:293
msgid "Site settings"
msgstr ""
#: mod/install.php:307
msgid "System Language:"
msgstr ""
#: mod/install.php:307
msgid ""
"Set the default language for your Friendica installation interface and to "
"send emails."
msgstr ""
#: mod/install.php:347
msgid "Could not find a command line version of PHP in the web server PATH."
msgstr ""
#: mod/install.php:348
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. See <a href='https://"
"github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-"
"poller'>'Setup the poller'</a>"
msgstr ""
#: mod/install.php:352
msgid "PHP executable path"
msgstr ""
#: mod/install.php:352
msgid ""
"Enter full path to php executable. You can leave this blank to continue the "
"installation."
msgstr ""
#: mod/install.php:357
msgid "Command line PHP"
msgstr ""
#: mod/install.php:366
msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
msgstr ""
#: mod/install.php:367
msgid "Found PHP version: "
msgstr ""
#: mod/install.php:369
msgid "PHP cli binary"
msgstr ""
#: mod/install.php:380
msgid ""
"The command line version of PHP on your system does not have "
"\"register_argc_argv\" enabled."
msgstr ""
#: mod/install.php:381
msgid "This is required for message delivery to work."
msgstr ""
#: mod/install.php:383
msgid "PHP register_argc_argv"
msgstr ""
#: mod/install.php:404
msgid ""
"Error: the \"openssl_pkey_new\" function on this system is not able to "
"generate encryption keys"
msgstr ""
#: mod/install.php:405
msgid ""
"If running under Windows, please see \"http://www.php.net/manual/en/openssl."
"installation.php\"."
msgstr ""
#: mod/install.php:407
msgid "Generate encryption keys"
msgstr ""
#: mod/install.php:414
msgid "libCurl PHP module"
msgstr ""
#: mod/install.php:415
msgid "GD graphics PHP module"
msgstr ""
#: mod/install.php:416
msgid "OpenSSL PHP module"
msgstr ""
#: mod/install.php:417
msgid "mysqli PHP module"
msgstr ""
#: mod/install.php:418
msgid "mb_string PHP module"
msgstr ""
#: mod/install.php:419
msgid "mcrypt PHP module"
msgstr ""
#: mod/install.php:420
msgid "XML PHP module"
msgstr ""
#: mod/install.php:421
msgid "iconv module"
msgstr ""
#: mod/install.php:425 mod/install.php:427
msgid "Apache mod_rewrite module"
msgstr ""
#: mod/install.php:425
msgid ""
"Error: Apache webserver mod-rewrite module is required but not installed."
msgstr ""
#: mod/install.php:433
msgid "Error: libCURL PHP module required but not installed."
msgstr ""
#: mod/install.php:437
msgid ""
"Error: GD graphics PHP module with JPEG support required but not installed."
msgstr ""
#: mod/install.php:441
msgid "Error: openssl PHP module required but not installed."
msgstr ""
#: mod/install.php:445
msgid "Error: mysqli PHP module required but not installed."
msgstr ""
#: mod/install.php:449
msgid "Error: mb_string PHP module required but not installed."
msgstr ""
#: mod/install.php:453
msgid "Error: mcrypt PHP module required but not installed."
msgstr ""
#: mod/install.php:457
msgid "Error: iconv PHP module required but not installed."
msgstr ""
#: mod/install.php:466
msgid ""
"If you are using php_cli, please make sure that mcrypt module is enabled in "
"its config file"
msgstr ""
#: mod/install.php:469
msgid ""
"Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 "
"encryption layer."
msgstr ""
#: mod/install.php:471
msgid "mcrypt_create_iv() function"
msgstr ""
#: mod/install.php:479
msgid "Error, XML PHP module required but not installed."
msgstr ""
#: mod/install.php:494
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 ""
#: mod/install.php:495
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 ""
#: mod/install.php:496
msgid ""
"At the end of this procedure, we will give you a text to save in a file "
"named .htconfig.php in your Friendica top folder."
msgstr ""
#: mod/install.php:497
msgid ""
"You can alternatively skip this procedure and perform a manual installation. "
"Please see the file \"INSTALL.txt\" for instructions."
msgstr ""
#: mod/install.php:500
msgid ".htconfig.php is writable"
msgstr ""
#: mod/install.php:510
msgid ""
"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
"compiles templates to PHP to speed up rendering."
msgstr ""
#: mod/install.php:511
msgid ""
"In order to store these compiled templates, the web server needs to have "
"write access to the directory view/smarty3/ under the Friendica top level "
"folder."
msgstr ""
#: mod/install.php:512
msgid ""
"Please ensure that the user that your web server runs as (e.g. www-data) has "
"write access to this folder."
msgstr ""
#: mod/install.php:513
msgid ""
"Note: as a security measure, you should give the web server write access to "
"view/smarty3/ only--not the template files (.tpl) that it contains."
msgstr ""
#: mod/install.php:516
msgid "view/smarty3 is writable"
msgstr ""
#: mod/install.php:532
msgid ""
"Url rewrite in .htaccess is not working. Check your server configuration."
msgstr ""
#: mod/install.php:534
msgid "Url rewrite is working"
msgstr ""
#: mod/install.php:552
msgid "ImageMagick PHP extension is not installed"
msgstr ""
#: mod/install.php:555
msgid "ImageMagick PHP extension is installed"
msgstr ""
#: mod/install.php:557
msgid "ImageMagick supports GIF"
msgstr ""
#: mod/install.php:566
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 ""
#: mod/install.php:605
msgid "<h1>What next</h1>"
msgstr ""
#: mod/install.php:606
msgid ""
"IMPORTANT: You will need to [manually] setup a scheduled task for the poller."
msgstr ""
#: mod/item.php:116
msgid "Unable to locate original post."
msgstr ""
#: mod/item.php:341
msgid "Empty post discarded."
msgstr ""
#: mod/item.php:902
msgid "System error. Post not saved."
msgstr ""
#: mod/item.php:992
#, php-format
msgid ""
"This message was sent to you by %s, a member of the Friendica social network."
msgstr ""
#: mod/item.php:994
#, php-format
msgid "You may visit them online at %s"
msgstr ""
#: mod/item.php:995
msgid ""
"Please contact the sender by replying to this post if you do not wish to "
"receive these messages."
#: mod/viewcontacts.php:75
msgid "No contacts."
msgstr ""
#: mod/item.php:999
#, php-format
msgid "%s posted an update."
#: mod/network.php:190 mod/search.php:25
msgid "Remove term"
msgstr ""
#: mod/network.php:398
#: mod/network.php:397
#, php-format
msgid ""
"Warning: This group contains %s member from a network that doesn't allow non "
@ -8606,82 +8508,346 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
#: mod/network.php:401
#: mod/network.php:400
msgid "Messages in this group won't be send to these receivers."
msgstr ""
#: mod/network.php:529
#: mod/network.php:528
msgid "Private messages to this person are at risk of public disclosure."
msgstr ""
#: mod/network.php:534
#: mod/network.php:533
msgid "Invalid contact."
msgstr ""
#: mod/network.php:826
#: mod/network.php:827
msgid "Commented Order"
msgstr ""
#: mod/network.php:829
#: mod/network.php:830
msgid "Sort by Comment Date"
msgstr ""
#: mod/network.php:834
#: mod/network.php:835
msgid "Posted Order"
msgstr ""
#: mod/network.php:837
#: mod/network.php:838
msgid "Sort by Post Date"
msgstr ""
#: mod/network.php:848
#: mod/network.php:849
msgid "Posts that mention or involve you"
msgstr ""
#: mod/network.php:856
#: mod/network.php:857
msgid "New"
msgstr ""
#: mod/network.php:859
#: mod/network.php:860
msgid "Activity Stream - by date"
msgstr ""
#: mod/network.php:867
#: mod/network.php:868
msgid "Shared Links"
msgstr ""
#: mod/network.php:870
#: mod/network.php:871
msgid "Interesting Links"
msgstr ""
#: mod/network.php:878
#: mod/network.php:879
msgid "Starred"
msgstr ""
#: mod/network.php:881
#: mod/network.php:882
msgid "Favourite Posts"
msgstr ""
#: mod/ping.php:261
msgid "{0} wants to be your friend"
#: mod/search.php:100
msgid "Only logged in users are permitted to perform a search."
msgstr ""
#: mod/ping.php:276
msgid "{0} sent you a message"
#: mod/search.php:124
msgid "Too Many Requests"
msgstr ""
#: mod/ping.php:291
msgid "{0} requested registration"
#: mod/search.php:125
msgid "Only one search per minute is permitted for not logged in users."
msgstr ""
#: mod/viewcontacts.php:72
msgid "No contacts."
#: mod/search.php:230
#, php-format
msgid "Items tagged with: %s"
msgstr ""
#: object/Item.php:370
#: mod/notifications.php:35
msgid "Invalid request identifier."
msgstr ""
#: mod/notifications.php:44 mod/notifications.php:180
#: mod/notifications.php:258
msgid "Discard"
msgstr ""
#: mod/notifications.php:105
msgid "Network Notifications"
msgstr ""
#: mod/notifications.php:117
msgid "Personal Notifications"
msgstr ""
#: mod/notifications.php:123
msgid "Home Notifications"
msgstr ""
#: mod/notifications.php:152
msgid "Show Ignored Requests"
msgstr ""
#: mod/notifications.php:152
msgid "Hide Ignored Requests"
msgstr ""
#: mod/notifications.php:164 mod/notifications.php:228
msgid "Notification type: "
msgstr ""
#: mod/notifications.php:167
#, php-format
msgid "suggested by %s"
msgstr ""
#: mod/notifications.php:173 mod/notifications.php:246
msgid "Post a new friend activity"
msgstr ""
#: mod/notifications.php:173 mod/notifications.php:246
msgid "if applicable"
msgstr ""
#: mod/notifications.php:195
msgid "Claims to be known to you: "
msgstr ""
#: mod/notifications.php:196
msgid "yes"
msgstr ""
#: mod/notifications.php:196
msgid "no"
msgstr ""
#: mod/notifications.php:197 mod/notifications.php:202
msgid "Shall your connection be bidirectional or not?"
msgstr ""
#: mod/notifications.php:198 mod/notifications.php:203
#, php-format
msgid ""
"Accepting %s as a friend allows %s to subscribe to your posts, and you will "
"also receive updates from them in your news feed."
msgstr ""
#: mod/notifications.php:199
#, php-format
msgid ""
"Accepting %s as a subscriber allows them to subscribe to your posts, but you "
"will not receive updates from them in your news feed."
msgstr ""
#: mod/notifications.php:204
#, php-format
msgid ""
"Accepting %s as a sharer allows them to subscribe to your posts, but you "
"will not receive updates from them in your news feed."
msgstr ""
#: mod/notifications.php:215
msgid "Friend"
msgstr ""
#: mod/notifications.php:216
msgid "Sharer"
msgstr ""
#: mod/notifications.php:216
msgid "Subscriber"
msgstr ""
#: mod/notifications.php:266
msgid "No introductions."
msgstr ""
#: mod/notifications.php:307
msgid "Show unread"
msgstr ""
#: mod/notifications.php:307
msgid "Show all"
msgstr ""
#: mod/notifications.php:313
#, php-format
msgid "No more %s notifications."
msgstr ""
#: object/Item.php:385
msgid "via"
msgstr ""
#: view/theme/quattro/config.php:70
msgid "Alignment"
msgstr ""
#: view/theme/quattro/config.php:70
msgid "Left"
msgstr ""
#: view/theme/quattro/config.php:70
msgid "Center"
msgstr ""
#: view/theme/quattro/config.php:71 view/theme/clean/config.php:108
msgid "Color scheme"
msgstr ""
#: view/theme/quattro/config.php:72
msgid "Posts font size"
msgstr ""
#: view/theme/quattro/config.php:73
msgid "Textareas font size"
msgstr ""
#: view/theme/vier/config.php:69
msgid "Comma separated list of helper forums"
msgstr ""
#: view/theme/vier/config.php:115
msgid "Set style"
msgstr ""
#: view/theme/vier/config.php:116
msgid "Community Pages"
msgstr ""
#: view/theme/vier/config.php:117 view/theme/vier/theme.php:146
msgid "Community Profiles"
msgstr ""
#: view/theme/vier/config.php:118
msgid "Help or @NewHere ?"
msgstr ""
#: view/theme/vier/config.php:119 view/theme/vier/theme.php:385
msgid "Connect Services"
msgstr ""
#: view/theme/vier/config.php:120 view/theme/vier/theme.php:194
msgid "Find Friends"
msgstr ""
#: view/theme/vier/config.php:121 view/theme/vier/theme.php:176
msgid "Last users"
msgstr ""
#: view/theme/vier/theme.php:195
msgid "Local Directory"
msgstr ""
#: view/theme/vier/theme.php:286
msgid "Quick Start"
msgstr ""
#: view/theme/duepuntozero/config.php:44
msgid "greenzero"
msgstr ""
#: view/theme/duepuntozero/config.php:45
msgid "purplezero"
msgstr ""
#: view/theme/duepuntozero/config.php:46
msgid "easterbunny"
msgstr ""
#: view/theme/duepuntozero/config.php:47
msgid "darkzero"
msgstr ""
#: view/theme/duepuntozero/config.php:48
msgid "comix"
msgstr ""
#: view/theme/duepuntozero/config.php:49
msgid "slackr"
msgstr ""
#: view/theme/duepuntozero/config.php:64
msgid "Variations"
msgstr ""
#: view/theme/clean/config.php:61
msgid "Midnight"
msgstr ""
#: view/theme/clean/config.php:62
msgid "Zenburn"
msgstr ""
#: view/theme/clean/config.php:63
msgid "Bootstrap"
msgstr ""
#: view/theme/clean/config.php:64
msgid "Shades of Pink"
msgstr ""
#: view/theme/clean/config.php:65
msgid "Lime and Orange"
msgstr ""
#: view/theme/clean/config.php:66
msgid "GeoCities Retro"
msgstr ""
#: view/theme/clean/config.php:92
msgid "Background Image"
msgstr ""
#: view/theme/clean/config.php:94
msgid ""
"The URL to a picture (e.g. from your photo album) that should be used as "
"background image."
msgstr ""
#: view/theme/clean/config.php:99
msgid "Background Color"
msgstr ""
#: view/theme/clean/config.php:101
msgid "HEX value for the background color. Don't include the #"
msgstr ""
#: view/theme/clean/config.php:115
msgid "font size"
msgstr ""
#: view/theme/clean/config.php:117
msgid "base font size for your interface"
msgstr ""
#: view/theme/clean/config.php:122
msgid "Display Accesskeys"
msgstr ""
#: view/theme/clean/config.php:124
msgid ""
"Diaplay the access keys assigned to some menu element in the web interface."
msgstr ""
#: view/theme/frio/php/Image.php:23
msgid "Repeat the image"
msgstr ""
@ -8714,195 +8880,103 @@ msgstr ""
msgid "Resize to best fit and retain aspect ratio."
msgstr ""
#: view/theme/frio/config.php:42
#: view/theme/frio/config.php:47
msgid "Default"
msgstr ""
#: view/theme/frio/config.php:54
#: view/theme/frio/config.php:59
msgid "Note: "
msgstr ""
#: view/theme/frio/config.php:54
#: view/theme/frio/config.php:59
msgid "Check image permissions if all users are allowed to visit the image"
msgstr ""
#: view/theme/frio/config.php:62
#: view/theme/frio/config.php:67
msgid "Select scheme"
msgstr ""
#: view/theme/frio/config.php:63
#: view/theme/frio/config.php:68
msgid "Navigation bar background color"
msgstr ""
#: view/theme/frio/config.php:64
#: view/theme/frio/config.php:69
msgid "Navigation bar icon color "
msgstr ""
#: view/theme/frio/config.php:65
#: view/theme/frio/config.php:70
msgid "Link color"
msgstr ""
#: view/theme/frio/config.php:66
#: view/theme/frio/config.php:71
msgid "Set the background color"
msgstr ""
#: view/theme/frio/config.php:67
#: view/theme/frio/config.php:72
msgid "Content background transparency"
msgstr ""
#: view/theme/frio/config.php:68
#: view/theme/frio/config.php:73
msgid "Set the background image"
msgstr ""
#: view/theme/frio/theme.php:229
#: view/theme/frio/theme.php:226
msgid "Guest"
msgstr ""
#: view/theme/frio/theme.php:235
#: view/theme/frio/theme.php:232
msgid "Visitor"
msgstr ""
#: view/theme/quattro/config.php:67
msgid "Alignment"
msgstr ""
#: view/theme/quattro/config.php:67
msgid "Left"
msgstr ""
#: view/theme/quattro/config.php:67
msgid "Center"
msgstr ""
#: view/theme/quattro/config.php:68
msgid "Color scheme"
msgstr ""
#: view/theme/quattro/config.php:69
msgid "Posts font size"
msgstr ""
#: view/theme/quattro/config.php:70
msgid "Textareas font size"
msgstr ""
#: view/theme/vier/theme.php:152 view/theme/vier/config.php:112
msgid "Community Profiles"
msgstr ""
#: view/theme/vier/theme.php:181 view/theme/vier/config.php:116
msgid "Last users"
msgstr ""
#: view/theme/vier/theme.php:199 view/theme/vier/config.php:115
msgid "Find Friends"
msgstr ""
#: view/theme/vier/theme.php:200
msgid "Local Directory"
msgstr ""
#: view/theme/vier/theme.php:291
msgid "Quick Start"
msgstr ""
#: view/theme/vier/theme.php:373 view/theme/vier/config.php:114
msgid "Connect Services"
msgstr ""
#: view/theme/vier/config.php:64
msgid "Comma separated list of helper forums"
msgstr ""
#: view/theme/vier/config.php:110
msgid "Set style"
msgstr ""
#: view/theme/vier/config.php:111
msgid "Community Pages"
msgstr ""
#: view/theme/vier/config.php:113
msgid "Help or @NewHere ?"
msgstr ""
#: view/theme/duepuntozero/config.php:45
msgid "greenzero"
msgstr ""
#: view/theme/duepuntozero/config.php:46
msgid "purplezero"
msgstr ""
#: view/theme/duepuntozero/config.php:47
msgid "easterbunny"
msgstr ""
#: view/theme/duepuntozero/config.php:48
msgid "darkzero"
msgstr ""
#: view/theme/duepuntozero/config.php:49
msgid "comix"
msgstr ""
#: view/theme/duepuntozero/config.php:50
msgid "slackr"
msgstr ""
#: view/theme/duepuntozero/config.php:62
msgid "Variations"
#: index.php:457
msgid "toggle mobile"
msgstr ""
#: boot.php:970
msgid "Delete this item?"
msgstr ""
#: boot.php:973
#: boot.php:972
msgid "show fewer"
msgstr ""
#: boot.php:1655
#: boot.php:1696
#, php-format
msgid "Update %s failed. See error logs."
msgstr ""
#: boot.php:1767
#: boot.php:1808
msgid "Create a New Account"
msgstr ""
#: boot.php:1796
#: boot.php:1837
msgid "Password: "
msgstr ""
#: boot.php:1797
#: boot.php:1838
msgid "Remember me"
msgstr ""
#: boot.php:1800
#: boot.php:1841
msgid "Or login using OpenID: "
msgstr ""
#: boot.php:1806
#: boot.php:1847
msgid "Forgot your password?"
msgstr ""
#: boot.php:1809
#: boot.php:1850
msgid "Website Terms of Service"
msgstr ""
#: boot.php:1810
#: boot.php:1851
msgid "terms of service"
msgstr ""
#: boot.php:1812
#: boot.php:1853
msgid "Website Privacy Policy"
msgstr ""
#: boot.php:1813
#: boot.php:1854
msgid "privacy policy"
msgstr ""
#: index.php:451
msgid "toggle mobile"
msgstr ""

View file

@ -9,7 +9,7 @@
# David Rabel <david.rabel@noresoft.com>, 2016
# Erkan Yilmaz <erkan77@gmail.com>, 2011
# Fabian Dost <friends@dostmusik.de>, 2012
# foss <foss@openmailbox.org>, 2014,2016
# foss <foss@openmailbox.org>, 2014,2016-2017
# Frank Dieckmann <frank@lumina-verte.org>, 2015
# Fabian Dost <friends@dostmusik.de>, 2012
# greeneyedred <greeneyedred@googlemail.com>, 2012
@ -35,8 +35,8 @@ msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-12-19 07:46+0100\n"
"PO-Revision-Date: 2017-02-17 07:07+0000\n"
"POT-Creation-Date: 2017-03-03 10:29+0100\n"
"PO-Revision-Date: 2017-03-05 11:30+0000\n"
"Last-Translator: Tobias Diekershoff <tobias.diekershoff@gmx.net>\n"
"Language-Team: German (http://www.transifex.com/Friendica/friendica/language/de/)\n"
"MIME-Version: 1.0\n"
@ -45,112 +45,6 @@ msgstr ""
"Language: de\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: include/contact_widgets.php:6
msgid "Add New Contact"
msgstr "Neuen Kontakt hinzufügen"
#: include/contact_widgets.php:7
msgid "Enter address or web location"
msgstr "Adresse oder Web-Link eingeben"
#: include/contact_widgets.php:8
msgid "Example: bob@example.com, http://example.com/barbara"
msgstr "Beispiel: bob@example.com, http://example.com/barbara"
#: include/contact_widgets.php:10 include/identity.php:218
#: mod/allfriends.php:82 mod/dirfind.php:201 mod/match.php:87
#: mod/suggest.php:101
msgid "Connect"
msgstr "Verbinden"
#: include/contact_widgets.php:24
#, php-format
msgid "%d invitation available"
msgid_plural "%d invitations available"
msgstr[0] "%d Einladung verfügbar"
msgstr[1] "%d Einladungen verfügbar"
#: include/contact_widgets.php:30
msgid "Find People"
msgstr "Leute finden"
#: include/contact_widgets.php:31
msgid "Enter name or interest"
msgstr "Name oder Interessen eingeben"
#: include/contact_widgets.php:32 include/Contact.php:354
#: include/conversation.php:981 mod/allfriends.php:66 mod/dirfind.php:204
#: mod/match.php:72 mod/suggest.php:83 mod/contacts.php:602 mod/follow.php:103
msgid "Connect/Follow"
msgstr "Verbinden/Folgen"
#: include/contact_widgets.php:33
msgid "Examples: Robert Morgenstein, Fishing"
msgstr "Beispiel: Robert Morgenstein, Angeln"
#: include/contact_widgets.php:34 mod/directory.php:204 mod/contacts.php:798
msgid "Find"
msgstr "Finde"
#: include/contact_widgets.php:35 mod/suggest.php:114
#: view/theme/vier/theme.php:203
msgid "Friend Suggestions"
msgstr "Kontaktvorschläge"
#: include/contact_widgets.php:36 view/theme/vier/theme.php:202
msgid "Similar Interests"
msgstr "Ähnliche Interessen"
#: include/contact_widgets.php:37
msgid "Random Profile"
msgstr "Zufälliges Profil"
#: include/contact_widgets.php:38 view/theme/vier/theme.php:204
msgid "Invite Friends"
msgstr "Freunde einladen"
#: include/contact_widgets.php:108
msgid "Networks"
msgstr "Netzwerke"
#: include/contact_widgets.php:111
msgid "All Networks"
msgstr "Alle Netzwerke"
#: include/contact_widgets.php:141 include/features.php:110
msgid "Saved Folders"
msgstr "Gespeicherte Ordner"
#: include/contact_widgets.php:144 include/contact_widgets.php:176
msgid "Everything"
msgstr "Alles"
#: include/contact_widgets.php:173
msgid "Categories"
msgstr "Kategorien"
#: include/contact_widgets.php:237
#, php-format
msgid "%d contact in common"
msgid_plural "%d contacts in common"
msgstr[0] "%d gemeinsamer Kontakt"
msgstr[1] "%d gemeinsame Kontakte"
#: include/contact_widgets.php:242 include/ForumManager.php:119
#: include/items.php:2245 mod/content.php:624 object/Item.php:432
#: view/theme/vier/theme.php:260 boot.php:972
msgid "show more"
msgstr "mehr anzeigen"
#: include/ForumManager.php:114 include/nav.php:131 include/text.php:1025
#: view/theme/vier/theme.php:255
msgid "Forums"
msgstr "Foren"
#: include/ForumManager.php:116 view/theme/vier/theme.php:257
msgid "External link to forum"
msgstr "Externer Link zum Forum"
#: include/profile_selectors.php:6
msgid "Male"
msgstr "Männlich"
@ -203,7 +97,7 @@ msgstr "Nicht spezifiziert"
msgid "Other"
msgstr "Andere"
#: include/profile_selectors.php:6 include/conversation.php:1487
#: include/profile_selectors.php:6 include/conversation.php:1478
msgid "Undecided"
msgid_plural "Undecided"
msgstr[0] "Unentschieden"
@ -385,433 +279,149 @@ msgstr "Ist mir nicht wichtig"
msgid "Ask me"
msgstr "Frag mich"
#: include/dba_pdo.php:72 include/dba.php:56
#: include/ForumManager.php:114 include/nav.php:131 include/text.php:1027
#: view/theme/vier/theme.php:250
msgid "Forums"
msgstr "Foren"
#: include/ForumManager.php:116 view/theme/vier/theme.php:252
msgid "External link to forum"
msgstr "Externer Link zum Forum"
#: include/ForumManager.php:119 include/contact_widgets.php:253
#: include/items.php:2254 mod/content.php:624 object/Item.php:447
#: view/theme/vier/theme.php:255 boot.php:971
msgid "show more"
msgstr "mehr anzeigen"
#: include/NotificationsManager.php:153
msgid "System"
msgstr "System"
#: include/NotificationsManager.php:160 include/nav.php:158 mod/admin.php:412
#: view/theme/frio/theme.php:253
msgid "Network"
msgstr "Netzwerk"
#: include/NotificationsManager.php:167 mod/profiles.php:695
#: mod/network.php:846
msgid "Personal"
msgstr "Persönlich"
#: include/NotificationsManager.php:174 include/nav.php:105
#: include/nav.php:161
msgid "Home"
msgstr "Pinnwand"
#: include/NotificationsManager.php:181 include/nav.php:166
msgid "Introductions"
msgstr "Kontaktanfragen"
#: include/NotificationsManager.php:239 include/NotificationsManager.php:251
#, php-format
msgid "Cannot locate DNS info for database server '%s'"
msgstr "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln."
msgid "%s commented on %s's post"
msgstr "%s hat %ss Beitrag kommentiert"
#: include/NotificationsManager.php:250
#, php-format
msgid "%s created a new post"
msgstr "%s hat einen neuen Beitrag erstellt"
#: include/NotificationsManager.php:265
#, php-format
msgid "%s liked %s's post"
msgstr "%s mag %ss Beitrag"
#: include/NotificationsManager.php:278
#, php-format
msgid "%s disliked %s's post"
msgstr "%s mag %ss Beitrag nicht"
#: include/NotificationsManager.php:291
#, php-format
msgid "%s is attending %s's event"
msgstr "%s nimmt an %s's Event teil"
#: include/NotificationsManager.php:304
#, php-format
msgid "%s is not attending %s's event"
msgstr "%s nimmt nicht an %s's Event teil"
#: include/NotificationsManager.php:317
#, php-format
msgid "%s may attend %s's event"
msgstr "%s nimmt eventuell an %s's Event teil"
#: include/NotificationsManager.php:334
#, php-format
msgid "%s is now friends with %s"
msgstr "%s ist jetzt mit %s befreundet"
#: include/NotificationsManager.php:770
msgid "Friend Suggestion"
msgstr "Kontaktvorschlag"
#: include/NotificationsManager.php:803
msgid "Friend/Connect Request"
msgstr "Kontakt-/Freundschaftsanfrage"
#: include/NotificationsManager.php:803
msgid "New Follower"
msgstr "Neuer Bewunderer"
#: include/Photo.php:1038 include/Photo.php:1054 include/Photo.php:1062
#: include/Photo.php:1087 include/message.php:146 mod/item.php:462
#: mod/wall_upload.php:216 mod/wall_upload.php:230 mod/wall_upload.php:237
msgid "Wall Photos"
msgstr "Pinnwand-Bilder"
#: include/auth.php:45
msgid "Logged out."
msgstr "Abgemeldet."
#: include/auth.php:116 include/auth.php:178 mod/openid.php:100
#: include/auth.php:116 include/auth.php:177 mod/openid.php:110
msgid "Login failed."
msgstr "Anmeldung fehlgeschlagen."
#: include/auth.php:132 include/user.php:75
#: include/auth.php:131 include/user.php:75
msgid ""
"We encountered a problem while logging in with the OpenID you provided. "
"Please check the correct spelling of the ID."
msgstr "Beim Versuch Dich mit der von Dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass Du die OpenID richtig geschrieben hast."
#: include/auth.php:132 include/user.php:75
#: include/auth.php:131 include/user.php:75
msgid "The error message was:"
msgstr "Die Fehlermeldung lautete:"
#: include/group.php:25
msgid ""
"A deleted group with this name was revived. Existing item permissions "
"<strong>may</strong> apply to this group and any future members. If this is "
"not what you intended, please create another group with a different name."
msgstr "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen <strong>könnten</strong> auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls Du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen."
#: include/bbcode.php:350 include/bbcode.php:1055 include/bbcode.php:1056
msgid "Image/photo"
msgstr "Bild/Foto"
#: include/group.php:209
msgid "Default privacy group for new contacts"
msgstr "Voreingestellte Gruppe für neue Kontakte"
#: include/group.php:242
msgid "Everybody"
msgstr "Alle Kontakte"
#: include/group.php:265
msgid "edit"
msgstr "bearbeiten"
#: include/group.php:286 mod/newmember.php:61
msgid "Groups"
msgstr "Gruppen"
#: include/group.php:288
msgid "Edit groups"
msgstr "Gruppen bearbeiten"
#: include/group.php:290
msgid "Edit group"
msgstr "Gruppe bearbeiten"
#: include/group.php:291
msgid "Create a new group"
msgstr "Neue Gruppe erstellen"
#: include/group.php:292 mod/group.php:94 mod/group.php:178
msgid "Group Name: "
msgstr "Gruppenname:"
#: include/group.php:294
msgid "Contacts not in any group"
msgstr "Kontakte in keiner Gruppe"
#: include/group.php:296 mod/network.php:201
msgid "add"
msgstr "hinzufügen"
#: include/contact_selectors.php:32
msgid "Unknown | Not categorised"
msgstr "Unbekannt | Nicht kategorisiert"
#: include/contact_selectors.php:33
msgid "Block immediately"
msgstr "Sofort blockieren"
#: include/contact_selectors.php:34
msgid "Shady, spammer, self-marketer"
msgstr "Zwielichtig, Spammer, Selbstdarsteller"
#: include/contact_selectors.php:35
msgid "Known to me, but no opinion"
msgstr "Ist mir bekannt, hab aber keine Meinung"
#: include/contact_selectors.php:36
msgid "OK, probably harmless"
msgstr "OK, wahrscheinlich harmlos"
#: include/contact_selectors.php:37
msgid "Reputable, has my trust"
msgstr "Seriös, hat mein Vertrauen"
#: include/contact_selectors.php:56 mod/admin.php:890
msgid "Frequently"
msgstr "immer wieder"
#: include/contact_selectors.php:57 mod/admin.php:891
msgid "Hourly"
msgstr "Stündlich"
#: include/contact_selectors.php:58 mod/admin.php:892
msgid "Twice daily"
msgstr "Zweimal täglich"
#: include/contact_selectors.php:59 mod/admin.php:893
msgid "Daily"
msgstr "Täglich"
#: include/contact_selectors.php:60
msgid "Weekly"
msgstr "Wöchentlich"
#: include/contact_selectors.php:61
msgid "Monthly"
msgstr "Monatlich"
#: include/contact_selectors.php:76 mod/dfrn_request.php:868
msgid "Friendica"
msgstr "Friendica"
#: include/contact_selectors.php:77
msgid "OStatus"
msgstr "OStatus"
#: include/contact_selectors.php:78
msgid "RSS/Atom"
msgstr "RSS/Atom"
#: include/contact_selectors.php:79 include/contact_selectors.php:86
#: mod/admin.php:1396 mod/admin.php:1409 mod/admin.php:1422 mod/admin.php:1440
msgid "Email"
msgstr "E-Mail"
#: include/contact_selectors.php:80 mod/settings.php:842
#: mod/dfrn_request.php:870
msgid "Diaspora"
msgstr "Diaspora"
#: include/contact_selectors.php:81
msgid "Facebook"
msgstr "Facebook"
#: include/contact_selectors.php:82
msgid "Zot!"
msgstr "Zott"
#: include/contact_selectors.php:83
msgid "LinkedIn"
msgstr "LinkedIn"
#: include/contact_selectors.php:84
msgid "XMPP/IM"
msgstr "XMPP/Chat"
#: include/contact_selectors.php:85
msgid "MySpace"
msgstr "MySpace"
#: include/contact_selectors.php:87
msgid "Google+"
msgstr "Google+"
#: include/contact_selectors.php:88
msgid "pump.io"
msgstr "pump.io"
#: include/contact_selectors.php:89
msgid "Twitter"
msgstr "Twitter"
#: include/contact_selectors.php:90
msgid "Diaspora Connector"
msgstr "Diaspora"
#: include/contact_selectors.php:91
msgid "GNU Social"
msgstr "GNU Social"
#: include/contact_selectors.php:92
msgid "App.net"
msgstr "App.net"
#: include/contact_selectors.php:103
msgid "Hubzilla/Redmatrix"
msgstr "Hubzilla/Redmatrix"
#: include/acl_selectors.php:327
msgid "Post to Email"
msgstr "An E-Mail senden"
#: include/acl_selectors.php:332
#: include/bbcode.php:467
#, php-format
msgid "Connectors disabled, since \"%s\" is enabled."
msgstr "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist."
msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
msgstr "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
#: include/acl_selectors.php:333 mod/settings.php:1181
msgid "Hide your profile details from unknown viewers?"
msgstr "Profil-Details vor unbekannten Betrachtern verbergen?"
#: include/bbcode.php:1015 include/bbcode.php:1035
msgid "$1 wrote:"
msgstr "$1 hat geschrieben:"
#: include/acl_selectors.php:338
msgid "Visible to everybody"
msgstr "Für jeden sichtbar"
#: include/bbcode.php:1064 include/bbcode.php:1065
msgid "Encrypted content"
msgstr "Verschlüsselter Inhalt"
#: include/acl_selectors.php:339 view/theme/vier/config.php:103
msgid "show"
msgstr "zeigen"
#: include/bbcode.php:1167
msgid "Invalid source protocol"
msgstr "Ungültiges Quell-Protokoll"
#: include/acl_selectors.php:340 view/theme/vier/config.php:103
msgid "don't show"
msgstr "nicht zeigen"
#: include/bbcode.php:1177
msgid "Invalid link protocol"
msgstr "Ungültiges Link-Protokoll"
#: include/acl_selectors.php:346 mod/editpost.php:133
msgid "CC: email addresses"
msgstr "Cc: E-Mail-Addressen"
#: include/acl_selectors.php:347 mod/editpost.php:140
msgid "Example: bob@example.com, mary@example.com"
msgstr "Z.B.: bob@example.com, mary@example.com"
#: include/acl_selectors.php:349 mod/events.php:509 mod/photos.php:1156
#: mod/photos.php:1535
msgid "Permissions"
msgstr "Berechtigungen"
#: include/acl_selectors.php:350
msgid "Close"
msgstr "Schließen"
#: include/like.php:163 include/conversation.php:130
#: include/conversation.php:266 include/text.php:1804 mod/subthread.php:87
#: mod/tagger.php:62
msgid "photo"
msgstr "Foto"
#: include/like.php:163 include/diaspora.php:1406 include/conversation.php:125
#: include/conversation.php:134 include/conversation.php:261
#: include/conversation.php:270 mod/subthread.php:87 mod/tagger.php:62
msgid "status"
msgstr "Status"
#: include/like.php:165 include/conversation.php:122
#: include/conversation.php:258 include/text.php:1802
msgid "event"
msgstr "Event"
#: include/like.php:182 include/diaspora.php:1402 include/conversation.php:141
#: include/dba_pdo.php:72 include/dba.php:56
#, php-format
msgid "%1$s likes %2$s's %3$s"
msgstr "%1$s mag %2$ss %3$s"
#: include/like.php:184 include/conversation.php:144
#, php-format
msgid "%1$s doesn't like %2$s's %3$s"
msgstr "%1$s mag %2$ss %3$s nicht"
#: include/like.php:186
#, php-format
msgid "%1$s is attending %2$s's %3$s"
msgstr "%1$s nimmt an %2$ss %3$s teil."
#: include/like.php:188
#, php-format
msgid "%1$s is not attending %2$s's %3$s"
msgstr "%1$s nimmt nicht an %2$ss %3$s teil."
#: include/like.php:190
#, php-format
msgid "%1$s may attend %2$s's %3$s"
msgstr "%1$s nimmt eventuell an %2$ss %3$s teil."
#: include/message.php:15 include/message.php:173
msgid "[no subject]"
msgstr "[kein Betreff]"
#: include/message.php:145 include/Photo.php:1040 include/Photo.php:1056
#: include/Photo.php:1064 include/Photo.php:1089 mod/wall_upload.php:218
#: mod/wall_upload.php:232 mod/wall_upload.php:239 mod/item.php:478
msgid "Wall Photos"
msgstr "Pinnwand-Bilder"
#: include/plugin.php:526 include/plugin.php:528
msgid "Click here to upgrade."
msgstr "Zum Upgraden hier klicken."
#: include/plugin.php:534
msgid "This action exceeds the limits set by your subscription plan."
msgstr "Diese Aktion überschreitet die Obergrenze Deines Abonnements."
#: include/plugin.php:539
msgid "This action is not available under your subscription plan."
msgstr "Diese Aktion ist in Deinem Abonnement nicht verfügbar."
#: include/uimport.php:94
msgid "Error decoding account file"
msgstr "Fehler beim Verarbeiten der Account Datei"
#: include/uimport.php:100
msgid "Error! No version data in file! This is not a Friendica account file?"
msgstr "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?"
#: include/uimport.php:116 include/uimport.php:127
msgid "Error! Cannot check nickname"
msgstr "Fehler! Konnte den Nickname nicht überprüfen."
#: include/uimport.php:120 include/uimport.php:131
#, php-format
msgid "User '%s' already exists on this server!"
msgstr "Nutzer '%s' existiert bereits auf diesem Server!"
#: include/uimport.php:153
msgid "User creation error"
msgstr "Fehler beim Anlegen des Nutzeraccounts aufgetreten"
#: include/uimport.php:173
msgid "User profile creation error"
msgstr "Fehler beim Anlegen des Nutzerkontos"
#: include/uimport.php:222
#, php-format
msgid "%d contact not imported"
msgid_plural "%d contacts not imported"
msgstr[0] "%d Kontakt nicht importiert"
msgstr[1] "%d Kontakte nicht importiert"
#: include/uimport.php:292
msgid "Done. You can now login with your username and password"
msgstr "Erledigt. Du kannst Dich jetzt mit Deinem Nutzernamen und Passwort anmelden"
#: include/datetime.php:57 include/datetime.php:59 mod/profiles.php:705
msgid "Miscellaneous"
msgstr "Verschiedenes"
#: include/datetime.php:183 include/identity.php:629
msgid "Birthday:"
msgstr "Geburtstag:"
#: include/datetime.php:185 mod/profiles.php:728
msgid "Age: "
msgstr "Alter: "
#: include/datetime.php:187
msgid "YYYY-MM-DD or MM-DD"
msgstr "YYYY-MM-DD oder MM-DD"
#: include/datetime.php:341
msgid "never"
msgstr "nie"
#: include/datetime.php:347
msgid "less than a second ago"
msgstr "vor weniger als einer Sekunde"
#: include/datetime.php:350
msgid "year"
msgstr "Jahr"
#: include/datetime.php:350
msgid "years"
msgstr "Jahre"
#: include/datetime.php:351 include/event.php:480 mod/cal.php:284
#: mod/events.php:389
msgid "month"
msgstr "Monat"
#: include/datetime.php:351
msgid "months"
msgstr "Monate"
#: include/datetime.php:352 include/event.php:481 mod/cal.php:285
#: mod/events.php:390
msgid "week"
msgstr "Woche"
#: include/datetime.php:352
msgid "weeks"
msgstr "Wochen"
#: include/datetime.php:353 include/event.php:482 mod/cal.php:286
#: mod/events.php:391
msgid "day"
msgstr "Tag"
#: include/datetime.php:353
msgid "days"
msgstr "Tage"
#: include/datetime.php:354
msgid "hour"
msgstr "Stunde"
#: include/datetime.php:354
msgid "hours"
msgstr "Stunden"
#: include/datetime.php:355
msgid "minute"
msgstr "Minute"
#: include/datetime.php:355
msgid "minutes"
msgstr "Minuten"
#: include/datetime.php:356
msgid "second"
msgstr "Sekunde"
#: include/datetime.php:356
msgid "seconds"
msgstr "Sekunden"
#: include/datetime.php:365
#, php-format
msgid "%1$d %2$s ago"
msgstr "%1$d %2$s her"
#: include/datetime.php:572
#, php-format
msgid "%s's birthday"
msgstr "%ss Geburtstag"
#: include/datetime.php:573 include/dfrn.php:1109
#, php-format
msgid "Happy Birthday %s"
msgstr "Herzlichen Glückwunsch %s"
msgid "Cannot locate DNS info for database server '%s'"
msgstr "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln."
#: include/enotify.php:24
msgid "Friendica Notification"
@ -831,7 +441,7 @@ msgstr "der Administrator von %s"
msgid "%1$s, %2$s Administrator"
msgstr "%1$s, %2$s Administrator"
#: include/enotify.php:43 include/delivery.php:457
#: include/enotify.php:43 include/delivery.php:482
msgid "noreply"
msgstr "noreply"
@ -1110,210 +720,154 @@ msgstr "Kompletter Name:\t%1$s\\nURL der Seite:\t%2$s\\nLogin Name:\t%3$s (%4$s)
msgid "Please visit %s to approve or reject the request."
msgstr "Bitte besuche %s um die Anfrage zu bearbeiten."
#: include/event.php:16 include/bb2diaspora.php:152 mod/localtime.php:12
msgid "l F d, Y \\@ g:i A"
msgstr "l, d. F Y\\, H:i"
#: include/follow.php:81 mod/dfrn_request.php:512
msgid "Disallowed profile URL."
msgstr "Nicht erlaubte Profil-URL."
#: include/event.php:33 include/event.php:51 include/event.php:487
#: include/bb2diaspora.php:158
msgid "Starts:"
msgstr "Beginnt:"
#: include/follow.php:86
msgid "Connect URL missing."
msgstr "Connect-URL fehlt"
#: include/event.php:36 include/event.php:57 include/event.php:488
#: include/bb2diaspora.php:166
msgid "Finishes:"
msgstr "Endet:"
#: include/follow.php:114
msgid ""
"This site is not configured to allow communications with other networks."
msgstr "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann."
#: include/event.php:39 include/event.php:63 include/event.php:489
#: include/bb2diaspora.php:174 include/identity.php:328
#: mod/notifications.php:232 mod/directory.php:137 mod/events.php:494
#: mod/contacts.php:628
msgid "Location:"
msgstr "Ort:"
#: include/follow.php:115 include/follow.php:129
msgid "No compatible communication protocols or feeds were discovered."
msgstr "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden."
#: include/event.php:441
msgid "Sun"
msgstr "So"
#: include/follow.php:127
msgid "The profile address specified does not provide adequate information."
msgstr "Die angegebene Profiladresse liefert unzureichende Informationen."
#: include/event.php:442
msgid "Mon"
msgstr "Mo"
#: include/follow.php:132
msgid "An author or name was not found."
msgstr "Es wurde kein Autor oder Name gefunden."
#: include/event.php:443
msgid "Tue"
msgstr "Di"
#: include/follow.php:135
msgid "No browser URL could be matched to this address."
msgstr "Zu dieser Adresse konnte keine passende Browser URL gefunden werden."
#: include/event.php:444
msgid "Wed"
msgstr "Mi"
#: include/follow.php:138
msgid ""
"Unable to match @-style Identity Address with a known protocol or email "
"contact."
msgstr "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen."
#: include/event.php:445
msgid "Thu"
msgstr "Do"
#: include/follow.php:139
msgid "Use mailto: in front of address to force email check."
msgstr "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen."
#: include/event.php:446
msgid "Fri"
msgstr "Fr"
#: include/follow.php:145
msgid ""
"The profile address specified belongs to a network which has been disabled "
"on this site."
msgstr "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde."
#: include/event.php:447
msgid "Sat"
msgstr "Sa"
#: include/follow.php:150
msgid ""
"Limited profile. This person will be unable to receive direct/personal "
"notifications from you."
msgstr "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von Dir erhalten können."
#: include/event.php:448 include/text.php:1130 mod/settings.php:972
msgid "Sunday"
msgstr "Sonntag"
#: include/follow.php:251
msgid "Unable to retrieve contact information."
msgstr "Konnte die Kontaktinformationen nicht empfangen."
#: include/event.php:449 include/text.php:1130 mod/settings.php:972
msgid "Monday"
msgstr "Montag"
#: include/group.php:25
msgid ""
"A deleted group with this name was revived. Existing item permissions "
"<strong>may</strong> apply to this group and any future members. If this is "
"not what you intended, please create another group with a different name."
msgstr "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen <strong>könnten</strong> auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls Du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen."
#: include/event.php:450 include/text.php:1130
msgid "Tuesday"
msgstr "Dienstag"
#: include/group.php:210
msgid "Default privacy group for new contacts"
msgstr "Voreingestellte Gruppe für neue Kontakte"
#: include/event.php:451 include/text.php:1130
msgid "Wednesday"
msgstr "Mittwoch"
#: include/group.php:243
msgid "Everybody"
msgstr "Alle Kontakte"
#: include/event.php:452 include/text.php:1130
msgid "Thursday"
msgstr "Donnerstag"
#: include/group.php:266
msgid "edit"
msgstr "bearbeiten"
#: include/event.php:453 include/text.php:1130
msgid "Friday"
msgstr "Freitag"
#: include/group.php:287 mod/newmember.php:61
msgid "Groups"
msgstr "Gruppen"
#: include/event.php:454 include/text.php:1130
msgid "Saturday"
msgstr "Samstag"
#: include/group.php:289
msgid "Edit groups"
msgstr "Gruppen bearbeiten"
#: include/event.php:455
msgid "Jan"
msgstr "Jan"
#: include/group.php:291
msgid "Edit group"
msgstr "Gruppe bearbeiten"
#: include/event.php:456
msgid "Feb"
msgstr "Feb"
#: include/group.php:292
msgid "Create a new group"
msgstr "Neue Gruppe erstellen"
#: include/event.php:457
msgid "Mar"
msgstr "März"
#: include/group.php:293 mod/group.php:98 mod/group.php:188
msgid "Group Name: "
msgstr "Gruppenname:"
#: include/event.php:458
msgid "Apr"
msgstr "Apr"
#: include/group.php:295
msgid "Contacts not in any group"
msgstr "Kontakte in keiner Gruppe"
#: include/event.php:459 include/event.php:471 include/text.php:1134
msgid "May"
msgstr "Mai"
#: include/group.php:297 mod/network.php:200
msgid "add"
msgstr "hinzufügen"
#: include/event.php:460
msgid "Jun"
msgstr "Jun"
#: include/like.php:164 include/conversation.php:130
#: include/conversation.php:266 include/text.php:1806 mod/subthread.php:88
#: mod/tagger.php:62
msgid "photo"
msgstr "Foto"
#: include/event.php:461
msgid "Jul"
msgstr "Juli"
#: include/like.php:164 include/conversation.php:125
#: include/conversation.php:134 include/conversation.php:261
#: include/conversation.php:270 include/diaspora.php:1530 mod/subthread.php:88
#: mod/tagger.php:62
msgid "status"
msgstr "Status"
#: include/event.php:462
msgid "Aug"
msgstr "Aug"
#: include/like.php:166 include/conversation.php:122
#: include/conversation.php:258 include/text.php:1804
msgid "event"
msgstr "Event"
#: include/event.php:463
msgid "Sept"
msgstr "Sep"
#: include/like.php:184 include/conversation.php:141 include/diaspora.php:1526
#, php-format
msgid "%1$s likes %2$s's %3$s"
msgstr "%1$s mag %2$ss %3$s"
#: include/event.php:464
msgid "Oct"
msgstr "Okt"
#: include/like.php:187 include/conversation.php:144
#, php-format
msgid "%1$s doesn't like %2$s's %3$s"
msgstr "%1$s mag %2$ss %3$s nicht"
#: include/event.php:465
msgid "Nov"
msgstr "Nov"
#: include/like.php:190
#, php-format
msgid "%1$s is attending %2$s's %3$s"
msgstr "%1$s nimmt an %2$ss %3$s teil."
#: include/event.php:466
msgid "Dec"
msgstr "Dez"
#: include/like.php:193
#, php-format
msgid "%1$s is not attending %2$s's %3$s"
msgstr "%1$s nimmt nicht an %2$ss %3$s teil."
#: include/event.php:467 include/text.php:1134
msgid "January"
msgstr "Januar"
#: include/like.php:196
#, php-format
msgid "%1$s may attend %2$s's %3$s"
msgstr "%1$s nimmt eventuell an %2$ss %3$s teil."
#: include/event.php:468 include/text.php:1134
msgid "February"
msgstr "Februar"
#: include/event.php:469 include/text.php:1134
msgid "March"
msgstr "März"
#: include/event.php:470 include/text.php:1134
msgid "April"
msgstr "April"
#: include/event.php:472 include/text.php:1134
msgid "June"
msgstr "Juni"
#: include/event.php:473 include/text.php:1134
msgid "July"
msgstr "Juli"
#: include/event.php:474 include/text.php:1134
msgid "August"
msgstr "August"
#: include/event.php:475 include/text.php:1134
msgid "September"
msgstr "September"
#: include/event.php:476 include/text.php:1134
msgid "October"
msgstr "Oktober"
#: include/event.php:477 include/text.php:1134
msgid "November"
msgstr "November"
#: include/event.php:478 include/text.php:1134
msgid "December"
msgstr "Dezember"
#: include/event.php:479 mod/cal.php:283 mod/events.php:388
msgid "today"
msgstr "Heute"
#: include/event.php:483
msgid "all-day"
msgstr "ganztägig"
#: include/event.php:485
msgid "No events to display"
msgstr "Keine Veranstaltung zum Anzeigen"
#: include/event.php:574
msgid "l, F j"
msgstr "l, F j"
#: include/event.php:593
msgid "Edit event"
msgstr "Veranstaltung bearbeiten"
#: include/event.php:615 include/text.php:1532 include/text.php:1539
msgid "link to source"
msgstr "Link zum Originalbeitrag"
#: include/event.php:850
msgid "Export"
msgstr "Exportieren"
#: include/event.php:851
msgid "Export calendar as ical"
msgstr "Kalender als ical exportieren"
#: include/event.php:852
msgid "Export calendar as csv"
msgstr "Kalender als csv exportieren"
#: include/message.php:15 include/message.php:169
msgid "[no subject]"
msgstr "[kein Betreff]"
#: include/nav.php:35 mod/navigation.php:19
msgid "Nothing new here"
@ -1323,62 +877,62 @@ msgstr "Keine Neuigkeiten"
msgid "Clear notifications"
msgstr "Bereinige Benachrichtigungen"
#: include/nav.php:40 include/text.php:1015
#: include/nav.php:40 include/text.php:1017
msgid "@name, !forum, #tags, content"
msgstr "@name, !forum, #tags, content"
#: include/nav.php:78 view/theme/frio/theme.php:246 boot.php:1792
#: include/nav.php:78 view/theme/frio/theme.php:243 boot.php:1833
msgid "Logout"
msgstr "Abmelden"
#: include/nav.php:78 view/theme/frio/theme.php:246
#: include/nav.php:78 view/theme/frio/theme.php:243
msgid "End this session"
msgstr "Diese Sitzung beenden"
#: include/nav.php:81 include/identity.php:714 mod/contacts.php:637
#: mod/contacts.php:833 view/theme/frio/theme.php:249
#: include/nav.php:81 include/identity.php:766 mod/contacts.php:645
#: mod/contacts.php:841 view/theme/frio/theme.php:246
msgid "Status"
msgstr "Status"
#: include/nav.php:81 include/nav.php:161 view/theme/frio/theme.php:249
#: include/nav.php:81 include/nav.php:161 view/theme/frio/theme.php:246
msgid "Your posts and conversations"
msgstr "Deine Beiträge und Unterhaltungen"
#: include/nav.php:82 include/identity.php:605 include/identity.php:691
#: include/identity.php:722 mod/profperm.php:104 mod/newmember.php:32
#: mod/contacts.php:639 mod/contacts.php:841 view/theme/frio/theme.php:250
#: include/nav.php:82 include/identity.php:617 include/identity.php:741
#: include/identity.php:774 mod/newmember.php:32 mod/profperm.php:105
#: mod/contacts.php:647 mod/contacts.php:849 view/theme/frio/theme.php:247
msgid "Profile"
msgstr "Profil"
#: include/nav.php:82 view/theme/frio/theme.php:250
#: include/nav.php:82 view/theme/frio/theme.php:247
msgid "Your profile page"
msgstr "Deine Profilseite"
#: include/nav.php:83 include/identity.php:730 mod/fbrowser.php:32
#: view/theme/frio/theme.php:251
#: include/nav.php:83 include/identity.php:782 mod/fbrowser.php:31
#: view/theme/frio/theme.php:248
msgid "Photos"
msgstr "Bilder"
#: include/nav.php:83 view/theme/frio/theme.php:251
#: include/nav.php:83 view/theme/frio/theme.php:248
msgid "Your photos"
msgstr "Deine Fotos"
#: include/nav.php:84 include/identity.php:738 include/identity.php:741
#: view/theme/frio/theme.php:252
#: include/nav.php:84 include/identity.php:790 include/identity.php:793
#: view/theme/frio/theme.php:249
msgid "Videos"
msgstr "Videos"
#: include/nav.php:84 view/theme/frio/theme.php:252
#: include/nav.php:84 view/theme/frio/theme.php:249
msgid "Your videos"
msgstr "Deine Videos"
#: include/nav.php:85 include/nav.php:149 include/identity.php:750
#: include/identity.php:761 mod/cal.php:275 mod/events.php:379
#: view/theme/frio/theme.php:253 view/theme/frio/theme.php:257
#: include/nav.php:85 include/nav.php:149 include/identity.php:802
#: include/identity.php:813 mod/cal.php:270 mod/events.php:386
#: view/theme/frio/theme.php:250 view/theme/frio/theme.php:254
msgid "Events"
msgstr "Veranstaltungen"
#: include/nav.php:85 view/theme/frio/theme.php:253
#: include/nav.php:85 view/theme/frio/theme.php:250
msgid "Your events"
msgstr "Deine Ereignisse"
@ -1390,7 +944,7 @@ msgstr "Persönliche Notizen"
msgid "Your personal notes"
msgstr "Deine persönlichen Notizen"
#: include/nav.php:95 mod/bookmarklet.php:12 boot.php:1793
#: include/nav.php:95 mod/bookmarklet.php:12 boot.php:1834
msgid "Login"
msgstr "Anmeldung"
@ -1398,16 +952,11 @@ msgstr "Anmeldung"
msgid "Sign in"
msgstr "Anmelden"
#: include/nav.php:105 include/nav.php:161
#: include/NotificationsManager.php:174
msgid "Home"
msgstr "Pinnwand"
#: include/nav.php:105
msgid "Home Page"
msgstr "Homepage"
#: include/nav.php:109 mod/register.php:289 boot.php:1768
#: include/nav.php:109 mod/register.php:289 boot.php:1809
msgid "Register"
msgstr "Registrieren"
@ -1415,7 +964,7 @@ msgstr "Registrieren"
msgid "Create an account"
msgstr "Nutzerkonto erstellen"
#: include/nav.php:115 mod/help.php:47 view/theme/vier/theme.php:298
#: include/nav.php:115 mod/help.php:47 view/theme/vier/theme.php:293
msgid "Help"
msgstr "Hilfe"
@ -1431,7 +980,7 @@ msgstr "Apps"
msgid "Addon applications, utilities, games"
msgstr "Addon Anwendungen, Dienstprogramme, Spiele"
#: include/nav.php:123 include/text.php:1012 mod/search.php:149
#: include/nav.php:123 include/text.php:1014 mod/search.php:149
msgid "Search"
msgstr "Suche"
@ -1439,17 +988,17 @@ msgstr "Suche"
msgid "Search site content"
msgstr "Inhalt der Seite durchsuchen"
#: include/nav.php:126 include/text.php:1020
#: include/nav.php:126 include/text.php:1022
msgid "Full Text"
msgstr "Volltext"
#: include/nav.php:127 include/text.php:1021
#: include/nav.php:127 include/text.php:1023
msgid "Tags"
msgstr "Tags"
#: include/nav.php:128 include/nav.php:192 include/identity.php:783
#: include/identity.php:786 include/text.php:1022 mod/contacts.php:792
#: mod/contacts.php:853 mod/viewcontacts.php:116 view/theme/frio/theme.php:260
#: include/nav.php:128 include/nav.php:192 include/identity.php:835
#: include/identity.php:838 include/text.php:1024 mod/contacts.php:800
#: mod/contacts.php:861 mod/viewcontacts.php:121 view/theme/frio/theme.php:257
msgid "Contacts"
msgstr "Kontakte"
@ -1465,8 +1014,8 @@ msgstr "Unterhaltungen auf dieser Seite"
msgid "Conversations on the network"
msgstr "Unterhaltungen im Netzwerk"
#: include/nav.php:149 include/identity.php:753 include/identity.php:764
#: view/theme/frio/theme.php:257
#: include/nav.php:149 include/identity.php:805 include/identity.php:816
#: view/theme/frio/theme.php:254
msgid "Events and Calendar"
msgstr "Ereignisse und Kalender"
@ -1486,12 +1035,7 @@ msgstr "Information"
msgid "Information about this friendica instance"
msgstr "Informationen zu dieser Friendica Instanz"
#: include/nav.php:158 include/NotificationsManager.php:160 mod/admin.php:411
#: view/theme/frio/theme.php:256
msgid "Network"
msgstr "Netzwerk"
#: include/nav.php:158 view/theme/frio/theme.php:256
#: include/nav.php:158 view/theme/frio/theme.php:253
msgid "Conversations from your friends"
msgstr "Unterhaltungen Deiner Kontakte"
@ -1503,10 +1047,6 @@ msgstr "Netzwerk zurücksetzen"
msgid "Load Network page with no filters"
msgstr "Netzwerk-Seite ohne Filter laden"
#: include/nav.php:166 include/NotificationsManager.php:181
msgid "Introductions"
msgstr "Kontaktanfragen"
#: include/nav.php:166
msgid "Friend Requests"
msgstr "Kontaktanfragen"
@ -1519,7 +1059,7 @@ msgstr "Benachrichtigungen"
msgid "See all notifications"
msgstr "Alle Benachrichtigungen anzeigen"
#: include/nav.php:171 mod/settings.php:902
#: include/nav.php:171 mod/settings.php:906
msgid "Mark as seen"
msgstr "Als gelesen markieren"
@ -1527,11 +1067,11 @@ msgstr "Als gelesen markieren"
msgid "Mark all system notifications seen"
msgstr "Markiere alle Systembenachrichtigungen als gelesen"
#: include/nav.php:175 mod/message.php:190 view/theme/frio/theme.php:258
#: include/nav.php:175 mod/message.php:179 view/theme/frio/theme.php:255
msgid "Messages"
msgstr "Nachrichten"
#: include/nav.php:175 view/theme/frio/theme.php:258
#: include/nav.php:175 view/theme/frio/theme.php:255
msgid "Private mail"
msgstr "Private E-Mail"
@ -1564,15 +1104,15 @@ msgid "Delegate Page Management"
msgstr "Delegiere das Management für die Seite"
#: include/nav.php:186 mod/newmember.php:22 mod/settings.php:111
#: mod/admin.php:1524 mod/admin.php:1782 view/theme/frio/theme.php:259
#: mod/admin.php:1545 mod/admin.php:1815 view/theme/frio/theme.php:256
msgid "Settings"
msgstr "Einstellungen"
#: include/nav.php:186 view/theme/frio/theme.php:259
#: include/nav.php:186 view/theme/frio/theme.php:256
msgid "Account settings"
msgstr "Kontoeinstellungen"
#: include/nav.php:189 include/identity.php:282
#: include/nav.php:189 include/identity.php:285
msgid "Profiles"
msgstr "Profile"
@ -1580,11 +1120,11 @@ msgstr "Profile"
msgid "Manage/Edit Profiles"
msgstr "Profile Verwalten/Editieren"
#: include/nav.php:192 view/theme/frio/theme.php:260
#: include/nav.php:192 view/theme/frio/theme.php:257
msgid "Manage/edit friends and contacts"
msgstr " Kontakte verwalten/editieren"
#: include/nav.php:197 mod/admin.php:186
#: include/nav.php:197 mod/admin.php:187
msgid "Admin"
msgstr "Administration"
@ -1600,11 +1140,43 @@ msgstr "Navigation"
msgid "Site map"
msgstr "Sitemap"
#: include/photos.php:53 mod/fbrowser.php:41 mod/fbrowser.php:62
#: mod/photos.php:180 mod/photos.php:1086 mod/photos.php:1211
#: mod/photos.php:1232 mod/photos.php:1795 mod/photos.php:1807
msgid "Contact Photos"
msgstr "Kontaktbilder"
#: include/oembed.php:266
msgid "Embedded content"
msgstr "Eingebetteter Inhalt"
#: include/oembed.php:274
msgid "Embedding disabled"
msgstr "Einbettungen deaktiviert"
#: include/ostatus.php:1832
#, php-format
msgid "%s is now following %s."
msgstr "%s folgt nun %s"
#: include/ostatus.php:1833
msgid "following"
msgstr "folgen"
#: include/ostatus.php:1836
#, php-format
msgid "%s stopped following %s."
msgstr "%s hat aufgehört %s zu folgen"
#: include/ostatus.php:1837
msgid "stopped following"
msgstr "wird nicht mehr gefolgt"
#: include/plugin.php:530 include/plugin.php:532
msgid "Click here to upgrade."
msgstr "Zum Upgraden hier klicken."
#: include/plugin.php:538
msgid "This action exceeds the limits set by your subscription plan."
msgstr "Diese Aktion überschreitet die Obergrenze Deines Abonnements."
#: include/plugin.php:543
msgid "This action is not available under your subscription plan."
msgstr "Diese Aktion ist in Deinem Abonnement nicht verfügbar."
#: include/security.php:22
msgid "Welcome "
@ -1618,1360 +1190,49 @@ msgstr "Bitte lade ein Profilbild hoch."
msgid "Welcome back "
msgstr "Willkommen zurück "
#: include/security.php:373
#: include/security.php:375
msgid ""
"The form security token was not correct. This probably happened because the "
"form has been opened for too long (>3 hours) before submitting it."
msgstr "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden)."
#: include/NotificationsManager.php:153
msgid "System"
msgstr "System"
#: include/uimport.php:94
msgid "Error decoding account file"
msgstr "Fehler beim Verarbeiten der Account Datei"
#: include/NotificationsManager.php:167 mod/profiles.php:703
#: mod/network.php:845
msgid "Personal"
msgstr "Persönlich"
#: include/uimport.php:100
msgid "Error! No version data in file! This is not a Friendica account file?"
msgstr "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?"
#: include/NotificationsManager.php:234 include/NotificationsManager.php:244
#: include/uimport.php:116 include/uimport.php:127
msgid "Error! Cannot check nickname"
msgstr "Fehler! Konnte den Nickname nicht überprüfen."
#: include/uimport.php:120 include/uimport.php:131
#, php-format
msgid "%s commented on %s's post"
msgstr "%s hat %ss Beitrag kommentiert"
msgid "User '%s' already exists on this server!"
msgstr "Nutzer '%s' existiert bereits auf diesem Server!"
#: include/NotificationsManager.php:243
#: include/uimport.php:153
msgid "User creation error"
msgstr "Fehler beim Anlegen des Nutzeraccounts aufgetreten"
#: include/uimport.php:173
msgid "User profile creation error"
msgstr "Fehler beim Anlegen des Nutzerkontos"
#: include/uimport.php:222
#, php-format
msgid "%s created a new post"
msgstr "%s hat einen neuen Beitrag erstellt"
msgid "%d contact not imported"
msgid_plural "%d contacts not imported"
msgstr[0] "%d Kontakt nicht importiert"
msgstr[1] "%d Kontakte nicht importiert"
#: include/NotificationsManager.php:256
#, php-format
msgid "%s liked %s's post"
msgstr "%s mag %ss Beitrag"
#: include/uimport.php:292
msgid "Done. You can now login with your username and password"
msgstr "Erledigt. Du kannst Dich jetzt mit Deinem Nutzernamen und Passwort anmelden"
#: include/NotificationsManager.php:267
#, php-format
msgid "%s disliked %s's post"
msgstr "%s mag %ss Beitrag nicht"
#: include/NotificationsManager.php:278
#, php-format
msgid "%s is attending %s's event"
msgstr "%s nimmt an %s's Event teil"
#: include/NotificationsManager.php:289
#, php-format
msgid "%s is not attending %s's event"
msgstr "%s nimmt nicht an %s's Event teil"
#: include/NotificationsManager.php:300
#, php-format
msgid "%s may attend %s's event"
msgstr "%s nimmt eventuell an %s's Event teil"
#: include/NotificationsManager.php:315
#, php-format
msgid "%s is now friends with %s"
msgstr "%s ist jetzt mit %s befreundet"
#: include/NotificationsManager.php:748
msgid "Friend Suggestion"
msgstr "Kontaktvorschlag"
#: include/NotificationsManager.php:781
msgid "Friend/Connect Request"
msgstr "Kontakt-/Freundschaftsanfrage"
#: include/NotificationsManager.php:781
msgid "New Follower"
msgstr "Neuer Bewunderer"
#: include/dbstructure.php:26
#, php-format
msgid ""
"\n"
"\t\t\tThe friendica developers released update %s recently,\n"
"\t\t\tbut when I tried to install it, something went terribly wrong.\n"
"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n"
"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."
msgstr "\nDie Friendica-Entwickler haben vor kurzem das Update %s veröffentlicht, aber bei der Installation ging etwas schrecklich schief.\n\nDas Problem sollte so schnell wie möglich gelöst werden, aber ich schaffe es nicht alleine. Bitte kontaktiere einen Friendica-Entwickler falls Du mir nicht alleine helfen kannst. Meine Datenbank könnte ungültig sein."
#: include/dbstructure.php:31
#, php-format
msgid ""
"The error message is\n"
"[pre]%s[/pre]"
msgstr "Die Fehlermeldung lautet\n[pre]%s[/pre]"
#: include/dbstructure.php:183
msgid "Errors encountered creating database tables."
msgstr "Fehler aufgetreten während der Erzeugung der Datenbanktabellen."
#: include/dbstructure.php:260
msgid "Errors encountered performing database changes."
msgstr "Es sind Fehler beim Bearbeiten der Datenbank aufgetreten."
#: include/delivery.php:446
msgid "(no subject)"
msgstr "(kein Betreff)"
#: include/diaspora.php:1958
msgid "Sharing notification from Diaspora network"
msgstr "Freigabe-Benachrichtigung von Diaspora"
#: include/diaspora.php:2864
msgid "Attachments:"
msgstr "Anhänge:"
#: include/network.php:595
msgid "view full size"
msgstr "Volle Größe anzeigen"
#: include/Contact.php:340 include/Contact.php:353 include/Contact.php:398
#: include/conversation.php:968 include/conversation.php:984
#: mod/allfriends.php:65 mod/directory.php:155 mod/dirfind.php:203
#: mod/match.php:71 mod/suggest.php:82
msgid "View Profile"
msgstr "Profil anschauen"
#: include/Contact.php:397 include/conversation.php:967
msgid "View Status"
msgstr "Pinnwand anschauen"
#: include/Contact.php:399 include/conversation.php:969
msgid "View Photos"
msgstr "Bilder anschauen"
#: include/Contact.php:400 include/conversation.php:970
msgid "Network Posts"
msgstr "Netzwerkbeiträge"
#: include/Contact.php:401 include/conversation.php:971
msgid "View Contact"
msgstr "Kontakt anzeigen"
#: include/Contact.php:402
msgid "Drop Contact"
msgstr "Kontakt löschen"
#: include/Contact.php:403 include/conversation.php:972
msgid "Send PM"
msgstr "Private Nachricht senden"
#: include/Contact.php:404 include/conversation.php:976
msgid "Poke"
msgstr "Anstupsen"
#: include/Contact.php:775
msgid "Organisation"
msgstr "Organisation"
#: include/Contact.php:778
msgid "News"
msgstr "Nachrichten"
#: include/Contact.php:781
msgid "Forum"
msgstr "Forum"
#: include/api.php:1018
#, php-format
msgid "Daily posting limit of %d posts reached. The post was rejected."
msgstr "Das tägliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."
#: include/api.php:1038
#, php-format
msgid "Weekly posting limit of %d posts reached. The post was rejected."
msgstr "Das wöchentliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."
#: include/api.php:1059
#, php-format
msgid "Monthly posting limit of %d posts reached. The post was rejected."
msgstr "Das monatliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."
#: include/bbcode.php:350 include/bbcode.php:1057 include/bbcode.php:1058
msgid "Image/photo"
msgstr "Bild/Foto"
#: include/bbcode.php:467
#, php-format
msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
msgstr "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
#: include/bbcode.php:1017 include/bbcode.php:1037
msgid "$1 wrote:"
msgstr "$1 hat geschrieben:"
#: include/bbcode.php:1066 include/bbcode.php:1067
msgid "Encrypted content"
msgstr "Verschlüsselter Inhalt"
#: include/bbcode.php:1169
msgid "Invalid source protocol"
msgstr "Ungültiges Quell-Protokoll"
#: include/bbcode.php:1179
msgid "Invalid link protocol"
msgstr "Ungültiges Link-Protokoll"
#: include/conversation.php:147
#, php-format
msgid "%1$s attends %2$s's %3$s"
msgstr "%1$s nimmt an %2$ss %3$s teil."
#: include/conversation.php:150
#, php-format
msgid "%1$s doesn't attend %2$s's %3$s"
msgstr "%1$s nimmt nicht an %2$ss %3$s teil."
#: include/conversation.php:153
#, php-format
msgid "%1$s attends maybe %2$s's %3$s"
msgstr "%1$s nimmt eventuell an %2$ss %3$s teil."
#: include/conversation.php:185 mod/dfrn_confirm.php:477
#, php-format
msgid "%1$s is now friends with %2$s"
msgstr "%1$s ist nun mit %2$s befreundet"
#: include/conversation.php:219
#, php-format
msgid "%1$s poked %2$s"
msgstr "%1$s stupste %2$s"
#: include/conversation.php:239 mod/mood.php:62
#, php-format
msgid "%1$s is currently %2$s"
msgstr "%1$s ist momentan %2$s"
#: include/conversation.php:278 mod/tagger.php:95
#, php-format
msgid "%1$s tagged %2$s's %3$s with %4$s"
msgstr "%1$s hat %2$ss %3$s mit %4$s getaggt"
#: include/conversation.php:303
msgid "post/item"
msgstr "Nachricht/Beitrag"
#: include/conversation.php:304
#, php-format
msgid "%1$s marked %2$s's %3$s as favorite"
msgstr "%1$s hat %2$s\\s %3$s als Favorit markiert"
#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:346
#: mod/photos.php:1607
msgid "Likes"
msgstr "Likes"
#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:350
#: mod/photos.php:1607
msgid "Dislikes"
msgstr "Dislikes"
#: include/conversation.php:586 include/conversation.php:1481
#: mod/content.php:373 mod/photos.php:1608
msgid "Attending"
msgid_plural "Attending"
msgstr[0] "Teilnehmend"
msgstr[1] "Teilnehmend"
#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608
msgid "Not attending"
msgstr "Nicht teilnehmend"
#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608
msgid "Might attend"
msgstr "Eventuell teilnehmend"
#: include/conversation.php:708 mod/content.php:453 mod/content.php:758
#: mod/photos.php:1681 object/Item.php:133
msgid "Select"
msgstr "Auswählen"
#: include/conversation.php:709 mod/group.php:171 mod/content.php:454
#: mod/content.php:759 mod/photos.php:1682 mod/settings.php:741
#: mod/admin.php:1414 mod/contacts.php:808 mod/contacts.php:1007
#: object/Item.php:134
msgid "Delete"
msgstr "Löschen"
#: include/conversation.php:753 mod/content.php:487 mod/content.php:910
#: mod/content.php:911 object/Item.php:367 object/Item.php:368
#, php-format
msgid "View %s's profile @ %s"
msgstr "Das Profil von %s auf %s betrachten."
#: include/conversation.php:765 object/Item.php:355
msgid "Categories:"
msgstr "Kategorien:"
#: include/conversation.php:766 object/Item.php:356
msgid "Filed under:"
msgstr "Abgelegt unter:"
#: include/conversation.php:773 mod/content.php:497 mod/content.php:923
#: object/Item.php:381
#, php-format
msgid "%s from %s"
msgstr "%s von %s"
#: include/conversation.php:789 mod/content.php:513
msgid "View in context"
msgstr "Im Zusammenhang betrachten"
#: include/conversation.php:791 include/conversation.php:1264
#: mod/editpost.php:124 mod/wallmessage.php:156 mod/message.php:356
#: mod/message.php:548 mod/content.php:515 mod/content.php:948
#: mod/photos.php:1570 object/Item.php:406
msgid "Please wait"
msgstr "Bitte warten"
#: include/conversation.php:870
msgid "remove"
msgstr "löschen"
#: include/conversation.php:874
msgid "Delete Selected Items"
msgstr "Lösche die markierten Beiträge"
#: include/conversation.php:966
msgid "Follow Thread"
msgstr "Folge der Unterhaltung"
#: include/conversation.php:1097
#, php-format
msgid "%s likes this."
msgstr "%s mag das."
#: include/conversation.php:1100
#, php-format
msgid "%s doesn't like this."
msgstr "%s mag das nicht."
#: include/conversation.php:1103
#, php-format
msgid "%s attends."
msgstr "%s nimmt teil."
#: include/conversation.php:1106
#, php-format
msgid "%s doesn't attend."
msgstr "%s nimmt nicht teil."
#: include/conversation.php:1109
#, php-format
msgid "%s attends maybe."
msgstr "%s nimmt eventuell teil."
#: include/conversation.php:1119
msgid "and"
msgstr "und"
#: include/conversation.php:1125
#, php-format
msgid ", and %d other people"
msgstr " und %d andere"
#: include/conversation.php:1134
#, php-format
msgid "<span %1$s>%2$d people</span> like this"
msgstr "<span %1$s>%2$d Personen</span> mögen das"
#: include/conversation.php:1135
#, php-format
msgid "%s like this."
msgstr "%s mögen das."
#: include/conversation.php:1138
#, php-format
msgid "<span %1$s>%2$d people</span> don't like this"
msgstr "<span %1$s>%2$d Personen</span> mögen das nicht"
#: include/conversation.php:1139
#, php-format
msgid "%s don't like this."
msgstr "%s mögen dies nicht."
#: include/conversation.php:1142
#, php-format
msgid "<span %1$s>%2$d people</span> attend"
msgstr "<span %1$s>%2$d Personen</span> nehmen teil"
#: include/conversation.php:1143
#, php-format
msgid "%s attend."
msgstr "%s nehmen teil."
#: include/conversation.php:1146
#, php-format
msgid "<span %1$s>%2$d people</span> don't attend"
msgstr "<span %1$s>%2$d Personen</span> nehmen nicht teil"
#: include/conversation.php:1147
#, php-format
msgid "%s don't attend."
msgstr "%s nehmen nicht teil."
#: include/conversation.php:1150
#, php-format
msgid "<span %1$s>%2$d people</span> attend maybe"
msgstr "<span %1$s>%2$d Personen</span> nehmen eventuell teil"
#: include/conversation.php:1151
#, php-format
msgid "%s anttend maybe."
msgstr "%s nehmen vielleicht teil."
#: include/conversation.php:1190 include/conversation.php:1208
msgid "Visible to <strong>everybody</strong>"
msgstr "Für <strong>jedermann</strong> sichtbar"
#: include/conversation.php:1191 include/conversation.php:1209
#: mod/wallmessage.php:127 mod/wallmessage.php:135 mod/message.php:291
#: mod/message.php:299 mod/message.php:442 mod/message.php:450
msgid "Please enter a link URL:"
msgstr "Bitte gib die URL des Links ein:"
#: include/conversation.php:1192 include/conversation.php:1210
msgid "Please enter a video link/URL:"
msgstr "Bitte Link/URL zum Video einfügen:"
#: include/conversation.php:1193 include/conversation.php:1211
msgid "Please enter an audio link/URL:"
msgstr "Bitte Link/URL zum Audio einfügen:"
#: include/conversation.php:1194 include/conversation.php:1212
msgid "Tag term:"
msgstr "Tag:"
#: include/conversation.php:1195 include/conversation.php:1213
#: mod/filer.php:30
msgid "Save to Folder:"
msgstr "In diesem Ordner speichern:"
#: include/conversation.php:1196 include/conversation.php:1214
msgid "Where are you right now?"
msgstr "Wo hältst Du Dich jetzt gerade auf?"
#: include/conversation.php:1197
msgid "Delete item(s)?"
msgstr "Einträge löschen?"
#: include/conversation.php:1245 mod/photos.php:1569
msgid "Share"
msgstr "Teilen"
#: include/conversation.php:1246 mod/editpost.php:110 mod/wallmessage.php:154
#: mod/message.php:354 mod/message.php:545
msgid "Upload photo"
msgstr "Foto hochladen"
#: include/conversation.php:1247 mod/editpost.php:111
msgid "upload photo"
msgstr "Bild hochladen"
#: include/conversation.php:1248 mod/editpost.php:112
msgid "Attach file"
msgstr "Datei anhängen"
#: include/conversation.php:1249 mod/editpost.php:113
msgid "attach file"
msgstr "Datei anhängen"
#: include/conversation.php:1250 mod/editpost.php:114 mod/wallmessage.php:155
#: mod/message.php:355 mod/message.php:546
msgid "Insert web link"
msgstr "Einen Link einfügen"
#: include/conversation.php:1251 mod/editpost.php:115
msgid "web link"
msgstr "Weblink"
#: include/conversation.php:1252 mod/editpost.php:116
msgid "Insert video link"
msgstr "Video-Adresse einfügen"
#: include/conversation.php:1253 mod/editpost.php:117
msgid "video link"
msgstr "Video-Link"
#: include/conversation.php:1254 mod/editpost.php:118
msgid "Insert audio link"
msgstr "Audio-Adresse einfügen"
#: include/conversation.php:1255 mod/editpost.php:119
msgid "audio link"
msgstr "Audio-Link"
#: include/conversation.php:1256 mod/editpost.php:120
msgid "Set your location"
msgstr "Deinen Standort festlegen"
#: include/conversation.php:1257 mod/editpost.php:121
msgid "set location"
msgstr "Ort setzen"
#: include/conversation.php:1258 mod/editpost.php:122
msgid "Clear browser location"
msgstr "Browser-Standort leeren"
#: include/conversation.php:1259 mod/editpost.php:123
msgid "clear location"
msgstr "Ort löschen"
#: include/conversation.php:1261 mod/editpost.php:137
msgid "Set title"
msgstr "Titel setzen"
#: include/conversation.php:1263 mod/editpost.php:139
msgid "Categories (comma-separated list)"
msgstr "Kategorien (kommasepariert)"
#: include/conversation.php:1265 mod/editpost.php:125
msgid "Permission settings"
msgstr "Berechtigungseinstellungen"
#: include/conversation.php:1266 mod/editpost.php:154
msgid "permissions"
msgstr "Zugriffsrechte"
#: include/conversation.php:1274 mod/editpost.php:134
msgid "Public post"
msgstr "Öffentlicher Beitrag"
#: include/conversation.php:1279 mod/editpost.php:145 mod/content.php:737
#: mod/events.php:504 mod/photos.php:1591 mod/photos.php:1639
#: mod/photos.php:1725 object/Item.php:729
msgid "Preview"
msgstr "Vorschau"
#: include/conversation.php:1283 include/items.php:1974 mod/fbrowser.php:101
#: mod/fbrowser.php:136 mod/tagrm.php:11 mod/tagrm.php:94 mod/editpost.php:148
#: mod/message.php:220 mod/suggest.php:32 mod/photos.php:235
#: mod/photos.php:322 mod/settings.php:679 mod/settings.php:705
#: mod/videos.php:128 mod/contacts.php:445 mod/dfrn_request.php:876
#: mod/follow.php:121
msgid "Cancel"
msgstr "Abbrechen"
#: include/conversation.php:1289
msgid "Post to Groups"
msgstr "Poste an Gruppe"
#: include/conversation.php:1290
msgid "Post to Contacts"
msgstr "Poste an Kontakte"
#: include/conversation.php:1291
msgid "Private post"
msgstr "Privater Beitrag"
#: include/conversation.php:1296 include/identity.php:256 mod/editpost.php:152
msgid "Message"
msgstr "Nachricht"
#: include/conversation.php:1297 mod/editpost.php:153
msgid "Browser"
msgstr "Browser"
#: include/conversation.php:1453
msgid "View all"
msgstr "Zeige alle"
#: include/conversation.php:1475
msgid "Like"
msgid_plural "Likes"
msgstr[0] "mag ich"
msgstr[1] "Mag ich"
#: include/conversation.php:1478
msgid "Dislike"
msgid_plural "Dislikes"
msgstr[0] "mag ich nicht"
msgstr[1] "Mag ich nicht"
#: include/conversation.php:1484
msgid "Not Attending"
msgid_plural "Not Attending"
msgstr[0] "Nicht teilnehmend "
msgstr[1] "Nicht teilnehmend"
#: include/dfrn.php:1108
#, php-format
msgid "%s\\'s birthday"
msgstr "%ss Geburtstag"
#: include/features.php:70
msgid "General Features"
msgstr "Allgemeine Features"
#: include/features.php:72
msgid "Multiple Profiles"
msgstr "Mehrere Profile"
#: include/features.php:72
msgid "Ability to create multiple profiles"
msgstr "Möglichkeit mehrere Profile zu erstellen"
#: include/features.php:73
msgid "Photo Location"
msgstr "Aufnahmeort"
#: include/features.php:73
msgid ""
"Photo metadata is normally stripped. This extracts the location (if present)"
" prior to stripping metadata and links it to a map."
msgstr "Die Foto-Metadaten werden ausgelesen. Dadurch kann der Aufnahmeort (wenn vorhanden) in einer Karte angezeigt werden."
#: include/features.php:74
msgid "Export Public Calendar"
msgstr "Öffentlichen Kalender exportieren"
#: include/features.php:74
msgid "Ability for visitors to download the public calendar"
msgstr "Möglichkeit für Besucher den öffentlichen Kalender herunter zu laden"
#: include/features.php:79
msgid "Post Composition Features"
msgstr "Beitragserstellung Features"
#: include/features.php:80
msgid "Richtext Editor"
msgstr "Web-Editor"
#: include/features.php:80
msgid "Enable richtext editor"
msgstr "Den Web-Editor für neue Beiträge aktivieren"
#: include/features.php:81
msgid "Post Preview"
msgstr "Beitragsvorschau"
#: include/features.php:81
msgid "Allow previewing posts and comments before publishing them"
msgstr "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben."
#: include/features.php:82
msgid "Auto-mention Forums"
msgstr "Foren automatisch erwähnen"
#: include/features.php:82
msgid ""
"Add/remove mention when a forum page is selected/deselected in ACL window."
msgstr "Automatisch eine @-Erwähnung eines Forums einfügen/entfehrnen, wenn dieses im ACL Fenster de-/markiert wurde."
#: include/features.php:87
msgid "Network Sidebar Widgets"
msgstr "Widgets für Netzwerk und Seitenleiste"
#: include/features.php:88
msgid "Search by Date"
msgstr "Archiv"
#: include/features.php:88
msgid "Ability to select posts by date ranges"
msgstr "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren"
#: include/features.php:89 include/features.php:119
msgid "List Forums"
msgstr "Zeige Foren"
#: include/features.php:89
msgid "Enable widget to display the forums your are connected with"
msgstr "Aktiviere Widget, um die Foren mit denen du verbunden bist anzuzeigen"
#: include/features.php:90
msgid "Group Filter"
msgstr "Gruppen Filter"
#: include/features.php:90
msgid "Enable widget to display Network posts only from selected group"
msgstr "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren."
#: include/features.php:91
msgid "Network Filter"
msgstr "Netzwerk Filter"
#: include/features.php:91
msgid "Enable widget to display Network posts only from selected network"
msgstr "Widget zum filtern der Beiträge in Abhängigkeit des Netzwerks aus dem der Ersteller sendet aktivieren."
#: include/features.php:92 mod/search.php:34 mod/network.php:200
msgid "Saved Searches"
msgstr "Gespeicherte Suchen"
#: include/features.php:92
msgid "Save search terms for re-use"
msgstr "Speichere Suchanfragen für spätere Wiederholung."
#: include/features.php:97
msgid "Network Tabs"
msgstr "Netzwerk Reiter"
#: include/features.php:98
msgid "Network Personal Tab"
msgstr "Netzwerk-Reiter: Persönlich"
#: include/features.php:98
msgid "Enable tab to display only Network posts that you've interacted on"
msgstr "Aktiviert einen Netzwerk-Reiter in dem Nachrichten angezeigt werden mit denen Du interagiert hast"
#: include/features.php:99
msgid "Network New Tab"
msgstr "Netzwerk-Reiter: Neue"
#: include/features.php:99
msgid "Enable tab to display only new Network posts (from the last 12 hours)"
msgstr "Aktiviert einen Netzwerk-Reiter in dem ausschließlich neue Beiträge (der letzten 12 Stunden) angezeigt werden"
#: include/features.php:100
msgid "Network Shared Links Tab"
msgstr "Netzwerk-Reiter: Geteilte Links"
#: include/features.php:100
msgid "Enable tab to display only Network posts with links in them"
msgstr "Aktiviert einen Netzwerk-Reiter der ausschließlich Nachrichten mit Links enthält"
#: include/features.php:105
msgid "Post/Comment Tools"
msgstr "Werkzeuge für Beiträge und Kommentare"
#: include/features.php:106
msgid "Multiple Deletion"
msgstr "Mehrere Beiträge löschen"
#: include/features.php:106
msgid "Select and delete multiple posts/comments at once"
msgstr "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen"
#: include/features.php:107
msgid "Edit Sent Posts"
msgstr "Gesendete Beiträge editieren"
#: include/features.php:107
msgid "Edit and correct posts and comments after sending"
msgstr "Erlaubt es Beiträge und Kommentare nach dem Senden zu editieren bzw.zu korrigieren."
#: include/features.php:108
msgid "Tagging"
msgstr "Tagging"
#: include/features.php:108
msgid "Ability to tag existing posts"
msgstr "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen."
#: include/features.php:109
msgid "Post Categories"
msgstr "Beitragskategorien"
#: include/features.php:109
msgid "Add categories to your posts"
msgstr "Eigene Beiträge mit Kategorien versehen"
#: include/features.php:110
msgid "Ability to file posts under folders"
msgstr "Beiträge in Ordnern speichern aktivieren"
#: include/features.php:111
msgid "Dislike Posts"
msgstr "Beiträge 'nicht mögen'"
#: include/features.php:111
msgid "Ability to dislike posts/comments"
msgstr "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'"
#: include/features.php:112
msgid "Star Posts"
msgstr "Beiträge Markieren"
#: include/features.php:112
msgid "Ability to mark special posts with a star indicator"
msgstr "Erlaubt es Beiträge mit einem Stern-Indikator zu markieren"
#: include/features.php:113
msgid "Mute Post Notifications"
msgstr "Benachrichtigungen für Beiträge Stumm schalten"
#: include/features.php:113
msgid "Ability to mute notifications for a thread"
msgstr "Möglichkeit Benachrichtigungen für einen Thread abbestellen zu können"
#: include/features.php:118
msgid "Advanced Profile Settings"
msgstr "Erweiterte Profil-Einstellungen"
#: include/features.php:119
msgid "Show visitors public community forums at the Advanced Profile Page"
msgstr "Zeige Besuchern öffentliche Gemeinschafts-Foren auf der Erweiterten Profil-Seite"
#: include/follow.php:81 mod/dfrn_request.php:509
msgid "Disallowed profile URL."
msgstr "Nicht erlaubte Profil-URL."
#: include/follow.php:86
msgid "Connect URL missing."
msgstr "Connect-URL fehlt"
#: include/follow.php:113
msgid ""
"This site is not configured to allow communications with other networks."
msgstr "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann."
#: include/follow.php:114 include/follow.php:134
msgid "No compatible communication protocols or feeds were discovered."
msgstr "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden."
#: include/follow.php:132
msgid "The profile address specified does not provide adequate information."
msgstr "Die angegebene Profiladresse liefert unzureichende Informationen."
#: include/follow.php:136
msgid "An author or name was not found."
msgstr "Es wurde kein Autor oder Name gefunden."
#: include/follow.php:138
msgid "No browser URL could be matched to this address."
msgstr "Zu dieser Adresse konnte keine passende Browser URL gefunden werden."
#: include/follow.php:140
msgid ""
"Unable to match @-style Identity Address with a known protocol or email "
"contact."
msgstr "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen."
#: include/follow.php:141
msgid "Use mailto: in front of address to force email check."
msgstr "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen."
#: include/follow.php:147
msgid ""
"The profile address specified belongs to a network which has been disabled "
"on this site."
msgstr "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde."
#: include/follow.php:157
msgid ""
"Limited profile. This person will be unable to receive direct/personal "
"notifications from you."
msgstr "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von Dir erhalten können."
#: include/follow.php:258
msgid "Unable to retrieve contact information."
msgstr "Konnte die Kontaktinformationen nicht empfangen."
#: include/identity.php:42
msgid "Requested account is not available."
msgstr "Das angefragte Profil ist nicht vorhanden."
#: include/identity.php:51 mod/profile.php:21
msgid "Requested profile is not available."
msgstr "Das angefragte Profil ist nicht vorhanden."
#: include/identity.php:95 include/identity.php:311 include/identity.php:688
msgid "Edit profile"
msgstr "Profil bearbeiten"
#: include/identity.php:251
msgid "Atom feed"
msgstr "Atom-Feed"
#: include/identity.php:282
msgid "Manage/edit profiles"
msgstr "Profile verwalten/editieren"
#: include/identity.php:287 include/identity.php:313 mod/profiles.php:795
msgid "Change profile photo"
msgstr "Profilbild ändern"
#: include/identity.php:288 mod/profiles.php:796
msgid "Create New Profile"
msgstr "Neues Profil anlegen"
#: include/identity.php:298 mod/profiles.php:785
msgid "Profile Image"
msgstr "Profilbild"
#: include/identity.php:301 mod/profiles.php:787
msgid "visible to everybody"
msgstr "sichtbar für jeden"
#: include/identity.php:302 mod/profiles.php:691 mod/profiles.php:788
msgid "Edit visibility"
msgstr "Sichtbarkeit bearbeiten"
#: include/identity.php:330 include/identity.php:616 mod/notifications.php:238
#: mod/directory.php:139
msgid "Gender:"
msgstr "Geschlecht:"
#: include/identity.php:333 include/identity.php:636 mod/directory.php:141
msgid "Status:"
msgstr "Status:"
#: include/identity.php:335 include/identity.php:647 mod/directory.php:143
msgid "Homepage:"
msgstr "Homepage:"
#: include/identity.php:337 include/identity.php:657 mod/notifications.php:234
#: mod/directory.php:145 mod/contacts.php:632
msgid "About:"
msgstr "Über:"
#: include/identity.php:339 mod/contacts.php:630
msgid "XMPP:"
msgstr "XMPP:"
#: include/identity.php:422 mod/notifications.php:246 mod/contacts.php:50
msgid "Network:"
msgstr "Netzwerk:"
#: include/identity.php:451 include/identity.php:535
msgid "g A l F d"
msgstr "l, d. F G \\U\\h\\r"
#: include/identity.php:452 include/identity.php:536
msgid "F d"
msgstr "d. F"
#: include/identity.php:497 include/identity.php:582
msgid "[today]"
msgstr "[heute]"
#: include/identity.php:509
msgid "Birthday Reminders"
msgstr "Geburtstagserinnerungen"
#: include/identity.php:510
msgid "Birthdays this week:"
msgstr "Geburtstage diese Woche:"
#: include/identity.php:569
msgid "[No description]"
msgstr "[keine Beschreibung]"
#: include/identity.php:593
msgid "Event Reminders"
msgstr "Veranstaltungserinnerungen"
#: include/identity.php:594
msgid "Events this week:"
msgstr "Veranstaltungen diese Woche"
#: include/identity.php:614 mod/settings.php:1279
msgid "Full Name:"
msgstr "Kompletter Name:"
#: include/identity.php:621
msgid "j F, Y"
msgstr "j F, Y"
#: include/identity.php:622
msgid "j F"
msgstr "j F"
#: include/identity.php:633
msgid "Age:"
msgstr "Alter:"
#: include/identity.php:642
#, php-format
msgid "for %1$d %2$s"
msgstr "für %1$d %2$s"
#: include/identity.php:645 mod/profiles.php:710
msgid "Sexual Preference:"
msgstr "Sexuelle Vorlieben:"
#: include/identity.php:649 mod/profiles.php:737
msgid "Hometown:"
msgstr "Heimatort:"
#: include/identity.php:651 mod/notifications.php:236 mod/contacts.php:634
#: mod/follow.php:134
msgid "Tags:"
msgstr "Tags:"
#: include/identity.php:653 mod/profiles.php:738
msgid "Political Views:"
msgstr "Politische Ansichten:"
#: include/identity.php:655
msgid "Religion:"
msgstr "Religion:"
#: include/identity.php:659
msgid "Hobbies/Interests:"
msgstr "Hobbies/Interessen:"
#: include/identity.php:661 mod/profiles.php:742
msgid "Likes:"
msgstr "Likes:"
#: include/identity.php:663 mod/profiles.php:743
msgid "Dislikes:"
msgstr "Dislikes:"
#: include/identity.php:666
msgid "Contact information and Social Networks:"
msgstr "Kontaktinformationen und Soziale Netzwerke:"
#: include/identity.php:668
msgid "Musical interests:"
msgstr "Musikalische Interessen:"
#: include/identity.php:670
msgid "Books, literature:"
msgstr "Literatur/Bücher:"
#: include/identity.php:672
msgid "Television:"
msgstr "Fernsehen:"
#: include/identity.php:674
msgid "Film/dance/culture/entertainment:"
msgstr "Filme/Tänze/Kultur/Unterhaltung:"
#: include/identity.php:676
msgid "Love/Romance:"
msgstr "Liebesleben:"
#: include/identity.php:678
msgid "Work/employment:"
msgstr "Arbeit/Beschäftigung:"
#: include/identity.php:680
msgid "School/education:"
msgstr "Schule/Ausbildung:"
#: include/identity.php:684
msgid "Forums:"
msgstr "Foren:"
#: include/identity.php:692 mod/events.php:507
msgid "Basic"
msgstr "Allgemein"
#: include/identity.php:693 mod/events.php:508 mod/admin.php:959
#: mod/contacts.php:870
msgid "Advanced"
msgstr "Erweitert"
#: include/identity.php:717 mod/contacts.php:836 mod/follow.php:142
msgid "Status Messages and Posts"
msgstr "Statusnachrichten und Beiträge"
#: include/identity.php:725 mod/contacts.php:844
msgid "Profile Details"
msgstr "Profildetails"
#: include/identity.php:733 mod/photos.php:87
msgid "Photo Albums"
msgstr "Fotoalben"
#: include/identity.php:772 mod/notes.php:46
msgid "Personal Notes"
msgstr "Persönliche Notizen"
#: include/identity.php:775
msgid "Only You Can See This"
msgstr "Nur Du kannst das sehen"
#: include/items.php:1575 mod/dfrn_confirm.php:730 mod/dfrn_request.php:746
msgid "[Name Withheld]"
msgstr "[Name unterdrückt]"
#: include/items.php:1930 mod/viewsrc.php:15 mod/notice.php:15
#: mod/display.php:103 mod/display.php:279 mod/display.php:478
#: mod/admin.php:234 mod/admin.php:1471 mod/admin.php:1705
msgid "Item not found."
msgstr "Beitrag nicht gefunden."
#: include/items.php:1969
msgid "Do you really want to delete this item?"
msgstr "Möchtest Du wirklich dieses Item löschen?"
#: include/items.php:1971 mod/api.php:105 mod/message.php:217
#: mod/profiles.php:648 mod/profiles.php:651 mod/profiles.php:677
#: mod/suggest.php:29 mod/register.php:245 mod/settings.php:1163
#: mod/settings.php:1169 mod/settings.php:1177 mod/settings.php:1181
#: mod/settings.php:1186 mod/settings.php:1192 mod/settings.php:1198
#: mod/settings.php:1204 mod/settings.php:1230 mod/settings.php:1231
#: mod/settings.php:1232 mod/settings.php:1233 mod/settings.php:1234
#: mod/contacts.php:442 mod/dfrn_request.php:862 mod/follow.php:110
msgid "Yes"
msgstr "Ja"
#: include/items.php:2134 mod/notes.php:22 mod/uimport.php:23
#: mod/nogroup.php:25 mod/invite.php:15 mod/invite.php:101
#: mod/repair_ostatus.php:9 mod/delegate.php:12 mod/attach.php:33
#: mod/editpost.php:10 mod/group.php:19 mod/wallmessage.php:9
#: mod/wallmessage.php:33 mod/wallmessage.php:79 mod/wallmessage.php:103
#: mod/api.php:26 mod/api.php:31 mod/ostatus_subscribe.php:9
#: mod/message.php:46 mod/message.php:182 mod/manage.php:96
#: mod/crepair.php:100 mod/fsuggest.php:78 mod/mood.php:114 mod/poke.php:150
#: mod/profile_photo.php:19 mod/profile_photo.php:175
#: mod/profile_photo.php:186 mod/profile_photo.php:199 mod/regmod.php:110
#: mod/notifications.php:71 mod/profiles.php:166 mod/profiles.php:605
#: mod/allfriends.php:12 mod/cal.php:304 mod/common.php:18 mod/dirfind.php:11
#: mod/display.php:475 mod/events.php:190 mod/suggest.php:58
#: mod/photos.php:159 mod/photos.php:1072 mod/register.php:42
#: mod/settings.php:22 mod/settings.php:128 mod/settings.php:665
#: mod/wall_attach.php:67 mod/wall_attach.php:70 mod/wall_upload.php:77
#: mod/wall_upload.php:80 mod/contacts.php:350 mod/dfrn_confirm.php:61
#: mod/follow.php:11 mod/follow.php:73 mod/follow.php:155 mod/item.php:199
#: mod/item.php:211 mod/network.php:4 mod/viewcontacts.php:45 index.php:401
msgid "Permission denied."
msgstr "Zugriff verweigert."
#: include/items.php:2239
msgid "Archives"
msgstr "Archiv"
#: include/oembed.php:264
msgid "Embedded content"
msgstr "Eingebetteter Inhalt"
#: include/oembed.php:272
msgid "Embedding disabled"
msgstr "Einbettungen deaktiviert"
#: include/ostatus.php:1825
#, php-format
msgid "%s is now following %s."
msgstr "%s folgt nun %s"
#: include/ostatus.php:1826
msgid "following"
msgstr "folgen"
#: include/ostatus.php:1829
#, php-format
msgid "%s stopped following %s."
msgstr "%s hat aufgehört %s zu folgen"
#: include/ostatus.php:1830
msgid "stopped following"
msgstr "wird nicht mehr gefolgt"
#: include/text.php:304
msgid "newer"
msgstr "neuer"
#: include/text.php:306
msgid "older"
msgstr "älter"
#: include/text.php:311
msgid "prev"
msgstr "vorige"
#: include/text.php:313
msgid "first"
msgstr "erste"
#: include/text.php:345
msgid "last"
msgstr "letzte"
#: include/text.php:348
msgid "next"
msgstr "nächste"
#: include/text.php:403
msgid "Loading more entries..."
msgstr "lade weitere Einträge..."
#: include/text.php:404
msgid "The end"
msgstr "Das Ende"
#: include/text.php:889
msgid "No contacts"
msgstr "Keine Kontakte"
#: include/text.php:912
#, php-format
msgid "%d Contact"
msgid_plural "%d Contacts"
msgstr[0] "%d Kontakt"
msgstr[1] "%d Kontakte"
#: include/text.php:925
msgid "View Contacts"
msgstr "Kontakte anzeigen"
#: include/text.php:1013 mod/notes.php:61 mod/filer.php:31
#: mod/editpost.php:109
msgid "Save"
msgstr "Speichern"
#: include/text.php:1076
msgid "poke"
msgstr "anstupsen"
#: include/text.php:1076
msgid "poked"
msgstr "stupste"
#: include/text.php:1077
msgid "ping"
msgstr "anpingen"
#: include/text.php:1077
msgid "pinged"
msgstr "pingte"
#: include/text.php:1078
msgid "prod"
msgstr "knuffen"
#: include/text.php:1078
msgid "prodded"
msgstr "knuffte"
#: include/text.php:1079
msgid "slap"
msgstr "ohrfeigen"
#: include/text.php:1079
msgid "slapped"
msgstr "ohrfeigte"
#: include/text.php:1080
msgid "finger"
msgstr "befummeln"
#: include/text.php:1080
msgid "fingered"
msgstr "befummelte"
#: include/text.php:1081
msgid "rebuff"
msgstr "eine Abfuhr erteilen"
#: include/text.php:1081
msgid "rebuffed"
msgstr "abfuhrerteilte"
#: include/text.php:1095
msgid "happy"
msgstr "glücklich"
#: include/text.php:1096
msgid "sad"
msgstr "traurig"
#: include/text.php:1097
msgid "mellow"
msgstr "sanft"
#: include/text.php:1098
msgid "tired"
msgstr "müde"
#: include/text.php:1099
msgid "perky"
msgstr "frech"
#: include/text.php:1100
msgid "angry"
msgstr "sauer"
#: include/text.php:1101
msgid "stupified"
msgstr "verblüfft"
#: include/text.php:1102
msgid "puzzled"
msgstr "verwirrt"
#: include/text.php:1103
msgid "interested"
msgstr "interessiert"
#: include/text.php:1104
msgid "bitter"
msgstr "verbittert"
#: include/text.php:1105
msgid "cheerful"
msgstr "fröhlich"
#: include/text.php:1106
msgid "alive"
msgstr "lebendig"
#: include/text.php:1107
msgid "annoyed"
msgstr "verärgert"
#: include/text.php:1108
msgid "anxious"
msgstr "unruhig"
#: include/text.php:1109
msgid "cranky"
msgstr "schrullig"
#: include/text.php:1110
msgid "disturbed"
msgstr "verstört"
#: include/text.php:1111
msgid "frustrated"
msgstr "frustriert"
#: include/text.php:1112
msgid "motivated"
msgstr "motiviert"
#: include/text.php:1113
msgid "relaxed"
msgstr "entspannt"
#: include/text.php:1114
msgid "surprised"
msgstr "überrascht"
#: include/text.php:1324 mod/videos.php:380
msgid "View Video"
msgstr "Video ansehen"
#: include/text.php:1356
msgid "bytes"
msgstr "Byte"
#: include/text.php:1388 include/text.php:1400
msgid "Click to open/close"
msgstr "Zum öffnen/schließen klicken"
#: include/text.php:1526
msgid "View on separate page"
msgstr "Auf separater Seite ansehen"
#: include/text.php:1527
msgid "view on separate page"
msgstr "auf separater Seite ansehen"
#: include/text.php:1806
msgid "activity"
msgstr "Aktivität"
#: include/text.php:1808 mod/content.php:623 object/Item.php:431
#: object/Item.php:444
msgid "comment"
msgid_plural "comments"
msgstr[0] "Kommentar"
msgstr[1] "Kommentare"
#: include/text.php:1809
msgid "post"
msgstr "Beitrag"
#: include/text.php:1977
msgid "Item filed"
msgstr "Beitrag abgelegt"
#: include/user.php:39 mod/settings.php:373
#: include/user.php:39 mod/settings.php:375
msgid "Passwords do not match. Password unchanged."
msgstr "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert."
@ -3037,7 +1298,8 @@ msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden."
msgid "An error occurred during registration. Please try again."
msgstr "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal."
#: include/user.php:256 view/theme/duepuntozero/config.php:44
#: include/user.php:256 view/theme/duepuntozero/config.php:43
#: view/theme/clean/config.php:60
msgid "default"
msgstr "Standard"
@ -3045,16 +1307,16 @@ msgstr "Standard"
msgid "An error occurred creating your default profile. Please try again."
msgstr "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal."
#: include/user.php:326 include/user.php:333 include/user.php:340
#: mod/profile_photo.php:74 mod/profile_photo.php:81 mod/profile_photo.php:88
#: mod/profile_photo.php:210 mod/profile_photo.php:302
#: mod/profile_photo.php:311 mod/photos.php:66 mod/photos.php:180
#: mod/photos.php:751 mod/photos.php:1211 mod/photos.php:1232
#: mod/photos.php:1819
#: include/user.php:326 include/user.php:334 include/user.php:342
#: mod/profile_photo.php:74 mod/profile_photo.php:82 mod/profile_photo.php:90
#: mod/profile_photo.php:215 mod/profile_photo.php:310
#: mod/profile_photo.php:320 mod/photos.php:68 mod/photos.php:182
#: mod/photos.php:768 mod/photos.php:1231 mod/photos.php:1252
#: mod/photos.php:1839
msgid "Profile Photos"
msgstr "Profilbilder"
#: include/user.php:414
#: include/user.php:417
#, php-format
msgid ""
"\n"
@ -3063,12 +1325,12 @@ msgid ""
"\t"
msgstr "\nHallo %1$s,\n\ndanke für Deine Registrierung auf %2$s. Dein Account wurde muss noch vom Admin des Knotens geprüft werden."
#: include/user.php:424
#: include/user.php:427
#, php-format
msgid "Registration at %s"
msgstr "Registrierung als %s"
#: include/user.php:434
#: include/user.php:437
#, php-format
msgid ""
"\n"
@ -3077,7 +1339,7 @@ msgid ""
"\t"
msgstr "\nHallo %1$s,\n\ndanke für Deine Registrierung auf %2$s. Dein Account wurde eingerichtet."
#: include/user.php:438
#: include/user.php:441
#, php-format
msgid ""
"\n"
@ -3107,103 +1369,2501 @@ msgid ""
"\t\tThank you and welcome to %2$s."
msgstr "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%3$s\n\tBenutzernamename:\t%1$s\n\tPasswort:\t%5$s\n\nDu kannst Dein Passwort unter \"Einstellungen\" ändern, sobald Du Dich\nangemeldet hast.\n\nBitte nimm Dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst Du ja auch einige Informationen über Dich in Deinem\nProfil veröffentlichen, damit andere Leute Dich einfacher finden können.\nBearbeite hierfür einfach Dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen Dir, Deinen kompletten Namen anzugeben und ein zu Dir\npassendes Profilbild zu wählen, damit Dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn Du auf Deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die Deine Interessen teilen.\n\nWir respektieren Deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn Du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nDanke für Deine Aufmerksamkeit und willkommen auf %2$s."
#: include/user.php:470 mod/admin.php:1213
#: include/user.php:473 mod/admin.php:1234
#, php-format
msgid "Registration details for %s"
msgstr "Details der Registration von %s"
#: mod/oexchange.php:25
msgid "Post successful."
msgstr "Beitrag erfolgreich veröffentlicht."
#: include/acl_selectors.php:341
msgid "Post to Email"
msgstr "An E-Mail senden"
#: mod/viewsrc.php:7
msgid "Access denied."
#: include/acl_selectors.php:346
#, php-format
msgid "Connectors disabled, since \"%s\" is enabled."
msgstr "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist."
#: include/acl_selectors.php:347 mod/settings.php:1188
msgid "Hide your profile details from unknown viewers?"
msgstr "Profil-Details vor unbekannten Betrachtern verbergen?"
#: include/acl_selectors.php:352
msgid "Visible to everybody"
msgstr "Für jeden sichtbar"
#: include/acl_selectors.php:353 view/theme/vier/config.php:108
msgid "show"
msgstr "zeigen"
#: include/acl_selectors.php:354 view/theme/vier/config.php:108
msgid "don't show"
msgstr "nicht zeigen"
#: include/acl_selectors.php:360 mod/editpost.php:123
msgid "CC: email addresses"
msgstr "Cc: E-Mail-Addressen"
#: include/acl_selectors.php:361 mod/editpost.php:130
msgid "Example: bob@example.com, mary@example.com"
msgstr "Z.B.: bob@example.com, mary@example.com"
#: include/acl_selectors.php:363 mod/events.php:516 mod/photos.php:1176
#: mod/photos.php:1558
msgid "Permissions"
msgstr "Berechtigungen"
#: include/acl_selectors.php:364
msgid "Close"
msgstr "Schließen"
#: include/conversation.php:147
#, php-format
msgid "%1$s attends %2$s's %3$s"
msgstr "%1$s nimmt an %2$ss %3$s teil."
#: include/conversation.php:150
#, php-format
msgid "%1$s doesn't attend %2$s's %3$s"
msgstr "%1$s nimmt nicht an %2$ss %3$s teil."
#: include/conversation.php:153
#, php-format
msgid "%1$s attends maybe %2$s's %3$s"
msgstr "%1$s nimmt eventuell an %2$ss %3$s teil."
#: include/conversation.php:185 mod/dfrn_confirm.php:478
#, php-format
msgid "%1$s is now friends with %2$s"
msgstr "%1$s ist nun mit %2$s befreundet"
#: include/conversation.php:219
#, php-format
msgid "%1$s poked %2$s"
msgstr "%1$s stupste %2$s"
#: include/conversation.php:239 mod/mood.php:63
#, php-format
msgid "%1$s is currently %2$s"
msgstr "%1$s ist momentan %2$s"
#: include/conversation.php:278 mod/tagger.php:95
#, php-format
msgid "%1$s tagged %2$s's %3$s with %4$s"
msgstr "%1$s hat %2$ss %3$s mit %4$s getaggt"
#: include/conversation.php:303
msgid "post/item"
msgstr "Nachricht/Beitrag"
#: include/conversation.php:304
#, php-format
msgid "%1$s marked %2$s's %3$s as favorite"
msgstr "%1$s hat %2$s\\s %3$s als Favorit markiert"
#: include/conversation.php:587 mod/content.php:372 mod/photos.php:1629
#: mod/profiles.php:346
msgid "Likes"
msgstr "Likes"
#: include/conversation.php:587 mod/content.php:372 mod/photos.php:1629
#: mod/profiles.php:350
msgid "Dislikes"
msgstr "Dislikes"
#: include/conversation.php:588 include/conversation.php:1472
#: mod/content.php:373 mod/photos.php:1630
msgid "Attending"
msgid_plural "Attending"
msgstr[0] "Teilnehmend"
msgstr[1] "Teilnehmend"
#: include/conversation.php:588 mod/content.php:373 mod/photos.php:1630
msgid "Not attending"
msgstr "Nicht teilnehmend"
#: include/conversation.php:588 mod/content.php:373 mod/photos.php:1630
msgid "Might attend"
msgstr "Eventuell teilnehmend"
#: include/conversation.php:710 mod/content.php:453 mod/content.php:759
#: mod/photos.php:1703 object/Item.php:137
msgid "Select"
msgstr "Auswählen"
#: include/conversation.php:711 mod/content.php:454 mod/content.php:760
#: mod/group.php:181 mod/settings.php:744 mod/contacts.php:816
#: mod/contacts.php:1015 mod/photos.php:1704 mod/admin.php:1435
#: object/Item.php:138
msgid "Delete"
msgstr "Löschen"
#: include/conversation.php:755 mod/content.php:487 mod/content.php:915
#: mod/content.php:916 object/Item.php:382 object/Item.php:383
#, php-format
msgid "View %s's profile @ %s"
msgstr "Das Profil von %s auf %s betrachten."
#: include/conversation.php:767 object/Item.php:370
msgid "Categories:"
msgstr "Kategorien:"
#: include/conversation.php:768 object/Item.php:371
msgid "Filed under:"
msgstr "Abgelegt unter:"
#: include/conversation.php:775 mod/content.php:497 mod/content.php:928
#: object/Item.php:396
#, php-format
msgid "%s from %s"
msgstr "%s von %s"
#: include/conversation.php:791 mod/content.php:513
msgid "View in context"
msgstr "Im Zusammenhang betrachten"
#: include/conversation.php:793 include/conversation.php:1255
#: mod/content.php:515 mod/content.php:953 mod/editpost.php:114
#: mod/message.php:337 mod/message.php:522 mod/wallmessage.php:140
#: mod/photos.php:1592 object/Item.php:421
msgid "Please wait"
msgstr "Bitte warten"
#: include/conversation.php:872
msgid "remove"
msgstr "löschen"
#: include/conversation.php:876
msgid "Delete Selected Items"
msgstr "Lösche die markierten Beiträge"
#: include/conversation.php:968
msgid "Follow Thread"
msgstr "Folge der Unterhaltung"
#: include/conversation.php:969 include/Contact.php:445
msgid "View Status"
msgstr "Pinnwand anschauen"
#: include/conversation.php:970 include/conversation.php:986
#: include/Contact.php:388 include/Contact.php:401 include/Contact.php:446
#: mod/allfriends.php:68 mod/directory.php:157 mod/dirfind.php:209
#: mod/match.php:73 mod/suggest.php:82
msgid "View Profile"
msgstr "Profil anschauen"
#: include/conversation.php:971 include/Contact.php:447
msgid "View Photos"
msgstr "Bilder anschauen"
#: include/conversation.php:972 include/Contact.php:448
msgid "Network Posts"
msgstr "Netzwerkbeiträge"
#: include/conversation.php:973 include/Contact.php:449
msgid "View Contact"
msgstr "Kontakt anzeigen"
#: include/conversation.php:974 include/Contact.php:451
msgid "Send PM"
msgstr "Private Nachricht senden"
#: include/conversation.php:978 include/Contact.php:452
msgid "Poke"
msgstr "Anstupsen"
#: include/conversation.php:983 include/contact_widgets.php:32
#: include/Contact.php:402 mod/allfriends.php:69 mod/dirfind.php:210
#: mod/follow.php:106 mod/match.php:74 mod/suggest.php:83 mod/contacts.php:610
msgid "Connect/Follow"
msgstr "Verbinden/Folgen"
#: include/conversation.php:1099
#, php-format
msgid "%s likes this."
msgstr "%s mag das."
#: include/conversation.php:1102
#, php-format
msgid "%s doesn't like this."
msgstr "%s mag das nicht."
#: include/conversation.php:1105
#, php-format
msgid "%s attends."
msgstr "%s nimmt teil."
#: include/conversation.php:1108
#, php-format
msgid "%s doesn't attend."
msgstr "%s nimmt nicht teil."
#: include/conversation.php:1111
#, php-format
msgid "%s attends maybe."
msgstr "%s nimmt eventuell teil."
#: include/conversation.php:1121
msgid "and"
msgstr "und"
#: include/conversation.php:1127
#, php-format
msgid ", and %d other people"
msgstr " und %d andere"
#: include/conversation.php:1136
#, php-format
msgid "<span %1$s>%2$d people</span> like this"
msgstr "<span %1$s>%2$d Personen</span> mögen das"
#: include/conversation.php:1137
#, php-format
msgid "%s like this."
msgstr "%s mögen das."
#: include/conversation.php:1140
#, php-format
msgid "<span %1$s>%2$d people</span> don't like this"
msgstr "<span %1$s>%2$d Personen</span> mögen das nicht"
#: include/conversation.php:1141
#, php-format
msgid "%s don't like this."
msgstr "%s mögen dies nicht."
#: include/conversation.php:1144
#, php-format
msgid "<span %1$s>%2$d people</span> attend"
msgstr "<span %1$s>%2$d Personen</span> nehmen teil"
#: include/conversation.php:1145
#, php-format
msgid "%s attend."
msgstr "%s nehmen teil."
#: include/conversation.php:1148
#, php-format
msgid "<span %1$s>%2$d people</span> don't attend"
msgstr "<span %1$s>%2$d Personen</span> nehmen nicht teil"
#: include/conversation.php:1149
#, php-format
msgid "%s don't attend."
msgstr "%s nehmen nicht teil."
#: include/conversation.php:1152
#, php-format
msgid "<span %1$s>%2$d people</span> attend maybe"
msgstr "<span %1$s>%2$d Personen</span> nehmen eventuell teil"
#: include/conversation.php:1153
#, php-format
msgid "%s anttend maybe."
msgstr "%s nehmen vielleicht teil."
#: include/conversation.php:1183 include/conversation.php:1199
msgid "Visible to <strong>everybody</strong>"
msgstr "Für <strong>jedermann</strong> sichtbar"
#: include/conversation.php:1184 include/conversation.php:1200
#: mod/message.php:271 mod/message.php:278 mod/message.php:418
#: mod/message.php:425 mod/wallmessage.php:114 mod/wallmessage.php:121
msgid "Please enter a link URL:"
msgstr "Bitte gib die URL des Links ein:"
#: include/conversation.php:1185 include/conversation.php:1201
msgid "Please enter a video link/URL:"
msgstr "Bitte Link/URL zum Video einfügen:"
#: include/conversation.php:1186 include/conversation.php:1202
msgid "Please enter an audio link/URL:"
msgstr "Bitte Link/URL zum Audio einfügen:"
#: include/conversation.php:1187 include/conversation.php:1203
msgid "Tag term:"
msgstr "Tag:"
#: include/conversation.php:1188 include/conversation.php:1204
#: mod/filer.php:30
msgid "Save to Folder:"
msgstr "In diesem Ordner speichern:"
#: include/conversation.php:1189 include/conversation.php:1205
msgid "Where are you right now?"
msgstr "Wo hältst Du Dich jetzt gerade auf?"
#: include/conversation.php:1190
msgid "Delete item(s)?"
msgstr "Einträge löschen?"
#: include/conversation.php:1236
msgid "Share"
msgstr "Teilen"
#: include/conversation.php:1237 mod/editpost.php:100 mod/message.php:335
#: mod/message.php:519 mod/wallmessage.php:138
msgid "Upload photo"
msgstr "Foto hochladen"
#: include/conversation.php:1238 mod/editpost.php:101
msgid "upload photo"
msgstr "Bild hochladen"
#: include/conversation.php:1239 mod/editpost.php:102
msgid "Attach file"
msgstr "Datei anhängen"
#: include/conversation.php:1240 mod/editpost.php:103
msgid "attach file"
msgstr "Datei anhängen"
#: include/conversation.php:1241 mod/editpost.php:104 mod/message.php:336
#: mod/message.php:520 mod/wallmessage.php:139
msgid "Insert web link"
msgstr "Einen Link einfügen"
#: include/conversation.php:1242 mod/editpost.php:105
msgid "web link"
msgstr "Weblink"
#: include/conversation.php:1243 mod/editpost.php:106
msgid "Insert video link"
msgstr "Video-Adresse einfügen"
#: include/conversation.php:1244 mod/editpost.php:107
msgid "video link"
msgstr "Video-Link"
#: include/conversation.php:1245 mod/editpost.php:108
msgid "Insert audio link"
msgstr "Audio-Adresse einfügen"
#: include/conversation.php:1246 mod/editpost.php:109
msgid "audio link"
msgstr "Audio-Link"
#: include/conversation.php:1247 mod/editpost.php:110
msgid "Set your location"
msgstr "Deinen Standort festlegen"
#: include/conversation.php:1248 mod/editpost.php:111
msgid "set location"
msgstr "Ort setzen"
#: include/conversation.php:1249 mod/editpost.php:112
msgid "Clear browser location"
msgstr "Browser-Standort leeren"
#: include/conversation.php:1250 mod/editpost.php:113
msgid "clear location"
msgstr "Ort löschen"
#: include/conversation.php:1252 mod/editpost.php:127
msgid "Set title"
msgstr "Titel setzen"
#: include/conversation.php:1254 mod/editpost.php:129
msgid "Categories (comma-separated list)"
msgstr "Kategorien (kommasepariert)"
#: include/conversation.php:1256 mod/editpost.php:115
msgid "Permission settings"
msgstr "Berechtigungseinstellungen"
#: include/conversation.php:1257 mod/editpost.php:144
msgid "permissions"
msgstr "Zugriffsrechte"
#: include/conversation.php:1265 mod/editpost.php:124
msgid "Public post"
msgstr "Öffentlicher Beitrag"
#: include/conversation.php:1270 mod/content.php:737 mod/editpost.php:135
#: mod/events.php:511 mod/photos.php:1613 mod/photos.php:1661
#: mod/photos.php:1747 object/Item.php:741
msgid "Preview"
msgstr "Vorschau"
#: include/conversation.php:1274 include/items.php:1983 mod/follow.php:124
#: mod/settings.php:682 mod/settings.php:708 mod/suggest.php:32
#: mod/tagrm.php:11 mod/tagrm.php:96 mod/videos.php:132 mod/contacts.php:455
#: mod/editpost.php:138 mod/fbrowser.php:100 mod/fbrowser.php:135
#: mod/message.php:209 mod/photos.php:240 mod/photos.php:331
#: mod/dfrn_request.php:889
msgid "Cancel"
msgstr "Abbrechen"
#: include/conversation.php:1280
msgid "Post to Groups"
msgstr "Poste an Gruppe"
#: include/conversation.php:1281
msgid "Post to Contacts"
msgstr "Poste an Kontakte"
#: include/conversation.php:1282
msgid "Private post"
msgstr "Privater Beitrag"
#: include/conversation.php:1287 include/identity.php:259 mod/editpost.php:142
msgid "Message"
msgstr "Nachricht"
#: include/conversation.php:1288 mod/editpost.php:143
msgid "Browser"
msgstr "Browser"
#: include/conversation.php:1444
msgid "View all"
msgstr "Zeige alle"
#: include/conversation.php:1466
msgid "Like"
msgid_plural "Likes"
msgstr[0] "mag ich"
msgstr[1] "Mag ich"
#: include/conversation.php:1469
msgid "Dislike"
msgid_plural "Dislikes"
msgstr[0] "mag ich nicht"
msgstr[1] "Mag ich nicht"
#: include/conversation.php:1475
msgid "Not Attending"
msgid_plural "Not Attending"
msgstr[0] "Nicht teilnehmend "
msgstr[1] "Nicht teilnehmend"
#: include/delivery.php:470
msgid "(no subject)"
msgstr "(kein Betreff)"
#: include/features.php:65
msgid "General Features"
msgstr "Allgemeine Features"
#: include/features.php:67
msgid "Multiple Profiles"
msgstr "Mehrere Profile"
#: include/features.php:67
msgid "Ability to create multiple profiles"
msgstr "Möglichkeit mehrere Profile zu erstellen"
#: include/features.php:68
msgid "Photo Location"
msgstr "Aufnahmeort"
#: include/features.php:68
msgid ""
"Photo metadata is normally stripped. This extracts the location (if present)"
" prior to stripping metadata and links it to a map."
msgstr "Die Foto-Metadaten werden ausgelesen. Dadurch kann der Aufnahmeort (wenn vorhanden) in einer Karte angezeigt werden."
#: include/features.php:69
msgid "Export Public Calendar"
msgstr "Öffentlichen Kalender exportieren"
#: include/features.php:69
msgid "Ability for visitors to download the public calendar"
msgstr "Möglichkeit für Besucher den öffentlichen Kalender herunter zu laden"
#: include/features.php:74
msgid "Post Composition Features"
msgstr "Beitragserstellung Features"
#: include/features.php:75
msgid "Post Preview"
msgstr "Beitragsvorschau"
#: include/features.php:75
msgid "Allow previewing posts and comments before publishing them"
msgstr "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben."
#: include/features.php:76
msgid "Auto-mention Forums"
msgstr "Foren automatisch erwähnen"
#: include/features.php:76
msgid ""
"Add/remove mention when a forum page is selected/deselected in ACL window."
msgstr "Automatisch eine @-Erwähnung eines Forums einfügen/entfehrnen, wenn dieses im ACL Fenster de-/markiert wurde."
#: include/features.php:81
msgid "Network Sidebar Widgets"
msgstr "Widgets für Netzwerk und Seitenleiste"
#: include/features.php:82
msgid "Search by Date"
msgstr "Archiv"
#: include/features.php:82
msgid "Ability to select posts by date ranges"
msgstr "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren"
#: include/features.php:83 include/features.php:113
msgid "List Forums"
msgstr "Zeige Foren"
#: include/features.php:83
msgid "Enable widget to display the forums your are connected with"
msgstr "Aktiviere Widget, um die Foren mit denen du verbunden bist anzuzeigen"
#: include/features.php:84
msgid "Group Filter"
msgstr "Gruppen Filter"
#: include/features.php:84
msgid "Enable widget to display Network posts only from selected group"
msgstr "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren."
#: include/features.php:85
msgid "Network Filter"
msgstr "Netzwerk Filter"
#: include/features.php:85
msgid "Enable widget to display Network posts only from selected network"
msgstr "Widget zum filtern der Beiträge in Abhängigkeit des Netzwerks aus dem der Ersteller sendet aktivieren."
#: include/features.php:86 mod/network.php:199 mod/search.php:34
msgid "Saved Searches"
msgstr "Gespeicherte Suchen"
#: include/features.php:86
msgid "Save search terms for re-use"
msgstr "Speichere Suchanfragen für spätere Wiederholung."
#: include/features.php:91
msgid "Network Tabs"
msgstr "Netzwerk Reiter"
#: include/features.php:92
msgid "Network Personal Tab"
msgstr "Netzwerk-Reiter: Persönlich"
#: include/features.php:92
msgid "Enable tab to display only Network posts that you've interacted on"
msgstr "Aktiviert einen Netzwerk-Reiter in dem Nachrichten angezeigt werden mit denen Du interagiert hast"
#: include/features.php:93
msgid "Network New Tab"
msgstr "Netzwerk-Reiter: Neue"
#: include/features.php:93
msgid "Enable tab to display only new Network posts (from the last 12 hours)"
msgstr "Aktiviert einen Netzwerk-Reiter in dem ausschließlich neue Beiträge (der letzten 12 Stunden) angezeigt werden"
#: include/features.php:94
msgid "Network Shared Links Tab"
msgstr "Netzwerk-Reiter: Geteilte Links"
#: include/features.php:94
msgid "Enable tab to display only Network posts with links in them"
msgstr "Aktiviert einen Netzwerk-Reiter der ausschließlich Nachrichten mit Links enthält"
#: include/features.php:99
msgid "Post/Comment Tools"
msgstr "Werkzeuge für Beiträge und Kommentare"
#: include/features.php:100
msgid "Multiple Deletion"
msgstr "Mehrere Beiträge löschen"
#: include/features.php:100
msgid "Select and delete multiple posts/comments at once"
msgstr "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen"
#: include/features.php:101
msgid "Edit Sent Posts"
msgstr "Gesendete Beiträge editieren"
#: include/features.php:101
msgid "Edit and correct posts and comments after sending"
msgstr "Erlaubt es Beiträge und Kommentare nach dem Senden zu editieren bzw.zu korrigieren."
#: include/features.php:102
msgid "Tagging"
msgstr "Tagging"
#: include/features.php:102
msgid "Ability to tag existing posts"
msgstr "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen."
#: include/features.php:103
msgid "Post Categories"
msgstr "Beitragskategorien"
#: include/features.php:103
msgid "Add categories to your posts"
msgstr "Eigene Beiträge mit Kategorien versehen"
#: include/features.php:104 include/contact_widgets.php:150
msgid "Saved Folders"
msgstr "Gespeicherte Ordner"
#: include/features.php:104
msgid "Ability to file posts under folders"
msgstr "Beiträge in Ordnern speichern aktivieren"
#: include/features.php:105
msgid "Dislike Posts"
msgstr "Beiträge 'nicht mögen'"
#: include/features.php:105
msgid "Ability to dislike posts/comments"
msgstr "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'"
#: include/features.php:106
msgid "Star Posts"
msgstr "Beiträge Markieren"
#: include/features.php:106
msgid "Ability to mark special posts with a star indicator"
msgstr "Erlaubt es Beiträge mit einem Stern-Indikator zu markieren"
#: include/features.php:107
msgid "Mute Post Notifications"
msgstr "Benachrichtigungen für Beiträge Stumm schalten"
#: include/features.php:107
msgid "Ability to mute notifications for a thread"
msgstr "Möglichkeit Benachrichtigungen für einen Thread abbestellen zu können"
#: include/features.php:112
msgid "Advanced Profile Settings"
msgstr "Erweiterte Profil-Einstellungen"
#: include/features.php:113
msgid "Show visitors public community forums at the Advanced Profile Page"
msgstr "Zeige Besuchern öffentliche Gemeinschafts-Foren auf der Erweiterten Profil-Seite"
#: include/photos.php:57 include/photos.php:67 mod/fbrowser.php:40
#: mod/fbrowser.php:61 mod/photos.php:182 mod/photos.php:1106
#: mod/photos.php:1231 mod/photos.php:1252 mod/photos.php:1817
#: mod/photos.php:1829
msgid "Contact Photos"
msgstr "Kontaktbilder"
#: include/datetime.php:58 include/datetime.php:60 mod/profiles.php:697
msgid "Miscellaneous"
msgstr "Verschiedenes"
#: include/datetime.php:184 include/identity.php:641
msgid "Birthday:"
msgstr "Geburtstag:"
#: include/datetime.php:186 mod/profiles.php:720
msgid "Age: "
msgstr "Alter: "
#: include/datetime.php:188
msgid "YYYY-MM-DD or MM-DD"
msgstr "YYYY-MM-DD oder MM-DD"
#: include/datetime.php:343
msgid "never"
msgstr "nie"
#: include/datetime.php:349
msgid "less than a second ago"
msgstr "vor weniger als einer Sekunde"
#: include/datetime.php:352
msgid "year"
msgstr "Jahr"
#: include/datetime.php:352
msgid "years"
msgstr "Jahre"
#: include/datetime.php:353 include/event.php:481 mod/cal.php:279
#: mod/events.php:396
msgid "month"
msgstr "Monat"
#: include/datetime.php:353
msgid "months"
msgstr "Monate"
#: include/datetime.php:354 include/event.php:482 mod/cal.php:280
#: mod/events.php:397
msgid "week"
msgstr "Woche"
#: include/datetime.php:354
msgid "weeks"
msgstr "Wochen"
#: include/datetime.php:355 include/event.php:483 mod/cal.php:281
#: mod/events.php:398
msgid "day"
msgstr "Tag"
#: include/datetime.php:355
msgid "days"
msgstr "Tage"
#: include/datetime.php:356
msgid "hour"
msgstr "Stunde"
#: include/datetime.php:356
msgid "hours"
msgstr "Stunden"
#: include/datetime.php:357
msgid "minute"
msgstr "Minute"
#: include/datetime.php:357
msgid "minutes"
msgstr "Minuten"
#: include/datetime.php:358
msgid "second"
msgstr "Sekunde"
#: include/datetime.php:358
msgid "seconds"
msgstr "Sekunden"
#: include/datetime.php:367
#, php-format
msgid "%1$d %2$s ago"
msgstr "%1$d %2$s her"
#: include/datetime.php:585
#, php-format
msgid "%s's birthday"
msgstr "%ss Geburtstag"
#: include/datetime.php:586 include/dfrn.php:1122
#, php-format
msgid "Happy Birthday %s"
msgstr "Herzlichen Glückwunsch %s"
#: include/event.php:16 include/bb2diaspora.php:199 mod/localtime.php:12
msgid "l F d, Y \\@ g:i A"
msgstr "l, d. F Y\\, H:i"
#: include/event.php:33 include/event.php:51 include/event.php:488
#: include/bb2diaspora.php:205
msgid "Starts:"
msgstr "Beginnt:"
#: include/event.php:36 include/event.php:57 include/event.php:489
#: include/bb2diaspora.php:213
msgid "Finishes:"
msgstr "Endet:"
#: include/event.php:39 include/event.php:63 include/event.php:490
#: include/bb2diaspora.php:221 include/identity.php:331 mod/directory.php:139
#: mod/contacts.php:636 mod/events.php:501 mod/notifications.php:238
msgid "Location:"
msgstr "Ort:"
#: include/event.php:442
msgid "Sun"
msgstr "So"
#: include/event.php:443
msgid "Mon"
msgstr "Mo"
#: include/event.php:444
msgid "Tue"
msgstr "Di"
#: include/event.php:445
msgid "Wed"
msgstr "Mi"
#: include/event.php:446
msgid "Thu"
msgstr "Do"
#: include/event.php:447
msgid "Fri"
msgstr "Fr"
#: include/event.php:448
msgid "Sat"
msgstr "Sa"
#: include/event.php:449 include/text.php:1132 mod/settings.php:981
msgid "Sunday"
msgstr "Sonntag"
#: include/event.php:450 include/text.php:1132 mod/settings.php:981
msgid "Monday"
msgstr "Montag"
#: include/event.php:451 include/text.php:1132
msgid "Tuesday"
msgstr "Dienstag"
#: include/event.php:452 include/text.php:1132
msgid "Wednesday"
msgstr "Mittwoch"
#: include/event.php:453 include/text.php:1132
msgid "Thursday"
msgstr "Donnerstag"
#: include/event.php:454 include/text.php:1132
msgid "Friday"
msgstr "Freitag"
#: include/event.php:455 include/text.php:1132
msgid "Saturday"
msgstr "Samstag"
#: include/event.php:456
msgid "Jan"
msgstr "Jan"
#: include/event.php:457
msgid "Feb"
msgstr "Feb"
#: include/event.php:458
msgid "Mar"
msgstr "März"
#: include/event.php:459
msgid "Apr"
msgstr "Apr"
#: include/event.php:460 include/event.php:472 include/text.php:1136
msgid "May"
msgstr "Mai"
#: include/event.php:461
msgid "Jun"
msgstr "Jun"
#: include/event.php:462
msgid "Jul"
msgstr "Juli"
#: include/event.php:463
msgid "Aug"
msgstr "Aug"
#: include/event.php:464
msgid "Sept"
msgstr "Sep"
#: include/event.php:465
msgid "Oct"
msgstr "Okt"
#: include/event.php:466
msgid "Nov"
msgstr "Nov"
#: include/event.php:467
msgid "Dec"
msgstr "Dez"
#: include/event.php:468 include/text.php:1136
msgid "January"
msgstr "Januar"
#: include/event.php:469 include/text.php:1136
msgid "February"
msgstr "Februar"
#: include/event.php:470 include/text.php:1136
msgid "March"
msgstr "März"
#: include/event.php:471 include/text.php:1136
msgid "April"
msgstr "April"
#: include/event.php:473 include/text.php:1136
msgid "June"
msgstr "Juni"
#: include/event.php:474 include/text.php:1136
msgid "July"
msgstr "Juli"
#: include/event.php:475 include/text.php:1136
msgid "August"
msgstr "August"
#: include/event.php:476 include/text.php:1136
msgid "September"
msgstr "September"
#: include/event.php:477 include/text.php:1136
msgid "October"
msgstr "Oktober"
#: include/event.php:478 include/text.php:1136
msgid "November"
msgstr "November"
#: include/event.php:479 include/text.php:1136
msgid "December"
msgstr "Dezember"
#: include/event.php:480 mod/cal.php:278 mod/events.php:395
msgid "today"
msgstr "Heute"
#: include/event.php:484
msgid "all-day"
msgstr "ganztägig"
#: include/event.php:486
msgid "No events to display"
msgstr "Keine Veranstaltung zum Anzeigen"
#: include/event.php:596
msgid "l, F j"
msgstr "l, F j"
#: include/event.php:615
msgid "Edit event"
msgstr "Veranstaltung bearbeiten"
#: include/event.php:637 include/text.php:1534 include/text.php:1541
msgid "link to source"
msgstr "Link zum Originalbeitrag"
#: include/event.php:872
msgid "Export"
msgstr "Exportieren"
#: include/event.php:873
msgid "Export calendar as ical"
msgstr "Kalender als ical exportieren"
#: include/event.php:874
msgid "Export calendar as csv"
msgstr "Kalender als csv exportieren"
#: include/dfrn.php:1121
#, php-format
msgid "%s\\'s birthday"
msgstr "%ss Geburtstag"
#: include/contact_selectors.php:32
msgid "Unknown | Not categorised"
msgstr "Unbekannt | Nicht kategorisiert"
#: include/contact_selectors.php:33
msgid "Block immediately"
msgstr "Sofort blockieren"
#: include/contact_selectors.php:34
msgid "Shady, spammer, self-marketer"
msgstr "Zwielichtig, Spammer, Selbstdarsteller"
#: include/contact_selectors.php:35
msgid "Known to me, but no opinion"
msgstr "Ist mir bekannt, hab aber keine Meinung"
#: include/contact_selectors.php:36
msgid "OK, probably harmless"
msgstr "OK, wahrscheinlich harmlos"
#: include/contact_selectors.php:37
msgid "Reputable, has my trust"
msgstr "Seriös, hat mein Vertrauen"
#: include/contact_selectors.php:56 mod/admin.php:901
msgid "Frequently"
msgstr "immer wieder"
#: include/contact_selectors.php:57 mod/admin.php:902
msgid "Hourly"
msgstr "Stündlich"
#: include/contact_selectors.php:58 mod/admin.php:903
msgid "Twice daily"
msgstr "Zweimal täglich"
#: include/contact_selectors.php:59 mod/admin.php:904
msgid "Daily"
msgstr "Täglich"
#: include/contact_selectors.php:60
msgid "Weekly"
msgstr "Wöchentlich"
#: include/contact_selectors.php:61
msgid "Monthly"
msgstr "Monatlich"
#: include/contact_selectors.php:76 mod/dfrn_request.php:881
msgid "Friendica"
msgstr "Friendica"
#: include/contact_selectors.php:77
msgid "OStatus"
msgstr "OStatus"
#: include/contact_selectors.php:78
msgid "RSS/Atom"
msgstr "RSS/Atom"
#: include/contact_selectors.php:79 include/contact_selectors.php:86
#: mod/admin.php:1417 mod/admin.php:1430 mod/admin.php:1443 mod/admin.php:1461
msgid "Email"
msgstr "E-Mail"
#: include/contact_selectors.php:80 mod/settings.php:848
#: mod/dfrn_request.php:883
msgid "Diaspora"
msgstr "Diaspora"
#: include/contact_selectors.php:81
msgid "Facebook"
msgstr "Facebook"
#: include/contact_selectors.php:82
msgid "Zot!"
msgstr "Zott"
#: include/contact_selectors.php:83
msgid "LinkedIn"
msgstr "LinkedIn"
#: include/contact_selectors.php:84
msgid "XMPP/IM"
msgstr "XMPP/Chat"
#: include/contact_selectors.php:85
msgid "MySpace"
msgstr "MySpace"
#: include/contact_selectors.php:87
msgid "Google+"
msgstr "Google+"
#: include/contact_selectors.php:88
msgid "pump.io"
msgstr "pump.io"
#: include/contact_selectors.php:89
msgid "Twitter"
msgstr "Twitter"
#: include/contact_selectors.php:90
msgid "Diaspora Connector"
msgstr "Diaspora"
#: include/contact_selectors.php:91
msgid "GNU Social"
msgstr "GNU Social"
#: include/contact_selectors.php:92
msgid "pnut"
msgstr "pnut"
#: include/contact_selectors.php:93
msgid "App.net"
msgstr "App.net"
#: include/contact_selectors.php:104
msgid "Hubzilla/Redmatrix"
msgstr "Hubzilla/Redmatrix"
#: include/contact_widgets.php:6
msgid "Add New Contact"
msgstr "Neuen Kontakt hinzufügen"
#: include/contact_widgets.php:7
msgid "Enter address or web location"
msgstr "Adresse oder Web-Link eingeben"
#: include/contact_widgets.php:8
msgid "Example: bob@example.com, http://example.com/barbara"
msgstr "Beispiel: bob@example.com, http://example.com/barbara"
#: include/contact_widgets.php:10 include/identity.php:219
#: mod/allfriends.php:85 mod/dirfind.php:207 mod/match.php:89
#: mod/suggest.php:101
msgid "Connect"
msgstr "Verbinden"
#: include/contact_widgets.php:24
#, php-format
msgid "%d invitation available"
msgid_plural "%d invitations available"
msgstr[0] "%d Einladung verfügbar"
msgstr[1] "%d Einladungen verfügbar"
#: include/contact_widgets.php:30
msgid "Find People"
msgstr "Leute finden"
#: include/contact_widgets.php:31
msgid "Enter name or interest"
msgstr "Name oder Interessen eingeben"
#: include/contact_widgets.php:33
msgid "Examples: Robert Morgenstein, Fishing"
msgstr "Beispiel: Robert Morgenstein, Angeln"
#: include/contact_widgets.php:34 mod/directory.php:206 mod/contacts.php:806
msgid "Find"
msgstr "Finde"
#: include/contact_widgets.php:35 mod/suggest.php:114
#: view/theme/vier/theme.php:198
msgid "Friend Suggestions"
msgstr "Kontaktvorschläge"
#: include/contact_widgets.php:36 view/theme/vier/theme.php:197
msgid "Similar Interests"
msgstr "Ähnliche Interessen"
#: include/contact_widgets.php:37
msgid "Random Profile"
msgstr "Zufälliges Profil"
#: include/contact_widgets.php:38 view/theme/vier/theme.php:199
msgid "Invite Friends"
msgstr "Freunde einladen"
#: include/contact_widgets.php:115
msgid "Networks"
msgstr "Netzwerke"
#: include/contact_widgets.php:118
msgid "All Networks"
msgstr "Alle Netzwerke"
#: include/contact_widgets.php:153 include/contact_widgets.php:187
msgid "Everything"
msgstr "Alles"
#: include/contact_widgets.php:184
msgid "Categories"
msgstr "Kategorien"
#: include/contact_widgets.php:248
#, php-format
msgid "%d contact in common"
msgid_plural "%d contacts in common"
msgstr[0] "%d gemeinsamer Kontakt"
msgstr[1] "%d gemeinsame Kontakte"
#: include/api.php:1021
#, php-format
msgid "Daily posting limit of %d posts reached. The post was rejected."
msgstr "Das tägliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."
#: include/api.php:1041
#, php-format
msgid "Weekly posting limit of %d posts reached. The post was rejected."
msgstr "Das wöchentliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."
#: include/api.php:1062
#, php-format
msgid "Monthly posting limit of %d posts reached. The post was rejected."
msgstr "Das monatliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."
#: include/diaspora.php:2087
msgid "Sharing notification from Diaspora network"
msgstr "Freigabe-Benachrichtigung von Diaspora"
#: include/diaspora.php:3096
msgid "Attachments:"
msgstr "Anhänge:"
#: include/identity.php:43
msgid "Requested account is not available."
msgstr "Das angefragte Profil ist nicht vorhanden."
#: include/identity.php:52 mod/profile.php:21
msgid "Requested profile is not available."
msgstr "Das angefragte Profil ist nicht vorhanden."
#: include/identity.php:96 include/identity.php:314 include/identity.php:737
msgid "Edit profile"
msgstr "Profil bearbeiten"
#: include/identity.php:254
msgid "Atom feed"
msgstr "Atom-Feed"
#: include/identity.php:285
msgid "Manage/edit profiles"
msgstr "Profile verwalten/editieren"
#: include/identity.php:290 include/identity.php:316 mod/profiles.php:789
msgid "Change profile photo"
msgstr "Profilbild ändern"
#: include/identity.php:291 mod/profiles.php:790
msgid "Create New Profile"
msgstr "Neues Profil anlegen"
#: include/identity.php:301 mod/profiles.php:779
msgid "Profile Image"
msgstr "Profilbild"
#: include/identity.php:304 mod/profiles.php:781
msgid "visible to everybody"
msgstr "sichtbar für jeden"
#: include/identity.php:305 mod/profiles.php:683 mod/profiles.php:782
msgid "Edit visibility"
msgstr "Sichtbarkeit bearbeiten"
#: include/identity.php:333 include/identity.php:628 mod/directory.php:141
#: mod/notifications.php:244
msgid "Gender:"
msgstr "Geschlecht:"
#: include/identity.php:336 include/identity.php:648 mod/directory.php:143
msgid "Status:"
msgstr "Status:"
#: include/identity.php:338 include/identity.php:664 mod/directory.php:145
msgid "Homepage:"
msgstr "Homepage:"
#: include/identity.php:340 include/identity.php:684 mod/directory.php:147
#: mod/contacts.php:640 mod/notifications.php:240
msgid "About:"
msgstr "Über:"
#: include/identity.php:342 mod/contacts.php:638
msgid "XMPP:"
msgstr "XMPP:"
#: include/identity.php:428 mod/contacts.php:55 mod/notifications.php:252
msgid "Network:"
msgstr "Netzwerk:"
#: include/identity.php:457 include/identity.php:547
msgid "g A l F d"
msgstr "l, d. F G \\U\\h\\r"
#: include/identity.php:458 include/identity.php:548
msgid "F d"
msgstr "d. F"
#: include/identity.php:509 include/identity.php:594
msgid "[today]"
msgstr "[heute]"
#: include/identity.php:521
msgid "Birthday Reminders"
msgstr "Geburtstagserinnerungen"
#: include/identity.php:522
msgid "Birthdays this week:"
msgstr "Geburtstage diese Woche:"
#: include/identity.php:581
msgid "[No description]"
msgstr "[keine Beschreibung]"
#: include/identity.php:605
msgid "Event Reminders"
msgstr "Veranstaltungserinnerungen"
#: include/identity.php:606
msgid "Events this week:"
msgstr "Veranstaltungen diese Woche"
#: include/identity.php:626 mod/settings.php:1286
msgid "Full Name:"
msgstr "Kompletter Name:"
#: include/identity.php:633
msgid "j F, Y"
msgstr "j F, Y"
#: include/identity.php:634
msgid "j F"
msgstr "j F"
#: include/identity.php:645
msgid "Age:"
msgstr "Alter:"
#: include/identity.php:656
#, php-format
msgid "for %1$d %2$s"
msgstr "für %1$d %2$s"
#: include/identity.php:660 mod/profiles.php:702
msgid "Sexual Preference:"
msgstr "Sexuelle Vorlieben:"
#: include/identity.php:668 mod/profiles.php:729
msgid "Hometown:"
msgstr "Heimatort:"
#: include/identity.php:672 mod/follow.php:137 mod/contacts.php:642
#: mod/notifications.php:242
msgid "Tags:"
msgstr "Tags:"
#: include/identity.php:676 mod/profiles.php:730
msgid "Political Views:"
msgstr "Politische Ansichten:"
#: include/identity.php:680
msgid "Religion:"
msgstr "Religion:"
#: include/identity.php:688
msgid "Hobbies/Interests:"
msgstr "Hobbies/Interessen:"
#: include/identity.php:692 mod/profiles.php:734
msgid "Likes:"
msgstr "Likes:"
#: include/identity.php:696 mod/profiles.php:735
msgid "Dislikes:"
msgstr "Dislikes:"
#: include/identity.php:700
msgid "Contact information and Social Networks:"
msgstr "Kontaktinformationen und Soziale Netzwerke:"
#: include/identity.php:704
msgid "Musical interests:"
msgstr "Musikalische Interessen:"
#: include/identity.php:708
msgid "Books, literature:"
msgstr "Literatur/Bücher:"
#: include/identity.php:712
msgid "Television:"
msgstr "Fernsehen:"
#: include/identity.php:716
msgid "Film/dance/culture/entertainment:"
msgstr "Filme/Tänze/Kultur/Unterhaltung:"
#: include/identity.php:720
msgid "Love/Romance:"
msgstr "Liebesleben:"
#: include/identity.php:724
msgid "Work/employment:"
msgstr "Arbeit/Beschäftigung:"
#: include/identity.php:728
msgid "School/education:"
msgstr "Schule/Ausbildung:"
#: include/identity.php:733
msgid "Forums:"
msgstr "Foren:"
#: include/identity.php:742 mod/events.php:514
msgid "Basic"
msgstr "Allgemein"
#: include/identity.php:743 mod/contacts.php:878 mod/events.php:515
#: mod/admin.php:980
msgid "Advanced"
msgstr "Erweitert"
#: include/identity.php:769 mod/follow.php:145 mod/contacts.php:844
msgid "Status Messages and Posts"
msgstr "Statusnachrichten und Beiträge"
#: include/identity.php:777 mod/contacts.php:852
msgid "Profile Details"
msgstr "Profildetails"
#: include/identity.php:785 mod/photos.php:89
msgid "Photo Albums"
msgstr "Fotoalben"
#: include/identity.php:824 mod/notes.php:47
msgid "Personal Notes"
msgstr "Persönliche Notizen"
#: include/identity.php:827
msgid "Only You Can See This"
msgstr "Nur Du kannst das sehen"
#: include/text.php:304
msgid "newer"
msgstr "neuer"
#: include/text.php:306
msgid "older"
msgstr "älter"
#: include/text.php:311
msgid "prev"
msgstr "vorige"
#: include/text.php:313
msgid "first"
msgstr "erste"
#: include/text.php:345
msgid "last"
msgstr "letzte"
#: include/text.php:348
msgid "next"
msgstr "nächste"
#: include/text.php:403
msgid "Loading more entries..."
msgstr "lade weitere Einträge..."
#: include/text.php:404
msgid "The end"
msgstr "Das Ende"
#: include/text.php:889
msgid "No contacts"
msgstr "Keine Kontakte"
#: include/text.php:914
#, php-format
msgid "%d Contact"
msgid_plural "%d Contacts"
msgstr[0] "%d Kontakt"
msgstr[1] "%d Kontakte"
#: include/text.php:927
msgid "View Contacts"
msgstr "Kontakte anzeigen"
#: include/text.php:1015 mod/filer.php:31 mod/notes.php:62 mod/editpost.php:99
msgid "Save"
msgstr "Speichern"
#: include/text.php:1078
msgid "poke"
msgstr "anstupsen"
#: include/text.php:1078
msgid "poked"
msgstr "stupste"
#: include/text.php:1079
msgid "ping"
msgstr "anpingen"
#: include/text.php:1079
msgid "pinged"
msgstr "pingte"
#: include/text.php:1080
msgid "prod"
msgstr "knuffen"
#: include/text.php:1080
msgid "prodded"
msgstr "knuffte"
#: include/text.php:1081
msgid "slap"
msgstr "ohrfeigen"
#: include/text.php:1081
msgid "slapped"
msgstr "ohrfeigte"
#: include/text.php:1082
msgid "finger"
msgstr "befummeln"
#: include/text.php:1082
msgid "fingered"
msgstr "befummelte"
#: include/text.php:1083
msgid "rebuff"
msgstr "eine Abfuhr erteilen"
#: include/text.php:1083
msgid "rebuffed"
msgstr "abfuhrerteilte"
#: include/text.php:1097
msgid "happy"
msgstr "glücklich"
#: include/text.php:1098
msgid "sad"
msgstr "traurig"
#: include/text.php:1099
msgid "mellow"
msgstr "sanft"
#: include/text.php:1100
msgid "tired"
msgstr "müde"
#: include/text.php:1101
msgid "perky"
msgstr "frech"
#: include/text.php:1102
msgid "angry"
msgstr "sauer"
#: include/text.php:1103
msgid "stupified"
msgstr "verblüfft"
#: include/text.php:1104
msgid "puzzled"
msgstr "verwirrt"
#: include/text.php:1105
msgid "interested"
msgstr "interessiert"
#: include/text.php:1106
msgid "bitter"
msgstr "verbittert"
#: include/text.php:1107
msgid "cheerful"
msgstr "fröhlich"
#: include/text.php:1108
msgid "alive"
msgstr "lebendig"
#: include/text.php:1109
msgid "annoyed"
msgstr "verärgert"
#: include/text.php:1110
msgid "anxious"
msgstr "unruhig"
#: include/text.php:1111
msgid "cranky"
msgstr "schrullig"
#: include/text.php:1112
msgid "disturbed"
msgstr "verstört"
#: include/text.php:1113
msgid "frustrated"
msgstr "frustriert"
#: include/text.php:1114
msgid "motivated"
msgstr "motiviert"
#: include/text.php:1115
msgid "relaxed"
msgstr "entspannt"
#: include/text.php:1116
msgid "surprised"
msgstr "überrascht"
#: include/text.php:1326 mod/videos.php:384
msgid "View Video"
msgstr "Video ansehen"
#: include/text.php:1358
msgid "bytes"
msgstr "Byte"
#: include/text.php:1390 include/text.php:1402
msgid "Click to open/close"
msgstr "Zum öffnen/schließen klicken"
#: include/text.php:1528
msgid "View on separate page"
msgstr "Auf separater Seite ansehen"
#: include/text.php:1529
msgid "view on separate page"
msgstr "auf separater Seite ansehen"
#: include/text.php:1808
msgid "activity"
msgstr "Aktivität"
#: include/text.php:1810 mod/content.php:623 object/Item.php:446
#: object/Item.php:458
msgid "comment"
msgid_plural "comments"
msgstr[0] "Kommentar"
msgstr[1] "Kommentare"
#: include/text.php:1811
msgid "post"
msgstr "Beitrag"
#: include/text.php:1979
msgid "Item filed"
msgstr "Beitrag abgelegt"
#: include/Contact.php:450
msgid "Drop Contact"
msgstr "Kontakt löschen"
#: include/Contact.php:827
msgid "Organisation"
msgstr "Organisation"
#: include/Contact.php:830
msgid "News"
msgstr "Nachrichten"
#: include/Contact.php:833
msgid "Forum"
msgstr "Forum"
#: include/items.php:1584 mod/dfrn_confirm.php:735 mod/dfrn_request.php:754
msgid "[Name Withheld]"
msgstr "[Name unterdrückt]"
#: include/items.php:1939 mod/notice.php:15 mod/viewsrc.php:15
#: mod/display.php:103 mod/display.php:279 mod/display.php:484
#: mod/admin.php:235 mod/admin.php:1492 mod/admin.php:1738
msgid "Item not found."
msgstr "Beitrag nicht gefunden."
#: include/items.php:1978
msgid "Do you really want to delete this item?"
msgstr "Möchtest Du wirklich dieses Item löschen?"
#: include/items.php:1980 mod/api.php:105 mod/follow.php:113
#: mod/register.php:245 mod/settings.php:1171 mod/settings.php:1177
#: mod/settings.php:1184 mod/settings.php:1188 mod/settings.php:1193
#: mod/settings.php:1198 mod/settings.php:1203 mod/settings.php:1208
#: mod/settings.php:1234 mod/settings.php:1235 mod/settings.php:1236
#: mod/settings.php:1237 mod/settings.php:1238 mod/suggest.php:29
#: mod/contacts.php:452 mod/message.php:206 mod/dfrn_request.php:875
#: mod/profiles.php:640 mod/profiles.php:643 mod/profiles.php:669
msgid "Yes"
msgstr "Ja"
#: include/items.php:2143 mod/allfriends.php:12 mod/api.php:26 mod/api.php:31
#: mod/attach.php:33 mod/common.php:18 mod/crepair.php:102 mod/delegate.php:12
#: mod/dirfind.php:11 mod/follow.php:11 mod/follow.php:74 mod/follow.php:158
#: mod/fsuggest.php:79 mod/group.php:19 mod/invite.php:15 mod/invite.php:103
#: mod/manage.php:98 mod/mood.php:115 mod/nogroup.php:27 mod/notes.php:23
#: mod/ostatus_subscribe.php:9 mod/poke.php:154 mod/profile_photo.php:19
#: mod/profile_photo.php:180 mod/profile_photo.php:191
#: mod/profile_photo.php:204 mod/register.php:42 mod/regmod.php:113
#: mod/repair_ostatus.php:9 mod/settings.php:22 mod/settings.php:130
#: mod/settings.php:668 mod/suggest.php:58 mod/uimport.php:24
#: mod/wall_attach.php:67 mod/wall_attach.php:70 mod/cal.php:299
#: mod/contacts.php:360 mod/dfrn_confirm.php:61 mod/editpost.php:10
#: mod/events.php:195 mod/item.php:193 mod/item.php:205 mod/message.php:46
#: mod/message.php:171 mod/wall_upload.php:77 mod/wall_upload.php:80
#: mod/wallmessage.php:9 mod/wallmessage.php:33 mod/wallmessage.php:73
#: mod/wallmessage.php:97 mod/photos.php:161 mod/photos.php:1092
#: mod/profiles.php:166 mod/profiles.php:607 mod/display.php:481
#: mod/viewcontacts.php:46 mod/network.php:4 mod/notifications.php:71
#: index.php:407
msgid "Permission denied."
msgstr "Zugriff verweigert."
#: mod/home.php:35
#: include/items.php:2248
msgid "Archives"
msgstr "Archiv"
#: include/dbstructure.php:33
#, php-format
msgid ""
"\n"
"\t\t\tThe friendica developers released update %s recently,\n"
"\t\t\tbut when I tried to install it, something went terribly wrong.\n"
"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n"
"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."
msgstr "\nDie Friendica-Entwickler haben vor kurzem das Update %s veröffentlicht, aber bei der Installation ging etwas schrecklich schief.\n\nDas Problem sollte so schnell wie möglich gelöst werden, aber ich schaffe es nicht alleine. Bitte kontaktiere einen Friendica-Entwickler falls Du mir nicht alleine helfen kannst. Meine Datenbank könnte ungültig sein."
#: include/dbstructure.php:38
#, php-format
msgid ""
"The error message is\n"
"[pre]%s[/pre]"
msgstr "Die Fehlermeldung lautet\n[pre]%s[/pre]"
#: include/dbstructure.php:195
msgid "Errors encountered creating database tables."
msgstr "Fehler aufgetreten während der Erzeugung der Datenbanktabellen."
#: include/dbstructure.php:329 include/dbstructure.php:337
#: include/dbstructure.php:345 include/dbstructure.php:350
#: include/dbstructure.php:355
msgid "Errors encountered performing database changes."
msgstr "Es sind Fehler beim Bearbeiten der Datenbank aufgetreten."
#: include/network.php:619
msgid "view full size"
msgstr "Volle Größe anzeigen"
#: mod/allfriends.php:46
msgid "No friends to display."
msgstr "Keine Kontakte zum Anzeigen."
#: mod/api.php:76 mod/api.php:102
msgid "Authorize application connection"
msgstr "Verbindung der Applikation autorisieren"
#: mod/api.php:77
msgid "Return to your app and insert this Securty Code:"
msgstr "Gehe zu Deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:"
#: mod/api.php:89
msgid "Please login to continue."
msgstr "Bitte melde Dich an um fortzufahren."
#: mod/api.php:104
msgid ""
"Do you want to authorize this application to access your posts and contacts,"
" and/or create new posts for you?"
msgstr "Möchtest Du dieser Anwendung den Zugriff auf Deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in Deinem Namen gestatten?"
#: mod/api.php:106 mod/follow.php:113 mod/register.php:246
#: mod/settings.php:1171 mod/settings.php:1177 mod/settings.php:1184
#: mod/settings.php:1188 mod/settings.php:1193 mod/settings.php:1198
#: mod/settings.php:1203 mod/settings.php:1208 mod/settings.php:1234
#: mod/settings.php:1235 mod/settings.php:1236 mod/settings.php:1237
#: mod/settings.php:1238 mod/dfrn_request.php:875 mod/profiles.php:640
#: mod/profiles.php:644 mod/profiles.php:669
msgid "No"
msgstr "Nein"
#: mod/apps.php:7 index.php:248
msgid "You must be logged in to use addons. "
msgstr "Sie müssen angemeldet sein um Addons benutzen zu können."
#: mod/apps.php:11
msgid "Applications"
msgstr "Anwendungen"
#: mod/apps.php:14
msgid "No installed applications."
msgstr "Keine Applikationen installiert."
#: mod/attach.php:8
msgid "Item not available."
msgstr "Beitrag nicht verfügbar."
#: mod/attach.php:20
msgid "Item was not found."
msgstr "Beitrag konnte nicht gefunden werden."
#: mod/babel.php:17
msgid "Source (bbcode) text:"
msgstr "Quelle (bbcode) Text:"
#: mod/babel.php:23
msgid "Source (Diaspora) text to convert to BBcode:"
msgstr "Eingabe (Diaspora) nach BBCode zu konvertierender Text:"
#: mod/babel.php:31
msgid "Source input: "
msgstr "Originaltext:"
#: mod/babel.php:35
msgid "bb2html (raw HTML): "
msgstr "bb2html (reines HTML): "
#: mod/babel.php:39
msgid "bb2html: "
msgstr "bb2html: "
#: mod/babel.php:43
msgid "bb2html2bb: "
msgstr "bb2html2bb: "
#: mod/babel.php:47
msgid "bb2md: "
msgstr "bb2md: "
#: mod/babel.php:51
msgid "bb2md2html: "
msgstr "bb2md2html: "
#: mod/babel.php:55
msgid "bb2dia2bb: "
msgstr "bb2dia2bb: "
#: mod/babel.php:59
msgid "bb2md2html2bb: "
msgstr "bb2md2html2bb: "
#: mod/babel.php:69
msgid "Source input (Diaspora format): "
msgstr "Originaltext (Diaspora Format): "
#: mod/babel.php:74
msgid "diaspora2bb: "
msgstr "diaspora2bb: "
#: mod/bookmarklet.php:41
msgid "The post was created"
msgstr "Der Beitrag wurde angelegt"
#: mod/common.php:91
msgid "No contacts in common."
msgstr "Keine gemeinsamen Kontakte."
#: mod/common.php:141 mod/contacts.php:871
msgid "Common Friends"
msgstr "Gemeinsame Kontakte"
#: mod/community.php:22 mod/directory.php:37 mod/videos.php:198
#: mod/photos.php:964 mod/dfrn_request.php:799 mod/display.php:200
#: mod/viewcontacts.php:36 mod/search.php:93 mod/search.php:99
msgid "Public access denied."
msgstr "Öffentlicher Zugriff verweigert."
#: mod/community.php:27
msgid "Not available."
msgstr "Nicht verfügbar."
#: mod/community.php:66 mod/community.php:75 mod/search.php:224
msgid "No results."
msgstr "Keine Ergebnisse."
#: mod/content.php:119 mod/network.php:468
msgid "No such group"
msgstr "Es gibt keine solche Gruppe"
#: mod/content.php:130 mod/group.php:203 mod/network.php:495
msgid "Group is empty"
msgstr "Gruppe ist leer"
#: mod/content.php:135 mod/network.php:499
#, php-format
msgid "Group: %s"
msgstr "Gruppe: %s"
#: mod/content.php:325 object/Item.php:96
msgid "This entry was edited"
msgstr "Dieser Beitrag wurde bearbeitet."
#: mod/content.php:621 object/Item.php:444
#, php-format
msgid "%d comment"
msgid_plural "%d comments"
msgstr[0] "%d Kommentar"
msgstr[1] "%d Kommentare"
#: mod/content.php:638 mod/photos.php:1402 object/Item.php:117
msgid "Private Message"
msgstr "Private Nachricht"
#: mod/content.php:702 mod/photos.php:1590 object/Item.php:274
msgid "I like this (toggle)"
msgstr "Ich mag das (toggle)"
#: mod/content.php:702 object/Item.php:274
msgid "like"
msgstr "mag ich"
#: mod/content.php:703 mod/photos.php:1591 object/Item.php:275
msgid "I don't like this (toggle)"
msgstr "Ich mag das nicht (toggle)"
#: mod/content.php:703 object/Item.php:275
msgid "dislike"
msgstr "mag ich nicht"
#: mod/content.php:705 object/Item.php:278
msgid "Share this"
msgstr "Weitersagen"
#: mod/content.php:705 object/Item.php:278
msgid "share"
msgstr "Teilen"
#: mod/content.php:725 mod/photos.php:1609 mod/photos.php:1657
#: mod/photos.php:1743 object/Item.php:729
msgid "This is you"
msgstr "Das bist Du"
#: mod/content.php:727 mod/content.php:950 mod/photos.php:1611
#: mod/photos.php:1659 mod/photos.php:1745 object/Item.php:418
#: object/Item.php:731
msgid "Comment"
msgstr "Kommentar"
#: mod/content.php:728 mod/crepair.php:156 mod/fsuggest.php:108
#: mod/invite.php:142 mod/localtime.php:45 mod/manage.php:145 mod/mood.php:138
#: mod/poke.php:203 mod/contacts.php:585 mod/events.php:513
#: mod/message.php:338 mod/message.php:521 mod/photos.php:1124
#: mod/photos.php:1246 mod/photos.php:1562 mod/photos.php:1612
#: mod/photos.php:1660 mod/photos.php:1746 mod/install.php:276
#: mod/install.php:316 mod/profiles.php:680 object/Item.php:732
#: view/theme/quattro/config.php:67 view/theme/vier/config.php:112
#: view/theme/duepuntozero/config.php:61 view/theme/clean/config.php:87
#: view/theme/frio/config.php:64
msgid "Submit"
msgstr "Senden"
#: mod/content.php:729 object/Item.php:733
msgid "Bold"
msgstr "Fett"
#: mod/content.php:730 object/Item.php:734
msgid "Italic"
msgstr "Kursiv"
#: mod/content.php:731 object/Item.php:735
msgid "Underline"
msgstr "Unterstrichen"
#: mod/content.php:732 object/Item.php:736
msgid "Quote"
msgstr "Zitat"
#: mod/content.php:733 object/Item.php:737
msgid "Code"
msgstr "Code"
#: mod/content.php:734 object/Item.php:738
msgid "Image"
msgstr "Bild"
#: mod/content.php:735 object/Item.php:739
msgid "Link"
msgstr "Link"
#: mod/content.php:736 object/Item.php:740
msgid "Video"
msgstr "Video"
#: mod/content.php:746 mod/settings.php:743 object/Item.php:122
#: object/Item.php:124
msgid "Edit"
msgstr "Bearbeiten"
#: mod/content.php:772 object/Item.php:238
msgid "add star"
msgstr "markieren"
#: mod/content.php:773 object/Item.php:239
msgid "remove star"
msgstr "Markierung entfernen"
#: mod/content.php:774 object/Item.php:240
msgid "toggle star status"
msgstr "Markierung umschalten"
#: mod/content.php:777 object/Item.php:243
msgid "starred"
msgstr "markiert"
#: mod/content.php:778 mod/content.php:800 object/Item.php:263
msgid "add tag"
msgstr "Tag hinzufügen"
#: mod/content.php:789 object/Item.php:251
msgid "ignore thread"
msgstr "Thread ignorieren"
#: mod/content.php:790 object/Item.php:252
msgid "unignore thread"
msgstr "Thread nicht mehr ignorieren"
#: mod/content.php:791 object/Item.php:253
msgid "toggle ignore status"
msgstr "Ignoriert-Status ein-/ausschalten"
#: mod/content.php:794 mod/ostatus_subscribe.php:73 object/Item.php:256
msgid "ignored"
msgstr "Ignoriert"
#: mod/content.php:805 object/Item.php:141
msgid "save to folder"
msgstr "In Ordner speichern"
#: mod/content.php:853 object/Item.php:212
msgid "I will attend"
msgstr "Ich werde teilnehmen"
#: mod/content.php:853 object/Item.php:212
msgid "I will not attend"
msgstr "Ich werde nicht teilnehmen"
#: mod/content.php:853 object/Item.php:212
msgid "I might attend"
msgstr "Ich werde eventuell teilnehmen"
#: mod/content.php:917 object/Item.php:384
msgid "to"
msgstr "zu"
#: mod/content.php:918 object/Item.php:386
msgid "Wall-to-Wall"
msgstr "Wall-to-Wall"
#: mod/content.php:919 object/Item.php:387
msgid "via Wall-To-Wall:"
msgstr "via Wall-To-Wall:"
#: mod/credits.php:16
msgid "Credits"
msgstr "Credits"
#: mod/credits.php:17
msgid ""
"Friendica is a community project, that would not be possible without the "
"help of many people. Here is a list of those who have contributed to the "
"code or the translation of Friendica. Thank you all!"
msgstr "Friendica ist ein Gemeinschaftsprojekt, das nicht ohne die Hilfe vieler Personen möglich wäre. Hier ist eine Aufzählung der Personen, die zum Code oder der Übersetzung beigetragen haben. Dank an alle !"
#: mod/crepair.php:89
msgid "Contact settings applied."
msgstr "Einstellungen zum Kontakt angewandt."
#: mod/crepair.php:91
msgid "Contact update failed."
msgstr "Konnte den Kontakt nicht aktualisieren."
#: mod/crepair.php:116 mod/fsuggest.php:21 mod/fsuggest.php:93
#: mod/dfrn_confirm.php:126
msgid "Contact not found."
msgstr "Kontakt nicht gefunden."
#: mod/crepair.php:122
msgid ""
"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
" information your communications with this contact may stop working."
msgstr "<strong>ACHTUNG: Das sind Experten-Einstellungen!</strong> Wenn Du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr."
#: mod/crepair.php:123
msgid ""
"Please use your browser 'Back' button <strong>now</strong> if you are "
"uncertain what to do on this page."
msgstr "Bitte nutze den Zurück-Button Deines Browsers <strong>jetzt</strong>, wenn Du Dir unsicher bist, was Du tun willst."
#: mod/crepair.php:136 mod/crepair.php:138
msgid "No mirroring"
msgstr "Kein Spiegeln"
#: mod/crepair.php:136
msgid "Mirror as forwarded posting"
msgstr "Spiegeln als weitergeleitete Beiträge"
#: mod/crepair.php:136 mod/crepair.php:138
msgid "Mirror as my own posting"
msgstr "Spiegeln als meine eigenen Beiträge"
#: mod/crepair.php:152
msgid "Return to contact editor"
msgstr "Zurück zum Kontakteditor"
#: mod/crepair.php:154
msgid "Refetch contact data"
msgstr "Kontaktdaten neu laden"
#: mod/crepair.php:158
msgid "Remote Self"
msgstr "Entfernte Konten"
#: mod/crepair.php:161
msgid "Mirror postings from this contact"
msgstr "Spiegle Beiträge dieses Kontakts"
#: mod/crepair.php:163
msgid ""
"Mark this contact as remote_self, this will cause friendica to repost new "
"entries from this contact."
msgstr "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all Deine Kontakte zu senden."
#: mod/crepair.php:167 mod/settings.php:683 mod/settings.php:709
#: mod/admin.php:1417 mod/admin.php:1430 mod/admin.php:1443 mod/admin.php:1459
msgid "Name"
msgstr "Name"
#: mod/crepair.php:168
msgid "Account Nickname"
msgstr "Konto-Spitzname"
#: mod/crepair.php:169
msgid "@Tagname - overrides Name/Nickname"
msgstr "@Tagname - überschreibt Name/Spitzname"
#: mod/crepair.php:170
msgid "Account URL"
msgstr "Konto-URL"
#: mod/crepair.php:171
msgid "Friend Request URL"
msgstr "URL für Kontaktschaftsanfragen"
#: mod/crepair.php:172
msgid "Friend Confirm URL"
msgstr "URL für Bestätigungen von Kontaktanfragen"
#: mod/crepair.php:173
msgid "Notification Endpoint URL"
msgstr "URL-Endpunkt für Benachrichtigungen"
#: mod/crepair.php:174
msgid "Poll/Feed URL"
msgstr "Pull/Feed-URL"
#: mod/crepair.php:175
msgid "New photo from this URL"
msgstr "Neues Foto von dieser URL"
#: mod/delegate.php:101
msgid "No potential page delegates located."
msgstr "Keine potentiellen Bevollmächtigten für die Seite gefunden."
#: mod/delegate.php:132
msgid ""
"Delegates are able to manage all aspects of this account/page except for "
"basic account settings. Please do not delegate your personal account to "
"anybody that you do not trust completely."
msgstr "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für Deinen privaten Account, dem Du nicht absolut vertraust!"
#: mod/delegate.php:133
msgid "Existing Page Managers"
msgstr "Vorhandene Seitenmanager"
#: mod/delegate.php:135
msgid "Existing Page Delegates"
msgstr "Vorhandene Bevollmächtigte für die Seite"
#: mod/delegate.php:137
msgid "Potential Delegates"
msgstr "Potentielle Bevollmächtigte"
#: mod/delegate.php:139 mod/tagrm.php:95
msgid "Remove"
msgstr "Entfernen"
#: mod/delegate.php:140
msgid "Add"
msgstr "Hinzufügen"
#: mod/delegate.php:141
msgid "No entries."
msgstr "Keine Einträge."
#: mod/dfrn_poll.php:104 mod/dfrn_poll.php:539
#, php-format
msgid "%1$s welcomes %2$s"
msgstr "%1$s heißt %2$s herzlich willkommen"
#: mod/directory.php:199 view/theme/vier/theme.php:196
msgid "Global Directory"
msgstr "Weltweites Verzeichnis"
#: mod/directory.php:201
msgid "Find on this site"
msgstr "Auf diesem Server suchen"
#: mod/directory.php:203
msgid "Results for:"
msgstr "Ergebnisse für:"
#: mod/directory.php:205
msgid "Site Directory"
msgstr "Verzeichnis"
#: mod/directory.php:212
msgid "No entries (some entries may be hidden)."
msgstr "Keine Einträge (einige Einträge könnten versteckt sein)."
#: mod/dirfind.php:37
#, php-format
msgid "People Search - %s"
msgstr "Personensuche - %s"
#: mod/dirfind.php:48
#, php-format
msgid "Forum Search - %s"
msgstr "Forensuche - %s"
#: mod/dirfind.php:245 mod/match.php:109
msgid "No matches"
msgstr "Keine Übereinstimmungen"
#: mod/filer.php:30
msgid "- select -"
msgstr "- auswählen -"
#: mod/follow.php:19 mod/dfrn_request.php:888
msgid "Submit Request"
msgstr "Anfrage abschicken"
#: mod/follow.php:30
msgid "You already added this contact."
msgstr "Du hast den Kontakt bereits hinzugefügt."
#: mod/follow.php:39
msgid "Diaspora support isn't enabled. Contact can't be added."
msgstr "Diaspora Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden."
#: mod/follow.php:46
msgid "OStatus support is disabled. Contact can't be added."
msgstr "OStatus Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden."
#: mod/follow.php:53
msgid "The network type couldn't be detected. Contact can't be added."
msgstr "Der Netzwerktype wurde nicht erkannt. Der Kontakt kann nicht hinzugefügt werden."
#: mod/follow.php:112 mod/dfrn_request.php:874
msgid "Please answer the following:"
msgstr "Bitte beantworte folgendes:"
#: mod/follow.php:113 mod/dfrn_request.php:875
#, php-format
msgid "Does %s know you?"
msgstr "Kennt %s Dich?"
#: mod/follow.php:114 mod/dfrn_request.php:879
msgid "Add a personal note:"
msgstr "Eine persönliche Notiz beifügen:"
#: mod/follow.php:120 mod/dfrn_request.php:885
msgid "Your Identity Address:"
msgstr "Adresse Deines Profils:"
#: mod/follow.php:129 mod/contacts.php:632 mod/notifications.php:249
msgid "Profile URL"
msgstr "Profil URL"
#: mod/follow.php:186
msgid "Contact added"
msgstr "Kontakt hinzugefügt"
#: mod/fsuggest.php:64
msgid "Friend suggestion sent."
msgstr "Kontaktvorschlag gesendet."
#: mod/fsuggest.php:98
msgid "Suggest Friends"
msgstr "Kontakte vorschlagen"
#: mod/fsuggest.php:100
#, php-format
msgid "Suggest a friend for %s"
msgstr "Schlage %s einen Kontakt vor"
#: mod/group.php:29
msgid "Group created."
msgstr "Gruppe erstellt."
#: mod/group.php:35
msgid "Could not create group."
msgstr "Konnte die Gruppe nicht erstellen."
#: mod/group.php:49 mod/group.php:150
msgid "Group not found."
msgstr "Gruppe nicht gefunden."
#: mod/group.php:63
msgid "Group name changed."
msgstr "Gruppenname geändert."
#: mod/group.php:76 mod/profperm.php:20 index.php:406
msgid "Permission denied"
msgstr "Zugriff verweigert"
#: mod/group.php:91
msgid "Save Group"
msgstr "Gruppe speichern"
#: mod/group.php:97
msgid "Create a group of contacts/friends."
msgstr "Eine Kontaktgruppe anlegen."
#: mod/group.php:122
msgid "Group removed."
msgstr "Gruppe entfernt."
#: mod/group.php:124
msgid "Unable to remove group."
msgstr "Konnte die Gruppe nicht entfernen."
#: mod/group.php:187
msgid "Group Editor"
msgstr "Gruppeneditor"
#: mod/group.php:200
msgid "Members"
msgstr "Mitglieder"
#: mod/group.php:202 mod/contacts.php:700
msgid "All Contacts"
msgstr "Alle Kontakte"
#: mod/group.php:233 mod/profperm.php:107
msgid "Click on a contact to add or remove."
msgstr "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen"
#: mod/hcard.php:11
msgid "No profile"
msgstr "Kein Profil"
#: mod/help.php:41
msgid "Help:"
msgstr "Hilfe:"
#: mod/help.php:53 mod/fetch.php:12 mod/fetch.php:39 mod/fetch.php:48
#: mod/p.php:16 mod/p.php:43 mod/p.php:52 index.php:292
msgid "Not Found"
msgstr "Nicht gefunden"
#: mod/help.php:56 index.php:295
msgid "Page not found."
msgstr "Seite nicht gefunden."
#: mod/home.php:39
#, php-format
msgid "Welcome to %s"
msgstr "Willkommen zu %s"
#: mod/notify.php:60
msgid "No more system notifications."
msgstr "Keine weiteren Systembenachrichtigungen."
#: mod/invite.php:28
msgid "Total invitation limit exceeded."
msgstr "Limit für Einladungen erreicht."
#: mod/notify.php:64 mod/notifications.php:111
msgid "System Notifications"
msgstr "Systembenachrichtigungen"
#: mod/search.php:25 mod/network.php:191
msgid "Remove term"
msgstr "Begriff entfernen"
#: mod/search.php:93 mod/search.php:99 mod/community.php:22
#: mod/directory.php:37 mod/display.php:200 mod/photos.php:944
#: mod/videos.php:194 mod/dfrn_request.php:791 mod/viewcontacts.php:35
msgid "Public access denied."
msgstr "Öffentlicher Zugriff verweigert."
#: mod/search.php:100
msgid "Only logged in users are permitted to perform a search."
msgstr "Nur eingeloggten Benutzern ist das Suchen gestattet."
#: mod/search.php:124
msgid "Too Many Requests"
msgstr "Zu viele Abfragen"
#: mod/search.php:125
msgid "Only one search per minute is permitted for not logged in users."
msgstr "Es ist nur eine Suchanfrage pro Minute für nicht eingeloggte Benutzer gestattet."
#: mod/search.php:224 mod/community.php:66 mod/community.php:75
msgid "No results."
msgstr "Keine Ergebnisse."
#: mod/search.php:230
#: mod/invite.php:51
#, php-format
msgid "Items tagged with: %s"
msgstr "Beiträge die mit %s getaggt sind"
msgid "%s : Not a valid email address."
msgstr "%s: Keine gültige Email Adresse."
#: mod/search.php:232 mod/contacts.php:797 mod/network.php:146
#: mod/invite.php:76
msgid "Please join us on Friendica"
msgstr "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein"
#: mod/invite.php:87
msgid "Invitation limit exceeded. Please contact your site administrator."
msgstr "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite."
#: mod/invite.php:91
#, php-format
msgid "Results for: %s"
msgstr "Ergebnisse für: %s"
msgid "%s : Message delivery failed."
msgstr "%s: Zustellung der Nachricht fehlgeschlagen."
#: mod/friendica.php:70
msgid "This is Friendica, version"
msgstr "Dies ist Friendica, Version"
#: mod/invite.php:95
#, php-format
msgid "%d message sent."
msgid_plural "%d messages sent."
msgstr[0] "%d Nachricht gesendet."
msgstr[1] "%d Nachrichten gesendet."
#: mod/friendica.php:71
msgid "running at web location"
msgstr "die unter folgender Webadresse zu finden ist"
#: mod/invite.php:114
msgid "You have no more invitations available"
msgstr "Du hast keine weiteren Einladungen"
#: mod/friendica.php:73
#: mod/invite.php:122
#, php-format
msgid ""
"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
"more about the Friendica project."
msgstr "Bitte besuche <a href=\"http://friendica.com\">Friendica.com</a>, um mehr über das Friendica Projekt zu erfahren."
"Visit %s for a list of public sites that you can join. Friendica members on "
"other sites can all connect with each other, as well as with members of many"
" other social networks."
msgstr "Besuche %s für eine Liste der öffentlichen Server, denen Du beitreten kannst. Friendica Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer Sozialer Netzwerke."
#: mod/friendica.php:75
msgid "Bug reports and issues: please visit"
msgstr "Probleme oder Fehler gefunden? Bitte besuche"
#: mod/friendica.php:75
msgid "the bugtracker at github"
msgstr "den Bugtracker auf github"
#: mod/friendica.php:76
#: mod/invite.php:124
#, php-format
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"
"To accept this invitation, please visit and register at %s or any other "
"public Friendica website."
msgstr "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere Dich bitte bei %s oder einer anderen öffentlichen Friendica Website."
#: mod/friendica.php:90
msgid "Installed plugins/addons/apps:"
msgstr "Installierte Plugins/Erweiterungen/Apps:"
#: mod/invite.php:125
#, php-format
msgid ""
"Friendica sites all inter-connect to create a huge privacy-enhanced social "
"web that is owned and controlled by its members. They can also connect with "
"many traditional social networks. See %s for a list of alternate Friendica "
"sites you can join."
msgstr "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen Du beitreten kannst."
#: mod/friendica.php:103
msgid "No installed plugins/addons/apps"
msgstr "Keine Plugins/Erweiterungen/Apps installiert"
#: mod/invite.php:128
msgid ""
"Our apologies. This system is not currently configured to connect with other"
" public sites or invite members."
msgstr "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen."
#: mod/invite.php:134
msgid "Send invitations"
msgstr "Einladungen senden"
#: mod/invite.php:135
msgid "Enter email addresses, one per line:"
msgstr "E-Mail-Adressen eingeben, eine pro Zeile:"
#: mod/invite.php:136 mod/message.php:332 mod/message.php:515
#: mod/wallmessage.php:135
msgid "Your message:"
msgstr "Deine Nachricht:"
#: mod/invite.php:137
msgid ""
"You are cordially invited to join me and other close friends on Friendica - "
"and help us to create a better social web."
msgstr "Du bist herzlich dazu eingeladen, Dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen."
#: mod/invite.php:139
msgid "You will need to supply this invitation code: $invite_code"
msgstr "Du benötigst den folgenden Einladungscode: $invite_code"
#: mod/invite.php:139
msgid ""
"Once you have registered, please connect with me via my profile page at:"
msgstr "Sobald Du registriert bist, kontaktiere mich bitte auf meiner Profilseite:"
#: mod/invite.php:141
msgid ""
"For more information about the Friendica project and why we feel it is "
"important, please visit http://friendica.com"
msgstr "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendica.com"
#: mod/localtime.php:24
msgid "Time Conversion"
msgstr "Zeitumrechnung"
#: mod/localtime.php:26
msgid ""
"Friendica provides this service for sharing events with other networks and "
"friends in unknown timezones."
msgstr "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann."
#: mod/localtime.php:30
#, php-format
msgid "UTC time: %s"
msgstr "UTC Zeit: %s"
#: mod/localtime.php:33
#, php-format
msgid "Current timezone: %s"
msgstr "Aktuelle Zeitzone: %s"
#: mod/localtime.php:36
#, php-format
msgid "Converted localtime: %s"
msgstr "Umgerechnete lokale Zeit: %s"
#: mod/localtime.php:41
msgid "Please select your timezone:"
msgstr "Bitte wähle Deine Zeitzone:"
#: mod/lockview.php:32 mod/lockview.php:40
msgid "Remote privacy information not available."
msgstr "Entfernte Privatsphäreneinstellungen nicht verfügbar."
#: mod/lockview.php:49
msgid "Visible to:"
msgstr "Sichtbar für:"
#: mod/lostpass.php:19
msgid "No valid account found."
@ -3213,7 +3873,7 @@ msgstr "Kein gültiges Konto gefunden."
msgid "Password reset request issued. Check your email."
msgstr "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe Deine E-Mail."
#: mod/lostpass.php:42
#: mod/lostpass.php:41
#, php-format
msgid ""
"\n"
@ -3229,7 +3889,7 @@ msgid ""
"\t\tissued this request."
msgstr "\nHallo %1$s,\n\nAuf \"%2$s\" ist eine Anfrage auf das Zurücksetzen Deines Passworts gestellt\nworden. Um diese Anfrage zu verifizieren, folge bitte dem unten stehenden\nLink oder kopiere und füge ihn in die Adressleiste Deines Browsers ein.\n\nSolltest Du die Anfrage NICHT gemacht haben, ignoriere und/oder lösche diese\nE-Mail bitte.\n\nDein Passwort wird nicht geändert, solange wir nicht verifiziert haben, dass\nDu diese Änderung angefragt hast."
#: mod/lostpass.php:53
#: mod/lostpass.php:52
#, php-format
msgid ""
"\n"
@ -3246,38 +3906,38 @@ msgid ""
"\t\tLogin Name:\t%3$s"
msgstr "\nUm Deine Identität zu verifizieren, folge bitte dem folgenden Link:\n\n%1$s\n\nDu wirst eine weitere E-Mail mit Deinem neuen Passwort erhalten. Sobald Du Dich\nangemeldet hast, kannst Du Dein Passwort in den Einstellungen ändern.\n\nDie Anmeldedetails sind die folgenden:\n\nAdresse der Seite:\t%2$s\nBenutzername:\t%3$s"
#: mod/lostpass.php:72
#: mod/lostpass.php:71
#, php-format
msgid "Password reset requested at %s"
msgstr "Anfrage zum Zurücksetzen des Passworts auf %s erhalten"
#: mod/lostpass.php:92
#: mod/lostpass.php:91
msgid ""
"Request could not be verified. (You may have previously submitted it.) "
"Password reset failed."
msgstr "Anfrage konnte nicht verifiziert werden. (Eventuell hast Du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert."
#: mod/lostpass.php:109 boot.php:1807
#: mod/lostpass.php:110 boot.php:1848
msgid "Password Reset"
msgstr "Passwort zurücksetzen"
#: mod/lostpass.php:110
#: mod/lostpass.php:111
msgid "Your password has been reset as requested."
msgstr "Dein Passwort wurde wie gewünscht zurückgesetzt."
#: mod/lostpass.php:111
#: mod/lostpass.php:112
msgid "Your new password is"
msgstr "Dein neues Passwort lautet"
#: mod/lostpass.php:112
#: mod/lostpass.php:113
msgid "Save or copy your new password - and then"
msgstr "Speichere oder kopiere Dein neues Passwort - und dann"
#: mod/lostpass.php:113
#: mod/lostpass.php:114
msgid "click here to login"
msgstr "hier klicken, um Dich anzumelden"
#: mod/lostpass.php:114
#: mod/lostpass.php:115
msgid ""
"Your password may be changed from the <em>Settings</em> page after "
"successful login."
@ -3323,7 +3983,7 @@ msgid ""
"your email for further instructions."
msgstr "Gib Deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden Dir dann weitere Informationen per Mail zugesendet."
#: mod/lostpass.php:161 boot.php:1795
#: mod/lostpass.php:161 boot.php:1836
msgid "Nickname or Email: "
msgstr "Spitzname oder E-Mail:"
@ -3331,363 +3991,43 @@ msgstr "Spitzname oder E-Mail:"
msgid "Reset"
msgstr "Zurücksetzen"
#: mod/hcard.php:10
msgid "No profile"
msgstr "Kein Profil"
#: mod/maintenance.php:9
msgid "System down for maintenance"
msgstr "System zur Wartung abgeschaltet"
#: mod/help.php:41
msgid "Help:"
msgstr "Hilfe:"
#: mod/manage.php:141
msgid "Manage Identities and/or Pages"
msgstr "Verwalte Identitäten und/oder Seiten"
#: mod/help.php:53 mod/p.php:16 mod/p.php:43 mod/p.php:52 mod/fetch.php:12
#: mod/fetch.php:39 mod/fetch.php:48 index.php:288
msgid "Not Found"
msgstr "Nicht gefunden"
#: mod/help.php:56 index.php:291
msgid "Page not found."
msgstr "Seite nicht gefunden."
#: mod/lockview.php:31 mod/lockview.php:39
msgid "Remote privacy information not available."
msgstr "Entfernte Privatsphäreneinstellungen nicht verfügbar."
#: mod/lockview.php:48
msgid "Visible to:"
msgstr "Sichtbar für:"
#: mod/openid.php:24
msgid "OpenID protocol error. No ID returned."
msgstr "OpenID Protokollfehler. Keine ID zurückgegeben."
#: mod/openid.php:60
#: mod/manage.php:142
msgid ""
"Account not found and OpenID registration is not permitted on this site."
msgstr "Nutzerkonto wurde nicht gefunden und OpenID-Registrierung ist auf diesem Server nicht gestattet."
"Toggle between different identities or community/group pages which share "
"your account details or which you have been granted \"manage\" permissions"
msgstr "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die Deine Kontoinformationen teilen oder zu denen Du „Verwalten“-Befugnisse bekommen hast."
#: mod/uimport.php:50 mod/register.php:198
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/manage.php:143
msgid "Select an identity to manage: "
msgstr "Wähle eine Identität zum Verwalten aus: "
#: mod/uimport.php:64 mod/register.php:295
msgid "Import"
msgstr "Import"
#: mod/match.php:35
msgid "No keywords to match. Please add keywords to your default profile."
msgstr "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu Deinem Standardprofil hinzu."
#: mod/uimport.php:66
msgid "Move account"
msgstr "Account umziehen"
#: mod/match.php:88
msgid "is interested in:"
msgstr "ist interessiert an:"
#: mod/uimport.php:67
msgid "You can import an account from another Friendica server."
msgstr "Du kannst einen Account von einem anderen Friendica Server importieren."
#: mod/match.php:102
msgid "Profile Match"
msgstr "Profilübereinstimmungen"
#: mod/uimport.php:68
msgid ""
"You need to export your account from the old server and upload it here. We "
"will recreate your old account here with all your contacts. We will try also"
" to inform your friends that you moved here."
msgstr "Du musst Deinen Account vom alten Server exportieren und hier hochladen. Wir stellen Deinen alten Account mit all Deinen Kontakten wieder her. Wir werden auch versuchen all Deine Kontakte darüber zu informieren, dass Du hierher umgezogen bist."
#: mod/mood.php:134
msgid "Mood"
msgstr "Stimmung"
#: mod/uimport.php:69
msgid ""
"This feature is experimental. We can't import contacts from the OStatus "
"network (GNU Social/Statusnet) or from Diaspora"
msgstr "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (GNU Social/Statusnet) oder von Diaspora importieren"
#: mod/uimport.php:70
msgid "Account file"
msgstr "Account Datei"
#: mod/uimport.php:70
msgid ""
"To export your account, go to \"Settings->Export your personal data\" and "
"select \"Export account\""
msgstr "Um Deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\""
#: mod/nogroup.php:41 mod/contacts.php:586 mod/contacts.php:930
#: mod/viewcontacts.php:97
#, php-format
msgid "Visit %s's profile [%s]"
msgstr "Besuche %ss Profil [%s]"
#: mod/nogroup.php:42 mod/contacts.php:931
msgid "Edit contact"
msgstr "Kontakt bearbeiten"
#: mod/nogroup.php:63
msgid "Contacts who are not members of a group"
msgstr "Kontakte, die keiner Gruppe zugewiesen sind"
#: mod/uexport.php:29
msgid "Export account"
msgstr "Account exportieren"
#: mod/uexport.php:29
msgid ""
"Export your account info and contacts. Use this to make a backup of your "
"account and/or to move it to another server."
msgstr "Exportiere Deine Accountinformationen und Kontakte. Verwende dies um ein Backup Deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen."
#: mod/uexport.php:30
msgid "Export all"
msgstr "Alles exportieren"
#: mod/uexport.php:30
msgid ""
"Export your accout info, contacts and all your items as json. Could be a "
"very big file, and could take a lot of time. Use this to make a full backup "
"of your account (photos are not exported)"
msgstr "Exportiere Deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup Deines Accounts anzulegen (Fotos werden nicht exportiert)."
#: mod/uexport.php:37 mod/settings.php:95
msgid "Export personal data"
msgstr "Persönliche Daten exportieren"
#: mod/invite.php:27
msgid "Total invitation limit exceeded."
msgstr "Limit für Einladungen erreicht."
#: mod/invite.php:49
#, php-format
msgid "%s : Not a valid email address."
msgstr "%s: Keine gültige Email Adresse."
#: mod/invite.php:73
msgid "Please join us on Friendica"
msgstr "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein"
#: mod/invite.php:84
msgid "Invitation limit exceeded. Please contact your site administrator."
msgstr "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite."
#: mod/invite.php:89
#, php-format
msgid "%s : Message delivery failed."
msgstr "%s: Zustellung der Nachricht fehlgeschlagen."
#: mod/invite.php:93
#, php-format
msgid "%d message sent."
msgid_plural "%d messages sent."
msgstr[0] "%d Nachricht gesendet."
msgstr[1] "%d Nachrichten gesendet."
#: mod/invite.php:112
msgid "You have no more invitations available"
msgstr "Du hast keine weiteren Einladungen"
#: mod/invite.php:120
#, php-format
msgid ""
"Visit %s for a list of public sites that you can join. Friendica members on "
"other sites can all connect with each other, as well as with members of many"
" other social networks."
msgstr "Besuche %s für eine Liste der öffentlichen Server, denen Du beitreten kannst. Friendica Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer Sozialer Netzwerke."
#: mod/invite.php:122
#, php-format
msgid ""
"To accept this invitation, please visit and register at %s or any other "
"public Friendica website."
msgstr "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere Dich bitte bei %s oder einer anderen öffentlichen Friendica Website."
#: mod/invite.php:123
#, php-format
msgid ""
"Friendica sites all inter-connect to create a huge privacy-enhanced social "
"web that is owned and controlled by its members. They can also connect with "
"many traditional social networks. See %s for a list of alternate Friendica "
"sites you can join."
msgstr "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen Du beitreten kannst."
#: mod/invite.php:126
msgid ""
"Our apologies. This system is not currently configured to connect with other"
" public sites or invite members."
msgstr "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen."
#: mod/invite.php:132
msgid "Send invitations"
msgstr "Einladungen senden"
#: mod/invite.php:133
msgid "Enter email addresses, one per line:"
msgstr "E-Mail-Adressen eingeben, eine pro Zeile:"
#: mod/invite.php:134 mod/wallmessage.php:151 mod/message.php:351
#: mod/message.php:541
msgid "Your message:"
msgstr "Deine Nachricht:"
#: mod/invite.php:135
msgid ""
"You are cordially invited to join me and other close friends on Friendica - "
"and help us to create a better social web."
msgstr "Du bist herzlich dazu eingeladen, Dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen."
#: mod/invite.php:137
msgid "You will need to supply this invitation code: $invite_code"
msgstr "Du benötigst den folgenden Einladungscode: $invite_code"
#: mod/invite.php:137
msgid ""
"Once you have registered, please connect with me via my profile page at:"
msgstr "Sobald Du registriert bist, kontaktiere mich bitte auf meiner Profilseite:"
#: mod/invite.php:139
msgid ""
"For more information about the Friendica project and why we feel it is "
"important, please visit http://friendica.com"
msgstr "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendica.com"
#: mod/invite.php:140 mod/localtime.php:45 mod/message.php:357
#: mod/message.php:547 mod/manage.php:143 mod/crepair.php:154
#: mod/content.php:728 mod/fsuggest.php:107 mod/mood.php:137 mod/poke.php:199
#: mod/profiles.php:688 mod/events.php:506 mod/photos.php:1104
#: mod/photos.php:1226 mod/photos.php:1539 mod/photos.php:1590
#: mod/photos.php:1638 mod/photos.php:1724 mod/contacts.php:577
#: mod/install.php:272 mod/install.php:312 object/Item.php:720
#: view/theme/frio/config.php:59 view/theme/quattro/config.php:64
#: view/theme/vier/config.php:107 view/theme/duepuntozero/config.php:59
msgid "Submit"
msgstr "Senden"
#: mod/fbrowser.php:133
msgid "Files"
msgstr "Dateien"
#: mod/profperm.php:19 mod/group.php:72 index.php:400
msgid "Permission denied"
msgstr "Zugriff verweigert"
#: mod/profperm.php:25 mod/profperm.php:56
msgid "Invalid profile identifier."
msgstr "Ungültiger Profil-Bezeichner."
#: mod/profperm.php:102
msgid "Profile Visibility Editor"
msgstr "Editor für die Profil-Sichtbarkeit"
#: mod/profperm.php:106 mod/group.php:223
msgid "Click on a contact to add or remove."
msgstr "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen"
#: mod/profperm.php:115
msgid "Visible To"
msgstr "Sichtbar für"
#: mod/profperm.php:131
msgid "All Contacts (with secure profile access)"
msgstr "Alle Kontakte (mit gesichertem Profilzugriff)"
#: mod/tagrm.php:41
msgid "Tag removed"
msgstr "Tag entfernt"
#: mod/tagrm.php:79
msgid "Remove Item Tag"
msgstr "Gegenstands-Tag entfernen"
#: mod/tagrm.php:81
msgid "Select a tag to remove: "
msgstr "Wähle ein Tag zum Entfernen aus: "
#: mod/tagrm.php:93 mod/delegate.php:139
msgid "Remove"
msgstr "Entfernen"
#: mod/repair_ostatus.php:14
msgid "Resubscribing to OStatus contacts"
msgstr "Erneuern der OStatus Abonements"
#: mod/repair_ostatus.php:30
msgid "Error"
msgstr "Fehler"
#: mod/repair_ostatus.php:44 mod/ostatus_subscribe.php:51
msgid "Done"
msgstr "Erledigt"
#: mod/repair_ostatus.php:50 mod/ostatus_subscribe.php:73
msgid "Keep this window open until done."
msgstr "Lasse dieses Fenster offen, bis der Vorgang abgeschlossen ist."
#: mod/delegate.php:101
msgid "No potential page delegates located."
msgstr "Keine potentiellen Bevollmächtigten für die Seite gefunden."
#: mod/delegate.php:132
msgid ""
"Delegates are able to manage all aspects of this account/page except for "
"basic account settings. Please do not delegate your personal account to "
"anybody that you do not trust completely."
msgstr "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für Deinen privaten Account, dem Du nicht absolut vertraust!"
#: mod/delegate.php:133
msgid "Existing Page Managers"
msgstr "Vorhandene Seitenmanager"
#: mod/delegate.php:135
msgid "Existing Page Delegates"
msgstr "Vorhandene Bevollmächtigte für die Seite"
#: mod/delegate.php:137
msgid "Potential Delegates"
msgstr "Potentielle Bevollmächtigte"
#: mod/delegate.php:140
msgid "Add"
msgstr "Hinzufügen"
#: mod/delegate.php:141
msgid "No entries."
msgstr "Keine Einträge."
#: mod/credits.php:16
msgid "Credits"
msgstr "Credits"
#: mod/credits.php:17
msgid ""
"Friendica is a community project, that would not be possible without the "
"help of many people. Here is a list of those who have contributed to the "
"code or the translation of Friendica. Thank you all!"
msgstr "Friendica ist ein Gemeinschaftsprojekt, das nicht ohne die Hilfe vieler Personen möglich wäre. Hier ist eine Aufzählung der Personen, die zum Code oder der Übersetzung beigetragen haben. Dank an alle !"
#: mod/filer.php:30
msgid "- select -"
msgstr "- auswählen -"
#: mod/subthread.php:103
#, php-format
msgid "%1$s is following %2$s's %3$s"
msgstr "%1$s folgt %2$s %3$s"
#: mod/attach.php:8
msgid "Item not available."
msgstr "Beitrag nicht verfügbar."
#: mod/attach.php:20
msgid "Item was not found."
msgstr "Beitrag konnte nicht gefunden werden."
#: mod/apps.php:7 index.php:244
msgid "You must be logged in to use addons. "
msgstr "Sie müssen angemeldet sein um Addons benutzen zu können."
#: mod/apps.php:11
msgid "Applications"
msgstr "Anwendungen"
#: mod/apps.php:14
msgid "No installed applications."
msgstr "Keine Applikationen installiert."
#: mod/p.php:9
msgid "Not Extended"
msgstr "Nicht erweitert."
#: mod/mood.php:135
msgid "Set your current mood and tell your friends"
msgstr "Wähle Deine aktuelle Stimmung und erzähle sie Deinen Kontakten"
#: mod/newmember.php:6
msgid "Welcome to Friendica"
@ -3739,7 +4079,7 @@ msgid ""
"potential friends know exactly how to find you."
msgstr "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn Du Dein Profil nicht veröffentlichst, ist das als wenn Du Deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest Du es veröffentlichen - außer all Deine Kontakte und potentiellen Kontakte wissen genau, wie sie Dich finden können."
#: mod/newmember.php:36 mod/profile_photo.php:250 mod/profiles.php:707
#: mod/newmember.php:36 mod/profile_photo.php:256 mod/profiles.php:699
msgid "Upload Profile Photo"
msgstr "Profilbild hochladen"
@ -3858,236 +4198,40 @@ msgid ""
" features and resources."
msgstr "Unsere <strong>Hilfe</strong> Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten."
#: mod/removeme.php:46 mod/removeme.php:49
msgid "Remove My Account"
msgstr "Konto löschen"
#: mod/nogroup.php:43 mod/contacts.php:594 mod/contacts.php:938
#: mod/viewcontacts.php:102
#, php-format
msgid "Visit %s's profile [%s]"
msgstr "Besuche %ss Profil [%s]"
#: mod/removeme.php:47
#: mod/nogroup.php:44 mod/contacts.php:939
msgid "Edit contact"
msgstr "Kontakt bearbeiten"
#: mod/nogroup.php:65
msgid "Contacts who are not members of a group"
msgstr "Kontakte, die keiner Gruppe zugewiesen sind"
#: mod/notify.php:65
msgid "No more system notifications."
msgstr "Keine weiteren Systembenachrichtigungen."
#: mod/notify.php:69 mod/notifications.php:111
msgid "System Notifications"
msgstr "Systembenachrichtigungen"
#: mod/oexchange.php:21
msgid "Post successful."
msgstr "Beitrag erfolgreich veröffentlicht."
#: mod/openid.php:24
msgid "OpenID protocol error. No ID returned."
msgstr "OpenID Protokollfehler. Keine ID zurückgegeben."
#: mod/openid.php:60
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."
#: mod/removeme.php:48
msgid "Please enter your password for verification:"
msgstr "Bitte gib Dein Passwort zur Verifikation ein:"
#: mod/editpost.php:17 mod/editpost.php:27
msgid "Item not found"
msgstr "Beitrag nicht gefunden"
#: mod/editpost.php:40
msgid "Edit post"
msgstr "Beitrag bearbeiten"
#: mod/localtime.php:24
msgid "Time Conversion"
msgstr "Zeitumrechnung"
#: mod/localtime.php:26
msgid ""
"Friendica provides this service for sharing events with other networks and "
"friends in unknown timezones."
msgstr "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann."
#: mod/localtime.php:30
#, php-format
msgid "UTC time: %s"
msgstr "UTC Zeit: %s"
#: mod/localtime.php:33
#, php-format
msgid "Current timezone: %s"
msgstr "Aktuelle Zeitzone: %s"
#: mod/localtime.php:36
#, php-format
msgid "Converted localtime: %s"
msgstr "Umgerechnete lokale Zeit: %s"
#: mod/localtime.php:41
msgid "Please select your timezone:"
msgstr "Bitte wähle Deine Zeitzone:"
#: mod/bookmarklet.php:41
msgid "The post was created"
msgstr "Der Beitrag wurde angelegt"
#: mod/group.php:29
msgid "Group created."
msgstr "Gruppe erstellt."
#: mod/group.php:35
msgid "Could not create group."
msgstr "Konnte die Gruppe nicht erstellen."
#: mod/group.php:47 mod/group.php:140
msgid "Group not found."
msgstr "Gruppe nicht gefunden."
#: mod/group.php:60
msgid "Group name changed."
msgstr "Gruppenname geändert."
#: mod/group.php:87
msgid "Save Group"
msgstr "Gruppe speichern"
#: mod/group.php:93
msgid "Create a group of contacts/friends."
msgstr "Eine Kontaktgruppe anlegen."
#: mod/group.php:113
msgid "Group removed."
msgstr "Gruppe entfernt."
#: mod/group.php:115
msgid "Unable to remove group."
msgstr "Konnte die Gruppe nicht entfernen."
#: mod/group.php:177
msgid "Group Editor"
msgstr "Gruppeneditor"
#: mod/group.php:190
msgid "Members"
msgstr "Mitglieder"
#: mod/group.php:192 mod/contacts.php:692
msgid "All Contacts"
msgstr "Alle Kontakte"
#: mod/group.php:193 mod/content.php:130 mod/network.php:496
msgid "Group is empty"
msgstr "Gruppe ist leer"
#: mod/wallmessage.php:42 mod/wallmessage.php:112
#, php-format
msgid "Number of daily wall messages for %s exceeded. Message failed."
msgstr "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen."
#: mod/wallmessage.php:56 mod/message.php:71
msgid "No recipient selected."
msgstr "Kein Empfänger gewählt."
#: mod/wallmessage.php:59
msgid "Unable to check your home location."
msgstr "Konnte Deinen Heimatort nicht bestimmen."
#: mod/wallmessage.php:62 mod/message.php:78
msgid "Message could not be sent."
msgstr "Nachricht konnte nicht gesendet werden."
#: mod/wallmessage.php:65 mod/message.php:81
msgid "Message collection failure."
msgstr "Konnte Nachrichten nicht abrufen."
#: mod/wallmessage.php:68 mod/message.php:84
msgid "Message sent."
msgstr "Nachricht gesendet."
#: mod/wallmessage.php:86 mod/wallmessage.php:95
msgid "No recipient."
msgstr "Kein Empfänger."
#: mod/wallmessage.php:142 mod/message.php:341
msgid "Send Private Message"
msgstr "Private Nachricht senden"
#: mod/wallmessage.php:143
#, php-format
msgid ""
"If you wish for %s to respond, please check that the privacy settings on "
"your site allow private mail from unknown senders."
msgstr "Wenn Du möchtest, dass %s Dir antworten kann, überprüfe Deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern."
#: mod/wallmessage.php:144 mod/message.php:342 mod/message.php:536
msgid "To:"
msgstr "An:"
#: mod/wallmessage.php:145 mod/message.php:347 mod/message.php:538
msgid "Subject:"
msgstr "Betreff:"
#: mod/share.php:38
msgid "link"
msgstr "Link"
#: mod/api.php:76 mod/api.php:102
msgid "Authorize application connection"
msgstr "Verbindung der Applikation autorisieren"
#: mod/api.php:77
msgid "Return to your app and insert this Securty Code:"
msgstr "Gehe zu Deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:"
#: mod/api.php:89
msgid "Please login to continue."
msgstr "Bitte melde Dich an um fortzufahren."
#: mod/api.php:104
msgid ""
"Do you want to authorize this application to access your posts and contacts,"
" and/or create new posts for you?"
msgstr "Möchtest Du dieser Anwendung den Zugriff auf Deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in Deinem Namen gestatten?"
#: mod/api.php:106 mod/profiles.php:648 mod/profiles.php:652
#: mod/profiles.php:677 mod/register.php:246 mod/settings.php:1163
#: mod/settings.php:1169 mod/settings.php:1177 mod/settings.php:1181
#: mod/settings.php:1186 mod/settings.php:1192 mod/settings.php:1198
#: mod/settings.php:1204 mod/settings.php:1230 mod/settings.php:1231
#: mod/settings.php:1232 mod/settings.php:1233 mod/settings.php:1234
#: mod/dfrn_request.php:862 mod/follow.php:110
msgid "No"
msgstr "Nein"
#: mod/babel.php:17
msgid "Source (bbcode) text:"
msgstr "Quelle (bbcode) Text:"
#: mod/babel.php:23
msgid "Source (Diaspora) text to convert to BBcode:"
msgstr "Eingabe (Diaspora) nach BBCode zu konvertierender Text:"
#: mod/babel.php:31
msgid "Source input: "
msgstr "Originaltext:"
#: mod/babel.php:35
msgid "bb2html (raw HTML): "
msgstr "bb2html (reines HTML): "
#: mod/babel.php:39
msgid "bb2html: "
msgstr "bb2html: "
#: mod/babel.php:43
msgid "bb2html2bb: "
msgstr "bb2html2bb: "
#: mod/babel.php:47
msgid "bb2md: "
msgstr "bb2md: "
#: mod/babel.php:51
msgid "bb2md2html: "
msgstr "bb2md2html: "
#: mod/babel.php:55
msgid "bb2dia2bb: "
msgstr "bb2dia2bb: "
#: mod/babel.php:59
msgid "bb2md2html2bb: "
msgstr "bb2md2html2bb: "
#: mod/babel.php:69
msgid "Source input (Diaspora format): "
msgstr "Originaltext (Diaspora Format): "
#: mod/babel.php:74
msgid "diaspora2bb: "
msgstr "diaspora2bb: "
"Account not found and OpenID registration is not permitted on this site."
msgstr "Nutzerkonto wurde nicht gefunden und OpenID-Registrierung ist auf diesem Server nicht gestattet."
#: mod/ostatus_subscribe.php:14
msgid "Subscribing to OStatus contacts"
@ -4097,615 +4241,2601 @@ msgstr "OStatus Kontakten folgen"
msgid "No contact provided."
msgstr "Keine Kontakte gefunden."
#: mod/ostatus_subscribe.php:30
#: mod/ostatus_subscribe.php:31
msgid "Couldn't fetch information for contact."
msgstr "Konnte die Kontaktinformationen nicht einholen."
#: mod/ostatus_subscribe.php:38
#: mod/ostatus_subscribe.php:40
msgid "Couldn't fetch friends for contact."
msgstr "Konnte die Kontaktliste des Kontakts nicht abfragen."
#: mod/ostatus_subscribe.php:65
#: mod/ostatus_subscribe.php:54 mod/repair_ostatus.php:44
msgid "Done"
msgstr "Erledigt"
#: mod/ostatus_subscribe.php:68
msgid "success"
msgstr "Erfolg"
#: mod/ostatus_subscribe.php:67
#: mod/ostatus_subscribe.php:70
msgid "failed"
msgstr "Fehlgeschlagen"
#: mod/ostatus_subscribe.php:69 mod/content.php:792 object/Item.php:245
msgid "ignored"
#: mod/ostatus_subscribe.php:78 mod/repair_ostatus.php:50
msgid "Keep this window open until done."
msgstr "Lasse dieses Fenster offen, bis der Vorgang abgeschlossen ist."
#: mod/poke.php:196
msgid "Poke/Prod"
msgstr "Anstupsen"
#: mod/poke.php:197
msgid "poke, prod or do other things to somebody"
msgstr "Stupse Leute an oder mache anderes mit ihnen"
#: mod/poke.php:198
msgid "Recipient"
msgstr "Empfänger"
#: mod/poke.php:199
msgid "Choose what you wish to do to recipient"
msgstr "Was willst Du mit dem Empfänger machen:"
#: mod/poke.php:202
msgid "Make this post private"
msgstr "Diesen Beitrag privat machen"
#: mod/profile.php:154 mod/cal.php:143 mod/display.php:328
msgid "Access to this profile has been restricted."
msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt."
#: mod/profile.php:174
msgid "Tips for New Members"
msgstr "Tipps für neue Nutzer"
#: mod/profile_photo.php:44
msgid "Image uploaded but image cropping failed."
msgstr "Bild hochgeladen, aber das Zuschneiden schlug fehl."
#: mod/profile_photo.php:77 mod/profile_photo.php:85 mod/profile_photo.php:93
#: mod/profile_photo.php:323
#, php-format
msgid "Image size reduction [%s] failed."
msgstr "Verkleinern der Bildgröße von [%s] scheiterte."
#: mod/profile_photo.php:127
msgid ""
"Shift-reload the page or clear browser cache if the new photo does not "
"display immediately."
msgstr "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird."
#: mod/profile_photo.php:137
msgid "Unable to process image"
msgstr "Bild konnte nicht verarbeitet werden"
#: mod/profile_photo.php:156 mod/wall_upload.php:151 mod/photos.php:803
#, php-format
msgid "Image exceeds size limit of %s"
msgstr "Bildgröße überschreitet das Limit von %s"
#: mod/profile_photo.php:165 mod/wall_upload.php:186 mod/photos.php:844
msgid "Unable to process image."
msgstr "Konnte das Bild nicht bearbeiten."
#: mod/profile_photo.php:254
msgid "Upload File:"
msgstr "Datei hochladen:"
#: mod/profile_photo.php:255
msgid "Select a profile:"
msgstr "Profil auswählen:"
#: mod/profile_photo.php:257
msgid "Upload"
msgstr "Hochladen"
#: mod/profile_photo.php:260
msgid "or"
msgstr "oder"
#: mod/profile_photo.php:260
msgid "skip this step"
msgstr "diesen Schritt überspringen"
#: mod/profile_photo.php:260
msgid "select a photo from your photo albums"
msgstr "wähle ein Foto aus deinen Fotoalben"
#: mod/profile_photo.php:274
msgid "Crop Image"
msgstr "Bild zurechtschneiden"
#: mod/profile_photo.php:275
msgid "Please adjust the image cropping for optimum viewing."
msgstr "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann."
#: mod/profile_photo.php:277
msgid "Done Editing"
msgstr "Bearbeitung abgeschlossen"
#: mod/profile_photo.php:313
msgid "Image uploaded successfully."
msgstr "Bild erfolgreich hochgeladen."
#: mod/profile_photo.php:315 mod/wall_upload.php:219 mod/photos.php:871
msgid "Image upload failed."
msgstr "Hochladen des Bildes gescheitert."
#: mod/profperm.php:26 mod/profperm.php:57
msgid "Invalid profile identifier."
msgstr "Ungültiger Profil-Bezeichner."
#: mod/profperm.php:103
msgid "Profile Visibility Editor"
msgstr "Editor für die Profil-Sichtbarkeit"
#: mod/profperm.php:116
msgid "Visible To"
msgstr "Sichtbar für"
#: mod/profperm.php:132
msgid "All Contacts (with secure profile access)"
msgstr "Alle Kontakte (mit gesichertem Profilzugriff)"
#: mod/register.php:93
msgid ""
"Registration successful. Please check your email for further instructions."
msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet."
#: mod/register.php:98
#, php-format
msgid ""
"Failed to send email message. Here your accout details:<br> login: %s<br> "
"password: %s<br><br>You can change your password after login."
msgstr "Versenden der E-Mail fehlgeschlagen. Hier sind Deine Account Details:\n\nLogin: %s\nPasswort: %s\n\nDu kannst das Passwort nach dem Anmelden ändern."
#: mod/register.php:105
msgid "Registration successful."
msgstr "Registrierung erfolgreich."
#: mod/register.php:111
msgid "Your registration can not be processed."
msgstr "Deine Registrierung konnte nicht verarbeitet werden."
#: mod/register.php:160
msgid "Your registration is pending approval by the site owner."
msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."
#: mod/register.php:198 mod/uimport.php:51
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:226
msgid ""
"You may (optionally) fill in this form via OpenID by supplying your OpenID "
"and clicking 'Register'."
msgstr "Du kannst dieses Formular auch (optional) mit Deiner OpenID ausfüllen, indem Du Deine OpenID angibst und 'Registrieren' klickst."
#: mod/register.php:227
msgid ""
"If you are not familiar with OpenID, please leave that field blank and fill "
"in the rest of the items."
msgstr "Wenn Du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus."
#: mod/register.php:228
msgid "Your OpenID (optional): "
msgstr "Deine OpenID (optional): "
#: mod/register.php:242
msgid "Include your profile in member directory?"
msgstr "Soll Dein Profil im Nutzerverzeichnis angezeigt werden?"
#: mod/register.php:267
msgid "Note for the admin"
msgstr "Hinweis für den Admin"
#: mod/register.php:267
msgid "Leave a message for the admin, why you want to join this node"
msgstr "Hinterlasse eine Nachricht an den Admin, warum du einen Account auf dieser Instanz haben möchtest."
#: mod/register.php:268
msgid "Membership on this site is by invitation only."
msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."
#: mod/register.php:269
msgid "Your invitation ID: "
msgstr "ID Deiner Einladung: "
#: mod/register.php:272 mod/admin.php:977
msgid "Registration"
msgstr "Registrierung"
#: mod/register.php:280
msgid "Your Full Name (e.g. Joe Smith, real or real-looking): "
msgstr "Dein vollständiger Name (z.B. Hans Mustermann, echt oder echt erscheinend):"
#: mod/register.php:281
msgid "Your Email Address: "
msgstr "Deine E-Mail-Adresse: "
#: mod/register.php:283 mod/settings.php:1278
msgid "New Password:"
msgstr "Neues Passwort:"
#: mod/register.php:283
msgid "Leave empty for an auto generated password."
msgstr "Leer lassen um das Passwort automatisch zu generieren."
#: mod/register.php:284 mod/settings.php:1279
msgid "Confirm:"
msgstr "Bestätigen:"
#: mod/register.php:285
msgid ""
"Choose a profile nickname. This must begin with a text character. Your "
"profile address on this site will then be "
"'<strong>nickname@$sitename</strong>'."
msgstr "Wähle einen Spitznamen für Dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse Deines Profils auf dieser Seite wird '<strong>spitzname@$sitename</strong>' sein."
#: mod/register.php:286
msgid "Choose a nickname: "
msgstr "Spitznamen wählen: "
#: mod/register.php:295 mod/uimport.php:66
msgid "Import"
msgstr "Import"
#: mod/register.php:296
msgid "Import your profile to this friendica instance"
msgstr "Importiere Dein Profil auf diese Friendica Instanz"
#: mod/regmod.php:58
msgid "Account approved."
msgstr "Konto freigegeben."
#: mod/regmod.php:95
#, php-format
msgid "Registration revoked for %s"
msgstr "Registrierung für %s wurde zurückgezogen"
#: mod/regmod.php:107
msgid "Please login."
msgstr "Bitte melde Dich an."
#: mod/removeme.php:52 mod/removeme.php:55
msgid "Remove My Account"
msgstr "Konto löschen"
#: mod/removeme.php:53
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."
#: mod/removeme.php:54
msgid "Please enter your password for verification:"
msgstr "Bitte gib Dein Passwort zur Verifikation ein:"
#: mod/repair_ostatus.php:14
msgid "Resubscribing to OStatus contacts"
msgstr "Erneuern der OStatus Abonements"
#: mod/repair_ostatus.php:30
msgid "Error"
msgstr "Fehler"
#: mod/settings.php:36 mod/photos.php:107
msgid "everybody"
msgstr "jeder"
#: mod/settings.php:43 mod/admin.php:1417
msgid "Account"
msgstr "Nutzerkonto"
#: mod/settings.php:52 mod/admin.php:161
msgid "Additional features"
msgstr "Zusätzliche Features"
#: mod/settings.php:60
msgid "Display"
msgstr "Anzeige"
#: mod/settings.php:67 mod/settings.php:890
msgid "Social Networks"
msgstr "Soziale Netzwerke"
#: mod/settings.php:74 mod/admin.php:159 mod/admin.php:1543 mod/admin.php:1606
msgid "Plugins"
msgstr "Plugins"
#: mod/settings.php:88
msgid "Connected apps"
msgstr "Verbundene Programme"
#: mod/settings.php:95 mod/uexport.php:45
msgid "Export personal data"
msgstr "Persönliche Daten exportieren"
#: mod/settings.php:102
msgid "Remove account"
msgstr "Konto löschen"
#: mod/settings.php:157
msgid "Missing some important data!"
msgstr "Wichtige Daten fehlen!"
#: mod/settings.php:160 mod/settings.php:707 mod/contacts.php:812
msgid "Update"
msgstr "Aktualisierungen"
#: mod/settings.php:271
msgid "Failed to connect with email account using the settings provided."
msgstr "Verbindung zum E-Mail-Konto mit den angegebenen Einstellungen nicht möglich."
#: mod/settings.php:276
msgid "Email settings updated."
msgstr "E-Mail Einstellungen bearbeitet."
#: mod/settings.php:291
msgid "Features updated"
msgstr "Features aktualisiert"
#: mod/settings.php:361
msgid "Relocate message has been send to your contacts"
msgstr "Die Umzugsbenachrichtigung wurde an Deine Kontakte versendet."
#: mod/settings.php:380
msgid "Empty passwords are not allowed. Password unchanged."
msgstr "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert."
#: mod/settings.php:388
msgid "Wrong password."
msgstr "Falsches Passwort."
#: mod/settings.php:399
msgid "Password changed."
msgstr "Passwort geändert."
#: mod/settings.php:401
msgid "Password update failed. Please try again."
msgstr "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal."
#: mod/settings.php:481
msgid " Please use a shorter name."
msgstr " Bitte verwende einen kürzeren Namen."
#: mod/settings.php:483
msgid " Name too short."
msgstr " Name ist zu kurz."
#: mod/settings.php:492
msgid "Wrong Password"
msgstr "Falsches Passwort"
#: mod/settings.php:497
msgid " Not valid email."
msgstr " Keine gültige E-Mail."
#: mod/settings.php:503
msgid " Cannot change to that email."
msgstr "Ändern der E-Mail nicht möglich. "
#: mod/settings.php:559
msgid "Private forum has no privacy permissions. Using default privacy group."
msgstr "Für das private Forum sind keine Zugriffsrechte eingestellt. Die voreingestellte Gruppe für neue Kontakte wird benutzt."
#: mod/settings.php:563
msgid "Private forum has no privacy permissions and no default privacy group."
msgstr "Für das private Forum sind keine Zugriffsrechte eingestellt, und es gibt keine voreingestellte Gruppe für neue Kontakte."
#: mod/settings.php:603
msgid "Settings updated."
msgstr "Einstellungen aktualisiert."
#: mod/settings.php:680 mod/settings.php:706 mod/settings.php:742
msgid "Add application"
msgstr "Programm hinzufügen"
#: mod/settings.php:681 mod/settings.php:792 mod/settings.php:841
#: mod/settings.php:908 mod/settings.php:1005 mod/settings.php:1271
#: mod/admin.php:976 mod/admin.php:1607 mod/admin.php:1864 mod/admin.php:1938
#: mod/admin.php:2088
msgid "Save Settings"
msgstr "Einstellungen speichern"
#: mod/settings.php:684 mod/settings.php:710
msgid "Consumer Key"
msgstr "Consumer Key"
#: mod/settings.php:685 mod/settings.php:711
msgid "Consumer Secret"
msgstr "Consumer Secret"
#: mod/settings.php:686 mod/settings.php:712
msgid "Redirect"
msgstr "Umleiten"
#: mod/settings.php:687 mod/settings.php:713
msgid "Icon url"
msgstr "Icon URL"
#: mod/settings.php:698
msgid "You can't edit this application."
msgstr "Du kannst dieses Programm nicht bearbeiten."
#: mod/settings.php:741
msgid "Connected Apps"
msgstr "Verbundene Programme"
#: mod/settings.php:745
msgid "Client key starts with"
msgstr "Anwenderschlüssel beginnt mit"
#: mod/settings.php:746
msgid "No name"
msgstr "Kein Name"
#: mod/settings.php:747
msgid "Remove authorization"
msgstr "Autorisierung entziehen"
#: mod/settings.php:759
msgid "No Plugin settings configured"
msgstr "Keine Plugin-Einstellungen konfiguriert"
#: mod/settings.php:768
msgid "Plugin Settings"
msgstr "Plugin-Einstellungen"
#: mod/settings.php:782 mod/admin.php:2077 mod/admin.php:2078
msgid "Off"
msgstr "Aus"
#: mod/settings.php:782 mod/admin.php:2077 mod/admin.php:2078
msgid "On"
msgstr "An"
#: mod/settings.php:790
msgid "Additional Features"
msgstr "Zusätzliche Features"
#: mod/settings.php:800 mod/settings.php:804
msgid "General Social Media Settings"
msgstr "Allgemeine Einstellungen zu Sozialen Medien"
#: mod/settings.php:810
msgid "Disable intelligent shortening"
msgstr "Intelligentes Link kürzen ausschalten"
#: mod/settings.php:812
msgid ""
"Normally the system tries to find the best link to add to shortened posts. "
"If this option is enabled then every shortened post will always point to the"
" original friendica post."
msgstr "Normalerweise versucht das System den besten Link zu finden um ihn zu gekürzten Postings hinzu zu fügen. Wird diese Option ausgewählt wird stets ein Link auf die originale Friendica Nachricht beigefügt."
#: mod/settings.php:818
msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
msgstr "Automatisch allen GNU Social (OStatus) Followern/Erwähnern folgen"
#: mod/settings.php:820
msgid ""
"If you receive a message from an unknown OStatus user, this option decides "
"what to do. If it is checked, a new contact will be created for every "
"unknown user."
msgstr "Wenn du eine Nachricht eines unbekannten OStatus Nutzers bekommst, entscheidet diese Option wie diese behandelt werden soll. Ist die Option aktiviert, wird ein neuer Kontakt für den Verfasser erstellt,."
#: mod/settings.php:826
msgid "Default group for OStatus contacts"
msgstr "Voreingestellte Gruppe für OStatus Kontakte"
#: mod/settings.php:834
msgid "Your legacy GNU Social account"
msgstr "Dein alter GNU Social Account"
#: mod/settings.php:836
msgid ""
"If you enter your old GNU Social/Statusnet account name here (in the format "
"user@domain.tld), your contacts will be added automatically. The field will "
"be emptied when done."
msgstr "Wenn du deinen alten GNU Socual/Statusnet Accountnamen hier angibst (Format name@domain.tld) werden deine Kontakte automatisch hinzugefügt. Dieses Feld wird geleert, wenn die Kontakte hinzugefügt wurden."
#: mod/settings.php:839
msgid "Repair OStatus subscriptions"
msgstr "OStatus Abonnements reparieren"
#: mod/settings.php:848 mod/settings.php:849
#, php-format
msgid "Built-in support for %s connectivity is %s"
msgstr "Eingebaute Unterstützung für Verbindungen zu %s ist %s"
#: mod/settings.php:848 mod/settings.php:849
msgid "enabled"
msgstr "eingeschaltet"
#: mod/settings.php:848 mod/settings.php:849
msgid "disabled"
msgstr "ausgeschaltet"
#: mod/settings.php:849
msgid "GNU Social (OStatus)"
msgstr "GNU Social (OStatus)"
#: mod/settings.php:883
msgid "Email access is disabled on this site."
msgstr "Zugriff auf E-Mails für diese Seite deaktiviert."
#: mod/settings.php:895
msgid "Email/Mailbox Setup"
msgstr "E-Mail/Postfach-Einstellungen"
#: mod/settings.php:896
msgid ""
"If you wish to communicate with email contacts using this service "
"(optional), please specify how to connect to your mailbox."
msgstr "Wenn Du mit E-Mail-Kontakten über diesen Service kommunizieren möchtest (optional), gib bitte die Einstellungen für Dein Postfach an."
#: mod/settings.php:897
msgid "Last successful email check:"
msgstr "Letzter erfolgreicher E-Mail Check"
#: mod/settings.php:899
msgid "IMAP server name:"
msgstr "IMAP-Server-Name:"
#: mod/settings.php:900
msgid "IMAP port:"
msgstr "IMAP-Port:"
#: mod/settings.php:901
msgid "Security:"
msgstr "Sicherheit:"
#: mod/settings.php:901 mod/settings.php:906
msgid "None"
msgstr "Keine"
#: mod/settings.php:902
msgid "Email login name:"
msgstr "E-Mail-Login-Name:"
#: mod/settings.php:903
msgid "Email password:"
msgstr "E-Mail-Passwort:"
#: mod/settings.php:904
msgid "Reply-to address:"
msgstr "Reply-to Adresse:"
#: mod/settings.php:905
msgid "Send public posts to all email contacts:"
msgstr "Sende öffentliche Beiträge an alle E-Mail-Kontakte:"
#: mod/settings.php:906
msgid "Action after import:"
msgstr "Aktion nach Import:"
#: mod/settings.php:906
msgid "Move to folder"
msgstr "In einen Ordner verschieben"
#: mod/settings.php:907
msgid "Move to folder:"
msgstr "In diesen Ordner verschieben:"
#: mod/settings.php:943 mod/admin.php:863
msgid "No special theme for mobile devices"
msgstr "Kein spezielles Theme für mobile Geräte verwenden."
#: mod/settings.php:1003
msgid "Display Settings"
msgstr "Anzeige-Einstellungen"
#: mod/settings.php:1009 mod/settings.php:1032
msgid "Display Theme:"
msgstr "Theme:"
#: mod/settings.php:1010
msgid "Mobile Theme:"
msgstr "Mobiles Theme"
#: mod/settings.php:1011
msgid "Suppress warning of insecure networks"
msgstr "Warnung wegen unsicheren Netzwerken unterdrücken"
#: mod/settings.php:1011
msgid ""
"Should the system suppress the warning that the current group contains "
"members of networks that can't receive non public postings."
msgstr "Soll das System Warnungen unterdrücken, die angezeigt werden weil von dir eingerichtete Kontakt-Gruppen Accounts aus Netzwerken beinhalten, die keine nicht öffentlichen Beiträge empfangen können."
#: mod/settings.php:1012
msgid "Update browser every xx seconds"
msgstr "Browser alle xx Sekunden aktualisieren"
#: mod/settings.php:1012
msgid "Minimum of 10 seconds. Enter -1 to disable it."
msgstr "Minimum sind 10 Sekunden. Gib -1 ein um abzuschalten."
#: mod/settings.php:1013
msgid "Number of items to display per page:"
msgstr "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: "
#: mod/settings.php:1013 mod/settings.php:1014
msgid "Maximum of 100 items"
msgstr "Maximal 100 Beiträge"
#: mod/settings.php:1014
msgid "Number of items to display per page when viewed from mobile device:"
msgstr "Zahl der Beiträge, die pro Netzwerkseite auf mobilen Geräten angezeigt werden sollen:"
#: mod/settings.php:1015
msgid "Don't show emoticons"
msgstr "Keine Smilies anzeigen"
#: mod/settings.php:1016
msgid "Calendar"
msgstr "Kalender"
#: mod/settings.php:1017
msgid "Beginning of week:"
msgstr "Wochenbeginn:"
#: mod/settings.php:1018
msgid "Don't show notices"
msgstr "Info-Popups nicht anzeigen"
#: mod/settings.php:1019
msgid "Infinite scroll"
msgstr "Endloses Scrollen"
#: mod/settings.php:1020
msgid "Automatic updates only at the top of the network page"
msgstr "Automatische Updates nur, wenn Du oben auf der Netzwerkseite bist."
#: mod/settings.php:1021
msgid "Bandwith Saver Mode"
msgstr "Bandbreiten-Spar-Modus"
#: mod/settings.php:1021
msgid ""
"When enabled, embedded content is not displayed on automatic updates, they "
"only show on page reload."
msgstr "Wenn aktiviert, wird der eingebettete Inhalt nicht automatisch aktualisiert. In diesem Fall Seite bitte neu laden."
#: mod/settings.php:1023
msgid "General Theme Settings"
msgstr "Allgemeine Themeneinstellungen"
#: mod/settings.php:1024
msgid "Custom Theme Settings"
msgstr "Benutzerdefinierte Theme Einstellungen"
#: mod/settings.php:1025
msgid "Content Settings"
msgstr "Einstellungen zum Inhalt"
#: mod/settings.php:1026 view/theme/quattro/config.php:69
#: view/theme/vier/config.php:114 view/theme/duepuntozero/config.php:63
#: view/theme/clean/config.php:89 view/theme/frio/config.php:66
msgid "Theme settings"
msgstr "Themeneinstellungen"
#: mod/settings.php:1110
msgid "Account Types"
msgstr "Kontenarten"
#: mod/settings.php:1111
msgid "Personal Page Subtypes"
msgstr "Unterarten der persönlichen Seite"
#: mod/settings.php:1112
msgid "Community Forum Subtypes"
msgstr "Unterarten des Gemeinschaftsforums"
#: mod/settings.php:1119
msgid "Personal Page"
msgstr "Persönliche Seite"
#: mod/settings.php:1120
msgid "This account is a regular personal profile"
msgstr "Dieses Konto ist ein normales persönliches Profil"
#: mod/settings.php:1123
msgid "Organisation Page"
msgstr "Organisationsseite"
#: mod/settings.php:1124
msgid "This account is a profile for an organisation"
msgstr "Diese Konto ist ein Profil für eine Organisation"
#: mod/settings.php:1127
msgid "News Page"
msgstr "Nachrichtenseite"
#: mod/settings.php:1128
msgid "This account is a news account/reflector"
msgstr "Dieses Konto ist ein News-Konto bzw. -Spiegel"
#: mod/settings.php:1131
msgid "Community Forum"
msgstr "Gemeinschaftsforum"
#: mod/settings.php:1132
msgid ""
"This account is a community forum where people can discuss with each other"
msgstr "Dieses Konto ist ein Gemeinschaftskonto wo sich Leute untereinander austauschen können"
#: mod/settings.php:1135
msgid "Normal Account Page"
msgstr "Normales Konto"
#: mod/settings.php:1136
msgid "This account is a normal personal profile"
msgstr "Dieses Konto ist ein normales persönliches Profil"
#: mod/settings.php:1139
msgid "Soapbox Page"
msgstr "Marktschreier-Konto"
#: mod/settings.php:1140
msgid "Automatically approve all connection/friend requests as read-only fans"
msgstr "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert"
#: mod/settings.php:1143
msgid "Public Forum"
msgstr "Öffentliches Forum"
#: mod/settings.php:1144
msgid "Automatically approve all contact requests"
msgstr "Bestätige alle Kontaktanfragen automatisch"
#: mod/settings.php:1147
msgid "Automatic Friend Page"
msgstr "Automatische Freunde Seite"
#: mod/settings.php:1148
msgid "Automatically approve all connection/friend requests as friends"
msgstr "Kontaktanfragen werden automatisch als Freund akzeptiert"
#: mod/settings.php:1151
msgid "Private Forum [Experimental]"
msgstr "Privates Forum [Versuchsstadium]"
#: mod/settings.php:1152
msgid "Private forum - approved members only"
msgstr "Privates Forum, nur für Mitglieder"
#: mod/settings.php:1163
msgid "OpenID:"
msgstr "OpenID:"
#: mod/settings.php:1163
msgid "(Optional) Allow this OpenID to login to this account."
msgstr "(Optional) Erlaube die Anmeldung für dieses Konto mit dieser OpenID."
#: mod/settings.php:1171
msgid "Publish your default profile in your local site directory?"
msgstr "Darf Dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?"
#: mod/settings.php:1177
msgid "Publish your default profile in the global social directory?"
msgstr "Darf Dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?"
#: mod/settings.php:1184
msgid "Hide your contact/friend list from viewers of your default profile?"
msgstr "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?"
#: mod/settings.php:1188
msgid ""
"If enabled, posting public messages to Diaspora and other networks isn't "
"possible."
msgstr "Wenn aktiviert, ist das senden öffentliche Nachrichten zu Diaspora und anderen Netzwerken nicht möglich"
#: mod/settings.php:1193
msgid "Allow friends to post to your profile page?"
msgstr "Dürfen Deine Kontakte auf Deine Pinnwand schreiben?"
#: mod/settings.php:1198
msgid "Allow friends to tag your posts?"
msgstr "Dürfen Deine Kontakte Deine Beiträge mit Schlagwörtern versehen?"
#: mod/settings.php:1203
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:1208
msgid "Permit unknown people to send you private mail?"
msgstr "Dürfen Dir Unbekannte private Nachrichten schicken?"
#: mod/settings.php:1216
msgid "Profile is <strong>not published</strong>."
msgstr "Profil ist <strong>nicht veröffentlicht</strong>."
#: mod/settings.php:1224
#, php-format
msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
msgstr "Die Adresse deines Profils lautet <strong>'%s'</strong> oder '%s'."
#: mod/settings.php:1231
msgid "Automatically expire posts after this many days:"
msgstr "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:"
#: mod/settings.php:1231
msgid "If empty, posts will not expire. Expired posts will be deleted"
msgstr "Wenn leer verfallen Beiträge nie automatisch. Verfallene Beiträge werden gelöscht."
#: mod/settings.php:1232
msgid "Advanced expiration settings"
msgstr "Erweiterte Verfallseinstellungen"
#: mod/settings.php:1233
msgid "Advanced Expiration"
msgstr "Erweitertes Verfallen"
#: mod/settings.php:1234
msgid "Expire posts:"
msgstr "Beiträge verfallen lassen:"
#: mod/settings.php:1235
msgid "Expire personal notes:"
msgstr "Persönliche Notizen verfallen lassen:"
#: mod/settings.php:1236
msgid "Expire starred posts:"
msgstr "Markierte Beiträge verfallen lassen:"
#: mod/settings.php:1237
msgid "Expire photos:"
msgstr "Fotos verfallen lassen:"
#: mod/settings.php:1238
msgid "Only expire posts by others:"
msgstr "Nur Beiträge anderer verfallen:"
#: mod/settings.php:1269
msgid "Account Settings"
msgstr "Kontoeinstellungen"
#: mod/settings.php:1277
msgid "Password Settings"
msgstr "Passwort-Einstellungen"
#: mod/settings.php:1279
msgid "Leave password fields blank unless changing"
msgstr "Lass die Passwort-Felder leer, außer Du willst das Passwort ändern"
#: mod/settings.php:1280
msgid "Current Password:"
msgstr "Aktuelles Passwort:"
#: mod/settings.php:1280 mod/settings.php:1281
msgid "Your current password to confirm the changes"
msgstr "Dein aktuelles Passwort um die Änderungen zu bestätigen"
#: mod/settings.php:1281
msgid "Password:"
msgstr "Passwort:"
#: mod/settings.php:1285
msgid "Basic Settings"
msgstr "Grundeinstellungen"
#: mod/settings.php:1287
msgid "Email Address:"
msgstr "E-Mail-Adresse:"
#: mod/settings.php:1288
msgid "Your Timezone:"
msgstr "Deine Zeitzone:"
#: mod/settings.php:1289
msgid "Your Language:"
msgstr "Deine Sprache:"
#: mod/settings.php:1289
msgid ""
"Set the language we use to show you friendica interface and to send you "
"emails"
msgstr "Wähle die Sprache, in der wir Dir die Friendica-Oberfläche präsentieren sollen und Dir E-Mail schicken"
#: mod/settings.php:1290
msgid "Default Post Location:"
msgstr "Standardstandort:"
#: mod/settings.php:1291
msgid "Use Browser Location:"
msgstr "Standort des Browsers verwenden:"
#: mod/settings.php:1294
msgid "Security and Privacy Settings"
msgstr "Sicherheits- und Privatsphäre-Einstellungen"
#: mod/settings.php:1296
msgid "Maximum Friend Requests/Day:"
msgstr "Maximale Anzahl vonKontaktanfragen/Tag:"
#: mod/settings.php:1296 mod/settings.php:1326
msgid "(to prevent spam abuse)"
msgstr "(um SPAM zu vermeiden)"
#: mod/settings.php:1297
msgid "Default Post Permissions"
msgstr "Standard-Zugriffsrechte für Beiträge"
#: mod/settings.php:1298
msgid "(click to open/close)"
msgstr "(klicke zum öffnen/schließen)"
#: mod/settings.php:1307 mod/photos.php:1185 mod/photos.php:1567
msgid "Show to Groups"
msgstr "Zeige den Gruppen"
#: mod/settings.php:1308 mod/photos.php:1186 mod/photos.php:1568
msgid "Show to Contacts"
msgstr "Zeige den Kontakten"
#: mod/settings.php:1309
msgid "Default Private Post"
msgstr "Privater Standardbeitrag"
#: mod/settings.php:1310
msgid "Default Public Post"
msgstr "Öffentlicher Standardbeitrag"
#: mod/settings.php:1314
msgid "Default Permissions for New Posts"
msgstr "Standardberechtigungen für neue Beiträge"
#: mod/settings.php:1326
msgid "Maximum private messages per day from unknown people:"
msgstr "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:"
#: mod/settings.php:1329
msgid "Notification Settings"
msgstr "Benachrichtigungseinstellungen"
#: mod/settings.php:1330
msgid "By default post a status message when:"
msgstr "Standardmäßig eine Statusnachricht posten, wenn:"
#: mod/settings.php:1331
msgid "accepting a friend request"
msgstr " Du eine Kontaktanfrage akzeptierst"
#: mod/settings.php:1332
msgid "joining a forum/community"
msgstr " Du einem Forum/einer Gemeinschaftsseite beitrittst"
#: mod/settings.php:1333
msgid "making an <em>interesting</em> profile change"
msgstr " Du eine <em>interessante</em> Änderung an Deinem Profil durchführst"
#: mod/settings.php:1334
msgid "Send a notification email when:"
msgstr "Benachrichtigungs-E-Mail senden wenn:"
#: mod/settings.php:1335
msgid "You receive an introduction"
msgstr " Du eine Kontaktanfrage erhältst"
#: mod/settings.php:1336
msgid "Your introductions are confirmed"
msgstr " eine Deiner Kontaktanfragen akzeptiert wurde"
#: mod/settings.php:1337
msgid "Someone writes on your profile wall"
msgstr " jemand etwas auf Deine Pinnwand schreibt"
#: mod/settings.php:1338
msgid "Someone writes a followup comment"
msgstr " jemand auch einen Kommentar verfasst"
#: mod/settings.php:1339
msgid "You receive a private message"
msgstr " Du eine private Nachricht erhältst"
#: mod/settings.php:1340
msgid "You receive a friend suggestion"
msgstr " Du eine Empfehlung erhältst"
#: mod/settings.php:1341
msgid "You are tagged in a post"
msgstr " Du in einem Beitrag erwähnt wirst"
#: mod/settings.php:1342
msgid "You are poked/prodded/etc. in a post"
msgstr " Du von jemandem angestupst oder sonstwie behandelt wirst"
#: mod/settings.php:1344
msgid "Activate desktop notifications"
msgstr "Desktop Benachrichtigungen einschalten"
#: mod/settings.php:1344
msgid "Show desktop popup on new notifications"
msgstr "Desktop Benachrichtigungen einschalten"
#: mod/settings.php:1346
msgid "Text-only notification emails"
msgstr "Benachrichtigungs E-Mail als Rein-Text."
#: mod/settings.php:1348
msgid "Send text only notification emails, without the html part"
msgstr "Sende Benachrichtigungs E-Mail als Rein-Text - ohne HTML-Teil"
#: mod/settings.php:1350
msgid "Advanced Account/Page Type Settings"
msgstr "Erweiterte Konto-/Seitentyp-Einstellungen"
#: mod/settings.php:1351
msgid "Change the behaviour of this account for special situations"
msgstr "Verhalten dieses Kontos in bestimmten Situationen:"
#: mod/settings.php:1354
msgid "Relocate"
msgstr "Umziehen"
#: mod/settings.php:1355
msgid ""
"If you have moved this profile from another server, and some of your "
"contacts don't receive your updates, try pushing this button."
msgstr "Wenn Du Dein Profil von einem anderen Server umgezogen hast und einige Deiner Kontakte Deine Beiträge nicht erhalten, verwende diesen Button."
#: mod/settings.php:1356
msgid "Resend relocate message to contacts"
msgstr "Umzugsbenachrichtigung erneut an Kontakte senden"
#: mod/share.php:38
msgid "link"
msgstr "Link"
#: mod/subthread.php:104
#, php-format
msgid "%1$s is following %2$s's %3$s"
msgstr "%1$s folgt %2$s %3$s"
#: mod/suggest.php:27
msgid "Do you really want to delete this suggestion?"
msgstr "Möchtest Du wirklich diese Empfehlung löschen?"
#: mod/suggest.php:71
msgid ""
"No suggestions available. If this is a new site, please try again in 24 "
"hours."
msgstr "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal."
#: mod/suggest.php:84 mod/suggest.php:104
msgid "Ignore/Hide"
msgstr "Ignorieren/Verbergen"
#: mod/tagrm.php:43
msgid "Tag removed"
msgstr "Tag entfernt"
#: mod/tagrm.php:82
msgid "Remove Item Tag"
msgstr "Gegenstands-Tag entfernen"
#: mod/tagrm.php:84
msgid "Select a tag to remove: "
msgstr "Wähle ein Tag zum Entfernen aus: "
#: mod/uexport.php:37
msgid "Export account"
msgstr "Account exportieren"
#: mod/uexport.php:37
msgid ""
"Export your account info and contacts. Use this to make a backup of your "
"account and/or to move it to another server."
msgstr "Exportiere Deine Accountinformationen und Kontakte. Verwende dies um ein Backup Deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen."
#: mod/uexport.php:38
msgid "Export all"
msgstr "Alles exportieren"
#: mod/uexport.php:38
msgid ""
"Export your accout info, contacts and all your items as json. Could be a "
"very big file, and could take a lot of time. Use this to make a full backup "
"of your account (photos are not exported)"
msgstr "Exportiere Deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup Deines Accounts anzulegen (Fotos werden nicht exportiert)."
#: mod/uimport.php:68
msgid "Move account"
msgstr "Account umziehen"
#: mod/uimport.php:69
msgid "You can import an account from another Friendica server."
msgstr "Du kannst einen Account von einem anderen Friendica Server importieren."
#: mod/uimport.php:70
msgid ""
"You need to export your account from the old server and upload it here. We "
"will recreate your old account here with all your contacts. We will try also"
" to inform your friends that you moved here."
msgstr "Du musst Deinen Account vom alten Server exportieren und hier hochladen. Wir stellen Deinen alten Account mit all Deinen Kontakten wieder her. Wir werden auch versuchen all Deine Kontakte darüber zu informieren, dass Du hierher umgezogen bist."
#: mod/uimport.php:71
msgid ""
"This feature is experimental. We can't import contacts from the OStatus "
"network (GNU Social/Statusnet) or from Diaspora"
msgstr "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (GNU Social/Statusnet) oder von Diaspora importieren"
#: mod/uimport.php:72
msgid "Account file"
msgstr "Account Datei"
#: mod/uimport.php:72
msgid ""
"To export your account, go to \"Settings->Export your personal data\" and "
"select \"Export account\""
msgstr "Um Deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\""
#: mod/update_community.php:19 mod/update_display.php:23
#: mod/update_network.php:27 mod/update_notes.php:36 mod/update_profile.php:35
msgid "[Embedded content - reload page to view]"
msgstr "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]"
#: mod/videos.php:124
msgid "Do you really want to delete this video?"
msgstr "Möchtest Du dieses Video wirklich löschen?"
#: mod/videos.php:129
msgid "Delete Video"
msgstr "Video Löschen"
#: mod/videos.php:208
msgid "No videos selected"
msgstr "Keine Videos ausgewählt"
#: mod/videos.php:309 mod/photos.php:1074
msgid "Access to this item is restricted."
msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt."
#: mod/videos.php:391 mod/photos.php:1867
msgid "View Album"
msgstr "Album betrachten"
#: mod/videos.php:400
msgid "Recent Videos"
msgstr "Neueste Videos"
#: mod/videos.php:402
msgid "Upload New Videos"
msgstr "Neues Video hochladen"
#: mod/viewsrc.php:7
msgid "Access denied."
msgstr "Zugriff verweigert."
#: mod/wall_attach.php:17 mod/wall_attach.php:25 mod/wall_attach.php:76
#: mod/wall_upload.php:20 mod/wall_upload.php:33 mod/wall_upload.php:86
#: mod/wall_upload.php:122 mod/wall_upload.php:125
msgid "Invalid request."
msgstr "Ungültige Anfrage"
#: mod/wall_attach.php:94
msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
msgstr "Entschuldige, die Datei scheint größer zu sein als es die PHP Konfiguration erlaubt."
#: mod/wall_attach.php:94
msgid "Or - did you try to upload an empty file?"
msgstr "Oder - hast Du versucht, eine leere Datei hochzuladen?"
#: mod/wall_attach.php:105
#, php-format
msgid "File exceeds size limit of %s"
msgstr "Die Datei ist größer als das erlaubte Limit von %s"
#: mod/wall_attach.php:158 mod/wall_attach.php:174
msgid "File upload failed."
msgstr "Hochladen der Datei fehlgeschlagen."
#: mod/cal.php:271 mod/events.php:387
msgid "View"
msgstr "Ansehen"
#: mod/cal.php:272 mod/events.php:389
msgid "Previous"
msgstr "Vorherige"
#: mod/cal.php:273 mod/events.php:390 mod/install.php:235
msgid "Next"
msgstr "Nächste"
#: mod/cal.php:282 mod/events.php:399
msgid "list"
msgstr "Liste"
#: mod/cal.php:292
msgid "User not found"
msgstr "Nutzer nicht gefunden"
#: mod/cal.php:308
msgid "This calendar format is not supported"
msgstr "Dieses Kalenderformat wird nicht unterstützt."
#: mod/cal.php:310
msgid "No exportable data found"
msgstr "Keine exportierbaren Daten gefunden"
#: mod/cal.php:325
msgid "calendar"
msgstr "Kalender"
#: mod/contacts.php:134
#, php-format
msgid "%d contact edited."
msgid_plural "%d contacts edited."
msgstr[0] "%d Kontakt bearbeitet."
msgstr[1] "%d Kontakte bearbeitet."
#: mod/contacts.php:169 mod/contacts.php:378
msgid "Could not access contact record."
msgstr "Konnte nicht auf die Kontaktdaten zugreifen."
#: mod/contacts.php:183
msgid "Could not locate selected profile."
msgstr "Konnte das ausgewählte Profil nicht finden."
#: mod/contacts.php:216
msgid "Contact updated."
msgstr "Kontakt aktualisiert."
#: mod/contacts.php:218 mod/dfrn_request.php:588
msgid "Failed to update contact record."
msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen."
#: mod/contacts.php:399
msgid "Contact has been blocked"
msgstr "Kontakt wurde blockiert"
#: mod/contacts.php:399
msgid "Contact has been unblocked"
msgstr "Kontakt wurde wieder freigegeben"
#: mod/contacts.php:410
msgid "Contact has been ignored"
msgstr "Kontakt wurde ignoriert"
#: mod/contacts.php:410
msgid "Contact has been unignored"
msgstr "Kontakt wird nicht mehr ignoriert"
#: mod/contacts.php:422
msgid "Contact has been archived"
msgstr "Kontakt wurde archiviert"
#: mod/contacts.php:422
msgid "Contact has been unarchived"
msgstr "Kontakt wurde aus dem Archiv geholt"
#: mod/contacts.php:447
msgid "Drop contact"
msgstr "Kontakt löschen"
#: mod/contacts.php:450 mod/contacts.php:809
msgid "Do you really want to delete this contact?"
msgstr "Möchtest Du wirklich diesen Kontakt löschen?"
#: mod/contacts.php:469
msgid "Contact has been removed."
msgstr "Kontakt wurde entfernt."
#: mod/contacts.php:506
#, php-format
msgid "You are mutual friends with %s"
msgstr "Du hast mit %s eine beidseitige Freundschaft"
#: mod/contacts.php:510
#, php-format
msgid "You are sharing with %s"
msgstr "Du teilst mit %s"
#: mod/contacts.php:515
#, php-format
msgid "%s is sharing with you"
msgstr "%s teilt mit Dir"
#: mod/contacts.php:535
msgid "Private communications are not available for this contact."
msgstr "Private Kommunikation ist für diesen Kontakt nicht verfügbar."
#: mod/contacts.php:538 mod/admin.php:899
msgid "Never"
msgstr "Niemals"
#: mod/contacts.php:542
msgid "(Update was successful)"
msgstr "(Aktualisierung war erfolgreich)"
#: mod/contacts.php:542
msgid "(Update was not successful)"
msgstr "(Aktualisierung war nicht erfolgreich)"
#: mod/contacts.php:544 mod/contacts.php:972
msgid "Suggest friends"
msgstr "Kontakte vorschlagen"
#: mod/contacts.php:548
#, php-format
msgid "Network type: %s"
msgstr "Netzwerktyp: %s"
#: mod/contacts.php:561
msgid "Communications lost with this contact!"
msgstr "Verbindungen mit diesem Kontakt verloren!"
#: mod/contacts.php:564
msgid "Fetch further information for feeds"
msgstr "Weitere Informationen zu Feeds holen"
#: mod/contacts.php:565 mod/admin.php:908
msgid "Disabled"
msgstr "Deaktiviert"
#: mod/contacts.php:565
msgid "Fetch information"
msgstr "Beziehe Information"
#: mod/contacts.php:565
msgid "Fetch information and keywords"
msgstr "Beziehe Information und Schlüsselworte"
#: mod/contacts.php:583
msgid "Contact"
msgstr "Kontakt"
#: mod/contacts.php:586
msgid "Profile Visibility"
msgstr "Profil-Sichtbarkeit"
#: mod/contacts.php:587
#, php-format
msgid ""
"Please choose the profile you would like to display to %s when viewing your "
"profile securely."
msgstr "Bitte wähle eines Deiner Profile das angezeigt werden soll, wenn %s Dein Profil aufruft."
#: mod/contacts.php:588
msgid "Contact Information / Notes"
msgstr "Kontakt Informationen / Notizen"
#: mod/contacts.php:589
msgid "Edit contact notes"
msgstr "Notizen zum Kontakt bearbeiten"
#: mod/contacts.php:595
msgid "Block/Unblock contact"
msgstr "Kontakt blockieren/freischalten"
#: mod/contacts.php:596
msgid "Ignore contact"
msgstr "Ignoriere den Kontakt"
#: mod/contacts.php:597
msgid "Repair URL settings"
msgstr "URL Einstellungen reparieren"
#: mod/contacts.php:598
msgid "View conversations"
msgstr "Unterhaltungen anzeigen"
#: mod/contacts.php:604
msgid "Last update:"
msgstr "Letzte Aktualisierung: "
#: mod/contacts.php:606
msgid "Update public posts"
msgstr "Öffentliche Beiträge aktualisieren"
#: mod/contacts.php:608 mod/contacts.php:982
msgid "Update now"
msgstr "Jetzt aktualisieren"
#: mod/contacts.php:613 mod/contacts.php:813 mod/contacts.php:991
#: mod/admin.php:1437
msgid "Unblock"
msgstr "Entsperren"
#: mod/contacts.php:613 mod/contacts.php:813 mod/contacts.php:991
#: mod/admin.php:1436
msgid "Block"
msgstr "Sperren"
#: mod/contacts.php:614 mod/contacts.php:814 mod/contacts.php:999
msgid "Unignore"
msgstr "Ignorieren aufheben"
#: mod/contacts.php:614 mod/contacts.php:814 mod/contacts.php:999
#: mod/notifications.php:60 mod/notifications.php:179
#: mod/notifications.php:257
msgid "Ignore"
msgstr "Ignorieren"
#: mod/contacts.php:618
msgid "Currently blocked"
msgstr "Derzeit geblockt"
#: mod/contacts.php:619
msgid "Currently ignored"
msgstr "Derzeit ignoriert"
#: mod/contacts.php:620
msgid "Currently archived"
msgstr "Momentan archiviert"
#: mod/contacts.php:621 mod/notifications.php:172 mod/notifications.php:245
msgid "Hide this contact from others"
msgstr "Verbirg diesen Kontakt vor Anderen"
#: mod/contacts.php:621
msgid ""
"Replies/likes to your public posts <strong>may</strong> still be visible"
msgstr "Antworten/Likes auf deine öffentlichen Beiträge <strong>könnten</strong> weiterhin sichtbar sein"
#: mod/contacts.php:622
msgid "Notification for new posts"
msgstr "Benachrichtigung bei neuen Beiträgen"
#: mod/contacts.php:622
msgid "Send a notification of every new post of this contact"
msgstr "Sende eine Benachrichtigung, wann immer dieser Kontakt einen neuen Beitrag schreibt."
#: mod/contacts.php:625
msgid "Blacklisted keywords"
msgstr "Blacklistete Schlüsselworte "
#: mod/contacts.php:625
msgid ""
"Comma separated list of keywords that should not be converted to hashtags, "
"when \"Fetch information and keywords\" is selected"
msgstr "Komma-Separierte Liste mit Schlüsselworten, die nicht in Hashtags konvertiert werden, wenn \"Beziehe Information und Schlüsselworte\" aktiviert wurde"
#: mod/contacts.php:643
msgid "Actions"
msgstr "Aktionen"
#: mod/contacts.php:646
msgid "Contact Settings"
msgstr "Kontakteinstellungen"
#: mod/contacts.php:692
msgid "Suggestions"
msgstr "Kontaktvorschläge"
#: mod/contacts.php:695
msgid "Suggest potential friends"
msgstr "Kontakte vorschlagen"
#: mod/contacts.php:703
msgid "Show all contacts"
msgstr "Alle Kontakte anzeigen"
#: mod/contacts.php:708
msgid "Unblocked"
msgstr "Ungeblockt"
#: mod/contacts.php:711
msgid "Only show unblocked contacts"
msgstr "Nur nicht-blockierte Kontakte anzeigen"
#: mod/contacts.php:717
msgid "Blocked"
msgstr "Geblockt"
#: mod/contacts.php:720
msgid "Only show blocked contacts"
msgstr "Nur blockierte Kontakte anzeigen"
#: mod/contacts.php:726
msgid "Ignored"
msgstr "Ignoriert"
#: mod/dfrn_poll.php:104 mod/dfrn_poll.php:537
#, php-format
msgid "%1$s welcomes %2$s"
msgstr "%1$s heißt %2$s herzlich willkommen"
#: mod/contacts.php:729
msgid "Only show ignored contacts"
msgstr "Nur ignorierte Kontakte anzeigen"
#: mod/message.php:75
#: mod/contacts.php:735
msgid "Archived"
msgstr "Archiviert"
#: mod/contacts.php:738
msgid "Only show archived contacts"
msgstr "Nur archivierte Kontakte anzeigen"
#: mod/contacts.php:744
msgid "Hidden"
msgstr "Verborgen"
#: mod/contacts.php:747
msgid "Only show hidden contacts"
msgstr "Nur verborgene Kontakte anzeigen"
#: mod/contacts.php:804
msgid "Search your contacts"
msgstr "Suche in deinen Kontakten"
#: mod/contacts.php:805 mod/network.php:145 mod/search.php:232
#, php-format
msgid "Results for: %s"
msgstr "Ergebnisse für: %s"
#: mod/contacts.php:815 mod/contacts.php:1007
msgid "Archive"
msgstr "Archivieren"
#: mod/contacts.php:815 mod/contacts.php:1007
msgid "Unarchive"
msgstr "Aus Archiv zurückholen"
#: mod/contacts.php:818
msgid "Batch Actions"
msgstr "Stapelverarbeitung"
#: mod/contacts.php:864
msgid "View all contacts"
msgstr "Alle Kontakte anzeigen"
#: mod/contacts.php:874
msgid "View all common friends"
msgstr "Alle Kontakte anzeigen"
#: mod/contacts.php:881
msgid "Advanced Contact Settings"
msgstr "Fortgeschrittene Kontakteinstellungen"
#: mod/contacts.php:915
msgid "Mutual Friendship"
msgstr "Beidseitige Freundschaft"
#: mod/contacts.php:919
msgid "is a fan of yours"
msgstr "ist ein Fan von dir"
#: mod/contacts.php:923
msgid "you are a fan of"
msgstr "Du bist Fan von"
#: mod/contacts.php:993
msgid "Toggle Blocked status"
msgstr "Geblockt-Status ein-/ausschalten"
#: mod/contacts.php:1001
msgid "Toggle Ignored status"
msgstr "Ignoriert-Status ein-/ausschalten"
#: mod/contacts.php:1009
msgid "Toggle Archive status"
msgstr "Archiviert-Status ein-/ausschalten"
#: mod/contacts.php:1017
msgid "Delete contact"
msgstr "Lösche den Kontakt"
#: mod/dfrn_confirm.php:70 mod/profiles.php:19 mod/profiles.php:134
#: mod/profiles.php:180 mod/profiles.php:619
msgid "Profile not found."
msgstr "Profil nicht gefunden."
#: mod/dfrn_confirm.php:127
msgid ""
"This may occasionally happen if contact was requested by both persons and it"
" has already been approved."
msgstr "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde."
#: mod/dfrn_confirm.php:244
msgid "Response from remote site was not understood."
msgstr "Antwort der Gegenstelle unverständlich."
#: mod/dfrn_confirm.php:253 mod/dfrn_confirm.php:258
msgid "Unexpected response from remote site: "
msgstr "Unerwartete Antwort der Gegenstelle: "
#: mod/dfrn_confirm.php:267
msgid "Confirmation completed successfully."
msgstr "Bestätigung erfolgreich abgeschlossen."
#: mod/dfrn_confirm.php:269 mod/dfrn_confirm.php:283 mod/dfrn_confirm.php:290
msgid "Remote site reported: "
msgstr "Gegenstelle meldet: "
#: mod/dfrn_confirm.php:281
msgid "Temporary failure. Please wait and try again."
msgstr "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal."
#: mod/dfrn_confirm.php:288
msgid "Introduction failed or was revoked."
msgstr "Kontaktanfrage schlug fehl oder wurde zurückgezogen."
#: mod/dfrn_confirm.php:418
msgid "Unable to set contact photo."
msgstr "Konnte das Bild des Kontakts nicht speichern."
#: mod/dfrn_confirm.php:559
#, php-format
msgid "No user record found for '%s' "
msgstr "Für '%s' wurde kein Nutzer gefunden"
#: mod/dfrn_confirm.php:569
msgid "Our site encryption key is apparently messed up."
msgstr "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung."
#: mod/dfrn_confirm.php:580
msgid "Empty site URL was provided or URL could not be decrypted by us."
msgstr "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden."
#: mod/dfrn_confirm.php:601
msgid "Contact record was not found for you on our site."
msgstr "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden."
#: mod/dfrn_confirm.php:615
#, php-format
msgid "Site public key not available in contact record for URL %s."
msgstr "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server."
#: mod/dfrn_confirm.php:635
msgid ""
"The ID provided by your system is a duplicate on our system. It should work "
"if you try again."
msgstr "Die ID, die uns Dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal."
#: mod/dfrn_confirm.php:646
msgid "Unable to set your contact credentials on our system."
msgstr "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden."
#: mod/dfrn_confirm.php:708
msgid "Unable to update your contact profile details on our system"
msgstr "Die Updates für Dein Profil konnten nicht gespeichert werden"
#: mod/dfrn_confirm.php:780
#, php-format
msgid "%1$s has joined %2$s"
msgstr "%1$s ist %2$s beigetreten"
#: mod/editpost.php:17 mod/editpost.php:27
msgid "Item not found"
msgstr "Beitrag nicht gefunden"
#: mod/editpost.php:32
msgid "Edit post"
msgstr "Beitrag bearbeiten"
#: mod/events.php:100 mod/events.php:102
msgid "Event can not end before it has started."
msgstr "Die Veranstaltung kann nicht enden bevor sie beginnt."
#: mod/events.php:109 mod/events.php:111
msgid "Event title and start time are required."
msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden."
#: mod/events.php:388
msgid "Create New Event"
msgstr "Neue Veranstaltung erstellen"
#: mod/events.php:489
msgid "Event details"
msgstr "Veranstaltungsdetails"
#: mod/events.php:490
msgid "Starting date and Title are required."
msgstr "Anfangszeitpunkt und Titel werden benötigt"
#: mod/events.php:491 mod/events.php:492
msgid "Event Starts:"
msgstr "Veranstaltungsbeginn:"
#: mod/events.php:491 mod/events.php:503 mod/profiles.php:708
msgid "Required"
msgstr "Benötigt"
#: mod/events.php:493 mod/events.php:509
msgid "Finish date/time is not known or not relevant"
msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant"
#: mod/events.php:495 mod/events.php:496
msgid "Event Finishes:"
msgstr "Veranstaltungsende:"
#: mod/events.php:497 mod/events.php:510
msgid "Adjust for viewer timezone"
msgstr "An Zeitzone des Betrachters anpassen"
#: mod/events.php:499
msgid "Description:"
msgstr "Beschreibung"
#: mod/events.php:503 mod/events.php:505
msgid "Title:"
msgstr "Titel:"
#: mod/events.php:506 mod/events.php:507
msgid "Share this event"
msgstr "Veranstaltung teilen"
#: mod/fbrowser.php:132
msgid "Files"
msgstr "Dateien"
#: mod/friendica.php:72
msgid "This is Friendica, version"
msgstr "Dies ist Friendica, Version"
#: mod/friendica.php:73
msgid "running at web location"
msgstr "die unter folgender Webadresse zu finden ist"
#: mod/friendica.php:75
msgid ""
"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
"more about the Friendica project."
msgstr "Bitte besuche <a href=\"http://friendica.com\">Friendica.com</a>, um mehr über das Friendica Projekt zu erfahren."
#: mod/friendica.php:77
msgid "Bug reports and issues: please visit"
msgstr "Probleme oder Fehler gefunden? Bitte besuche"
#: mod/friendica.php:77
msgid "the bugtracker at github"
msgstr "den Bugtracker auf github"
#: mod/friendica.php:78
msgid ""
"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
"dot com"
msgstr "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com"
#: mod/friendica.php:92
msgid "Installed plugins/addons/apps:"
msgstr "Installierte Plugins/Erweiterungen/Apps:"
#: mod/friendica.php:105
msgid "No installed plugins/addons/apps"
msgstr "Keine Plugins/Erweiterungen/Apps installiert"
#: mod/item.php:118
msgid "Unable to locate original post."
msgstr "Konnte den Originalbeitrag nicht finden."
#: mod/item.php:336
msgid "Empty post discarded."
msgstr "Leerer Beitrag wurde verworfen."
#: mod/item.php:889
msgid "System error. Post not saved."
msgstr "Systemfehler. Beitrag konnte nicht gespeichert werden."
#: mod/item.php:979
#, php-format
msgid ""
"This message was sent to you by %s, a member of the Friendica social "
"network."
msgstr "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica."
#: mod/item.php:981
#, php-format
msgid "You may visit them online at %s"
msgstr "Du kannst sie online unter %s besuchen"
#: mod/item.php:982
msgid ""
"Please contact the sender by replying to this post if you do not wish to "
"receive these messages."
msgstr "Falls Du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem Du auf diese Nachricht antwortest."
#: mod/item.php:986
#, php-format
msgid "%s posted an update."
msgstr "%s hat ein Update veröffentlicht."
#: mod/message.php:60 mod/wallmessage.php:50
msgid "No recipient selected."
msgstr "Kein Empfänger gewählt."
#: mod/message.php:64
msgid "Unable to locate contact information."
msgstr "Konnte die Kontaktinformationen nicht finden."
#: mod/message.php:215
#: mod/message.php:67 mod/wallmessage.php:56
msgid "Message could not be sent."
msgstr "Nachricht konnte nicht gesendet werden."
#: mod/message.php:70 mod/wallmessage.php:59
msgid "Message collection failure."
msgstr "Konnte Nachrichten nicht abrufen."
#: mod/message.php:73 mod/wallmessage.php:62
msgid "Message sent."
msgstr "Nachricht gesendet."
#: mod/message.php:204
msgid "Do you really want to delete this message?"
msgstr "Möchtest Du wirklich diese Nachricht löschen?"
#: mod/message.php:235
#: mod/message.php:224
msgid "Message deleted."
msgstr "Nachricht gelöscht."
#: mod/message.php:266
#: mod/message.php:255
msgid "Conversation removed."
msgstr "Unterhaltung gelöscht."
#: mod/message.php:383
#: mod/message.php:322 mod/wallmessage.php:126
msgid "Send Private Message"
msgstr "Private Nachricht senden"
#: mod/message.php:323 mod/message.php:510 mod/wallmessage.php:128
msgid "To:"
msgstr "An:"
#: mod/message.php:328 mod/message.php:512 mod/wallmessage.php:129
msgid "Subject:"
msgstr "Betreff:"
#: mod/message.php:364
msgid "No messages."
msgstr "Keine Nachrichten."
#: mod/message.php:426
#: mod/message.php:403
msgid "Message not available."
msgstr "Nachricht nicht verfügbar."
#: mod/message.php:503
#: mod/message.php:477
msgid "Delete message"
msgstr "Nachricht löschen"
#: mod/message.php:529 mod/message.php:609
#: mod/message.php:503 mod/message.php:583
msgid "Delete conversation"
msgstr "Unterhaltung löschen"
#: mod/message.php:531
#: mod/message.php:505
msgid ""
"No secure communications available. You <strong>may</strong> be able to "
"respond from the sender's profile page."
msgstr "Sichere Kommunikation ist nicht verfügbar. <strong>Eventuell</strong> kannst Du auf der Profilseite des Absenders antworten."
#: mod/message.php:535
#: mod/message.php:509
msgid "Send Reply"
msgstr "Antwort senden"
#: mod/message.php:579
#: mod/message.php:553
#, php-format
msgid "Unknown sender - %s"
msgstr "'Unbekannter Absender - %s"
#: mod/message.php:581
#: mod/message.php:555
#, php-format
msgid "You and %s"
msgstr "Du und %s"
#: mod/message.php:583
#: mod/message.php:557
#, php-format
msgid "%s and You"
msgstr "%s und Du"
#: mod/message.php:612
#: mod/message.php:586
msgid "D, d M Y - g:i A"
msgstr "D, d. M Y - g:i A"
#: mod/message.php:615
#: mod/message.php:589
#, php-format
msgid "%d message"
msgid_plural "%d messages"
msgstr[0] "%d Nachricht"
msgstr[1] "%d Nachrichten"
#: mod/manage.php:139
msgid "Manage Identities and/or Pages"
msgstr "Verwalte Identitäten und/oder Seiten"
#: mod/p.php:9
msgid "Not Extended"
msgstr "Nicht erweitert."
#: mod/manage.php:140
msgid ""
"Toggle between different identities or community/group pages which share "
"your account details or which you have been granted \"manage\" permissions"
msgstr "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die Deine Kontoinformationen teilen oder zu denen Du „Verwalten“-Befugnisse bekommen hast."
#: mod/ping.php:270
msgid "{0} wants to be your friend"
msgstr "{0} möchte mit Dir in Kontakt treten"
#: mod/manage.php:141
msgid "Select an identity to manage: "
msgstr "Wähle eine Identität zum Verwalten aus: "
#: mod/ping.php:285
msgid "{0} sent you a message"
msgstr "{0} schickte Dir eine Nachricht"
#: mod/crepair.php:87
msgid "Contact settings applied."
msgstr "Einstellungen zum Kontakt angewandt."
#: mod/ping.php:300
msgid "{0} requested registration"
msgstr "{0} möchte sich registrieren"
#: mod/crepair.php:89
msgid "Contact update failed."
msgstr "Konnte den Kontakt nicht aktualisieren."
#: mod/crepair.php:114 mod/fsuggest.php:20 mod/fsuggest.php:92
#: mod/dfrn_confirm.php:126
msgid "Contact not found."
msgstr "Kontakt nicht gefunden."
#: mod/crepair.php:120
msgid ""
"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
" information your communications with this contact may stop working."
msgstr "<strong>ACHTUNG: Das sind Experten-Einstellungen!</strong> Wenn Du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr."
#: mod/crepair.php:121
msgid ""
"Please use your browser 'Back' button <strong>now</strong> if you are "
"uncertain what to do on this page."
msgstr "Bitte nutze den Zurück-Button Deines Browsers <strong>jetzt</strong>, wenn Du Dir unsicher bist, was Du tun willst."
#: mod/crepair.php:134 mod/crepair.php:136
msgid "No mirroring"
msgstr "Kein Spiegeln"
#: mod/crepair.php:134
msgid "Mirror as forwarded posting"
msgstr "Spiegeln als weitergeleitete Beiträge"
#: mod/crepair.php:134 mod/crepair.php:136
msgid "Mirror as my own posting"
msgstr "Spiegeln als meine eigenen Beiträge"
#: mod/crepair.php:150
msgid "Return to contact editor"
msgstr "Zurück zum Kontakteditor"
#: mod/crepair.php:152
msgid "Refetch contact data"
msgstr "Kontaktdaten neu laden"
#: mod/crepair.php:156
msgid "Remote Self"
msgstr "Entfernte Konten"
#: mod/crepair.php:159
msgid "Mirror postings from this contact"
msgstr "Spiegle Beiträge dieses Kontakts"
#: mod/crepair.php:161
msgid ""
"Mark this contact as remote_self, this will cause friendica to repost new "
"entries from this contact."
msgstr "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all Deine Kontakte zu senden."
#: mod/crepair.php:165 mod/settings.php:680 mod/settings.php:706
#: mod/admin.php:1396 mod/admin.php:1409 mod/admin.php:1422 mod/admin.php:1438
msgid "Name"
msgstr "Name"
#: mod/crepair.php:166
msgid "Account Nickname"
msgstr "Konto-Spitzname"
#: mod/crepair.php:167
msgid "@Tagname - overrides Name/Nickname"
msgstr "@Tagname - überschreibt Name/Spitzname"
#: mod/crepair.php:168
msgid "Account URL"
msgstr "Konto-URL"
#: mod/crepair.php:169
msgid "Friend Request URL"
msgstr "URL für Kontaktschaftsanfragen"
#: mod/crepair.php:170
msgid "Friend Confirm URL"
msgstr "URL für Bestätigungen von Kontaktanfragen"
#: mod/crepair.php:171
msgid "Notification Endpoint URL"
msgstr "URL-Endpunkt für Benachrichtigungen"
#: mod/crepair.php:172
msgid "Poll/Feed URL"
msgstr "Pull/Feed-URL"
#: mod/crepair.php:173
msgid "New photo from this URL"
msgstr "Neues Foto von dieser URL"
#: mod/content.php:119 mod/network.php:469
msgid "No such group"
msgstr "Es gibt keine solche Gruppe"
#: mod/content.php:135 mod/network.php:500
#: mod/wallmessage.php:42 mod/wallmessage.php:106
#, php-format
msgid "Group: %s"
msgstr "Gruppe: %s"
msgid "Number of daily wall messages for %s exceeded. Message failed."
msgstr "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen."
#: mod/content.php:325 object/Item.php:95
msgid "This entry was edited"
msgstr "Dieser Beitrag wurde bearbeitet."
#: mod/wallmessage.php:53
msgid "Unable to check your home location."
msgstr "Konnte Deinen Heimatort nicht bestimmen."
#: mod/content.php:621 object/Item.php:429
#: mod/wallmessage.php:80 mod/wallmessage.php:89
msgid "No recipient."
msgstr "Kein Empfänger."
#: mod/wallmessage.php:127
#, php-format
msgid "%d comment"
msgid_plural "%d comments"
msgstr[0] "%d Kommentar"
msgstr[1] "%d Kommentare"
msgid ""
"If you wish for %s to respond, please check that the privacy settings on "
"your site allow private mail from unknown senders."
msgstr "Wenn Du möchtest, dass %s Dir antworten kann, überprüfe Deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern."
#: mod/content.php:638 mod/photos.php:1379 object/Item.php:117
msgid "Private Message"
msgstr "Private Nachricht"
#: mod/photos.php:90 mod/photos.php:1876
msgid "Recent Photos"
msgstr "Neueste Fotos"
#: mod/content.php:702 mod/photos.php:1567 object/Item.php:263
msgid "I like this (toggle)"
msgstr "Ich mag das (toggle)"
#: mod/photos.php:93 mod/photos.php:1303 mod/photos.php:1878
msgid "Upload New Photos"
msgstr "Neue Fotos hochladen"
#: mod/content.php:702 object/Item.php:263
msgid "like"
msgstr "mag ich"
#: mod/photos.php:171
msgid "Contact information unavailable"
msgstr "Kontaktinformationen nicht verfügbar"
#: mod/content.php:703 mod/photos.php:1568 object/Item.php:264
msgid "I don't like this (toggle)"
msgstr "Ich mag das nicht (toggle)"
#: mod/photos.php:192
msgid "Album not found."
msgstr "Album nicht gefunden."
#: mod/content.php:703 object/Item.php:264
msgid "dislike"
msgstr "mag ich nicht"
#: mod/photos.php:225 mod/photos.php:237 mod/photos.php:1247
msgid "Delete Album"
msgstr "Album löschen"
#: mod/content.php:705 object/Item.php:266
msgid "Share this"
msgstr "Weitersagen"
#: mod/photos.php:235
msgid "Do you really want to delete this photo album and all its photos?"
msgstr "Möchtest Du wirklich dieses Foto-Album und all seine Foto löschen?"
#: mod/content.php:705 object/Item.php:266
msgid "share"
msgstr "Teilen"
#: mod/photos.php:317 mod/photos.php:328 mod/photos.php:1563
msgid "Delete Photo"
msgstr "Foto löschen"
#: mod/content.php:725 mod/photos.php:1587 mod/photos.php:1635
#: mod/photos.php:1721 object/Item.php:717
msgid "This is you"
msgstr "Das bist Du"
#: mod/photos.php:326
msgid "Do you really want to delete this photo?"
msgstr "Möchtest Du wirklich dieses Foto löschen?"
#: mod/content.php:727 mod/content.php:945 mod/photos.php:1589
#: mod/photos.php:1637 mod/photos.php:1723 object/Item.php:403
#: object/Item.php:719 boot.php:971
msgid "Comment"
msgstr "Kommentar"
#: mod/photos.php:705
#, php-format
msgid "%1$s was tagged in %2$s by %3$s"
msgstr "%1$s wurde von %3$s in %2$s getaggt"
#: mod/content.php:729 object/Item.php:721
msgid "Bold"
msgstr "Fett"
#: mod/photos.php:705
msgid "a photo"
msgstr "einem Foto"
#: mod/content.php:730 object/Item.php:722
msgid "Italic"
msgstr "Kursiv"
#: mod/photos.php:811
msgid "Image file is empty."
msgstr "Bilddatei ist leer."
#: mod/content.php:731 object/Item.php:723
msgid "Underline"
msgstr "Unterstrichen"
#: mod/photos.php:974
msgid "No photos selected"
msgstr "Keine Bilder ausgewählt"
#: mod/content.php:732 object/Item.php:724
msgid "Quote"
msgstr "Zitat"
#: mod/photos.php:1134
#, php-format
msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
msgstr "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers."
#: mod/content.php:733 object/Item.php:725
msgid "Code"
msgstr "Code"
#: mod/photos.php:1168
msgid "Upload Photos"
msgstr "Bilder hochladen"
#: mod/content.php:734 object/Item.php:726
msgid "Image"
msgstr "Bild"
#: mod/photos.php:1172 mod/photos.php:1242
msgid "New album name: "
msgstr "Name des neuen Albums: "
#: mod/content.php:735 object/Item.php:727
msgid "Link"
msgstr "Link"
#: mod/photos.php:1173
msgid "or existing album name: "
msgstr "oder existierender Albumname: "
#: mod/content.php:736 object/Item.php:728
msgid "Video"
msgstr "Video"
#: mod/photos.php:1174
msgid "Do not show a status post for this upload"
msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen"
#: mod/content.php:746 mod/settings.php:740 object/Item.php:122
#: object/Item.php:124
msgid "Edit"
msgstr "Bearbeiten"
#: mod/photos.php:1187
msgid "Private Photo"
msgstr "Privates Foto"
#: mod/content.php:771 object/Item.php:227
msgid "add star"
msgstr "markieren"
#: mod/photos.php:1188
msgid "Public Photo"
msgstr "Öffentliches Foto"
#: mod/content.php:772 object/Item.php:228
msgid "remove star"
msgstr "Markierung entfernen"
#: mod/photos.php:1254
msgid "Edit Album"
msgstr "Album bearbeiten"
#: mod/content.php:773 object/Item.php:229
msgid "toggle star status"
msgstr "Markierung umschalten"
#: mod/photos.php:1260
msgid "Show Newest First"
msgstr "Zeige neueste zuerst"
#: mod/content.php:776 object/Item.php:232
msgid "starred"
msgstr "markiert"
#: mod/photos.php:1262
msgid "Show Oldest First"
msgstr "Zeige älteste zuerst"
#: mod/content.php:777 mod/content.php:798 object/Item.php:252
msgid "add tag"
#: mod/photos.php:1289 mod/photos.php:1861
msgid "View Photo"
msgstr "Foto betrachten"
#: mod/photos.php:1335
msgid "Permission denied. Access to this item may be restricted."
msgstr "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein."
#: mod/photos.php:1337
msgid "Photo not available"
msgstr "Foto nicht verfügbar"
#: mod/photos.php:1395
msgid "View photo"
msgstr "Fotos ansehen"
#: mod/photos.php:1395
msgid "Edit photo"
msgstr "Foto bearbeiten"
#: mod/photos.php:1396
msgid "Use as profile photo"
msgstr "Als Profilbild verwenden"
#: mod/photos.php:1421
msgid "View Full Size"
msgstr "Betrachte Originalgröße"
#: mod/photos.php:1507
msgid "Tags: "
msgstr "Tags: "
#: mod/photos.php:1510
msgid "[Remove any tag]"
msgstr "[Tag entfernen]"
#: mod/photos.php:1549
msgid "New album name"
msgstr "Name des neuen Albums"
#: mod/photos.php:1550
msgid "Caption"
msgstr "Bildunterschrift"
#: mod/photos.php:1551
msgid "Add a Tag"
msgstr "Tag hinzufügen"
#: mod/content.php:787 object/Item.php:240
msgid "ignore thread"
msgstr "Thread ignorieren"
#: mod/content.php:788 object/Item.php:241
msgid "unignore thread"
msgstr "Thread nicht mehr ignorieren"
#: mod/content.php:789 object/Item.php:242
msgid "toggle ignore status"
msgstr "Ignoriert-Status ein-/ausschalten"
#: mod/content.php:803 object/Item.php:137
msgid "save to folder"
msgstr "In Ordner speichern"
#: mod/content.php:848 object/Item.php:201
msgid "I will attend"
msgstr "Ich werde teilnehmen"
#: mod/content.php:848 object/Item.php:201
msgid "I will not attend"
msgstr "Ich werde nicht teilnehmen"
#: mod/content.php:848 object/Item.php:201
msgid "I might attend"
msgstr "Ich werde eventuell teilnehmen"
#: mod/content.php:912 object/Item.php:369
msgid "to"
msgstr "zu"
#: mod/content.php:913 object/Item.php:371
msgid "Wall-to-Wall"
msgstr "Wall-to-Wall"
#: mod/content.php:914 object/Item.php:372
msgid "via Wall-To-Wall:"
msgstr "via Wall-To-Wall:"
#: mod/fsuggest.php:63
msgid "Friend suggestion sent."
msgstr "Kontaktvorschlag gesendet."
#: mod/fsuggest.php:97
msgid "Suggest Friends"
msgstr "Kontakte vorschlagen"
#: mod/fsuggest.php:99
#, php-format
msgid "Suggest a friend for %s"
msgstr "Schlage %s einen Kontakt vor"
#: mod/mood.php:133
msgid "Mood"
msgstr "Stimmung"
#: mod/mood.php:134
msgid "Set your current mood and tell your friends"
msgstr "Wähle Deine aktuelle Stimmung und erzähle sie Deinen Kontakten"
#: mod/poke.php:192
msgid "Poke/Prod"
msgstr "Anstupsen"
#: mod/poke.php:193
msgid "poke, prod or do other things to somebody"
msgstr "Stupse Leute an oder mache anderes mit ihnen"
#: mod/poke.php:194
msgid "Recipient"
msgstr "Empfänger"
#: mod/poke.php:195
msgid "Choose what you wish to do to recipient"
msgstr "Was willst Du mit dem Empfänger machen:"
#: mod/poke.php:198
msgid "Make this post private"
msgstr "Diesen Beitrag privat machen"
#: mod/profile_photo.php:44
msgid "Image uploaded but image cropping failed."
msgstr "Bild hochgeladen, aber das Zuschneiden schlug fehl."
#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91
#: mod/profile_photo.php:314
#, php-format
msgid "Image size reduction [%s] failed."
msgstr "Verkleinern der Bildgröße von [%s] scheiterte."
#: mod/profile_photo.php:124
#: mod/photos.php:1551
msgid ""
"Shift-reload the page or clear browser cache if the new photo does not "
"display immediately."
msgstr "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird."
"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
#: mod/profile_photo.php:134
msgid "Unable to process image"
msgstr "Bild konnte nicht verarbeitet werden"
#: mod/photos.php:1552
msgid "Do not rotate"
msgstr "Nicht rotieren"
#: mod/profile_photo.php:150 mod/photos.php:786 mod/wall_upload.php:151
#: mod/photos.php:1553
msgid "Rotate CW (right)"
msgstr "Drehen US (rechts)"
#: mod/photos.php:1554
msgid "Rotate CCW (left)"
msgstr "Drehen EUS (links)"
#: mod/photos.php:1569
msgid "Private photo"
msgstr "Privates Foto"
#: mod/photos.php:1570
msgid "Public photo"
msgstr "Öffentliches Foto"
#: mod/photos.php:1792
msgid "Map"
msgstr "Karte"
#: mod/dfrn_request.php:101
msgid "This introduction has already been accepted."
msgstr "Diese Kontaktanfrage wurde bereits akzeptiert."
#: mod/dfrn_request.php:124 mod/dfrn_request.php:523
msgid "Profile location is not valid or does not contain profile information."
msgstr "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung."
#: mod/dfrn_request.php:129 mod/dfrn_request.php:528
msgid "Warning: profile location has no identifiable owner name."
msgstr "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden."
#: mod/dfrn_request.php:132 mod/dfrn_request.php:531
msgid "Warning: profile location has no profile photo."
msgstr "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse."
#: mod/dfrn_request.php:136 mod/dfrn_request.php:535
#, php-format
msgid "Image exceeds size limit of %s"
msgstr "Bildgröße überschreitet das Limit von %s"
msgid "%d required parameter was not found at the given location"
msgid_plural "%d required parameters were not found at the given location"
msgstr[0] "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden"
msgstr[1] "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden"
#: mod/profile_photo.php:159 mod/photos.php:826 mod/wall_upload.php:188
msgid "Unable to process image."
msgstr "Konnte das Bild nicht bearbeiten."
#: mod/dfrn_request.php:180
msgid "Introduction complete."
msgstr "Kontaktanfrage abgeschlossen."
#: mod/profile_photo.php:248
msgid "Upload File:"
msgstr "Datei hochladen:"
#: mod/dfrn_request.php:225
msgid "Unrecoverable protocol error."
msgstr "Nicht behebbarer Protokollfehler."
#: mod/profile_photo.php:249
msgid "Select a profile:"
msgstr "Profil auswählen:"
#: mod/dfrn_request.php:253
msgid "Profile unavailable."
msgstr "Profil nicht verfügbar."
#: mod/profile_photo.php:251
msgid "Upload"
msgstr "Hochladen"
#: mod/profile_photo.php:254
msgid "or"
msgstr "oder"
#: mod/profile_photo.php:254
msgid "skip this step"
msgstr "diesen Schritt überspringen"
#: mod/profile_photo.php:254
msgid "select a photo from your photo albums"
msgstr "wähle ein Foto aus deinen Fotoalben"
#: mod/profile_photo.php:268
msgid "Crop Image"
msgstr "Bild zurechtschneiden"
#: mod/profile_photo.php:269
msgid "Please adjust the image cropping for optimum viewing."
msgstr "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann."
#: mod/profile_photo.php:271
msgid "Done Editing"
msgstr "Bearbeitung abgeschlossen"
#: mod/profile_photo.php:305
msgid "Image uploaded successfully."
msgstr "Bild erfolgreich hochgeladen."
#: mod/profile_photo.php:307 mod/photos.php:853 mod/wall_upload.php:221
msgid "Image upload failed."
msgstr "Hochladen des Bildes gescheitert."
#: mod/regmod.php:55
msgid "Account approved."
msgstr "Konto freigegeben."
#: mod/regmod.php:92
#: mod/dfrn_request.php:280
#, php-format
msgid "Registration revoked for %s"
msgstr "Registrierung für %s wurde zurückgezogen"
msgid "%s has received too many connection requests today."
msgstr "%s hat heute zu viele Kontaktanfragen erhalten."
#: mod/regmod.php:104
msgid "Please login."
msgstr "Bitte melde Dich an."
#: mod/dfrn_request.php:281
msgid "Spam protection measures have been invoked."
msgstr "Maßnahmen zum Spamschutz wurden ergriffen."
#: mod/notifications.php:35
msgid "Invalid request identifier."
msgstr "Invalid request identifier."
#: mod/dfrn_request.php:282
msgid "Friends are advised to please try again in 24 hours."
msgstr "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen."
#: mod/notifications.php:44 mod/notifications.php:180
#: mod/notifications.php:252
msgid "Discard"
msgstr "Verwerfen"
#: mod/dfrn_request.php:344
msgid "Invalid locator"
msgstr "Ungültiger Locator"
#: mod/notifications.php:60 mod/notifications.php:179
#: mod/notifications.php:251 mod/contacts.php:606 mod/contacts.php:806
#: mod/contacts.php:991
msgid "Ignore"
msgstr "Ignorieren"
#: mod/dfrn_request.php:353
msgid "Invalid email address."
msgstr "Ungültige E-Mail-Adresse."
#: mod/notifications.php:105
msgid "Network Notifications"
msgstr "Netzwerk Benachrichtigungen"
#: mod/dfrn_request.php:378
msgid "This account has not been configured for email. Request failed."
msgstr "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen."
#: mod/notifications.php:117
msgid "Personal Notifications"
msgstr "Persönliche Benachrichtigungen"
#: mod/dfrn_request.php:481
msgid "You have already introduced yourself here."
msgstr "Du hast Dich hier bereits vorgestellt."
#: mod/notifications.php:123
msgid "Home Notifications"
msgstr "Pinnwand Benachrichtigungen"
#: mod/notifications.php:152
msgid "Show Ignored Requests"
msgstr "Zeige ignorierte Anfragen"
#: mod/notifications.php:152
msgid "Hide Ignored Requests"
msgstr "Verberge ignorierte Anfragen"
#: mod/notifications.php:164 mod/notifications.php:222
msgid "Notification type: "
msgstr "Benachrichtigungstyp: "
#: mod/notifications.php:167
#: mod/dfrn_request.php:485
#, php-format
msgid "suggested by %s"
msgstr "vorgeschlagen von %s"
msgid "Apparently you are already friends with %s."
msgstr "Es scheint so, als ob Du bereits mit %s in Kontakt stehst."
#: mod/notifications.php:172 mod/notifications.php:239 mod/contacts.php:613
msgid "Hide this contact from others"
msgstr "Verbirg diesen Kontakt vor Anderen"
#: mod/dfrn_request.php:506
msgid "Invalid profile URL."
msgstr "Ungültige Profil-URL."
#: mod/notifications.php:173 mod/notifications.php:240
msgid "Post a new friend activity"
msgstr "Neue-Kontakt Nachricht senden"
#: mod/dfrn_request.php:609
msgid "Your introduction has been sent."
msgstr "Deine Kontaktanfrage wurde gesendet."
#: mod/notifications.php:173 mod/notifications.php:240
msgid "if applicable"
msgstr "falls anwendbar"
#: mod/notifications.php:176 mod/notifications.php:249 mod/admin.php:1412
msgid "Approve"
msgstr "Genehmigen"
#: mod/notifications.php:195
msgid "Claims to be known to you: "
msgstr "Behauptet Dich zu kennen: "
#: mod/notifications.php:196
msgid "yes"
msgstr "ja"
#: mod/notifications.php:196
msgid "no"
msgstr "nein"
#: mod/notifications.php:197
#: mod/dfrn_request.php:651
msgid ""
"Shall your connection be bidirectional or not? \"Friend\" implies that you "
"allow to read and you subscribe to their posts. \"Fan/Admirer\" means that "
"you allow to read but you do not want to read theirs. Approve as: "
msgstr "Soll Deine Beziehung beidseitig sein oder nicht? \"Kontakt\" bedeutet, ihr könnt gegenseitig die Beiträge des Anderen lesen dürft. \"Fan/Verehrer\", dass du das lesen deiner Beiträge erlaubst aber nicht die Beiträge der anderen Seite lesen möchtest. Genehmigen als:"
"Remote subscription can't be done for your network. Please subscribe "
"directly on your system."
msgstr "Entferntes abon­nie­ren kann für dein Netzwerk nicht durchgeführt werden. Bitte nutze direkt die Abonnieren-Funktion deines Systems. "
#: mod/notifications.php:200
#: mod/dfrn_request.php:672
msgid "Please login to confirm introduction."
msgstr "Bitte melde Dich an, um die Kontaktanfrage zu bestätigen."
#: mod/dfrn_request.php:682
msgid ""
"Shall your connection be bidirectional or not? \"Friend\" implies that you "
"allow to read and you subscribe to their posts. \"Sharer\" means that you "
"allow to read but you do not want to read theirs. Approve as: "
msgstr "Soll Deine Beziehung beidseitig sein oder nicht? \"Kontakt\" bedeutet, ihr gegenseitig die Beiträge des Anderen lesen dürft. \"Teilenden\", das du das lesen deiner Beiträge erlaubst aber nicht die Beiträge der anderen Seite lesen möchtest. Genehmigen als:"
"Incorrect identity currently logged in. Please login to "
"<strong>this</strong> profile."
msgstr "Momentan bist Du mit einer anderen Identität angemeldet. Bitte melde Dich mit <strong>diesem</strong> Profil an."
#: mod/notifications.php:209
msgid "Friend"
msgstr "Kontakt"
#: mod/dfrn_request.php:696 mod/dfrn_request.php:713
msgid "Confirm"
msgstr "Bestätigen"
#: mod/notifications.php:210
msgid "Sharer"
msgstr "Teilenden"
#: mod/dfrn_request.php:708
msgid "Hide this contact"
msgstr "Verberge diesen Kontakt"
#: mod/notifications.php:210
msgid "Fan/Admirer"
msgstr "Fan/Verehrer"
#: mod/notifications.php:243 mod/contacts.php:624 mod/follow.php:126
msgid "Profile URL"
msgstr "Profil URL"
#: mod/notifications.php:260
msgid "No introductions."
msgstr "Keine Kontaktanfragen."
#: mod/notifications.php:299
msgid "Show unread"
msgstr "Ungelesene anzeigen"
#: mod/notifications.php:299
msgid "Show all"
msgstr "Alle anzeigen"
#: mod/notifications.php:305
#: mod/dfrn_request.php:711
#, php-format
msgid "No more %s notifications."
msgstr "Keine weiteren %s Benachrichtigungen"
msgid "Welcome home %s."
msgstr "Willkommen zurück %s."
#: mod/profiles.php:19 mod/profiles.php:134 mod/profiles.php:180
#: mod/profiles.php:617 mod/dfrn_confirm.php:70
msgid "Profile not found."
msgstr "Profil nicht gefunden."
#: mod/dfrn_request.php:712
#, php-format
msgid "Please confirm your introduction/connection request to %s."
msgstr "Bitte bestätige Deine Kontaktanfrage bei %s."
#: mod/dfrn_request.php:843
msgid ""
"Please enter your 'Identity Address' from one of the following supported "
"communications networks:"
msgstr "Bitte gib die Adresse Deines Profils in einem der unterstützten sozialen Netzwerke an:"
#: mod/dfrn_request.php:867
#, php-format
msgid ""
"If you are not yet a member of the free social web, <a "
"href=\"%s/siteinfo\">follow this link to find a public Friendica site and "
"join us today</a>."
msgstr "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, <a href=\"%s/siteinfo\">folge diesem Link</a> um einen öffentlichen Friendica-Server zu finden und beizutreten."
#: mod/dfrn_request.php:872
msgid "Friend/Connection Request"
msgstr "Kontaktanfrage"
#: mod/dfrn_request.php:873
msgid ""
"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
"testuser@identi.ca"
msgstr "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
#: mod/dfrn_request.php:882
msgid "StatusNet/Federated Social Web"
msgstr "StatusNet/Federated Social Web"
#: mod/dfrn_request.php:884
#, php-format
msgid ""
" - please do not use this form. Instead, enter %s into your Diaspora search"
" bar."
msgstr " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in Deiner Diaspora Suchleiste."
#: mod/install.php:140
msgid "Friendica Communications Server - Setup"
msgstr "Friendica-Server für soziale Netzwerke Setup"
#: mod/install.php:146
msgid "Could not connect to database."
msgstr "Verbindung zur Datenbank gescheitert."
#: mod/install.php:150
msgid "Could not create table."
msgstr "Tabelle konnte nicht angelegt werden."
#: mod/install.php:156
msgid "Your Friendica site database has been installed."
msgstr "Die Datenbank Deiner Friendicaseite wurde installiert."
#: mod/install.php:161
msgid ""
"You may need to import the file \"database.sql\" manually using phpmyadmin "
"or mysql."
msgstr "Möglicherweise musst Du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren."
#: mod/install.php:162 mod/install.php:234 mod/install.php:609
msgid "Please see the file \"INSTALL.txt\"."
msgstr "Lies bitte die \"INSTALL.txt\"."
#: mod/install.php:174
msgid "Database already in use."
msgstr "Die Datenbank wird bereits verwendet."
#: mod/install.php:231
msgid "System check"
msgstr "Systemtest"
#: mod/install.php:236
msgid "Check again"
msgstr "Noch einmal testen"
#: mod/install.php:255
msgid "Database connection"
msgstr "Datenbankverbindung"
#: mod/install.php:256
msgid ""
"In order to install Friendica we need to know how to connect to your "
"database."
msgstr "Um Friendica installieren zu können, müssen wir wissen, wie wir mit Deiner Datenbank Kontakt aufnehmen können."
#: mod/install.php:257
msgid ""
"Please contact your hosting provider or site administrator if you have "
"questions about these settings."
msgstr "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls Du Fragen zu diesen Einstellungen haben solltest."
#: mod/install.php:258
msgid ""
"The database you specify below should already exist. If it does not, please "
"create it before continuing."
msgstr "Die Datenbank, die Du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte bevor Du mit der Installation fortfährst."
#: mod/install.php:262
msgid "Database Server Name"
msgstr "Datenbank-Server"
#: mod/install.php:263
msgid "Database Login Name"
msgstr "Datenbank-Nutzer"
#: mod/install.php:264
msgid "Database Login Password"
msgstr "Datenbank-Passwort"
#: mod/install.php:264
msgid "For security reasons the password must not be empty"
msgstr "Aus Sicherheitsgründen darf das Passwort nicht leer sein."
#: mod/install.php:265
msgid "Database Name"
msgstr "Datenbank-Name"
#: mod/install.php:266 mod/install.php:307
msgid "Site administrator email address"
msgstr "E-Mail-Adresse des Administrators"
#: mod/install.php:266 mod/install.php:307
msgid ""
"Your account email address must match this in order to use the web admin "
"panel."
msgstr "Die E-Mail-Adresse, die in Deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit Du das Admin-Panel benutzen kannst."
#: mod/install.php:270 mod/install.php:310
msgid "Please select a default timezone for your website"
msgstr "Bitte wähle die Standardzeitzone Deiner Webseite"
#: mod/install.php:297
msgid "Site settings"
msgstr "Server-Einstellungen"
#: mod/install.php:311
msgid "System Language:"
msgstr "Systemsprache:"
#: mod/install.php:311
msgid ""
"Set the default language for your Friendica installation interface and to "
"send emails."
msgstr "Wähle die Standardsprache für deine Friendica-Installations-Oberfläche und den E-Mail-Versand"
#: mod/install.php:351
msgid "Could not find a command line version of PHP in the web server PATH."
msgstr "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden."
#: mod/install.php:352
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. See <a "
"href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-"
"up-the-poller'>'Setup the poller'</a>"
msgstr "Wenn Du keine Kommandozeilen-Version von PHP auf Deinem Server installiert hast, kannst Du keine Hintergrundprozesse via cron starten. Siehe <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'Setup the poller'</a>"
#: mod/install.php:356
msgid "PHP executable path"
msgstr "Pfad zu PHP"
#: mod/install.php:356
msgid ""
"Enter full path to php executable. You can leave this blank to continue the "
"installation."
msgstr "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren."
#: mod/install.php:361
msgid "Command line PHP"
msgstr "Kommandozeilen-PHP"
#: mod/install.php:370
msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
msgstr "Die ausführbare Datei von PHP stimmt nicht mit der PHP cli Version überein (es könnte sich um die cgi-fgci Version handeln)"
#: mod/install.php:371
msgid "Found PHP version: "
msgstr "Gefundene PHP Version:"
#: mod/install.php:373
msgid "PHP cli binary"
msgstr "PHP CLI Binary"
#: mod/install.php:384
msgid ""
"The command line version of PHP on your system does not have "
"\"register_argc_argv\" enabled."
msgstr "Die Kommandozeilenversion von PHP auf Deinem System hat \"register_argc_argv\" nicht aktiviert."
#: mod/install.php:385
msgid "This is required for message delivery to work."
msgstr "Dies wird für die Auslieferung von Nachrichten benötigt."
#: mod/install.php:387
msgid "PHP register_argc_argv"
msgstr "PHP register_argc_argv"
#: mod/install.php:410
msgid ""
"Error: the \"openssl_pkey_new\" function on this system is not able to "
"generate encryption keys"
msgstr "Fehler: Die Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen"
#: mod/install.php:411
msgid ""
"If running under Windows, please see "
"\"http://www.php.net/manual/en/openssl.installation.php\"."
msgstr "Wenn der Server unter Windows läuft, schau Dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an."
#: mod/install.php:413
msgid "Generate encryption keys"
msgstr "Schlüssel erzeugen"
#: mod/install.php:420
msgid "libCurl PHP module"
msgstr "PHP: libCurl-Modul"
#: mod/install.php:421
msgid "GD graphics PHP module"
msgstr "PHP: GD-Grafikmodul"
#: mod/install.php:422
msgid "OpenSSL PHP module"
msgstr "PHP: OpenSSL-Modul"
#: mod/install.php:423
msgid "mysqli PHP module"
msgstr "PHP: mysqli-Modul"
#: mod/install.php:424
msgid "mb_string PHP module"
msgstr "PHP: mb_string-Modul"
#: mod/install.php:425
msgid "mcrypt PHP module"
msgstr "PHP mcrypt Modul"
#: mod/install.php:426
msgid "XML PHP module"
msgstr "XML PHP Modul"
#: mod/install.php:427
msgid "iconv module"
msgstr "iconv module"
#: mod/install.php:431 mod/install.php:433
msgid "Apache mod_rewrite module"
msgstr "Apache mod_rewrite module"
#: mod/install.php:431
msgid ""
"Error: Apache webserver mod-rewrite module is required but not installed."
msgstr "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert."
#: mod/install.php:439
msgid "Error: libCURL PHP module required but not installed."
msgstr "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert."
#: mod/install.php:443
msgid ""
"Error: GD graphics PHP module with JPEG support required but not installed."
msgstr "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert."
#: mod/install.php:447
msgid "Error: openssl PHP module required but not installed."
msgstr "Fehler: Das openssl-Modul von PHP ist nicht installiert."
#: mod/install.php:451
msgid "Error: mysqli PHP module required but not installed."
msgstr "Fehler: Das mysqli-Modul von PHP ist nicht installiert."
#: mod/install.php:455
msgid "Error: mb_string PHP module required but not installed."
msgstr "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert."
#: mod/install.php:459
msgid "Error: mcrypt PHP module required but not installed."
msgstr "Fehler: Das mcrypt Modul von PHP ist nicht installiert"
#: mod/install.php:463
msgid "Error: iconv PHP module required but not installed."
msgstr "Fehler: Das iconv-Modul von PHP ist nicht installiert."
#: mod/install.php:472
msgid ""
"If you are using php_cli, please make sure that mcrypt module is enabled in "
"its config file"
msgstr "Wenn du das Modul \"php_cli\" benutzt dann versichere dich, daß das mcrypt Modul in seiner Konfigurationsdatei aktiviert ist. "
#: mod/install.php:475
msgid ""
"Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 "
"encryption layer."
msgstr "Die Funktion mcrypt_create_iv() ist nicht festgelegt. Dies ist notwendig um den RINO2-Encryption-Layer zu aktivieren."
#: mod/install.php:477
msgid "mcrypt_create_iv() function"
msgstr "mcrypt_create_iv() function"
#: mod/install.php:485
msgid "Error, XML PHP module required but not installed."
msgstr "Fehler: XML PHP Modul erforderlich aber nicht installiert."
#: mod/install.php:500
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 Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis Deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun."
#: mod/install.php:501
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 "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn Du sie hast."
#: mod/install.php:502
msgid ""
"At the end of this procedure, we will give you a text to save in a file "
"named .htconfig.php in your Friendica top folder."
msgstr "Nachdem Du alles ausgefüllt hast, erhältst Du einen Text, den Du in eine Datei namens .htconfig.php in Deinem Friendica-Wurzelverzeichnis kopieren musst."
#: mod/install.php:503
msgid ""
"You can alternatively skip this procedure and perform a manual installation."
" Please see the file \"INSTALL.txt\" for instructions."
msgstr "Alternativ kannst Du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest Du in der Datei INSTALL.txt."
#: mod/install.php:506
msgid ".htconfig.php is writable"
msgstr "Schreibrechte auf .htconfig.php"
#: mod/install.php:516
msgid ""
"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
"compiles templates to PHP to speed up rendering."
msgstr "Friendica nutzt die Smarty3 Template Engine um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP um das Rendern zu beschleunigen."
#: mod/install.php:517
msgid ""
"In order to store these compiled templates, the web server needs to have "
"write access to the directory view/smarty3/ under the Friendica top level "
"folder."
msgstr "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica."
#: mod/install.php:518
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) Schreibrechte zu diesem Verzeichnis hat."
#: mod/install.php:519
msgid ""
"Note: as a security measure, you should give the web server write access to "
"view/smarty3/ only--not the template files (.tpl) that it contains."
msgstr "Hinweis: aus Sicherheitsgründen solltest Du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht den Templatedateien (.tpl) die sie enthalten."
#: mod/install.php:522
msgid "view/smarty3 is writable"
msgstr "view/smarty3 ist schreibbar"
#: mod/install.php:538
msgid ""
"Url rewrite in .htaccess is not working. Check your server configuration."
msgstr "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers."
#: mod/install.php:540
msgid "Url rewrite is working"
msgstr "URL rewrite funktioniert"
#: mod/install.php:559
msgid "ImageMagick PHP extension is not installed"
msgstr "ImageMagicx PHP Erweiterung ist nicht installiert."
#: mod/install.php:561
msgid "ImageMagick PHP extension is installed"
msgstr "ImageMagick PHP Erweiterung ist installiert"
#: mod/install.php:563
msgid "ImageMagick supports GIF"
msgstr "ImageMagick unterstützt GIF"
#: mod/install.php:570
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 Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis Deiner Friendica-Installation zu erzeugen."
#: mod/install.php:607
msgid "<h1>What next</h1>"
msgstr "<h1>Wie geht es weiter?</h1>"
#: mod/install.php:608
msgid ""
"IMPORTANT: You will need to [manually] setup a scheduled task for the "
"poller."
msgstr "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten."
#: mod/profiles.php:38
msgid "Profile deleted."
@ -4763,7 +6893,7 @@ msgstr "XMPP"
msgid "Homepage"
msgstr "Webseite"
#: mod/profiles.php:381 mod/profiles.php:702
#: mod/profiles.php:381 mod/profiles.php:694
msgid "Interests"
msgstr "Interessen"
@ -4771,7 +6901,7 @@ msgstr "Interessen"
msgid "Address"
msgstr "Adresse"
#: mod/profiles.php:392 mod/profiles.php:698
#: mod/profiles.php:392 mod/profiles.php:690
msgid "Location"
msgstr "Wohnort"
@ -4779,1600 +6909,349 @@ msgstr "Wohnort"
msgid "Profile updated."
msgstr "Profil aktualisiert."
#: mod/profiles.php:564
#: mod/profiles.php:565
msgid " and "
msgstr " und "
#: mod/profiles.php:572
#: mod/profiles.php:573
msgid "public profile"
msgstr "öffentliches Profil"
#: mod/profiles.php:575
#: mod/profiles.php:576
#, php-format
msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
msgstr "%1$s hat %2$s geändert auf &ldquo;%3$s&rdquo;"
#: mod/profiles.php:576
#: mod/profiles.php:577
#, php-format
msgid " - Visit %1$s's %2$s"
msgstr " %1$ss %2$s besuchen"
#: mod/profiles.php:579
#: mod/profiles.php:580
#, php-format
msgid "%1$s has an updated %2$s, changing %3$s."
msgstr "%1$s hat folgendes aktualisiert %2$s, verändert wurde %3$s."
#: mod/profiles.php:645
#: mod/profiles.php:637
msgid "Hide contacts and friends:"
msgstr "Kontakte und Freunde verbergen"
#: mod/profiles.php:650
#: mod/profiles.php:642
msgid "Hide your contact/friend list from viewers of this profile?"
msgstr "Liste der Kontakte vor Betrachtern dieses Profils verbergen?"
#: mod/profiles.php:674
#: mod/profiles.php:666
msgid "Show more profile fields:"
msgstr "Zeige mehr Profil-Felder:"
#: mod/profiles.php:686
#: mod/profiles.php:678
msgid "Profile Actions"
msgstr "Profilaktionen"
#: mod/profiles.php:687
#: mod/profiles.php:679
msgid "Edit Profile Details"
msgstr "Profil bearbeiten"
#: mod/profiles.php:689
#: mod/profiles.php:681
msgid "Change Profile Photo"
msgstr "Profilbild ändern"
#: mod/profiles.php:690
#: mod/profiles.php:682
msgid "View this profile"
msgstr "Dieses Profil anzeigen"
#: mod/profiles.php:692
#: mod/profiles.php:684
msgid "Create a new profile using these settings"
msgstr "Neues Profil anlegen und diese Einstellungen verwenden"
#: mod/profiles.php:693
#: mod/profiles.php:685
msgid "Clone this profile"
msgstr "Dieses Profil duplizieren"
#: mod/profiles.php:694
#: mod/profiles.php:686
msgid "Delete this profile"
msgstr "Dieses Profil löschen"
#: mod/profiles.php:696
#: mod/profiles.php:688
msgid "Basic information"
msgstr "Grundinformationen"
#: mod/profiles.php:697
#: mod/profiles.php:689
msgid "Profile picture"
msgstr "Profilbild"
#: mod/profiles.php:699
#: mod/profiles.php:691
msgid "Preferences"
msgstr "Vorlieben"
#: mod/profiles.php:700
#: mod/profiles.php:692
msgid "Status information"
msgstr "Status Informationen"
#: mod/profiles.php:701
#: mod/profiles.php:693
msgid "Additional information"
msgstr "Zusätzliche Informationen"
#: mod/profiles.php:704
#: mod/profiles.php:696
msgid "Relation"
msgstr "Beziehung"
#: mod/profiles.php:708
#: mod/profiles.php:700
msgid "Your Gender:"
msgstr "Dein Geschlecht:"
#: mod/profiles.php:709
#: mod/profiles.php:701
msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
msgstr "<span class=\"heart\">&hearts;</span> Beziehungsstatus:"
#: mod/profiles.php:711
#: mod/profiles.php:703
msgid "Example: fishing photography software"
msgstr "Beispiel: Fischen Fotografie Software"
#: mod/profiles.php:716
#: mod/profiles.php:708
msgid "Profile Name:"
msgstr "Profilname:"
#: mod/profiles.php:716 mod/events.php:484 mod/events.php:496
msgid "Required"
msgstr "Benötigt"
#: mod/profiles.php:718
#: mod/profiles.php:710
msgid ""
"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
"be visible to anybody using the internet."
msgstr "Dies ist Dein <strong>öffentliches</strong> Profil.<br />Es <strong>könnte</strong> für jeden Nutzer des Internets sichtbar sein."
#: mod/profiles.php:719
#: mod/profiles.php:711
msgid "Your Full Name:"
msgstr "Dein kompletter Name:"
#: mod/profiles.php:720
#: mod/profiles.php:712
msgid "Title/Description:"
msgstr "Titel/Beschreibung:"
#: mod/profiles.php:723
#: mod/profiles.php:715
msgid "Street Address:"
msgstr "Adresse:"
#: mod/profiles.php:724
#: mod/profiles.php:716
msgid "Locality/City:"
msgstr "Wohnort:"
#: mod/profiles.php:725
#: mod/profiles.php:717
msgid "Region/State:"
msgstr "Region/Bundesstaat:"
#: mod/profiles.php:726
#: mod/profiles.php:718
msgid "Postal/Zip Code:"
msgstr "Postleitzahl:"
#: mod/profiles.php:727
#: mod/profiles.php:719
msgid "Country:"
msgstr "Land:"
#: mod/profiles.php:731
#: mod/profiles.php:723
msgid "Who: (if applicable)"
msgstr "Wer: (falls anwendbar)"
#: mod/profiles.php:731
#: mod/profiles.php:723
msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com"
#: mod/profiles.php:732
#: mod/profiles.php:724
msgid "Since [date]:"
msgstr "Seit [Datum]:"
#: mod/profiles.php:734
#: mod/profiles.php:726
msgid "Tell us about yourself..."
msgstr "Erzähle uns ein bisschen von Dir …"
#: mod/profiles.php:735
#: mod/profiles.php:727
msgid "XMPP (Jabber) address:"
msgstr "XMPP (Jabber) Adresse"
#: mod/profiles.php:735
#: mod/profiles.php:727
msgid ""
"The XMPP address will be propagated to your contacts so that they can follow"
" you."
msgstr "Die XMPP Adresse wird an deine Kontakte verteilt werden, so dass sie auch über XMPP mit dir in Kontakt treten können."
#: mod/profiles.php:736
#: mod/profiles.php:728
msgid "Homepage URL:"
msgstr "Adresse der Homepage:"
#: mod/profiles.php:739
#: mod/profiles.php:731
msgid "Religious Views:"
msgstr "Religiöse Ansichten:"
#: mod/profiles.php:740
#: mod/profiles.php:732
msgid "Public Keywords:"
msgstr "Öffentliche Schlüsselwörter:"
#: mod/profiles.php:740
#: mod/profiles.php:732
msgid "(Used for suggesting potential friends, can be seen by others)"
msgstr "(Wird verwendet, um potentielle Kontakte zu finden, kann von Kontakten eingesehen werden)"
#: mod/profiles.php:741
#: mod/profiles.php:733
msgid "Private Keywords:"
msgstr "Private Schlüsselwörter:"
#: mod/profiles.php:741
#: mod/profiles.php:733
msgid "(Used for searching profiles, never shown to others)"
msgstr "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)"
#: mod/profiles.php:744
#: mod/profiles.php:736
msgid "Musical interests"
msgstr "Musikalische Interessen"
#: mod/profiles.php:745
#: mod/profiles.php:737
msgid "Books, literature"
msgstr "Bücher, Literatur"
#: mod/profiles.php:746
#: mod/profiles.php:738
msgid "Television"
msgstr "Fernsehen"
#: mod/profiles.php:747
#: mod/profiles.php:739
msgid "Film/dance/culture/entertainment"
msgstr "Filme/Tänze/Kultur/Unterhaltung"
#: mod/profiles.php:748
#: mod/profiles.php:740
msgid "Hobbies/Interests"
msgstr "Hobbies/Interessen"
#: mod/profiles.php:749
#: mod/profiles.php:741
msgid "Love/romance"
msgstr "Liebe/Romantik"
#: mod/profiles.php:750
#: mod/profiles.php:742
msgid "Work/employment"
msgstr "Arbeit/Anstellung"
#: mod/profiles.php:751
#: mod/profiles.php:743
msgid "School/education"
msgstr "Schule/Ausbildung"
#: mod/profiles.php:752
#: mod/profiles.php:744
msgid "Contact information and Social Networks"
msgstr "Kontaktinformationen und Soziale Netzwerke"
#: mod/profiles.php:794
#: mod/profiles.php:788
msgid "Edit/Manage Profiles"
msgstr "Bearbeite/Verwalte Profile"
#: mod/allfriends.php:43
msgid "No friends to display."
msgstr "Keine Kontakte zum Anzeigen."
#: mod/cal.php:149 mod/display.php:328 mod/profile.php:155
msgid "Access to this profile has been restricted."
msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt."
#: mod/cal.php:276 mod/events.php:380
msgid "View"
msgstr "Ansehen"
#: mod/cal.php:277 mod/events.php:382
msgid "Previous"
msgstr "Vorherige"
#: mod/cal.php:278 mod/events.php:383 mod/install.php:231
msgid "Next"
msgstr "Nächste"
#: mod/cal.php:287 mod/events.php:392
msgid "list"
msgstr "Liste"
#: mod/cal.php:297
msgid "User not found"
msgstr "Nutzer nicht gefunden"
#: mod/cal.php:313
msgid "This calendar format is not supported"
msgstr "Dieses Kalenderformat wird nicht unterstützt."
#: mod/cal.php:315
msgid "No exportable data found"
msgstr "Keine exportierbaren Daten gefunden"
#: mod/cal.php:330
msgid "calendar"
msgstr "Kalender"
#: mod/common.php:86
msgid "No contacts in common."
msgstr "Keine gemeinsamen Kontakte."
#: mod/common.php:134 mod/contacts.php:863
msgid "Common Friends"
msgstr "Gemeinsame Kontakte"
#: mod/community.php:27
msgid "Not available."
msgstr "Nicht verfügbar."
#: mod/directory.php:197 view/theme/vier/theme.php:201
msgid "Global Directory"
msgstr "Weltweites Verzeichnis"
#: mod/directory.php:199
msgid "Find on this site"
msgstr "Auf diesem Server suchen"
#: mod/directory.php:201
msgid "Results for:"
msgstr "Ergebnisse für:"
#: mod/directory.php:203
msgid "Site Directory"
msgstr "Verzeichnis"
#: mod/directory.php:210
msgid "No entries (some entries may be hidden)."
msgstr "Keine Einträge (einige Einträge könnten versteckt sein)."
#: mod/dirfind.php:36
#, php-format
msgid "People Search - %s"
msgstr "Personensuche - %s"
#: mod/dirfind.php:47
#, php-format
msgid "Forum Search - %s"
msgstr "Forensuche - %s"
#: mod/dirfind.php:240 mod/match.php:107
msgid "No matches"
msgstr "Keine Übereinstimmungen"
#: mod/display.php:473
#: mod/display.php:479
msgid "Item has been removed."
msgstr "Eintrag wurde entfernt."
#: mod/events.php:95 mod/events.php:97
msgid "Event can not end before it has started."
msgstr "Die Veranstaltung kann nicht enden bevor sie beginnt."
#: mod/events.php:104 mod/events.php:106
msgid "Event title and start time are required."
msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden."
#: mod/events.php:381
msgid "Create New Event"
msgstr "Neue Veranstaltung erstellen"
#: mod/events.php:482
msgid "Event details"
msgstr "Veranstaltungsdetails"
#: mod/events.php:483
msgid "Starting date and Title are required."
msgstr "Anfangszeitpunkt und Titel werden benötigt"
#: mod/events.php:484 mod/events.php:485
msgid "Event Starts:"
msgstr "Veranstaltungsbeginn:"
#: mod/events.php:486 mod/events.php:502
msgid "Finish date/time is not known or not relevant"
msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant"
#: mod/events.php:488 mod/events.php:489
msgid "Event Finishes:"
msgstr "Veranstaltungsende:"
#: mod/events.php:490 mod/events.php:503
msgid "Adjust for viewer timezone"
msgstr "An Zeitzone des Betrachters anpassen"
#: mod/events.php:492
msgid "Description:"
msgstr "Beschreibung"
#: mod/events.php:496 mod/events.php:498
msgid "Title:"
msgstr "Titel:"
#: mod/events.php:499 mod/events.php:500
msgid "Share this event"
msgstr "Veranstaltung teilen"
#: mod/maintenance.php:9
msgid "System down for maintenance"
msgstr "System zur Wartung abgeschaltet"
#: mod/match.php:33
msgid "No keywords to match. Please add keywords to your default profile."
msgstr "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu Deinem Standardprofil hinzu."
#: mod/match.php:86
msgid "is interested in:"
msgstr "ist interessiert an:"
#: mod/match.php:100
msgid "Profile Match"
msgstr "Profilübereinstimmungen"
#: mod/profile.php:179
msgid "Tips for New Members"
msgstr "Tipps für neue Nutzer"
#: mod/suggest.php:27
msgid "Do you really want to delete this suggestion?"
msgstr "Möchtest Du wirklich diese Empfehlung löschen?"
#: mod/suggest.php:71
msgid ""
"No suggestions available. If this is a new site, please try again in 24 "
"hours."
msgstr "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal."
#: mod/suggest.php:84 mod/suggest.php:104
msgid "Ignore/Hide"
msgstr "Ignorieren/Verbergen"
#: mod/update_community.php:19 mod/update_display.php:23
#: mod/update_network.php:27 mod/update_notes.php:36 mod/update_profile.php:35
msgid "[Embedded content - reload page to view]"
msgstr "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]"
#: mod/photos.php:88 mod/photos.php:1856
msgid "Recent Photos"
msgstr "Neueste Fotos"
#: mod/photos.php:91 mod/photos.php:1283 mod/photos.php:1858
msgid "Upload New Photos"
msgstr "Neue Fotos hochladen"
#: mod/photos.php:105 mod/settings.php:36
msgid "everybody"
msgstr "jeder"
#: mod/photos.php:169
msgid "Contact information unavailable"
msgstr "Kontaktinformationen nicht verfügbar"
#: mod/photos.php:190
msgid "Album not found."
msgstr "Album nicht gefunden."
#: mod/photos.php:220 mod/photos.php:232 mod/photos.php:1227
msgid "Delete Album"
msgstr "Album löschen"
#: mod/photos.php:230
msgid "Do you really want to delete this photo album and all its photos?"
msgstr "Möchtest Du wirklich dieses Foto-Album und all seine Foto löschen?"
#: mod/photos.php:308 mod/photos.php:319 mod/photos.php:1540
msgid "Delete Photo"
msgstr "Foto löschen"
#: mod/photos.php:317
msgid "Do you really want to delete this photo?"
msgstr "Möchtest Du wirklich dieses Foto löschen?"
#: mod/photos.php:688
#, php-format
msgid "%1$s was tagged in %2$s by %3$s"
msgstr "%1$s wurde von %3$s in %2$s getaggt"
#: mod/photos.php:688
msgid "a photo"
msgstr "einem Foto"
#: mod/photos.php:794
msgid "Image file is empty."
msgstr "Bilddatei ist leer."
#: mod/photos.php:954
msgid "No photos selected"
msgstr "Keine Bilder ausgewählt"
#: mod/photos.php:1054 mod/videos.php:305
msgid "Access to this item is restricted."
msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt."
#: mod/photos.php:1114
#, php-format
msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
msgstr "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers."
#: mod/photos.php:1148
msgid "Upload Photos"
msgstr "Bilder hochladen"
#: mod/photos.php:1152 mod/photos.php:1222
msgid "New album name: "
msgstr "Name des neuen Albums: "
#: mod/photos.php:1153
msgid "or existing album name: "
msgstr "oder existierender Albumname: "
#: mod/photos.php:1154
msgid "Do not show a status post for this upload"
msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen"
#: mod/photos.php:1165 mod/photos.php:1544 mod/settings.php:1300
msgid "Show to Groups"
msgstr "Zeige den Gruppen"
#: mod/photos.php:1166 mod/photos.php:1545 mod/settings.php:1301
msgid "Show to Contacts"
msgstr "Zeige den Kontakten"
#: mod/photos.php:1167
msgid "Private Photo"
msgstr "Privates Foto"
#: mod/photos.php:1168
msgid "Public Photo"
msgstr "Öffentliches Foto"
#: mod/photos.php:1234
msgid "Edit Album"
msgstr "Album bearbeiten"
#: mod/photos.php:1240
msgid "Show Newest First"
msgstr "Zeige neueste zuerst"
#: mod/photos.php:1242
msgid "Show Oldest First"
msgstr "Zeige älteste zuerst"
#: mod/photos.php:1269 mod/photos.php:1841
msgid "View Photo"
msgstr "Foto betrachten"
#: mod/photos.php:1315
msgid "Permission denied. Access to this item may be restricted."
msgstr "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein."
#: mod/photos.php:1317
msgid "Photo not available"
msgstr "Foto nicht verfügbar"
#: mod/photos.php:1372
msgid "View photo"
msgstr "Fotos ansehen"
#: mod/photos.php:1372
msgid "Edit photo"
msgstr "Foto bearbeiten"
#: mod/photos.php:1373
msgid "Use as profile photo"
msgstr "Als Profilbild verwenden"
#: mod/photos.php:1398
msgid "View Full Size"
msgstr "Betrachte Originalgröße"
#: mod/photos.php:1484
msgid "Tags: "
msgstr "Tags: "
#: mod/photos.php:1487
msgid "[Remove any tag]"
msgstr "[Tag entfernen]"
#: mod/photos.php:1526
msgid "New album name"
msgstr "Name des neuen Albums"
#: mod/photos.php:1527
msgid "Caption"
msgstr "Bildunterschrift"
#: mod/photos.php:1528
msgid "Add a Tag"
msgstr "Tag hinzufügen"
#: mod/photos.php:1528
msgid ""
"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
#: mod/photos.php:1529
msgid "Do not rotate"
msgstr "Nicht rotieren"
#: mod/photos.php:1530
msgid "Rotate CW (right)"
msgstr "Drehen US (rechts)"
#: mod/photos.php:1531
msgid "Rotate CCW (left)"
msgstr "Drehen EUS (links)"
#: mod/photos.php:1546
msgid "Private photo"
msgstr "Privates Foto"
#: mod/photos.php:1547
msgid "Public photo"
msgstr "Öffentliches Foto"
#: mod/photos.php:1770
msgid "Map"
msgstr "Karte"
#: mod/photos.php:1847 mod/videos.php:387
msgid "View Album"
msgstr "Album betrachten"
#: mod/register.php:93
msgid ""
"Registration successful. Please check your email for further instructions."
msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet."
#: mod/register.php:98
#, php-format
msgid ""
"Failed to send email message. Here your accout details:<br> login: %s<br> "
"password: %s<br><br>You can change your password after login."
msgstr "Versenden der E-Mail fehlgeschlagen. Hier sind Deine Account Details:\n\nLogin: %s\nPasswort: %s\n\nDu kannst das Passwort nach dem Anmelden ändern."
#: mod/register.php:105
msgid "Registration successful."
msgstr "Registrierung erfolgreich."
#: mod/register.php:111
msgid "Your registration can not be processed."
msgstr "Deine Registrierung konnte nicht verarbeitet werden."
#: mod/register.php:160
msgid "Your registration is pending approval by the site owner."
msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."
#: mod/register.php:226
msgid ""
"You may (optionally) fill in this form via OpenID by supplying your OpenID "
"and clicking 'Register'."
msgstr "Du kannst dieses Formular auch (optional) mit Deiner OpenID ausfüllen, indem Du Deine OpenID angibst und 'Registrieren' klickst."
#: mod/register.php:227
msgid ""
"If you are not familiar with OpenID, please leave that field blank and fill "
"in the rest of the items."
msgstr "Wenn Du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus."
#: mod/register.php:228
msgid "Your OpenID (optional): "
msgstr "Deine OpenID (optional): "
#: mod/register.php:242
msgid "Include your profile in member directory?"
msgstr "Soll Dein Profil im Nutzerverzeichnis angezeigt werden?"
#: mod/register.php:267
msgid "Note for the admin"
msgstr "Hinweis für den Admin"
#: mod/register.php:267
msgid "Leave a message for the admin, why you want to join this node"
msgstr "Hinterlasse eine Nachricht an den Admin, warum du einen Account auf dieser Instanz haben möchtest."
#: mod/register.php:268
msgid "Membership on this site is by invitation only."
msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."
#: mod/register.php:269
msgid "Your invitation ID: "
msgstr "ID Deiner Einladung: "
#: mod/register.php:272 mod/admin.php:956
msgid "Registration"
msgstr "Registrierung"
#: mod/register.php:280
msgid "Your Full Name (e.g. Joe Smith, real or real-looking): "
msgstr "Dein vollständiger Name (z.B. Hans Mustermann, echt oder echt erscheinend):"
#: mod/register.php:281
msgid "Your Email Address: "
msgstr "Deine E-Mail-Adresse: "
#: mod/register.php:283 mod/settings.php:1271
msgid "New Password:"
msgstr "Neues Passwort:"
#: mod/register.php:283
msgid "Leave empty for an auto generated password."
msgstr "Leer lassen um das Passwort automatisch zu generieren."
#: mod/register.php:284 mod/settings.php:1272
msgid "Confirm:"
msgstr "Bestätigen:"
#: mod/register.php:285
msgid ""
"Choose a profile nickname. This must begin with a text character. Your "
"profile address on this site will then be "
"'<strong>nickname@$sitename</strong>'."
msgstr "Wähle einen Spitznamen für Dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse Deines Profils auf dieser Seite wird '<strong>spitzname@$sitename</strong>' sein."
#: mod/register.php:286
msgid "Choose a nickname: "
msgstr "Spitznamen wählen: "
#: mod/register.php:296
msgid "Import your profile to this friendica instance"
msgstr "Importiere Dein Profil auf diese Friendica Instanz"
#: mod/settings.php:43 mod/admin.php:1396
msgid "Account"
msgstr "Nutzerkonto"
#: mod/settings.php:52 mod/admin.php:160
msgid "Additional features"
msgstr "Zusätzliche Features"
#: mod/settings.php:60
msgid "Display"
msgstr "Anzeige"
#: mod/settings.php:67 mod/settings.php:886
msgid "Social Networks"
msgstr "Soziale Netzwerke"
#: mod/settings.php:74 mod/admin.php:158 mod/admin.php:1522 mod/admin.php:1582
msgid "Plugins"
msgstr "Plugins"
#: mod/settings.php:88
msgid "Connected apps"
msgstr "Verbundene Programme"
#: mod/settings.php:102
msgid "Remove account"
msgstr "Konto löschen"
#: mod/settings.php:155
msgid "Missing some important data!"
msgstr "Wichtige Daten fehlen!"
#: mod/settings.php:158 mod/settings.php:704 mod/contacts.php:804
msgid "Update"
msgstr "Aktualisierungen"
#: mod/settings.php:269
msgid "Failed to connect with email account using the settings provided."
msgstr "Verbindung zum E-Mail-Konto mit den angegebenen Einstellungen nicht möglich."
#: mod/settings.php:274
msgid "Email settings updated."
msgstr "E-Mail Einstellungen bearbeitet."
#: mod/settings.php:289
msgid "Features updated"
msgstr "Features aktualisiert"
#: mod/settings.php:359
msgid "Relocate message has been send to your contacts"
msgstr "Die Umzugsbenachrichtigung wurde an Deine Kontakte versendet."
#: mod/settings.php:378
msgid "Empty passwords are not allowed. Password unchanged."
msgstr "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert."
#: mod/settings.php:386
msgid "Wrong password."
msgstr "Falsches Passwort."
#: mod/settings.php:397
msgid "Password changed."
msgstr "Passwort geändert."
#: mod/settings.php:399
msgid "Password update failed. Please try again."
msgstr "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal."
#: mod/settings.php:479
msgid " Please use a shorter name."
msgstr " Bitte verwende einen kürzeren Namen."
#: mod/settings.php:481
msgid " Name too short."
msgstr " Name ist zu kurz."
#: mod/settings.php:490
msgid "Wrong Password"
msgstr "Falsches Passwort"
#: mod/settings.php:495
msgid " Not valid email."
msgstr " Keine gültige E-Mail."
#: mod/settings.php:501
msgid " Cannot change to that email."
msgstr "Ändern der E-Mail nicht möglich. "
#: mod/settings.php:557
msgid "Private forum has no privacy permissions. Using default privacy group."
msgstr "Für das private Forum sind keine Zugriffsrechte eingestellt. Die voreingestellte Gruppe für neue Kontakte wird benutzt."
#: mod/settings.php:561
msgid "Private forum has no privacy permissions and no default privacy group."
msgstr "Für das private Forum sind keine Zugriffsrechte eingestellt, und es gibt keine voreingestellte Gruppe für neue Kontakte."
#: mod/settings.php:601
msgid "Settings updated."
msgstr "Einstellungen aktualisiert."
#: mod/settings.php:677 mod/settings.php:703 mod/settings.php:739
msgid "Add application"
msgstr "Programm hinzufügen"
#: mod/settings.php:678 mod/settings.php:788 mod/settings.php:835
#: mod/settings.php:904 mod/settings.php:996 mod/settings.php:1264
#: mod/admin.php:955 mod/admin.php:1583 mod/admin.php:1831 mod/admin.php:1905
#: mod/admin.php:2055
msgid "Save Settings"
msgstr "Einstellungen speichern"
#: mod/settings.php:681 mod/settings.php:707
msgid "Consumer Key"
msgstr "Consumer Key"
#: mod/settings.php:682 mod/settings.php:708
msgid "Consumer Secret"
msgstr "Consumer Secret"
#: mod/settings.php:683 mod/settings.php:709
msgid "Redirect"
msgstr "Umleiten"
#: mod/settings.php:684 mod/settings.php:710
msgid "Icon url"
msgstr "Icon URL"
#: mod/settings.php:695
msgid "You can't edit this application."
msgstr "Du kannst dieses Programm nicht bearbeiten."
#: mod/settings.php:738
msgid "Connected Apps"
msgstr "Verbundene Programme"
#: mod/settings.php:742
msgid "Client key starts with"
msgstr "Anwenderschlüssel beginnt mit"
#: mod/settings.php:743
msgid "No name"
msgstr "Kein Name"
#: mod/settings.php:744
msgid "Remove authorization"
msgstr "Autorisierung entziehen"
#: mod/settings.php:756
msgid "No Plugin settings configured"
msgstr "Keine Plugin-Einstellungen konfiguriert"
#: mod/settings.php:764
msgid "Plugin Settings"
msgstr "Plugin-Einstellungen"
#: mod/settings.php:778 mod/admin.php:2044 mod/admin.php:2045
msgid "Off"
msgstr "Aus"
#: mod/settings.php:778 mod/admin.php:2044 mod/admin.php:2045
msgid "On"
msgstr "An"
#: mod/settings.php:786
msgid "Additional Features"
msgstr "Zusätzliche Features"
#: mod/settings.php:796 mod/settings.php:800
msgid "General Social Media Settings"
msgstr "Allgemeine Einstellungen zu Sozialen Medien"
#: mod/settings.php:806
msgid "Disable intelligent shortening"
msgstr "Intelligentes Link kürzen ausschalten"
#: mod/settings.php:808
msgid ""
"Normally the system tries to find the best link to add to shortened posts. "
"If this option is enabled then every shortened post will always point to the"
" original friendica post."
msgstr "Normalerweise versucht das System den besten Link zu finden um ihn zu gekürzten Postings hinzu zu fügen. Wird diese Option ausgewählt wird stets ein Link auf die originale Friendica Nachricht beigefügt."
#: mod/settings.php:814
msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
msgstr "Automatisch allen GNU Social (OStatus) Followern/Erwähnern folgen"
#: mod/settings.php:816
msgid ""
"If you receive a message from an unknown OStatus user, this option decides "
"what to do. If it is checked, a new contact will be created for every "
"unknown user."
msgstr "Wenn du eine Nachricht eines unbekannten OStatus Nutzers bekommst, entscheidet diese Option wie diese behandelt werden soll. Ist die Option aktiviert, wird ein neuer Kontakt für den Verfasser erstellt,."
#: mod/settings.php:822
msgid "Default group for OStatus contacts"
msgstr "Voreingestellte Gruppe für OStatus Kontakte"
#: mod/settings.php:828
msgid "Your legacy GNU Social account"
msgstr "Dein alter GNU Social Account"
#: mod/settings.php:830
msgid ""
"If you enter your old GNU Social/Statusnet account name here (in the format "
"user@domain.tld), your contacts will be added automatically. The field will "
"be emptied when done."
msgstr "Wenn du deinen alten GNU Socual/Statusnet Accountnamen hier angibst (Format name@domain.tld) werden deine Kontakte automatisch hinzugefügt. Dieses Feld wird geleert, wenn die Kontakte hinzugefügt wurden."
#: mod/settings.php:833
msgid "Repair OStatus subscriptions"
msgstr "OStatus Abonnements reparieren"
#: mod/settings.php:842 mod/settings.php:843
#, php-format
msgid "Built-in support for %s connectivity is %s"
msgstr "Eingebaute Unterstützung für Verbindungen zu %s ist %s"
#: mod/settings.php:842 mod/settings.php:843
msgid "enabled"
msgstr "eingeschaltet"
#: mod/settings.php:842 mod/settings.php:843
msgid "disabled"
msgstr "ausgeschaltet"
#: mod/settings.php:843
msgid "GNU Social (OStatus)"
msgstr "GNU Social (OStatus)"
#: mod/settings.php:879
msgid "Email access is disabled on this site."
msgstr "Zugriff auf E-Mails für diese Seite deaktiviert."
#: mod/settings.php:891
msgid "Email/Mailbox Setup"
msgstr "E-Mail/Postfach-Einstellungen"
#: mod/settings.php:892
msgid ""
"If you wish to communicate with email contacts using this service "
"(optional), please specify how to connect to your mailbox."
msgstr "Wenn Du mit E-Mail-Kontakten über diesen Service kommunizieren möchtest (optional), gib bitte die Einstellungen für Dein Postfach an."
#: mod/settings.php:893
msgid "Last successful email check:"
msgstr "Letzter erfolgreicher E-Mail Check"
#: mod/settings.php:895
msgid "IMAP server name:"
msgstr "IMAP-Server-Name:"
#: mod/settings.php:896
msgid "IMAP port:"
msgstr "IMAP-Port:"
#: mod/settings.php:897
msgid "Security:"
msgstr "Sicherheit:"
#: mod/settings.php:897 mod/settings.php:902
msgid "None"
msgstr "Keine"
#: mod/settings.php:898
msgid "Email login name:"
msgstr "E-Mail-Login-Name:"
#: mod/settings.php:899
msgid "Email password:"
msgstr "E-Mail-Passwort:"
#: mod/settings.php:900
msgid "Reply-to address:"
msgstr "Reply-to Adresse:"
#: mod/settings.php:901
msgid "Send public posts to all email contacts:"
msgstr "Sende öffentliche Beiträge an alle E-Mail-Kontakte:"
#: mod/settings.php:902
msgid "Action after import:"
msgstr "Aktion nach Import:"
#: mod/settings.php:902
msgid "Move to folder"
msgstr "In einen Ordner verschieben"
#: mod/settings.php:903
msgid "Move to folder:"
msgstr "In diesen Ordner verschieben:"
#: mod/settings.php:934 mod/admin.php:862
msgid "No special theme for mobile devices"
msgstr "Kein spezielles Theme für mobile Geräte verwenden."
#: mod/settings.php:994
msgid "Display Settings"
msgstr "Anzeige-Einstellungen"
#: mod/settings.php:1000 mod/settings.php:1023
msgid "Display Theme:"
msgstr "Theme:"
#: mod/settings.php:1001
msgid "Mobile Theme:"
msgstr "Mobiles Theme"
#: mod/settings.php:1002
msgid "Suppress warning of insecure networks"
msgstr "Warnung wegen unsicheren Netzwerken unterdrücken"
#: mod/settings.php:1002
msgid ""
"Should the system suppress the warning that the current group contains "
"members of networks that can't receive non public postings."
msgstr "Soll das System Warnungen unterdrücken, die angezeigt werden weil von dir eingerichtete Kontakt-Gruppen Accounts aus Netzwerken beinhalten, die keine nicht öffentlichen Beiträge empfangen können."
#: mod/settings.php:1003
msgid "Update browser every xx seconds"
msgstr "Browser alle xx Sekunden aktualisieren"
#: mod/settings.php:1003
msgid "Minimum of 10 seconds. Enter -1 to disable it."
msgstr "Minimum sind 10 Sekunden. Gib -1 ein um abzuschalten."
#: mod/settings.php:1004
msgid "Number of items to display per page:"
msgstr "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: "
#: mod/settings.php:1004 mod/settings.php:1005
msgid "Maximum of 100 items"
msgstr "Maximal 100 Beiträge"
#: mod/settings.php:1005
msgid "Number of items to display per page when viewed from mobile device:"
msgstr "Zahl der Beiträge, die pro Netzwerkseite auf mobilen Geräten angezeigt werden sollen:"
#: mod/settings.php:1006
msgid "Don't show emoticons"
msgstr "Keine Smilies anzeigen"
#: mod/settings.php:1007
msgid "Calendar"
msgstr "Kalender"
#: mod/settings.php:1008
msgid "Beginning of week:"
msgstr "Wochenbeginn:"
#: mod/settings.php:1009
msgid "Don't show notices"
msgstr "Info-Popups nicht anzeigen"
#: mod/settings.php:1010
msgid "Infinite scroll"
msgstr "Endloses Scrollen"
#: mod/settings.php:1011
msgid "Automatic updates only at the top of the network page"
msgstr "Automatische Updates nur, wenn Du oben auf der Netzwerkseite bist."
#: mod/settings.php:1012
msgid "Bandwith Saver Mode"
msgstr "Bandbreiten-Spar-Modus"
#: mod/settings.php:1012
msgid ""
"When enabled, embedded content is not displayed on automatic updates, they "
"only show on page reload."
msgstr "Wenn aktiviert, wird der eingebettete Inhalt nicht automatisch aktualisiert. In diesem Fall Seite bitte neu laden."
#: mod/settings.php:1014
msgid "General Theme Settings"
msgstr "Allgemeine Themeneinstellungen"
#: mod/settings.php:1015
msgid "Custom Theme Settings"
msgstr "Benutzerdefinierte Theme Einstellungen"
#: mod/settings.php:1016
msgid "Content Settings"
msgstr "Einstellungen zum Inhalt"
#: mod/settings.php:1017 view/theme/frio/config.php:61
#: view/theme/quattro/config.php:66 view/theme/vier/config.php:109
#: view/theme/duepuntozero/config.php:61
msgid "Theme settings"
msgstr "Themeneinstellungen"
#: mod/settings.php:1099
msgid "Account Types"
msgstr "Kontenarten"
#: mod/settings.php:1100
msgid "Personal Page Subtypes"
msgstr "Unterarten der persönlichen Seite"
#: mod/settings.php:1101
msgid "Community Forum Subtypes"
msgstr "Unterarten des Gemeinschaftsforums"
#: mod/settings.php:1108
msgid "Personal Page"
msgstr "Persönliche Seite"
#: mod/settings.php:1109
msgid "This account is a regular personal profile"
msgstr "Dieses Konto ist ein normales persönliches Profil"
#: mod/settings.php:1112
msgid "Organisation Page"
msgstr "Organisationsseite"
#: mod/settings.php:1113
msgid "This account is a profile for an organisation"
msgstr "Diese Konto ist ein Profil für eine Organisation"
#: mod/settings.php:1116
msgid "News Page"
msgstr "Nachrichtenseite"
#: mod/settings.php:1117
msgid "This account is a news account/reflector"
msgstr "Dieses Konto ist ein News-Konto bzw. -Spiegel"
#: mod/settings.php:1120
msgid "Community Forum"
msgstr "Gemeinschaftsforum"
#: mod/settings.php:1121
msgid ""
"This account is a community forum where people can discuss with each other"
msgstr "Dieses Konto ist ein Gemeinschaftskonto wo sich Leute untereinander austauschen können"
#: mod/settings.php:1124
msgid "Normal Account Page"
msgstr "Normales Konto"
#: mod/settings.php:1125
msgid "This account is a normal personal profile"
msgstr "Dieses Konto ist ein normales persönliches Profil"
#: mod/settings.php:1128
msgid "Soapbox Page"
msgstr "Marktschreier-Konto"
#: mod/settings.php:1129
msgid "Automatically approve all connection/friend requests as read-only fans"
msgstr "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert"
#: mod/settings.php:1132
msgid "Public Forum"
msgstr "Öffentliches Forum"
#: mod/settings.php:1133
msgid "Automatically approve all contact requests"
msgstr "Bestätige alle Kontaktanfragen automatisch"
#: mod/settings.php:1136
msgid "Automatic Friend Page"
msgstr "Automatische Freunde Seite"
#: mod/settings.php:1137
msgid "Automatically approve all connection/friend requests as friends"
msgstr "Kontaktanfragen werden automatisch als Freund akzeptiert"
#: mod/settings.php:1140
msgid "Private Forum [Experimental]"
msgstr "Privates Forum [Versuchsstadium]"
#: mod/settings.php:1141
msgid "Private forum - approved members only"
msgstr "Privates Forum, nur für Mitglieder"
#: mod/settings.php:1153
msgid "OpenID:"
msgstr "OpenID:"
#: mod/settings.php:1153
msgid "(Optional) Allow this OpenID to login to this account."
msgstr "(Optional) Erlaube die Anmeldung für dieses Konto mit dieser OpenID."
#: mod/settings.php:1163
msgid "Publish your default profile in your local site directory?"
msgstr "Darf Dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?"
#: mod/settings.php:1169
msgid "Publish your default profile in the global social directory?"
msgstr "Darf Dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?"
#: mod/settings.php:1177
msgid "Hide your contact/friend list from viewers of your default profile?"
msgstr "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?"
#: mod/settings.php:1181
msgid ""
"If enabled, posting public messages to Diaspora and other networks isn't "
"possible."
msgstr "Wenn aktiviert, ist das senden öffentliche Nachrichten zu Diaspora und anderen Netzwerken nicht möglich"
#: mod/settings.php:1186
msgid "Allow friends to post to your profile page?"
msgstr "Dürfen Deine Kontakte auf Deine Pinnwand schreiben?"
#: mod/settings.php:1192
msgid "Allow friends to tag your posts?"
msgstr "Dürfen Deine Kontakte Deine Beiträge mit Schlagwörtern versehen?"
#: mod/settings.php:1198
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:1204
msgid "Permit unknown people to send you private mail?"
msgstr "Dürfen Dir Unbekannte private Nachrichten schicken?"
#: mod/settings.php:1212
msgid "Profile is <strong>not published</strong>."
msgstr "Profil ist <strong>nicht veröffentlicht</strong>."
#: mod/settings.php:1220
#, php-format
msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
msgstr "Die Adresse deines Profils lautet <strong>'%s'</strong> oder '%s'."
#: mod/settings.php:1227
msgid "Automatically expire posts after this many days:"
msgstr "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:"
#: mod/settings.php:1227
msgid "If empty, posts will not expire. Expired posts will be deleted"
msgstr "Wenn leer verfallen Beiträge nie automatisch. Verfallene Beiträge werden gelöscht."
#: mod/settings.php:1228
msgid "Advanced expiration settings"
msgstr "Erweiterte Verfallseinstellungen"
#: mod/settings.php:1229
msgid "Advanced Expiration"
msgstr "Erweitertes Verfallen"
#: mod/settings.php:1230
msgid "Expire posts:"
msgstr "Beiträge verfallen lassen:"
#: mod/settings.php:1231
msgid "Expire personal notes:"
msgstr "Persönliche Notizen verfallen lassen:"
#: mod/settings.php:1232
msgid "Expire starred posts:"
msgstr "Markierte Beiträge verfallen lassen:"
#: mod/settings.php:1233
msgid "Expire photos:"
msgstr "Fotos verfallen lassen:"
#: mod/settings.php:1234
msgid "Only expire posts by others:"
msgstr "Nur Beiträge anderer verfallen:"
#: mod/settings.php:1262
msgid "Account Settings"
msgstr "Kontoeinstellungen"
#: mod/settings.php:1270
msgid "Password Settings"
msgstr "Passwort-Einstellungen"
#: mod/settings.php:1272
msgid "Leave password fields blank unless changing"
msgstr "Lass die Passwort-Felder leer, außer Du willst das Passwort ändern"
#: mod/settings.php:1273
msgid "Current Password:"
msgstr "Aktuelles Passwort:"
#: mod/settings.php:1273 mod/settings.php:1274
msgid "Your current password to confirm the changes"
msgstr "Dein aktuelles Passwort um die Änderungen zu bestätigen"
#: mod/settings.php:1274
msgid "Password:"
msgstr "Passwort:"
#: mod/settings.php:1278
msgid "Basic Settings"
msgstr "Grundeinstellungen"
#: mod/settings.php:1280
msgid "Email Address:"
msgstr "E-Mail-Adresse:"
#: mod/settings.php:1281
msgid "Your Timezone:"
msgstr "Deine Zeitzone:"
#: mod/settings.php:1282
msgid "Your Language:"
msgstr "Deine Sprache:"
#: mod/settings.php:1282
msgid ""
"Set the language we use to show you friendica interface and to send you "
"emails"
msgstr "Wähle die Sprache, in der wir Dir die Friendica-Oberfläche präsentieren sollen und Dir E-Mail schicken"
#: mod/settings.php:1283
msgid "Default Post Location:"
msgstr "Standardstandort:"
#: mod/settings.php:1284
msgid "Use Browser Location:"
msgstr "Standort des Browsers verwenden:"
#: mod/settings.php:1287
msgid "Security and Privacy Settings"
msgstr "Sicherheits- und Privatsphäre-Einstellungen"
#: mod/settings.php:1289
msgid "Maximum Friend Requests/Day:"
msgstr "Maximale Anzahl vonKontaktanfragen/Tag:"
#: mod/settings.php:1289 mod/settings.php:1319
msgid "(to prevent spam abuse)"
msgstr "(um SPAM zu vermeiden)"
#: mod/settings.php:1290
msgid "Default Post Permissions"
msgstr "Standard-Zugriffsrechte für Beiträge"
#: mod/settings.php:1291
msgid "(click to open/close)"
msgstr "(klicke zum öffnen/schließen)"
#: mod/settings.php:1302
msgid "Default Private Post"
msgstr "Privater Standardbeitrag"
#: mod/settings.php:1303
msgid "Default Public Post"
msgstr "Öffentlicher Standardbeitrag"
#: mod/settings.php:1307
msgid "Default Permissions for New Posts"
msgstr "Standardberechtigungen für neue Beiträge"
#: mod/settings.php:1319
msgid "Maximum private messages per day from unknown people:"
msgstr "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:"
#: mod/settings.php:1322
msgid "Notification Settings"
msgstr "Benachrichtigungseinstellungen"
#: mod/settings.php:1323
msgid "By default post a status message when:"
msgstr "Standardmäßig eine Statusnachricht posten, wenn:"
#: mod/settings.php:1324
msgid "accepting a friend request"
msgstr " Du eine Kontaktanfrage akzeptierst"
#: mod/settings.php:1325
msgid "joining a forum/community"
msgstr " Du einem Forum/einer Gemeinschaftsseite beitrittst"
#: mod/settings.php:1326
msgid "making an <em>interesting</em> profile change"
msgstr " Du eine <em>interessante</em> Änderung an Deinem Profil durchführst"
#: mod/settings.php:1327
msgid "Send a notification email when:"
msgstr "Benachrichtigungs-E-Mail senden wenn:"
#: mod/settings.php:1328
msgid "You receive an introduction"
msgstr " Du eine Kontaktanfrage erhältst"
#: mod/settings.php:1329
msgid "Your introductions are confirmed"
msgstr " eine Deiner Kontaktanfragen akzeptiert wurde"
#: mod/settings.php:1330
msgid "Someone writes on your profile wall"
msgstr " jemand etwas auf Deine Pinnwand schreibt"
#: mod/settings.php:1331
msgid "Someone writes a followup comment"
msgstr " jemand auch einen Kommentar verfasst"
#: mod/settings.php:1332
msgid "You receive a private message"
msgstr " Du eine private Nachricht erhältst"
#: mod/settings.php:1333
msgid "You receive a friend suggestion"
msgstr " Du eine Empfehlung erhältst"
#: mod/settings.php:1334
msgid "You are tagged in a post"
msgstr " Du in einem Beitrag erwähnt wirst"
#: mod/settings.php:1335
msgid "You are poked/prodded/etc. in a post"
msgstr " Du von jemandem angestupst oder sonstwie behandelt wirst"
#: mod/settings.php:1337
msgid "Activate desktop notifications"
msgstr "Desktop Benachrichtigungen einschalten"
#: mod/settings.php:1337
msgid "Show desktop popup on new notifications"
msgstr "Desktop Benachrichtigungen einschalten"
#: mod/settings.php:1339
msgid "Text-only notification emails"
msgstr "Benachrichtigungs E-Mail als Rein-Text."
#: mod/settings.php:1341
msgid "Send text only notification emails, without the html part"
msgstr "Sende Benachrichtigungs E-Mail als Rein-Text - ohne HTML-Teil"
#: mod/settings.php:1343
msgid "Advanced Account/Page Type Settings"
msgstr "Erweiterte Konto-/Seitentyp-Einstellungen"
#: mod/settings.php:1344
msgid "Change the behaviour of this account for special situations"
msgstr "Verhalten dieses Kontos in bestimmten Situationen:"
#: mod/settings.php:1347
msgid "Relocate"
msgstr "Umziehen"
#: mod/settings.php:1348
msgid ""
"If you have moved this profile from another server, and some of your "
"contacts don't receive your updates, try pushing this button."
msgstr "Wenn Du Dein Profil von einem anderen Server umgezogen hast und einige Deiner Kontakte Deine Beiträge nicht erhalten, verwende diesen Button."
#: mod/settings.php:1349
msgid "Resend relocate message to contacts"
msgstr "Umzugsbenachrichtigung erneut an Kontakte senden"
#: mod/videos.php:120
msgid "Do you really want to delete this video?"
msgstr "Möchtest Du dieses Video wirklich löschen?"
#: mod/videos.php:125
msgid "Delete Video"
msgstr "Video Löschen"
#: mod/videos.php:204
msgid "No videos selected"
msgstr "Keine Videos ausgewählt"
#: mod/videos.php:396
msgid "Recent Videos"
msgstr "Neueste Videos"
#: mod/videos.php:398
msgid "Upload New Videos"
msgstr "Neues Video hochladen"
#: mod/wall_attach.php:17 mod/wall_attach.php:25 mod/wall_attach.php:76
#: mod/wall_upload.php:20 mod/wall_upload.php:33 mod/wall_upload.php:86
#: mod/wall_upload.php:122 mod/wall_upload.php:125
msgid "Invalid request."
msgstr "Ungültige Anfrage"
#: mod/wall_attach.php:94
msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
msgstr "Entschuldige, die Datei scheint größer zu sein als es die PHP Konfiguration erlaubt."
#: mod/wall_attach.php:94
msgid "Or - did you try to upload an empty file?"
msgstr "Oder - hast Du versucht, eine leere Datei hochzuladen?"
#: mod/wall_attach.php:105
#, php-format
msgid "File exceeds size limit of %s"
msgstr "Die Datei ist größer als das erlaubte Limit von %s"
#: mod/wall_attach.php:156 mod/wall_attach.php:172
msgid "File upload failed."
msgstr "Hochladen der Datei fehlgeschlagen."
#: mod/admin.php:92
msgid "Theme settings updated."
msgstr "Themeneinstellungen aktualisiert."
#: mod/admin.php:156 mod/admin.php:954
#: mod/admin.php:157 mod/admin.php:975
msgid "Site"
msgstr "Seite"
#: mod/admin.php:157 mod/admin.php:898 mod/admin.php:1404 mod/admin.php:1420
#: mod/admin.php:158 mod/admin.php:909 mod/admin.php:1425 mod/admin.php:1441
msgid "Users"
msgstr "Nutzer"
#: mod/admin.php:159 mod/admin.php:1780 mod/admin.php:1830
#: mod/admin.php:160 mod/admin.php:1813 mod/admin.php:1863
msgid "Themes"
msgstr "Themen"
#: mod/admin.php:161
#: mod/admin.php:162
msgid "DB updates"
msgstr "DB Updates"
#: mod/admin.php:162 mod/admin.php:406
#: mod/admin.php:163 mod/admin.php:407
msgid "Inspect Queue"
msgstr "Warteschlange Inspizieren"
#: mod/admin.php:163 mod/admin.php:372
#: mod/admin.php:164 mod/admin.php:373
msgid "Federation Statistics"
msgstr "Federation Statistik"
#: mod/admin.php:177 mod/admin.php:188 mod/admin.php:1904
#: mod/admin.php:178 mod/admin.php:189 mod/admin.php:1937
msgid "Logs"
msgstr "Protokolle"
#: mod/admin.php:178 mod/admin.php:1972
#: mod/admin.php:179 mod/admin.php:2005
msgid "View Logs"
msgstr "Protokolle anzeigen"
#: mod/admin.php:179
#: mod/admin.php:180
msgid "probe address"
msgstr "Adresse untersuchen"
#: mod/admin.php:180
#: mod/admin.php:181
msgid "check webfinger"
msgstr "Webfinger überprüfen"
#: mod/admin.php:187
#: mod/admin.php:188
msgid "Plugin Features"
msgstr "Plugin Features"
#: mod/admin.php:189
#: mod/admin.php:190
msgid "diagnostics"
msgstr "Diagnose"
#: mod/admin.php:190
#: mod/admin.php:191
msgid "User registrations waiting for confirmation"
msgstr "Nutzeranmeldungen die auf Bestätigung warten"
#: mod/admin.php:306
#: mod/admin.php:307
msgid "unknown"
msgstr "Unbekannt"
#: mod/admin.php:365
#: mod/admin.php:366
msgid ""
"This page offers you some numbers to the known part of the federated social "
"network your Friendica node is part of. These numbers are not complete but "
"only reflect the part of the network your node is aware of."
msgstr "Diese Seite präsentiert einige Zahlen zu dem bekannten Teil des föderalen sozialen Netzwerks, von dem deine Friendica Installation ein Teil ist. Diese Zahlen sind nicht absolut und reflektieren nur den Teil des Netzwerks, den dein Knoten kennt."
#: mod/admin.php:366
#: mod/admin.php:367
msgid ""
"The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
"will improve the data displayed here."
msgstr "Die Funktion um <em>Automatisch ein Kontaktverzeichnis erstellen</em> ist nicht aktiv. Es wird die hier angezeigten Daten verbessern."
#: mod/admin.php:371 mod/admin.php:405 mod/admin.php:484 mod/admin.php:953
#: mod/admin.php:1403 mod/admin.php:1521 mod/admin.php:1581 mod/admin.php:1779
#: mod/admin.php:1829 mod/admin.php:1903 mod/admin.php:1971
#: mod/admin.php:372 mod/admin.php:406 mod/admin.php:485 mod/admin.php:974
#: mod/admin.php:1424 mod/admin.php:1542 mod/admin.php:1605 mod/admin.php:1812
#: mod/admin.php:1862 mod/admin.php:1936 mod/admin.php:2004
msgid "Administration"
msgstr "Administration"
#: mod/admin.php:378
#: mod/admin.php:379
#, php-format
msgid "Currently this node is aware of %d nodes from the following platforms:"
msgstr "Momentan kennt dieser Knoten %d andere Knoten der folgenden Plattformen:"
#: mod/admin.php:408
#: mod/admin.php:409
msgid "ID"
msgstr "ID"
#: mod/admin.php:409
#: mod/admin.php:410
msgid "Recipient Name"
msgstr "Empfänger Name"
#: mod/admin.php:410
#: mod/admin.php:411
msgid "Recipient Profile"
msgstr "Empfänger Profil"
#: mod/admin.php:412
#: mod/admin.php:413
msgid "Created"
msgstr "Erstellt"
#: mod/admin.php:413
#: mod/admin.php:414
msgid "Last Tried"
msgstr "Zuletzt versucht"
#: mod/admin.php:414
#: mod/admin.php:415
msgid ""
"This page lists the content of the queue for outgoing postings. These are "
"postings the initial delivery failed for. They will be resend later and "
"eventually deleted if the delivery fails permanently."
msgstr "Auf dieser Seite werden die in der Warteschlange eingereihten Beiträge aufgelistet. Bei diesen Beiträgen schlug die erste Zustellung fehl. Es wird später wiederholt versucht die Beiträge zuzustellen, bis sie schließlich gelöscht werden."
#: mod/admin.php:439
#: mod/admin.php:440
#, php-format
msgid ""
"Your DB still runs with MyISAM tables. You should change the engine type to "
@ -6383,443 +7262,435 @@ msgid ""
"Friendica installation.<br />"
msgstr "Deine DB enthält einige Tabellen die noch auf MyISAM laufen. Du solltest den Engine-Type auf InnoDB umstellen, da Friendica in Zukunft einige InnoDB Features nutzen wird. Eine Anleitung zur Umstellung kannst du <a href=\"%s\">hier</a> finden. Außerdem kannst du das <tt>convert_innodb.sql</tt> Skript verwenden, das du im <tt>/util</tt> Verzeichnis deiner Friendica Installation findest."
#: mod/admin.php:444
#: mod/admin.php:445
msgid ""
"You are using a MySQL version which does not support all features that "
"Friendica uses. You should consider switching to MariaDB."
msgstr "Du verwendets eine MySQL Version die nicht alle Features unterstützt die Friendica verwendet. Wir empfehlen dir einen Wechsel auf MariaDB, falls dies möglich ist."
#: mod/admin.php:448 mod/admin.php:1352
#: mod/admin.php:449 mod/admin.php:1373
msgid "Normal Account"
msgstr "Normales Konto"
#: mod/admin.php:449 mod/admin.php:1353
#: mod/admin.php:450 mod/admin.php:1374
msgid "Soapbox Account"
msgstr "Marktschreier-Konto"
#: mod/admin.php:450 mod/admin.php:1354
#: mod/admin.php:451 mod/admin.php:1375
msgid "Community/Celebrity Account"
msgstr "Forum/Promi-Konto"
#: mod/admin.php:451 mod/admin.php:1355
#: mod/admin.php:452 mod/admin.php:1376
msgid "Automatic Friend Account"
msgstr "Automatisches Freundekonto"
#: mod/admin.php:452
#: mod/admin.php:453
msgid "Blog Account"
msgstr "Blog-Konto"
#: mod/admin.php:453
#: mod/admin.php:454
msgid "Private Forum"
msgstr "Privates Forum"
#: mod/admin.php:479
#: mod/admin.php:480
msgid "Message queues"
msgstr "Nachrichten-Warteschlangen"
#: mod/admin.php:485
#: mod/admin.php:486
msgid "Summary"
msgstr "Zusammenfassung"
#: mod/admin.php:488
#: mod/admin.php:489
msgid "Registered users"
msgstr "Registrierte Nutzer"
#: mod/admin.php:490
#: mod/admin.php:491
msgid "Pending registrations"
msgstr "Anstehende Anmeldungen"
#: mod/admin.php:491
#: mod/admin.php:492
msgid "Version"
msgstr "Version"
#: mod/admin.php:496
#: mod/admin.php:497
msgid "Active plugins"
msgstr "Aktive Plugins"
#: mod/admin.php:521
#: mod/admin.php:522
msgid "Can not parse base url. Must have at least <scheme>://<domain>"
msgstr "Die Basis-URL konnte nicht analysiert werden. Sie muss mindestens aus <protokoll>://<domain> bestehen"
#: mod/admin.php:826
#: mod/admin.php:827
msgid "RINO2 needs mcrypt php extension to work."
msgstr "RINO2 benötigt die PHP Extension mcrypt."
#: mod/admin.php:834
#: mod/admin.php:835
msgid "Site settings updated."
msgstr "Seiteneinstellungen aktualisiert."
#: mod/admin.php:881
#: mod/admin.php:892
msgid "No community page"
msgstr "Keine Gemeinschaftsseite"
#: mod/admin.php:882
#: mod/admin.php:893
msgid "Public postings from users of this site"
msgstr "Öffentliche Beiträge von Nutzer_innen dieser Seite"
#: mod/admin.php:883
#: mod/admin.php:894
msgid "Global community page"
msgstr "Globale Gemeinschaftsseite"
#: mod/admin.php:888 mod/contacts.php:530
msgid "Never"
msgstr "Niemals"
#: mod/admin.php:889
#: mod/admin.php:900
msgid "At post arrival"
msgstr "Beim Empfang von Nachrichten"
#: mod/admin.php:897 mod/contacts.php:557
msgid "Disabled"
msgstr "Deaktiviert"
#: mod/admin.php:899
#: mod/admin.php:910
msgid "Users, Global Contacts"
msgstr "Nutzer, globale Kontakte"
#: mod/admin.php:900
#: mod/admin.php:911
msgid "Users, Global Contacts/fallback"
msgstr "Nutzer, globale Kontakte / Fallback"
#: mod/admin.php:904
#: mod/admin.php:915
msgid "One month"
msgstr "ein Monat"
#: mod/admin.php:905
#: mod/admin.php:916
msgid "Three months"
msgstr "drei Monate"
#: mod/admin.php:906
#: mod/admin.php:917
msgid "Half a year"
msgstr "ein halbes Jahr"
#: mod/admin.php:907
#: mod/admin.php:918
msgid "One year"
msgstr "ein Jahr"
#: mod/admin.php:912
#: mod/admin.php:923
msgid "Multi user instance"
msgstr "Mehrbenutzer Instanz"
#: mod/admin.php:935
#: mod/admin.php:946
msgid "Closed"
msgstr "Geschlossen"
#: mod/admin.php:936
#: mod/admin.php:947
msgid "Requires approval"
msgstr "Bedarf der Zustimmung"
#: mod/admin.php:937
#: mod/admin.php:948
msgid "Open"
msgstr "Offen"
#: mod/admin.php:941
#: mod/admin.php:952
msgid "No SSL policy, links will track page SSL state"
msgstr "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten"
#: mod/admin.php:942
#: mod/admin.php:953
msgid "Force all links to use SSL"
msgstr "SSL für alle Links erzwingen"
#: mod/admin.php:943
#: mod/admin.php:954
msgid "Self-signed certificate, use SSL for local links only (discouraged)"
msgstr "Selbst-unterzeichnetes Zertifikat, SSL nur für lokale Links verwenden (nicht empfohlen)"
#: mod/admin.php:957
#: mod/admin.php:978
msgid "File upload"
msgstr "Datei hochladen"
#: mod/admin.php:958
#: mod/admin.php:979
msgid "Policies"
msgstr "Regeln"
#: mod/admin.php:960
#: mod/admin.php:981
msgid "Auto Discovered Contact Directory"
msgstr "Automatisch ein Kontaktverzeichnis erstellen"
#: mod/admin.php:961
#: mod/admin.php:982
msgid "Performance"
msgstr "Performance"
#: mod/admin.php:962
#: mod/admin.php:983
msgid "Worker"
msgstr "Worker"
#: mod/admin.php:963
#: mod/admin.php:984
msgid ""
"Relocate - WARNING: advanced function. Could make this server unreachable."
msgstr "Umsiedeln - WARNUNG: Könnte diesen Server unerreichbar machen."
#: mod/admin.php:966
#: mod/admin.php:987
msgid "Site name"
msgstr "Seitenname"
#: mod/admin.php:967
#: mod/admin.php:988
msgid "Host name"
msgstr "Host Name"
#: mod/admin.php:968
#: mod/admin.php:989
msgid "Sender Email"
msgstr "Absender für Emails"
#: mod/admin.php:968
#: mod/admin.php:989
msgid ""
"The email address your server shall use to send notification emails from."
msgstr "Die E-Mail Adresse die dein Server zum Versenden von Benachrichtigungen verwenden soll."
#: mod/admin.php:969
#: mod/admin.php:990
msgid "Banner/Logo"
msgstr "Banner/Logo"
#: mod/admin.php:970
#: mod/admin.php:991
msgid "Shortcut icon"
msgstr "Shortcut Icon"
#: mod/admin.php:970
#: mod/admin.php:991
msgid "Link to an icon that will be used for browsers."
msgstr "Link zu einem Icon, das Browser verwenden werden."
#: mod/admin.php:971
#: mod/admin.php:992
msgid "Touch icon"
msgstr "Touch Icon"
#: mod/admin.php:971
#: mod/admin.php:992
msgid "Link to an icon that will be used for tablets and mobiles."
msgstr "Link zu einem Icon das Tablets und Handies verwenden sollen."
#: mod/admin.php:972
#: mod/admin.php:993
msgid "Additional Info"
msgstr "Zusätzliche Informationen"
#: mod/admin.php:972
#: mod/admin.php:993
#, php-format
msgid ""
"For public servers: you can add additional information here that will be "
"listed at %s/siteinfo."
msgstr "Für öffentliche Server kannst Du hier zusätzliche Informationen angeben, die dann auf %s/siteinfo angezeigt werden."
#: mod/admin.php:973
#: mod/admin.php:994
msgid "System language"
msgstr "Systemsprache"
#: mod/admin.php:974
#: mod/admin.php:995
msgid "System theme"
msgstr "Systemweites Theme"
#: mod/admin.php:974
#: mod/admin.php:995
msgid ""
"Default system theme - may be over-ridden by user profiles - <a href='#' "
"id='cnftheme'>change theme settings</a>"
msgstr "Vorgabe für das System-Theme - kann von Benutzerprofilen überschrieben werden - <a href='#' id='cnftheme'>Theme-Einstellungen ändern</a>"
#: mod/admin.php:975
#: mod/admin.php:996
msgid "Mobile system theme"
msgstr "Systemweites mobiles Theme"
#: mod/admin.php:975
#: mod/admin.php:996
msgid "Theme for mobile devices"
msgstr "Thema für mobile Geräte"
#: mod/admin.php:976
#: mod/admin.php:997
msgid "SSL link policy"
msgstr "Regeln für SSL Links"
#: mod/admin.php:976
#: mod/admin.php:997
msgid "Determines whether generated links should be forced to use SSL"
msgstr "Bestimmt, ob generierte Links SSL verwenden müssen"
#: mod/admin.php:977
#: mod/admin.php:998
msgid "Force SSL"
msgstr "Erzwinge SSL"
#: mod/admin.php:977
#: mod/admin.php:998
msgid ""
"Force all Non-SSL requests to SSL - Attention: on some systems it could lead"
" to endless loops."
msgstr "Erzinge alle Nicht-SSL Anfragen auf SSL - Achtung: auf manchen Systemen verursacht dies eine Endlosschleife."
#: mod/admin.php:978
#: mod/admin.php:999
msgid "Old style 'Share'"
msgstr "Altes \"Teilen\" Element"
#: mod/admin.php:978
#: mod/admin.php:999
msgid "Deactivates the bbcode element 'share' for repeating items."
msgstr "Deaktiviert das BBCode Element \"share\" beim Wiederholen von Beiträgen."
#: mod/admin.php:979
#: mod/admin.php:1000
msgid "Hide help entry from navigation menu"
msgstr "Verberge den Menüeintrag für die Hilfe im Navigationsmenü"
#: mod/admin.php:979
#: mod/admin.php:1000
msgid ""
"Hides the menu entry for the Help pages from the navigation menu. You can "
"still access it calling /help directly."
msgstr "Verbirgt den Menüeintrag für die Hilfe-Seiten im Navigationsmenü. Die Seiten können weiterhin über /help aufgerufen werden."
#: mod/admin.php:980
#: mod/admin.php:1001
msgid "Single user instance"
msgstr "Ein-Nutzer Instanz"
#: mod/admin.php:980
#: mod/admin.php:1001
msgid "Make this instance multi-user or single-user for the named user"
msgstr "Regelt ob es sich bei dieser Instanz um eine ein Personen Installation oder eine Installation mit mehr als einem Nutzer handelt."
#: mod/admin.php:981
#: mod/admin.php:1002
msgid "Maximum image size"
msgstr "Maximale Bildgröße"
#: mod/admin.php:981
#: mod/admin.php:1002
msgid ""
"Maximum size in bytes of uploaded images. Default is 0, which means no "
"limits."
msgstr "Maximale Uploadgröße von Bildern in Bytes. Standard ist 0, d.h. ohne Limit."
#: mod/admin.php:982
#: mod/admin.php:1003
msgid "Maximum image length"
msgstr "Maximale Bildlänge"
#: mod/admin.php:982
#: mod/admin.php:1003
msgid ""
"Maximum length in pixels of the longest side of uploaded images. Default is "
"-1, which means no limits."
msgstr "Maximale Länge in Pixeln der längsten Seite eines hoch geladenen Bildes. Grundeinstellung ist -1 was keine Einschränkung bedeutet."
#: mod/admin.php:983
#: mod/admin.php:1004
msgid "JPEG image quality"
msgstr "Qualität des JPEG Bildes"
#: mod/admin.php:983
#: mod/admin.php:1004
msgid ""
"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
"100, which is full quality."
msgstr "Hoch geladene JPEG Bilder werden mit dieser Qualität [0-100] gespeichert. Grundeinstellung ist 100, kein Qualitätsverlust."
#: mod/admin.php:985
#: mod/admin.php:1006
msgid "Register policy"
msgstr "Registrierungsmethode"
#: mod/admin.php:986
#: mod/admin.php:1007
msgid "Maximum Daily Registrations"
msgstr "Maximum täglicher Registrierungen"
#: mod/admin.php:986
#: mod/admin.php:1007
msgid ""
"If registration is permitted above, this sets the maximum number of new user"
" registrations to accept per day. If register is set to closed, this "
"setting has no effect."
msgstr "Wenn die Registrierung weiter oben erlaubt ist, regelt dies die maximale Anzahl von Neuanmeldungen pro Tag. Wenn die Registrierung geschlossen ist, hat diese Einstellung keinen Effekt."
#: mod/admin.php:987
#: mod/admin.php:1008
msgid "Register text"
msgstr "Registrierungstext"
#: mod/admin.php:987
#: mod/admin.php:1008
msgid "Will be displayed prominently on the registration page."
msgstr "Wird gut sichtbar auf der Registrierungsseite angezeigt."
#: mod/admin.php:988
#: mod/admin.php:1009
msgid "Accounts abandoned after x days"
msgstr "Nutzerkonten gelten nach x Tagen als unbenutzt"
#: mod/admin.php:988
#: mod/admin.php:1009
msgid ""
"Will not waste system resources polling external sites for abandonded "
"accounts. Enter 0 for no time limit."
msgstr "Verschwende keine System-Ressourcen auf das Pollen externer Seiten, wenn Konten nicht mehr benutzt werden. 0 eingeben für kein Limit."
#: mod/admin.php:989
#: mod/admin.php:1010
msgid "Allowed friend domains"
msgstr "Erlaubte Domains für Kontakte"
#: mod/admin.php:989
#: mod/admin.php:1010
msgid ""
"Comma separated list of domains which are allowed to establish friendships "
"with this site. Wildcards are accepted. Empty to allow any domains"
msgstr "Liste der Domains, die für Kontakte erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."
#: mod/admin.php:990
#: mod/admin.php:1011
msgid "Allowed email domains"
msgstr "Erlaubte Domains für E-Mails"
#: mod/admin.php:990
#: mod/admin.php:1011
msgid ""
"Comma separated list of domains which are allowed in email addresses for "
"registrations to this site. Wildcards are accepted. Empty to allow any "
"domains"
msgstr "Liste der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."
#: mod/admin.php:991
#: mod/admin.php:1012
msgid "Block public"
msgstr "Öffentlichen Zugriff blockieren"
#: mod/admin.php:991
#: mod/admin.php:1012
msgid ""
"Check to block public access to all otherwise public personal pages on this "
"site unless you are currently logged in."
msgstr "Klicken, um öffentlichen Zugriff auf sonst öffentliche Profile zu blockieren, wenn man nicht eingeloggt ist."
#: mod/admin.php:992
#: mod/admin.php:1013
msgid "Force publish"
msgstr "Erzwinge Veröffentlichung"
#: mod/admin.php:992
#: mod/admin.php:1013
msgid ""
"Check to force all profiles on this site to be listed in the site directory."
msgstr "Klicken, um Anzeige aller Profile dieses Servers im Verzeichnis zu erzwingen."
#: mod/admin.php:993
#: mod/admin.php:1014
msgid "Global directory URL"
msgstr "URL des weltweiten Verzeichnisses"
#: mod/admin.php:993
#: mod/admin.php:1014
msgid ""
"URL to the global directory. If this is not set, the global directory is "
"completely unavailable to the application."
msgstr "URL des weltweiten Verzeichnisses. Wenn diese nicht gesetzt ist, ist das Verzeichnis für die Applikation nicht erreichbar."
#: mod/admin.php:994
#: mod/admin.php:1015
msgid "Allow threaded items"
msgstr "Erlaube Threads in Diskussionen"
#: mod/admin.php:994
#: mod/admin.php:1015
msgid "Allow infinite level threading for items on this site."
msgstr "Erlaube ein unendliches Level für Threads auf dieser Seite."
#: mod/admin.php:995
#: mod/admin.php:1016
msgid "Private posts by default for new users"
msgstr "Private Beiträge als Standard für neue Nutzer"
#: mod/admin.php:995
#: mod/admin.php:1016
msgid ""
"Set default post permissions for all new members to the default privacy "
"group rather than public."
msgstr "Die Standard-Zugriffsrechte für neue Nutzer werden so gesetzt, dass als Voreinstellung in die private Gruppe gepostet wird anstelle von öffentlichen Beiträgen."
#: mod/admin.php:996
#: mod/admin.php:1017
msgid "Don't include post content in email notifications"
msgstr "Inhalte von Beiträgen nicht in E-Mail-Benachrichtigungen versenden"
#: mod/admin.php:996
#: mod/admin.php:1017
msgid ""
"Don't include the content of a post/comment/private message/etc. in the "
"email notifications that are sent out from this site, as a privacy measure."
msgstr "Inhalte von Beiträgen/Kommentaren/privaten Nachrichten/usw., zum Datenschutz nicht in E-Mail-Benachrichtigungen einbinden."
#: mod/admin.php:997
#: mod/admin.php:1018
msgid "Disallow public access to addons listed in the apps menu."
msgstr "Öffentlichen Zugriff auf Addons im Apps Menü verbieten."
#: mod/admin.php:997
#: mod/admin.php:1018
msgid ""
"Checking this box will restrict addons listed in the apps menu to members "
"only."
msgstr "Wenn ausgewählt werden die im Apps Menü aufgeführten Addons nur angemeldeten Nutzern der Seite zur Verfügung gestellt."
#: mod/admin.php:998
#: mod/admin.php:1019
msgid "Don't embed private images in posts"
msgstr "Private Bilder nicht in Beiträgen einbetten."
#: mod/admin.php:998
#: mod/admin.php:1019
msgid ""
"Don't replace locally-hosted private photos in posts with an embedded copy "
"of the image. This means that contacts who receive posts containing private "
@ -6827,239 +7698,239 @@ msgid ""
"while."
msgstr "Ersetze lokal gehostete private Fotos in Beiträgen nicht mit einer eingebetteten Kopie des Bildes. Dies bedeutet, dass Kontakte, die Beiträge mit privaten Fotos erhalten sich zunächst auf den jeweiligen Servern authentifizieren müssen bevor die Bilder geladen und angezeigt werden, was eine gewisse Zeit dauert."
#: mod/admin.php:999
#: mod/admin.php:1020
msgid "Allow Users to set remote_self"
msgstr "Nutzern erlauben das remote_self Flag zu setzen"
#: mod/admin.php:999
#: mod/admin.php:1020
msgid ""
"With checking this, every user is allowed to mark every contact as a "
"remote_self in the repair contact dialog. Setting this flag on a contact "
"causes mirroring every posting of that contact in the users stream."
msgstr "Ist dies ausgewählt kann jeder Nutzer jeden seiner Kontakte als remote_self (entferntes Konto) im Kontakt reparieren Dialog markieren. Nach dem setzten dieses Flags werden alle Top-Level Beiträge dieser Kontakte automatisch in den Stream dieses Nutzers gepostet."
#: mod/admin.php:1000
#: mod/admin.php:1021
msgid "Block multiple registrations"
msgstr "Unterbinde Mehrfachregistrierung"
#: mod/admin.php:1000
#: mod/admin.php:1021
msgid "Disallow users to register additional accounts for use as pages."
msgstr "Benutzern nicht erlauben, weitere Konten als zusätzliche Profile anzulegen."
#: mod/admin.php:1001
#: mod/admin.php:1022
msgid "OpenID support"
msgstr "OpenID Unterstützung"
#: mod/admin.php:1001
#: mod/admin.php:1022
msgid "OpenID support for registration and logins."
msgstr "OpenID-Unterstützung für Registrierung und Login."
#: mod/admin.php:1002
#: mod/admin.php:1023
msgid "Fullname check"
msgstr "Namen auf Vollständigkeit überprüfen"
#: mod/admin.php:1002
#: mod/admin.php:1023
msgid ""
"Force users to register with a space between firstname and lastname in Full "
"name, as an antispam measure"
msgstr "Leerzeichen zwischen Vor- und Nachname im vollständigen Namen erzwingen, um SPAM zu vermeiden."
#: mod/admin.php:1003
#: mod/admin.php:1024
msgid "UTF-8 Regular expressions"
msgstr "UTF-8 Reguläre Ausdrücke"
#: mod/admin.php:1003
#: mod/admin.php:1024
msgid "Use PHP UTF8 regular expressions"
msgstr "PHP UTF8 Ausdrücke verwenden"
#: mod/admin.php:1004
#: mod/admin.php:1025
msgid "Community Page Style"
msgstr "Art der Gemeinschaftsseite"
#: mod/admin.php:1004
#: mod/admin.php:1025
msgid ""
"Type of community page to show. 'Global community' shows every public "
"posting from an open distributed network that arrived on this server."
msgstr "Welche Art der Gemeinschaftsseite soll verwendet werden? Globale Gemeinschaftsseite zeigt alle öffentlichen Beiträge eines offenen dezentralen Netzwerks an die auf diesem Server eintreffen."
#: mod/admin.php:1005
#: mod/admin.php:1026
msgid "Posts per user on community page"
msgstr "Anzahl der Beiträge pro Benutzer auf der Gemeinschaftsseite"
#: mod/admin.php:1005
#: mod/admin.php:1026
msgid ""
"The maximum number of posts per user on the community page. (Not valid for "
"'Global Community')"
msgstr "Die Anzahl der Beiträge die von jedem Nutzer maximal auf der Gemeinschaftsseite angezeigt werden sollen. Dieser Parameter wird nicht für die Globale Gemeinschaftsseite genutzt."
#: mod/admin.php:1006
#: mod/admin.php:1027
msgid "Enable OStatus support"
msgstr "OStatus Unterstützung aktivieren"
#: mod/admin.php:1006
#: mod/admin.php:1027
msgid ""
"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
"communications in OStatus are public, so privacy warnings will be "
"occasionally displayed."
msgstr "Biete die eingebaute OStatus (iStatusNet, GNU Social, etc.) Unterstützung an. Jede Kommunikation in OStatus ist öffentlich, Privatsphäre Warnungen werden nur bei Bedarf angezeigt."
#: mod/admin.php:1007
#: mod/admin.php:1028
msgid "OStatus conversation completion interval"
msgstr "Intervall zum Vervollständigen von OStatus Unterhaltungen"
#: mod/admin.php:1007
#: mod/admin.php:1028
msgid ""
"How often shall the poller check for new entries in OStatus conversations? "
"This can be a very ressource task."
msgstr "Wie oft soll der Poller checken ob es neue Nachrichten in OStatus Unterhaltungen gibt die geladen werden müssen. Je nach Anzahl der OStatus Kontakte könnte dies ein sehr Ressourcen lastiger Job sein."
#: mod/admin.php:1008
#: mod/admin.php:1029
msgid "Only import OStatus threads from our contacts"
msgstr "Nur OStatus Konversationen unserer Kontakte importieren"
#: mod/admin.php:1008
#: mod/admin.php:1029
msgid ""
"Normally we import every content from our OStatus contacts. With this option"
" we only store threads that are started by a contact that is known on our "
"system."
msgstr "Normalerweise werden alle Inhalte von OStatus Kontakten importiert. Mit dieser Option werden nur solche Konversationen gespeichert, die von Kontakten der Nutzer dieses Knotens gestartet wurden."
#: mod/admin.php:1009
#: mod/admin.php:1030
msgid "OStatus support can only be enabled if threading is enabled."
msgstr "OStatus Unterstützung kann nur aktiviert werden wenn \"Threading\" aktiviert ist. "
#: mod/admin.php:1011
#: mod/admin.php:1032
msgid ""
"Diaspora support can't be enabled because Friendica was installed into a sub"
" directory."
msgstr "Diaspora Unterstützung kann nicht aktiviert werden da Friendica in ein Unterverzeichnis installiert ist."
#: mod/admin.php:1012
#: mod/admin.php:1033
msgid "Enable Diaspora support"
msgstr "Diaspora Unterstützung aktivieren"
#: mod/admin.php:1012
#: mod/admin.php:1033
msgid "Provide built-in Diaspora network compatibility."
msgstr "Verwende die eingebaute Diaspora-Verknüpfung."
#: mod/admin.php:1013
#: mod/admin.php:1034
msgid "Only allow Friendica contacts"
msgstr "Nur Friendica-Kontakte erlauben"
#: mod/admin.php:1013
#: mod/admin.php:1034
msgid ""
"All contacts must use Friendica protocols. All other built-in communication "
"protocols disabled."
msgstr "Alle Kontakte müssen das Friendica Protokoll nutzen. Alle anderen Kommunikationsprotokolle werden deaktiviert."
#: mod/admin.php:1014
#: mod/admin.php:1035
msgid "Verify SSL"
msgstr "SSL Überprüfen"
#: mod/admin.php:1014
#: mod/admin.php:1035
msgid ""
"If you wish, you can turn on strict certificate checking. This will mean you"
" cannot connect (at all) to self-signed SSL sites."
msgstr "Wenn gewollt, kann man hier eine strenge Zertifikatkontrolle einstellen. Das bedeutet, dass man zu keinen Seiten mit selbst unterzeichnetem SSL eine Verbindung herstellen kann."
#: mod/admin.php:1015
#: mod/admin.php:1036
msgid "Proxy user"
msgstr "Proxy Nutzer"
#: mod/admin.php:1016
#: mod/admin.php:1037
msgid "Proxy URL"
msgstr "Proxy URL"
#: mod/admin.php:1017
#: mod/admin.php:1038
msgid "Network timeout"
msgstr "Netzwerk Wartezeit"
#: mod/admin.php:1017
#: mod/admin.php:1038
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
msgstr "Der Wert ist in Sekunden. Setze 0 für unbegrenzt (nicht empfohlen)."
#: mod/admin.php:1018
#: mod/admin.php:1039
msgid "Delivery interval"
msgstr "Zustellungsintervall"
#: mod/admin.php:1018
#: mod/admin.php:1039
msgid ""
"Delay background delivery processes by this many seconds to reduce system "
"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
"for large dedicated servers."
msgstr "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl an Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared-Hosts, 2-3 für VPS, 0-1 für große dedizierte Server."
#: mod/admin.php:1019
#: mod/admin.php:1040
msgid "Poll interval"
msgstr "Abfrageintervall"
#: mod/admin.php:1019
#: mod/admin.php:1040
msgid ""
"Delay background polling processes by this many seconds to reduce system "
"load. If 0, use delivery interval."
msgstr "Verzögere Hintergrundprozesse um diese Anzahl an Sekunden, um die Systemlast zu reduzieren. Bei 0 Sekunden wird das Auslieferungsintervall verwendet."
#: mod/admin.php:1020
#: mod/admin.php:1041
msgid "Maximum Load Average"
msgstr "Maximum Load Average"
#: mod/admin.php:1020
#: mod/admin.php:1041
msgid ""
"Maximum system load before delivery and poll processes are deferred - "
"default 50."
msgstr "Maximale Systemlast bevor Verteil- und Empfangsprozesse verschoben werden - Standard 50"
#: mod/admin.php:1021
#: mod/admin.php:1042
msgid "Maximum Load Average (Frontend)"
msgstr "Maximum Load Average (Frontend)"
#: mod/admin.php:1021
#: mod/admin.php:1042
msgid "Maximum system load before the frontend quits service - default 50."
msgstr "Maximale Systemlast bevor Vordergrundprozesse pausiert werden - Standard 50."
#: mod/admin.php:1022
#: mod/admin.php:1043
msgid "Maximum table size for optimization"
msgstr "Maximale Tabellengröße zur Optimierung"
#: mod/admin.php:1022
#: mod/admin.php:1043
msgid ""
"Maximum table size (in MB) for the automatic optimization - default 100 MB. "
"Enter -1 to disable it."
msgstr "Maximale Tabellengröße (in MB) für die automatische Optimierung - Standard 100 MB. Gib -1 für Deaktivierung ein."
#: mod/admin.php:1023
#: mod/admin.php:1044
msgid "Minimum level of fragmentation"
msgstr "Minimaler Fragmentationsgrad"
#: mod/admin.php:1023
#: mod/admin.php:1044
msgid ""
"Minimum fragmenation level to start the automatic optimization - default "
"value is 30%."
msgstr "Minimales Fragmentationsgrad von Datenbanktabellen um die automatische Optimierung einzuleiten - Standardwert ist 30%"
#: mod/admin.php:1025
#: mod/admin.php:1046
msgid "Periodical check of global contacts"
msgstr "Regelmäßig globale Kontakte überprüfen"
#: mod/admin.php:1025
#: mod/admin.php:1046
msgid ""
"If enabled, the global contacts are checked periodically for missing or "
"outdated data and the vitality of the contacts and servers."
msgstr "Wenn diese Option aktiviert ist, werden die globalen Kontakte regelmäßig auf fehlende oder veraltete Daten sowie auf Erreichbarkeit des Kontakts und des Servers überprüft."
#: mod/admin.php:1026
#: mod/admin.php:1047
msgid "Days between requery"
msgstr "Tage zwischen erneuten Abfragen"
#: mod/admin.php:1026
#: mod/admin.php:1047
msgid "Number of days after which a server is requeried for his contacts."
msgstr "Legt das Abfrageintervall fest, nachdem ein Server erneut nach Kontakten abgefragt werden soll."
#: mod/admin.php:1027
#: mod/admin.php:1048
msgid "Discover contacts from other servers"
msgstr "Neue Kontakte auf anderen Servern entdecken"
#: mod/admin.php:1027
#: mod/admin.php:1048
msgid ""
"Periodically query other servers for contacts. You can choose between "
"'users': the users on the remote system, 'Global Contacts': active contacts "
@ -7069,32 +7940,32 @@ msgid ""
"Global Contacts'."
msgstr "Regelmäßig andere Server nach potentiellen Kontakten absuchen. Du kannst zwischen 'Nutzern', den tatsächlichen Nutzern des anderen Systems und 'globalen Kontakten', aktiven Kontakten die auf dem System bekannt sind, wählen. Der Fallback-Mechanismus ist für ältere Friendica und Redmatrix Server gedacht, bei denen globale Kontakte noch nicht verfügbar sind. Durch den Fallbackmodus entsteht auf deinem Server eine wesentlich höhere Last, empfohlen wird der Modus 'Nutzer, globale Kontakte'."
#: mod/admin.php:1028
#: mod/admin.php:1049
msgid "Timeframe for fetching global contacts"
msgstr "Zeitfenster für globale Kontakte"
#: mod/admin.php:1028
#: mod/admin.php:1049
msgid ""
"When the discovery is activated, this value defines the timeframe for the "
"activity of the global contacts that are fetched from other servers."
msgstr "Wenn die Entdeckung neuer Kontakte aktiv ist, definiert dieses Zeitfenster den Zeitraum in dem globale Kontakte als aktiv gelten und von anderen Servern importiert werden."
#: mod/admin.php:1029
#: mod/admin.php:1050
msgid "Search the local directory"
msgstr "Lokales Verzeichnis durchsuchen"
#: mod/admin.php:1029
#: mod/admin.php:1050
msgid ""
"Search the local directory instead of the global directory. When searching "
"locally, every search will be executed on the global directory in the "
"background. This improves the search results when the search is repeated."
msgstr "Suche im lokalen Verzeichnis anstelle des globalen Verzeichnisses durchführen. Jede Suche wird im Hintergrund auch im globalen Verzeichnis durchgeführt umd die Suchresultate zu verbessern, wenn diese Suche wiederholt wird."
#: mod/admin.php:1031
#: mod/admin.php:1052
msgid "Publish server information"
msgstr "Server Informationen veröffentlichen"
#: mod/admin.php:1031
#: mod/admin.php:1052
msgid ""
"If enabled, general server and usage data will be published. The data "
"contains the name and version of the server, number of users with public "
@ -7102,191 +7973,191 @@ msgid ""
" href='http://the-federation.info/'>the-federation.info</a> for details."
msgstr "Wenn aktiviert, werden allgemeine Informationen über den Server und Nutzungsdaten veröffentlicht. Die Daten beinhalten den Namen sowie die Version des Servers, die Anzahl der Nutzer_innen mit öffentlichen Profilen, die Anzahl der Beiträge sowie aktivierte Protokolle und Connectoren. Für Details bitte <a href='http://the-federation.info/'>the-federation.info</a> aufrufen."
#: mod/admin.php:1033
#: mod/admin.php:1054
msgid "Use MySQL full text engine"
msgstr "Nutze MySQL full text engine"
#: mod/admin.php:1033
#: mod/admin.php:1054
msgid ""
"Activates the full text engine. Speeds up search - but can only search for "
"four and more characters."
msgstr "Aktiviert die 'full text engine'. Beschleunigt die Suche - aber es kann nur nach vier oder mehr Zeichen gesucht werden."
#: mod/admin.php:1034
#: mod/admin.php:1055
msgid "Suppress Language"
msgstr "Sprachinformation unterdrücken"
#: mod/admin.php:1034
#: mod/admin.php:1055
msgid "Suppress language information in meta information about a posting."
msgstr "Verhindert das Erzeugen der Meta-Information zur Spracherkennung eines Beitrags."
#: mod/admin.php:1035
#: mod/admin.php:1056
msgid "Suppress Tags"
msgstr "Tags Unterdrücken"
#: mod/admin.php:1035
#: mod/admin.php:1056
msgid "Suppress showing a list of hashtags at the end of the posting."
msgstr "Unterdrückt die Anzeige von Tags am Ende eines Beitrags."
#: mod/admin.php:1036
#: mod/admin.php:1057
msgid "Path to item cache"
msgstr "Pfad zum Eintrag Cache"
#: mod/admin.php:1036
#: mod/admin.php:1057
msgid "The item caches buffers generated bbcode and external images."
msgstr "Im Item-Cache werden externe Bilder und geparster BBCode zwischen gespeichert."
#: mod/admin.php:1037
#: mod/admin.php:1058
msgid "Cache duration in seconds"
msgstr "Cache-Dauer in Sekunden"
#: mod/admin.php:1037
#: mod/admin.php:1058
msgid ""
"How long should the cache files be hold? Default value is 86400 seconds (One"
" day). To disable the item cache, set the value to -1."
msgstr "Wie lange sollen die gecachedten Dateien vorgehalten werden? Grundeinstellung sind 86400 Sekunden (ein Tag). Um den Item Cache zu deaktivieren, setze diesen Wert auf -1."
#: mod/admin.php:1038
#: mod/admin.php:1059
msgid "Maximum numbers of comments per post"
msgstr "Maximale Anzahl von Kommentaren pro Beitrag"
#: mod/admin.php:1038
#: mod/admin.php:1059
msgid "How much comments should be shown for each post? Default value is 100."
msgstr "Wie viele Kommentare sollen pro Beitrag angezeigt werden? Standardwert sind 100."
#: mod/admin.php:1039
#: mod/admin.php:1060
msgid "Path for lock file"
msgstr "Pfad für die Sperrdatei"
#: mod/admin.php:1039
#: mod/admin.php:1060
msgid ""
"The lock file is used to avoid multiple pollers at one time. Only define a "
"folder here."
msgstr "Die lock-Datei wird benutzt, damit nicht mehrere poller auf einmal laufen. Definiere hier einen Dateiverzeichnis."
#: mod/admin.php:1040
#: mod/admin.php:1061
msgid "Temp path"
msgstr "Temp Pfad"
#: mod/admin.php:1040
#: mod/admin.php:1061
msgid ""
"If you have a restricted system where the webserver can't access the system "
"temp path, enter another path here."
msgstr "Solltest du ein eingeschränktes System haben, auf dem der Webserver nicht auf das temp Verzeichnis des Systems zugreifen kann, setze hier einen anderen Pfad."
#: mod/admin.php:1041
#: mod/admin.php:1062
msgid "Base path to installation"
msgstr "Basis-Pfad zur Installation"
#: mod/admin.php:1041
#: mod/admin.php:1062
msgid ""
"If the system cannot detect the correct path to your installation, enter the"
" correct path here. This setting should only be set if you are using a "
"restricted system and symbolic links to your webroot."
msgstr "Falls das System nicht den korrekten Pfad zu deiner Installation gefunden hat, gib den richtigen Pfad bitte hier ein. Du solltest hier den Pfad nur auf einem eingeschränkten System angeben müssen, bei dem du mit symbolischen Links auf dein Webverzeichnis verweist."
#: mod/admin.php:1042
#: mod/admin.php:1063
msgid "Disable picture proxy"
msgstr "Bilder Proxy deaktivieren"
#: mod/admin.php:1042
#: mod/admin.php:1063
msgid ""
"The picture proxy increases performance and privacy. It shouldn't be used on"
" systems with very low bandwith."
msgstr "Der Proxy für Bilder verbessert die Leistung und Privatsphäre der Nutzer. Er sollte nicht auf Systemen verwendet werden, die nur über begrenzte Bandbreite verfügen."
#: mod/admin.php:1043
#: mod/admin.php:1064
msgid "Enable old style pager"
msgstr "Den Old-Style Pager aktiviren"
#: mod/admin.php:1043
#: mod/admin.php:1064
msgid ""
"The old style pager has page numbers but slows down massively the page "
"speed."
msgstr "Der Old-Style Pager zeigt Seitennummern an, verlangsamt aber auch drastisch das Laden einer Seite."
#: mod/admin.php:1044
#: mod/admin.php:1065
msgid "Only search in tags"
msgstr "Nur in Tags suchen"
#: mod/admin.php:1044
#: mod/admin.php:1065
msgid "On large systems the text search can slow down the system extremely."
msgstr "Auf großen Knoten kann die Volltext-Suche das System ausbremsen."
#: mod/admin.php:1046
#: mod/admin.php:1067
msgid "New base url"
msgstr "Neue Basis-URL"
#: mod/admin.php:1046
#: mod/admin.php:1067
msgid ""
"Change base url for this server. Sends relocate message to all DFRN contacts"
" of all users."
msgstr "Ändert die Basis-URL dieses Servers und sendet eine Umzugsmitteilung an alle DFRN Kontakte deiner Nutzer_innen."
#: mod/admin.php:1048
#: mod/admin.php:1069
msgid "RINO Encryption"
msgstr "RINO Verschlüsselung"
#: mod/admin.php:1048
#: mod/admin.php:1069
msgid "Encryption layer between nodes."
msgstr "Verschlüsselung zwischen Friendica Instanzen"
#: mod/admin.php:1049
#: mod/admin.php:1070
msgid "Embedly API key"
msgstr "Embedly API Schlüssel"
#: mod/admin.php:1049
#: mod/admin.php:1070
msgid ""
"<a href='http://embed.ly'>Embedly</a> is used to fetch additional data for "
"web pages. This is an optional parameter."
msgstr "<a href='http://embed.ly'>Embedly</a> wird verwendet um zusätzliche Informationen von Webseiten zu laden. Dies ist ein optionaler Parameter."
#: mod/admin.php:1051
#: mod/admin.php:1072
msgid "Enable 'worker' background processing"
msgstr "Aktiviere die 'Worker' Hintergrundprozesse"
#: mod/admin.php:1051
#: mod/admin.php:1072
msgid ""
"The worker background processing limits the number of parallel background "
"jobs to a maximum number and respects the system load."
msgstr "Der 'background worker' Prozess begrenzt die Zahl der Prozesse, die im Hintergrund parallel laufen und beachtet dabei die Systemlast."
#: mod/admin.php:1052
#: mod/admin.php:1073
msgid "Maximum number of parallel workers"
msgstr "Maximale Anzahl parallel laufender Worker"
#: mod/admin.php:1052
#: mod/admin.php:1073
msgid ""
"On shared hosters set this to 2. On larger systems, values of 10 are great. "
"Default value is 4."
msgstr "Wenn dein Knoten bei einem Shared Hoster ist, setzte diesen Wert auf 2. Auf größeren Systemen funktioniert ein Wert von 10 recht gut. Standardeinstellung sind 4."
#: mod/admin.php:1053
#: mod/admin.php:1074
msgid "Don't use 'proc_open' with the worker"
msgstr "'proc_open' nicht mit den Workern verwenden"
#: mod/admin.php:1053
#: mod/admin.php:1074
msgid ""
"Enable this if your system doesn't allow the use of 'proc_open'. This can "
"happen on shared hosters. If this is enabled you should increase the "
"frequency of poller calls in your crontab."
msgstr "Aktiviere diese Option, wenn dein System die Verwendung von 'proc_open' verhindert. Dies könnte auf Shared Hostern der Fall sein. Wenn du diese Option aktivierst, solltest du die Frequenz der poller Aufrufe in deiner crontab erhöhen."
#: mod/admin.php:1054
#: mod/admin.php:1075
msgid "Enable fastlane"
msgstr "Aktiviere Fastlane"
#: mod/admin.php:1054
#: mod/admin.php:1075
msgid ""
"When enabed, the fastlane mechanism starts an additional worker if processes"
" with higher priority are blocked by processes of lower priority."
msgstr "Wenn aktiviert, wird der Fastlane-Mechanismus einen weiteren Worker-Prozeß starten wenn Prozesse mit höherer Priorität von Prozessen mit niedrigerer Priorität blockiert werden."
#: mod/admin.php:1055
#: mod/admin.php:1076
msgid "Enable frontend worker"
msgstr "Aktiviere den Frontend Worker"
#: mod/admin.php:1055
#: mod/admin.php:1076
msgid ""
"When enabled the Worker process is triggered when backend access is "
"performed (e.g. messages being delivered). On smaller sites you might want "
@ -7296,66 +8167,66 @@ msgid ""
"this."
msgstr "Ist diese Option aktiv, wird der Worker Prozess durch Aktionen am Frontend gestartet (z.B. wenn Nachrichten zugestellt werden). Auf kleineren Seiten sollte yourdomain.tld/worker regelmäßig, beispielsweise durch einen externen Cron Anbieter, aufgerufen werden. Du solltest dies Option nur dann aktivieren, wenn du keinen Cron Job auf deinem eigenen Server starten kannst. Damit diese Option einen Effekt hat, muss der Worker Prozess aktiviert sein."
#: mod/admin.php:1084
#: mod/admin.php:1105
msgid "Update has been marked successful"
msgstr "Update wurde als erfolgreich markiert"
#: mod/admin.php:1092
#: mod/admin.php:1113
#, php-format
msgid "Database structure update %s was successfully applied."
msgstr "Das Update %s der Struktur der Datenbank wurde erfolgreich angewandt."
#: mod/admin.php:1095
#: mod/admin.php:1116
#, php-format
msgid "Executing of database structure update %s failed with error: %s"
msgstr "Das Update %s der Struktur der Datenbank schlug mit folgender Fehlermeldung fehl: %s"
#: mod/admin.php:1107
#: mod/admin.php:1128
#, php-format
msgid "Executing %s failed with error: %s"
msgstr "Die Ausführung von %s schlug fehl. Fehlermeldung: %s"
#: mod/admin.php:1110
#: mod/admin.php:1131
#, php-format
msgid "Update %s was successfully applied."
msgstr "Update %s war erfolgreich."
#: mod/admin.php:1114
#: mod/admin.php:1135
#, php-format
msgid "Update %s did not return a status. Unknown if it succeeded."
msgstr "Update %s hat keinen Status zurückgegeben. Unbekannter Status."
#: mod/admin.php:1116
#: mod/admin.php:1137
#, php-format
msgid "There was no additional update function %s that needed to be called."
msgstr "Es gab keine weitere Update-Funktion, die von %s ausgeführt werden musste."
#: mod/admin.php:1135
#: mod/admin.php:1156
msgid "No failed updates."
msgstr "Keine fehlgeschlagenen Updates."
#: mod/admin.php:1136
#: mod/admin.php:1157
msgid "Check database structure"
msgstr "Datenbank Struktur überprüfen"
#: mod/admin.php:1141
#: mod/admin.php:1162
msgid "Failed Updates"
msgstr "Fehlgeschlagene Updates"
#: mod/admin.php:1142
#: mod/admin.php:1163
msgid ""
"This does not include updates prior to 1139, which did not return a status."
msgstr "Ohne Updates vor 1139, da diese keinen Status zurückgegeben haben."
#: mod/admin.php:1143
#: mod/admin.php:1164
msgid "Mark success (if update was manually applied)"
msgstr "Als erfolgreich markieren (falls das Update manuell installiert wurde)"
#: mod/admin.php:1144
#: mod/admin.php:1165
msgid "Attempt to execute this update step automatically"
msgstr "Versuchen, diesen Schritt automatisch auszuführen"
#: mod/admin.php:1178
#: mod/admin.php:1199
#, php-format
msgid ""
"\n"
@ -7363,7 +8234,7 @@ msgid ""
"\t\t\t\tthe administrator of %2$s has set up an account for you."
msgstr "\nHallo %1$s,\n\nauf %2$s wurde ein Account für Dich angelegt."
#: mod/admin.php:1181
#: mod/admin.php:1202
#, php-format
msgid ""
"\n"
@ -7393,168 +8264,162 @@ msgid ""
"\t\t\tThank you and welcome to %4$s."
msgstr "\nNachfolgend die Anmelde-Details:\n\tAdresse der Seite:\t%1$s\n\tBenutzername:\t%2$s\n\tPasswort:\t%3$s\n\nDu kannst Dein Passwort unter \"Einstellungen\" ändern, sobald Du Dich\nangemeldet hast.\n\nBitte nimm Dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst Du ja auch einige Informationen über Dich in Deinem\nProfil veröffentlichen, damit andere Leute Dich einfacher finden können.\nBearbeite hierfür einfach Dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen Dir, Deinen kompletten Namen anzugeben und ein zu Dir\npassendes Profilbild zu wählen, damit Dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn Du auf Deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die Deine Interessen teilen.\n\nWir respektieren Deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn Du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nNun viel Spaß, gute Begegnungen und willkommen auf %4$s."
#: mod/admin.php:1225
#: mod/admin.php:1246
#, php-format
msgid "%s user blocked/unblocked"
msgid_plural "%s users blocked/unblocked"
msgstr[0] "%s Benutzer geblockt/freigegeben"
msgstr[1] "%s Benutzer geblockt/freigegeben"
#: mod/admin.php:1232
#: mod/admin.php:1253
#, php-format
msgid "%s user deleted"
msgid_plural "%s users deleted"
msgstr[0] "%s Nutzer gelöscht"
msgstr[1] "%s Nutzer gelöscht"
#: mod/admin.php:1279
#: mod/admin.php:1300
#, php-format
msgid "User '%s' deleted"
msgstr "Nutzer '%s' gelöscht"
#: mod/admin.php:1287
#: mod/admin.php:1308
#, php-format
msgid "User '%s' unblocked"
msgstr "Nutzer '%s' entsperrt"
#: mod/admin.php:1287
#: mod/admin.php:1308
#, php-format
msgid "User '%s' blocked"
msgstr "Nutzer '%s' gesperrt"
#: mod/admin.php:1396 mod/admin.php:1422
#: mod/admin.php:1417 mod/admin.php:1443
msgid "Register date"
msgstr "Anmeldedatum"
#: mod/admin.php:1396 mod/admin.php:1422
#: mod/admin.php:1417 mod/admin.php:1443
msgid "Last login"
msgstr "Letzte Anmeldung"
#: mod/admin.php:1396 mod/admin.php:1422
#: mod/admin.php:1417 mod/admin.php:1443
msgid "Last item"
msgstr "Letzter Beitrag"
#: mod/admin.php:1405
#: mod/admin.php:1426
msgid "Add User"
msgstr "Nutzer hinzufügen"
#: mod/admin.php:1406
#: mod/admin.php:1427
msgid "select all"
msgstr "Alle auswählen"
#: mod/admin.php:1407
#: mod/admin.php:1428
msgid "User registrations waiting for confirm"
msgstr "Neuanmeldungen, die auf Deine Bestätigung warten"
#: mod/admin.php:1408
#: mod/admin.php:1429
msgid "User waiting for permanent deletion"
msgstr "Nutzer wartet auf permanente Löschung"
#: mod/admin.php:1409
#: mod/admin.php:1430
msgid "Request date"
msgstr "Anfragedatum"
#: mod/admin.php:1410
#: mod/admin.php:1431
msgid "No registrations."
msgstr "Keine Neuanmeldungen."
#: mod/admin.php:1411
#: mod/admin.php:1432
msgid "Note from the user"
msgstr "Hinweis vom Nutzer"
#: mod/admin.php:1413
#: mod/admin.php:1433 mod/notifications.php:176 mod/notifications.php:255
msgid "Approve"
msgstr "Genehmigen"
#: mod/admin.php:1434
msgid "Deny"
msgstr "Verwehren"
#: mod/admin.php:1415 mod/contacts.php:605 mod/contacts.php:805
#: mod/contacts.php:983
msgid "Block"
msgstr "Sperren"
#: mod/admin.php:1416 mod/contacts.php:605 mod/contacts.php:805
#: mod/contacts.php:983
msgid "Unblock"
msgstr "Entsperren"
#: mod/admin.php:1417
#: mod/admin.php:1438
msgid "Site admin"
msgstr "Seitenadministrator"
#: mod/admin.php:1418
#: mod/admin.php:1439
msgid "Account expired"
msgstr "Account ist abgelaufen"
#: mod/admin.php:1421
#: mod/admin.php:1442
msgid "New User"
msgstr "Neuer Nutzer"
#: mod/admin.php:1422
#: mod/admin.php:1443
msgid "Deleted since"
msgstr "Gelöscht seit"
#: mod/admin.php:1427
#: mod/admin.php:1448
msgid ""
"Selected users will be deleted!\\n\\nEverything these users had posted on "
"this site will be permanently deleted!\\n\\nAre you sure?"
msgstr "Die markierten Nutzer werden gelöscht!\\n\\nAlle Beiträge, die diese Nutzer auf dieser Seite veröffentlicht haben, werden permanent gelöscht!\\n\\nBist Du sicher?"
#: mod/admin.php:1428
#: mod/admin.php:1449
msgid ""
"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
"site will be permanently deleted!\\n\\nAre you sure?"
msgstr "Der Nutzer {0} wird gelöscht!\\n\\nAlles was dieser Nutzer auf dieser Seite veröffentlicht hat, wird permanent gelöscht!\\n\\nBist Du sicher?"
#: mod/admin.php:1438
#: mod/admin.php:1459
msgid "Name of the new user."
msgstr "Name des neuen Nutzers"
#: mod/admin.php:1439
#: mod/admin.php:1460
msgid "Nickname"
msgstr "Spitzname"
#: mod/admin.php:1439
#: mod/admin.php:1460
msgid "Nickname of the new user."
msgstr "Spitznamen für den neuen Nutzer"
#: mod/admin.php:1440
#: mod/admin.php:1461
msgid "Email address of the new user."
msgstr "Email Adresse des neuen Nutzers"
#: mod/admin.php:1483
#: mod/admin.php:1504
#, php-format
msgid "Plugin %s disabled."
msgstr "Plugin %s deaktiviert."
#: mod/admin.php:1487
#: mod/admin.php:1508
#, php-format
msgid "Plugin %s enabled."
msgstr "Plugin %s aktiviert."
#: mod/admin.php:1498 mod/admin.php:1734
#: mod/admin.php:1519 mod/admin.php:1767
msgid "Disable"
msgstr "Ausschalten"
#: mod/admin.php:1500 mod/admin.php:1736
#: mod/admin.php:1521 mod/admin.php:1769
msgid "Enable"
msgstr "Einschalten"
#: mod/admin.php:1523 mod/admin.php:1781
#: mod/admin.php:1544 mod/admin.php:1814
msgid "Toggle"
msgstr "Umschalten"
#: mod/admin.php:1531 mod/admin.php:1790
#: mod/admin.php:1552 mod/admin.php:1823
msgid "Author: "
msgstr "Autor:"
#: mod/admin.php:1532 mod/admin.php:1791
#: mod/admin.php:1553 mod/admin.php:1824
msgid "Maintainer: "
msgstr "Betreuer:"
#: mod/admin.php:1584
#: mod/admin.php:1608
msgid "Reload active plugins"
msgstr "Aktive Plugins neu laden"
#: mod/admin.php:1589
#: mod/admin.php:1613
#, php-format
msgid ""
"There are currently no plugins available on your node. You can find the "
@ -7562,70 +8427,70 @@ msgid ""
"in the open plugin registry at %2$s"
msgstr "Es sind derzeit keine Plugins auf diesem Knoten verfügbar. Du findest das offizielle Plugin-Repository unter %1$s und weitere eventuell interessante Plugins im offenen Plugins-Verzeichnis auf %2$s."
#: mod/admin.php:1694
#: mod/admin.php:1727
msgid "No themes found."
msgstr "Keine Themen gefunden."
#: mod/admin.php:1772
#: mod/admin.php:1805
msgid "Screenshot"
msgstr "Bildschirmfoto"
#: mod/admin.php:1832
#: mod/admin.php:1865
msgid "Reload active themes"
msgstr "Aktives Theme neu laden"
#: mod/admin.php:1837
#: mod/admin.php:1870
#, php-format
msgid "No themes found on the system. They should be paced in %1$s"
msgstr "Es wurden keine Themes auf dem System gefunden. Diese sollten in %1$s patziert werden."
#: mod/admin.php:1838
#: mod/admin.php:1871
msgid "[Experimental]"
msgstr "[Experimentell]"
#: mod/admin.php:1839
#: mod/admin.php:1872
msgid "[Unsupported]"
msgstr "[Nicht unterstützt]"
#: mod/admin.php:1863
#: mod/admin.php:1896
msgid "Log settings updated."
msgstr "Protokolleinstellungen aktualisiert."
#: mod/admin.php:1895
#: mod/admin.php:1928
msgid "PHP log currently enabled."
msgstr "PHP Protokollierung ist derzeit aktiviert."
#: mod/admin.php:1897
#: mod/admin.php:1930
msgid "PHP log currently disabled."
msgstr "PHP Protokollierung ist derzeit nicht aktiviert."
#: mod/admin.php:1906
#: mod/admin.php:1939
msgid "Clear"
msgstr "löschen"
#: mod/admin.php:1911
#: mod/admin.php:1944
msgid "Enable Debugging"
msgstr "Protokoll führen"
#: mod/admin.php:1912
#: mod/admin.php:1945
msgid "Log file"
msgstr "Protokolldatei"
#: mod/admin.php:1912
#: mod/admin.php:1945
msgid ""
"Must be writable by web server. Relative to your Friendica top-level "
"directory."
msgstr "Webserver muss Schreibrechte besitzen. Abhängig vom Friendica-Installationsverzeichnis."
#: mod/admin.php:1913
#: mod/admin.php:1946
msgid "Log level"
msgstr "Protokoll-Level"
#: mod/admin.php:1916
#: mod/admin.php:1949
msgid "PHP logging"
msgstr "PHP Protokollieren"
#: mod/admin.php:1917
#: mod/admin.php:1950
msgid ""
"To enable logging of PHP errors and warnings you can add the following to "
"the .htconfig.php file of your installation. The filename set in the "
@ -7634,987 +8499,24 @@ msgid ""
"'display_errors' is to enable these options, set to '0' to disable them."
msgstr "Um PHP Warnungen und Fehler zu protokollieren, kannst du die folgenden Zeilen zur .htconfig.php Datei deiner Installation hinzufügen. Den Dateinamen der Log-Datei legst du in der Zeile mit dem 'error_log' fest, Er ist relativ zum Friendica-Stammverzeichnis und muss schreibbar durch den Webserver sein. Eine \"1\" als Option für die Punkte 'log_errors' und 'display_errors' aktiviert die Funktionen zum Protokollieren bzw. Anzeigen der Fehler, eine \"0\" deaktiviert sie."
#: mod/admin.php:2045
#: mod/admin.php:2078
#, php-format
msgid "Lock feature %s"
msgstr "Feature festlegen: %s"
#: mod/admin.php:2053
#: mod/admin.php:2086
msgid "Manage Additional Features"
msgstr "Zusätzliche Features Verwalten"
#: mod/contacts.php:128
#, php-format
msgid "%d contact edited."
msgid_plural "%d contacts edited."
msgstr[0] "%d Kontakt bearbeitet."
msgstr[1] "%d Kontakte bearbeitet."
#: mod/viewcontacts.php:75
msgid "No contacts."
msgstr "Keine Kontakte."
#: mod/contacts.php:159 mod/contacts.php:368
msgid "Could not access contact record."
msgstr "Konnte nicht auf die Kontaktdaten zugreifen."
#: mod/network.php:190 mod/search.php:25
msgid "Remove term"
msgstr "Begriff entfernen"
#: mod/contacts.php:173
msgid "Could not locate selected profile."
msgstr "Konnte das ausgewählte Profil nicht finden."
#: mod/contacts.php:206
msgid "Contact updated."
msgstr "Kontakt aktualisiert."
#: mod/contacts.php:208 mod/dfrn_request.php:583
msgid "Failed to update contact record."
msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen."
#: mod/contacts.php:389
msgid "Contact has been blocked"
msgstr "Kontakt wurde blockiert"
#: mod/contacts.php:389
msgid "Contact has been unblocked"
msgstr "Kontakt wurde wieder freigegeben"
#: mod/contacts.php:400
msgid "Contact has been ignored"
msgstr "Kontakt wurde ignoriert"
#: mod/contacts.php:400
msgid "Contact has been unignored"
msgstr "Kontakt wird nicht mehr ignoriert"
#: mod/contacts.php:412
msgid "Contact has been archived"
msgstr "Kontakt wurde archiviert"
#: mod/contacts.php:412
msgid "Contact has been unarchived"
msgstr "Kontakt wurde aus dem Archiv geholt"
#: mod/contacts.php:437
msgid "Drop contact"
msgstr "Kontakt löschen"
#: mod/contacts.php:440 mod/contacts.php:801
msgid "Do you really want to delete this contact?"
msgstr "Möchtest Du wirklich diesen Kontakt löschen?"
#: mod/contacts.php:457
msgid "Contact has been removed."
msgstr "Kontakt wurde entfernt."
#: mod/contacts.php:498
#, php-format
msgid "You are mutual friends with %s"
msgstr "Du hast mit %s eine beidseitige Freundschaft"
#: mod/contacts.php:502
#, php-format
msgid "You are sharing with %s"
msgstr "Du teilst mit %s"
#: mod/contacts.php:507
#, php-format
msgid "%s is sharing with you"
msgstr "%s teilt mit Dir"
#: mod/contacts.php:527
msgid "Private communications are not available for this contact."
msgstr "Private Kommunikation ist für diesen Kontakt nicht verfügbar."
#: mod/contacts.php:534
msgid "(Update was successful)"
msgstr "(Aktualisierung war erfolgreich)"
#: mod/contacts.php:534
msgid "(Update was not successful)"
msgstr "(Aktualisierung war nicht erfolgreich)"
#: mod/contacts.php:536 mod/contacts.php:964
msgid "Suggest friends"
msgstr "Kontakte vorschlagen"
#: mod/contacts.php:540
#, php-format
msgid "Network type: %s"
msgstr "Netzwerktyp: %s"
#: mod/contacts.php:553
msgid "Communications lost with this contact!"
msgstr "Verbindungen mit diesem Kontakt verloren!"
#: mod/contacts.php:556
msgid "Fetch further information for feeds"
msgstr "Weitere Informationen zu Feeds holen"
#: mod/contacts.php:557
msgid "Fetch information"
msgstr "Beziehe Information"
#: mod/contacts.php:557
msgid "Fetch information and keywords"
msgstr "Beziehe Information und Schlüsselworte"
#: mod/contacts.php:575
msgid "Contact"
msgstr "Kontakt"
#: mod/contacts.php:578
msgid "Profile Visibility"
msgstr "Profil-Sichtbarkeit"
#: mod/contacts.php:579
#, php-format
msgid ""
"Please choose the profile you would like to display to %s when viewing your "
"profile securely."
msgstr "Bitte wähle eines Deiner Profile das angezeigt werden soll, wenn %s Dein Profil aufruft."
#: mod/contacts.php:580
msgid "Contact Information / Notes"
msgstr "Kontakt Informationen / Notizen"
#: mod/contacts.php:581
msgid "Edit contact notes"
msgstr "Notizen zum Kontakt bearbeiten"
#: mod/contacts.php:587
msgid "Block/Unblock contact"
msgstr "Kontakt blockieren/freischalten"
#: mod/contacts.php:588
msgid "Ignore contact"
msgstr "Ignoriere den Kontakt"
#: mod/contacts.php:589
msgid "Repair URL settings"
msgstr "URL Einstellungen reparieren"
#: mod/contacts.php:590
msgid "View conversations"
msgstr "Unterhaltungen anzeigen"
#: mod/contacts.php:596
msgid "Last update:"
msgstr "Letzte Aktualisierung: "
#: mod/contacts.php:598
msgid "Update public posts"
msgstr "Öffentliche Beiträge aktualisieren"
#: mod/contacts.php:600 mod/contacts.php:974
msgid "Update now"
msgstr "Jetzt aktualisieren"
#: mod/contacts.php:606 mod/contacts.php:806 mod/contacts.php:991
msgid "Unignore"
msgstr "Ignorieren aufheben"
#: mod/contacts.php:610
msgid "Currently blocked"
msgstr "Derzeit geblockt"
#: mod/contacts.php:611
msgid "Currently ignored"
msgstr "Derzeit ignoriert"
#: mod/contacts.php:612
msgid "Currently archived"
msgstr "Momentan archiviert"
#: mod/contacts.php:613
msgid ""
"Replies/likes to your public posts <strong>may</strong> still be visible"
msgstr "Antworten/Likes auf deine öffentlichen Beiträge <strong>könnten</strong> weiterhin sichtbar sein"
#: mod/contacts.php:614
msgid "Notification for new posts"
msgstr "Benachrichtigung bei neuen Beiträgen"
#: mod/contacts.php:614
msgid "Send a notification of every new post of this contact"
msgstr "Sende eine Benachrichtigung, wann immer dieser Kontakt einen neuen Beitrag schreibt."
#: mod/contacts.php:617
msgid "Blacklisted keywords"
msgstr "Blacklistete Schlüsselworte "
#: mod/contacts.php:617
msgid ""
"Comma separated list of keywords that should not be converted to hashtags, "
"when \"Fetch information and keywords\" is selected"
msgstr "Komma-Separierte Liste mit Schlüsselworten, die nicht in Hashtags konvertiert werden, wenn \"Beziehe Information und Schlüsselworte\" aktiviert wurde"
#: mod/contacts.php:635
msgid "Actions"
msgstr "Aktionen"
#: mod/contacts.php:638
msgid "Contact Settings"
msgstr "Kontakteinstellungen"
#: mod/contacts.php:684
msgid "Suggestions"
msgstr "Kontaktvorschläge"
#: mod/contacts.php:687
msgid "Suggest potential friends"
msgstr "Kontakte vorschlagen"
#: mod/contacts.php:695
msgid "Show all contacts"
msgstr "Alle Kontakte anzeigen"
#: mod/contacts.php:700
msgid "Unblocked"
msgstr "Ungeblockt"
#: mod/contacts.php:703
msgid "Only show unblocked contacts"
msgstr "Nur nicht-blockierte Kontakte anzeigen"
#: mod/contacts.php:709
msgid "Blocked"
msgstr "Geblockt"
#: mod/contacts.php:712
msgid "Only show blocked contacts"
msgstr "Nur blockierte Kontakte anzeigen"
#: mod/contacts.php:718
msgid "Ignored"
msgstr "Ignoriert"
#: mod/contacts.php:721
msgid "Only show ignored contacts"
msgstr "Nur ignorierte Kontakte anzeigen"
#: mod/contacts.php:727
msgid "Archived"
msgstr "Archiviert"
#: mod/contacts.php:730
msgid "Only show archived contacts"
msgstr "Nur archivierte Kontakte anzeigen"
#: mod/contacts.php:736
msgid "Hidden"
msgstr "Verborgen"
#: mod/contacts.php:739
msgid "Only show hidden contacts"
msgstr "Nur verborgene Kontakte anzeigen"
#: mod/contacts.php:796
msgid "Search your contacts"
msgstr "Suche in deinen Kontakten"
#: mod/contacts.php:807 mod/contacts.php:999
msgid "Archive"
msgstr "Archivieren"
#: mod/contacts.php:807 mod/contacts.php:999
msgid "Unarchive"
msgstr "Aus Archiv zurückholen"
#: mod/contacts.php:810
msgid "Batch Actions"
msgstr "Stapelverarbeitung"
#: mod/contacts.php:856
msgid "View all contacts"
msgstr "Alle Kontakte anzeigen"
#: mod/contacts.php:866
msgid "View all common friends"
msgstr "Alle Kontakte anzeigen"
#: mod/contacts.php:873
msgid "Advanced Contact Settings"
msgstr "Fortgeschrittene Kontakteinstellungen"
#: mod/contacts.php:907
msgid "Mutual Friendship"
msgstr "Beidseitige Freundschaft"
#: mod/contacts.php:911
msgid "is a fan of yours"
msgstr "ist ein Fan von dir"
#: mod/contacts.php:915
msgid "you are a fan of"
msgstr "Du bist Fan von"
#: mod/contacts.php:985
msgid "Toggle Blocked status"
msgstr "Geblockt-Status ein-/ausschalten"
#: mod/contacts.php:993
msgid "Toggle Ignored status"
msgstr "Ignoriert-Status ein-/ausschalten"
#: mod/contacts.php:1001
msgid "Toggle Archive status"
msgstr "Archiviert-Status ein-/ausschalten"
#: mod/contacts.php:1009
msgid "Delete contact"
msgstr "Lösche den Kontakt"
#: mod/dfrn_confirm.php:127
msgid ""
"This may occasionally happen if contact was requested by both persons and it"
" has already been approved."
msgstr "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde."
#: mod/dfrn_confirm.php:246
msgid "Response from remote site was not understood."
msgstr "Antwort der Gegenstelle unverständlich."
#: mod/dfrn_confirm.php:255 mod/dfrn_confirm.php:260
msgid "Unexpected response from remote site: "
msgstr "Unerwartete Antwort der Gegenstelle: "
#: mod/dfrn_confirm.php:269
msgid "Confirmation completed successfully."
msgstr "Bestätigung erfolgreich abgeschlossen."
#: mod/dfrn_confirm.php:271 mod/dfrn_confirm.php:285 mod/dfrn_confirm.php:292
msgid "Remote site reported: "
msgstr "Gegenstelle meldet: "
#: mod/dfrn_confirm.php:283
msgid "Temporary failure. Please wait and try again."
msgstr "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal."
#: mod/dfrn_confirm.php:290
msgid "Introduction failed or was revoked."
msgstr "Kontaktanfrage schlug fehl oder wurde zurückgezogen."
#: mod/dfrn_confirm.php:419
msgid "Unable to set contact photo."
msgstr "Konnte das Bild des Kontakts nicht speichern."
#: mod/dfrn_confirm.php:557
#, php-format
msgid "No user record found for '%s' "
msgstr "Für '%s' wurde kein Nutzer gefunden"
#: mod/dfrn_confirm.php:567
msgid "Our site encryption key is apparently messed up."
msgstr "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung."
#: mod/dfrn_confirm.php:578
msgid "Empty site URL was provided or URL could not be decrypted by us."
msgstr "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden."
#: mod/dfrn_confirm.php:599
msgid "Contact record was not found for you on our site."
msgstr "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden."
#: mod/dfrn_confirm.php:613
#, php-format
msgid "Site public key not available in contact record for URL %s."
msgstr "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server."
#: mod/dfrn_confirm.php:633
msgid ""
"The ID provided by your system is a duplicate on our system. It should work "
"if you try again."
msgstr "Die ID, die uns Dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal."
#: mod/dfrn_confirm.php:644
msgid "Unable to set your contact credentials on our system."
msgstr "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden."
#: mod/dfrn_confirm.php:703
msgid "Unable to update your contact profile details on our system"
msgstr "Die Updates für Dein Profil konnten nicht gespeichert werden"
#: mod/dfrn_confirm.php:775
#, php-format
msgid "%1$s has joined %2$s"
msgstr "%1$s ist %2$s beigetreten"
#: mod/dfrn_request.php:101
msgid "This introduction has already been accepted."
msgstr "Diese Kontaktanfrage wurde bereits akzeptiert."
#: mod/dfrn_request.php:124 mod/dfrn_request.php:520
msgid "Profile location is not valid or does not contain profile information."
msgstr "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung."
#: mod/dfrn_request.php:129 mod/dfrn_request.php:525
msgid "Warning: profile location has no identifiable owner name."
msgstr "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden."
#: mod/dfrn_request.php:131 mod/dfrn_request.php:527
msgid "Warning: profile location has no profile photo."
msgstr "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse."
#: mod/dfrn_request.php:134 mod/dfrn_request.php:530
#, php-format
msgid "%d required parameter was not found at the given location"
msgid_plural "%d required parameters were not found at the given location"
msgstr[0] "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden"
msgstr[1] "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden"
#: mod/dfrn_request.php:180
msgid "Introduction complete."
msgstr "Kontaktanfrage abgeschlossen."
#: mod/dfrn_request.php:222
msgid "Unrecoverable protocol error."
msgstr "Nicht behebbarer Protokollfehler."
#: mod/dfrn_request.php:250
msgid "Profile unavailable."
msgstr "Profil nicht verfügbar."
#: mod/dfrn_request.php:277
#, php-format
msgid "%s has received too many connection requests today."
msgstr "%s hat heute zu viele Kontaktanfragen erhalten."
#: mod/dfrn_request.php:278
msgid "Spam protection measures have been invoked."
msgstr "Maßnahmen zum Spamschutz wurden ergriffen."
#: mod/dfrn_request.php:279
msgid "Friends are advised to please try again in 24 hours."
msgstr "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen."
#: mod/dfrn_request.php:341
msgid "Invalid locator"
msgstr "Ungültiger Locator"
#: mod/dfrn_request.php:350
msgid "Invalid email address."
msgstr "Ungültige E-Mail-Adresse."
#: mod/dfrn_request.php:375
msgid "This account has not been configured for email. Request failed."
msgstr "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen."
#: mod/dfrn_request.php:478
msgid "You have already introduced yourself here."
msgstr "Du hast Dich hier bereits vorgestellt."
#: mod/dfrn_request.php:482
#, php-format
msgid "Apparently you are already friends with %s."
msgstr "Es scheint so, als ob Du bereits mit %s in Kontakt stehst."
#: mod/dfrn_request.php:503
msgid "Invalid profile URL."
msgstr "Ungültige Profil-URL."
#: mod/dfrn_request.php:604
msgid "Your introduction has been sent."
msgstr "Deine Kontaktanfrage wurde gesendet."
#: mod/dfrn_request.php:644
msgid ""
"Remote subscription can't be done for your network. Please subscribe "
"directly on your system."
msgstr "Entferntes abon­nie­ren kann für dein Netzwerk nicht durchgeführt werden. Bitte nutze direkt die Abonnieren-Funktion deines Systems. "
#: mod/dfrn_request.php:664
msgid "Please login to confirm introduction."
msgstr "Bitte melde Dich an, um die Kontaktanfrage zu bestätigen."
#: mod/dfrn_request.php:674
msgid ""
"Incorrect identity currently logged in. Please login to "
"<strong>this</strong> profile."
msgstr "Momentan bist Du mit einer anderen Identität angemeldet. Bitte melde Dich mit <strong>diesem</strong> Profil an."
#: mod/dfrn_request.php:688 mod/dfrn_request.php:705
msgid "Confirm"
msgstr "Bestätigen"
#: mod/dfrn_request.php:700
msgid "Hide this contact"
msgstr "Verberge diesen Kontakt"
#: mod/dfrn_request.php:703
#, php-format
msgid "Welcome home %s."
msgstr "Willkommen zurück %s."
#: mod/dfrn_request.php:704
#, php-format
msgid "Please confirm your introduction/connection request to %s."
msgstr "Bitte bestätige Deine Kontaktanfrage bei %s."
#: mod/dfrn_request.php:833
msgid ""
"Please enter your 'Identity Address' from one of the following supported "
"communications networks:"
msgstr "Bitte gib die Adresse Deines Profils in einem der unterstützten sozialen Netzwerke an:"
#: mod/dfrn_request.php:854
#, php-format
msgid ""
"If you are not yet a member of the free social web, <a "
"href=\"%s/siteinfo\">follow this link to find a public Friendica site and "
"join us today</a>."
msgstr "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, <a href=\"%s/siteinfo\">folge diesem Link</a> um einen öffentlichen Friendica-Server zu finden und beizutreten."
#: mod/dfrn_request.php:859
msgid "Friend/Connection Request"
msgstr "Kontaktanfrage"
#: mod/dfrn_request.php:860
msgid ""
"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
"testuser@identi.ca"
msgstr "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
#: mod/dfrn_request.php:861 mod/follow.php:109
msgid "Please answer the following:"
msgstr "Bitte beantworte folgendes:"
#: mod/dfrn_request.php:862 mod/follow.php:110
#, php-format
msgid "Does %s know you?"
msgstr "Kennt %s Dich?"
#: mod/dfrn_request.php:866 mod/follow.php:111
msgid "Add a personal note:"
msgstr "Eine persönliche Notiz beifügen:"
#: mod/dfrn_request.php:869
msgid "StatusNet/Federated Social Web"
msgstr "StatusNet/Federated Social Web"
#: mod/dfrn_request.php:871
#, php-format
msgid ""
" - please do not use this form. Instead, enter %s into your Diaspora search"
" bar."
msgstr " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in Deiner Diaspora Suchleiste."
#: mod/dfrn_request.php:872 mod/follow.php:117
msgid "Your Identity Address:"
msgstr "Adresse Deines Profils:"
#: mod/dfrn_request.php:875 mod/follow.php:19
msgid "Submit Request"
msgstr "Anfrage abschicken"
#: mod/follow.php:30
msgid "You already added this contact."
msgstr "Du hast den Kontakt bereits hinzugefügt."
#: mod/follow.php:39
msgid "Diaspora support isn't enabled. Contact can't be added."
msgstr "Diaspora Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden."
#: mod/follow.php:46
msgid "OStatus support is disabled. Contact can't be added."
msgstr "OStatus Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden."
#: mod/follow.php:53
msgid "The network type couldn't be detected. Contact can't be added."
msgstr "Der Netzwerktype wurde nicht erkannt. Der Kontakt kann nicht hinzugefügt werden."
#: mod/follow.php:180
msgid "Contact added"
msgstr "Kontakt hinzugefügt"
#: mod/install.php:139
msgid "Friendica Communications Server - Setup"
msgstr "Friendica-Server für soziale Netzwerke Setup"
#: mod/install.php:145
msgid "Could not connect to database."
msgstr "Verbindung zur Datenbank gescheitert."
#: mod/install.php:149
msgid "Could not create table."
msgstr "Tabelle konnte nicht angelegt werden."
#: mod/install.php:155
msgid "Your Friendica site database has been installed."
msgstr "Die Datenbank Deiner Friendicaseite wurde installiert."
#: mod/install.php:160
msgid ""
"You may need to import the file \"database.sql\" manually using phpmyadmin "
"or mysql."
msgstr "Möglicherweise musst Du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren."
#: mod/install.php:161 mod/install.php:230 mod/install.php:607
msgid "Please see the file \"INSTALL.txt\"."
msgstr "Lies bitte die \"INSTALL.txt\"."
#: mod/install.php:173
msgid "Database already in use."
msgstr "Die Datenbank wird bereits verwendet."
#: mod/install.php:227
msgid "System check"
msgstr "Systemtest"
#: mod/install.php:232
msgid "Check again"
msgstr "Noch einmal testen"
#: mod/install.php:251
msgid "Database connection"
msgstr "Datenbankverbindung"
#: mod/install.php:252
msgid ""
"In order to install Friendica we need to know how to connect to your "
"database."
msgstr "Um Friendica installieren zu können, müssen wir wissen, wie wir mit Deiner Datenbank Kontakt aufnehmen können."
#: mod/install.php:253
msgid ""
"Please contact your hosting provider or site administrator if you have "
"questions about these settings."
msgstr "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls Du Fragen zu diesen Einstellungen haben solltest."
#: mod/install.php:254
msgid ""
"The database you specify below should already exist. If it does not, please "
"create it before continuing."
msgstr "Die Datenbank, die Du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte bevor Du mit der Installation fortfährst."
#: mod/install.php:258
msgid "Database Server Name"
msgstr "Datenbank-Server"
#: mod/install.php:259
msgid "Database Login Name"
msgstr "Datenbank-Nutzer"
#: mod/install.php:260
msgid "Database Login Password"
msgstr "Datenbank-Passwort"
#: mod/install.php:261
msgid "Database Name"
msgstr "Datenbank-Name"
#: mod/install.php:262 mod/install.php:303
msgid "Site administrator email address"
msgstr "E-Mail-Adresse des Administrators"
#: mod/install.php:262 mod/install.php:303
msgid ""
"Your account email address must match this in order to use the web admin "
"panel."
msgstr "Die E-Mail-Adresse, die in Deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit Du das Admin-Panel benutzen kannst."
#: mod/install.php:266 mod/install.php:306
msgid "Please select a default timezone for your website"
msgstr "Bitte wähle die Standardzeitzone Deiner Webseite"
#: mod/install.php:293
msgid "Site settings"
msgstr "Server-Einstellungen"
#: mod/install.php:307
msgid "System Language:"
msgstr "Systemsprache:"
#: mod/install.php:307
msgid ""
"Set the default language for your Friendica installation interface and to "
"send emails."
msgstr "Wähle die Standardsprache für deine Friendica-Installations-Oberfläche und den E-Mail-Versand"
#: mod/install.php:347
msgid "Could not find a command line version of PHP in the web server PATH."
msgstr "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden."
#: mod/install.php:348
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. See <a "
"href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-"
"up-the-poller'>'Setup the poller'</a>"
msgstr "Wenn Du keine Kommandozeilen-Version von PHP auf Deinem Server installiert hast, kannst Du keine Hintergrundprozesse via cron starten. Siehe <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'Setup the poller'</a>"
#: mod/install.php:352
msgid "PHP executable path"
msgstr "Pfad zu PHP"
#: mod/install.php:352
msgid ""
"Enter full path to php executable. You can leave this blank to continue the "
"installation."
msgstr "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren."
#: mod/install.php:357
msgid "Command line PHP"
msgstr "Kommandozeilen-PHP"
#: mod/install.php:366
msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
msgstr "Die ausführbare Datei von PHP stimmt nicht mit der PHP cli Version überein (es könnte sich um die cgi-fgci Version handeln)"
#: mod/install.php:367
msgid "Found PHP version: "
msgstr "Gefundene PHP Version:"
#: mod/install.php:369
msgid "PHP cli binary"
msgstr "PHP CLI Binary"
#: mod/install.php:380
msgid ""
"The command line version of PHP on your system does not have "
"\"register_argc_argv\" enabled."
msgstr "Die Kommandozeilenversion von PHP auf Deinem System hat \"register_argc_argv\" nicht aktiviert."
#: mod/install.php:381
msgid "This is required for message delivery to work."
msgstr "Dies wird für die Auslieferung von Nachrichten benötigt."
#: mod/install.php:383
msgid "PHP register_argc_argv"
msgstr "PHP register_argc_argv"
#: mod/install.php:404
msgid ""
"Error: the \"openssl_pkey_new\" function on this system is not able to "
"generate encryption keys"
msgstr "Fehler: Die Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen"
#: mod/install.php:405
msgid ""
"If running under Windows, please see "
"\"http://www.php.net/manual/en/openssl.installation.php\"."
msgstr "Wenn der Server unter Windows läuft, schau Dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an."
#: mod/install.php:407
msgid "Generate encryption keys"
msgstr "Schlüssel erzeugen"
#: mod/install.php:414
msgid "libCurl PHP module"
msgstr "PHP: libCurl-Modul"
#: mod/install.php:415
msgid "GD graphics PHP module"
msgstr "PHP: GD-Grafikmodul"
#: mod/install.php:416
msgid "OpenSSL PHP module"
msgstr "PHP: OpenSSL-Modul"
#: mod/install.php:417
msgid "mysqli PHP module"
msgstr "PHP: mysqli-Modul"
#: mod/install.php:418
msgid "mb_string PHP module"
msgstr "PHP: mb_string-Modul"
#: mod/install.php:419
msgid "mcrypt PHP module"
msgstr "PHP mcrypt Modul"
#: mod/install.php:420
msgid "XML PHP module"
msgstr "XML PHP Modul"
#: mod/install.php:421
msgid "iconv module"
msgstr "iconv module"
#: mod/install.php:425 mod/install.php:427
msgid "Apache mod_rewrite module"
msgstr "Apache mod_rewrite module"
#: mod/install.php:425
msgid ""
"Error: Apache webserver mod-rewrite module is required but not installed."
msgstr "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert."
#: mod/install.php:433
msgid "Error: libCURL PHP module required but not installed."
msgstr "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert."
#: mod/install.php:437
msgid ""
"Error: GD graphics PHP module with JPEG support required but not installed."
msgstr "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert."
#: mod/install.php:441
msgid "Error: openssl PHP module required but not installed."
msgstr "Fehler: Das openssl-Modul von PHP ist nicht installiert."
#: mod/install.php:445
msgid "Error: mysqli PHP module required but not installed."
msgstr "Fehler: Das mysqli-Modul von PHP ist nicht installiert."
#: mod/install.php:449
msgid "Error: mb_string PHP module required but not installed."
msgstr "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert."
#: mod/install.php:453
msgid "Error: mcrypt PHP module required but not installed."
msgstr "Fehler: Das mcrypt Modul von PHP ist nicht installiert"
#: mod/install.php:457
msgid "Error: iconv PHP module required but not installed."
msgstr "Fehler: Das iconv-Modul von PHP ist nicht installiert."
#: mod/install.php:466
msgid ""
"If you are using php_cli, please make sure that mcrypt module is enabled in "
"its config file"
msgstr "Wenn du das Modul \"php_cli\" benutzt dann versichere dich, daß das mcrypt Modul in seiner Konfigurationsdatei aktiviert ist. "
#: mod/install.php:469
msgid ""
"Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 "
"encryption layer."
msgstr "Die Funktion mcrypt_create_iv() ist nicht festgelegt. Dies ist notwendig um den RINO2-Encryption-Layer zu aktivieren."
#: mod/install.php:471
msgid "mcrypt_create_iv() function"
msgstr "mcrypt_create_iv() function"
#: mod/install.php:479
msgid "Error, XML PHP module required but not installed."
msgstr "Fehler: XML PHP Modul erforderlich aber nicht installiert."
#: mod/install.php:494
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 Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis Deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun."
#: mod/install.php:495
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 "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn Du sie hast."
#: mod/install.php:496
msgid ""
"At the end of this procedure, we will give you a text to save in a file "
"named .htconfig.php in your Friendica top folder."
msgstr "Nachdem Du alles ausgefüllt hast, erhältst Du einen Text, den Du in eine Datei namens .htconfig.php in Deinem Friendica-Wurzelverzeichnis kopieren musst."
#: mod/install.php:497
msgid ""
"You can alternatively skip this procedure and perform a manual installation."
" Please see the file \"INSTALL.txt\" for instructions."
msgstr "Alternativ kannst Du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest Du in der Datei INSTALL.txt."
#: mod/install.php:500
msgid ".htconfig.php is writable"
msgstr "Schreibrechte auf .htconfig.php"
#: mod/install.php:510
msgid ""
"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
"compiles templates to PHP to speed up rendering."
msgstr "Friendica nutzt die Smarty3 Template Engine um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP um das Rendern zu beschleunigen."
#: mod/install.php:511
msgid ""
"In order to store these compiled templates, the web server needs to have "
"write access to the directory view/smarty3/ under the Friendica top level "
"folder."
msgstr "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica."
#: mod/install.php:512
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) Schreibrechte zu diesem Verzeichnis hat."
#: mod/install.php:513
msgid ""
"Note: as a security measure, you should give the web server write access to "
"view/smarty3/ only--not the template files (.tpl) that it contains."
msgstr "Hinweis: aus Sicherheitsgründen solltest Du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht den Templatedateien (.tpl) die sie enthalten."
#: mod/install.php:516
msgid "view/smarty3 is writable"
msgstr "view/smarty3 ist schreibbar"
#: mod/install.php:532
msgid ""
"Url rewrite in .htaccess is not working. Check your server configuration."
msgstr "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers."
#: mod/install.php:534
msgid "Url rewrite is working"
msgstr "URL rewrite funktioniert"
#: mod/install.php:552
msgid "ImageMagick PHP extension is not installed"
msgstr "ImageMagicx PHP Erweiterung ist nicht installiert."
#: mod/install.php:555
msgid "ImageMagick PHP extension is installed"
msgstr "ImageMagick PHP Erweiterung ist installiert"
#: mod/install.php:557
msgid "ImageMagick supports GIF"
msgstr "ImageMagick unterstützt GIF"
#: mod/install.php:566
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 Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis Deiner Friendica-Installation zu erzeugen."
#: mod/install.php:605
msgid "<h1>What next</h1>"
msgstr "<h1>Wie geht es weiter?</h1>"
#: mod/install.php:606
msgid ""
"IMPORTANT: You will need to [manually] setup a scheduled task for the "
"poller."
msgstr "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten."
#: mod/item.php:116
msgid "Unable to locate original post."
msgstr "Konnte den Originalbeitrag nicht finden."
#: mod/item.php:341
msgid "Empty post discarded."
msgstr "Leerer Beitrag wurde verworfen."
#: mod/item.php:902
msgid "System error. Post not saved."
msgstr "Systemfehler. Beitrag konnte nicht gespeichert werden."
#: mod/item.php:992
#, php-format
msgid ""
"This message was sent to you by %s, a member of the Friendica social "
"network."
msgstr "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica."
#: mod/item.php:994
#, php-format
msgid "You may visit them online at %s"
msgstr "Du kannst sie online unter %s besuchen"
#: mod/item.php:995
msgid ""
"Please contact the sender by replying to this post if you do not wish to "
"receive these messages."
msgstr "Falls Du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem Du auf diese Nachricht antwortest."
#: mod/item.php:999
#, php-format
msgid "%s posted an update."
msgstr "%s hat ein Update veröffentlicht."
#: mod/network.php:398
#: mod/network.php:397
#, php-format
msgid ""
"Warning: This group contains %s member from a network that doesn't allow non"
@ -8625,82 +8527,346 @@ msgid_plural ""
msgstr[0] "Warnung: Diese Gruppe beinhaltet %s Person aus einem Netzwerk das keine nicht öffentlichen Beiträge empfangen kann."
msgstr[1] "Warnung: Diese Gruppe beinhaltet %s Personen aus Netzwerken die keine nicht-öffentlichen Beiträge empfangen können."
#: mod/network.php:401
#: mod/network.php:400
msgid "Messages in this group won't be send to these receivers."
msgstr "Beiträge in dieser Gruppe werden deshalb nicht an diese Personen zugestellt werden."
#: mod/network.php:529
#: mod/network.php:528
msgid "Private messages to this person are at risk of public disclosure."
msgstr "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen."
#: mod/network.php:534
#: mod/network.php:533
msgid "Invalid contact."
msgstr "Ungültiger Kontakt."
#: mod/network.php:826
#: mod/network.php:827
msgid "Commented Order"
msgstr "Neueste Kommentare"
#: mod/network.php:829
#: mod/network.php:830
msgid "Sort by Comment Date"
msgstr "Nach Kommentardatum sortieren"
#: mod/network.php:834
#: mod/network.php:835
msgid "Posted Order"
msgstr "Neueste Beiträge"
#: mod/network.php:837
#: mod/network.php:838
msgid "Sort by Post Date"
msgstr "Nach Beitragsdatum sortieren"
#: mod/network.php:848
#: mod/network.php:849
msgid "Posts that mention or involve you"
msgstr "Beiträge, in denen es um Dich geht"
#: mod/network.php:856
#: mod/network.php:857
msgid "New"
msgstr "Neue"
#: mod/network.php:859
#: mod/network.php:860
msgid "Activity Stream - by date"
msgstr "Aktivitäten-Stream - nach Datum"
#: mod/network.php:867
#: mod/network.php:868
msgid "Shared Links"
msgstr "Geteilte Links"
#: mod/network.php:870
#: mod/network.php:871
msgid "Interesting Links"
msgstr "Interessante Links"
#: mod/network.php:878
#: mod/network.php:879
msgid "Starred"
msgstr "Markierte"
#: mod/network.php:881
#: mod/network.php:882
msgid "Favourite Posts"
msgstr "Favorisierte Beiträge"
#: mod/ping.php:261
msgid "{0} wants to be your friend"
msgstr "{0} möchte mit Dir in Kontakt treten"
#: mod/search.php:100
msgid "Only logged in users are permitted to perform a search."
msgstr "Nur eingeloggten Benutzern ist das Suchen gestattet."
#: mod/ping.php:276
msgid "{0} sent you a message"
msgstr "{0} schickte Dir eine Nachricht"
#: mod/search.php:124
msgid "Too Many Requests"
msgstr "Zu viele Abfragen"
#: mod/ping.php:291
msgid "{0} requested registration"
msgstr "{0} möchte sich registrieren"
#: mod/search.php:125
msgid "Only one search per minute is permitted for not logged in users."
msgstr "Es ist nur eine Suchanfrage pro Minute für nicht eingeloggte Benutzer gestattet."
#: mod/viewcontacts.php:72
msgid "No contacts."
msgstr "Keine Kontakte."
#: mod/search.php:230
#, php-format
msgid "Items tagged with: %s"
msgstr "Beiträge die mit %s getaggt sind"
#: object/Item.php:370
#: mod/notifications.php:35
msgid "Invalid request identifier."
msgstr "Invalid request identifier."
#: mod/notifications.php:44 mod/notifications.php:180
#: mod/notifications.php:258
msgid "Discard"
msgstr "Verwerfen"
#: mod/notifications.php:105
msgid "Network Notifications"
msgstr "Netzwerk Benachrichtigungen"
#: mod/notifications.php:117
msgid "Personal Notifications"
msgstr "Persönliche Benachrichtigungen"
#: mod/notifications.php:123
msgid "Home Notifications"
msgstr "Pinnwand Benachrichtigungen"
#: mod/notifications.php:152
msgid "Show Ignored Requests"
msgstr "Zeige ignorierte Anfragen"
#: mod/notifications.php:152
msgid "Hide Ignored Requests"
msgstr "Verberge ignorierte Anfragen"
#: mod/notifications.php:164 mod/notifications.php:228
msgid "Notification type: "
msgstr "Benachrichtigungstyp: "
#: mod/notifications.php:167
#, php-format
msgid "suggested by %s"
msgstr "vorgeschlagen von %s"
#: mod/notifications.php:173 mod/notifications.php:246
msgid "Post a new friend activity"
msgstr "Neue-Kontakt Nachricht senden"
#: mod/notifications.php:173 mod/notifications.php:246
msgid "if applicable"
msgstr "falls anwendbar"
#: mod/notifications.php:195
msgid "Claims to be known to you: "
msgstr "Behauptet Dich zu kennen: "
#: mod/notifications.php:196
msgid "yes"
msgstr "ja"
#: mod/notifications.php:196
msgid "no"
msgstr "nein"
#: mod/notifications.php:197 mod/notifications.php:202
msgid "Shall your connection be bidirectional or not?"
msgstr "Soll die Verbindung beidseitig sein oder nicht?"
#: mod/notifications.php:198 mod/notifications.php:203
#, php-format
msgid ""
"Accepting %s as a friend allows %s to subscribe to your posts, and you will "
"also receive updates from them in your news feed."
msgstr "Akzeptierst du %s als Kontakt, erlaubst du damit das Lesen deiner Beiträge und abonnierst selbst auch die Beiträge von %s."
#: mod/notifications.php:199
#, php-format
msgid ""
"Accepting %s as a subscriber allows them to subscribe to your posts, but you"
" will not receive updates from them in your news feed."
msgstr "Wenn du %s als Abonnent akzeptierst, erlaubst du damit das Lesen deiner Beiträge, wirst aber selbst die Beiträge der anderen Seite nicht erhalten."
#: mod/notifications.php:204
#, php-format
msgid ""
"Accepting %s as a sharer allows them to subscribe to your posts, but you "
"will not receive updates from them in your news feed."
msgstr "Wenn du %s als Teilenden akzeptierst, erlaubst du damit das Lesen deiner Beiträge, wirst aber selbst die Beiträge der anderen Seite nicht erhalten."
#: mod/notifications.php:215
msgid "Friend"
msgstr "Kontakt"
#: mod/notifications.php:216
msgid "Sharer"
msgstr "Teilenden"
#: mod/notifications.php:216
msgid "Subscriber"
msgstr "Abonnent"
#: mod/notifications.php:266
msgid "No introductions."
msgstr "Keine Kontaktanfragen."
#: mod/notifications.php:307
msgid "Show unread"
msgstr "Ungelesene anzeigen"
#: mod/notifications.php:307
msgid "Show all"
msgstr "Alle anzeigen"
#: mod/notifications.php:313
#, php-format
msgid "No more %s notifications."
msgstr "Keine weiteren %s Benachrichtigungen"
#: object/Item.php:385
msgid "via"
msgstr "via"
#: view/theme/quattro/config.php:70
msgid "Alignment"
msgstr "Ausrichtung"
#: view/theme/quattro/config.php:70
msgid "Left"
msgstr "Links"
#: view/theme/quattro/config.php:70
msgid "Center"
msgstr "Mitte"
#: view/theme/quattro/config.php:71 view/theme/clean/config.php:108
msgid "Color scheme"
msgstr "Farbschema"
#: view/theme/quattro/config.php:72
msgid "Posts font size"
msgstr "Schriftgröße in Beiträgen"
#: view/theme/quattro/config.php:73
msgid "Textareas font size"
msgstr "Schriftgröße in Eingabefeldern"
#: view/theme/vier/config.php:69
msgid "Comma separated list of helper forums"
msgstr "Komma-Separierte Liste der Helfer-Foren"
#: view/theme/vier/config.php:115
msgid "Set style"
msgstr "Stil auswählen"
#: view/theme/vier/config.php:116
msgid "Community Pages"
msgstr "Foren"
#: view/theme/vier/config.php:117 view/theme/vier/theme.php:146
msgid "Community Profiles"
msgstr "Community-Profile"
#: view/theme/vier/config.php:118
msgid "Help or @NewHere ?"
msgstr "Hilfe oder @NewHere"
#: view/theme/vier/config.php:119 view/theme/vier/theme.php:385
msgid "Connect Services"
msgstr "Verbinde Dienste"
#: view/theme/vier/config.php:120 view/theme/vier/theme.php:194
msgid "Find Friends"
msgstr "Kontakte finden"
#: view/theme/vier/config.php:121 view/theme/vier/theme.php:176
msgid "Last users"
msgstr "Letzte Nutzer"
#: view/theme/vier/theme.php:195
msgid "Local Directory"
msgstr "Lokales Verzeichnis"
#: view/theme/vier/theme.php:286
msgid "Quick Start"
msgstr "Schnell-Start"
#: view/theme/duepuntozero/config.php:44
msgid "greenzero"
msgstr "greenzero"
#: view/theme/duepuntozero/config.php:45
msgid "purplezero"
msgstr "purplezero"
#: view/theme/duepuntozero/config.php:46
msgid "easterbunny"
msgstr "easterbunny"
#: view/theme/duepuntozero/config.php:47
msgid "darkzero"
msgstr "darkzero"
#: view/theme/duepuntozero/config.php:48
msgid "comix"
msgstr "comix"
#: view/theme/duepuntozero/config.php:49
msgid "slackr"
msgstr "slackr"
#: view/theme/duepuntozero/config.php:64
msgid "Variations"
msgstr "Variationen"
#: view/theme/clean/config.php:61
msgid "Midnight"
msgstr "Mitternacht"
#: view/theme/clean/config.php:62
msgid "Zenburn"
msgstr "Zenburn"
#: view/theme/clean/config.php:63
msgid "Bootstrap"
msgstr "Bootstrap"
#: view/theme/clean/config.php:64
msgid "Shades of Pink"
msgstr "Shades of Pink"
#: view/theme/clean/config.php:65
msgid "Lime and Orange"
msgstr "Lime and Orange"
#: view/theme/clean/config.php:66
msgid "GeoCities Retro"
msgstr "GeoCities Retro"
#: view/theme/clean/config.php:92
msgid "Background Image"
msgstr "Hintergrundbild"
#: view/theme/clean/config.php:94
msgid ""
"The URL to a picture (e.g. from your photo album) that should be used as "
"background image."
msgstr "Die URL zum Bild (z.B. aus deinem Foto Album), das als Hintergrundbild verwendet werden soll."
#: view/theme/clean/config.php:99
msgid "Background Color"
msgstr "Hintergrundfarbe"
#: view/theme/clean/config.php:101
msgid "HEX value for the background color. Don't include the #"
msgstr "HEX Wert der Hintergrundfarbe, ohne das #"
#: view/theme/clean/config.php:115
msgid "font size"
msgstr "Zeichengröße"
#: view/theme/clean/config.php:117
msgid "base font size for your interface"
msgstr "Basiszeichengröße für das Interface"
#: view/theme/clean/config.php:122
msgid "Display Accesskeys"
msgstr "Accesskeys anzeigen"
#: view/theme/clean/config.php:124
msgid ""
"Diaplay the access keys assigned to some menu element in the web interface."
msgstr "Einige Menüelemente sind über Accesskeys aufrufbar. Sollen diese angezeigt werden?"
#: view/theme/frio/php/Image.php:23
msgid "Repeat the image"
msgstr "Bild wiederholen"
@ -8733,195 +8899,103 @@ msgstr "Größe anpassen - Optimale Größe"
msgid "Resize to best fit and retain aspect ratio."
msgstr "Größe anpassen - Optimale Größe und Seitenverhältnisse beibehalten"
#: view/theme/frio/config.php:42
#: view/theme/frio/config.php:47
msgid "Default"
msgstr "Standard"
#: view/theme/frio/config.php:54
#: view/theme/frio/config.php:59
msgid "Note: "
msgstr "Hinweis:"
#: view/theme/frio/config.php:54
#: view/theme/frio/config.php:59
msgid "Check image permissions if all users are allowed to visit the image"
msgstr "Überprüfe, dass alle Benutzer die Berechtigung haben dieses Bild anzusehen"
#: view/theme/frio/config.php:62
#: view/theme/frio/config.php:67
msgid "Select scheme"
msgstr "Schema auswählen"
#: view/theme/frio/config.php:63
#: view/theme/frio/config.php:68
msgid "Navigation bar background color"
msgstr "Hintergrundfarbe der Navigationsleiste"
#: view/theme/frio/config.php:64
#: view/theme/frio/config.php:69
msgid "Navigation bar icon color "
msgstr "Icon Farbe in der Navigationsleiste"
#: view/theme/frio/config.php:65
#: view/theme/frio/config.php:70
msgid "Link color"
msgstr "Linkfarbe"
#: view/theme/frio/config.php:66
#: view/theme/frio/config.php:71
msgid "Set the background color"
msgstr "Hintergrundfarbe festlegen"
#: view/theme/frio/config.php:67
#: view/theme/frio/config.php:72
msgid "Content background transparency"
msgstr "Transparanz des Hintergrunds von Beiträgem"
#: view/theme/frio/config.php:68
#: view/theme/frio/config.php:73
msgid "Set the background image"
msgstr "Hintergrundbild festlegen"
#: view/theme/frio/theme.php:229
#: view/theme/frio/theme.php:226
msgid "Guest"
msgstr "Gast"
#: view/theme/frio/theme.php:235
#: view/theme/frio/theme.php:232
msgid "Visitor"
msgstr "Besucher"
#: view/theme/quattro/config.php:67
msgid "Alignment"
msgstr "Ausrichtung"
#: view/theme/quattro/config.php:67
msgid "Left"
msgstr "Links"
#: view/theme/quattro/config.php:67
msgid "Center"
msgstr "Mitte"
#: view/theme/quattro/config.php:68
msgid "Color scheme"
msgstr "Farbschema"
#: view/theme/quattro/config.php:69
msgid "Posts font size"
msgstr "Schriftgröße in Beiträgen"
#: view/theme/quattro/config.php:70
msgid "Textareas font size"
msgstr "Schriftgröße in Eingabefeldern"
#: view/theme/vier/theme.php:152 view/theme/vier/config.php:112
msgid "Community Profiles"
msgstr "Community-Profile"
#: view/theme/vier/theme.php:181 view/theme/vier/config.php:116
msgid "Last users"
msgstr "Letzte Nutzer"
#: view/theme/vier/theme.php:199 view/theme/vier/config.php:115
msgid "Find Friends"
msgstr "Kontakte finden"
#: view/theme/vier/theme.php:200
msgid "Local Directory"
msgstr "Lokales Verzeichnis"
#: view/theme/vier/theme.php:291
msgid "Quick Start"
msgstr "Schnell-Start"
#: view/theme/vier/theme.php:373 view/theme/vier/config.php:114
msgid "Connect Services"
msgstr "Verbinde Dienste"
#: view/theme/vier/config.php:64
msgid "Comma separated list of helper forums"
msgstr "Komma-Separierte Liste der Helfer-Foren"
#: view/theme/vier/config.php:110
msgid "Set style"
msgstr "Stil auswählen"
#: view/theme/vier/config.php:111
msgid "Community Pages"
msgstr "Foren"
#: view/theme/vier/config.php:113
msgid "Help or @NewHere ?"
msgstr "Hilfe oder @NewHere"
#: view/theme/duepuntozero/config.php:45
msgid "greenzero"
msgstr "greenzero"
#: view/theme/duepuntozero/config.php:46
msgid "purplezero"
msgstr "purplezero"
#: view/theme/duepuntozero/config.php:47
msgid "easterbunny"
msgstr "easterbunny"
#: view/theme/duepuntozero/config.php:48
msgid "darkzero"
msgstr "darkzero"
#: view/theme/duepuntozero/config.php:49
msgid "comix"
msgstr "comix"
#: view/theme/duepuntozero/config.php:50
msgid "slackr"
msgstr "slackr"
#: view/theme/duepuntozero/config.php:62
msgid "Variations"
msgstr "Variationen"
#: index.php:457
msgid "toggle mobile"
msgstr "auf/von Mobile Ansicht wechseln"
#: boot.php:970
msgid "Delete this item?"
msgstr "Diesen Beitrag löschen?"
#: boot.php:973
#: boot.php:972
msgid "show fewer"
msgstr "weniger anzeigen"
#: boot.php:1655
#: boot.php:1696
#, php-format
msgid "Update %s failed. See error logs."
msgstr "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen."
#: boot.php:1767
#: boot.php:1808
msgid "Create a New Account"
msgstr "Neues Konto erstellen"
#: boot.php:1796
#: boot.php:1837
msgid "Password: "
msgstr "Passwort: "
#: boot.php:1797
#: boot.php:1838
msgid "Remember me"
msgstr "Anmeldedaten merken"
#: boot.php:1800
#: boot.php:1841
msgid "Or login using OpenID: "
msgstr "Oder melde Dich mit Deiner OpenID an: "
#: boot.php:1806
#: boot.php:1847
msgid "Forgot your password?"
msgstr "Passwort vergessen?"
#: boot.php:1809
#: boot.php:1850
msgid "Website Terms of Service"
msgstr "Website Nutzungsbedingungen"
#: boot.php:1810
#: boot.php:1851
msgid "terms of service"
msgstr "Nutzungsbedingungen"
#: boot.php:1812
#: boot.php:1853
msgid "Website Privacy Policy"
msgstr "Website Datenschutzerklärung"
#: boot.php:1813
#: boot.php:1854
msgid "privacy policy"
msgstr "Datenschutzerklärung"
#: index.php:451
msgid "toggle mobile"
msgstr "auf/von Mobile Ansicht wechseln"

View file

@ -5,35 +5,6 @@ function string_plural_select_de($n){
return ($n != 1);;
}}
;
$a->strings["Add New Contact"] = "Neuen Kontakt hinzufügen";
$a->strings["Enter address or web location"] = "Adresse oder Web-Link eingeben";
$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Beispiel: bob@example.com, http://example.com/barbara";
$a->strings["Connect"] = "Verbinden";
$a->strings["%d invitation available"] = array(
0 => "%d Einladung verfügbar",
1 => "%d Einladungen verfügbar",
);
$a->strings["Find People"] = "Leute finden";
$a->strings["Enter name or interest"] = "Name oder Interessen eingeben";
$a->strings["Connect/Follow"] = "Verbinden/Folgen";
$a->strings["Examples: Robert Morgenstein, Fishing"] = "Beispiel: Robert Morgenstein, Angeln";
$a->strings["Find"] = "Finde";
$a->strings["Friend Suggestions"] = "Kontaktvorschläge";
$a->strings["Similar Interests"] = "Ähnliche Interessen";
$a->strings["Random Profile"] = "Zufälliges Profil";
$a->strings["Invite Friends"] = "Freunde einladen";
$a->strings["Networks"] = "Netzwerke";
$a->strings["All Networks"] = "Alle Netzwerke";
$a->strings["Saved Folders"] = "Gespeicherte Ordner";
$a->strings["Everything"] = "Alles";
$a->strings["Categories"] = "Kategorien";
$a->strings["%d contact in common"] = array(
0 => "%d gemeinsamer Kontakt",
1 => "%d gemeinsame Kontakte",
);
$a->strings["show more"] = "mehr anzeigen";
$a->strings["Forums"] = "Foren";
$a->strings["External link to forum"] = "Externer Link zum Forum";
$a->strings["Male"] = "Männlich";
$a->strings["Female"] = "Weiblich";
$a->strings["Currently Male"] = "Momentan männlich";
@ -95,108 +66,37 @@ $a->strings["Uncertain"] = "Unsicher";
$a->strings["It's complicated"] = "Ist kompliziert";
$a->strings["Don't care"] = "Ist mir nicht wichtig";
$a->strings["Ask me"] = "Frag mich";
$a->strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln.";
$a->strings["Forums"] = "Foren";
$a->strings["External link to forum"] = "Externer Link zum Forum";
$a->strings["show more"] = "mehr anzeigen";
$a->strings["System"] = "System";
$a->strings["Network"] = "Netzwerk";
$a->strings["Personal"] = "Persönlich";
$a->strings["Home"] = "Pinnwand";
$a->strings["Introductions"] = "Kontaktanfragen";
$a->strings["%s commented on %s's post"] = "%s hat %ss Beitrag kommentiert";
$a->strings["%s created a new post"] = "%s hat einen neuen Beitrag erstellt";
$a->strings["%s liked %s's post"] = "%s mag %ss Beitrag";
$a->strings["%s disliked %s's post"] = "%s mag %ss Beitrag nicht";
$a->strings["%s is attending %s's event"] = "%s nimmt an %s's Event teil";
$a->strings["%s is not attending %s's event"] = "%s nimmt nicht an %s's Event teil";
$a->strings["%s may attend %s's event"] = "%s nimmt eventuell an %s's Event teil";
$a->strings["%s is now friends with %s"] = "%s ist jetzt mit %s befreundet";
$a->strings["Friend Suggestion"] = "Kontaktvorschlag";
$a->strings["Friend/Connect Request"] = "Kontakt-/Freundschaftsanfrage";
$a->strings["New Follower"] = "Neuer Bewunderer";
$a->strings["Wall Photos"] = "Pinnwand-Bilder";
$a->strings["Logged out."] = "Abgemeldet.";
$a->strings["Login failed."] = "Anmeldung fehlgeschlagen.";
$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Beim Versuch Dich mit der von Dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass Du die OpenID richtig geschrieben hast.";
$a->strings["The error message was:"] = "Die Fehlermeldung lautete:";
$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen <strong>könnten</strong> auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls Du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen.";
$a->strings["Default privacy group for new contacts"] = "Voreingestellte Gruppe für neue Kontakte";
$a->strings["Everybody"] = "Alle Kontakte";
$a->strings["edit"] = "bearbeiten";
$a->strings["Groups"] = "Gruppen";
$a->strings["Edit groups"] = "Gruppen bearbeiten";
$a->strings["Edit group"] = "Gruppe bearbeiten";
$a->strings["Create a new group"] = "Neue Gruppe erstellen";
$a->strings["Group Name: "] = "Gruppenname:";
$a->strings["Contacts not in any group"] = "Kontakte in keiner Gruppe";
$a->strings["add"] = "hinzufügen";
$a->strings["Unknown | Not categorised"] = "Unbekannt | Nicht kategorisiert";
$a->strings["Block immediately"] = "Sofort blockieren";
$a->strings["Shady, spammer, self-marketer"] = "Zwielichtig, Spammer, Selbstdarsteller";
$a->strings["Known to me, but no opinion"] = "Ist mir bekannt, hab aber keine Meinung";
$a->strings["OK, probably harmless"] = "OK, wahrscheinlich harmlos";
$a->strings["Reputable, has my trust"] = "Seriös, hat mein Vertrauen";
$a->strings["Frequently"] = "immer wieder";
$a->strings["Hourly"] = "Stündlich";
$a->strings["Twice daily"] = "Zweimal täglich";
$a->strings["Daily"] = "Täglich";
$a->strings["Weekly"] = "Wöchentlich";
$a->strings["Monthly"] = "Monatlich";
$a->strings["Friendica"] = "Friendica";
$a->strings["OStatus"] = "OStatus";
$a->strings["RSS/Atom"] = "RSS/Atom";
$a->strings["Email"] = "E-Mail";
$a->strings["Diaspora"] = "Diaspora";
$a->strings["Facebook"] = "Facebook";
$a->strings["Zot!"] = "Zott";
$a->strings["LinkedIn"] = "LinkedIn";
$a->strings["XMPP/IM"] = "XMPP/Chat";
$a->strings["MySpace"] = "MySpace";
$a->strings["Google+"] = "Google+";
$a->strings["pump.io"] = "pump.io";
$a->strings["Twitter"] = "Twitter";
$a->strings["Diaspora Connector"] = "Diaspora";
$a->strings["GNU Social"] = "GNU Social";
$a->strings["App.net"] = "App.net";
$a->strings["Hubzilla/Redmatrix"] = "Hubzilla/Redmatrix";
$a->strings["Post to Email"] = "An E-Mail senden";
$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist.";
$a->strings["Hide your profile details from unknown viewers?"] = "Profil-Details vor unbekannten Betrachtern verbergen?";
$a->strings["Visible to everybody"] = "Für jeden sichtbar";
$a->strings["show"] = "zeigen";
$a->strings["don't show"] = "nicht zeigen";
$a->strings["CC: email addresses"] = "Cc: E-Mail-Addressen";
$a->strings["Example: bob@example.com, mary@example.com"] = "Z.B.: bob@example.com, mary@example.com";
$a->strings["Permissions"] = "Berechtigungen";
$a->strings["Close"] = "Schließen";
$a->strings["photo"] = "Foto";
$a->strings["status"] = "Status";
$a->strings["event"] = "Event";
$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s";
$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s nicht";
$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s nimmt an %2\$ss %3\$s teil.";
$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s nimmt nicht an %2\$ss %3\$s teil.";
$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s nimmt eventuell an %2\$ss %3\$s teil.";
$a->strings["[no subject]"] = "[kein Betreff]";
$a->strings["Wall Photos"] = "Pinnwand-Bilder";
$a->strings["Click here to upgrade."] = "Zum Upgraden hier klicken.";
$a->strings["This action exceeds the limits set by your subscription plan."] = "Diese Aktion überschreitet die Obergrenze Deines Abonnements.";
$a->strings["This action is not available under your subscription plan."] = "Diese Aktion ist in Deinem Abonnement nicht verfügbar.";
$a->strings["Error decoding account file"] = "Fehler beim Verarbeiten der Account Datei";
$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?";
$a->strings["Error! Cannot check nickname"] = "Fehler! Konnte den Nickname nicht überprüfen.";
$a->strings["User '%s' already exists on this server!"] = "Nutzer '%s' existiert bereits auf diesem Server!";
$a->strings["User creation error"] = "Fehler beim Anlegen des Nutzeraccounts aufgetreten";
$a->strings["User profile creation error"] = "Fehler beim Anlegen des Nutzerkontos";
$a->strings["%d contact not imported"] = array(
0 => "%d Kontakt nicht importiert",
1 => "%d Kontakte nicht importiert",
);
$a->strings["Done. You can now login with your username and password"] = "Erledigt. Du kannst Dich jetzt mit Deinem Nutzernamen und Passwort anmelden";
$a->strings["Miscellaneous"] = "Verschiedenes";
$a->strings["Birthday:"] = "Geburtstag:";
$a->strings["Age: "] = "Alter: ";
$a->strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD oder MM-DD";
$a->strings["never"] = "nie";
$a->strings["less than a second ago"] = "vor weniger als einer Sekunde";
$a->strings["year"] = "Jahr";
$a->strings["years"] = "Jahre";
$a->strings["month"] = "Monat";
$a->strings["months"] = "Monate";
$a->strings["week"] = "Woche";
$a->strings["weeks"] = "Wochen";
$a->strings["day"] = "Tag";
$a->strings["days"] = "Tage";
$a->strings["hour"] = "Stunde";
$a->strings["hours"] = "Stunden";
$a->strings["minute"] = "Minute";
$a->strings["minutes"] = "Minuten";
$a->strings["second"] = "Sekunde";
$a->strings["seconds"] = "Sekunden";
$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s her";
$a->strings["%s's birthday"] = "%ss Geburtstag";
$a->strings["Happy Birthday %s"] = "Herzlichen Glückwunsch %s";
$a->strings["Image/photo"] = "Bild/Foto";
$a->strings["<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s"] = "<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s";
$a->strings["$1 wrote:"] = "$1 hat geschrieben:";
$a->strings["Encrypted content"] = "Verschlüsselter Inhalt";
$a->strings["Invalid source protocol"] = "Ungültiges Quell-Protokoll";
$a->strings["Invalid link protocol"] = "Ungültiges Link-Protokoll";
$a->strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln.";
$a->strings["Friendica Notification"] = "Friendica-Benachrichtigung";
$a->strings["Thank You,"] = "Danke,";
$a->strings["%s Administrator"] = "der Administrator von %s";
@ -257,56 +157,38 @@ $a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "D
$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Du hast eine [url=%1\$s]Registrierungsanfrage[/url] von %2\$s erhalten.";
$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Kompletter Name:\t%1\$s\\nURL der Seite:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)";
$a->strings["Please visit %s to approve or reject the request."] = "Bitte besuche %s um die Anfrage zu bearbeiten.";
$a->strings["l F d, Y \\@ g:i A"] = "l, d. F Y\\, H:i";
$a->strings["Starts:"] = "Beginnt:";
$a->strings["Finishes:"] = "Endet:";
$a->strings["Location:"] = "Ort:";
$a->strings["Sun"] = "So";
$a->strings["Mon"] = "Mo";
$a->strings["Tue"] = "Di";
$a->strings["Wed"] = "Mi";
$a->strings["Thu"] = "Do";
$a->strings["Fri"] = "Fr";
$a->strings["Sat"] = "Sa";
$a->strings["Sunday"] = "Sonntag";
$a->strings["Monday"] = "Montag";
$a->strings["Tuesday"] = "Dienstag";
$a->strings["Wednesday"] = "Mittwoch";
$a->strings["Thursday"] = "Donnerstag";
$a->strings["Friday"] = "Freitag";
$a->strings["Saturday"] = "Samstag";
$a->strings["Jan"] = "Jan";
$a->strings["Feb"] = "Feb";
$a->strings["Mar"] = "März";
$a->strings["Apr"] = "Apr";
$a->strings["May"] = "Mai";
$a->strings["Jun"] = "Jun";
$a->strings["Jul"] = "Juli";
$a->strings["Aug"] = "Aug";
$a->strings["Sept"] = "Sep";
$a->strings["Oct"] = "Okt";
$a->strings["Nov"] = "Nov";
$a->strings["Dec"] = "Dez";
$a->strings["January"] = "Januar";
$a->strings["February"] = "Februar";
$a->strings["March"] = "März";
$a->strings["April"] = "April";
$a->strings["June"] = "Juni";
$a->strings["July"] = "Juli";
$a->strings["August"] = "August";
$a->strings["September"] = "September";
$a->strings["October"] = "Oktober";
$a->strings["November"] = "November";
$a->strings["December"] = "Dezember";
$a->strings["today"] = "Heute";
$a->strings["all-day"] = "ganztägig";
$a->strings["No events to display"] = "Keine Veranstaltung zum Anzeigen";
$a->strings["l, F j"] = "l, F j";
$a->strings["Edit event"] = "Veranstaltung bearbeiten";
$a->strings["link to source"] = "Link zum Originalbeitrag";
$a->strings["Export"] = "Exportieren";
$a->strings["Export calendar as ical"] = "Kalender als ical exportieren";
$a->strings["Export calendar as csv"] = "Kalender als csv exportieren";
$a->strings["Disallowed profile URL."] = "Nicht erlaubte Profil-URL.";
$a->strings["Connect URL missing."] = "Connect-URL fehlt";
$a->strings["This site is not configured to allow communications with other networks."] = "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann.";
$a->strings["No compatible communication protocols or feeds were discovered."] = "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden.";
$a->strings["The profile address specified does not provide adequate information."] = "Die angegebene Profiladresse liefert unzureichende Informationen.";
$a->strings["An author or name was not found."] = "Es wurde kein Autor oder Name gefunden.";
$a->strings["No browser URL could be matched to this address."] = "Zu dieser Adresse konnte keine passende Browser URL gefunden werden.";
$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen.";
$a->strings["Use mailto: in front of address to force email check."] = "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen.";
$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde.";
$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von Dir erhalten können.";
$a->strings["Unable to retrieve contact information."] = "Konnte die Kontaktinformationen nicht empfangen.";
$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen <strong>könnten</strong> auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls Du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen.";
$a->strings["Default privacy group for new contacts"] = "Voreingestellte Gruppe für neue Kontakte";
$a->strings["Everybody"] = "Alle Kontakte";
$a->strings["edit"] = "bearbeiten";
$a->strings["Groups"] = "Gruppen";
$a->strings["Edit groups"] = "Gruppen bearbeiten";
$a->strings["Edit group"] = "Gruppe bearbeiten";
$a->strings["Create a new group"] = "Neue Gruppe erstellen";
$a->strings["Group Name: "] = "Gruppenname:";
$a->strings["Contacts not in any group"] = "Kontakte in keiner Gruppe";
$a->strings["add"] = "hinzufügen";
$a->strings["photo"] = "Foto";
$a->strings["status"] = "Status";
$a->strings["event"] = "Event";
$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s";
$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s nicht";
$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s nimmt an %2\$ss %3\$s teil.";
$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s nimmt nicht an %2\$ss %3\$s teil.";
$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s nimmt eventuell an %2\$ss %3\$s teil.";
$a->strings["[no subject]"] = "[kein Betreff]";
$a->strings["Nothing new here"] = "Keine Neuigkeiten";
$a->strings["Clear notifications"] = "Bereinige Benachrichtigungen";
$a->strings["@name, !forum, #tags, content"] = "@name, !forum, #tags, content";
@ -326,7 +208,6 @@ $a->strings["Personal notes"] = "Persönliche Notizen";
$a->strings["Your personal notes"] = "Deine persönlichen Notizen";
$a->strings["Login"] = "Anmeldung";
$a->strings["Sign in"] = "Anmelden";
$a->strings["Home"] = "Pinnwand";
$a->strings["Home Page"] = "Homepage";
$a->strings["Register"] = "Registrieren";
$a->strings["Create an account"] = "Nutzerkonto erstellen";
@ -347,11 +228,9 @@ $a->strings["Directory"] = "Verzeichnis";
$a->strings["People directory"] = "Nutzerverzeichnis";
$a->strings["Information"] = "Information";
$a->strings["Information about this friendica instance"] = "Informationen zu dieser Friendica Instanz";
$a->strings["Network"] = "Netzwerk";
$a->strings["Conversations from your friends"] = "Unterhaltungen Deiner Kontakte";
$a->strings["Network Reset"] = "Netzwerk zurücksetzen";
$a->strings["Load Network page with no filters"] = "Netzwerk-Seite ohne Filter laden";
$a->strings["Introductions"] = "Kontaktanfragen";
$a->strings["Friend Requests"] = "Kontaktanfragen";
$a->strings["Notifications"] = "Benachrichtigungen";
$a->strings["See all notifications"] = "Alle Benachrichtigungen anzeigen";
@ -375,52 +254,64 @@ $a->strings["Admin"] = "Administration";
$a->strings["Site setup and configuration"] = "Einstellungen der Seite und Konfiguration";
$a->strings["Navigation"] = "Navigation";
$a->strings["Site map"] = "Sitemap";
$a->strings["Contact Photos"] = "Kontaktbilder";
$a->strings["Embedded content"] = "Eingebetteter Inhalt";
$a->strings["Embedding disabled"] = "Einbettungen deaktiviert";
$a->strings["%s is now following %s."] = "%s folgt nun %s";
$a->strings["following"] = "folgen";
$a->strings["%s stopped following %s."] = "%s hat aufgehört %s zu folgen";
$a->strings["stopped following"] = "wird nicht mehr gefolgt";
$a->strings["Click here to upgrade."] = "Zum Upgraden hier klicken.";
$a->strings["This action exceeds the limits set by your subscription plan."] = "Diese Aktion überschreitet die Obergrenze Deines Abonnements.";
$a->strings["This action is not available under your subscription plan."] = "Diese Aktion ist in Deinem Abonnement nicht verfügbar.";
$a->strings["Welcome "] = "Willkommen ";
$a->strings["Please upload a profile photo."] = "Bitte lade ein Profilbild hoch.";
$a->strings["Welcome back "] = "Willkommen zurück ";
$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden).";
$a->strings["System"] = "System";
$a->strings["Personal"] = "Persönlich";
$a->strings["%s commented on %s's post"] = "%s hat %ss Beitrag kommentiert";
$a->strings["%s created a new post"] = "%s hat einen neuen Beitrag erstellt";
$a->strings["%s liked %s's post"] = "%s mag %ss Beitrag";
$a->strings["%s disliked %s's post"] = "%s mag %ss Beitrag nicht";
$a->strings["%s is attending %s's event"] = "%s nimmt an %s's Event teil";
$a->strings["%s is not attending %s's event"] = "%s nimmt nicht an %s's Event teil";
$a->strings["%s may attend %s's event"] = "%s nimmt eventuell an %s's Event teil";
$a->strings["%s is now friends with %s"] = "%s ist jetzt mit %s befreundet";
$a->strings["Friend Suggestion"] = "Kontaktvorschlag";
$a->strings["Friend/Connect Request"] = "Kontakt-/Freundschaftsanfrage";
$a->strings["New Follower"] = "Neuer Bewunderer";
$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\nDie Friendica-Entwickler haben vor kurzem das Update %s veröffentlicht, aber bei der Installation ging etwas schrecklich schief.\n\nDas Problem sollte so schnell wie möglich gelöst werden, aber ich schaffe es nicht alleine. Bitte kontaktiere einen Friendica-Entwickler falls Du mir nicht alleine helfen kannst. Meine Datenbank könnte ungültig sein.";
$a->strings["The error message is\n[pre]%s[/pre]"] = "Die Fehlermeldung lautet\n[pre]%s[/pre]";
$a->strings["Errors encountered creating database tables."] = "Fehler aufgetreten während der Erzeugung der Datenbanktabellen.";
$a->strings["Errors encountered performing database changes."] = "Es sind Fehler beim Bearbeiten der Datenbank aufgetreten.";
$a->strings["(no subject)"] = "(kein Betreff)";
$a->strings["Sharing notification from Diaspora network"] = "Freigabe-Benachrichtigung von Diaspora";
$a->strings["Attachments:"] = "Anhänge:";
$a->strings["view full size"] = "Volle Größe anzeigen";
$a->strings["View Profile"] = "Profil anschauen";
$a->strings["View Status"] = "Pinnwand anschauen";
$a->strings["View Photos"] = "Bilder anschauen";
$a->strings["Network Posts"] = "Netzwerkbeiträge";
$a->strings["View Contact"] = "Kontakt anzeigen";
$a->strings["Drop Contact"] = "Kontakt löschen";
$a->strings["Send PM"] = "Private Nachricht senden";
$a->strings["Poke"] = "Anstupsen";
$a->strings["Organisation"] = "Organisation";
$a->strings["News"] = "Nachrichten";
$a->strings["Forum"] = "Forum";
$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "Das tägliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen.";
$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Das wöchentliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen.";
$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "Das monatliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen.";
$a->strings["Image/photo"] = "Bild/Foto";
$a->strings["<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s"] = "<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s";
$a->strings["$1 wrote:"] = "$1 hat geschrieben:";
$a->strings["Encrypted content"] = "Verschlüsselter Inhalt";
$a->strings["Invalid source protocol"] = "Ungültiges Quell-Protokoll";
$a->strings["Invalid link protocol"] = "Ungültiges Link-Protokoll";
$a->strings["Error decoding account file"] = "Fehler beim Verarbeiten der Account Datei";
$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?";
$a->strings["Error! Cannot check nickname"] = "Fehler! Konnte den Nickname nicht überprüfen.";
$a->strings["User '%s' already exists on this server!"] = "Nutzer '%s' existiert bereits auf diesem Server!";
$a->strings["User creation error"] = "Fehler beim Anlegen des Nutzeraccounts aufgetreten";
$a->strings["User profile creation error"] = "Fehler beim Anlegen des Nutzerkontos";
$a->strings["%d contact not imported"] = array(
0 => "%d Kontakt nicht importiert",
1 => "%d Kontakte nicht importiert",
);
$a->strings["Done. You can now login with your username and password"] = "Erledigt. Du kannst Dich jetzt mit Deinem Nutzernamen und Passwort anmelden";
$a->strings["Passwords do not match. Password unchanged."] = "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert.";
$a->strings["An invitation is required."] = "Du benötigst eine Einladung.";
$a->strings["Invitation could not be verified."] = "Die Einladung konnte nicht überprüft werden.";
$a->strings["Invalid OpenID url"] = "Ungültige OpenID URL";
$a->strings["Please enter the required information."] = "Bitte trage die erforderlichen Informationen ein.";
$a->strings["Please use a shorter name."] = "Bitte verwende einen kürzeren Namen.";
$a->strings["Name too short."] = "Der Name ist zu kurz.";
$a->strings["That doesn't appear to be your full (First Last) name."] = "Das scheint nicht Dein kompletter Name (Vor- und Nachname) zu sein.";
$a->strings["Your email domain is not among those allowed on this site."] = "Die Domain Deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt.";
$a->strings["Not a valid email address."] = "Keine gültige E-Mail-Adresse.";
$a->strings["Cannot use that email."] = "Konnte diese E-Mail-Adresse nicht verwenden.";
$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\" und \"_\") bestehen.";
$a->strings["Nickname is already registered. Please choose another."] = "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen.";
$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen.";
$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden.";
$a->strings["An error occurred during registration. Please try again."] = "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal.";
$a->strings["default"] = "Standard";
$a->strings["An error occurred creating your default profile. Please try again."] = "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal.";
$a->strings["Profile Photos"] = "Profilbilder";
$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\t"] = "\nHallo %1\$s,\n\ndanke für Deine Registrierung auf %2\$s. Dein Account wurde muss noch vom Admin des Knotens geprüft werden.";
$a->strings["Registration at %s"] = "Registrierung als %s";
$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\nHallo %1\$s,\n\ndanke für Deine Registrierung auf %2\$s. Dein Account wurde eingerichtet.";
$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%3\$s\n\tBenutzernamename:\t%1\$s\n\tPasswort:\t%5\$s\n\nDu kannst Dein Passwort unter \"Einstellungen\" ändern, sobald Du Dich\nangemeldet hast.\n\nBitte nimm Dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst Du ja auch einige Informationen über Dich in Deinem\nProfil veröffentlichen, damit andere Leute Dich einfacher finden können.\nBearbeite hierfür einfach Dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen Dir, Deinen kompletten Namen anzugeben und ein zu Dir\npassendes Profilbild zu wählen, damit Dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn Du auf Deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die Deine Interessen teilen.\n\nWir respektieren Deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn Du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nDanke für Deine Aufmerksamkeit und willkommen auf %2\$s.";
$a->strings["Registration details for %s"] = "Details der Registration von %s";
$a->strings["Post to Email"] = "An E-Mail senden";
$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist.";
$a->strings["Hide your profile details from unknown viewers?"] = "Profil-Details vor unbekannten Betrachtern verbergen?";
$a->strings["Visible to everybody"] = "Für jeden sichtbar";
$a->strings["show"] = "zeigen";
$a->strings["don't show"] = "nicht zeigen";
$a->strings["CC: email addresses"] = "Cc: E-Mail-Addressen";
$a->strings["Example: bob@example.com, mary@example.com"] = "Z.B.: bob@example.com, mary@example.com";
$a->strings["Permissions"] = "Berechtigungen";
$a->strings["Close"] = "Schließen";
$a->strings["%1\$s attends %2\$s's %3\$s"] = "%1\$s nimmt an %2\$ss %3\$s teil.";
$a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = "%1\$s nimmt nicht an %2\$ss %3\$s teil.";
$a->strings["%1\$s attends maybe %2\$s's %3\$s"] = "%1\$s nimmt eventuell an %2\$ss %3\$s teil.";
@ -449,6 +340,14 @@ $a->strings["Please wait"] = "Bitte warten";
$a->strings["remove"] = "löschen";
$a->strings["Delete Selected Items"] = "Lösche die markierten Beiträge";
$a->strings["Follow Thread"] = "Folge der Unterhaltung";
$a->strings["View Status"] = "Pinnwand anschauen";
$a->strings["View Profile"] = "Profil anschauen";
$a->strings["View Photos"] = "Bilder anschauen";
$a->strings["Network Posts"] = "Netzwerkbeiträge";
$a->strings["View Contact"] = "Kontakt anzeigen";
$a->strings["Send PM"] = "Private Nachricht senden";
$a->strings["Poke"] = "Anstupsen";
$a->strings["Connect/Follow"] = "Verbinden/Folgen";
$a->strings["%s likes this."] = "%s mag das.";
$a->strings["%s doesn't like this."] = "%s mag das nicht.";
$a->strings["%s attends."] = "%s nimmt teil.";
@ -514,7 +413,7 @@ $a->strings["Not Attending"] = array(
0 => "Nicht teilnehmend ",
1 => "Nicht teilnehmend",
);
$a->strings["%s\\'s birthday"] = "%ss Geburtstag";
$a->strings["(no subject)"] = "(kein Betreff)";
$a->strings["General Features"] = "Allgemeine Features";
$a->strings["Multiple Profiles"] = "Mehrere Profile";
$a->strings["Ability to create multiple profiles"] = "Möglichkeit mehrere Profile zu erstellen";
@ -523,8 +422,6 @@ $a->strings["Photo metadata is normally stripped. This extracts the location (if
$a->strings["Export Public Calendar"] = "Öffentlichen Kalender exportieren";
$a->strings["Ability for visitors to download the public calendar"] = "Möglichkeit für Besucher den öffentlichen Kalender herunter zu laden";
$a->strings["Post Composition Features"] = "Beitragserstellung Features";
$a->strings["Richtext Editor"] = "Web-Editor";
$a->strings["Enable richtext editor"] = "Den Web-Editor für neue Beiträge aktivieren";
$a->strings["Post Preview"] = "Beitragsvorschau";
$a->strings["Allow previewing posts and comments before publishing them"] = "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben.";
$a->strings["Auto-mention Forums"] = "Foren automatisch erwähnen";
@ -556,6 +453,7 @@ $a->strings["Tagging"] = "Tagging";
$a->strings["Ability to tag existing posts"] = "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen.";
$a->strings["Post Categories"] = "Beitragskategorien";
$a->strings["Add categories to your posts"] = "Eigene Beiträge mit Kategorien versehen";
$a->strings["Saved Folders"] = "Gespeicherte Ordner";
$a->strings["Ability to file posts under folders"] = "Beiträge in Ordnern speichern aktivieren";
$a->strings["Dislike Posts"] = "Beiträge 'nicht mögen'";
$a->strings["Ability to dislike posts/comments"] = "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'";
@ -565,18 +463,140 @@ $a->strings["Mute Post Notifications"] = "Benachrichtigungen für Beiträge Stum
$a->strings["Ability to mute notifications for a thread"] = "Möglichkeit Benachrichtigungen für einen Thread abbestellen zu können";
$a->strings["Advanced Profile Settings"] = "Erweiterte Profil-Einstellungen";
$a->strings["Show visitors public community forums at the Advanced Profile Page"] = "Zeige Besuchern öffentliche Gemeinschafts-Foren auf der Erweiterten Profil-Seite";
$a->strings["Disallowed profile URL."] = "Nicht erlaubte Profil-URL.";
$a->strings["Connect URL missing."] = "Connect-URL fehlt";
$a->strings["This site is not configured to allow communications with other networks."] = "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann.";
$a->strings["No compatible communication protocols or feeds were discovered."] = "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden.";
$a->strings["The profile address specified does not provide adequate information."] = "Die angegebene Profiladresse liefert unzureichende Informationen.";
$a->strings["An author or name was not found."] = "Es wurde kein Autor oder Name gefunden.";
$a->strings["No browser URL could be matched to this address."] = "Zu dieser Adresse konnte keine passende Browser URL gefunden werden.";
$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen.";
$a->strings["Use mailto: in front of address to force email check."] = "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen.";
$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde.";
$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von Dir erhalten können.";
$a->strings["Unable to retrieve contact information."] = "Konnte die Kontaktinformationen nicht empfangen.";
$a->strings["Contact Photos"] = "Kontaktbilder";
$a->strings["Miscellaneous"] = "Verschiedenes";
$a->strings["Birthday:"] = "Geburtstag:";
$a->strings["Age: "] = "Alter: ";
$a->strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD oder MM-DD";
$a->strings["never"] = "nie";
$a->strings["less than a second ago"] = "vor weniger als einer Sekunde";
$a->strings["year"] = "Jahr";
$a->strings["years"] = "Jahre";
$a->strings["month"] = "Monat";
$a->strings["months"] = "Monate";
$a->strings["week"] = "Woche";
$a->strings["weeks"] = "Wochen";
$a->strings["day"] = "Tag";
$a->strings["days"] = "Tage";
$a->strings["hour"] = "Stunde";
$a->strings["hours"] = "Stunden";
$a->strings["minute"] = "Minute";
$a->strings["minutes"] = "Minuten";
$a->strings["second"] = "Sekunde";
$a->strings["seconds"] = "Sekunden";
$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s her";
$a->strings["%s's birthday"] = "%ss Geburtstag";
$a->strings["Happy Birthday %s"] = "Herzlichen Glückwunsch %s";
$a->strings["l F d, Y \\@ g:i A"] = "l, d. F Y\\, H:i";
$a->strings["Starts:"] = "Beginnt:";
$a->strings["Finishes:"] = "Endet:";
$a->strings["Location:"] = "Ort:";
$a->strings["Sun"] = "So";
$a->strings["Mon"] = "Mo";
$a->strings["Tue"] = "Di";
$a->strings["Wed"] = "Mi";
$a->strings["Thu"] = "Do";
$a->strings["Fri"] = "Fr";
$a->strings["Sat"] = "Sa";
$a->strings["Sunday"] = "Sonntag";
$a->strings["Monday"] = "Montag";
$a->strings["Tuesday"] = "Dienstag";
$a->strings["Wednesday"] = "Mittwoch";
$a->strings["Thursday"] = "Donnerstag";
$a->strings["Friday"] = "Freitag";
$a->strings["Saturday"] = "Samstag";
$a->strings["Jan"] = "Jan";
$a->strings["Feb"] = "Feb";
$a->strings["Mar"] = "März";
$a->strings["Apr"] = "Apr";
$a->strings["May"] = "Mai";
$a->strings["Jun"] = "Jun";
$a->strings["Jul"] = "Juli";
$a->strings["Aug"] = "Aug";
$a->strings["Sept"] = "Sep";
$a->strings["Oct"] = "Okt";
$a->strings["Nov"] = "Nov";
$a->strings["Dec"] = "Dez";
$a->strings["January"] = "Januar";
$a->strings["February"] = "Februar";
$a->strings["March"] = "März";
$a->strings["April"] = "April";
$a->strings["June"] = "Juni";
$a->strings["July"] = "Juli";
$a->strings["August"] = "August";
$a->strings["September"] = "September";
$a->strings["October"] = "Oktober";
$a->strings["November"] = "November";
$a->strings["December"] = "Dezember";
$a->strings["today"] = "Heute";
$a->strings["all-day"] = "ganztägig";
$a->strings["No events to display"] = "Keine Veranstaltung zum Anzeigen";
$a->strings["l, F j"] = "l, F j";
$a->strings["Edit event"] = "Veranstaltung bearbeiten";
$a->strings["link to source"] = "Link zum Originalbeitrag";
$a->strings["Export"] = "Exportieren";
$a->strings["Export calendar as ical"] = "Kalender als ical exportieren";
$a->strings["Export calendar as csv"] = "Kalender als csv exportieren";
$a->strings["%s\\'s birthday"] = "%ss Geburtstag";
$a->strings["Unknown | Not categorised"] = "Unbekannt | Nicht kategorisiert";
$a->strings["Block immediately"] = "Sofort blockieren";
$a->strings["Shady, spammer, self-marketer"] = "Zwielichtig, Spammer, Selbstdarsteller";
$a->strings["Known to me, but no opinion"] = "Ist mir bekannt, hab aber keine Meinung";
$a->strings["OK, probably harmless"] = "OK, wahrscheinlich harmlos";
$a->strings["Reputable, has my trust"] = "Seriös, hat mein Vertrauen";
$a->strings["Frequently"] = "immer wieder";
$a->strings["Hourly"] = "Stündlich";
$a->strings["Twice daily"] = "Zweimal täglich";
$a->strings["Daily"] = "Täglich";
$a->strings["Weekly"] = "Wöchentlich";
$a->strings["Monthly"] = "Monatlich";
$a->strings["Friendica"] = "Friendica";
$a->strings["OStatus"] = "OStatus";
$a->strings["RSS/Atom"] = "RSS/Atom";
$a->strings["Email"] = "E-Mail";
$a->strings["Diaspora"] = "Diaspora";
$a->strings["Facebook"] = "Facebook";
$a->strings["Zot!"] = "Zott";
$a->strings["LinkedIn"] = "LinkedIn";
$a->strings["XMPP/IM"] = "XMPP/Chat";
$a->strings["MySpace"] = "MySpace";
$a->strings["Google+"] = "Google+";
$a->strings["pump.io"] = "pump.io";
$a->strings["Twitter"] = "Twitter";
$a->strings["Diaspora Connector"] = "Diaspora";
$a->strings["GNU Social"] = "GNU Social";
$a->strings["pnut"] = "pnut";
$a->strings["App.net"] = "App.net";
$a->strings["Hubzilla/Redmatrix"] = "Hubzilla/Redmatrix";
$a->strings["Add New Contact"] = "Neuen Kontakt hinzufügen";
$a->strings["Enter address or web location"] = "Adresse oder Web-Link eingeben";
$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Beispiel: bob@example.com, http://example.com/barbara";
$a->strings["Connect"] = "Verbinden";
$a->strings["%d invitation available"] = array(
0 => "%d Einladung verfügbar",
1 => "%d Einladungen verfügbar",
);
$a->strings["Find People"] = "Leute finden";
$a->strings["Enter name or interest"] = "Name oder Interessen eingeben";
$a->strings["Examples: Robert Morgenstein, Fishing"] = "Beispiel: Robert Morgenstein, Angeln";
$a->strings["Find"] = "Finde";
$a->strings["Friend Suggestions"] = "Kontaktvorschläge";
$a->strings["Similar Interests"] = "Ähnliche Interessen";
$a->strings["Random Profile"] = "Zufälliges Profil";
$a->strings["Invite Friends"] = "Freunde einladen";
$a->strings["Networks"] = "Netzwerke";
$a->strings["All Networks"] = "Alle Netzwerke";
$a->strings["Everything"] = "Alles";
$a->strings["Categories"] = "Kategorien";
$a->strings["%d contact in common"] = array(
0 => "%d gemeinsamer Kontakt",
1 => "%d gemeinsame Kontakte",
);
$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "Das tägliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen.";
$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Das wöchentliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen.";
$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "Das monatliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen.";
$a->strings["Sharing notification from Diaspora network"] = "Freigabe-Benachrichtigung von Diaspora";
$a->strings["Attachments:"] = "Anhänge:";
$a->strings["Requested account is not available."] = "Das angefragte Profil ist nicht vorhanden.";
$a->strings["Requested profile is not available."] = "Das angefragte Profil ist nicht vorhanden.";
$a->strings["Edit profile"] = "Profil bearbeiten";
@ -630,18 +650,6 @@ $a->strings["Profile Details"] = "Profildetails";
$a->strings["Photo Albums"] = "Fotoalben";
$a->strings["Personal Notes"] = "Persönliche Notizen";
$a->strings["Only You Can See This"] = "Nur Du kannst das sehen";
$a->strings["[Name Withheld]"] = "[Name unterdrückt]";
$a->strings["Item not found."] = "Beitrag nicht gefunden.";
$a->strings["Do you really want to delete this item?"] = "Möchtest Du wirklich dieses Item löschen?";
$a->strings["Yes"] = "Ja";
$a->strings["Permission denied."] = "Zugriff verweigert.";
$a->strings["Archives"] = "Archiv";
$a->strings["Embedded content"] = "Eingebetteter Inhalt";
$a->strings["Embedding disabled"] = "Einbettungen deaktiviert";
$a->strings["%s is now following %s."] = "%s folgt nun %s";
$a->strings["following"] = "folgen";
$a->strings["%s stopped following %s."] = "%s hat aufgehört %s zu folgen";
$a->strings["stopped following"] = "wird nicht mehr gefolgt";
$a->strings["newer"] = "neuer";
$a->strings["older"] = "älter";
$a->strings["prev"] = "vorige";
@ -701,94 +709,167 @@ $a->strings["comment"] = array(
);
$a->strings["post"] = "Beitrag";
$a->strings["Item filed"] = "Beitrag abgelegt";
$a->strings["Passwords do not match. Password unchanged."] = "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert.";
$a->strings["An invitation is required."] = "Du benötigst eine Einladung.";
$a->strings["Invitation could not be verified."] = "Die Einladung konnte nicht überprüft werden.";
$a->strings["Invalid OpenID url"] = "Ungültige OpenID URL";
$a->strings["Please enter the required information."] = "Bitte trage die erforderlichen Informationen ein.";
$a->strings["Please use a shorter name."] = "Bitte verwende einen kürzeren Namen.";
$a->strings["Name too short."] = "Der Name ist zu kurz.";
$a->strings["That doesn't appear to be your full (First Last) name."] = "Das scheint nicht Dein kompletter Name (Vor- und Nachname) zu sein.";
$a->strings["Your email domain is not among those allowed on this site."] = "Die Domain Deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt.";
$a->strings["Not a valid email address."] = "Keine gültige E-Mail-Adresse.";
$a->strings["Cannot use that email."] = "Konnte diese E-Mail-Adresse nicht verwenden.";
$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\" und \"_\") bestehen.";
$a->strings["Nickname is already registered. Please choose another."] = "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen.";
$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen.";
$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden.";
$a->strings["An error occurred during registration. Please try again."] = "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal.";
$a->strings["default"] = "Standard";
$a->strings["An error occurred creating your default profile. Please try again."] = "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal.";
$a->strings["Profile Photos"] = "Profilbilder";
$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\t"] = "\nHallo %1\$s,\n\ndanke für Deine Registrierung auf %2\$s. Dein Account wurde muss noch vom Admin des Knotens geprüft werden.";
$a->strings["Registration at %s"] = "Registrierung als %s";
$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\nHallo %1\$s,\n\ndanke für Deine Registrierung auf %2\$s. Dein Account wurde eingerichtet.";
$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%3\$s\n\tBenutzernamename:\t%1\$s\n\tPasswort:\t%5\$s\n\nDu kannst Dein Passwort unter \"Einstellungen\" ändern, sobald Du Dich\nangemeldet hast.\n\nBitte nimm Dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst Du ja auch einige Informationen über Dich in Deinem\nProfil veröffentlichen, damit andere Leute Dich einfacher finden können.\nBearbeite hierfür einfach Dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen Dir, Deinen kompletten Namen anzugeben und ein zu Dir\npassendes Profilbild zu wählen, damit Dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn Du auf Deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die Deine Interessen teilen.\n\nWir respektieren Deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn Du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nDanke für Deine Aufmerksamkeit und willkommen auf %2\$s.";
$a->strings["Registration details for %s"] = "Details der Registration von %s";
$a->strings["Post successful."] = "Beitrag erfolgreich veröffentlicht.";
$a->strings["Access denied."] = "Zugriff verweigert.";
$a->strings["Welcome to %s"] = "Willkommen zu %s";
$a->strings["No more system notifications."] = "Keine weiteren Systembenachrichtigungen.";
$a->strings["System Notifications"] = "Systembenachrichtigungen";
$a->strings["Remove term"] = "Begriff entfernen";
$a->strings["Drop Contact"] = "Kontakt löschen";
$a->strings["Organisation"] = "Organisation";
$a->strings["News"] = "Nachrichten";
$a->strings["Forum"] = "Forum";
$a->strings["[Name Withheld]"] = "[Name unterdrückt]";
$a->strings["Item not found."] = "Beitrag nicht gefunden.";
$a->strings["Do you really want to delete this item?"] = "Möchtest Du wirklich dieses Item löschen?";
$a->strings["Yes"] = "Ja";
$a->strings["Permission denied."] = "Zugriff verweigert.";
$a->strings["Archives"] = "Archiv";
$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\nDie Friendica-Entwickler haben vor kurzem das Update %s veröffentlicht, aber bei der Installation ging etwas schrecklich schief.\n\nDas Problem sollte so schnell wie möglich gelöst werden, aber ich schaffe es nicht alleine. Bitte kontaktiere einen Friendica-Entwickler falls Du mir nicht alleine helfen kannst. Meine Datenbank könnte ungültig sein.";
$a->strings["The error message is\n[pre]%s[/pre]"] = "Die Fehlermeldung lautet\n[pre]%s[/pre]";
$a->strings["Errors encountered creating database tables."] = "Fehler aufgetreten während der Erzeugung der Datenbanktabellen.";
$a->strings["Errors encountered performing database changes."] = "Es sind Fehler beim Bearbeiten der Datenbank aufgetreten.";
$a->strings["view full size"] = "Volle Größe anzeigen";
$a->strings["No friends to display."] = "Keine Kontakte zum Anzeigen.";
$a->strings["Authorize application connection"] = "Verbindung der Applikation autorisieren";
$a->strings["Return to your app and insert this Securty Code:"] = "Gehe zu Deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:";
$a->strings["Please login to continue."] = "Bitte melde Dich an um fortzufahren.";
$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Möchtest Du dieser Anwendung den Zugriff auf Deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in Deinem Namen gestatten?";
$a->strings["No"] = "Nein";
$a->strings["You must be logged in to use addons. "] = "Sie müssen angemeldet sein um Addons benutzen zu können.";
$a->strings["Applications"] = "Anwendungen";
$a->strings["No installed applications."] = "Keine Applikationen installiert.";
$a->strings["Item not available."] = "Beitrag nicht verfügbar.";
$a->strings["Item was not found."] = "Beitrag konnte nicht gefunden werden.";
$a->strings["Source (bbcode) text:"] = "Quelle (bbcode) Text:";
$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Eingabe (Diaspora) nach BBCode zu konvertierender Text:";
$a->strings["Source input: "] = "Originaltext:";
$a->strings["bb2html (raw HTML): "] = "bb2html (reines HTML): ";
$a->strings["bb2html: "] = "bb2html: ";
$a->strings["bb2html2bb: "] = "bb2html2bb: ";
$a->strings["bb2md: "] = "bb2md: ";
$a->strings["bb2md2html: "] = "bb2md2html: ";
$a->strings["bb2dia2bb: "] = "bb2dia2bb: ";
$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: ";
$a->strings["Source input (Diaspora format): "] = "Originaltext (Diaspora Format): ";
$a->strings["diaspora2bb: "] = "diaspora2bb: ";
$a->strings["The post was created"] = "Der Beitrag wurde angelegt";
$a->strings["No contacts in common."] = "Keine gemeinsamen Kontakte.";
$a->strings["Common Friends"] = "Gemeinsame Kontakte";
$a->strings["Public access denied."] = "Öffentlicher Zugriff verweigert.";
$a->strings["Only logged in users are permitted to perform a search."] = "Nur eingeloggten Benutzern ist das Suchen gestattet.";
$a->strings["Too Many Requests"] = "Zu viele Abfragen";
$a->strings["Only one search per minute is permitted for not logged in users."] = "Es ist nur eine Suchanfrage pro Minute für nicht eingeloggte Benutzer gestattet.";
$a->strings["Not available."] = "Nicht verfügbar.";
$a->strings["No results."] = "Keine Ergebnisse.";
$a->strings["Items tagged with: %s"] = "Beiträge die mit %s getaggt sind";
$a->strings["Results for: %s"] = "Ergebnisse für: %s";
$a->strings["This is Friendica, version"] = "Dies ist Friendica, Version";
$a->strings["running at web location"] = "die unter folgender Webadresse zu finden ist";
$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Bitte besuche <a href=\"http://friendica.com\">Friendica.com</a>, um mehr über das Friendica Projekt zu erfahren.";
$a->strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche";
$a->strings["the bugtracker at github"] = "den Bugtracker auf github";
$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["Installed plugins/addons/apps:"] = "Installierte Plugins/Erweiterungen/Apps:";
$a->strings["No installed plugins/addons/apps"] = "Keine Plugins/Erweiterungen/Apps installiert";
$a->strings["No valid account found."] = "Kein gültiges Konto gefunden.";
$a->strings["Password reset request issued. Check your email."] = "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe Deine E-Mail.";
$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\nHallo %1\$s,\n\nAuf \"%2\$s\" ist eine Anfrage auf das Zurücksetzen Deines Passworts gestellt\nworden. Um diese Anfrage zu verifizieren, folge bitte dem unten stehenden\nLink oder kopiere und füge ihn in die Adressleiste Deines Browsers ein.\n\nSolltest Du die Anfrage NICHT gemacht haben, ignoriere und/oder lösche diese\nE-Mail bitte.\n\nDein Passwort wird nicht geändert, solange wir nicht verifiziert haben, dass\nDu diese Änderung angefragt hast.";
$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\nUm Deine Identität zu verifizieren, folge bitte dem folgenden Link:\n\n%1\$s\n\nDu wirst eine weitere E-Mail mit Deinem neuen Passwort erhalten. Sobald Du Dich\nangemeldet hast, kannst Du Dein Passwort in den Einstellungen ändern.\n\nDie Anmeldedetails sind die folgenden:\n\nAdresse der Seite:\t%2\$s\nBenutzername:\t%3\$s";
$a->strings["Password reset requested at %s"] = "Anfrage zum Zurücksetzen des Passworts auf %s erhalten";
$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Anfrage konnte nicht verifiziert werden. (Eventuell hast Du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert.";
$a->strings["Password Reset"] = "Passwort zurücksetzen";
$a->strings["Your password has been reset as requested."] = "Dein Passwort wurde wie gewünscht zurückgesetzt.";
$a->strings["Your new password is"] = "Dein neues Passwort lautet";
$a->strings["Save or copy your new password - and then"] = "Speichere oder kopiere Dein neues Passwort - und dann";
$a->strings["click here to login"] = "hier klicken, um Dich anzumelden";
$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Du kannst das Passwort in den <em>Einstellungen</em> ändern, sobald Du Dich erfolgreich angemeldet hast.";
$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "\nHallo %1\$s,\n\nDein Passwort wurde wie gewünscht geändert. Bitte bewahre diese Informationen gut auf (oder ändere Dein Passwort in eines, das Du Dir leicht merken kannst).";
$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = "\nDie Anmeldedaten sind die folgenden:\n\nAdresse der Seite: %1\$s\nLogin Name: %2\$s\nPasswort: %3\$s\n\nDas Passwort kann und sollte in den Kontoeinstellungen nach der Anmeldung geändert werden.";
$a->strings["Your password has been changed at %s"] = "Auf %s wurde Dein Passwort geändert";
$a->strings["Forgot your Password?"] = "Hast Du Dein Passwort vergessen?";
$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Gib Deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden Dir dann weitere Informationen per Mail zugesendet.";
$a->strings["Nickname or Email: "] = "Spitzname oder E-Mail:";
$a->strings["Reset"] = "Zurücksetzen";
$a->strings["No such group"] = "Es gibt keine solche Gruppe";
$a->strings["Group is empty"] = "Gruppe ist leer";
$a->strings["Group: %s"] = "Gruppe: %s";
$a->strings["This entry was edited"] = "Dieser Beitrag wurde bearbeitet.";
$a->strings["%d comment"] = array(
0 => "%d Kommentar",
1 => "%d Kommentare",
);
$a->strings["Private Message"] = "Private Nachricht";
$a->strings["I like this (toggle)"] = "Ich mag das (toggle)";
$a->strings["like"] = "mag ich";
$a->strings["I don't like this (toggle)"] = "Ich mag das nicht (toggle)";
$a->strings["dislike"] = "mag ich nicht";
$a->strings["Share this"] = "Weitersagen";
$a->strings["share"] = "Teilen";
$a->strings["This is you"] = "Das bist Du";
$a->strings["Comment"] = "Kommentar";
$a->strings["Submit"] = "Senden";
$a->strings["Bold"] = "Fett";
$a->strings["Italic"] = "Kursiv";
$a->strings["Underline"] = "Unterstrichen";
$a->strings["Quote"] = "Zitat";
$a->strings["Code"] = "Code";
$a->strings["Image"] = "Bild";
$a->strings["Link"] = "Link";
$a->strings["Video"] = "Video";
$a->strings["Edit"] = "Bearbeiten";
$a->strings["add star"] = "markieren";
$a->strings["remove star"] = "Markierung entfernen";
$a->strings["toggle star status"] = "Markierung umschalten";
$a->strings["starred"] = "markiert";
$a->strings["add tag"] = "Tag hinzufügen";
$a->strings["ignore thread"] = "Thread ignorieren";
$a->strings["unignore thread"] = "Thread nicht mehr ignorieren";
$a->strings["toggle ignore status"] = "Ignoriert-Status ein-/ausschalten";
$a->strings["ignored"] = "Ignoriert";
$a->strings["save to folder"] = "In Ordner speichern";
$a->strings["I will attend"] = "Ich werde teilnehmen";
$a->strings["I will not attend"] = "Ich werde nicht teilnehmen";
$a->strings["I might attend"] = "Ich werde eventuell teilnehmen";
$a->strings["to"] = "zu";
$a->strings["Wall-to-Wall"] = "Wall-to-Wall";
$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:";
$a->strings["Credits"] = "Credits";
$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = "Friendica ist ein Gemeinschaftsprojekt, das nicht ohne die Hilfe vieler Personen möglich wäre. Hier ist eine Aufzählung der Personen, die zum Code oder der Übersetzung beigetragen haben. Dank an alle !";
$a->strings["Contact settings applied."] = "Einstellungen zum Kontakt angewandt.";
$a->strings["Contact update failed."] = "Konnte den Kontakt nicht aktualisieren.";
$a->strings["Contact not found."] = "Kontakt nicht gefunden.";
$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ACHTUNG: Das sind Experten-Einstellungen!</strong> Wenn Du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr.";
$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Bitte nutze den Zurück-Button Deines Browsers <strong>jetzt</strong>, wenn Du Dir unsicher bist, was Du tun willst.";
$a->strings["No mirroring"] = "Kein Spiegeln";
$a->strings["Mirror as forwarded posting"] = "Spiegeln als weitergeleitete Beiträge";
$a->strings["Mirror as my own posting"] = "Spiegeln als meine eigenen Beiträge";
$a->strings["Return to contact editor"] = "Zurück zum Kontakteditor";
$a->strings["Refetch contact data"] = "Kontaktdaten neu laden";
$a->strings["Remote Self"] = "Entfernte Konten";
$a->strings["Mirror postings from this contact"] = "Spiegle Beiträge dieses Kontakts";
$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all Deine Kontakte zu senden.";
$a->strings["Name"] = "Name";
$a->strings["Account Nickname"] = "Konto-Spitzname";
$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - überschreibt Name/Spitzname";
$a->strings["Account URL"] = "Konto-URL";
$a->strings["Friend Request URL"] = "URL für Kontaktschaftsanfragen";
$a->strings["Friend Confirm URL"] = "URL für Bestätigungen von Kontaktanfragen";
$a->strings["Notification Endpoint URL"] = "URL-Endpunkt für Benachrichtigungen";
$a->strings["Poll/Feed URL"] = "Pull/Feed-URL";
$a->strings["New photo from this URL"] = "Neues Foto von dieser URL";
$a->strings["No potential page delegates located."] = "Keine potentiellen Bevollmächtigten für die Seite gefunden.";
$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für Deinen privaten Account, dem Du nicht absolut vertraust!";
$a->strings["Existing Page Managers"] = "Vorhandene Seitenmanager";
$a->strings["Existing Page Delegates"] = "Vorhandene Bevollmächtigte für die Seite";
$a->strings["Potential Delegates"] = "Potentielle Bevollmächtigte";
$a->strings["Remove"] = "Entfernen";
$a->strings["Add"] = "Hinzufügen";
$a->strings["No entries."] = "Keine Einträge.";
$a->strings["%1\$s welcomes %2\$s"] = "%1\$s heißt %2\$s herzlich willkommen";
$a->strings["Global Directory"] = "Weltweites Verzeichnis";
$a->strings["Find on this site"] = "Auf diesem Server suchen";
$a->strings["Results for:"] = "Ergebnisse für:";
$a->strings["Site Directory"] = "Verzeichnis";
$a->strings["No entries (some entries may be hidden)."] = "Keine Einträge (einige Einträge könnten versteckt sein).";
$a->strings["People Search - %s"] = "Personensuche - %s";
$a->strings["Forum Search - %s"] = "Forensuche - %s";
$a->strings["No matches"] = "Keine Übereinstimmungen";
$a->strings["- select -"] = "- auswählen -";
$a->strings["Submit Request"] = "Anfrage abschicken";
$a->strings["You already added this contact."] = "Du hast den Kontakt bereits hinzugefügt.";
$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "Diaspora Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden.";
$a->strings["OStatus support is disabled. Contact can't be added."] = "OStatus Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden.";
$a->strings["The network type couldn't be detected. Contact can't be added."] = "Der Netzwerktype wurde nicht erkannt. Der Kontakt kann nicht hinzugefügt werden.";
$a->strings["Please answer the following:"] = "Bitte beantworte folgendes:";
$a->strings["Does %s know you?"] = "Kennt %s Dich?";
$a->strings["Add a personal note:"] = "Eine persönliche Notiz beifügen:";
$a->strings["Your Identity Address:"] = "Adresse Deines Profils:";
$a->strings["Profile URL"] = "Profil URL";
$a->strings["Contact added"] = "Kontakt hinzugefügt";
$a->strings["Friend suggestion sent."] = "Kontaktvorschlag gesendet.";
$a->strings["Suggest Friends"] = "Kontakte vorschlagen";
$a->strings["Suggest a friend for %s"] = "Schlage %s einen Kontakt vor";
$a->strings["Group created."] = "Gruppe erstellt.";
$a->strings["Could not create group."] = "Konnte die Gruppe nicht erstellen.";
$a->strings["Group not found."] = "Gruppe nicht gefunden.";
$a->strings["Group name changed."] = "Gruppenname geändert.";
$a->strings["Permission denied"] = "Zugriff verweigert";
$a->strings["Save Group"] = "Gruppe speichern";
$a->strings["Create a group of contacts/friends."] = "Eine Kontaktgruppe anlegen.";
$a->strings["Group removed."] = "Gruppe entfernt.";
$a->strings["Unable to remove group."] = "Konnte die Gruppe nicht entfernen.";
$a->strings["Group Editor"] = "Gruppeneditor";
$a->strings["Members"] = "Mitglieder";
$a->strings["All Contacts"] = "Alle Kontakte";
$a->strings["Click on a contact to add or remove."] = "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen";
$a->strings["No profile"] = "Kein Profil";
$a->strings["Help:"] = "Hilfe:";
$a->strings["Not Found"] = "Nicht gefunden";
$a->strings["Page not found."] = "Seite nicht gefunden.";
$a->strings["Remote privacy information not available."] = "Entfernte Privatsphäreneinstellungen nicht verfügbar.";
$a->strings["Visible to:"] = "Sichtbar für:";
$a->strings["OpenID protocol error. No ID returned."] = "OpenID Protokollfehler. Keine ID zurückgegeben.";
$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Nutzerkonto wurde nicht gefunden und OpenID-Registrierung ist auf diesem Server nicht gestattet.";
$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal.";
$a->strings["Import"] = "Import";
$a->strings["Move account"] = "Account umziehen";
$a->strings["You can import an account from another Friendica server."] = "Du kannst einen Account von einem anderen Friendica Server importieren.";
$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Du musst Deinen Account vom alten Server exportieren und hier hochladen. Wir stellen Deinen alten Account mit all Deinen Kontakten wieder her. Wir werden auch versuchen all Deine Kontakte darüber zu informieren, dass Du hierher umgezogen bist.";
$a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (GNU Social/Statusnet) oder von Diaspora importieren";
$a->strings["Account file"] = "Account Datei";
$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Um Deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\"";
$a->strings["Visit %s's profile [%s]"] = "Besuche %ss Profil [%s]";
$a->strings["Edit contact"] = "Kontakt bearbeiten";
$a->strings["Contacts who are not members of a group"] = "Kontakte, die keiner Gruppe zugewiesen sind";
$a->strings["Export account"] = "Account exportieren";
$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exportiere Deine Accountinformationen und Kontakte. Verwende dies um ein Backup Deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen.";
$a->strings["Export all"] = "Alles exportieren";
$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Exportiere Deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup Deines Accounts anzulegen (Fotos werden nicht exportiert).";
$a->strings["Export personal data"] = "Persönliche Daten exportieren";
$a->strings["Welcome to %s"] = "Willkommen zu %s";
$a->strings["Total invitation limit exceeded."] = "Limit für Einladungen erreicht.";
$a->strings["%s : Not a valid email address."] = "%s: Keine gültige Email Adresse.";
$a->strings["Please join us on Friendica"] = "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein";
@ -810,39 +891,42 @@ $a->strings["You are cordially invited to join me and other close friends on Fri
$a->strings["You will need to supply this invitation code: \$invite_code"] = "Du benötigst den folgenden Einladungscode: \$invite_code";
$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Sobald Du registriert bist, kontaktiere mich bitte auf meiner Profilseite:";
$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendica.com";
$a->strings["Submit"] = "Senden";
$a->strings["Files"] = "Dateien";
$a->strings["Permission denied"] = "Zugriff verweigert";
$a->strings["Invalid profile identifier."] = "Ungültiger Profil-Bezeichner.";
$a->strings["Profile Visibility Editor"] = "Editor für die Profil-Sichtbarkeit";
$a->strings["Click on a contact to add or remove."] = "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen";
$a->strings["Visible To"] = "Sichtbar für";
$a->strings["All Contacts (with secure profile access)"] = "Alle Kontakte (mit gesichertem Profilzugriff)";
$a->strings["Tag removed"] = "Tag entfernt";
$a->strings["Remove Item Tag"] = "Gegenstands-Tag entfernen";
$a->strings["Select a tag to remove: "] = "Wähle ein Tag zum Entfernen aus: ";
$a->strings["Remove"] = "Entfernen";
$a->strings["Resubscribing to OStatus contacts"] = "Erneuern der OStatus Abonements";
$a->strings["Error"] = "Fehler";
$a->strings["Done"] = "Erledigt";
$a->strings["Keep this window open until done."] = "Lasse dieses Fenster offen, bis der Vorgang abgeschlossen ist.";
$a->strings["No potential page delegates located."] = "Keine potentiellen Bevollmächtigten für die Seite gefunden.";
$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für Deinen privaten Account, dem Du nicht absolut vertraust!";
$a->strings["Existing Page Managers"] = "Vorhandene Seitenmanager";
$a->strings["Existing Page Delegates"] = "Vorhandene Bevollmächtigte für die Seite";
$a->strings["Potential Delegates"] = "Potentielle Bevollmächtigte";
$a->strings["Add"] = "Hinzufügen";
$a->strings["No entries."] = "Keine Einträge.";
$a->strings["Credits"] = "Credits";
$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = "Friendica ist ein Gemeinschaftsprojekt, das nicht ohne die Hilfe vieler Personen möglich wäre. Hier ist eine Aufzählung der Personen, die zum Code oder der Übersetzung beigetragen haben. Dank an alle !";
$a->strings["- select -"] = "- auswählen -";
$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt %2\$s %3\$s";
$a->strings["Item not available."] = "Beitrag nicht verfügbar.";
$a->strings["Item was not found."] = "Beitrag konnte nicht gefunden werden.";
$a->strings["You must be logged in to use addons. "] = "Sie müssen angemeldet sein um Addons benutzen zu können.";
$a->strings["Applications"] = "Anwendungen";
$a->strings["No installed applications."] = "Keine Applikationen installiert.";
$a->strings["Not Extended"] = "Nicht erweitert.";
$a->strings["Time Conversion"] = "Zeitumrechnung";
$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann.";
$a->strings["UTC time: %s"] = "UTC Zeit: %s";
$a->strings["Current timezone: %s"] = "Aktuelle Zeitzone: %s";
$a->strings["Converted localtime: %s"] = "Umgerechnete lokale Zeit: %s";
$a->strings["Please select your timezone:"] = "Bitte wähle Deine Zeitzone:";
$a->strings["Remote privacy information not available."] = "Entfernte Privatsphäreneinstellungen nicht verfügbar.";
$a->strings["Visible to:"] = "Sichtbar für:";
$a->strings["No valid account found."] = "Kein gültiges Konto gefunden.";
$a->strings["Password reset request issued. Check your email."] = "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe Deine E-Mail.";
$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\nHallo %1\$s,\n\nAuf \"%2\$s\" ist eine Anfrage auf das Zurücksetzen Deines Passworts gestellt\nworden. Um diese Anfrage zu verifizieren, folge bitte dem unten stehenden\nLink oder kopiere und füge ihn in die Adressleiste Deines Browsers ein.\n\nSolltest Du die Anfrage NICHT gemacht haben, ignoriere und/oder lösche diese\nE-Mail bitte.\n\nDein Passwort wird nicht geändert, solange wir nicht verifiziert haben, dass\nDu diese Änderung angefragt hast.";
$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\nUm Deine Identität zu verifizieren, folge bitte dem folgenden Link:\n\n%1\$s\n\nDu wirst eine weitere E-Mail mit Deinem neuen Passwort erhalten. Sobald Du Dich\nangemeldet hast, kannst Du Dein Passwort in den Einstellungen ändern.\n\nDie Anmeldedetails sind die folgenden:\n\nAdresse der Seite:\t%2\$s\nBenutzername:\t%3\$s";
$a->strings["Password reset requested at %s"] = "Anfrage zum Zurücksetzen des Passworts auf %s erhalten";
$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Anfrage konnte nicht verifiziert werden. (Eventuell hast Du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert.";
$a->strings["Password Reset"] = "Passwort zurücksetzen";
$a->strings["Your password has been reset as requested."] = "Dein Passwort wurde wie gewünscht zurückgesetzt.";
$a->strings["Your new password is"] = "Dein neues Passwort lautet";
$a->strings["Save or copy your new password - and then"] = "Speichere oder kopiere Dein neues Passwort - und dann";
$a->strings["click here to login"] = "hier klicken, um Dich anzumelden";
$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Du kannst das Passwort in den <em>Einstellungen</em> ändern, sobald Du Dich erfolgreich angemeldet hast.";
$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "\nHallo %1\$s,\n\nDein Passwort wurde wie gewünscht geändert. Bitte bewahre diese Informationen gut auf (oder ändere Dein Passwort in eines, das Du Dir leicht merken kannst).";
$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = "\nDie Anmeldedaten sind die folgenden:\n\nAdresse der Seite: %1\$s\nLogin Name: %2\$s\nPasswort: %3\$s\n\nDas Passwort kann und sollte in den Kontoeinstellungen nach der Anmeldung geändert werden.";
$a->strings["Your password has been changed at %s"] = "Auf %s wurde Dein Passwort geändert";
$a->strings["Forgot your Password?"] = "Hast Du Dein Passwort vergessen?";
$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Gib Deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden Dir dann weitere Informationen per Mail zugesendet.";
$a->strings["Nickname or Email: "] = "Spitzname oder E-Mail:";
$a->strings["Reset"] = "Zurücksetzen";
$a->strings["System down for maintenance"] = "System zur Wartung abgeschaltet";
$a->strings["Manage Identities and/or Pages"] = "Verwalte Identitäten und/oder Seiten";
$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die Deine Kontoinformationen teilen oder zu denen Du „Verwalten“-Befugnisse bekommen hast.";
$a->strings["Select an identity to manage: "] = "Wähle eine Identität zum Verwalten aus: ";
$a->strings["No keywords to match. Please add keywords to your default profile."] = "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu Deinem Standardprofil hinzu.";
$a->strings["is interested in:"] = "ist interessiert an:";
$a->strings["Profile Match"] = "Profilübereinstimmungen";
$a->strings["Mood"] = "Stimmung";
$a->strings["Set your current mood and tell your friends"] = "Wähle Deine aktuelle Stimmung und erzähle sie Deinen Kontakten";
$a->strings["Welcome to Friendica"] = "Willkommen bei Friendica";
$a->strings["New Member Checklist"] = "Checkliste für neue Mitglieder";
$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Wir möchten Dir einige Tipps und Links anbieten, die Dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für Dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden.";
@ -874,160 +958,29 @@ $a->strings["Friendica respects your privacy. By default, your posts will only s
$a->strings["Getting Help"] = "Hilfe bekommen";
$a->strings["Go to the Help Section"] = "Zum Hilfe Abschnitt gehen";
$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Unsere <strong>Hilfe</strong> Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten.";
$a->strings["Remove My Account"] = "Konto löschen";
$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen.";
$a->strings["Please enter your password for verification:"] = "Bitte gib Dein Passwort zur Verifikation ein:";
$a->strings["Item not found"] = "Beitrag nicht gefunden";
$a->strings["Edit post"] = "Beitrag bearbeiten";
$a->strings["Time Conversion"] = "Zeitumrechnung";
$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann.";
$a->strings["UTC time: %s"] = "UTC Zeit: %s";
$a->strings["Current timezone: %s"] = "Aktuelle Zeitzone: %s";
$a->strings["Converted localtime: %s"] = "Umgerechnete lokale Zeit: %s";
$a->strings["Please select your timezone:"] = "Bitte wähle Deine Zeitzone:";
$a->strings["The post was created"] = "Der Beitrag wurde angelegt";
$a->strings["Group created."] = "Gruppe erstellt.";
$a->strings["Could not create group."] = "Konnte die Gruppe nicht erstellen.";
$a->strings["Group not found."] = "Gruppe nicht gefunden.";
$a->strings["Group name changed."] = "Gruppenname geändert.";
$a->strings["Save Group"] = "Gruppe speichern";
$a->strings["Create a group of contacts/friends."] = "Eine Kontaktgruppe anlegen.";
$a->strings["Group removed."] = "Gruppe entfernt.";
$a->strings["Unable to remove group."] = "Konnte die Gruppe nicht entfernen.";
$a->strings["Group Editor"] = "Gruppeneditor";
$a->strings["Members"] = "Mitglieder";
$a->strings["All Contacts"] = "Alle Kontakte";
$a->strings["Group is empty"] = "Gruppe ist leer";
$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen.";
$a->strings["No recipient selected."] = "Kein Empfänger gewählt.";
$a->strings["Unable to check your home location."] = "Konnte Deinen Heimatort nicht bestimmen.";
$a->strings["Message could not be sent."] = "Nachricht konnte nicht gesendet werden.";
$a->strings["Message collection failure."] = "Konnte Nachrichten nicht abrufen.";
$a->strings["Message sent."] = "Nachricht gesendet.";
$a->strings["No recipient."] = "Kein Empfänger.";
$a->strings["Send Private Message"] = "Private Nachricht senden";
$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Wenn Du möchtest, dass %s Dir antworten kann, überprüfe Deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern.";
$a->strings["To:"] = "An:";
$a->strings["Subject:"] = "Betreff:";
$a->strings["link"] = "Link";
$a->strings["Authorize application connection"] = "Verbindung der Applikation autorisieren";
$a->strings["Return to your app and insert this Securty Code:"] = "Gehe zu Deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:";
$a->strings["Please login to continue."] = "Bitte melde Dich an um fortzufahren.";
$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Möchtest Du dieser Anwendung den Zugriff auf Deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in Deinem Namen gestatten?";
$a->strings["No"] = "Nein";
$a->strings["Source (bbcode) text:"] = "Quelle (bbcode) Text:";
$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Eingabe (Diaspora) nach BBCode zu konvertierender Text:";
$a->strings["Source input: "] = "Originaltext:";
$a->strings["bb2html (raw HTML): "] = "bb2html (reines HTML): ";
$a->strings["bb2html: "] = "bb2html: ";
$a->strings["bb2html2bb: "] = "bb2html2bb: ";
$a->strings["bb2md: "] = "bb2md: ";
$a->strings["bb2md2html: "] = "bb2md2html: ";
$a->strings["bb2dia2bb: "] = "bb2dia2bb: ";
$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: ";
$a->strings["Source input (Diaspora format): "] = "Originaltext (Diaspora Format): ";
$a->strings["diaspora2bb: "] = "diaspora2bb: ";
$a->strings["Visit %s's profile [%s]"] = "Besuche %ss Profil [%s]";
$a->strings["Edit contact"] = "Kontakt bearbeiten";
$a->strings["Contacts who are not members of a group"] = "Kontakte, die keiner Gruppe zugewiesen sind";
$a->strings["No more system notifications."] = "Keine weiteren Systembenachrichtigungen.";
$a->strings["System Notifications"] = "Systembenachrichtigungen";
$a->strings["Post successful."] = "Beitrag erfolgreich veröffentlicht.";
$a->strings["OpenID protocol error. No ID returned."] = "OpenID Protokollfehler. Keine ID zurückgegeben.";
$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Nutzerkonto wurde nicht gefunden und OpenID-Registrierung ist auf diesem Server nicht gestattet.";
$a->strings["Subscribing to OStatus contacts"] = "OStatus Kontakten folgen";
$a->strings["No contact provided."] = "Keine Kontakte gefunden.";
$a->strings["Couldn't fetch information for contact."] = "Konnte die Kontaktinformationen nicht einholen.";
$a->strings["Couldn't fetch friends for contact."] = "Konnte die Kontaktliste des Kontakts nicht abfragen.";
$a->strings["Done"] = "Erledigt";
$a->strings["success"] = "Erfolg";
$a->strings["failed"] = "Fehlgeschlagen";
$a->strings["ignored"] = "Ignoriert";
$a->strings["%1\$s welcomes %2\$s"] = "%1\$s heißt %2\$s herzlich willkommen";
$a->strings["Unable to locate contact information."] = "Konnte die Kontaktinformationen nicht finden.";
$a->strings["Do you really want to delete this message?"] = "Möchtest Du wirklich diese Nachricht löschen?";
$a->strings["Message deleted."] = "Nachricht gelöscht.";
$a->strings["Conversation removed."] = "Unterhaltung gelöscht.";
$a->strings["No messages."] = "Keine Nachrichten.";
$a->strings["Message not available."] = "Nachricht nicht verfügbar.";
$a->strings["Delete message"] = "Nachricht löschen";
$a->strings["Delete conversation"] = "Unterhaltung löschen";
$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Sichere Kommunikation ist nicht verfügbar. <strong>Eventuell</strong> kannst Du auf der Profilseite des Absenders antworten.";
$a->strings["Send Reply"] = "Antwort senden";
$a->strings["Unknown sender - %s"] = "'Unbekannter Absender - %s";
$a->strings["You and %s"] = "Du und %s";
$a->strings["%s and You"] = "%s und Du";
$a->strings["D, d M Y - g:i A"] = "D, d. M Y - g:i A";
$a->strings["%d message"] = array(
0 => "%d Nachricht",
1 => "%d Nachrichten",
);
$a->strings["Manage Identities and/or Pages"] = "Verwalte Identitäten und/oder Seiten";
$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die Deine Kontoinformationen teilen oder zu denen Du „Verwalten“-Befugnisse bekommen hast.";
$a->strings["Select an identity to manage: "] = "Wähle eine Identität zum Verwalten aus: ";
$a->strings["Contact settings applied."] = "Einstellungen zum Kontakt angewandt.";
$a->strings["Contact update failed."] = "Konnte den Kontakt nicht aktualisieren.";
$a->strings["Contact not found."] = "Kontakt nicht gefunden.";
$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ACHTUNG: Das sind Experten-Einstellungen!</strong> Wenn Du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr.";
$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Bitte nutze den Zurück-Button Deines Browsers <strong>jetzt</strong>, wenn Du Dir unsicher bist, was Du tun willst.";
$a->strings["No mirroring"] = "Kein Spiegeln";
$a->strings["Mirror as forwarded posting"] = "Spiegeln als weitergeleitete Beiträge";
$a->strings["Mirror as my own posting"] = "Spiegeln als meine eigenen Beiträge";
$a->strings["Return to contact editor"] = "Zurück zum Kontakteditor";
$a->strings["Refetch contact data"] = "Kontaktdaten neu laden";
$a->strings["Remote Self"] = "Entfernte Konten";
$a->strings["Mirror postings from this contact"] = "Spiegle Beiträge dieses Kontakts";
$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all Deine Kontakte zu senden.";
$a->strings["Name"] = "Name";
$a->strings["Account Nickname"] = "Konto-Spitzname";
$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - überschreibt Name/Spitzname";
$a->strings["Account URL"] = "Konto-URL";
$a->strings["Friend Request URL"] = "URL für Kontaktschaftsanfragen";
$a->strings["Friend Confirm URL"] = "URL für Bestätigungen von Kontaktanfragen";
$a->strings["Notification Endpoint URL"] = "URL-Endpunkt für Benachrichtigungen";
$a->strings["Poll/Feed URL"] = "Pull/Feed-URL";
$a->strings["New photo from this URL"] = "Neues Foto von dieser URL";
$a->strings["No such group"] = "Es gibt keine solche Gruppe";
$a->strings["Group: %s"] = "Gruppe: %s";
$a->strings["This entry was edited"] = "Dieser Beitrag wurde bearbeitet.";
$a->strings["%d comment"] = array(
0 => "%d Kommentar",
1 => "%d Kommentare",
);
$a->strings["Private Message"] = "Private Nachricht";
$a->strings["I like this (toggle)"] = "Ich mag das (toggle)";
$a->strings["like"] = "mag ich";
$a->strings["I don't like this (toggle)"] = "Ich mag das nicht (toggle)";
$a->strings["dislike"] = "mag ich nicht";
$a->strings["Share this"] = "Weitersagen";
$a->strings["share"] = "Teilen";
$a->strings["This is you"] = "Das bist Du";
$a->strings["Comment"] = "Kommentar";
$a->strings["Bold"] = "Fett";
$a->strings["Italic"] = "Kursiv";
$a->strings["Underline"] = "Unterstrichen";
$a->strings["Quote"] = "Zitat";
$a->strings["Code"] = "Code";
$a->strings["Image"] = "Bild";
$a->strings["Link"] = "Link";
$a->strings["Video"] = "Video";
$a->strings["Edit"] = "Bearbeiten";
$a->strings["add star"] = "markieren";
$a->strings["remove star"] = "Markierung entfernen";
$a->strings["toggle star status"] = "Markierung umschalten";
$a->strings["starred"] = "markiert";
$a->strings["add tag"] = "Tag hinzufügen";
$a->strings["ignore thread"] = "Thread ignorieren";
$a->strings["unignore thread"] = "Thread nicht mehr ignorieren";
$a->strings["toggle ignore status"] = "Ignoriert-Status ein-/ausschalten";
$a->strings["save to folder"] = "In Ordner speichern";
$a->strings["I will attend"] = "Ich werde teilnehmen";
$a->strings["I will not attend"] = "Ich werde nicht teilnehmen";
$a->strings["I might attend"] = "Ich werde eventuell teilnehmen";
$a->strings["to"] = "zu";
$a->strings["Wall-to-Wall"] = "Wall-to-Wall";
$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:";
$a->strings["Friend suggestion sent."] = "Kontaktvorschlag gesendet.";
$a->strings["Suggest Friends"] = "Kontakte vorschlagen";
$a->strings["Suggest a friend for %s"] = "Schlage %s einen Kontakt vor";
$a->strings["Mood"] = "Stimmung";
$a->strings["Set your current mood and tell your friends"] = "Wähle Deine aktuelle Stimmung und erzähle sie Deinen Kontakten";
$a->strings["Keep this window open until done."] = "Lasse dieses Fenster offen, bis der Vorgang abgeschlossen ist.";
$a->strings["Poke/Prod"] = "Anstupsen";
$a->strings["poke, prod or do other things to somebody"] = "Stupse Leute an oder mache anderes mit ihnen";
$a->strings["Recipient"] = "Empfänger";
$a->strings["Choose what you wish to do to recipient"] = "Was willst Du mit dem Empfänger machen:";
$a->strings["Make this post private"] = "Diesen Beitrag privat machen";
$a->strings["Access to this profile has been restricted."] = "Der Zugriff zu diesem Profil wurde eingeschränkt.";
$a->strings["Tips for New Members"] = "Tipps für neue Nutzer";
$a->strings["Image uploaded but image cropping failed."] = "Bild hochgeladen, aber das Zuschneiden schlug fehl.";
$a->strings["Image size reduction [%s] failed."] = "Verkleinern der Bildgröße von [%s] scheiterte.";
$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird.";
@ -1045,205 +998,16 @@ $a->strings["Please adjust the image cropping for optimum viewing."] = "Passe bi
$a->strings["Done Editing"] = "Bearbeitung abgeschlossen";
$a->strings["Image uploaded successfully."] = "Bild erfolgreich hochgeladen.";
$a->strings["Image upload failed."] = "Hochladen des Bildes gescheitert.";
$a->strings["Account approved."] = "Konto freigegeben.";
$a->strings["Registration revoked for %s"] = "Registrierung für %s wurde zurückgezogen";
$a->strings["Please login."] = "Bitte melde Dich an.";
$a->strings["Invalid request identifier."] = "Invalid request identifier.";
$a->strings["Discard"] = "Verwerfen";
$a->strings["Ignore"] = "Ignorieren";
$a->strings["Network Notifications"] = "Netzwerk Benachrichtigungen";
$a->strings["Personal Notifications"] = "Persönliche Benachrichtigungen";
$a->strings["Home Notifications"] = "Pinnwand Benachrichtigungen";
$a->strings["Show Ignored Requests"] = "Zeige ignorierte Anfragen";
$a->strings["Hide Ignored Requests"] = "Verberge ignorierte Anfragen";
$a->strings["Notification type: "] = "Benachrichtigungstyp: ";
$a->strings["suggested by %s"] = "vorgeschlagen von %s";
$a->strings["Hide this contact from others"] = "Verbirg diesen Kontakt vor Anderen";
$a->strings["Post a new friend activity"] = "Neue-Kontakt Nachricht senden";
$a->strings["if applicable"] = "falls anwendbar";
$a->strings["Approve"] = "Genehmigen";
$a->strings["Claims to be known to you: "] = "Behauptet Dich zu kennen: ";
$a->strings["yes"] = "ja";
$a->strings["no"] = "nein";
$a->strings["Shall your connection be bidirectional or not? \"Friend\" implies that you allow to read and you subscribe to their posts. \"Fan/Admirer\" means that you allow to read but you do not want to read theirs. Approve as: "] = "Soll Deine Beziehung beidseitig sein oder nicht? \"Kontakt\" bedeutet, ihr könnt gegenseitig die Beiträge des Anderen lesen dürft. \"Fan/Verehrer\", dass du das lesen deiner Beiträge erlaubst aber nicht die Beiträge der anderen Seite lesen möchtest. Genehmigen als:";
$a->strings["Shall your connection be bidirectional or not? \"Friend\" implies that you allow to read and you subscribe to their posts. \"Sharer\" means that you allow to read but you do not want to read theirs. Approve as: "] = "Soll Deine Beziehung beidseitig sein oder nicht? \"Kontakt\" bedeutet, ihr gegenseitig die Beiträge des Anderen lesen dürft. \"Teilenden\", das du das lesen deiner Beiträge erlaubst aber nicht die Beiträge der anderen Seite lesen möchtest. Genehmigen als:";
$a->strings["Friend"] = "Kontakt";
$a->strings["Sharer"] = "Teilenden";
$a->strings["Fan/Admirer"] = "Fan/Verehrer";
$a->strings["Profile URL"] = "Profil URL";
$a->strings["No introductions."] = "Keine Kontaktanfragen.";
$a->strings["Show unread"] = "Ungelesene anzeigen";
$a->strings["Show all"] = "Alle anzeigen";
$a->strings["No more %s notifications."] = "Keine weiteren %s Benachrichtigungen";
$a->strings["Profile not found."] = "Profil nicht gefunden.";
$a->strings["Profile deleted."] = "Profil gelöscht.";
$a->strings["Profile-"] = "Profil-";
$a->strings["New profile created."] = "Neues Profil angelegt.";
$a->strings["Profile unavailable to clone."] = "Profil nicht zum Duplizieren verfügbar.";
$a->strings["Profile Name is required."] = "Profilname ist erforderlich.";
$a->strings["Marital Status"] = "Familienstand";
$a->strings["Romantic Partner"] = "Romanze";
$a->strings["Work/Employment"] = "Arbeit / Beschäftigung";
$a->strings["Religion"] = "Religion";
$a->strings["Political Views"] = "Politische Ansichten";
$a->strings["Gender"] = "Geschlecht";
$a->strings["Sexual Preference"] = "Sexuelle Vorlieben";
$a->strings["XMPP"] = "XMPP";
$a->strings["Homepage"] = "Webseite";
$a->strings["Interests"] = "Interessen";
$a->strings["Address"] = "Adresse";
$a->strings["Location"] = "Wohnort";
$a->strings["Profile updated."] = "Profil aktualisiert.";
$a->strings[" and "] = " und ";
$a->strings["public profile"] = "öffentliches Profil";
$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s hat %2\$s geändert auf &ldquo;%3\$s&rdquo;";
$a->strings[" - Visit %1\$s's %2\$s"] = " %1\$ss %2\$s besuchen";
$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s hat folgendes aktualisiert %2\$s, verändert wurde %3\$s.";
$a->strings["Hide contacts and friends:"] = "Kontakte und Freunde verbergen";
$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Liste der Kontakte vor Betrachtern dieses Profils verbergen?";
$a->strings["Show more profile fields:"] = "Zeige mehr Profil-Felder:";
$a->strings["Profile Actions"] = "Profilaktionen";
$a->strings["Edit Profile Details"] = "Profil bearbeiten";
$a->strings["Change Profile Photo"] = "Profilbild ändern";
$a->strings["View this profile"] = "Dieses Profil anzeigen";
$a->strings["Create a new profile using these settings"] = "Neues Profil anlegen und diese Einstellungen verwenden";
$a->strings["Clone this profile"] = "Dieses Profil duplizieren";
$a->strings["Delete this profile"] = "Dieses Profil löschen";
$a->strings["Basic information"] = "Grundinformationen";
$a->strings["Profile picture"] = "Profilbild";
$a->strings["Preferences"] = "Vorlieben";
$a->strings["Status information"] = "Status Informationen";
$a->strings["Additional information"] = "Zusätzliche Informationen";
$a->strings["Relation"] = "Beziehung";
$a->strings["Your Gender:"] = "Dein Geschlecht:";
$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Beziehungsstatus:";
$a->strings["Example: fishing photography software"] = "Beispiel: Fischen Fotografie Software";
$a->strings["Profile Name:"] = "Profilname:";
$a->strings["Required"] = "Benötigt";
$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Dies ist Dein <strong>öffentliches</strong> Profil.<br />Es <strong>könnte</strong> für jeden Nutzer des Internets sichtbar sein.";
$a->strings["Your Full Name:"] = "Dein kompletter Name:";
$a->strings["Title/Description:"] = "Titel/Beschreibung:";
$a->strings["Street Address:"] = "Adresse:";
$a->strings["Locality/City:"] = "Wohnort:";
$a->strings["Region/State:"] = "Region/Bundesstaat:";
$a->strings["Postal/Zip Code:"] = "Postleitzahl:";
$a->strings["Country:"] = "Land:";
$a->strings["Who: (if applicable)"] = "Wer: (falls anwendbar)";
$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Beispiele: cathy123, Cathy Williams, cathy@example.com";
$a->strings["Since [date]:"] = "Seit [Datum]:";
$a->strings["Tell us about yourself..."] = "Erzähle uns ein bisschen von Dir …";
$a->strings["XMPP (Jabber) address:"] = "XMPP (Jabber) Adresse";
$a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = "Die XMPP Adresse wird an deine Kontakte verteilt werden, so dass sie auch über XMPP mit dir in Kontakt treten können.";
$a->strings["Homepage URL:"] = "Adresse der Homepage:";
$a->strings["Religious Views:"] = "Religiöse Ansichten:";
$a->strings["Public Keywords:"] = "Öffentliche Schlüsselwörter:";
$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Wird verwendet, um potentielle Kontakte zu finden, kann von Kontakten eingesehen werden)";
$a->strings["Private Keywords:"] = "Private Schlüsselwörter:";
$a->strings["(Used for searching profiles, never shown to others)"] = "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)";
$a->strings["Musical interests"] = "Musikalische Interessen";
$a->strings["Books, literature"] = "Bücher, Literatur";
$a->strings["Television"] = "Fernsehen";
$a->strings["Film/dance/culture/entertainment"] = "Filme/Tänze/Kultur/Unterhaltung";
$a->strings["Hobbies/Interests"] = "Hobbies/Interessen";
$a->strings["Love/romance"] = "Liebe/Romantik";
$a->strings["Work/employment"] = "Arbeit/Anstellung";
$a->strings["School/education"] = "Schule/Ausbildung";
$a->strings["Contact information and Social Networks"] = "Kontaktinformationen und Soziale Netzwerke";
$a->strings["Edit/Manage Profiles"] = "Bearbeite/Verwalte Profile";
$a->strings["No friends to display."] = "Keine Kontakte zum Anzeigen.";
$a->strings["Access to this profile has been restricted."] = "Der Zugriff zu diesem Profil wurde eingeschränkt.";
$a->strings["View"] = "Ansehen";
$a->strings["Previous"] = "Vorherige";
$a->strings["Next"] = "Nächste";
$a->strings["list"] = "Liste";
$a->strings["User not found"] = "Nutzer nicht gefunden";
$a->strings["This calendar format is not supported"] = "Dieses Kalenderformat wird nicht unterstützt.";
$a->strings["No exportable data found"] = "Keine exportierbaren Daten gefunden";
$a->strings["calendar"] = "Kalender";
$a->strings["No contacts in common."] = "Keine gemeinsamen Kontakte.";
$a->strings["Common Friends"] = "Gemeinsame Kontakte";
$a->strings["Not available."] = "Nicht verfügbar.";
$a->strings["Global Directory"] = "Weltweites Verzeichnis";
$a->strings["Find on this site"] = "Auf diesem Server suchen";
$a->strings["Results for:"] = "Ergebnisse für:";
$a->strings["Site Directory"] = "Verzeichnis";
$a->strings["No entries (some entries may be hidden)."] = "Keine Einträge (einige Einträge könnten versteckt sein).";
$a->strings["People Search - %s"] = "Personensuche - %s";
$a->strings["Forum Search - %s"] = "Forensuche - %s";
$a->strings["No matches"] = "Keine Übereinstimmungen";
$a->strings["Item has been removed."] = "Eintrag wurde entfernt.";
$a->strings["Event can not end before it has started."] = "Die Veranstaltung kann nicht enden bevor sie beginnt.";
$a->strings["Event title and start time are required."] = "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden.";
$a->strings["Create New Event"] = "Neue Veranstaltung erstellen";
$a->strings["Event details"] = "Veranstaltungsdetails";
$a->strings["Starting date and Title are required."] = "Anfangszeitpunkt und Titel werden benötigt";
$a->strings["Event Starts:"] = "Veranstaltungsbeginn:";
$a->strings["Finish date/time is not known or not relevant"] = "Enddatum/-zeit ist nicht bekannt oder nicht relevant";
$a->strings["Event Finishes:"] = "Veranstaltungsende:";
$a->strings["Adjust for viewer timezone"] = "An Zeitzone des Betrachters anpassen";
$a->strings["Description:"] = "Beschreibung";
$a->strings["Title:"] = "Titel:";
$a->strings["Share this event"] = "Veranstaltung teilen";
$a->strings["System down for maintenance"] = "System zur Wartung abgeschaltet";
$a->strings["No keywords to match. Please add keywords to your default profile."] = "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu Deinem Standardprofil hinzu.";
$a->strings["is interested in:"] = "ist interessiert an:";
$a->strings["Profile Match"] = "Profilübereinstimmungen";
$a->strings["Tips for New Members"] = "Tipps für neue Nutzer";
$a->strings["Do you really want to delete this suggestion?"] = "Möchtest Du wirklich diese Empfehlung löschen?";
$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal.";
$a->strings["Ignore/Hide"] = "Ignorieren/Verbergen";
$a->strings["[Embedded content - reload page to view]"] = "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]";
$a->strings["Recent Photos"] = "Neueste Fotos";
$a->strings["Upload New Photos"] = "Neue Fotos hochladen";
$a->strings["everybody"] = "jeder";
$a->strings["Contact information unavailable"] = "Kontaktinformationen nicht verfügbar";
$a->strings["Album not found."] = "Album nicht gefunden.";
$a->strings["Delete Album"] = "Album löschen";
$a->strings["Do you really want to delete this photo album and all its photos?"] = "Möchtest Du wirklich dieses Foto-Album und all seine Foto löschen?";
$a->strings["Delete Photo"] = "Foto löschen";
$a->strings["Do you really want to delete this photo?"] = "Möchtest Du wirklich dieses Foto löschen?";
$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s wurde von %3\$s in %2\$s getaggt";
$a->strings["a photo"] = "einem Foto";
$a->strings["Image file is empty."] = "Bilddatei ist leer.";
$a->strings["No photos selected"] = "Keine Bilder ausgewählt";
$a->strings["Access to this item is restricted."] = "Zugriff zu diesem Eintrag wurde eingeschränkt.";
$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers.";
$a->strings["Upload Photos"] = "Bilder hochladen";
$a->strings["New album name: "] = "Name des neuen Albums: ";
$a->strings["or existing album name: "] = "oder existierender Albumname: ";
$a->strings["Do not show a status post for this upload"] = "Keine Status-Mitteilung für diesen Beitrag anzeigen";
$a->strings["Show to Groups"] = "Zeige den Gruppen";
$a->strings["Show to Contacts"] = "Zeige den Kontakten";
$a->strings["Private Photo"] = "Privates Foto";
$a->strings["Public Photo"] = "Öffentliches Foto";
$a->strings["Edit Album"] = "Album bearbeiten";
$a->strings["Show Newest First"] = "Zeige neueste zuerst";
$a->strings["Show Oldest First"] = "Zeige älteste zuerst";
$a->strings["View Photo"] = "Foto betrachten";
$a->strings["Permission denied. Access to this item may be restricted."] = "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein.";
$a->strings["Photo not available"] = "Foto nicht verfügbar";
$a->strings["View photo"] = "Fotos ansehen";
$a->strings["Edit photo"] = "Foto bearbeiten";
$a->strings["Use as profile photo"] = "Als Profilbild verwenden";
$a->strings["View Full Size"] = "Betrachte Originalgröße";
$a->strings["Tags: "] = "Tags: ";
$a->strings["[Remove any tag]"] = "[Tag entfernen]";
$a->strings["New album name"] = "Name des neuen Albums";
$a->strings["Caption"] = "Bildunterschrift";
$a->strings["Add a Tag"] = "Tag hinzufügen";
$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping";
$a->strings["Do not rotate"] = "Nicht rotieren";
$a->strings["Rotate CW (right)"] = "Drehen US (rechts)";
$a->strings["Rotate CCW (left)"] = "Drehen EUS (links)";
$a->strings["Private photo"] = "Privates Foto";
$a->strings["Public photo"] = "Öffentliches Foto";
$a->strings["Map"] = "Karte";
$a->strings["View Album"] = "Album betrachten";
$a->strings["Invalid profile identifier."] = "Ungültiger Profil-Bezeichner.";
$a->strings["Profile Visibility Editor"] = "Editor für die Profil-Sichtbarkeit";
$a->strings["Visible To"] = "Sichtbar für";
$a->strings["All Contacts (with secure profile access)"] = "Alle Kontakte (mit gesichertem Profilzugriff)";
$a->strings["Registration successful. Please check your email for further instructions."] = "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet.";
$a->strings["Failed to send email message. Here your accout details:<br> login: %s<br> password: %s<br><br>You can change your password after login."] = "Versenden der E-Mail fehlgeschlagen. Hier sind Deine Account Details:\n\nLogin: %s\nPasswort: %s\n\nDu kannst das Passwort nach dem Anmelden ändern.";
$a->strings["Registration successful."] = "Registrierung erfolgreich.";
$a->strings["Your registration can not be processed."] = "Deine Registrierung konnte nicht verarbeitet werden.";
$a->strings["Your registration is pending approval by the site owner."] = "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden.";
$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal.";
$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Du kannst dieses Formular auch (optional) mit Deiner OpenID ausfüllen, indem Du Deine OpenID angibst und 'Registrieren' klickst.";
$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Wenn Du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus.";
$a->strings["Your OpenID (optional): "] = "Deine OpenID (optional): ";
@ -1260,13 +1024,24 @@ $a->strings["Leave empty for an auto generated password."] = "Leer lassen um das
$a->strings["Confirm:"] = "Bestätigen:";
$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Wähle einen Spitznamen für Dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse Deines Profils auf dieser Seite wird '<strong>spitzname@\$sitename</strong>' sein.";
$a->strings["Choose a nickname: "] = "Spitznamen wählen: ";
$a->strings["Import"] = "Import";
$a->strings["Import your profile to this friendica instance"] = "Importiere Dein Profil auf diese Friendica Instanz";
$a->strings["Account approved."] = "Konto freigegeben.";
$a->strings["Registration revoked for %s"] = "Registrierung für %s wurde zurückgezogen";
$a->strings["Please login."] = "Bitte melde Dich an.";
$a->strings["Remove My Account"] = "Konto löschen";
$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen.";
$a->strings["Please enter your password for verification:"] = "Bitte gib Dein Passwort zur Verifikation ein:";
$a->strings["Resubscribing to OStatus contacts"] = "Erneuern der OStatus Abonements";
$a->strings["Error"] = "Fehler";
$a->strings["everybody"] = "jeder";
$a->strings["Account"] = "Nutzerkonto";
$a->strings["Additional features"] = "Zusätzliche Features";
$a->strings["Display"] = "Anzeige";
$a->strings["Social Networks"] = "Soziale Netzwerke";
$a->strings["Plugins"] = "Plugins";
$a->strings["Connected apps"] = "Verbundene Programme";
$a->strings["Export personal data"] = "Persönliche Daten exportieren";
$a->strings["Remove account"] = "Konto löschen";
$a->strings["Missing some important data!"] = "Wichtige Daten fehlen!";
$a->strings["Update"] = "Aktualisierungen";
@ -1413,6 +1188,8 @@ $a->strings["Maximum Friend Requests/Day:"] = "Maximale Anzahl vonKontaktanfrage
$a->strings["(to prevent spam abuse)"] = "(um SPAM zu vermeiden)";
$a->strings["Default Post Permissions"] = "Standard-Zugriffsrechte für Beiträge";
$a->strings["(click to open/close)"] = "(klicke zum öffnen/schließen)";
$a->strings["Show to Groups"] = "Zeige den Gruppen";
$a->strings["Show to Contacts"] = "Zeige den Kontakten";
$a->strings["Default Private Post"] = "Privater Standardbeitrag";
$a->strings["Default Public Post"] = "Öffentlicher Standardbeitrag";
$a->strings["Default Permissions for New Posts"] = "Standardberechtigungen für neue Beiträge";
@ -1440,16 +1217,440 @@ $a->strings["Change the behaviour of this account for special situations"] = "Ve
$a->strings["Relocate"] = "Umziehen";
$a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "Wenn Du Dein Profil von einem anderen Server umgezogen hast und einige Deiner Kontakte Deine Beiträge nicht erhalten, verwende diesen Button.";
$a->strings["Resend relocate message to contacts"] = "Umzugsbenachrichtigung erneut an Kontakte senden";
$a->strings["link"] = "Link";
$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt %2\$s %3\$s";
$a->strings["Do you really want to delete this suggestion?"] = "Möchtest Du wirklich diese Empfehlung löschen?";
$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal.";
$a->strings["Ignore/Hide"] = "Ignorieren/Verbergen";
$a->strings["Tag removed"] = "Tag entfernt";
$a->strings["Remove Item Tag"] = "Gegenstands-Tag entfernen";
$a->strings["Select a tag to remove: "] = "Wähle ein Tag zum Entfernen aus: ";
$a->strings["Export account"] = "Account exportieren";
$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exportiere Deine Accountinformationen und Kontakte. Verwende dies um ein Backup Deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen.";
$a->strings["Export all"] = "Alles exportieren";
$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Exportiere Deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup Deines Accounts anzulegen (Fotos werden nicht exportiert).";
$a->strings["Move account"] = "Account umziehen";
$a->strings["You can import an account from another Friendica server."] = "Du kannst einen Account von einem anderen Friendica Server importieren.";
$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Du musst Deinen Account vom alten Server exportieren und hier hochladen. Wir stellen Deinen alten Account mit all Deinen Kontakten wieder her. Wir werden auch versuchen all Deine Kontakte darüber zu informieren, dass Du hierher umgezogen bist.";
$a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (GNU Social/Statusnet) oder von Diaspora importieren";
$a->strings["Account file"] = "Account Datei";
$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Um Deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\"";
$a->strings["[Embedded content - reload page to view]"] = "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]";
$a->strings["Do you really want to delete this video?"] = "Möchtest Du dieses Video wirklich löschen?";
$a->strings["Delete Video"] = "Video Löschen";
$a->strings["No videos selected"] = "Keine Videos ausgewählt";
$a->strings["Access to this item is restricted."] = "Zugriff zu diesem Eintrag wurde eingeschränkt.";
$a->strings["View Album"] = "Album betrachten";
$a->strings["Recent Videos"] = "Neueste Videos";
$a->strings["Upload New Videos"] = "Neues Video hochladen";
$a->strings["Access denied."] = "Zugriff verweigert.";
$a->strings["Invalid request."] = "Ungültige Anfrage";
$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Entschuldige, die Datei scheint größer zu sein als es die PHP Konfiguration erlaubt.";
$a->strings["Or - did you try to upload an empty file?"] = "Oder - hast Du versucht, eine leere Datei hochzuladen?";
$a->strings["File exceeds size limit of %s"] = "Die Datei ist größer als das erlaubte Limit von %s";
$a->strings["File upload failed."] = "Hochladen der Datei fehlgeschlagen.";
$a->strings["View"] = "Ansehen";
$a->strings["Previous"] = "Vorherige";
$a->strings["Next"] = "Nächste";
$a->strings["list"] = "Liste";
$a->strings["User not found"] = "Nutzer nicht gefunden";
$a->strings["This calendar format is not supported"] = "Dieses Kalenderformat wird nicht unterstützt.";
$a->strings["No exportable data found"] = "Keine exportierbaren Daten gefunden";
$a->strings["calendar"] = "Kalender";
$a->strings["%d contact edited."] = array(
0 => "%d Kontakt bearbeitet.",
1 => "%d Kontakte bearbeitet.",
);
$a->strings["Could not access contact record."] = "Konnte nicht auf die Kontaktdaten zugreifen.";
$a->strings["Could not locate selected profile."] = "Konnte das ausgewählte Profil nicht finden.";
$a->strings["Contact updated."] = "Kontakt aktualisiert.";
$a->strings["Failed to update contact record."] = "Aktualisierung der Kontaktdaten fehlgeschlagen.";
$a->strings["Contact has been blocked"] = "Kontakt wurde blockiert";
$a->strings["Contact has been unblocked"] = "Kontakt wurde wieder freigegeben";
$a->strings["Contact has been ignored"] = "Kontakt wurde ignoriert";
$a->strings["Contact has been unignored"] = "Kontakt wird nicht mehr ignoriert";
$a->strings["Contact has been archived"] = "Kontakt wurde archiviert";
$a->strings["Contact has been unarchived"] = "Kontakt wurde aus dem Archiv geholt";
$a->strings["Drop contact"] = "Kontakt löschen";
$a->strings["Do you really want to delete this contact?"] = "Möchtest Du wirklich diesen Kontakt löschen?";
$a->strings["Contact has been removed."] = "Kontakt wurde entfernt.";
$a->strings["You are mutual friends with %s"] = "Du hast mit %s eine beidseitige Freundschaft";
$a->strings["You are sharing with %s"] = "Du teilst mit %s";
$a->strings["%s is sharing with you"] = "%s teilt mit Dir";
$a->strings["Private communications are not available for this contact."] = "Private Kommunikation ist für diesen Kontakt nicht verfügbar.";
$a->strings["Never"] = "Niemals";
$a->strings["(Update was successful)"] = "(Aktualisierung war erfolgreich)";
$a->strings["(Update was not successful)"] = "(Aktualisierung war nicht erfolgreich)";
$a->strings["Suggest friends"] = "Kontakte vorschlagen";
$a->strings["Network type: %s"] = "Netzwerktyp: %s";
$a->strings["Communications lost with this contact!"] = "Verbindungen mit diesem Kontakt verloren!";
$a->strings["Fetch further information for feeds"] = "Weitere Informationen zu Feeds holen";
$a->strings["Disabled"] = "Deaktiviert";
$a->strings["Fetch information"] = "Beziehe Information";
$a->strings["Fetch information and keywords"] = "Beziehe Information und Schlüsselworte";
$a->strings["Contact"] = "Kontakt";
$a->strings["Profile Visibility"] = "Profil-Sichtbarkeit";
$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bitte wähle eines Deiner Profile das angezeigt werden soll, wenn %s Dein Profil aufruft.";
$a->strings["Contact Information / Notes"] = "Kontakt Informationen / Notizen";
$a->strings["Edit contact notes"] = "Notizen zum Kontakt bearbeiten";
$a->strings["Block/Unblock contact"] = "Kontakt blockieren/freischalten";
$a->strings["Ignore contact"] = "Ignoriere den Kontakt";
$a->strings["Repair URL settings"] = "URL Einstellungen reparieren";
$a->strings["View conversations"] = "Unterhaltungen anzeigen";
$a->strings["Last update:"] = "Letzte Aktualisierung: ";
$a->strings["Update public posts"] = "Öffentliche Beiträge aktualisieren";
$a->strings["Update now"] = "Jetzt aktualisieren";
$a->strings["Unblock"] = "Entsperren";
$a->strings["Block"] = "Sperren";
$a->strings["Unignore"] = "Ignorieren aufheben";
$a->strings["Ignore"] = "Ignorieren";
$a->strings["Currently blocked"] = "Derzeit geblockt";
$a->strings["Currently ignored"] = "Derzeit ignoriert";
$a->strings["Currently archived"] = "Momentan archiviert";
$a->strings["Hide this contact from others"] = "Verbirg diesen Kontakt vor Anderen";
$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Antworten/Likes auf deine öffentlichen Beiträge <strong>könnten</strong> weiterhin sichtbar sein";
$a->strings["Notification for new posts"] = "Benachrichtigung bei neuen Beiträgen";
$a->strings["Send a notification of every new post of this contact"] = "Sende eine Benachrichtigung, wann immer dieser Kontakt einen neuen Beitrag schreibt.";
$a->strings["Blacklisted keywords"] = "Blacklistete Schlüsselworte ";
$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Komma-Separierte Liste mit Schlüsselworten, die nicht in Hashtags konvertiert werden, wenn \"Beziehe Information und Schlüsselworte\" aktiviert wurde";
$a->strings["Actions"] = "Aktionen";
$a->strings["Contact Settings"] = "Kontakteinstellungen";
$a->strings["Suggestions"] = "Kontaktvorschläge";
$a->strings["Suggest potential friends"] = "Kontakte vorschlagen";
$a->strings["Show all contacts"] = "Alle Kontakte anzeigen";
$a->strings["Unblocked"] = "Ungeblockt";
$a->strings["Only show unblocked contacts"] = "Nur nicht-blockierte Kontakte anzeigen";
$a->strings["Blocked"] = "Geblockt";
$a->strings["Only show blocked contacts"] = "Nur blockierte Kontakte anzeigen";
$a->strings["Ignored"] = "Ignoriert";
$a->strings["Only show ignored contacts"] = "Nur ignorierte Kontakte anzeigen";
$a->strings["Archived"] = "Archiviert";
$a->strings["Only show archived contacts"] = "Nur archivierte Kontakte anzeigen";
$a->strings["Hidden"] = "Verborgen";
$a->strings["Only show hidden contacts"] = "Nur verborgene Kontakte anzeigen";
$a->strings["Search your contacts"] = "Suche in deinen Kontakten";
$a->strings["Results for: %s"] = "Ergebnisse für: %s";
$a->strings["Archive"] = "Archivieren";
$a->strings["Unarchive"] = "Aus Archiv zurückholen";
$a->strings["Batch Actions"] = "Stapelverarbeitung";
$a->strings["View all contacts"] = "Alle Kontakte anzeigen";
$a->strings["View all common friends"] = "Alle Kontakte anzeigen";
$a->strings["Advanced Contact Settings"] = "Fortgeschrittene Kontakteinstellungen";
$a->strings["Mutual Friendship"] = "Beidseitige Freundschaft";
$a->strings["is a fan of yours"] = "ist ein Fan von dir";
$a->strings["you are a fan of"] = "Du bist Fan von";
$a->strings["Toggle Blocked status"] = "Geblockt-Status ein-/ausschalten";
$a->strings["Toggle Ignored status"] = "Ignoriert-Status ein-/ausschalten";
$a->strings["Toggle Archive status"] = "Archiviert-Status ein-/ausschalten";
$a->strings["Delete contact"] = "Lösche den Kontakt";
$a->strings["Profile not found."] = "Profil nicht gefunden.";
$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde.";
$a->strings["Response from remote site was not understood."] = "Antwort der Gegenstelle unverständlich.";
$a->strings["Unexpected response from remote site: "] = "Unerwartete Antwort der Gegenstelle: ";
$a->strings["Confirmation completed successfully."] = "Bestätigung erfolgreich abgeschlossen.";
$a->strings["Remote site reported: "] = "Gegenstelle meldet: ";
$a->strings["Temporary failure. Please wait and try again."] = "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal.";
$a->strings["Introduction failed or was revoked."] = "Kontaktanfrage schlug fehl oder wurde zurückgezogen.";
$a->strings["Unable to set contact photo."] = "Konnte das Bild des Kontakts nicht speichern.";
$a->strings["No user record found for '%s' "] = "Für '%s' wurde kein Nutzer gefunden";
$a->strings["Our site encryption key is apparently messed up."] = "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung.";
$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden.";
$a->strings["Contact record was not found for you on our site."] = "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden.";
$a->strings["Site public key not available in contact record for URL %s."] = "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server.";
$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Die ID, die uns Dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal.";
$a->strings["Unable to set your contact credentials on our system."] = "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden.";
$a->strings["Unable to update your contact profile details on our system"] = "Die Updates für Dein Profil konnten nicht gespeichert werden";
$a->strings["%1\$s has joined %2\$s"] = "%1\$s ist %2\$s beigetreten";
$a->strings["Item not found"] = "Beitrag nicht gefunden";
$a->strings["Edit post"] = "Beitrag bearbeiten";
$a->strings["Event can not end before it has started."] = "Die Veranstaltung kann nicht enden bevor sie beginnt.";
$a->strings["Event title and start time are required."] = "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden.";
$a->strings["Create New Event"] = "Neue Veranstaltung erstellen";
$a->strings["Event details"] = "Veranstaltungsdetails";
$a->strings["Starting date and Title are required."] = "Anfangszeitpunkt und Titel werden benötigt";
$a->strings["Event Starts:"] = "Veranstaltungsbeginn:";
$a->strings["Required"] = "Benötigt";
$a->strings["Finish date/time is not known or not relevant"] = "Enddatum/-zeit ist nicht bekannt oder nicht relevant";
$a->strings["Event Finishes:"] = "Veranstaltungsende:";
$a->strings["Adjust for viewer timezone"] = "An Zeitzone des Betrachters anpassen";
$a->strings["Description:"] = "Beschreibung";
$a->strings["Title:"] = "Titel:";
$a->strings["Share this event"] = "Veranstaltung teilen";
$a->strings["Files"] = "Dateien";
$a->strings["This is Friendica, version"] = "Dies ist Friendica, Version";
$a->strings["running at web location"] = "die unter folgender Webadresse zu finden ist";
$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Bitte besuche <a href=\"http://friendica.com\">Friendica.com</a>, um mehr über das Friendica Projekt zu erfahren.";
$a->strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche";
$a->strings["the bugtracker at github"] = "den Bugtracker auf github";
$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["Installed plugins/addons/apps:"] = "Installierte Plugins/Erweiterungen/Apps:";
$a->strings["No installed plugins/addons/apps"] = "Keine Plugins/Erweiterungen/Apps installiert";
$a->strings["Unable to locate original post."] = "Konnte den Originalbeitrag nicht finden.";
$a->strings["Empty post discarded."] = "Leerer Beitrag wurde verworfen.";
$a->strings["System error. Post not saved."] = "Systemfehler. Beitrag konnte nicht gespeichert werden.";
$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica.";
$a->strings["You may visit them online at %s"] = "Du kannst sie online unter %s besuchen";
$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Falls Du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem Du auf diese Nachricht antwortest.";
$a->strings["%s posted an update."] = "%s hat ein Update veröffentlicht.";
$a->strings["No recipient selected."] = "Kein Empfänger gewählt.";
$a->strings["Unable to locate contact information."] = "Konnte die Kontaktinformationen nicht finden.";
$a->strings["Message could not be sent."] = "Nachricht konnte nicht gesendet werden.";
$a->strings["Message collection failure."] = "Konnte Nachrichten nicht abrufen.";
$a->strings["Message sent."] = "Nachricht gesendet.";
$a->strings["Do you really want to delete this message?"] = "Möchtest Du wirklich diese Nachricht löschen?";
$a->strings["Message deleted."] = "Nachricht gelöscht.";
$a->strings["Conversation removed."] = "Unterhaltung gelöscht.";
$a->strings["Send Private Message"] = "Private Nachricht senden";
$a->strings["To:"] = "An:";
$a->strings["Subject:"] = "Betreff:";
$a->strings["No messages."] = "Keine Nachrichten.";
$a->strings["Message not available."] = "Nachricht nicht verfügbar.";
$a->strings["Delete message"] = "Nachricht löschen";
$a->strings["Delete conversation"] = "Unterhaltung löschen";
$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Sichere Kommunikation ist nicht verfügbar. <strong>Eventuell</strong> kannst Du auf der Profilseite des Absenders antworten.";
$a->strings["Send Reply"] = "Antwort senden";
$a->strings["Unknown sender - %s"] = "'Unbekannter Absender - %s";
$a->strings["You and %s"] = "Du und %s";
$a->strings["%s and You"] = "%s und Du";
$a->strings["D, d M Y - g:i A"] = "D, d. M Y - g:i A";
$a->strings["%d message"] = array(
0 => "%d Nachricht",
1 => "%d Nachrichten",
);
$a->strings["Not Extended"] = "Nicht erweitert.";
$a->strings["{0} wants to be your friend"] = "{0} möchte mit Dir in Kontakt treten";
$a->strings["{0} sent you a message"] = "{0} schickte Dir eine Nachricht";
$a->strings["{0} requested registration"] = "{0} möchte sich registrieren";
$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen.";
$a->strings["Unable to check your home location."] = "Konnte Deinen Heimatort nicht bestimmen.";
$a->strings["No recipient."] = "Kein Empfänger.";
$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Wenn Du möchtest, dass %s Dir antworten kann, überprüfe Deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern.";
$a->strings["Recent Photos"] = "Neueste Fotos";
$a->strings["Upload New Photos"] = "Neue Fotos hochladen";
$a->strings["Contact information unavailable"] = "Kontaktinformationen nicht verfügbar";
$a->strings["Album not found."] = "Album nicht gefunden.";
$a->strings["Delete Album"] = "Album löschen";
$a->strings["Do you really want to delete this photo album and all its photos?"] = "Möchtest Du wirklich dieses Foto-Album und all seine Foto löschen?";
$a->strings["Delete Photo"] = "Foto löschen";
$a->strings["Do you really want to delete this photo?"] = "Möchtest Du wirklich dieses Foto löschen?";
$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s wurde von %3\$s in %2\$s getaggt";
$a->strings["a photo"] = "einem Foto";
$a->strings["Image file is empty."] = "Bilddatei ist leer.";
$a->strings["No photos selected"] = "Keine Bilder ausgewählt";
$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers.";
$a->strings["Upload Photos"] = "Bilder hochladen";
$a->strings["New album name: "] = "Name des neuen Albums: ";
$a->strings["or existing album name: "] = "oder existierender Albumname: ";
$a->strings["Do not show a status post for this upload"] = "Keine Status-Mitteilung für diesen Beitrag anzeigen";
$a->strings["Private Photo"] = "Privates Foto";
$a->strings["Public Photo"] = "Öffentliches Foto";
$a->strings["Edit Album"] = "Album bearbeiten";
$a->strings["Show Newest First"] = "Zeige neueste zuerst";
$a->strings["Show Oldest First"] = "Zeige älteste zuerst";
$a->strings["View Photo"] = "Foto betrachten";
$a->strings["Permission denied. Access to this item may be restricted."] = "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein.";
$a->strings["Photo not available"] = "Foto nicht verfügbar";
$a->strings["View photo"] = "Fotos ansehen";
$a->strings["Edit photo"] = "Foto bearbeiten";
$a->strings["Use as profile photo"] = "Als Profilbild verwenden";
$a->strings["View Full Size"] = "Betrachte Originalgröße";
$a->strings["Tags: "] = "Tags: ";
$a->strings["[Remove any tag]"] = "[Tag entfernen]";
$a->strings["New album name"] = "Name des neuen Albums";
$a->strings["Caption"] = "Bildunterschrift";
$a->strings["Add a Tag"] = "Tag hinzufügen";
$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping";
$a->strings["Do not rotate"] = "Nicht rotieren";
$a->strings["Rotate CW (right)"] = "Drehen US (rechts)";
$a->strings["Rotate CCW (left)"] = "Drehen EUS (links)";
$a->strings["Private photo"] = "Privates Foto";
$a->strings["Public photo"] = "Öffentliches Foto";
$a->strings["Map"] = "Karte";
$a->strings["This introduction has already been accepted."] = "Diese Kontaktanfrage wurde bereits akzeptiert.";
$a->strings["Profile location is not valid or does not contain profile information."] = "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung.";
$a->strings["Warning: profile location has no identifiable owner name."] = "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden.";
$a->strings["Warning: profile location has no profile photo."] = "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse.";
$a->strings["%d required parameter was not found at the given location"] = array(
0 => "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden",
1 => "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden",
);
$a->strings["Introduction complete."] = "Kontaktanfrage abgeschlossen.";
$a->strings["Unrecoverable protocol error."] = "Nicht behebbarer Protokollfehler.";
$a->strings["Profile unavailable."] = "Profil nicht verfügbar.";
$a->strings["%s has received too many connection requests today."] = "%s hat heute zu viele Kontaktanfragen erhalten.";
$a->strings["Spam protection measures have been invoked."] = "Maßnahmen zum Spamschutz wurden ergriffen.";
$a->strings["Friends are advised to please try again in 24 hours."] = "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen.";
$a->strings["Invalid locator"] = "Ungültiger Locator";
$a->strings["Invalid email address."] = "Ungültige E-Mail-Adresse.";
$a->strings["This account has not been configured for email. Request failed."] = "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen.";
$a->strings["You have already introduced yourself here."] = "Du hast Dich hier bereits vorgestellt.";
$a->strings["Apparently you are already friends with %s."] = "Es scheint so, als ob Du bereits mit %s in Kontakt stehst.";
$a->strings["Invalid profile URL."] = "Ungültige Profil-URL.";
$a->strings["Your introduction has been sent."] = "Deine Kontaktanfrage wurde gesendet.";
$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "Entferntes abon­nie­ren kann für dein Netzwerk nicht durchgeführt werden. Bitte nutze direkt die Abonnieren-Funktion deines Systems. ";
$a->strings["Please login to confirm introduction."] = "Bitte melde Dich an, um die Kontaktanfrage zu bestätigen.";
$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Momentan bist Du mit einer anderen Identität angemeldet. Bitte melde Dich mit <strong>diesem</strong> Profil an.";
$a->strings["Confirm"] = "Bestätigen";
$a->strings["Hide this contact"] = "Verberge diesen Kontakt";
$a->strings["Welcome home %s."] = "Willkommen zurück %s.";
$a->strings["Please confirm your introduction/connection request to %s."] = "Bitte bestätige Deine Kontaktanfrage bei %s.";
$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Bitte gib die Adresse Deines Profils in einem der unterstützten sozialen Netzwerke an:";
$a->strings["If you are not yet a member of the free social web, <a href=\"%s/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, <a href=\"%s/siteinfo\">folge diesem Link</a> um einen öffentlichen Friendica-Server zu finden und beizutreten.";
$a->strings["Friend/Connection Request"] = "Kontaktanfrage";
$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web";
$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in Deiner Diaspora Suchleiste.";
$a->strings["Friendica Communications Server - Setup"] = "Friendica-Server für soziale Netzwerke Setup";
$a->strings["Could not connect to database."] = "Verbindung zur Datenbank gescheitert.";
$a->strings["Could not create table."] = "Tabelle konnte nicht angelegt werden.";
$a->strings["Your Friendica site database has been installed."] = "Die Datenbank Deiner Friendicaseite wurde installiert.";
$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Möglicherweise musst Du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren.";
$a->strings["Please see the file \"INSTALL.txt\"."] = "Lies bitte die \"INSTALL.txt\".";
$a->strings["Database already in use."] = "Die Datenbank wird bereits verwendet.";
$a->strings["System check"] = "Systemtest";
$a->strings["Check again"] = "Noch einmal testen";
$a->strings["Database connection"] = "Datenbankverbindung";
$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Um Friendica installieren zu können, müssen wir wissen, wie wir mit Deiner Datenbank Kontakt aufnehmen können.";
$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls Du Fragen zu diesen Einstellungen haben solltest.";
$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Die Datenbank, die Du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte bevor Du mit der Installation fortfährst.";
$a->strings["Database Server Name"] = "Datenbank-Server";
$a->strings["Database Login Name"] = "Datenbank-Nutzer";
$a->strings["Database Login Password"] = "Datenbank-Passwort";
$a->strings["For security reasons the password must not be empty"] = "Aus Sicherheitsgründen darf das Passwort nicht leer sein.";
$a->strings["Database Name"] = "Datenbank-Name";
$a->strings["Site administrator email address"] = "E-Mail-Adresse des Administrators";
$a->strings["Your account email address must match this in order to use the web admin panel."] = "Die E-Mail-Adresse, die in Deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit Du das Admin-Panel benutzen kannst.";
$a->strings["Please select a default timezone for your website"] = "Bitte wähle die Standardzeitzone Deiner Webseite";
$a->strings["Site settings"] = "Server-Einstellungen";
$a->strings["System Language:"] = "Systemsprache:";
$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "Wähle die Standardsprache für deine Friendica-Installations-Oberfläche und den E-Mail-Versand";
$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden.";
$a->strings["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. See <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'Setup the poller'</a>"] = "Wenn Du keine Kommandozeilen-Version von PHP auf Deinem Server installiert hast, kannst Du keine Hintergrundprozesse via cron starten. Siehe <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'Setup the poller'</a>";
$a->strings["PHP executable path"] = "Pfad zu PHP";
$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren.";
$a->strings["Command line PHP"] = "Kommandozeilen-PHP";
$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "Die ausführbare Datei von PHP stimmt nicht mit der PHP cli Version überein (es könnte sich um die cgi-fgci Version handeln)";
$a->strings["Found PHP version: "] = "Gefundene PHP Version:";
$a->strings["PHP cli binary"] = "PHP CLI Binary";
$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Die Kommandozeilenversion von PHP auf Deinem System hat \"register_argc_argv\" nicht aktiviert.";
$a->strings["This is required for message delivery to work."] = "Dies wird für die Auslieferung von Nachrichten benötigt.";
$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Fehler: Die Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen";
$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Wenn der Server unter Windows läuft, schau Dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an.";
$a->strings["Generate encryption keys"] = "Schlüssel erzeugen";
$a->strings["libCurl PHP module"] = "PHP: libCurl-Modul";
$a->strings["GD graphics PHP module"] = "PHP: GD-Grafikmodul";
$a->strings["OpenSSL PHP module"] = "PHP: OpenSSL-Modul";
$a->strings["mysqli PHP module"] = "PHP: mysqli-Modul";
$a->strings["mb_string PHP module"] = "PHP: mb_string-Modul";
$a->strings["mcrypt PHP module"] = "PHP mcrypt Modul";
$a->strings["XML PHP module"] = "XML PHP Modul";
$a->strings["iconv module"] = "iconv module";
$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module";
$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert.";
$a->strings["Error: libCURL PHP module required but not installed."] = "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert.";
$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert.";
$a->strings["Error: openssl PHP module required but not installed."] = "Fehler: Das openssl-Modul von PHP ist nicht installiert.";
$a->strings["Error: mysqli PHP module required but not installed."] = "Fehler: Das mysqli-Modul von PHP ist nicht installiert.";
$a->strings["Error: mb_string PHP module required but not installed."] = "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert.";
$a->strings["Error: mcrypt PHP module required but not installed."] = "Fehler: Das mcrypt Modul von PHP ist nicht installiert";
$a->strings["Error: iconv PHP module required but not installed."] = "Fehler: Das iconv-Modul von PHP ist nicht installiert.";
$a->strings["If you are using php_cli, please make sure that mcrypt module is enabled in its config file"] = "Wenn du das Modul \"php_cli\" benutzt dann versichere dich, daß das mcrypt Modul in seiner Konfigurationsdatei aktiviert ist. ";
$a->strings["Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 encryption layer."] = "Die Funktion mcrypt_create_iv() ist nicht festgelegt. Dies ist notwendig um den RINO2-Encryption-Layer zu aktivieren.";
$a->strings["mcrypt_create_iv() function"] = "mcrypt_create_iv() function";
$a->strings["Error, XML PHP module required but not installed."] = "Fehler: XML PHP Modul erforderlich aber nicht installiert.";
$a->strings["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."] = "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis Deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun.";
$a->strings["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."] = "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn Du sie hast.";
$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "Nachdem Du alles ausgefüllt hast, erhältst Du einen Text, den Du in eine Datei namens .htconfig.php in Deinem Friendica-Wurzelverzeichnis kopieren musst.";
$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Alternativ kannst Du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest Du in der Datei INSTALL.txt.";
$a->strings[".htconfig.php is writable"] = "Schreibrechte auf .htconfig.php";
$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica nutzt die Smarty3 Template Engine um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP um das Rendern zu beschleunigen.";
$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica.";
$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Bitte stelle sicher, dass der Nutzer unter dem der Webserver läuft (z.B. www-data) Schreibrechte zu diesem Verzeichnis hat.";
$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Hinweis: aus Sicherheitsgründen solltest Du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht den Templatedateien (.tpl) die sie enthalten.";
$a->strings["view/smarty3 is writable"] = "view/smarty3 ist schreibbar";
$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers.";
$a->strings["Url rewrite is working"] = "URL rewrite funktioniert";
$a->strings["ImageMagick PHP extension is not installed"] = "ImageMagicx PHP Erweiterung ist nicht installiert.";
$a->strings["ImageMagick PHP extension is installed"] = "ImageMagick PHP Erweiterung ist installiert";
$a->strings["ImageMagick supports GIF"] = "ImageMagick unterstützt GIF";
$a->strings["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."] = "Die Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis Deiner Friendica-Installation zu erzeugen.";
$a->strings["<h1>What next</h1>"] = "<h1>Wie geht es weiter?</h1>";
$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten.";
$a->strings["Profile deleted."] = "Profil gelöscht.";
$a->strings["Profile-"] = "Profil-";
$a->strings["New profile created."] = "Neues Profil angelegt.";
$a->strings["Profile unavailable to clone."] = "Profil nicht zum Duplizieren verfügbar.";
$a->strings["Profile Name is required."] = "Profilname ist erforderlich.";
$a->strings["Marital Status"] = "Familienstand";
$a->strings["Romantic Partner"] = "Romanze";
$a->strings["Work/Employment"] = "Arbeit / Beschäftigung";
$a->strings["Religion"] = "Religion";
$a->strings["Political Views"] = "Politische Ansichten";
$a->strings["Gender"] = "Geschlecht";
$a->strings["Sexual Preference"] = "Sexuelle Vorlieben";
$a->strings["XMPP"] = "XMPP";
$a->strings["Homepage"] = "Webseite";
$a->strings["Interests"] = "Interessen";
$a->strings["Address"] = "Adresse";
$a->strings["Location"] = "Wohnort";
$a->strings["Profile updated."] = "Profil aktualisiert.";
$a->strings[" and "] = " und ";
$a->strings["public profile"] = "öffentliches Profil";
$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s hat %2\$s geändert auf &ldquo;%3\$s&rdquo;";
$a->strings[" - Visit %1\$s's %2\$s"] = " %1\$ss %2\$s besuchen";
$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s hat folgendes aktualisiert %2\$s, verändert wurde %3\$s.";
$a->strings["Hide contacts and friends:"] = "Kontakte und Freunde verbergen";
$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Liste der Kontakte vor Betrachtern dieses Profils verbergen?";
$a->strings["Show more profile fields:"] = "Zeige mehr Profil-Felder:";
$a->strings["Profile Actions"] = "Profilaktionen";
$a->strings["Edit Profile Details"] = "Profil bearbeiten";
$a->strings["Change Profile Photo"] = "Profilbild ändern";
$a->strings["View this profile"] = "Dieses Profil anzeigen";
$a->strings["Create a new profile using these settings"] = "Neues Profil anlegen und diese Einstellungen verwenden";
$a->strings["Clone this profile"] = "Dieses Profil duplizieren";
$a->strings["Delete this profile"] = "Dieses Profil löschen";
$a->strings["Basic information"] = "Grundinformationen";
$a->strings["Profile picture"] = "Profilbild";
$a->strings["Preferences"] = "Vorlieben";
$a->strings["Status information"] = "Status Informationen";
$a->strings["Additional information"] = "Zusätzliche Informationen";
$a->strings["Relation"] = "Beziehung";
$a->strings["Your Gender:"] = "Dein Geschlecht:";
$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Beziehungsstatus:";
$a->strings["Example: fishing photography software"] = "Beispiel: Fischen Fotografie Software";
$a->strings["Profile Name:"] = "Profilname:";
$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Dies ist Dein <strong>öffentliches</strong> Profil.<br />Es <strong>könnte</strong> für jeden Nutzer des Internets sichtbar sein.";
$a->strings["Your Full Name:"] = "Dein kompletter Name:";
$a->strings["Title/Description:"] = "Titel/Beschreibung:";
$a->strings["Street Address:"] = "Adresse:";
$a->strings["Locality/City:"] = "Wohnort:";
$a->strings["Region/State:"] = "Region/Bundesstaat:";
$a->strings["Postal/Zip Code:"] = "Postleitzahl:";
$a->strings["Country:"] = "Land:";
$a->strings["Who: (if applicable)"] = "Wer: (falls anwendbar)";
$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Beispiele: cathy123, Cathy Williams, cathy@example.com";
$a->strings["Since [date]:"] = "Seit [Datum]:";
$a->strings["Tell us about yourself..."] = "Erzähle uns ein bisschen von Dir …";
$a->strings["XMPP (Jabber) address:"] = "XMPP (Jabber) Adresse";
$a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = "Die XMPP Adresse wird an deine Kontakte verteilt werden, so dass sie auch über XMPP mit dir in Kontakt treten können.";
$a->strings["Homepage URL:"] = "Adresse der Homepage:";
$a->strings["Religious Views:"] = "Religiöse Ansichten:";
$a->strings["Public Keywords:"] = "Öffentliche Schlüsselwörter:";
$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Wird verwendet, um potentielle Kontakte zu finden, kann von Kontakten eingesehen werden)";
$a->strings["Private Keywords:"] = "Private Schlüsselwörter:";
$a->strings["(Used for searching profiles, never shown to others)"] = "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)";
$a->strings["Musical interests"] = "Musikalische Interessen";
$a->strings["Books, literature"] = "Bücher, Literatur";
$a->strings["Television"] = "Fernsehen";
$a->strings["Film/dance/culture/entertainment"] = "Filme/Tänze/Kultur/Unterhaltung";
$a->strings["Hobbies/Interests"] = "Hobbies/Interessen";
$a->strings["Love/romance"] = "Liebe/Romantik";
$a->strings["Work/employment"] = "Arbeit/Anstellung";
$a->strings["School/education"] = "Schule/Ausbildung";
$a->strings["Contact information and Social Networks"] = "Kontaktinformationen und Soziale Netzwerke";
$a->strings["Edit/Manage Profiles"] = "Bearbeite/Verwalte Profile";
$a->strings["Item has been removed."] = "Eintrag wurde entfernt.";
$a->strings["Theme settings updated."] = "Themeneinstellungen aktualisiert.";
$a->strings["Site"] = "Seite";
$a->strings["Users"] = "Nutzer";
@ -1495,9 +1696,7 @@ $a->strings["Site settings updated."] = "Seiteneinstellungen aktualisiert.";
$a->strings["No community page"] = "Keine Gemeinschaftsseite";
$a->strings["Public postings from users of this site"] = "Öffentliche Beiträge von Nutzer_innen dieser Seite";
$a->strings["Global community page"] = "Globale Gemeinschaftsseite";
$a->strings["Never"] = "Niemals";
$a->strings["At post arrival"] = "Beim Empfang von Nachrichten";
$a->strings["Disabled"] = "Deaktiviert";
$a->strings["Users, Global Contacts"] = "Nutzer, globale Kontakte";
$a->strings["Users, Global Contacts/fallback"] = "Nutzer, globale Kontakte / Fallback";
$a->strings["One month"] = "ein Monat";
@ -1708,9 +1907,8 @@ $a->strings["User waiting for permanent deletion"] = "Nutzer wartet auf permanen
$a->strings["Request date"] = "Anfragedatum";
$a->strings["No registrations."] = "Keine Neuanmeldungen.";
$a->strings["Note from the user"] = "Hinweis vom Nutzer";
$a->strings["Approve"] = "Genehmigen";
$a->strings["Deny"] = "Verwehren";
$a->strings["Block"] = "Sperren";
$a->strings["Unblock"] = "Entsperren";
$a->strings["Site admin"] = "Seitenadministrator";
$a->strings["Account expired"] = "Account ist abgelaufen";
$a->strings["New User"] = "Neuer Nutzer";
@ -1748,229 +1946,8 @@ $a->strings["PHP logging"] = "PHP Protokollieren";
$a->strings["To enable logging of PHP errors and warnings you can add the following to the .htconfig.php file of your installation. The filename set in the 'error_log' line is relative to the friendica top-level directory and must be writeable by the web server. The option '1' for 'log_errors' and 'display_errors' is to enable these options, set to '0' to disable them."] = "Um PHP Warnungen und Fehler zu protokollieren, kannst du die folgenden Zeilen zur .htconfig.php Datei deiner Installation hinzufügen. Den Dateinamen der Log-Datei legst du in der Zeile mit dem 'error_log' fest, Er ist relativ zum Friendica-Stammverzeichnis und muss schreibbar durch den Webserver sein. Eine \"1\" als Option für die Punkte 'log_errors' und 'display_errors' aktiviert die Funktionen zum Protokollieren bzw. Anzeigen der Fehler, eine \"0\" deaktiviert sie.";
$a->strings["Lock feature %s"] = "Feature festlegen: %s";
$a->strings["Manage Additional Features"] = "Zusätzliche Features Verwalten";
$a->strings["%d contact edited."] = array(
0 => "%d Kontakt bearbeitet.",
1 => "%d Kontakte bearbeitet.",
);
$a->strings["Could not access contact record."] = "Konnte nicht auf die Kontaktdaten zugreifen.";
$a->strings["Could not locate selected profile."] = "Konnte das ausgewählte Profil nicht finden.";
$a->strings["Contact updated."] = "Kontakt aktualisiert.";
$a->strings["Failed to update contact record."] = "Aktualisierung der Kontaktdaten fehlgeschlagen.";
$a->strings["Contact has been blocked"] = "Kontakt wurde blockiert";
$a->strings["Contact has been unblocked"] = "Kontakt wurde wieder freigegeben";
$a->strings["Contact has been ignored"] = "Kontakt wurde ignoriert";
$a->strings["Contact has been unignored"] = "Kontakt wird nicht mehr ignoriert";
$a->strings["Contact has been archived"] = "Kontakt wurde archiviert";
$a->strings["Contact has been unarchived"] = "Kontakt wurde aus dem Archiv geholt";
$a->strings["Drop contact"] = "Kontakt löschen";
$a->strings["Do you really want to delete this contact?"] = "Möchtest Du wirklich diesen Kontakt löschen?";
$a->strings["Contact has been removed."] = "Kontakt wurde entfernt.";
$a->strings["You are mutual friends with %s"] = "Du hast mit %s eine beidseitige Freundschaft";
$a->strings["You are sharing with %s"] = "Du teilst mit %s";
$a->strings["%s is sharing with you"] = "%s teilt mit Dir";
$a->strings["Private communications are not available for this contact."] = "Private Kommunikation ist für diesen Kontakt nicht verfügbar.";
$a->strings["(Update was successful)"] = "(Aktualisierung war erfolgreich)";
$a->strings["(Update was not successful)"] = "(Aktualisierung war nicht erfolgreich)";
$a->strings["Suggest friends"] = "Kontakte vorschlagen";
$a->strings["Network type: %s"] = "Netzwerktyp: %s";
$a->strings["Communications lost with this contact!"] = "Verbindungen mit diesem Kontakt verloren!";
$a->strings["Fetch further information for feeds"] = "Weitere Informationen zu Feeds holen";
$a->strings["Fetch information"] = "Beziehe Information";
$a->strings["Fetch information and keywords"] = "Beziehe Information und Schlüsselworte";
$a->strings["Contact"] = "Kontakt";
$a->strings["Profile Visibility"] = "Profil-Sichtbarkeit";
$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bitte wähle eines Deiner Profile das angezeigt werden soll, wenn %s Dein Profil aufruft.";
$a->strings["Contact Information / Notes"] = "Kontakt Informationen / Notizen";
$a->strings["Edit contact notes"] = "Notizen zum Kontakt bearbeiten";
$a->strings["Block/Unblock contact"] = "Kontakt blockieren/freischalten";
$a->strings["Ignore contact"] = "Ignoriere den Kontakt";
$a->strings["Repair URL settings"] = "URL Einstellungen reparieren";
$a->strings["View conversations"] = "Unterhaltungen anzeigen";
$a->strings["Last update:"] = "Letzte Aktualisierung: ";
$a->strings["Update public posts"] = "Öffentliche Beiträge aktualisieren";
$a->strings["Update now"] = "Jetzt aktualisieren";
$a->strings["Unignore"] = "Ignorieren aufheben";
$a->strings["Currently blocked"] = "Derzeit geblockt";
$a->strings["Currently ignored"] = "Derzeit ignoriert";
$a->strings["Currently archived"] = "Momentan archiviert";
$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Antworten/Likes auf deine öffentlichen Beiträge <strong>könnten</strong> weiterhin sichtbar sein";
$a->strings["Notification for new posts"] = "Benachrichtigung bei neuen Beiträgen";
$a->strings["Send a notification of every new post of this contact"] = "Sende eine Benachrichtigung, wann immer dieser Kontakt einen neuen Beitrag schreibt.";
$a->strings["Blacklisted keywords"] = "Blacklistete Schlüsselworte ";
$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Komma-Separierte Liste mit Schlüsselworten, die nicht in Hashtags konvertiert werden, wenn \"Beziehe Information und Schlüsselworte\" aktiviert wurde";
$a->strings["Actions"] = "Aktionen";
$a->strings["Contact Settings"] = "Kontakteinstellungen";
$a->strings["Suggestions"] = "Kontaktvorschläge";
$a->strings["Suggest potential friends"] = "Kontakte vorschlagen";
$a->strings["Show all contacts"] = "Alle Kontakte anzeigen";
$a->strings["Unblocked"] = "Ungeblockt";
$a->strings["Only show unblocked contacts"] = "Nur nicht-blockierte Kontakte anzeigen";
$a->strings["Blocked"] = "Geblockt";
$a->strings["Only show blocked contacts"] = "Nur blockierte Kontakte anzeigen";
$a->strings["Ignored"] = "Ignoriert";
$a->strings["Only show ignored contacts"] = "Nur ignorierte Kontakte anzeigen";
$a->strings["Archived"] = "Archiviert";
$a->strings["Only show archived contacts"] = "Nur archivierte Kontakte anzeigen";
$a->strings["Hidden"] = "Verborgen";
$a->strings["Only show hidden contacts"] = "Nur verborgene Kontakte anzeigen";
$a->strings["Search your contacts"] = "Suche in deinen Kontakten";
$a->strings["Archive"] = "Archivieren";
$a->strings["Unarchive"] = "Aus Archiv zurückholen";
$a->strings["Batch Actions"] = "Stapelverarbeitung";
$a->strings["View all contacts"] = "Alle Kontakte anzeigen";
$a->strings["View all common friends"] = "Alle Kontakte anzeigen";
$a->strings["Advanced Contact Settings"] = "Fortgeschrittene Kontakteinstellungen";
$a->strings["Mutual Friendship"] = "Beidseitige Freundschaft";
$a->strings["is a fan of yours"] = "ist ein Fan von dir";
$a->strings["you are a fan of"] = "Du bist Fan von";
$a->strings["Toggle Blocked status"] = "Geblockt-Status ein-/ausschalten";
$a->strings["Toggle Ignored status"] = "Ignoriert-Status ein-/ausschalten";
$a->strings["Toggle Archive status"] = "Archiviert-Status ein-/ausschalten";
$a->strings["Delete contact"] = "Lösche den Kontakt";
$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde.";
$a->strings["Response from remote site was not understood."] = "Antwort der Gegenstelle unverständlich.";
$a->strings["Unexpected response from remote site: "] = "Unerwartete Antwort der Gegenstelle: ";
$a->strings["Confirmation completed successfully."] = "Bestätigung erfolgreich abgeschlossen.";
$a->strings["Remote site reported: "] = "Gegenstelle meldet: ";
$a->strings["Temporary failure. Please wait and try again."] = "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal.";
$a->strings["Introduction failed or was revoked."] = "Kontaktanfrage schlug fehl oder wurde zurückgezogen.";
$a->strings["Unable to set contact photo."] = "Konnte das Bild des Kontakts nicht speichern.";
$a->strings["No user record found for '%s' "] = "Für '%s' wurde kein Nutzer gefunden";
$a->strings["Our site encryption key is apparently messed up."] = "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung.";
$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden.";
$a->strings["Contact record was not found for you on our site."] = "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden.";
$a->strings["Site public key not available in contact record for URL %s."] = "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server.";
$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Die ID, die uns Dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal.";
$a->strings["Unable to set your contact credentials on our system."] = "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden.";
$a->strings["Unable to update your contact profile details on our system"] = "Die Updates für Dein Profil konnten nicht gespeichert werden";
$a->strings["%1\$s has joined %2\$s"] = "%1\$s ist %2\$s beigetreten";
$a->strings["This introduction has already been accepted."] = "Diese Kontaktanfrage wurde bereits akzeptiert.";
$a->strings["Profile location is not valid or does not contain profile information."] = "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung.";
$a->strings["Warning: profile location has no identifiable owner name."] = "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden.";
$a->strings["Warning: profile location has no profile photo."] = "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse.";
$a->strings["%d required parameter was not found at the given location"] = array(
0 => "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden",
1 => "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden",
);
$a->strings["Introduction complete."] = "Kontaktanfrage abgeschlossen.";
$a->strings["Unrecoverable protocol error."] = "Nicht behebbarer Protokollfehler.";
$a->strings["Profile unavailable."] = "Profil nicht verfügbar.";
$a->strings["%s has received too many connection requests today."] = "%s hat heute zu viele Kontaktanfragen erhalten.";
$a->strings["Spam protection measures have been invoked."] = "Maßnahmen zum Spamschutz wurden ergriffen.";
$a->strings["Friends are advised to please try again in 24 hours."] = "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen.";
$a->strings["Invalid locator"] = "Ungültiger Locator";
$a->strings["Invalid email address."] = "Ungültige E-Mail-Adresse.";
$a->strings["This account has not been configured for email. Request failed."] = "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen.";
$a->strings["You have already introduced yourself here."] = "Du hast Dich hier bereits vorgestellt.";
$a->strings["Apparently you are already friends with %s."] = "Es scheint so, als ob Du bereits mit %s in Kontakt stehst.";
$a->strings["Invalid profile URL."] = "Ungültige Profil-URL.";
$a->strings["Your introduction has been sent."] = "Deine Kontaktanfrage wurde gesendet.";
$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "Entferntes abon­nie­ren kann für dein Netzwerk nicht durchgeführt werden. Bitte nutze direkt die Abonnieren-Funktion deines Systems. ";
$a->strings["Please login to confirm introduction."] = "Bitte melde Dich an, um die Kontaktanfrage zu bestätigen.";
$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Momentan bist Du mit einer anderen Identität angemeldet. Bitte melde Dich mit <strong>diesem</strong> Profil an.";
$a->strings["Confirm"] = "Bestätigen";
$a->strings["Hide this contact"] = "Verberge diesen Kontakt";
$a->strings["Welcome home %s."] = "Willkommen zurück %s.";
$a->strings["Please confirm your introduction/connection request to %s."] = "Bitte bestätige Deine Kontaktanfrage bei %s.";
$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Bitte gib die Adresse Deines Profils in einem der unterstützten sozialen Netzwerke an:";
$a->strings["If you are not yet a member of the free social web, <a href=\"%s/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, <a href=\"%s/siteinfo\">folge diesem Link</a> um einen öffentlichen Friendica-Server zu finden und beizutreten.";
$a->strings["Friend/Connection Request"] = "Kontaktanfrage";
$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
$a->strings["Please answer the following:"] = "Bitte beantworte folgendes:";
$a->strings["Does %s know you?"] = "Kennt %s Dich?";
$a->strings["Add a personal note:"] = "Eine persönliche Notiz beifügen:";
$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web";
$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in Deiner Diaspora Suchleiste.";
$a->strings["Your Identity Address:"] = "Adresse Deines Profils:";
$a->strings["Submit Request"] = "Anfrage abschicken";
$a->strings["You already added this contact."] = "Du hast den Kontakt bereits hinzugefügt.";
$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "Diaspora Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden.";
$a->strings["OStatus support is disabled. Contact can't be added."] = "OStatus Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden.";
$a->strings["The network type couldn't be detected. Contact can't be added."] = "Der Netzwerktype wurde nicht erkannt. Der Kontakt kann nicht hinzugefügt werden.";
$a->strings["Contact added"] = "Kontakt hinzugefügt";
$a->strings["Friendica Communications Server - Setup"] = "Friendica-Server für soziale Netzwerke Setup";
$a->strings["Could not connect to database."] = "Verbindung zur Datenbank gescheitert.";
$a->strings["Could not create table."] = "Tabelle konnte nicht angelegt werden.";
$a->strings["Your Friendica site database has been installed."] = "Die Datenbank Deiner Friendicaseite wurde installiert.";
$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Möglicherweise musst Du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren.";
$a->strings["Please see the file \"INSTALL.txt\"."] = "Lies bitte die \"INSTALL.txt\".";
$a->strings["Database already in use."] = "Die Datenbank wird bereits verwendet.";
$a->strings["System check"] = "Systemtest";
$a->strings["Check again"] = "Noch einmal testen";
$a->strings["Database connection"] = "Datenbankverbindung";
$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Um Friendica installieren zu können, müssen wir wissen, wie wir mit Deiner Datenbank Kontakt aufnehmen können.";
$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls Du Fragen zu diesen Einstellungen haben solltest.";
$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Die Datenbank, die Du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte bevor Du mit der Installation fortfährst.";
$a->strings["Database Server Name"] = "Datenbank-Server";
$a->strings["Database Login Name"] = "Datenbank-Nutzer";
$a->strings["Database Login Password"] = "Datenbank-Passwort";
$a->strings["Database Name"] = "Datenbank-Name";
$a->strings["Site administrator email address"] = "E-Mail-Adresse des Administrators";
$a->strings["Your account email address must match this in order to use the web admin panel."] = "Die E-Mail-Adresse, die in Deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit Du das Admin-Panel benutzen kannst.";
$a->strings["Please select a default timezone for your website"] = "Bitte wähle die Standardzeitzone Deiner Webseite";
$a->strings["Site settings"] = "Server-Einstellungen";
$a->strings["System Language:"] = "Systemsprache:";
$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "Wähle die Standardsprache für deine Friendica-Installations-Oberfläche und den E-Mail-Versand";
$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden.";
$a->strings["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. See <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'Setup the poller'</a>"] = "Wenn Du keine Kommandozeilen-Version von PHP auf Deinem Server installiert hast, kannst Du keine Hintergrundprozesse via cron starten. Siehe <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'Setup the poller'</a>";
$a->strings["PHP executable path"] = "Pfad zu PHP";
$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren.";
$a->strings["Command line PHP"] = "Kommandozeilen-PHP";
$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "Die ausführbare Datei von PHP stimmt nicht mit der PHP cli Version überein (es könnte sich um die cgi-fgci Version handeln)";
$a->strings["Found PHP version: "] = "Gefundene PHP Version:";
$a->strings["PHP cli binary"] = "PHP CLI Binary";
$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Die Kommandozeilenversion von PHP auf Deinem System hat \"register_argc_argv\" nicht aktiviert.";
$a->strings["This is required for message delivery to work."] = "Dies wird für die Auslieferung von Nachrichten benötigt.";
$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Fehler: Die Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen";
$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Wenn der Server unter Windows läuft, schau Dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an.";
$a->strings["Generate encryption keys"] = "Schlüssel erzeugen";
$a->strings["libCurl PHP module"] = "PHP: libCurl-Modul";
$a->strings["GD graphics PHP module"] = "PHP: GD-Grafikmodul";
$a->strings["OpenSSL PHP module"] = "PHP: OpenSSL-Modul";
$a->strings["mysqli PHP module"] = "PHP: mysqli-Modul";
$a->strings["mb_string PHP module"] = "PHP: mb_string-Modul";
$a->strings["mcrypt PHP module"] = "PHP mcrypt Modul";
$a->strings["XML PHP module"] = "XML PHP Modul";
$a->strings["iconv module"] = "iconv module";
$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module";
$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert.";
$a->strings["Error: libCURL PHP module required but not installed."] = "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert.";
$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert.";
$a->strings["Error: openssl PHP module required but not installed."] = "Fehler: Das openssl-Modul von PHP ist nicht installiert.";
$a->strings["Error: mysqli PHP module required but not installed."] = "Fehler: Das mysqli-Modul von PHP ist nicht installiert.";
$a->strings["Error: mb_string PHP module required but not installed."] = "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert.";
$a->strings["Error: mcrypt PHP module required but not installed."] = "Fehler: Das mcrypt Modul von PHP ist nicht installiert";
$a->strings["Error: iconv PHP module required but not installed."] = "Fehler: Das iconv-Modul von PHP ist nicht installiert.";
$a->strings["If you are using php_cli, please make sure that mcrypt module is enabled in its config file"] = "Wenn du das Modul \"php_cli\" benutzt dann versichere dich, daß das mcrypt Modul in seiner Konfigurationsdatei aktiviert ist. ";
$a->strings["Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 encryption layer."] = "Die Funktion mcrypt_create_iv() ist nicht festgelegt. Dies ist notwendig um den RINO2-Encryption-Layer zu aktivieren.";
$a->strings["mcrypt_create_iv() function"] = "mcrypt_create_iv() function";
$a->strings["Error, XML PHP module required but not installed."] = "Fehler: XML PHP Modul erforderlich aber nicht installiert.";
$a->strings["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."] = "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis Deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun.";
$a->strings["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."] = "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn Du sie hast.";
$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "Nachdem Du alles ausgefüllt hast, erhältst Du einen Text, den Du in eine Datei namens .htconfig.php in Deinem Friendica-Wurzelverzeichnis kopieren musst.";
$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Alternativ kannst Du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest Du in der Datei INSTALL.txt.";
$a->strings[".htconfig.php is writable"] = "Schreibrechte auf .htconfig.php";
$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica nutzt die Smarty3 Template Engine um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP um das Rendern zu beschleunigen.";
$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica.";
$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Bitte stelle sicher, dass der Nutzer unter dem der Webserver läuft (z.B. www-data) Schreibrechte zu diesem Verzeichnis hat.";
$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Hinweis: aus Sicherheitsgründen solltest Du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht den Templatedateien (.tpl) die sie enthalten.";
$a->strings["view/smarty3 is writable"] = "view/smarty3 ist schreibbar";
$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers.";
$a->strings["Url rewrite is working"] = "URL rewrite funktioniert";
$a->strings["ImageMagick PHP extension is not installed"] = "ImageMagicx PHP Erweiterung ist nicht installiert.";
$a->strings["ImageMagick PHP extension is installed"] = "ImageMagick PHP Erweiterung ist installiert";
$a->strings["ImageMagick supports GIF"] = "ImageMagick unterstützt GIF";
$a->strings["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."] = "Die Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis Deiner Friendica-Installation zu erzeugen.";
$a->strings["<h1>What next</h1>"] = "<h1>Wie geht es weiter?</h1>";
$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten.";
$a->strings["Unable to locate original post."] = "Konnte den Originalbeitrag nicht finden.";
$a->strings["Empty post discarded."] = "Leerer Beitrag wurde verworfen.";
$a->strings["System error. Post not saved."] = "Systemfehler. Beitrag konnte nicht gespeichert werden.";
$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica.";
$a->strings["You may visit them online at %s"] = "Du kannst sie online unter %s besuchen";
$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Falls Du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem Du auf diese Nachricht antwortest.";
$a->strings["%s posted an update."] = "%s hat ein Update veröffentlicht.";
$a->strings["No contacts."] = "Keine Kontakte.";
$a->strings["Remove term"] = "Begriff entfernen";
$a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = array(
0 => "Warnung: Diese Gruppe beinhaltet %s Person aus einem Netzwerk das keine nicht öffentlichen Beiträge empfangen kann.",
1 => "Warnung: Diese Gruppe beinhaltet %s Personen aus Netzwerken die keine nicht-öffentlichen Beiträge empfangen können.",
@ -1989,11 +1966,73 @@ $a->strings["Shared Links"] = "Geteilte Links";
$a->strings["Interesting Links"] = "Interessante Links";
$a->strings["Starred"] = "Markierte";
$a->strings["Favourite Posts"] = "Favorisierte Beiträge";
$a->strings["{0} wants to be your friend"] = "{0} möchte mit Dir in Kontakt treten";
$a->strings["{0} sent you a message"] = "{0} schickte Dir eine Nachricht";
$a->strings["{0} requested registration"] = "{0} möchte sich registrieren";
$a->strings["No contacts."] = "Keine Kontakte.";
$a->strings["Only logged in users are permitted to perform a search."] = "Nur eingeloggten Benutzern ist das Suchen gestattet.";
$a->strings["Too Many Requests"] = "Zu viele Abfragen";
$a->strings["Only one search per minute is permitted for not logged in users."] = "Es ist nur eine Suchanfrage pro Minute für nicht eingeloggte Benutzer gestattet.";
$a->strings["Items tagged with: %s"] = "Beiträge die mit %s getaggt sind";
$a->strings["Invalid request identifier."] = "Invalid request identifier.";
$a->strings["Discard"] = "Verwerfen";
$a->strings["Network Notifications"] = "Netzwerk Benachrichtigungen";
$a->strings["Personal Notifications"] = "Persönliche Benachrichtigungen";
$a->strings["Home Notifications"] = "Pinnwand Benachrichtigungen";
$a->strings["Show Ignored Requests"] = "Zeige ignorierte Anfragen";
$a->strings["Hide Ignored Requests"] = "Verberge ignorierte Anfragen";
$a->strings["Notification type: "] = "Benachrichtigungstyp: ";
$a->strings["suggested by %s"] = "vorgeschlagen von %s";
$a->strings["Post a new friend activity"] = "Neue-Kontakt Nachricht senden";
$a->strings["if applicable"] = "falls anwendbar";
$a->strings["Claims to be known to you: "] = "Behauptet Dich zu kennen: ";
$a->strings["yes"] = "ja";
$a->strings["no"] = "nein";
$a->strings["Shall your connection be bidirectional or not?"] = "Soll die Verbindung beidseitig sein oder nicht?";
$a->strings["Accepting %s as a friend allows %s to subscribe to your posts, and you will also receive updates from them in your news feed."] = "Akzeptierst du %s als Kontakt, erlaubst du damit das Lesen deiner Beiträge und abonnierst selbst auch die Beiträge von %s.";
$a->strings["Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = "Wenn du %s als Abonnent akzeptierst, erlaubst du damit das Lesen deiner Beiträge, wirst aber selbst die Beiträge der anderen Seite nicht erhalten.";
$a->strings["Accepting %s as a sharer allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = "Wenn du %s als Teilenden akzeptierst, erlaubst du damit das Lesen deiner Beiträge, wirst aber selbst die Beiträge der anderen Seite nicht erhalten.";
$a->strings["Friend"] = "Kontakt";
$a->strings["Sharer"] = "Teilenden";
$a->strings["Subscriber"] = "Abonnent";
$a->strings["No introductions."] = "Keine Kontaktanfragen.";
$a->strings["Show unread"] = "Ungelesene anzeigen";
$a->strings["Show all"] = "Alle anzeigen";
$a->strings["No more %s notifications."] = "Keine weiteren %s Benachrichtigungen";
$a->strings["via"] = "via";
$a->strings["Alignment"] = "Ausrichtung";
$a->strings["Left"] = "Links";
$a->strings["Center"] = "Mitte";
$a->strings["Color scheme"] = "Farbschema";
$a->strings["Posts font size"] = "Schriftgröße in Beiträgen";
$a->strings["Textareas font size"] = "Schriftgröße in Eingabefeldern";
$a->strings["Comma separated list of helper forums"] = "Komma-Separierte Liste der Helfer-Foren";
$a->strings["Set style"] = "Stil auswählen";
$a->strings["Community Pages"] = "Foren";
$a->strings["Community Profiles"] = "Community-Profile";
$a->strings["Help or @NewHere ?"] = "Hilfe oder @NewHere";
$a->strings["Connect Services"] = "Verbinde Dienste";
$a->strings["Find Friends"] = "Kontakte finden";
$a->strings["Last users"] = "Letzte Nutzer";
$a->strings["Local Directory"] = "Lokales Verzeichnis";
$a->strings["Quick Start"] = "Schnell-Start";
$a->strings["greenzero"] = "greenzero";
$a->strings["purplezero"] = "purplezero";
$a->strings["easterbunny"] = "easterbunny";
$a->strings["darkzero"] = "darkzero";
$a->strings["comix"] = "comix";
$a->strings["slackr"] = "slackr";
$a->strings["Variations"] = "Variationen";
$a->strings["Midnight"] = "Mitternacht";
$a->strings["Zenburn"] = "Zenburn";
$a->strings["Bootstrap"] = "Bootstrap";
$a->strings["Shades of Pink"] = "Shades of Pink";
$a->strings["Lime and Orange"] = "Lime and Orange";
$a->strings["GeoCities Retro"] = "GeoCities Retro";
$a->strings["Background Image"] = "Hintergrundbild";
$a->strings["The URL to a picture (e.g. from your photo album) that should be used as background image."] = "Die URL zum Bild (z.B. aus deinem Foto Album), das als Hintergrundbild verwendet werden soll.";
$a->strings["Background Color"] = "Hintergrundfarbe";
$a->strings["HEX value for the background color. Don't include the #"] = "HEX Wert der Hintergrundfarbe, ohne das #";
$a->strings["font size"] = "Zeichengröße";
$a->strings["base font size for your interface"] = "Basiszeichengröße für das Interface";
$a->strings["Display Accesskeys"] = "Accesskeys anzeigen";
$a->strings["Diaplay the access keys assigned to some menu element in the web interface."] = "Einige Menüelemente sind über Accesskeys aufrufbar. Sollen diese angezeigt werden?";
$a->strings["Repeat the image"] = "Bild wiederholen";
$a->strings["Will repeat your image to fill the background."] = "Wiederholt das Bild um den Hintergrund auszufüllen.";
$a->strings["Stretch"] = "Strecken";
@ -2014,29 +2053,7 @@ $a->strings["Content background transparency"] = "Transparanz des Hintergrunds v
$a->strings["Set the background image"] = "Hintergrundbild festlegen";
$a->strings["Guest"] = "Gast";
$a->strings["Visitor"] = "Besucher";
$a->strings["Alignment"] = "Ausrichtung";
$a->strings["Left"] = "Links";
$a->strings["Center"] = "Mitte";
$a->strings["Color scheme"] = "Farbschema";
$a->strings["Posts font size"] = "Schriftgröße in Beiträgen";
$a->strings["Textareas font size"] = "Schriftgröße in Eingabefeldern";
$a->strings["Community Profiles"] = "Community-Profile";
$a->strings["Last users"] = "Letzte Nutzer";
$a->strings["Find Friends"] = "Kontakte finden";
$a->strings["Local Directory"] = "Lokales Verzeichnis";
$a->strings["Quick Start"] = "Schnell-Start";
$a->strings["Connect Services"] = "Verbinde Dienste";
$a->strings["Comma separated list of helper forums"] = "Komma-Separierte Liste der Helfer-Foren";
$a->strings["Set style"] = "Stil auswählen";
$a->strings["Community Pages"] = "Foren";
$a->strings["Help or @NewHere ?"] = "Hilfe oder @NewHere";
$a->strings["greenzero"] = "greenzero";
$a->strings["purplezero"] = "purplezero";
$a->strings["easterbunny"] = "easterbunny";
$a->strings["darkzero"] = "darkzero";
$a->strings["comix"] = "comix";
$a->strings["slackr"] = "slackr";
$a->strings["Variations"] = "Variationen";
$a->strings["toggle mobile"] = "auf/von Mobile Ansicht wechseln";
$a->strings["Delete this item?"] = "Diesen Beitrag löschen?";
$a->strings["show fewer"] = "weniger anzeigen";
$a->strings["Update %s failed. See error logs."] = "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen.";
@ -2049,4 +2066,3 @@ $a->strings["Website Terms of Service"] = "Website Nutzungsbedingungen";
$a->strings["terms of service"] = "Nutzungsbedingungen";
$a->strings["Website Privacy Policy"] = "Website Datenschutzerklärung";
$a->strings["privacy policy"] = "Datenschutzerklärung";
$a->strings["toggle mobile"] = "auf/von Mobile Ansicht wechseln";

View file

@ -1,5 +1,9 @@
<div class="intro-approve-as-friend-desc">{{$approve_as}}</div>
<div class="intro-approve-as-friend-desc">
<p>{{$approve_as1}}</p>
<p>{{$approve_as2}}</p>
<p>{{$approve_as3}}</p>
</div>
<div class="intro-approve-as-friend-wrapper">
<label class="intro-approve-as-friend-label" for="intro-approve-as-friend-{{$intro_id}}">{{$as_friend}}</label>

View file

@ -4,8 +4,9 @@
// Catch the GUID from the URL
var itemGuid = window.location.pathname.split("/").pop();
var itemGuidSafe = itemGuid.replace(/%.*/, '');
$(window).load(function(){
// Scroll to the Item by its GUID
scrollToItem('item-'+itemGuid);
scrollToItem('item-' + itemGuidSafe);
});

View file

@ -68,9 +68,9 @@ as the value of $top_child_total (this is done at the end of this file)
{{* Use a different div container in dependence max thread-level = 7 *}}
{{if $item.thread_level<7}}
<div class="wall-item-container {{$item.indent}} {{$item.shiny}} {{$item.network}} thread_level_{{$item.thread_level}} {{if $item.thread_level==1}}panel-body h-entry{{else}}u-comment h-cite{{/if}}" id="item-{{$item.guid}}"><!-- wall-item-container -->
<div class="wall-item-container {{$item.indent}} {{$item.shiny}} {{$item.network}} thread_level_{{$item.thread_level}} {{if $item.thread_level==1}}panel-body h-entry{{else}}u-comment h-cite{{/if}}" id="item-{{$item.guid|regex_replace:'/%.*/':''}}"><!-- wall-item-container -->
{{else}}
<div class="wall-item-container {{$item.indent}} {{$item.shiny}} {{$item.network}} thread_level_7 u-comment h-cite" id="item-{{$item.guid}}">
<div class="wall-item-container {{$item.indent}} {{$item.shiny}} {{$item.network}} thread_level_7 u-comment h-cite" id="item-{{$item.guid|regex_replace:'/%.*/':''}}">
{{/if}}
<div class="media">
{{* Put addional actions in a top-right dropdown menu *}}