From ae172a9cec404ef9a0e9f16aafea97dea64d33ab Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 15 Mar 2015 07:45:50 +0100 Subject: [PATCH 001/306] If the load is too high, now not only the poller but also the page delivery will stop. --- include/cronhooks.php | 2 +- include/delivery.php | 2 +- include/poller.php | 2 +- index.php | 14 ++++++++++++++ 4 files changed, 17 insertions(+), 3 deletions(-) diff --git a/include/cronhooks.php b/include/cronhooks.php index 3a09da48ce..26cab3cf92 100644 --- a/include/cronhooks.php +++ b/include/cronhooks.php @@ -30,7 +30,7 @@ function cronhooks_run(&$argv, &$argc){ if(function_exists('sys_getloadavg')) { $load = sys_getloadavg(); if(intval($load[0]) > $maxsysload) { - logger('system: load ' . $load . ' too high. Poller deferred to next scheduled run.'); + logger('system: load ' . $load[0] . ' too high. Cronhooks deferred to next scheduled run.'); return; } } diff --git a/include/delivery.php b/include/delivery.php index 1def8ad2cc..a913e13170 100644 --- a/include/delivery.php +++ b/include/delivery.php @@ -60,7 +60,7 @@ function delivery_run(&$argv, &$argc){ if(function_exists('sys_getloadavg')) { $load = sys_getloadavg(); if(intval($load[0]) > $maxsysload) { - logger('system: load ' . $load . ' too high. Delivery deferred to next queue run.'); + logger('system: load ' . $load[0] . ' too high. Delivery deferred to next queue run.'); return; } } diff --git a/include/poller.php b/include/poller.php index cef11a7443..933624ecb5 100644 --- a/include/poller.php +++ b/include/poller.php @@ -46,7 +46,7 @@ function poller_run(&$argv, &$argc){ if(function_exists('sys_getloadavg')) { $load = sys_getloadavg(); if(intval($load[0]) > $maxsysload) { - logger('system: load ' . $load . ' too high. Poller deferred to next scheduled run.'); + logger('system: load ' . $load[0] . ' too high. Poller deferred to next scheduled run.'); return; } } diff --git a/index.php b/index.php index 295db01da2..949ccd532b 100644 --- a/index.php +++ b/index.php @@ -53,6 +53,20 @@ if(!$install) { load_config('config'); load_config('system'); + $maxsysload = intval(get_config('system','maxloadavg')); + if($maxsysload < 1) + $maxsysload = 50; + if(function_exists('sys_getloadavg')) { + $load = sys_getloadavg(); + if(intval($load[0]) > $maxsysload) { + logger('system: load ' . $load[0] . ' too high. Service Temporarily Unavailable.'); + header($_SERVER["SERVER_PROTOCOL"].' 503 Service Temporarily Unavailable'); + header('Retry-After: 300'); + die("System is currently unavailable. Please try again later"); + } + } + + if (get_config('system','force_ssl') AND ($a->get_scheme() == "http") AND (intval(get_config('system','ssl_policy')) == SSL_POLICY_FULL) AND (substr($a->get_baseurl(), 0, 8) == "https://")) { From 001e940c6c3a7c8c93f8529450646b7edc23b74f Mon Sep 17 00:00:00 2001 From: FlxAlbroscheit Date: Tue, 31 Mar 2015 02:06:07 +0200 Subject: [PATCH 002/306] Feature for desktop-notifications see issue #1163 --- mod/settings.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/mod/settings.php b/mod/settings.php index b01c4fabde..93109fc0cf 100644 --- a/mod/settings.php +++ b/mod/settings.php @@ -1182,6 +1182,10 @@ function settings_content(&$a) { '$notify7' => array('notify7', t('You are tagged in a post'), ($notify & NOTIFY_TAGSELF), NOTIFY_TAGSELF, ''), '$notify8' => array('notify8', t('You are poked/prodded/etc. in a post'), ($notify & NOTIFY_POKE), NOTIFY_POKE, ''), + '$desktop_notifications' => t('Activate desktop notifications'), + '$desktop_notifications_note' => t('Note: This is an experimental feature, as being not supported by each browser'), + '$desktop_notifications_success_message' => t('You will now receive desktop notifications!'), + '$email_textonly' => array('email_textonly', t('Text-only notification emails'), get_pconfig(local_user(),'system','email_textonly'), t('Send text only notification emails, without the html part')), From d2261397d942e7a957363b3ef0f970bfaf8fd910 Mon Sep 17 00:00:00 2001 From: FlxAlbroscheit Date: Tue, 31 Mar 2015 02:10:36 +0200 Subject: [PATCH 003/306] Feature for desktop-notifications --- js/main.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/js/main.js b/js/main.js index 5f4b56f4d8..53608024c9 100644 --- a/js/main.js +++ b/js/main.js @@ -182,6 +182,18 @@ text = e.text().format(""+e.attr('name')+""); html = notifications_tpl.format(e.attr('href'),e.attr('photo'), text, e.attr('date'), e.attr('seen')); nnm.append(html); + + if(e.text().search('→') == 0) { + var notification = new Notification(document.title, { + body: e.text().replace('→ ',''), + icon: e.attr('photo') + }); + + // TODO (yet unsupported by most browsers): + // Implement notification.onclick() + + notifyMarkAll(); + } }); $("img[data-src]", nnm).each(function(i, el){ From f054dbfc8d5aca226fd4f04140e47f60915e4595 Mon Sep 17 00:00:00 2001 From: FlxAlbroscheit Date: Tue, 31 Mar 2015 02:11:46 +0200 Subject: [PATCH 004/306] Feature for desktop-notifications --- view/templates/settings.tpl | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/view/templates/settings.tpl b/view/templates/settings.tpl index 323b614ef6..95ee0f6fbc 100644 --- a/view/templates/settings.tpl +++ b/view/templates/settings.tpl @@ -133,6 +133,11 @@ {{include file="field_intcheckbox.tpl" field=$notify8}} +
+ + {{$desktop_notifications_note}} +
+ {{include file="field_checkbox.tpl" field=$email_textonly}} From d5fbe3a7b6ee0771e7960dfb2a64b6dbf69ed506 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Lohan?= Date: Sun, 5 Apr 2015 13:20:15 +0200 Subject: [PATCH 005/306] fixes a few typos --- README.translate.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.translate.md b/README.translate.md index 5575d51760..f434063614 100644 --- a/README.translate.md +++ b/README.translate.md @@ -18,7 +18,7 @@ others can use them. We do not include every translation from transifex in the source tree to avoid a scattered and disturbed overall experience. As an uneducated guess we have a lower limit of 50% translated strings before we include the language (for the -core message.po file, addont translation will be included once all strings of +core message.po file, addon translation will be included once all strings of an addon are translated. This limit is judging only by the amount of translated strings under the assumption that the most prominent strings for the UI will be translated first by a translation team. If you feel your translation useable @@ -47,10 +47,10 @@ view/de/message.po you would do the following. 2. Execute the po2php script, which will place the translation in the strings.php file that is used by friendica. - $> php util/po2php.php view/de/message.po + $> php util/po2php.php view/de/messages.po The output of the script will be placed at view/de/strings.php where - froemdoca os expecting it, so you can test your translation mmediately. + friendica is expecting it, so you can test your translation immediately. 3. Visit your friendica page to check if it still works in the language you just translated. If not try to find the error, most likely PHP will give @@ -71,7 +71,7 @@ Utilities Additional to the po2php script there are some more utilities for translation in the "util" directory of the friendica source tree. If you only want to -translate friendica into another language you wont need any of these tools most +translate friendica into another language you won't need any of these tools most likely but it gives you an idea how the translation process of friendica works. From aea83f0bec6338cab8427d5fadeda4e32122feb3 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 5 Apr 2015 20:40:31 +0200 Subject: [PATCH 006/306] The order for the page parsing is changed. --- mod/parse_url.php | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/mod/parse_url.php b/mod/parse_url.php index 7f4bd29a08..951c070110 100644 --- a/mod/parse_url.php +++ b/mod/parse_url.php @@ -97,15 +97,6 @@ function parseurl_getsiteinfo($url, $no_guessing = false, $do_oembed = true, $co return($siteinfo); } - if ($do_oembed) { - require_once("include/oembed.php"); - - $oembed_data = oembed_fetch_url($url); - - if ($oembed_data->type != "error") - $siteinfo["type"] = $oembed_data->type; - } - // if the file is too large then exit if ($curl_info["download_content_length"] > 1000000) return($siteinfo); @@ -116,6 +107,24 @@ function parseurl_getsiteinfo($url, $no_guessing = false, $do_oembed = true, $co $stamp1 = microtime(true); + if ($do_oembed) { + require_once("include/oembed.php"); + + $oembed_data = oembed_fetch_url($url); + + if ($oembed_data->type != "error") + $siteinfo["type"] = $oembed_data->type; + + if (($oembed_data->type == "link") AND ($siteinfo["type"] != "photo")) { + if (isset($oembed_data->title)) + $siteinfo["title"] = $oembed_data->title; + if (isset($oembed_data->description)) + $siteinfo["text"] = trim($oembed_data->description); + if (isset($oembed_data->thumbnail_url)) + $siteinfo["image"] = $oembed_data->thumbnail_url; + } + } + // Now fetch the body as well $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); @@ -283,15 +292,6 @@ function parseurl_getsiteinfo($url, $no_guessing = false, $do_oembed = true, $co } } - if (isset($oembed_data) AND ($oembed_data->type == "link") AND ($siteinfo["type"] != "photo")) { - if (isset($oembed_data->title) AND (trim($oembed_data->title) != "")) - $siteinfo["title"] = $oembed_data->title; - if (isset($oembed_data->description) AND (trim($oembed_data->description) != "")) - $siteinfo["text"] = trim($oembed_data->description); - if (isset($oembed_data->thumbnail_url) AND (trim($oembed_data->thumbnail_url) != "")) - $siteinfo["image"] = $oembed_data->thumbnail_url; - } - if ((@$siteinfo["image"] == "") AND !$no_guessing) { $list = $xpath->query("//img[@src]"); foreach ($list as $node) { From 57528cb98765e772cccb3067552bd29e331acdaf Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 5 Apr 2015 20:43:06 +0200 Subject: [PATCH 007/306] New function for building the "share" header --- include/api.php | 7 +++---- include/diaspora.php | 11 ++++------- include/items.php | 13 ++++++------- mod/share.php | 26 ++++++++++++++++++-------- 4 files changed, 31 insertions(+), 26 deletions(-) diff --git a/include/api.php b/include/api.php index 600cc0c3d6..d2592afc67 100644 --- a/include/api.php +++ b/include/api.php @@ -7,6 +7,7 @@ require_once("include/conversation.php"); require_once("include/oauth.php"); require_once("include/html2plain.php"); + require_once("mod/share.php"); /* * Twitter-Like API * @@ -1389,10 +1390,8 @@ $pos = strpos($r[0]['body'], "[share"); $post = substr($r[0]['body'], $pos); } else { - $post = "[share author='".str_replace("'", "'", $r[0]['author-name']). - "' profile='".$r[0]['author-link']. - "' avatar='".$r[0]['author-avatar']. - "' link='".$r[0]['plink']."']"; + $post = share_header($r[0]['author-name'], $r[0]['author-link'], $r[0]['author-avatar'], $r[0]['guid'], $r[0]['created'], $r[0]['plink']); + $post .= $r[0]['body']; $post .= "[/share]"; } diff --git a/include/diaspora.php b/include/diaspora.php index dd877112ba..2dfa67e108 100755 --- a/include/diaspora.php +++ b/include/diaspora.php @@ -7,6 +7,7 @@ require_once('include/contact_selectors.php'); require_once('include/queue_fn.php'); require_once('include/lock.php'); require_once('include/threads.php'); +require_once('mod/share.php'); function diaspora_dispatch_public($msg) { @@ -1165,12 +1166,8 @@ function diaspora_reshare($importer,$xml,$msg) { $datarray['owner-link'] = $contact['url']; $datarray['owner-avatar'] = ((x($contact,'thumb')) ? $contact['thumb'] : $contact['photo']); if (!intval(get_config('system','wall-to-wall_share'))) { - $prefix = "[share author='".str_replace(array("'", "[", "]"), array("'", "[", "]"),$person['name']). - "' profile='".$person['url']. - "' avatar='".((x($person,'thumb')) ? $person['thumb'] : $person['photo']). - "' guid='".$orig_guid. - "' posted='".$orig_created. - "' link='".str_replace(array("'", "[", "]"), array("'", "[", "]"),$orig_url)."']"; + $prefix = share_header($person['name'], $person['url'], ((x($person,'thumb')) ? $person['thumb'] : $person['photo']), $orig_guid, $orig_created, $orig_url); + $datarray['author-name'] = $contact['name']; $datarray['author-link'] = $contact['url']; $datarray['author-avatar'] = $contact['thumb']; @@ -1199,7 +1196,7 @@ function diaspora_reshare($importer,$xml,$msg) { $datarray2['contact-id'] = get_contact($person['url'], 0); $datarray2['guid'] = $orig_guid; $datarray2['uri'] = $datarray2['parent-uri'] = $orig_author.':'.$orig_guid; - $datarray2['changed'] = $datarray2['created'] = $datarray2['edited'] = datetime_convert('UTC','UTC',$orig_created); + $datarray2['changed'] = $datarray2['created'] = $datarray2['edited'] = $datarray2['commented'] = $datarray2['received'] = datetime_convert('UTC','UTC',$orig_created); $datarray2['plink'] = 'https://'.substr($orig_author,strpos($orig_author,'@')+1).'/posts/'.$orig_guid; $datarray2['author-name'] = $person['name']; diff --git a/include/items.php b/include/items.php index 0b8bf8fea9..7e30bc2b70 100644 --- a/include/items.php +++ b/include/items.php @@ -12,6 +12,7 @@ require_once('include/email.php'); require_once('include/ostatus_conversation.php'); require_once('include/threads.php'); require_once('include/socgraph.php'); +require_once('mod/share.php'); function get_feed_for(&$a, $dfrn_id, $owner_nick, $last_update, $direction = 0) { @@ -838,10 +839,8 @@ function get_atom_elements($feed, $item, $contact = array()) { logger('get_atom_elements: fixing sender of repeated message.'); if (!intval(get_config('system','wall-to-wall_share'))) { - $prefix = "[share author='".str_replace("'", "'",$name). - "' profile='".$uri. - "' avatar='".$avatar. - "' link='".$orig_uri."']"; + logger("Repeated data: ".print_r($child["http://activitystrea.ms/spec/1.0/"]["object"][0]["child"][SIMPLEPIE_NAMESPACE_ATOM_10], true), LOGGER_DEBUG); + $prefix = share_header($name, $uri, $avatar, "", "", $orig_uri); $res["body"] = $prefix.html2bbcode($message)."[/share]"; } else { @@ -1183,9 +1182,9 @@ function item_store($arr,$force_parent = false, $notify = false, $dontcache = fa $arr['owner-avatar'] = ((x($arr,'owner-avatar')) ? notags(trim($arr['owner-avatar'])) : ''); $arr['created'] = ((x($arr,'created') !== false) ? datetime_convert('UTC','UTC',$arr['created']) : datetime_convert()); $arr['edited'] = ((x($arr,'edited') !== false) ? datetime_convert('UTC','UTC',$arr['edited']) : datetime_convert()); - $arr['commented'] = datetime_convert(); - $arr['received'] = datetime_convert(); - $arr['changed'] = datetime_convert(); + $arr['commented'] = ((x($arr,'commented') !== false) ? datetime_convert('UTC','UTC',$arr['commented']) : datetime_convert()); + $arr['received'] = ((x($arr,'received') !== false) ? datetime_convert('UTC','UTC',$arr['received']) : datetime_convert()); + $arr['changed'] = ((x($arr,'changed') !== false) ? datetime_convert('UTC','UTC',$arr['changed']) : datetime_convert()); $arr['title'] = ((x($arr,'title')) ? notags(trim($arr['title'])) : ''); $arr['location'] = ((x($arr,'location')) ? notags(trim($arr['location'])) : ''); $arr['coord'] = ((x($arr,'coord')) ? notags(trim($arr['coord'])) : ''); diff --git a/mod/share.php b/mod/share.php index e9127b647d..085da4e30d 100644 --- a/mod/share.php +++ b/mod/share.php @@ -1,7 +1,4 @@ argc > 1) ? intval($a->argv[1]) : 0); @@ -23,11 +20,8 @@ function share_init(&$a) { $pos = strpos($r[0]['body'], "[share"); $o = substr($r[0]['body'], $pos); } else { - $o = "[share author='".str_replace("'", "'",$r[0]['author-name']). - "' profile='".$r[0]['author-link']. - "' avatar='".$r[0]['author-avatar']. - "' link='".$r[0]['plink']. - "' posted='".$r[0]['created']."']\n"; + $o = share_header($r[0]['author-name'], $r[0]['author-link'], $r[0]['author-avatar'], $r[0]['guid'], $r[0]['created'], $r[0]['plink']); + if($r[0]['title']) $o .= '[b]'.$r[0]['title'].'[/b]'."\n"; $o .= $r[0]['body']; @@ -46,3 +40,19 @@ function share_init(&$a) { echo $o; killme(); } + +function share_header($author, $profile, $avatar, $guid, $posted, $link) { + $header = "[share author='".str_replace(array("'", "[", "]"), array("'", "[", "]"),$author). + "' profile='".str_replace(array("'", "[", "]"), array("'", "[", "]"),$profile). + "' avatar='".str_replace(array("'", "[", "]"), array("'", "[", "]"),$avatar); + + if ($guid) + $header .= "' guid='".str_replace(array("'", "[", "]"), array("'", "[", "]"),$guid); + + if ($posted) + $header .= "' posted='".str_replace(array("'", "[", "]"), array("'", "[", "]"),$posted); + + $header .= "' link='".str_replace(array("'", "[", "]"), array("'", "[", "]"),$link)."']"; + + return $header; +} From 32206cd6817095f92f2e64ce1efc2d7060789e84 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 5 Apr 2015 20:50:15 +0200 Subject: [PATCH 008/306] Diaspora uses this to fetch single public items. --- mod/p.php | 75 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) create mode 100644 mod/p.php diff --git a/mod/p.php b/mod/p.php new file mode 100644 index 0000000000..6bae992565 --- /dev/null +++ b/mod/p.php @@ -0,0 +1,75 @@ +argc != 2) { + header($_SERVER["SERVER_PROTOCOL"].' 510 '.t('Not Extended')); + killme(); + } + + $guid = $a->argv[1]; + + if (strtolower(substr($guid, -4)) != ".xml") { + header($_SERVER["SERVER_PROTOCOL"].' 404 '.t('Not Found')); + killme(); + } + + $guid = strtolower(substr($guid, 0, -4)); + + $item = q("SELECT `body`, `guid`, `contact-id`, `private`, `created`, `app` FROM `item` WHERE `uid` = 0 AND `guid` = '%s' AND `network` IN ('%s', '%s') LIMIT 1", + dbesc($guid), NETWORK_DFRN, NETWORK_DIASPORA); + if (!$item) { + header($_SERVER["SERVER_PROTOCOL"].' 404 '.t('Not Found')); + killme(); + } + + $post = array(); + + $reshared = diaspora_is_reshare($item[0]["body"]); + + if ($reshared) { + $nodename = "reshare"; + $post["root_diaspora_id"] = $reshared["root_handle"]; + $post["root_guid"] = $reshared["root_guid"]; + $post["guid"] = $item[0]["guid"]; + $post["diaspora_handle"] = diaspora_handle_from_contact($item[0]["contact-id"]); + $post["public"] = (!$item[0]["private"] ? 'true':'false'); + $post["created_at"] = datetime_convert('UTC','UTC',$item[0]["created"]); + } else { + $nodename = "status_message"; + $post["raw_message"] = str_replace("&", "&", bb2diaspora($item[0]["body"])); + $post["guid"] = $item[0]["guid"]; + $post["diaspora_handle"] = diaspora_handle_from_contact($item[0]["contact-id"]); + $post["public"] = (!$item[0]["private"] ? 'true':'false'); + $post["created_at"] = datetime_convert('UTC','UTC',$item[0]["created"]); + $post["provider_display_name"] = $item[0]["app"]; + } + + $dom = new DOMDocument("1.0"); + $root = $dom->createElement("XML"); + $dom->appendChild($root); + $postelement = $dom->createElement("post"); + $root->appendChild($postelement); + $statuselement = $dom->createElement($nodename); + $postelement->appendChild($statuselement); + + foreach($post AS $index => $value) { + $postnode = $dom->createElement($index, $value); + $statuselement->appendChild($postnode); + } + + header("Content-Type: application/xml; charset=utf-8"); + $xml = $dom->saveXML(); + + // Diaspora doesn't send the XML header, so we remove them as well. + // So we avoid possible compatibility problems. + if (substr($xml, 0, 21) == '') + $xml = trim(substr($xml, 21)); + + echo $xml; + + killme(); +} From cdebdc777e38506e673864377ce17a5af91dd8a1 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 5 Apr 2015 21:06:32 +0200 Subject: [PATCH 009/306] Removed test logger --- include/items.php | 1 - 1 file changed, 1 deletion(-) diff --git a/include/items.php b/include/items.php index 7e30bc2b70..3832b80b31 100644 --- a/include/items.php +++ b/include/items.php @@ -839,7 +839,6 @@ function get_atom_elements($feed, $item, $contact = array()) { logger('get_atom_elements: fixing sender of repeated message.'); if (!intval(get_config('system','wall-to-wall_share'))) { - logger("Repeated data: ".print_r($child["http://activitystrea.ms/spec/1.0/"]["object"][0]["child"][SIMPLEPIE_NAMESPACE_ATOM_10], true), LOGGER_DEBUG); $prefix = share_header($name, $uri, $avatar, "", "", $orig_uri); $res["body"] = $prefix.html2bbcode($message)."[/share]"; From 3cbd72d907fe62b8b5de489931b96a5a5e2c3930 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Mon, 6 Apr 2015 03:19:12 +0200 Subject: [PATCH 010/306] API: New picture upload function (Enhanced Twidere support) --- include/api.php | 52 ++++++++++++++++++++++++++++++++++++++++++--- mod/wall_upload.php | 21 +++++++++++++++++- 2 files changed, 69 insertions(+), 4 deletions(-) diff --git a/include/api.php b/include/api.php index d2592afc67..e5ee36fdf1 100644 --- a/include/api.php +++ b/include/api.php @@ -8,6 +8,8 @@ require_once("include/oauth.php"); require_once("include/html2plain.php"); require_once("mod/share.php"); + require_once("include/Photo.php"); + /* * Twitter-Like API * @@ -822,6 +824,18 @@ $_REQUEST['body'] .= "\n\n".$media; } + // To-Do: Multiple IDs + if (requestdata('media_ids')) { + $r = q("SELECT `resource-id`, `scale`, `nickname`, `type` FROM `photo` INNER JOIN `user` ON `user`.`uid` = `photo`.`uid` WHERE `resource-id` IN (SELECT `resource-id` FROM `photo` WHERE `id` = %d) AND `scale` > 0 AND `photo`.`uid` = %d ORDER BY `photo`.`width` DESC LIMIT 1", + intval(requestdata('media_ids')), api_user()); + if ($r) { + $phototypes = Photo::supportedTypes(); + $ext = $phototypes[$r[0]['type']]; + $_REQUEST['body'] .= "\n\n".'[url='.$a->get_baseurl().'/photos/'.$r[0]['nickname'].'/image/'.$r[0]['resource-id'].']'; + $_REQUEST['body'] .= '[img]'.$a->get_baseurl()."/photo/".$r[0]['resource-id']."-".$r[0]['scale'].".".$ext."[/img][/url]"; + } + } + // set this so that the item_post() function is quiet and doesn't redirect or emit json $_REQUEST['api_source'] = true; @@ -841,6 +855,41 @@ api_register_func('api/statuses/update_with_media','api_statuses_update', true); + function api_media_upload(&$a, $type) { + if (api_user()===false) { + logger('no user'); + return false; + } + + $user_info = api_get_user($a); + + if(!x($_FILES,'media')) { + // Output error + return false; + } + + require_once('mod/wall_upload.php'); + $media = wall_upload_post($a, false); + if(!$media) { + // Output error + return false; + } + + $returndata = array(); + $returndata["media_id"] = $media["id"]; + $returndata["media_id_string"] = (string)$media["id"]; + $returndata["size"] = $media["size"]; + $returndata["image"] = array("w" => $media["width"], + "h" => $media["height"], + "image_type" => $media["type"]); + + logger("Media uploaded: ".print_r($returndata, true), LOGGER_DEBUG); + + return array("media" => $returndata); + } + + api_register_func('api/media/upload','api_media_upload', true); + function api_status_show(&$a, $type){ $user_info = api_get_user($a); @@ -1875,8 +1924,6 @@ if (!$ret) return false; - require_once("include/Photo.php"); - $attachments = array(); foreach ($images[1] AS $image) { @@ -2002,7 +2049,6 @@ $start = iconv_strpos($text, $url, $offset, "UTF-8"); if (!($start === false)) { - require_once("include/Photo.php"); $image = get_photo_info($url); if ($image) { // If image cache is activated, then use the following sizes: diff --git a/mod/wall_upload.php b/mod/wall_upload.php index f1fde2e33c..291307b8ec 100644 --- a/mod/wall_upload.php +++ b/mod/wall_upload.php @@ -2,7 +2,7 @@ require_once('include/Photo.php'); -function wall_upload_post(&$a) { +function wall_upload_post(&$a, $desktopmode = true) { logger("wall upload: starting new upload", LOGGER_DEBUG); @@ -189,6 +189,25 @@ function wall_upload_post(&$a) { $basename = basename($filename); + if (!$desktopmode) { + + $r = q("SELECT `id`, `datasize`, `width`, `height`, `type` FROM `photo` WHERE `resource-id` = '%s' ORDER BY `width` DESC LIMIT 1", $hash); + if (!$r) + return false; + + $picture = array(); + + $picture["id"] = $r[0]["id"]; + $picture["size"] = $r[0]["datasize"]; + $picture["width"] = $r[0]["width"]; + $picture["height"] = $r[0]["height"]; + $picture["type"] = $r[0]["type"]; + $picture["albumpage"] = $a->get_baseurl().'/photos/'.$page_owner_nick.'/image/'.$hash; + $picture["picture"] = $a->get_baseurl()."/photo/{$hash}-0.".$ph->getExt(); + $picture["preview"] = $a->get_baseurl()."/photo/{$hash}-{$smallest}.".$ph->getExt(); + + return $picture; + } /* mod Waitman Gobble NO WARRANTY */ From 739219278bd419e7b6e380e5dccc95860e697e14 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Mon, 6 Apr 2015 10:12:37 +0200 Subject: [PATCH 011/306] Avoid SQL warnings because of empty id list. --- include/api.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/api.php b/include/api.php index e5ee36fdf1..cf75428a3d 100644 --- a/include/api.php +++ b/include/api.php @@ -1186,7 +1186,8 @@ $idlist = implode(",", $idarray); - $r = q("UPDATE `item` SET `unseen` = 0 WHERE `unseen` AND `id` IN (%s)", $idlist); + if ($idlist != "") + $r = q("UPDATE `item` SET `unseen` = 0 WHERE `unseen` AND `id` IN (%s)", $idlist); $data = array('$statuses' => $ret); From 4768c6c6b666ab5483e715afb1cf6951c8f5fd97 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Mon, 6 Apr 2015 12:26:31 +0200 Subject: [PATCH 012/306] Diaspora: Central "plink" function --- include/diaspora.php | 22 +++++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) diff --git a/include/diaspora.php b/include/diaspora.php index 2dfa67e108..6b42e3c555 100755 --- a/include/diaspora.php +++ b/include/diaspora.php @@ -779,6 +779,18 @@ function diaspora_post_allow($importer,$contact) { return false; } +function diaspora_plink($addr, $guid) { + $r = q("SELECT `url`, `nick` FROM `fcontact` WHERE `addr`='%s' LIMIT 1", $addr); + + // Fallback + if (!$r) + return 'https://'.substr($addr,strpos($addr,'@')+1).'/posts/'.$guid; + + if (strstr($r[0]["url"], "/channel/")) + return $r[0]["url"]."/?f=&mid=".$guid; + + return 'https://'.substr($addr,strpos($addr,'@')+1).'/posts/'.$guid; +} function diaspora_post($importer,$xml,$msg) { @@ -844,7 +856,7 @@ function diaspora_post($importer,$xml,$msg) { } } - $plink = 'https://'.substr($diaspora_handle,strpos($diaspora_handle,'@')+1).'/posts/'.$guid; + $plink = diaspora_plink($diaspora_handle, $guid); $datarray['uid'] = $importer['uid']; $datarray['contact-id'] = $contact['id']; @@ -937,7 +949,7 @@ function diaspora_store_by_guid($guid, $server) { $datarray['changed'] = $datarray['created'] = $datarray['edited'] = datetime_convert('UTC','UTC',$created); $datarray['private'] = $private; $datarray['parent'] = 0; - $datarray['plink'] = 'https://'.substr($author,strpos($author,'@')+1).'/posts/'.$guid; + $datarray['plink'] = diaspora_plink($author, $guid); $datarray['author-name'] = $person['name']; $datarray['author-link'] = $person['url']; $datarray['author-avatar'] = ((x($person,'thumb')) ? $person['thumb'] : $person['photo']); @@ -1150,7 +1162,7 @@ function diaspora_reshare($importer,$xml,$msg) { $datarray = array(); - $plink = 'https://'.substr($diaspora_handle,strpos($diaspora_handle,'@')+1).'/posts/'.$guid; + $plink = diaspora_plink($diaspora_handle, $guid); $datarray['uid'] = $importer['uid']; $datarray['contact-id'] = $contact['id']; @@ -1197,7 +1209,7 @@ function diaspora_reshare($importer,$xml,$msg) { $datarray2['guid'] = $orig_guid; $datarray2['uri'] = $datarray2['parent-uri'] = $orig_author.':'.$orig_guid; $datarray2['changed'] = $datarray2['created'] = $datarray2['edited'] = $datarray2['commented'] = $datarray2['received'] = datetime_convert('UTC','UTC',$orig_created); - $datarray2['plink'] = 'https://'.substr($orig_author,strpos($orig_author,'@')+1).'/posts/'.$orig_guid; + $datarray2['plink'] = diaspora_plink($orig_author, $orig_guid); $datarray2['author-name'] = $person['name']; $datarray2['author-link'] = $person['url']; @@ -1281,7 +1293,7 @@ function diaspora_asphoto($importer,$xml,$msg) { return; } - $plink = 'https://'.substr($diaspora_handle,strpos($diaspora_handle,'@')+1).'/posts/'.$guid; + $plink = diaspora_plink($diaspora_handle, $guid); $datarray = array(); From 1048be1dd00a9e21a5538a118c53331951eef2e4 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Mon, 6 Apr 2015 13:22:19 +0200 Subject: [PATCH 013/306] Liking of "red" comments is now possible. --- object/Item.php | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/object/Item.php b/object/Item.php index 19e3fdead1..eac4697f91 100644 --- a/object/Item.php +++ b/object/Item.php @@ -287,22 +287,24 @@ class Item extends BaseObject { } // Disable features that aren't available in several networks - if (($item["item_network"] != "dfrn") AND isset($buttons["dislike"])) { + if (($item["item_network"] != NETWORK_DFRN) AND isset($buttons["dislike"])) { unset($buttons["dislike"]); $tagger = ''; } - if (($item["item_network"] == "feed") AND isset($buttons["like"])) + if (($item["item_network"] == NETWORK_FEED) AND isset($buttons["like"])) unset($buttons["like"]); - if (($item["item_network"] == "mail") AND isset($buttons["like"])) + if (($item["item_network"] == NETWORK_MAIL) AND isset($buttons["like"])) unset($buttons["like"]); - if (($item["item_network"] == "dspr") AND ($indent == 'comment') AND isset($buttons["like"])) + // Diaspora isn't able to do likes on comments - but red does + if (($item["item_network"] == NETWORK_DIASPORA) AND ($indent == 'comment') AND + !strstr($item["owner-link"], "/channel/") AND isset($buttons["like"])) unset($buttons["like"]); // Facebook can like comments - but it isn't programmed in the connector yet. - if (($item["item_network"] == "face") AND ($indent == 'comment') AND isset($buttons["like"])) + if (($item["item_network"] == NETWORK_FACEBOOK) AND ($indent == 'comment') AND isset($buttons["like"])) unset($buttons["like"]); From 539a93b3f1aa2b373cf73a76762c615d9cca31bc Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Mon, 6 Apr 2015 13:49:57 +0200 Subject: [PATCH 014/306] The timestamp was at the wrong place --- mod/parse_url.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mod/parse_url.php b/mod/parse_url.php index 951c070110..71d767675f 100644 --- a/mod/parse_url.php +++ b/mod/parse_url.php @@ -105,8 +105,6 @@ function parseurl_getsiteinfo($url, $no_guessing = false, $do_oembed = true, $co if (($curl_info["content_type"] != "") AND !strstr(strtolower($curl_info["content_type"]),"html")) return($siteinfo); - $stamp1 = microtime(true); - if ($do_oembed) { require_once("include/oembed.php"); @@ -125,6 +123,8 @@ function parseurl_getsiteinfo($url, $no_guessing = false, $do_oembed = true, $co } } + $stamp1 = microtime(true); + // Now fetch the body as well $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); From 11a83b23458bf9f7048bec218321da2513378ab5 Mon Sep 17 00:00:00 2001 From: fabrixxm Date: Sun, 15 Mar 2015 21:19:29 +0100 Subject: [PATCH 015/306] add new api dfrn/remoteauth allow 'user@server' as username in api_login() --- include/api.php | 70 ++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 69 insertions(+), 1 deletion(-) diff --git a/include/api.php b/include/api.php index cf75428a3d..6f1c4eaed8 100644 --- a/include/api.php +++ b/include/api.php @@ -102,6 +102,9 @@ $password = $_SERVER['PHP_AUTH_PW']; $encrypted = hash('whirlpool',trim($password)); + // allow "user@server" login (but ignore 'server' part) + $at=strstr($user, "@", true); + if ( $at ) $user=$at; /** * next code from mod/auth.php. needs better solution @@ -109,7 +112,7 @@ $record = null; $addon_auth = array( - 'username' => trim($user), + 'username' => trim($user), 'password' => trim($password), 'authenticated' => 0, 'user_record' => null @@ -2666,6 +2669,70 @@ + /** + * similar as /mod/redir.php + * redirect to 'url' after dfrn auth + * + * why this when there is mod/redir.php already? + * This use api_user() and api_login() + * + * params + * c_url: url of remote contact to auth to + * url: string, url to redirect after auth + */ + function api_dfrn_remoteauth(&$a) { + $url = ((x($_GET,'url')) ? $_GET['url'] : ''); + $c_url = ((x($_GET,'c_url')) ? $_GET['c_url'] : ''); + + if ($url === '' || $c_url === '') + die((api_error($a, 'json', "Wrong parameters"))); + + $c_url = normalise_link($c_url); + + // traditional DFRN + + $r = q("SELECT * FROM `contact` WHERE `id` = %d AND `nurl` = '%s' LIMIT 1", + dbesc($c_url), + intval(api_user()) + ); + + if ((! count($r)) || ($r[0]['network'] !== NETWORK_DFRN)) + die((api_error($a, 'json', "Unknown contact"))); + + $cid = $r[0]['id']; + + $dfrn_id = $orig_id = (($r[0]['issued-id']) ? $r[0]['issued-id'] : $r[0]['dfrn-id']); + + if($r[0]['duplex'] && $r[0]['issued-id']) { + $orig_id = $r[0]['issued-id']; + $dfrn_id = '1:' . $orig_id; + } + if($r[0]['duplex'] && $r[0]['dfrn-id']) { + $orig_id = $r[0]['dfrn-id']; + $dfrn_id = '0:' . $orig_id; + } + + $sec = random_string(); + + q("INSERT INTO `profile_check` ( `uid`, `cid`, `dfrn_id`, `sec`, `expire`) + VALUES( %d, %s, '%s', '%s', %d )", + intval(api_user()), + intval($cid), + dbesc($dfrn_id), + dbesc($sec), + intval(time() + 45) + ); + + logger($r[0]['name'] . ' ' . $sec, LOGGER_DEBUG); + $dest = (($url) ? '&destination_url=' . $url : ''); + goaway ($r[0]['poll'] . '?dfrn_id=' . $dfrn_id + . '&dfrn_version=' . DFRN_PROTOCOL_VERSION + . '&type=profile&sec=' . $sec . $dest . $quiet ); + } + api_register_func('api/dfrn/remoteauth', 'api_dfrn_remoteauth', true); + + + function api_share_as_retweet(&$item) { $body = trim($item["body"]); @@ -2884,6 +2951,7 @@ function api_best_nickname(&$contacts) { $contacts = array($contacts[0]); } + /* Not implemented by now: statuses/retweets_of_me From 73248f7dda6e152c3cdcebde4574583fca8c3556 Mon Sep 17 00:00:00 2001 From: fabrixxm Date: Tue, 31 Mar 2015 10:21:29 +0200 Subject: [PATCH 016/306] allow to update generic subsets of tables --- include/dbstructure.php | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/include/dbstructure.php b/include/dbstructure.php index f131abe64f..bd33858dad 100644 --- a/include/dbstructure.php +++ b/include/dbstructure.php @@ -120,7 +120,7 @@ function print_structure($database) { } } -function update_structure($verbose, $action) { +function update_structure($verbose, $action, $tables=null, $definition=null) { global $a, $db; $errors = false; @@ -130,7 +130,8 @@ function update_structure($verbose, $action) { // Get the current structure $database = array(); - $tables = q("show tables"); + if (is_null($tables)) + $tables = q("show tables"); foreach ($tables AS $table) { $table = current($table); @@ -139,7 +140,8 @@ function update_structure($verbose, $action) { } // Get the definition - $definition = db_definition(); + if (is_null($definition)) + $definition = db_definition(); // Compare it foreach ($definition AS $name => $structure) { From 42ec9ad2793ad1de3a8f00e20345fa468ba8c086 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Tue, 7 Apr 2015 07:47:15 +0200 Subject: [PATCH 017/306] after pull 1460 all notifications got marked read --- js/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/main.js b/js/main.js index 53608024c9..d7381c96a4 100644 --- a/js/main.js +++ b/js/main.js @@ -192,7 +192,7 @@ // TODO (yet unsupported by most browsers): // Implement notification.onclick() - notifyMarkAll(); + // notifyMarkAll(); } }); From 52549dae7bb68746e3a790180f3fe4cb177cbc5c Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Tue, 7 Apr 2015 09:00:12 +0200 Subject: [PATCH 018/306] CS update to the strings --- view/cs/messages.po | 11830 +++++++++++++++++++++--------------------- view/cs/strings.php | 2755 +++++----- 2 files changed, 7323 insertions(+), 7262 deletions(-) diff --git a/view/cs/messages.po b/view/cs/messages.po index 1c3cac1dba..d930385dff 100644 --- a/view/cs/messages.po +++ b/view/cs/messages.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-09 08:57+0100\n" -"PO-Revision-Date: 2015-02-11 19:36+0000\n" +"POT-Creation-Date: 2015-04-04 17:54+0200\n" +"PO-Revision-Date: 2015-04-06 17:32+0000\n" "Last-Translator: Michal Šupler \n" "Language-Team: Czech (http://www.transifex.com/projects/p/friendica/language/cs/)\n" "MIME-Version: 1.0\n" @@ -19,152 +19,990 @@ msgstr "" "Language: cs\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: ../../mod/contacts.php:108 +#: ../../view/theme/cleanzero/config.php:80 +#: ../../view/theme/vier/config.php:56 +#: ../../view/theme/duepuntozero/config.php:59 +#: ../../view/theme/diabook/config.php:148 +#: ../../view/theme/diabook/theme.php:633 +#: ../../view/theme/quattro/config.php:64 ../../view/theme/dispy/config.php:70 +#: ../../object/Item.php:678 ../../mod/contacts.php:492 +#: ../../mod/manage.php:110 ../../mod/fsuggest.php:107 +#: ../../mod/photos.php:1084 ../../mod/photos.php:1203 +#: ../../mod/photos.php:1514 ../../mod/photos.php:1565 +#: ../../mod/photos.php:1609 ../../mod/photos.php:1697 +#: ../../mod/invite.php:140 ../../mod/events.php:478 ../../mod/mood.php:137 +#: ../../mod/message.php:335 ../../mod/message.php:564 +#: ../../mod/profiles.php:686 ../../mod/install.php:248 +#: ../../mod/install.php:286 ../../mod/crepair.php:186 +#: ../../mod/content.php:710 ../../mod/poke.php:199 ../../mod/localtime.php:45 +msgid "Submit" +msgstr "Odeslat" + +#: ../../view/theme/cleanzero/config.php:82 +#: ../../view/theme/vier/config.php:58 +#: ../../view/theme/duepuntozero/config.php:61 +#: ../../view/theme/diabook/config.php:150 +#: ../../view/theme/quattro/config.php:66 ../../view/theme/dispy/config.php:72 +msgid "Theme settings" +msgstr "Nastavení téma" + +#: ../../view/theme/cleanzero/config.php:83 +msgid "Set resize level for images in posts and comments (width and height)" +msgstr "Nastavit velikost fotek v přízpěvcích a komentářích (šířka a výška)" + +#: ../../view/theme/cleanzero/config.php:84 +#: ../../view/theme/diabook/config.php:151 +#: ../../view/theme/dispy/config.php:73 +msgid "Set font-size for posts and comments" +msgstr "Nastav velikost písma pro přízpěvky a komentáře." + +#: ../../view/theme/cleanzero/config.php:85 +msgid "Set theme width" +msgstr "Nastavení šířku grafické šablony" + +#: ../../view/theme/cleanzero/config.php:86 +#: ../../view/theme/quattro/config.php:68 +msgid "Color scheme" +msgstr "Barevné schéma" + +#: ../../view/theme/vier/config.php:59 +msgid "Set style" +msgstr "Nastavit styl" + +#: ../../view/theme/duepuntozero/config.php:44 ../../include/text.php:1719 +#: ../../include/user.php:247 +msgid "default" +msgstr "standardní" + +#: ../../view/theme/duepuntozero/config.php:45 +msgid "greenzero" +msgstr "zelená nula" + +#: ../../view/theme/duepuntozero/config.php:46 +msgid "purplezero" +msgstr "fialová nula" + +#: ../../view/theme/duepuntozero/config.php:47 +msgid "easterbunny" +msgstr "velikonoční zajíček" + +#: ../../view/theme/duepuntozero/config.php:48 +msgid "darkzero" +msgstr "tmavá nula" + +#: ../../view/theme/duepuntozero/config.php:49 +msgid "comix" +msgstr "komiksová" + +#: ../../view/theme/duepuntozero/config.php:50 +msgid "slackr" +msgstr "flákač" + +#: ../../view/theme/duepuntozero/config.php:62 +msgid "Variations" +msgstr "Variace" + +#: ../../view/theme/diabook/config.php:142 +#: ../../view/theme/diabook/theme.php:621 ../../include/acl_selectors.php:335 +msgid "don't show" +msgstr "nikdy nezobrazit" + +#: ../../view/theme/diabook/config.php:142 +#: ../../view/theme/diabook/theme.php:621 ../../include/acl_selectors.php:334 +msgid "show" +msgstr "zobrazit" + +#: ../../view/theme/diabook/config.php:152 +#: ../../view/theme/dispy/config.php:74 +msgid "Set line-height for posts and comments" +msgstr "Nastav výšku řádku pro přízpěvky a komentáře." + +#: ../../view/theme/diabook/config.php:153 +msgid "Set resolution for middle column" +msgstr "Nastav rozlišení pro prostřední sloupec" + +#: ../../view/theme/diabook/config.php:154 +msgid "Set color scheme" +msgstr "Nastavení barevného schematu" + +#: ../../view/theme/diabook/config.php:155 +msgid "Set zoomfactor for Earth Layer" +msgstr "Nastavit přiblížení pro Earth Layer" + +#: ../../view/theme/diabook/config.php:156 +#: ../../view/theme/diabook/theme.php:585 +msgid "Set longitude (X) for Earth Layers" +msgstr "Nastavit zeměpistnou délku (X) pro Earth Layers" + +#: ../../view/theme/diabook/config.php:157 +#: ../../view/theme/diabook/theme.php:586 +msgid "Set latitude (Y) for Earth Layers" +msgstr "Nastavit zeměpistnou šířku (X) pro Earth Layers" + +#: ../../view/theme/diabook/config.php:158 +#: ../../view/theme/diabook/theme.php:130 +#: ../../view/theme/diabook/theme.php:544 +#: ../../view/theme/diabook/theme.php:624 +msgid "Community Pages" +msgstr "Komunitní stránky" + +#: ../../view/theme/diabook/config.php:159 +#: ../../view/theme/diabook/theme.php:579 +#: ../../view/theme/diabook/theme.php:625 +msgid "Earth Layers" +msgstr "Earth Layers" + +#: ../../view/theme/diabook/config.php:160 +#: ../../view/theme/diabook/theme.php:391 +#: ../../view/theme/diabook/theme.php:626 +msgid "Community Profiles" +msgstr "Komunitní profily" + +#: ../../view/theme/diabook/config.php:161 +#: ../../view/theme/diabook/theme.php:599 +#: ../../view/theme/diabook/theme.php:627 +msgid "Help or @NewHere ?" +msgstr "Pomoc nebo @ProNováčky ?" + +#: ../../view/theme/diabook/config.php:162 +#: ../../view/theme/diabook/theme.php:606 +#: ../../view/theme/diabook/theme.php:628 +msgid "Connect Services" +msgstr "Propojené služby" + +#: ../../view/theme/diabook/config.php:163 +#: ../../view/theme/diabook/theme.php:523 +#: ../../view/theme/diabook/theme.php:629 +msgid "Find Friends" +msgstr "Nalézt Přátele" + +#: ../../view/theme/diabook/config.php:164 +#: ../../view/theme/diabook/theme.php:412 +#: ../../view/theme/diabook/theme.php:630 +msgid "Last users" +msgstr "Poslední uživatelé" + +#: ../../view/theme/diabook/config.php:165 +#: ../../view/theme/diabook/theme.php:486 +#: ../../view/theme/diabook/theme.php:631 +msgid "Last photos" +msgstr "Poslední fotografie" + +#: ../../view/theme/diabook/config.php:166 +#: ../../view/theme/diabook/theme.php:441 +#: ../../view/theme/diabook/theme.php:632 +msgid "Last likes" +msgstr "Poslední líbí/nelíbí" + +#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:105 +#: ../../include/nav.php:148 ../../mod/notifications.php:93 +msgid "Home" +msgstr "Domů" + +#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76 +#: ../../include/nav.php:148 +msgid "Your posts and conversations" +msgstr "Vaše příspěvky a konverzace" + +#: ../../view/theme/diabook/theme.php:124 ../../boot.php:2133 +#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:87 +#: ../../include/nav.php:77 ../../mod/profperm.php:103 +#: ../../mod/newmember.php:32 +msgid "Profile" +msgstr "Profil" + +#: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77 +msgid "Your profile page" +msgstr "Vaše profilová stránka" + +#: ../../view/theme/diabook/theme.php:125 ../../include/nav.php:177 +#: ../../mod/contacts.php:718 +msgid "Contacts" +msgstr "Kontakty" + +#: ../../view/theme/diabook/theme.php:125 +msgid "Your contacts" +msgstr "Vaše kontakty" + +#: ../../view/theme/diabook/theme.php:126 ../../boot.php:2140 +#: ../../include/nav.php:78 ../../mod/fbrowser.php:25 +msgid "Photos" +msgstr "Fotografie" + +#: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:78 +msgid "Your photos" +msgstr "Vaše fotky" + +#: ../../view/theme/diabook/theme.php:127 ../../boot.php:2157 +#: ../../include/nav.php:80 ../../mod/events.php:370 +msgid "Events" +msgstr "Události" + +#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:80 +msgid "Your events" +msgstr "Vaše události" + +#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:81 +msgid "Personal notes" +msgstr "Osobní poznámky" + +#: ../../view/theme/diabook/theme.php:128 +msgid "Your personal photos" +msgstr "Vaše osobní fotky" + +#: ../../view/theme/diabook/theme.php:129 ../../include/nav.php:129 +#: ../../include/nav.php:131 ../../mod/community.php:32 +msgid "Community" +msgstr "Komunita" + +#: ../../view/theme/diabook/theme.php:463 ../../include/conversation.php:118 +#: ../../include/conversation.php:245 ../../include/text.php:1983 +msgid "event" +msgstr "událost" + +#: ../../view/theme/diabook/theme.php:466 +#: ../../view/theme/diabook/theme.php:475 ../../include/diaspora.php:2011 +#: ../../include/conversation.php:121 ../../include/conversation.php:130 +#: ../../include/conversation.php:248 ../../include/conversation.php:257 +#: ../../mod/like.php:149 ../../mod/like.php:319 ../../mod/subthread.php:87 +#: ../../mod/tagger.php:62 +msgid "status" +msgstr "Stav" + +#: ../../view/theme/diabook/theme.php:471 ../../include/diaspora.php:2011 +#: ../../include/conversation.php:126 ../../include/conversation.php:253 +#: ../../include/text.php:1985 ../../mod/like.php:149 +#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 +msgid "photo" +msgstr "fotografie" + +#: ../../view/theme/diabook/theme.php:480 ../../include/diaspora.php:2027 +#: ../../include/conversation.php:137 ../../mod/like.php:166 #, php-format -msgid "%d contact edited." -msgid_plural "%d contacts edited" -msgstr[0] "%d kontakt upraven." -msgstr[1] "%d kontakty upraveny" -msgstr[2] "%d kontaktů upraveno" +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s má rád %2$s' na %3$s" -#: ../../mod/contacts.php:139 ../../mod/contacts.php:272 -msgid "Could not access contact record." -msgstr "Nelze získat přístup k záznamu kontaktu." +#: ../../view/theme/diabook/theme.php:499 ../../mod/photos.php:60 +#: ../../mod/photos.php:155 ../../mod/photos.php:1064 +#: ../../mod/photos.php:1187 ../../mod/photos.php:1210 +#: ../../mod/photos.php:1760 ../../mod/photos.php:1772 +msgid "Contact Photos" +msgstr "Fotogalerie kontaktu" -#: ../../mod/contacts.php:153 -msgid "Could not locate selected profile." -msgstr "Nelze nalézt vybraný profil." +#: ../../view/theme/diabook/theme.php:500 ../../include/user.php:335 +#: ../../include/user.php:342 ../../include/user.php:349 +#: ../../mod/photos.php:155 ../../mod/photos.php:731 ../../mod/photos.php:1187 +#: ../../mod/photos.php:1210 ../../mod/profile_photo.php:74 +#: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88 +#: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296 +#: ../../mod/profile_photo.php:305 +msgid "Profile Photos" +msgstr "Profilové fotografie" -#: ../../mod/contacts.php:186 -msgid "Contact updated." -msgstr "Kontakt aktualizován." +#: ../../view/theme/diabook/theme.php:524 +msgid "Local Directory" +msgstr "Lokální Adresář" -#: ../../mod/contacts.php:188 ../../mod/dfrn_request.php:576 -msgid "Failed to update contact record." -msgstr "Nepodařilo se aktualizovat kontakt." +#: ../../view/theme/diabook/theme.php:525 ../../mod/directory.php:51 +msgid "Global Directory" +msgstr "Globální adresář" -#: ../../mod/contacts.php:254 ../../mod/manage.php:96 -#: ../../mod/display.php:499 ../../mod/profile_photo.php:19 -#: ../../mod/profile_photo.php:169 ../../mod/profile_photo.php:180 -#: ../../mod/profile_photo.php:193 ../../mod/follow.php:9 -#: ../../mod/item.php:168 ../../mod/item.php:184 ../../mod/group.php:19 -#: ../../mod/dfrn_confirm.php:55 ../../mod/fsuggest.php:78 -#: ../../mod/wall_upload.php:66 ../../mod/viewcontacts.php:24 -#: ../../mod/notifications.php:66 ../../mod/message.php:38 -#: ../../mod/message.php:174 ../../mod/crepair.php:119 -#: ../../mod/nogroup.php:25 ../../mod/network.php:4 ../../mod/allfriends.php:9 -#: ../../mod/events.php:140 ../../mod/install.php:151 +#: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:36 +msgid "Similar Interests" +msgstr "Podobné zájmy" + +#: ../../view/theme/diabook/theme.php:527 ../../include/contact_widgets.php:35 +#: ../../mod/suggest.php:68 +msgid "Friend Suggestions" +msgstr "Návrhy přátel" + +#: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:38 +msgid "Invite Friends" +msgstr "Pozvat přátele" + +#: ../../view/theme/diabook/theme.php:544 +#: ../../view/theme/diabook/theme.php:648 ../../include/nav.php:172 +#: ../../mod/settings.php:90 ../../mod/admin.php:1104 ../../mod/admin.php:1325 +#: ../../mod/newmember.php:22 +msgid "Settings" +msgstr "Nastavení" + +#: ../../view/theme/diabook/theme.php:584 +msgid "Set zoomfactor for Earth Layers" +msgstr "Nastavit faktor přiblížení pro Earth Layers" + +#: ../../view/theme/diabook/theme.php:622 +msgid "Show/hide boxes at right-hand column:" +msgstr "Zobrazit/skrýt boxy na pravém sloupci:" + +#: ../../view/theme/quattro/config.php:67 +msgid "Alignment" +msgstr "Zarovnání" + +#: ../../view/theme/quattro/config.php:67 +msgid "Left" +msgstr "Vlevo" + +#: ../../view/theme/quattro/config.php:67 +msgid "Center" +msgstr "Uprostřed" + +#: ../../view/theme/quattro/config.php:69 +msgid "Posts font size" +msgstr "Velikost písma u příspěvků" + +#: ../../view/theme/quattro/config.php:70 +msgid "Textareas font size" +msgstr "Velikost písma textů" + +#: ../../view/theme/dispy/config.php:75 +msgid "Set colour scheme" +msgstr "Nastavit barevné schéma" + +#: ../../index.php:211 ../../mod/apps.php:7 +msgid "You must be logged in to use addons. " +msgstr "Musíte být přihlášeni pro použití rozšíření." + +#: ../../index.php:255 ../../mod/help.php:42 +msgid "Not Found" +msgstr "Nenalezen" + +#: ../../index.php:258 ../../mod/help.php:45 +msgid "Page not found." +msgstr "Stránka nenalezena" + +#: ../../index.php:367 ../../mod/group.php:72 ../../mod/profperm.php:19 +msgid "Permission denied" +msgstr "Nedostatečné oprávnění" + +#: ../../index.php:368 ../../include/items.php:4815 ../../mod/attach.php:33 #: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33 #: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103 -#: ../../mod/wall_attach.php:55 ../../mod/settings.php:102 -#: ../../mod/settings.php:596 ../../mod/settings.php:601 -#: ../../mod/register.php:42 ../../mod/delegate.php:12 ../../mod/mood.php:114 -#: ../../mod/suggest.php:58 ../../mod/profiles.php:165 -#: ../../mod/profiles.php:618 ../../mod/editpost.php:10 ../../mod/api.php:26 -#: ../../mod/api.php:31 ../../mod/notes.php:20 ../../mod/poke.php:135 -#: ../../mod/invite.php:15 ../../mod/invite.php:101 ../../mod/photos.php:134 -#: ../../mod/photos.php:1050 ../../mod/regmod.php:110 ../../mod/uimport.php:23 -#: ../../mod/attach.php:33 ../../include/items.php:4712 ../../index.php:369 +#: ../../mod/group.php:19 ../../mod/delegate.php:12 +#: ../../mod/notifications.php:66 ../../mod/settings.php:20 +#: ../../mod/settings.php:107 ../../mod/settings.php:606 +#: ../../mod/contacts.php:258 ../../mod/wall_attach.php:55 +#: ../../mod/register.php:42 ../../mod/manage.php:96 ../../mod/editpost.php:10 +#: ../../mod/regmod.php:110 ../../mod/api.php:26 ../../mod/api.php:31 +#: ../../mod/suggest.php:58 ../../mod/nogroup.php:25 ../../mod/fsuggest.php:78 +#: ../../mod/viewcontacts.php:24 ../../mod/wall_upload.php:66 +#: ../../mod/notes.php:20 ../../mod/network.php:4 ../../mod/photos.php:134 +#: ../../mod/photos.php:1050 ../../mod/follow.php:9 ../../mod/uimport.php:23 +#: ../../mod/invite.php:15 ../../mod/invite.php:101 ../../mod/events.php:140 +#: ../../mod/mood.php:114 ../../mod/message.php:38 ../../mod/message.php:174 +#: ../../mod/profiles.php:165 ../../mod/profiles.php:618 +#: ../../mod/install.php:151 ../../mod/crepair.php:119 ../../mod/poke.php:135 +#: ../../mod/display.php:499 ../../mod/dfrn_confirm.php:55 +#: ../../mod/item.php:169 ../../mod/item.php:185 +#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169 +#: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193 +#: ../../mod/allfriends.php:9 msgid "Permission denied." msgstr "Přístup odmítnut." -#: ../../mod/contacts.php:287 -msgid "Contact has been blocked" -msgstr "Kontakt byl zablokován" +#: ../../index.php:427 +msgid "toggle mobile" +msgstr "přepnout mobil" -#: ../../mod/contacts.php:287 -msgid "Contact has been unblocked" -msgstr "Kontakt byl odblokován" +#: ../../addon-wrk/openidserver/lib/render/trust.php:30 +#, php-format +msgid "Do you wish to confirm your identity (%s) with %s" +msgstr "" -#: ../../mod/contacts.php:298 -msgid "Contact has been ignored" -msgstr "Kontakt bude ignorován" +#: ../../addon-wrk/openidserver/lib/render/trust.php:43 +#: ../../mod/dfrn_request.php:676 +msgid "Confirm" +msgstr "Potvrdit" -#: ../../mod/contacts.php:298 -msgid "Contact has been unignored" -msgstr "Kontakt přestal být ignorován" +#: ../../addon-wrk/openidserver/lib/render/trust.php:44 +msgid "Do not confirm" +msgstr "Nepotvrzovat" -#: ../../mod/contacts.php:310 -msgid "Contact has been archived" -msgstr "Kontakt byl archivován" +#: ../../addon-wrk/openidserver/lib/render/trust.php:48 +msgid "Trust This Site" +msgstr "Důvěřovat tomuto webu" -#: ../../mod/contacts.php:310 -msgid "Contact has been unarchived" -msgstr "Kontakt byl vrácen z archívu." +#: ../../addon-wrk/openidserver/lib/render/trust.php:53 +msgid "No Identifier Sent" +msgstr "Nezaslán žádný identifikátor" -#: ../../mod/contacts.php:335 ../../mod/contacts.php:711 -msgid "Do you really want to delete this contact?" -msgstr "Opravdu chcete smazat tento kontakt?" +#: ../../addon-wrk/openidserver/lib/render/wronguser.php:5 +msgid "Requested identity don't match logged in user." +msgstr "" -#: ../../mod/contacts.php:337 ../../mod/message.php:209 -#: ../../mod/settings.php:1010 ../../mod/settings.php:1016 -#: ../../mod/settings.php:1024 ../../mod/settings.php:1028 -#: ../../mod/settings.php:1033 ../../mod/settings.php:1039 -#: ../../mod/settings.php:1045 ../../mod/settings.php:1051 -#: ../../mod/settings.php:1081 ../../mod/settings.php:1082 -#: ../../mod/settings.php:1083 ../../mod/settings.php:1084 -#: ../../mod/settings.php:1085 ../../mod/dfrn_request.php:830 -#: ../../mod/register.php:233 ../../mod/suggest.php:29 -#: ../../mod/profiles.php:661 ../../mod/profiles.php:664 ../../mod/api.php:105 -#: ../../include/items.php:4557 +#: ../../addon-wrk/openidserver/lib/render.php:27 +#, php-format +msgid "Please wait; you are being redirected to <%s>" +msgstr "Čekejte prosím, budete přesměrován na <%s>" + +#: ../../boot.php:749 +msgid "Delete this item?" +msgstr "Odstranit tuto položku?" + +#: ../../boot.php:750 ../../object/Item.php:361 ../../object/Item.php:677 +#: ../../mod/photos.php:1564 ../../mod/photos.php:1608 +#: ../../mod/photos.php:1696 ../../mod/content.php:709 +msgid "Comment" +msgstr "Okomentovat" + +#: ../../boot.php:751 ../../include/contact_widgets.php:205 +#: ../../object/Item.php:390 ../../mod/content.php:606 +msgid "show more" +msgstr "zobrazit více" + +#: ../../boot.php:752 +msgid "show fewer" +msgstr "zobrazit méně" + +#: ../../boot.php:1122 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "Aktualizace %s selhala. Zkontrolujte protokol chyb." + +#: ../../boot.php:1229 +msgid "Create a New Account" +msgstr "Vytvořit nový účet" + +#: ../../boot.php:1230 ../../include/nav.php:109 ../../mod/register.php:269 +msgid "Register" +msgstr "Registrovat" + +#: ../../boot.php:1254 ../../include/nav.php:73 +msgid "Logout" +msgstr "Odhlásit se" + +#: ../../boot.php:1255 ../../include/nav.php:92 ../../mod/bookmarklet.php:12 +msgid "Login" +msgstr "Přihlásit se" + +#: ../../boot.php:1257 +msgid "Nickname or Email address: " +msgstr "Přezdívka nebo e-mailová adresa:" + +#: ../../boot.php:1258 +msgid "Password: " +msgstr "Heslo: " + +#: ../../boot.php:1259 +msgid "Remember me" +msgstr "Pamatuj si mne" + +#: ../../boot.php:1262 +msgid "Or login using OpenID: " +msgstr "Nebo přihlášení pomocí OpenID: " + +#: ../../boot.php:1268 +msgid "Forgot your password?" +msgstr "Zapomněli jste své heslo?" + +#: ../../boot.php:1269 ../../mod/lostpass.php:109 +msgid "Password Reset" +msgstr "Obnovení hesla" + +#: ../../boot.php:1271 +msgid "Website Terms of Service" +msgstr "Podmínky použití serveru" + +#: ../../boot.php:1272 +msgid "terms of service" +msgstr "podmínky použití" + +#: ../../boot.php:1274 +msgid "Website Privacy Policy" +msgstr "Pravidla ochrany soukromí serveru" + +#: ../../boot.php:1275 +msgid "privacy policy" +msgstr "Ochrana soukromí" + +#: ../../boot.php:1408 +msgid "Requested account is not available." +msgstr "Požadovaný účet není dostupný." + +#: ../../boot.php:1447 ../../mod/profile.php:21 +msgid "Requested profile is not available." +msgstr "Požadovaný profil není k dispozici." + +#: ../../boot.php:1490 ../../boot.php:1624 +#: ../../include/profile_advanced.php:84 +msgid "Edit profile" +msgstr "Upravit profil" + +#: ../../boot.php:1557 ../../include/contact_widgets.php:10 +#: ../../mod/suggest.php:90 ../../mod/match.php:58 +msgid "Connect" +msgstr "Spojit" + +#: ../../boot.php:1589 +msgid "Message" +msgstr "Zpráva" + +#: ../../boot.php:1595 ../../include/nav.php:175 +msgid "Profiles" +msgstr "Profily" + +#: ../../boot.php:1595 +msgid "Manage/edit profiles" +msgstr "Spravovat/upravit profily" + +#: ../../boot.php:1600 ../../boot.php:1626 ../../mod/profiles.php:804 +msgid "Change profile photo" +msgstr "Změnit profilovou fotografii" + +#: ../../boot.php:1601 ../../mod/profiles.php:805 +msgid "Create New Profile" +msgstr "Vytvořit nový profil" + +#: ../../boot.php:1611 ../../mod/profiles.php:816 +msgid "Profile Image" +msgstr "Profilový obrázek" + +#: ../../boot.php:1614 ../../mod/profiles.php:818 +msgid "visible to everybody" +msgstr "viditelné pro všechny" + +#: ../../boot.php:1615 ../../mod/profiles.php:819 +msgid "Edit visibility" +msgstr "Upravit viditelnost" + +#: ../../boot.php:1637 ../../include/event.php:40 +#: ../../include/bb2diaspora.php:155 ../../mod/events.php:471 +#: ../../mod/directory.php:136 +msgid "Location:" +msgstr "Místo:" + +#: ../../boot.php:1639 ../../include/profile_advanced.php:17 +#: ../../mod/directory.php:138 +msgid "Gender:" +msgstr "Pohlaví:" + +#: ../../boot.php:1642 ../../include/profile_advanced.php:37 +#: ../../mod/directory.php:140 +msgid "Status:" +msgstr "Status:" + +#: ../../boot.php:1644 ../../include/profile_advanced.php:48 +#: ../../mod/directory.php:142 +msgid "Homepage:" +msgstr "Domácí stránka:" + +#: ../../boot.php:1646 ../../include/profile_advanced.php:58 +#: ../../mod/directory.php:144 +msgid "About:" +msgstr "O mě:" + +#: ../../boot.php:1711 +msgid "Network:" +msgstr "Síť:" + +#: ../../boot.php:1743 ../../boot.php:1829 +msgid "g A l F d" +msgstr "g A l F d" + +#: ../../boot.php:1744 ../../boot.php:1830 +msgid "F d" +msgstr "d. F" + +#: ../../boot.php:1789 ../../boot.php:1877 +msgid "[today]" +msgstr "[Dnes]" + +#: ../../boot.php:1801 +msgid "Birthday Reminders" +msgstr "Připomínka narozenin" + +#: ../../boot.php:1802 +msgid "Birthdays this week:" +msgstr "Narozeniny tento týden:" + +#: ../../boot.php:1864 +msgid "[No description]" +msgstr "[Žádný popis]" + +#: ../../boot.php:1888 +msgid "Event Reminders" +msgstr "Připomenutí událostí" + +#: ../../boot.php:1889 +msgid "Events this week:" +msgstr "Události tohoto týdne:" + +#: ../../boot.php:2126 ../../include/nav.php:76 +msgid "Status" +msgstr "Stav" + +#: ../../boot.php:2129 +msgid "Status Messages and Posts" +msgstr "Statusové zprávy a příspěvky " + +#: ../../boot.php:2136 +msgid "Profile Details" +msgstr "Detaily profilu" + +#: ../../boot.php:2143 ../../mod/photos.php:52 +msgid "Photo Albums" +msgstr "Fotoalba" + +#: ../../boot.php:2147 ../../boot.php:2150 ../../include/nav.php:79 +msgid "Videos" +msgstr "Videa" + +#: ../../boot.php:2160 +msgid "Events and Calendar" +msgstr "Události a kalendář" + +#: ../../boot.php:2164 ../../mod/notes.php:44 +msgid "Personal Notes" +msgstr "Osobní poznámky" + +#: ../../boot.php:2167 +msgid "Only You Can See This" +msgstr "Toto můžete vidět jen Vy" + +#: ../../include/features.php:23 +msgid "General Features" +msgstr "Obecné funkčnosti" + +#: ../../include/features.php:25 +msgid "Multiple Profiles" +msgstr "Vícenásobné profily" + +#: ../../include/features.php:25 +msgid "Ability to create multiple profiles" +msgstr "Schopnost vytvořit vícenásobné profily" + +#: ../../include/features.php:30 +msgid "Post Composition Features" +msgstr "Nastavení vytváření příspěvků" + +#: ../../include/features.php:31 +msgid "Richtext Editor" +msgstr "Richtext Editor" + +#: ../../include/features.php:31 +msgid "Enable richtext editor" +msgstr "Povolit richtext editor" + +#: ../../include/features.php:32 +msgid "Post Preview" +msgstr "Náhled příspěvku" + +#: ../../include/features.php:32 +msgid "Allow previewing posts and comments before publishing them" +msgstr "Povolit náhledy příspěvků a komentářů před jejich zveřejněním" + +#: ../../include/features.php:33 +msgid "Auto-mention Forums" +msgstr "Automaticky zmíněná Fóra" + +#: ../../include/features.php:33 +msgid "" +"Add/remove mention when a fourm page is selected/deselected in ACL window." +msgstr "Přidat/odebrat zmínku, když stránka fóra je označena/odznačena v ACL okně" + +#: ../../include/features.php:38 +msgid "Network Sidebar Widgets" +msgstr "Síťové postranní widgety" + +#: ../../include/features.php:39 +msgid "Search by Date" +msgstr "Vyhledávat dle Data" + +#: ../../include/features.php:39 +msgid "Ability to select posts by date ranges" +msgstr "Možnost označit příspěvky dle časového intervalu" + +#: ../../include/features.php:40 +msgid "Group Filter" +msgstr "Skupinový Filtr" + +#: ../../include/features.php:40 +msgid "Enable widget to display Network posts only from selected group" +msgstr "Povolit widget pro zobrazení příspěvků v Síti pouze ze zvolené skupiny" + +#: ../../include/features.php:41 +msgid "Network Filter" +msgstr "Síťový Filtr" + +#: ../../include/features.php:41 +msgid "Enable widget to display Network posts only from selected network" +msgstr "Povolit widget pro zobrazení příspěvků v Síti pouze ze zvolené sítě" + +#: ../../include/features.php:42 ../../mod/network.php:194 +#: ../../mod/search.php:30 +msgid "Saved Searches" +msgstr "Uložená hledání" + +#: ../../include/features.php:42 +msgid "Save search terms for re-use" +msgstr "Uložit kritéria vyhledávání pro znovupoužití" + +#: ../../include/features.php:47 +msgid "Network Tabs" +msgstr "Síťové záložky" + +#: ../../include/features.php:48 +msgid "Network Personal Tab" +msgstr "Osobní síťový záložka " + +#: ../../include/features.php:48 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "Povolit záložku pro zobrazení pouze síťových příspěvků, na které jste reagoval " + +#: ../../include/features.php:49 +msgid "Network New Tab" +msgstr "Nová záložka síť" + +#: ../../include/features.php:49 +msgid "Enable tab to display only new Network posts (from the last 12 hours)" +msgstr "Povolit záložku pro zobrazení pouze nových příspěvků (za posledních 12 hodin)" + +#: ../../include/features.php:50 +msgid "Network Shared Links Tab" +msgstr "záložka Síťové sdílené odkazy " + +#: ../../include/features.php:50 +msgid "Enable tab to display only Network posts with links in them" +msgstr "Povolit záložky pro zobrazování pouze Síťových příspěvků s vazbou na ně" + +#: ../../include/features.php:55 +msgid "Post/Comment Tools" +msgstr "Nástroje Příspěvků/Komentářů" + +#: ../../include/features.php:56 +msgid "Multiple Deletion" +msgstr "Násobné mazání" + +#: ../../include/features.php:56 +msgid "Select and delete multiple posts/comments at once" +msgstr "Označit a smazat více " + +#: ../../include/features.php:57 +msgid "Edit Sent Posts" +msgstr "Editovat Odeslané příspěvky" + +#: ../../include/features.php:57 +msgid "Edit and correct posts and comments after sending" +msgstr "Editovat a opravit příspěvky a komentáře po odeslání" + +#: ../../include/features.php:58 +msgid "Tagging" +msgstr "Štítkování" + +#: ../../include/features.php:58 +msgid "Ability to tag existing posts" +msgstr "Schopnost přidat štítky ke stávajícím příspvěkům" + +#: ../../include/features.php:59 +msgid "Post Categories" +msgstr "Kategorie příspěvků" + +#: ../../include/features.php:59 +msgid "Add categories to your posts" +msgstr "Přidat kategorie k Vašim příspěvkům" + +#: ../../include/features.php:60 ../../include/contact_widgets.php:104 +msgid "Saved Folders" +msgstr "Uložené složky" + +#: ../../include/features.php:60 +msgid "Ability to file posts under folders" +msgstr "Možnost řadit příspěvky do složek" + +#: ../../include/features.php:61 +msgid "Dislike Posts" +msgstr "Označit příspěvky jako neoblíbené" + +#: ../../include/features.php:61 +msgid "Ability to dislike posts/comments" +msgstr "Možnost označit příspěvky/komentáře jako neoblíbené" + +#: ../../include/features.php:62 +msgid "Star Posts" +msgstr "Příspěvky s hvězdou" + +#: ../../include/features.php:62 +msgid "Ability to mark special posts with a star indicator" +msgstr "Možnost označit příspěvky s indikátorem hvězdy" + +#: ../../include/features.php:63 +msgid "Mute Post Notifications" +msgstr "Utlumit upozornění na přísvěvky" + +#: ../../include/features.php:63 +msgid "Ability to mute notifications for a thread" +msgstr "Možnost stlumit upozornění pro vlákno" + +#: ../../include/items.php:2307 ../../include/datetime.php:477 +#, php-format +msgid "%s's birthday" +msgstr "%s má narozeniny" + +#: ../../include/items.php:2308 ../../include/datetime.php:478 +#, php-format +msgid "Happy Birthday %s" +msgstr "Veselé narozeniny %s" + +#: ../../include/items.php:4111 ../../mod/dfrn_request.php:717 +#: ../../mod/dfrn_confirm.php:752 +msgid "[Name Withheld]" +msgstr "[Jméno odepřeno]" + +#: ../../include/items.php:4619 ../../mod/admin.php:169 +#: ../../mod/admin.php:1052 ../../mod/admin.php:1265 ../../mod/viewsrc.php:15 +#: ../../mod/notice.php:15 ../../mod/display.php:82 ../../mod/display.php:284 +#: ../../mod/display.php:503 +msgid "Item not found." +msgstr "Položka nenalezena." + +#: ../../include/items.php:4658 +msgid "Do you really want to delete this item?" +msgstr "Opravdu chcete smazat tuto položku?" + +#: ../../include/items.php:4660 ../../mod/settings.php:1015 +#: ../../mod/settings.php:1021 ../../mod/settings.php:1029 +#: ../../mod/settings.php:1033 ../../mod/settings.php:1038 +#: ../../mod/settings.php:1044 ../../mod/settings.php:1050 +#: ../../mod/settings.php:1056 ../../mod/settings.php:1086 +#: ../../mod/settings.php:1087 ../../mod/settings.php:1088 +#: ../../mod/settings.php:1089 ../../mod/settings.php:1090 +#: ../../mod/contacts.php:341 ../../mod/register.php:233 +#: ../../mod/dfrn_request.php:830 ../../mod/api.php:105 +#: ../../mod/suggest.php:29 ../../mod/message.php:209 +#: ../../mod/profiles.php:661 ../../mod/profiles.php:664 msgid "Yes" msgstr "Ano" -#: ../../mod/contacts.php:340 ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 -#: ../../mod/message.php:212 ../../mod/fbrowser.php:81 -#: ../../mod/fbrowser.php:116 ../../mod/settings.php:615 -#: ../../mod/settings.php:641 ../../mod/dfrn_request.php:844 -#: ../../mod/suggest.php:32 ../../mod/editpost.php:148 -#: ../../mod/photos.php:203 ../../mod/photos.php:292 -#: ../../include/conversation.php:1129 ../../include/items.php:4560 +#: ../../include/items.php:4663 ../../include/conversation.php:1128 +#: ../../mod/settings.php:620 ../../mod/settings.php:646 +#: ../../mod/contacts.php:344 ../../mod/editpost.php:148 +#: ../../mod/dfrn_request.php:844 ../../mod/fbrowser.php:81 +#: ../../mod/fbrowser.php:116 ../../mod/suggest.php:32 +#: ../../mod/photos.php:203 ../../mod/photos.php:292 ../../mod/tagrm.php:11 +#: ../../mod/tagrm.php:94 ../../mod/message.php:212 msgid "Cancel" msgstr "Zrušit" -#: ../../mod/contacts.php:352 -msgid "Contact has been removed." -msgstr "Kontakt byl odstraněn." +#: ../../include/items.php:4881 +msgid "Archives" +msgstr "Archív" -#: ../../mod/contacts.php:390 +#: ../../include/group.php:25 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "Dříve smazaná skupina s tímto jménem byla obnovena. Stávající oprávnění může ovlivnit tuto skupinu a její budoucí členy. Pokud to není to, co jste chtěli, vytvořte, prosím, další skupinu s jiným názvem." + +#: ../../include/group.php:207 +msgid "Default privacy group for new contacts" +msgstr "Defaultní soukromá skrupina pro nové kontakty." + +#: ../../include/group.php:226 +msgid "Everybody" +msgstr "Všichni" + +#: ../../include/group.php:249 +msgid "edit" +msgstr "editovat" + +#: ../../include/group.php:270 ../../mod/newmember.php:66 +msgid "Groups" +msgstr "Skupiny" + +#: ../../include/group.php:271 +msgid "Edit group" +msgstr "Editovat skupinu" + +#: ../../include/group.php:272 +msgid "Create a new group" +msgstr "Vytvořit novou skupinu" + +#: ../../include/group.php:273 +msgid "Contacts not in any group" +msgstr "Kontakty, které nejsou v žádné skupině" + +#: ../../include/group.php:275 ../../mod/network.php:195 +msgid "add" +msgstr "přidat" + +#: ../../include/Photo_old.php:911 ../../include/Photo_old.php:926 +#: ../../include/Photo_old.php:933 ../../include/Photo_old.php:955 +#: ../../include/Photo.php:933 ../../include/Photo.php:948 +#: ../../include/Photo.php:955 ../../include/Photo.php:977 +#: ../../include/message.php:144 ../../mod/wall_upload.php:169 +#: ../../mod/wall_upload.php:178 ../../mod/wall_upload.php:185 +#: ../../mod/item.php:485 +msgid "Wall Photos" +msgstr "Fotografie na zdi" + +#: ../../include/dba.php:56 ../../include/dba_pdo.php:72 #, php-format -msgid "You are mutual friends with %s" -msgstr "Jste vzájemní přátelé s uživatelem %s" +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Nelze nalézt záznam v DNS pro databázový server '%s'" -#: ../../mod/contacts.php:394 +#: ../../include/contact_widgets.php:6 +msgid "Add New Contact" +msgstr "Přidat nový kontakt" + +#: ../../include/contact_widgets.php:7 +msgid "Enter address or web location" +msgstr "Zadejte adresu nebo umístění webu" + +#: ../../include/contact_widgets.php:8 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Příklad: jan@příklad.cz, http://příklad.cz/jana" + +#: ../../include/contact_widgets.php:24 #, php-format -msgid "You are sharing with %s" -msgstr "Sdílíte s uživatelem %s" +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "Pozvánka %d k dispozici" +msgstr[1] "Pozvánky %d k dispozici" +msgstr[2] "Pozvánky %d k dispozici" -#: ../../mod/contacts.php:399 -#, php-format -msgid "%s is sharing with you" -msgstr "uživatel %s sdílí s vámi" +#: ../../include/contact_widgets.php:30 +msgid "Find People" +msgstr "Nalézt lidi" -#: ../../mod/contacts.php:416 -msgid "Private communications are not available for this contact." -msgstr "Soukromá komunikace není dostupná pro tento kontakt." +#: ../../include/contact_widgets.php:31 +msgid "Enter name or interest" +msgstr "Zadejte jméno nebo zájmy" -#: ../../mod/contacts.php:419 ../../mod/admin.php:569 -msgid "Never" -msgstr "Nikdy" +#: ../../include/contact_widgets.php:32 +msgid "Connect/Follow" +msgstr "Připojit / Následovat" -#: ../../mod/contacts.php:423 -msgid "(Update was successful)" -msgstr "(Aktualizace byla úspěšná)" +#: ../../include/contact_widgets.php:33 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Příklady: Robert Morgenstein, rybaření" -#: ../../mod/contacts.php:423 -msgid "(Update was not successful)" -msgstr "(Aktualizace nebyla úspěšná)" +#: ../../include/contact_widgets.php:34 ../../mod/contacts.php:724 +#: ../../mod/directory.php:63 +msgid "Find" +msgstr "Najít" -#: ../../mod/contacts.php:425 -msgid "Suggest friends" -msgstr "Navrhněte přátelé" +#: ../../include/contact_widgets.php:37 +msgid "Random Profile" +msgstr "Náhodný Profil" -#: ../../mod/contacts.php:429 -#, php-format -msgid "Network type: %s" -msgstr "Typ sítě: %s" +#: ../../include/contact_widgets.php:71 +msgid "Networks" +msgstr "Sítě" -#: ../../mod/contacts.php:432 ../../include/contact_widgets.php:200 +#: ../../include/contact_widgets.php:74 +msgid "All Networks" +msgstr "Všechny sítě" + +#: ../../include/contact_widgets.php:107 ../../include/contact_widgets.php:139 +msgid "Everything" +msgstr "Všechno" + +#: ../../include/contact_widgets.php:136 +msgid "Categories" +msgstr "Kategorie" + +#: ../../include/contact_widgets.php:200 ../../mod/contacts.php:439 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" @@ -172,768 +1010,2222 @@ msgstr[0] "%d sdílený kontakt" msgstr[1] "%d sdílených kontaktů" msgstr[2] "%d sdílených kontaktů" -#: ../../mod/contacts.php:437 -msgid "View all contacts" -msgstr "Zobrazit všechny kontakty" +#: ../../include/enotify.php:18 +msgid "Friendica Notification" +msgstr "Friendica Notifikace" -#: ../../mod/contacts.php:442 ../../mod/contacts.php:501 -#: ../../mod/contacts.php:714 ../../mod/admin.php:1009 -msgid "Unblock" -msgstr "Odblokovat" +#: ../../include/enotify.php:21 +msgid "Thank You," +msgstr "Děkujeme, " -#: ../../mod/contacts.php:442 ../../mod/contacts.php:501 -#: ../../mod/contacts.php:714 ../../mod/admin.php:1008 -msgid "Block" -msgstr "Blokovat" +#: ../../include/enotify.php:23 +#, php-format +msgid "%s Administrator" +msgstr "%s Administrátor" -#: ../../mod/contacts.php:445 -msgid "Toggle Blocked status" -msgstr "Přepnout stav Blokováno" +#: ../../include/enotify.php:33 ../../include/delivery.php:467 +#: ../../include/notifier.php:796 +msgid "noreply" +msgstr "neodpovídat" -#: ../../mod/contacts.php:448 ../../mod/contacts.php:502 -#: ../../mod/contacts.php:715 -msgid "Unignore" -msgstr "Přestat ignorovat" +#: ../../include/enotify.php:64 +#, php-format +msgid "%s " +msgstr "%s " -#: ../../mod/contacts.php:448 ../../mod/contacts.php:502 -#: ../../mod/contacts.php:715 ../../mod/notifications.php:51 -#: ../../mod/notifications.php:164 ../../mod/notifications.php:210 -msgid "Ignore" -msgstr "Ignorovat" +#: ../../include/enotify.php:68 +#, php-format +msgid "[Friendica:Notify] New mail received at %s" +msgstr "[Friendica:Upozornění] Obdržena nová zpráva na %s" -#: ../../mod/contacts.php:451 -msgid "Toggle Ignored status" -msgstr "Přepnout stav Ignorováno" +#: ../../include/enotify.php:70 +#, php-format +msgid "%1$s sent you a new private message at %2$s." +msgstr "%1$s Vám poslal novou soukromou zprávu na %2$s." -#: ../../mod/contacts.php:455 ../../mod/contacts.php:716 -msgid "Unarchive" -msgstr "Vrátit z archívu" +#: ../../include/enotify.php:71 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s Vám poslal %2$s." -#: ../../mod/contacts.php:455 ../../mod/contacts.php:716 -msgid "Archive" -msgstr "Archivovat" +#: ../../include/enotify.php:71 +msgid "a private message" +msgstr "soukromá zpráva" -#: ../../mod/contacts.php:458 -msgid "Toggle Archive status" -msgstr "Přepnout stav Archivováno" +#: ../../include/enotify.php:72 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Prosím navštivte %s pro zobrazení Vašich soukromých zpráv a možnost na ně odpovědět." -#: ../../mod/contacts.php:461 -msgid "Repair" -msgstr "Opravit" +#: ../../include/enotify.php:124 +#, php-format +msgid "%1$s commented on [url=%2$s]a %3$s[/url]" +msgstr "%1$s okomentoval na [url=%2$s]%3$s[/url]" -#: ../../mod/contacts.php:464 -msgid "Advanced Contact Settings" -msgstr "Pokročilé nastavení kontaktu" +#: ../../include/enotify.php:131 +#, php-format +msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" +msgstr "%1$s okomentoval na [url=%2$s]%3$s's %4$s[/url]" -#: ../../mod/contacts.php:470 -msgid "Communications lost with this contact!" -msgstr "Komunikace s tímto kontaktem byla ztracena!" +#: ../../include/enotify.php:139 +#, php-format +msgid "%1$s commented on [url=%2$s]your %3$s[/url]" +msgstr "%1$s okomentoval na [url=%2$s]Váš %3$s[/url]" -#: ../../mod/contacts.php:473 -msgid "Contact Editor" -msgstr "Editor kontaktu" +#: ../../include/enotify.php:149 +#, php-format +msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" +msgstr "[Friendica:Upozornění] Komentář ke konverzaci #%1$d od %2$s" -#: ../../mod/contacts.php:475 ../../mod/manage.php:110 -#: ../../mod/fsuggest.php:107 ../../mod/message.php:335 -#: ../../mod/message.php:564 ../../mod/crepair.php:186 -#: ../../mod/events.php:478 ../../mod/content.php:710 -#: ../../mod/install.php:248 ../../mod/install.php:286 ../../mod/mood.php:137 -#: ../../mod/profiles.php:686 ../../mod/localtime.php:45 -#: ../../mod/poke.php:199 ../../mod/invite.php:140 ../../mod/photos.php:1084 -#: ../../mod/photos.php:1203 ../../mod/photos.php:1514 -#: ../../mod/photos.php:1565 ../../mod/photos.php:1609 -#: ../../mod/photos.php:1697 ../../object/Item.php:678 -#: ../../view/theme/cleanzero/config.php:80 -#: ../../view/theme/dispy/config.php:70 ../../view/theme/quattro/config.php:64 -#: ../../view/theme/diabook/config.php:148 -#: ../../view/theme/diabook/theme.php:633 ../../view/theme/vier/config.php:53 -#: ../../view/theme/duepuntozero/config.php:59 -msgid "Submit" -msgstr "Odeslat" +#: ../../include/enotify.php:150 +#, php-format +msgid "%s commented on an item/conversation you have been following." +msgstr "Uživatel %s okomentoval vámi sledovanou položku/konverzaci." -#: ../../mod/contacts.php:476 -msgid "Profile Visibility" -msgstr "Viditelnost profilu" +#: ../../include/enotify.php:153 ../../include/enotify.php:168 +#: ../../include/enotify.php:181 ../../include/enotify.php:194 +#: ../../include/enotify.php:212 ../../include/enotify.php:225 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Prosím navštivte %s pro zobrazení konverzace a možnosti odpovědět." -#: ../../mod/contacts.php:477 +#: ../../include/enotify.php:160 +#, php-format +msgid "[Friendica:Notify] %s posted to your profile wall" +msgstr "[Friendica:Upozornění] %s umístěn na Vaši profilovou zeď" + +#: ../../include/enotify.php:162 +#, php-format +msgid "%1$s posted to your profile wall at %2$s" +msgstr "%1$s přidal příspěvek na Vaši profilovou zeď na %2$s" + +#: ../../include/enotify.php:164 +#, php-format +msgid "%1$s posted to [url=%2$s]your wall[/url]" +msgstr "%1$s napřidáno na [url=%2$s]na Vaši zeď[/url]" + +#: ../../include/enotify.php:175 +#, php-format +msgid "[Friendica:Notify] %s tagged you" +msgstr "[Friendica:Upozornění] %s Vás označil" + +#: ../../include/enotify.php:176 +#, php-format +msgid "%1$s tagged you at %2$s" +msgstr "%1$s Vás označil na %2$s" + +#: ../../include/enotify.php:177 +#, php-format +msgid "%1$s [url=%2$s]tagged you[/url]." +msgstr "%1$s [url=%2$s]Vás označil[/url]." + +#: ../../include/enotify.php:188 +#, php-format +msgid "[Friendica:Notify] %s shared a new post" +msgstr "[Friendica:Notify] %s nasdílel nový příspěvek" + +#: ../../include/enotify.php:189 +#, php-format +msgid "%1$s shared a new post at %2$s" +msgstr "%1$s nasdílel nový příspěvek na %2$s" + +#: ../../include/enotify.php:190 +#, php-format +msgid "%1$s [url=%2$s]shared a post[/url]." +msgstr "%1$s [url=%2$s]nasdílel příspěvek[/url]." + +#: ../../include/enotify.php:202 +#, php-format +msgid "[Friendica:Notify] %1$s poked you" +msgstr "[Friendica:Upozornění] %1$s Vás šťouchnul" + +#: ../../include/enotify.php:203 +#, php-format +msgid "%1$s poked you at %2$s" +msgstr "%1$s Vás šťouchnul na %2$s" + +#: ../../include/enotify.php:204 +#, php-format +msgid "%1$s [url=%2$s]poked you[/url]." +msgstr "Uživatel %1$s [url=%2$s]Vás šťouchnul[/url]." + +#: ../../include/enotify.php:219 +#, php-format +msgid "[Friendica:Notify] %s tagged your post" +msgstr "[Friendica:Upozornění] %s označil Váš příspěvek" + +#: ../../include/enotify.php:220 +#, php-format +msgid "%1$s tagged your post at %2$s" +msgstr "%1$s označil Váš příspěvek na %2$s" + +#: ../../include/enotify.php:221 +#, php-format +msgid "%1$s tagged [url=%2$s]your post[/url]" +msgstr "%1$s označil [url=%2$s]Váš příspěvek[/url]" + +#: ../../include/enotify.php:232 +msgid "[Friendica:Notify] Introduction received" +msgstr "[Friendica:Upozornění] Obdrženo přestavení" + +#: ../../include/enotify.php:233 +#, php-format +msgid "You've received an introduction from '%1$s' at %2$s" +msgstr "Obdržel jste žádost o spojení od '%1$s' na %2$s" + +#: ../../include/enotify.php:234 +#, php-format +msgid "You've received [url=%1$s]an introduction[/url] from %2$s." +msgstr "Obdržel jste [url=%1$s]žádost o spojení[/url] od %2$s." + +#: ../../include/enotify.php:237 ../../include/enotify.php:279 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Můžete navštívit jejich profil na %s" + +#: ../../include/enotify.php:239 +#, php-format +msgid "Please visit %s to approve or reject the introduction." +msgstr "Prosím navštivte %s pro schválení či zamítnutí představení." + +#: ../../include/enotify.php:247 +msgid "[Friendica:Notify] A new person is sharing with you" +msgstr "[Friendica:Upozornění] Nový člověk s vámi sdílí" + +#: ../../include/enotify.php:248 ../../include/enotify.php:249 +#, php-format +msgid "%1$s is sharing with you at %2$s" +msgstr "uživatel %1$s sdílí s vámi ma %2$s" + +#: ../../include/enotify.php:255 +msgid "[Friendica:Notify] You have a new follower" +msgstr "[Friendica:Upozornění] Máte nového následovníka" + +#: ../../include/enotify.php:256 ../../include/enotify.php:257 +#, php-format +msgid "You have a new follower at %2$s : %1$s" +msgstr "Máte nového následovníka na %2$s : %1$s" + +#: ../../include/enotify.php:270 +msgid "[Friendica:Notify] Friend suggestion received" +msgstr "[Friendica:Upozornění] Obdržen návrh na přátelství" + +#: ../../include/enotify.php:271 +#, php-format +msgid "You've received a friend suggestion from '%1$s' at %2$s" +msgstr "Obdržel jste návrh přátelství od '%1$s' na %2$s" + +#: ../../include/enotify.php:272 #, php-format msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Vyberte prosím profil, který chcete zobrazit %s při zabezpečeném prohlížení vašeho profilu." +"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." +msgstr "Obdržel jste [url=%1$s]návrh přátelství[/url] s %2$s from %3$s." -#: ../../mod/contacts.php:478 -msgid "Contact Information / Notes" -msgstr "Kontaktní informace / poznámky" +#: ../../include/enotify.php:277 +msgid "Name:" +msgstr "Jméno:" -#: ../../mod/contacts.php:479 -msgid "Edit contact notes" -msgstr "Editovat poznámky kontaktu" +#: ../../include/enotify.php:278 +msgid "Photo:" +msgstr "Foto:" -#: ../../mod/contacts.php:484 ../../mod/contacts.php:679 -#: ../../mod/viewcontacts.php:64 ../../mod/nogroup.php:40 +#: ../../include/enotify.php:281 #, php-format -msgid "Visit %s's profile [%s]" -msgstr "Navštivte profil uživatele %s [%s]" +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Prosím navštivte %s pro schválení či zamítnutí doporučení." -#: ../../mod/contacts.php:485 -msgid "Block/Unblock contact" -msgstr "Blokovat / Odblokovat kontakt" +#: ../../include/enotify.php:289 ../../include/enotify.php:302 +msgid "[Friendica:Notify] Connection accepted" +msgstr "[Friendica:Upozornění] Spojení akceptováno" -#: ../../mod/contacts.php:486 -msgid "Ignore contact" -msgstr "Ignorovat kontakt" +#: ../../include/enotify.php:290 ../../include/enotify.php:303 +#, php-format +msgid "'%1$s' has acepted your connection request at %2$s" +msgstr "'%1$s' akceptoval váš požadavek na spojení na %2$s" -#: ../../mod/contacts.php:487 -msgid "Repair URL settings" -msgstr "Opravit nastavení adresy URL " +#: ../../include/enotify.php:291 ../../include/enotify.php:304 +#, php-format +msgid "%2$s has accepted your [url=%1$s]connection request[/url]." +msgstr "%2$s akceptoval váš [url=%1$s]požadavek na spojení[/url]." -#: ../../mod/contacts.php:488 -msgid "View conversations" -msgstr "Zobrazit konverzace" +#: ../../include/enotify.php:294 +msgid "" +"You are now mutual friends and may exchange status updates, photos, and email\n" +"\twithout restriction." +msgstr "Jste nyní vzájemnými přáteli a můžete si vyměňovat aktualizace statusu, fotografií a emailů\nbez omezení." -#: ../../mod/contacts.php:490 -msgid "Delete contact" +#: ../../include/enotify.php:297 ../../include/enotify.php:311 +#, php-format +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr "Prosím navštivte %s pokud chcete změnit tento vztah." + +#: ../../include/enotify.php:307 +#, php-format +msgid "" +"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of " +"communication - such as private messaging and some profile interactions. If " +"this is a celebrity or community page, these settings were applied " +"automatically." +msgstr "'%1$s' vás přijal jako \"fanouška\", což omezuje některé formy komunikace - jako jsou soukromé zprávy a některé interakce na profilech. Pokud se jedná o celebritu, případně o komunitní stránky, pak bylo toto nastavení provedeno automaticky.." + +#: ../../include/enotify.php:309 +#, php-format +msgid "" +"'%1$s' may choose to extend this into a two-way or more permissive " +"relationship in the future. " +msgstr "''%1$s' se může rozhodnout rozšířit tento vztah na oboustraný nebo méně restriktivní" + +#: ../../include/enotify.php:322 +msgid "[Friendica System:Notify] registration request" +msgstr "[Systém Friendica :Upozornění] registrační požadavek" + +#: ../../include/enotify.php:323 +#, php-format +msgid "You've received a registration request from '%1$s' at %2$s" +msgstr "Obdržel jste požadavek na registraci od '%1$s' na %2$s" + +#: ../../include/enotify.php:324 +#, php-format +msgid "You've received a [url=%1$s]registration request[/url] from %2$s." +msgstr "Obdržel jste [url=%1$s]požadavek na registraci[/url] od '%2$s'." + +#: ../../include/enotify.php:327 +#, php-format +msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" +msgstr "Plné jméno:\t%1$s\\nUmístění webu:\t%2$s\\nPřihlašovací účet:\t%3$s (%4$s)" + +#: ../../include/enotify.php:330 +#, php-format +msgid "Please visit %s to approve or reject the request." +msgstr "Prosím navštivte %s k odsouhlasení nebo k zamítnutí požadavku." + +#: ../../include/api.php:304 ../../include/api.php:315 +#: ../../include/api.php:416 ../../include/api.php:1063 +#: ../../include/api.php:1065 +msgid "User not found." +msgstr "Uživatel nenalezen" + +#: ../../include/api.php:770 +#, php-format +msgid "Daily posting limit of %d posts reached. The post was rejected." +msgstr "Bylo dosaženo denního limitu %d odeslaných příspěvků. Příspěvek byl odmítnut." + +#: ../../include/api.php:789 +#, php-format +msgid "Weekly posting limit of %d posts reached. The post was rejected." +msgstr "Bylo týdenního limitu %d odeslaných příspěvků. Příspěvek byl odmítnut." + +#: ../../include/api.php:808 +#, php-format +msgid "Monthly posting limit of %d posts reached. The post was rejected." +msgstr "Bylo dosaženo měsíčního limitu %d odeslaných příspěvků. Příspěvek byl odmítnut." + +#: ../../include/api.php:1271 +msgid "There is no status with this id." +msgstr "Není tu žádný status s tímto id." + +#: ../../include/api.php:1341 +msgid "There is no conversation with this id." +msgstr "Nemáme žádnou konverzaci s tímto id." + +#: ../../include/api.php:1613 +msgid "Invalid request." +msgstr "Neplatný požadavek." + +#: ../../include/api.php:1624 +msgid "Invalid item." +msgstr "Neplatná položka." + +#: ../../include/api.php:1634 +msgid "Invalid action. " +msgstr "Neplatná akce" + +#: ../../include/api.php:1642 +msgid "DB error" +msgstr "DB chyba" + +#: ../../include/network.php:890 +msgid "view full size" +msgstr "zobrazit v plné velikosti" + +#: ../../include/Scrape.php:608 +msgid " on Last.fm" +msgstr " na Last.fm" + +#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1133 +msgid "Full Name:" +msgstr "Celé jméno:" + +#: ../../include/profile_advanced.php:22 +msgid "j F, Y" +msgstr "j F, Y" + +#: ../../include/profile_advanced.php:23 +msgid "j F" +msgstr "j F" + +#: ../../include/profile_advanced.php:30 +msgid "Birthday:" +msgstr "Narozeniny:" + +#: ../../include/profile_advanced.php:34 +msgid "Age:" +msgstr "Věk:" + +#: ../../include/profile_advanced.php:43 +#, php-format +msgid "for %1$d %2$s" +msgstr "pro %1$d %2$s" + +#: ../../include/profile_advanced.php:46 ../../mod/profiles.php:714 +msgid "Sexual Preference:" +msgstr "Sexuální preference:" + +#: ../../include/profile_advanced.php:50 ../../mod/profiles.php:716 +msgid "Hometown:" +msgstr "Rodné město" + +#: ../../include/profile_advanced.php:52 +msgid "Tags:" +msgstr "Štítky:" + +#: ../../include/profile_advanced.php:54 ../../mod/profiles.php:717 +msgid "Political Views:" +msgstr "Politické přesvědčení:" + +#: ../../include/profile_advanced.php:56 +msgid "Religion:" +msgstr "Náboženství:" + +#: ../../include/profile_advanced.php:60 +msgid "Hobbies/Interests:" +msgstr "Koníčky/zájmy:" + +#: ../../include/profile_advanced.php:62 ../../mod/profiles.php:721 +msgid "Likes:" +msgstr "Líbí se:" + +#: ../../include/profile_advanced.php:64 ../../mod/profiles.php:722 +msgid "Dislikes:" +msgstr "Nelibí se:" + +#: ../../include/profile_advanced.php:67 +msgid "Contact information and Social Networks:" +msgstr "Kontaktní informace a sociální sítě:" + +#: ../../include/profile_advanced.php:69 +msgid "Musical interests:" +msgstr "Hudební vkus:" + +#: ../../include/profile_advanced.php:71 +msgid "Books, literature:" +msgstr "Knihy, literatura:" + +#: ../../include/profile_advanced.php:73 +msgid "Television:" +msgstr "Televize:" + +#: ../../include/profile_advanced.php:75 +msgid "Film/dance/culture/entertainment:" +msgstr "Film/tanec/kultura/zábava:" + +#: ../../include/profile_advanced.php:77 +msgid "Love/Romance:" +msgstr "Láska/romance" + +#: ../../include/profile_advanced.php:79 +msgid "Work/employment:" +msgstr "Práce/zaměstnání:" + +#: ../../include/profile_advanced.php:81 +msgid "School/education:" +msgstr "Škola/vzdělávání:" + +#: ../../include/nav.php:34 ../../mod/navigation.php:20 +msgid "Nothing new here" +msgstr "Zde není nic nového" + +#: ../../include/nav.php:38 ../../mod/navigation.php:24 +msgid "Clear notifications" +msgstr "Smazat notifikace" + +#: ../../include/nav.php:73 +msgid "End this session" +msgstr "Konec této relace" + +#: ../../include/nav.php:79 +msgid "Your videos" +msgstr "Vaše videa" + +#: ../../include/nav.php:81 +msgid "Your personal notes" +msgstr "Vaše osobní poznámky" + +#: ../../include/nav.php:92 +msgid "Sign in" +msgstr "Přihlásit se" + +#: ../../include/nav.php:105 +msgid "Home Page" +msgstr "Domácí stránka" + +#: ../../include/nav.php:109 +msgid "Create an account" +msgstr "Vytvořit účet" + +#: ../../include/nav.php:114 ../../mod/help.php:36 +msgid "Help" +msgstr "Nápověda" + +#: ../../include/nav.php:114 +msgid "Help and documentation" +msgstr "Nápověda a dokumentace" + +#: ../../include/nav.php:117 +msgid "Apps" +msgstr "Aplikace" + +#: ../../include/nav.php:117 +msgid "Addon applications, utilities, games" +msgstr "Doplňkové aplikace, nástroje, hry" + +#: ../../include/nav.php:119 ../../include/text.php:968 +#: ../../include/text.php:969 ../../mod/search.php:99 +msgid "Search" +msgstr "Vyhledávání" + +#: ../../include/nav.php:119 +msgid "Search site content" +msgstr "Hledání na stránkách tohoto webu" + +#: ../../include/nav.php:129 +msgid "Conversations on this site" +msgstr "Konverzace na tomto webu" + +#: ../../include/nav.php:131 +msgid "Conversations on the network" +msgstr "Konverzace v síti" + +#: ../../include/nav.php:133 +msgid "Directory" +msgstr "Adresář" + +#: ../../include/nav.php:133 +msgid "People directory" +msgstr "Adresář" + +#: ../../include/nav.php:135 +msgid "Information" +msgstr "Informace" + +#: ../../include/nav.php:135 +msgid "Information about this friendica instance" +msgstr "Informace o této instanci Friendica" + +#: ../../include/nav.php:145 ../../mod/notifications.php:83 +msgid "Network" +msgstr "Síť" + +#: ../../include/nav.php:145 +msgid "Conversations from your friends" +msgstr "Konverzace od Vašich přátel" + +#: ../../include/nav.php:146 +msgid "Network Reset" +msgstr "Síťový Reset" + +#: ../../include/nav.php:146 +msgid "Load Network page with no filters" +msgstr "Načíst stránku Síť bez filtrů" + +#: ../../include/nav.php:154 ../../mod/notifications.php:98 +msgid "Introductions" +msgstr "Představení" + +#: ../../include/nav.php:154 +msgid "Friend Requests" +msgstr "Žádosti přátel" + +#: ../../include/nav.php:155 ../../mod/notifications.php:224 +msgid "Notifications" +msgstr "Upozornění" + +#: ../../include/nav.php:156 +msgid "See all notifications" +msgstr "Zobrazit všechny upozornění" + +#: ../../include/nav.php:157 +msgid "Mark all system notifications seen" +msgstr "Označit všechny upozornění systému jako přečtené" + +#: ../../include/nav.php:161 ../../mod/message.php:182 +msgid "Messages" +msgstr "Zprávy" + +#: ../../include/nav.php:161 +msgid "Private mail" +msgstr "Soukromá pošta" + +#: ../../include/nav.php:162 +msgid "Inbox" +msgstr "Doručená pošta" + +#: ../../include/nav.php:163 +msgid "Outbox" +msgstr "Odeslaná pošta" + +#: ../../include/nav.php:164 ../../mod/message.php:9 +msgid "New Message" +msgstr "Nová zpráva" + +#: ../../include/nav.php:167 +msgid "Manage" +msgstr "Spravovat" + +#: ../../include/nav.php:167 +msgid "Manage other pages" +msgstr "Spravovat jiné stránky" + +#: ../../include/nav.php:170 ../../mod/settings.php:67 +msgid "Delegations" +msgstr "Delegace" + +#: ../../include/nav.php:170 ../../mod/delegate.php:130 +msgid "Delegate Page Management" +msgstr "Správa delegátů stránky" + +#: ../../include/nav.php:172 +msgid "Account settings" +msgstr "Nastavení účtu" + +#: ../../include/nav.php:175 +msgid "Manage/Edit Profiles" +msgstr "Spravovat/Editovat Profily" + +#: ../../include/nav.php:177 +msgid "Manage/edit friends and contacts" +msgstr "Spravovat/upravit přátelé a kontakty" + +#: ../../include/nav.php:184 ../../mod/admin.php:130 +msgid "Admin" +msgstr "Administrace" + +#: ../../include/nav.php:184 +msgid "Site setup and configuration" +msgstr "Nastavení webu a konfigurace" + +#: ../../include/nav.php:188 +msgid "Navigation" +msgstr "Navigace" + +#: ../../include/nav.php:188 +msgid "Site map" +msgstr "Mapa webu" + +#: ../../include/plugin.php:455 ../../include/plugin.php:457 +msgid "Click here to upgrade." +msgstr "Klikněte zde pro aktualizaci." + +#: ../../include/plugin.php:463 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Tato akce překročí limit nastavené Vaším předplatným." + +#: ../../include/plugin.php:468 +msgid "This action is not available under your subscription plan." +msgstr "Tato akce není v rámci Vašeho předplatného dostupná." + +#: ../../include/follow.php:27 ../../mod/dfrn_request.php:507 +msgid "Disallowed profile URL." +msgstr "Nepovolené URL profilu." + +#: ../../include/follow.php:32 +msgid "Connect URL missing." +msgstr "Chybí URL adresa." + +#: ../../include/follow.php:59 +msgid "" +"This site is not configured to allow communications with other networks." +msgstr "Tento web není nakonfigurován tak, aby umožňoval komunikaci s ostatními sítěmi." + +#: ../../include/follow.php:60 ../../include/follow.php:80 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "Nenalezen žádný kompatibilní komunikační protokol nebo kanál." + +#: ../../include/follow.php:78 +msgid "The profile address specified does not provide adequate information." +msgstr "Uvedená adresa profilu neposkytuje dostatečné informace." + +#: ../../include/follow.php:82 +msgid "An author or name was not found." +msgstr "Autor nebo jméno nenalezeno" + +#: ../../include/follow.php:84 +msgid "No browser URL could be matched to this address." +msgstr "Této adrese neodpovídá žádné URL prohlížeče." + +#: ../../include/follow.php:86 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "Není možné namapovat adresu identity ve stylu @ s žádným možným protokolem ani emailovým kontaktem." + +#: ../../include/follow.php:87 +msgid "Use mailto: in front of address to force email check." +msgstr "Použite mailo: před adresou k vynucení emailové kontroly." + +#: ../../include/follow.php:93 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "Zadaná adresa profilu patří do sítě, která byla na tomto serveru zakázána." + +#: ../../include/follow.php:103 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "Omezený profil. Tato osoba nebude schopna od Vás přijímat přímé / osobní sdělení." + +#: ../../include/follow.php:205 +msgid "Unable to retrieve contact information." +msgstr "Nepodařilo se získat kontaktní informace." + +#: ../../include/follow.php:258 +msgid "following" +msgstr "následující" + +#: ../../include/uimport.php:94 +msgid "Error decoding account file" +msgstr "Chyba dekódování uživatelského účtu" + +#: ../../include/uimport.php:100 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "Chyba! V datovém souboru není označení verze! Je to opravdu soubor s účtem Friendica?" + +#: ../../include/uimport.php:116 ../../include/uimport.php:127 +msgid "Error! Cannot check nickname" +msgstr "Chyba! Nelze ověřit přezdívku" + +#: ../../include/uimport.php:120 ../../include/uimport.php:131 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "Uživatel '%s' již na tomto serveru existuje!" + +#: ../../include/uimport.php:153 +msgid "User creation error" +msgstr "Chyba vytváření uživatele" + +#: ../../include/uimport.php:171 +msgid "User profile creation error" +msgstr "Chyba vytváření uživatelského účtu" + +#: ../../include/uimport.php:220 +#, php-format +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "%d kontakt nenaimporován" +msgstr[1] "%d kontaktů nenaimporováno" +msgstr[2] "%d kontakty nenaimporovány" + +#: ../../include/uimport.php:290 +msgid "Done. You can now login with your username and password" +msgstr "Hotovo. Nyní se můžete přihlásit se svými uživatelským účtem a heslem" + +#: ../../include/event.php:11 ../../include/bb2diaspora.php:133 +#: ../../mod/localtime.php:12 +msgid "l F d, Y \\@ g:i A" +msgstr "l F d, Y \\@ g:i A" + +#: ../../include/event.php:20 ../../include/bb2diaspora.php:139 +msgid "Starts:" +msgstr "Začíná:" + +#: ../../include/event.php:30 ../../include/bb2diaspora.php:147 +msgid "Finishes:" +msgstr "Končí:" + +#: ../../include/Contact.php:119 +msgid "stopped following" +msgstr "následování zastaveno" + +#: ../../include/Contact.php:232 ../../include/conversation.php:881 +msgid "Poke" +msgstr "Šťouchnout" + +#: ../../include/Contact.php:233 ../../include/conversation.php:875 +msgid "View Status" +msgstr "Zobrazit Status" + +#: ../../include/Contact.php:234 ../../include/conversation.php:876 +msgid "View Profile" +msgstr "Zobrazit Profil" + +#: ../../include/Contact.php:235 ../../include/conversation.php:877 +msgid "View Photos" +msgstr "Zobrazit Fotky" + +#: ../../include/Contact.php:236 ../../include/Contact.php:259 +#: ../../include/conversation.php:878 +msgid "Network Posts" +msgstr "Zobrazit Příspěvky sítě" + +#: ../../include/Contact.php:237 ../../include/Contact.php:259 +#: ../../include/conversation.php:879 +msgid "Edit Contact" +msgstr "Editovat Kontakty" + +#: ../../include/Contact.php:238 +msgid "Drop Contact" msgstr "Odstranit kontakt" -#: ../../mod/contacts.php:494 -msgid "Last update:" -msgstr "Poslední aktualizace:" +#: ../../include/Contact.php:239 ../../include/Contact.php:259 +#: ../../include/conversation.php:880 +msgid "Send PM" +msgstr "Poslat soukromou zprávu" -#: ../../mod/contacts.php:496 -msgid "Update public posts" -msgstr "Aktualizovat veřejné příspěvky" - -#: ../../mod/contacts.php:498 ../../mod/admin.php:1503 -msgid "Update now" -msgstr "Aktualizovat" - -#: ../../mod/contacts.php:505 -msgid "Currently blocked" -msgstr "V současnosti zablokováno" - -#: ../../mod/contacts.php:506 -msgid "Currently ignored" -msgstr "V současnosti ignorováno" - -#: ../../mod/contacts.php:507 -msgid "Currently archived" -msgstr "Aktuálně archivován" - -#: ../../mod/contacts.php:508 ../../mod/notifications.php:157 -#: ../../mod/notifications.php:204 -msgid "Hide this contact from others" -msgstr "Skrýt tento kontakt před ostatními" - -#: ../../mod/contacts.php:508 +#: ../../include/dbstructure.php:26 +#, php-format msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "Odpovědi/Libí se na Vaše veřejné příspěvky mohou být stále viditelné" +"\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 "\n\t\t\tThe friendica vývojáři uvolnili nedávno aktualizaci %s,\n\t\t\tale při pokusu o její instalaci se něco velmi nepovedlo.\n\t\t\tJe třeba to opravit a já to sám nedokážu. Prosím kontaktuj\n\t\t\tfriendica vývojáře, pokud mi s tím nepomůžeš ty sám. Moje databáze může být poškozena." -#: ../../mod/contacts.php:509 -msgid "Notification for new posts" -msgstr "Upozornění na nové příspěvky" - -#: ../../mod/contacts.php:509 -msgid "Send a notification of every new post of this contact" -msgstr "Poslat upozornění při každém novém příspěvku tohoto kontaktu" - -#: ../../mod/contacts.php:510 -msgid "Fetch further information for feeds" -msgstr "Načítat další informace pro kanál" - -#: ../../mod/contacts.php:511 -msgid "Disabled" -msgstr "Zakázáno" - -#: ../../mod/contacts.php:511 -msgid "Fetch information" -msgstr "Načítat informace" - -#: ../../mod/contacts.php:511 -msgid "Fetch information and keywords" -msgstr "Načítat informace a klíčová slova" - -#: ../../mod/contacts.php:513 -msgid "Blacklisted keywords" -msgstr "Zakázaná klíčová slova" - -#: ../../mod/contacts.php:513 +#: ../../include/dbstructure.php:31 +#, php-format msgid "" -"Comma separated list of keywords that should not be converted to hashtags, " -"when \"Fetch information and keywords\" is selected" -msgstr "Čárkou oddělený seznam klíčových slov, které by neměly být převáděna na hashtagy, když je zvoleno \"Načítat informace a klíčová slova\"" +"The error message is\n" +"[pre]%s[/pre]" +msgstr "Chybová zpráva je\n[pre]%s[/pre]" -#: ../../mod/contacts.php:564 -msgid "Suggestions" -msgstr "Doporučení" +#: ../../include/dbstructure.php:150 +msgid "Errors encountered creating database tables." +msgstr "Při vytváření databázových tabulek došlo k chybám." -#: ../../mod/contacts.php:567 -msgid "Suggest potential friends" -msgstr "Navrhnout potenciální přátele" +#: ../../include/dbstructure.php:208 +msgid "Errors encountered performing database changes." +msgstr "Při provádění databázových změn došlo k chybám." -#: ../../mod/contacts.php:570 ../../mod/group.php:194 -msgid "All Contacts" -msgstr "Všechny kontakty" +#: ../../include/datetime.php:43 ../../include/datetime.php:45 +msgid "Miscellaneous" +msgstr "Různé" -#: ../../mod/contacts.php:573 -msgid "Show all contacts" -msgstr "Zobrazit všechny kontakty" +#: ../../include/datetime.php:153 ../../include/datetime.php:290 +msgid "year" +msgstr "rok" -#: ../../mod/contacts.php:576 -msgid "Unblocked" -msgstr "Odblokován" +#: ../../include/datetime.php:158 ../../include/datetime.php:291 +msgid "month" +msgstr "měsíc" -#: ../../mod/contacts.php:579 -msgid "Only show unblocked contacts" -msgstr "Zobrazit pouze neblokované kontakty" +#: ../../include/datetime.php:163 ../../include/datetime.php:293 +msgid "day" +msgstr "den" -#: ../../mod/contacts.php:583 -msgid "Blocked" -msgstr "Blokován" +#: ../../include/datetime.php:276 +msgid "never" +msgstr "nikdy" -#: ../../mod/contacts.php:586 -msgid "Only show blocked contacts" -msgstr "Zobrazit pouze blokované kontakty" +#: ../../include/datetime.php:282 +msgid "less than a second ago" +msgstr "méně než před sekundou" -#: ../../mod/contacts.php:590 -msgid "Ignored" -msgstr "Ignorován" +#: ../../include/datetime.php:290 +msgid "years" +msgstr "let" -#: ../../mod/contacts.php:593 -msgid "Only show ignored contacts" -msgstr "Zobrazit pouze ignorované kontakty" +#: ../../include/datetime.php:291 +msgid "months" +msgstr "měsíců" -#: ../../mod/contacts.php:597 -msgid "Archived" -msgstr "Archivován" +#: ../../include/datetime.php:292 +msgid "week" +msgstr "týdnem" -#: ../../mod/contacts.php:600 -msgid "Only show archived contacts" -msgstr "Zobrazit pouze archivované kontakty" +#: ../../include/datetime.php:292 +msgid "weeks" +msgstr "týdny" -#: ../../mod/contacts.php:604 -msgid "Hidden" -msgstr "Skrytý" +#: ../../include/datetime.php:293 +msgid "days" +msgstr "dnů" -#: ../../mod/contacts.php:607 -msgid "Only show hidden contacts" -msgstr "Zobrazit pouze skryté kontakty" +#: ../../include/datetime.php:294 +msgid "hour" +msgstr "hodina" -#: ../../mod/contacts.php:655 -msgid "Mutual Friendship" -msgstr "Vzájemné přátelství" +#: ../../include/datetime.php:294 +msgid "hours" +msgstr "hodin" -#: ../../mod/contacts.php:659 -msgid "is a fan of yours" -msgstr "je Váš fanoušek" +#: ../../include/datetime.php:295 +msgid "minute" +msgstr "minuta" -#: ../../mod/contacts.php:663 -msgid "you are a fan of" -msgstr "jste fanouškem" +#: ../../include/datetime.php:295 +msgid "minutes" +msgstr "minut" -#: ../../mod/contacts.php:680 ../../mod/nogroup.php:41 -msgid "Edit contact" -msgstr "Editovat kontakt" +#: ../../include/datetime.php:296 +msgid "second" +msgstr "sekunda" -#: ../../mod/contacts.php:702 ../../include/nav.php:177 -#: ../../view/theme/diabook/theme.php:125 -msgid "Contacts" -msgstr "Kontakty" +#: ../../include/datetime.php:296 +msgid "seconds" +msgstr "sekund" -#: ../../mod/contacts.php:706 -msgid "Search your contacts" -msgstr "Prohledat Vaše kontakty" +#: ../../include/datetime.php:305 +#, php-format +msgid "%1$d %2$s ago" +msgstr "před %1$d %2$s" -#: ../../mod/contacts.php:707 ../../mod/directory.php:61 -msgid "Finding: " -msgstr "Zjištění: " +#: ../../include/message.php:15 ../../include/message.php:172 +msgid "[no subject]" +msgstr "[bez předmětu]" -#: ../../mod/contacts.php:708 ../../mod/directory.php:63 -#: ../../include/contact_widgets.php:34 -msgid "Find" -msgstr "Najít" +#: ../../include/delivery.php:456 ../../include/notifier.php:786 +msgid "(no subject)" +msgstr "(Bez předmětu)" -#: ../../mod/contacts.php:713 ../../mod/settings.php:132 -#: ../../mod/settings.php:640 -msgid "Update" -msgstr "Aktualizace" +#: ../../include/contact_selectors.php:32 +msgid "Unknown | Not categorised" +msgstr "Neznámé | Nezařazeno" -#: ../../mod/contacts.php:717 ../../mod/group.php:171 ../../mod/admin.php:1007 -#: ../../mod/content.php:438 ../../mod/content.php:741 -#: ../../mod/settings.php:677 ../../mod/photos.php:1654 -#: ../../object/Item.php:130 ../../include/conversation.php:614 -msgid "Delete" -msgstr "Odstranit" +#: ../../include/contact_selectors.php:33 +msgid "Block immediately" +msgstr "Okamžitě blokovat " -#: ../../mod/hcard.php:10 -msgid "No profile" -msgstr "Žádný profil" +#: ../../include/contact_selectors.php:34 +msgid "Shady, spammer, self-marketer" +msgstr "pochybný, spammer, self-makerter" -#: ../../mod/manage.php:106 -msgid "Manage Identities and/or Pages" -msgstr "Správa identit a / nebo stránek" +#: ../../include/contact_selectors.php:35 +msgid "Known to me, but no opinion" +msgstr "Znám ho ale, ale bez rozhodnutí" -#: ../../mod/manage.php:107 -msgid "" -"Toggle between different identities or community/group pages which share " -"your account details or which you have been granted \"manage\" permissions" -msgstr "Přepnutí mezi různými identitami nebo komunitními/skupinovými stránkami, které sdílí Vaše detaily účtu, nebo kterým jste přidělili oprávnění nastavovat přístupová práva." +#: ../../include/contact_selectors.php:36 +msgid "OK, probably harmless" +msgstr "OK, pravděpodobně neškodný" -#: ../../mod/manage.php:108 -msgid "Select an identity to manage: " -msgstr "Vyberte identitu pro správu: " +#: ../../include/contact_selectors.php:37 +msgid "Reputable, has my trust" +msgstr "Renomovaný, má mou důvěru" -#: ../../mod/oexchange.php:25 -msgid "Post successful." -msgstr "Příspěvek úspěšně odeslán" +#: ../../include/contact_selectors.php:56 ../../mod/admin.php:571 +msgid "Frequently" +msgstr "Často" -#: ../../mod/profperm.php:19 ../../mod/group.php:72 ../../index.php:368 -msgid "Permission denied" -msgstr "Nedostatečné oprávnění" +#: ../../include/contact_selectors.php:57 ../../mod/admin.php:572 +msgid "Hourly" +msgstr "každou hodinu" -#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 -msgid "Invalid profile identifier." -msgstr "Neplatný identifikátor profilu." +#: ../../include/contact_selectors.php:58 ../../mod/admin.php:573 +msgid "Twice daily" +msgstr "Dvakrát denně" -#: ../../mod/profperm.php:101 -msgid "Profile Visibility Editor" -msgstr "Editor viditelnosti profilu " +#: ../../include/contact_selectors.php:59 ../../mod/admin.php:574 +msgid "Daily" +msgstr "denně" -#: ../../mod/profperm.php:103 ../../mod/newmember.php:32 ../../boot.php:2119 -#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:87 -#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:124 -msgid "Profile" -msgstr "Profil" +#: ../../include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Týdenně" -#: ../../mod/profperm.php:105 ../../mod/group.php:224 -msgid "Click on a contact to add or remove." -msgstr "Klikněte na kontakt pro přidání nebo odebrání" +#: ../../include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Měsíčně" -#: ../../mod/profperm.php:114 -msgid "Visible To" -msgstr "Viditelný pro" +#: ../../include/contact_selectors.php:76 ../../mod/dfrn_request.php:836 +msgid "Friendica" +msgstr "Friendica" -#: ../../mod/profperm.php:130 -msgid "All Contacts (with secure profile access)" -msgstr "Všechny kontakty (se zabezpečeným přístupovým profilem )" +#: ../../include/contact_selectors.php:77 +msgid "OStatus" +msgstr "OStatus" -#: ../../mod/display.php:82 ../../mod/display.php:284 -#: ../../mod/display.php:503 ../../mod/viewsrc.php:15 ../../mod/admin.php:169 -#: ../../mod/admin.php:1052 ../../mod/admin.php:1265 ../../mod/notice.php:15 -#: ../../include/items.php:4516 -msgid "Item not found." -msgstr "Položka nenalezena." +#: ../../include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS/Atom" -#: ../../mod/display.php:212 ../../mod/videos.php:115 -#: ../../mod/viewcontacts.php:19 ../../mod/community.php:18 -#: ../../mod/dfrn_request.php:762 ../../mod/search.php:89 -#: ../../mod/directory.php:33 ../../mod/photos.php:920 -msgid "Public access denied." -msgstr "Veřejný přístup odepřen." +#: ../../include/contact_selectors.php:79 +#: ../../include/contact_selectors.php:86 ../../mod/admin.php:1003 +#: ../../mod/admin.php:1015 ../../mod/admin.php:1016 ../../mod/admin.php:1031 +msgid "Email" +msgstr "E-mail" -#: ../../mod/display.php:332 ../../mod/profile.php:155 -msgid "Access to this profile has been restricted." -msgstr "Přístup na tento profil byl omezen." +#: ../../include/contact_selectors.php:80 ../../mod/settings.php:741 +#: ../../mod/dfrn_request.php:838 +msgid "Diaspora" +msgstr "Diaspora" -#: ../../mod/display.php:496 -msgid "Item has been removed." -msgstr "Položka byla odstraněna." - -#: ../../mod/newmember.php:6 -msgid "Welcome to Friendica" -msgstr "Vítejte na Friendica" - -#: ../../mod/newmember.php:8 -msgid "New Member Checklist" -msgstr "Seznam doporučení pro nového člena" - -#: ../../mod/newmember.php:12 -msgid "" -"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." -msgstr "Rádi bychom vám nabídli několik tipů a odkazů pro začátek. Klikněte na jakoukoliv položku pro zobrazení relevantní stránky. Odkaz na tuto stránku bude viditelný z Vaší domovské stránky po dobu dvou týdnů od Vaší první registrace." - -#: ../../mod/newmember.php:14 -msgid "Getting Started" -msgstr "Začínáme" - -#: ../../mod/newmember.php:18 -msgid "Friendica Walk-Through" -msgstr "Prohlídka Friendica " - -#: ../../mod/newmember.php:18 -msgid "" -"On your Quick Start page - find a brief introduction to your " -"profile and network tabs, make some new connections, and find some groups to" -" join." -msgstr "Na Vaší stránce Rychlý Start - naleznete stručné představení k Vašemu profilu a záložce Síť, k vytvoření spojení s novými kontakty a nalezení skupin, ke kterým se můžete připojit." - -#: ../../mod/newmember.php:22 ../../mod/admin.php:1104 -#: ../../mod/admin.php:1325 ../../mod/settings.php:85 -#: ../../include/nav.php:172 ../../view/theme/diabook/theme.php:544 -#: ../../view/theme/diabook/theme.php:648 -msgid "Settings" -msgstr "Nastavení" - -#: ../../mod/newmember.php:26 -msgid "Go to Your Settings" -msgstr "Navštivte své nastavení" - -#: ../../mod/newmember.php:26 -msgid "" -"On your Settings page - change your initial password. Also make a " -"note of your Identity Address. This looks just like an email address - and " -"will be useful in making friends on the free social web." -msgstr "Na Vaší stránce Nastavení - si změňte Vaše první heslo.\nVěnujte také svou pozornost k adrese identity. Vypadá jako emailová adresa a bude Vám užitečná pro navazování přátelství na svobodné sociální síti." - -#: ../../mod/newmember.php:28 -msgid "" -"Review the other settings, particularly the privacy settings. An unpublished" -" directory listing is like having an unlisted phone number. In general, you " -"should probably publish your listing - unless all of your friends and " -"potential friends know exactly how to find you." -msgstr "Prohlédněte si další nastavení, a to zejména nastavení soukromí. Nezveřejnění svého účtu v adresáři je jako mít nezveřejněné telefonní číslo. Obecně platí, že je lepší mít svůj účet zveřejněný, leda by všichni vaši potenciální přátelé věděli, jak vás přesně najít." - -#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244 -#: ../../mod/profiles.php:699 -msgid "Upload Profile Photo" -msgstr "Nahrát profilovou fotografii" - -#: ../../mod/newmember.php:36 -msgid "" -"Upload a profile photo if you have not done so already. Studies have shown " -"that people with real photos of themselves are ten times more likely to make" -" friends than people who do not." -msgstr "Nahrajte si svou profilovou fotku, pokud jste tak již neučinili. Studie ukázaly, že lidé se skutečnými fotografiemi mají desetkrát častěji přátele než lidé, kteří nemají." - -#: ../../mod/newmember.php:38 -msgid "Edit Your Profile" -msgstr "Editujte Váš profil" - -#: ../../mod/newmember.php:38 -msgid "" -"Edit your default profile to your liking. Review the " -"settings for hiding your list of friends and hiding the profile from unknown" -" visitors." -msgstr "Upravit výchozí profil podle vašich představ. Prověřte nastavení pro skrytí Vašeho seznamu přátel a skrytí profilu před neznámými návštěvníky." - -#: ../../mod/newmember.php:40 -msgid "Profile Keywords" -msgstr "Profilová klíčová slova" - -#: ../../mod/newmember.php:40 -msgid "" -"Set some public keywords for your default profile which describe your " -"interests. We may be able to find other people with similar interests and " -"suggest friendships." -msgstr "Nastavte si nějaká veřejné klíčová slova pro výchozí profil, která popisují Vaše zájmy. Friendika Vám může nalézt další lidi s podobnými zájmy a navrhnout přátelství." - -#: ../../mod/newmember.php:44 -msgid "Connecting" -msgstr "Probíhá pokus o připojení" - -#: ../../mod/newmember.php:49 ../../mod/newmember.php:51 -#: ../../include/contact_selectors.php:81 +#: ../../include/contact_selectors.php:81 ../../mod/newmember.php:49 +#: ../../mod/newmember.php:51 msgid "Facebook" msgstr "Facebook" -#: ../../mod/newmember.php:49 -msgid "" -"Authorise the Facebook Connector if you currently have a Facebook account " -"and we will (optionally) import all your Facebook friends and conversations." -msgstr "Jestliže máte účet na Facebooku, povolte konektor na Facebook a bude možné (na přání) importovat všechny Vaš přátele na Facebooku a všechny Vaše konverzace." +#: ../../include/contact_selectors.php:82 +msgid "Zot!" +msgstr "Zot!" -#: ../../mod/newmember.php:51 -msgid "" -"If this is your own personal server, installing the Facebook addon " -"may ease your transition to the free social web." -msgstr "Pokud je toto Váš soukromý server, instalací Facebok doplňku můžete zjednodušit Váš přechod na svobodný sociální web." +#: ../../include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "LinkedIn" -#: ../../mod/newmember.php:56 -msgid "Importing Emails" -msgstr "Importování emaiů" +#: ../../include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "XMPP/IM" -#: ../../mod/newmember.php:56 -msgid "" -"Enter your email access information on your Connector Settings page if you " -"wish to import and interact with friends or mailing lists from your email " -"INBOX" -msgstr "Pokud chcete importovat své přátele nebo mailové skupiny a komunikovat s nimi, zadejte na Vaší stránce Nastavení kontektoru své přístupové údaje do svého emailového účtu" +#: ../../include/contact_selectors.php:85 +msgid "MySpace" +msgstr "MySpace" -#: ../../mod/newmember.php:58 -msgid "Go to Your Contacts Page" -msgstr "Navštivte Vaši stránku s kontakty" +#: ../../include/contact_selectors.php:87 +msgid "Google+" +msgstr "Google+" -#: ../../mod/newmember.php:58 -msgid "" -"Your Contacts page is your gateway to managing friendships and connecting " -"with friends on other networks. Typically you enter their address or site " -"URL in the Add New Contact dialog." -msgstr "Vaše stránka Kontakty je Vaše brána k nastavování přátelství a propojení s přáteli z dalších sítí. Typicky zadáte jejich emailovou adresu nebo URL adresu jejich serveru prostřednictvím dialogu Přidat nový kontakt." +#: ../../include/contact_selectors.php:88 +msgid "pump.io" +msgstr "pump.io" -#: ../../mod/newmember.php:60 -msgid "Go to Your Site's Directory" -msgstr "Navštivte lokální adresář Friendica" +#: ../../include/contact_selectors.php:89 +msgid "Twitter" +msgstr "Twitter" -#: ../../mod/newmember.php:60 -msgid "" -"The Directory page lets you find other people in this network or other " -"federated sites. Look for a Connect or Follow link on " -"their profile page. Provide your own Identity Address if requested." -msgstr "Stránka Adresář Vám pomůže najít další lidi na tomto serveru nebo v jiných propojených serverech. Prostřednictvím odkazů Připojení nebo Následovat si prohlédněte jejich profilovou stránku. Uveďte svou vlastní adresu identity, je-li požadována." +#: ../../include/contact_selectors.php:90 +msgid "Diaspora Connector" +msgstr "Diaspora konektor" -#: ../../mod/newmember.php:62 -msgid "Finding New People" -msgstr "Nalezení nových lidí" +#: ../../include/contact_selectors.php:91 +msgid "Statusnet" +msgstr "Statusnet" -#: ../../mod/newmember.php:62 -msgid "" -"On the side panel of the Contacts page are several tools to find new " -"friends. We can match people by interest, look up people by name or " -"interest, and provide suggestions based on network relationships. On a brand" -" new site, friend suggestions will usually begin to be populated within 24 " -"hours." -msgstr "Na bočním panelu stránky s kontakty je několik nástrojů k nalezení nových přátel. Porovnáme lidi dle zájmů, najdeme lidi podle jména nebo zájmu a poskytneme Vám návrhy založené na přátelství v síti přátel. Na zcela novém serveru se návrhy přátelství nabínou obvykle během 24 hodin." +#: ../../include/contact_selectors.php:92 +msgid "App.net" +msgstr "App.net" -#: ../../mod/newmember.php:66 ../../include/group.php:270 -msgid "Groups" -msgstr "Skupiny" - -#: ../../mod/newmember.php:70 -msgid "Group Your Contacts" -msgstr "Seskupte si své kontakty" - -#: ../../mod/newmember.php:70 -msgid "" -"Once you have made some friends, organize them into private conversation " -"groups from the sidebar of your Contacts page and then you can interact with" -" each group privately on your Network page." -msgstr "Jakmile získáte nějaké přátele, uspořádejte si je do soukromých konverzačních skupin na postranním panelu Vaší stránky Kontakty a pak můžete komunikovat s každou touto skupinu soukromě prostřednictvím stránky Síť." - -#: ../../mod/newmember.php:73 -msgid "Why Aren't My Posts Public?" -msgstr "Proč nejsou mé příspěvky veřejné?" - -#: ../../mod/newmember.php:73 -msgid "" -"Friendica respects your privacy. By default, your posts will only show up to" -" people you've added as friends. For more information, see the help section " -"from the link above." -msgstr "Friendica respektuje Vaše soukromí. Defaultně jsou Vaše příspěvky viditelné pouze lidem, které označíte jako Vaše přátelé. Více informací naleznete v nápovědě na výše uvedeném odkazu" - -#: ../../mod/newmember.php:78 -msgid "Getting Help" -msgstr "Získání nápovědy" - -#: ../../mod/newmember.php:82 -msgid "Go to the Help Section" -msgstr "Navštivte sekci nápovědy" - -#: ../../mod/newmember.php:82 -msgid "" -"Our help pages may be consulted for detail on other program" -" features and resources." -msgstr "Na stránkách Nápověda naleznete nejen další podrobnosti o všech funkcích Friendika ale také další zdroje informací." - -#: ../../mod/openid.php:24 -msgid "OpenID protocol error. No ID returned." -msgstr "Chyba OpenID protokolu. Navrátilo se žádné ID." - -#: ../../mod/openid.php:53 -msgid "" -"Account not found and OpenID registration is not permitted on this site." -msgstr "Nenalezen účet a OpenID registrace na tomto serveru není dovolena." - -#: ../../mod/openid.php:93 ../../include/auth.php:112 -#: ../../include/auth.php:175 -msgid "Login failed." -msgstr "Přihlášení se nezdařilo." - -#: ../../mod/profile_photo.php:44 -msgid "Image uploaded but image cropping failed." -msgstr "Obrázek byl odeslán, ale jeho oříznutí se nesdařilo." - -#: ../../mod/profile_photo.php:74 ../../mod/profile_photo.php:81 -#: ../../mod/profile_photo.php:88 ../../mod/profile_photo.php:204 -#: ../../mod/profile_photo.php:296 ../../mod/profile_photo.php:305 -#: ../../mod/photos.php:155 ../../mod/photos.php:731 ../../mod/photos.php:1187 -#: ../../mod/photos.php:1210 ../../include/user.php:335 -#: ../../include/user.php:342 ../../include/user.php:349 -#: ../../view/theme/diabook/theme.php:500 -msgid "Profile Photos" -msgstr "Profilové fotografie" - -#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84 -#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308 +#: ../../include/diaspora.php:621 ../../include/conversation.php:172 +#: ../../mod/dfrn_confirm.php:486 #, php-format -msgid "Image size reduction [%s] failed." -msgstr "Nepodařilo se snížit velikost obrázku [%s]." +msgid "%1$s is now friends with %2$s" +msgstr "%1$s je nyní přítel s %2$s" -#: ../../mod/profile_photo.php:118 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Znovu načtěte stránku (Shift+F5) nebo vymažte cache prohlížeče, pokud se nové fotografie nezobrazí okamžitě." +#: ../../include/diaspora.php:704 +msgid "Sharing notification from Diaspora network" +msgstr "Sdílení oznámení ze sítě Diaspora" -#: ../../mod/profile_photo.php:128 -msgid "Unable to process image" -msgstr "Obrázek nelze zpracovat " +#: ../../include/diaspora.php:2444 +msgid "Attachments:" +msgstr "Přílohy:" -#: ../../mod/profile_photo.php:144 ../../mod/wall_upload.php:122 +#: ../../include/conversation.php:140 ../../mod/like.php:168 #, php-format -msgid "Image exceeds size limit of %d" -msgstr "Obrázek překročil limit velikosti %d" +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "%1$s nemá rád %2$s na %3$s" -#: ../../mod/profile_photo.php:153 ../../mod/wall_upload.php:144 -#: ../../mod/photos.php:807 -msgid "Unable to process image." -msgstr "Obrázek není možné zprocesovat" - -#: ../../mod/profile_photo.php:242 -msgid "Upload File:" -msgstr "Nahrát soubor:" - -#: ../../mod/profile_photo.php:243 -msgid "Select a profile:" -msgstr "Vybrat profil:" - -#: ../../mod/profile_photo.php:245 -msgid "Upload" -msgstr "Nahrát" - -#: ../../mod/profile_photo.php:248 ../../mod/settings.php:1062 -msgid "or" -msgstr "nebo" - -#: ../../mod/profile_photo.php:248 -msgid "skip this step" -msgstr "přeskočit tento krok " - -#: ../../mod/profile_photo.php:248 -msgid "select a photo from your photo albums" -msgstr "Vybrat fotografii z Vašich fotoalb" - -#: ../../mod/profile_photo.php:262 -msgid "Crop Image" -msgstr "Oříznout obrázek" - -#: ../../mod/profile_photo.php:263 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Prosím, ořízněte tento obrázek pro optimální zobrazení." - -#: ../../mod/profile_photo.php:265 -msgid "Done Editing" -msgstr "Editace dokončena" - -#: ../../mod/profile_photo.php:299 -msgid "Image uploaded successfully." -msgstr "Obrázek byl úspěšně nahrán." - -#: ../../mod/profile_photo.php:301 ../../mod/wall_upload.php:172 -#: ../../mod/photos.php:834 -msgid "Image upload failed." -msgstr "Nahrání obrázku selhalo." - -#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:149 -#: ../../include/conversation.php:126 ../../include/conversation.php:254 -#: ../../include/text.php:1968 ../../include/diaspora.php:2087 -#: ../../view/theme/diabook/theme.php:471 -msgid "photo" -msgstr "fotografie" - -#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:149 -#: ../../mod/like.php:319 ../../include/conversation.php:121 -#: ../../include/conversation.php:130 ../../include/conversation.php:249 -#: ../../include/conversation.php:258 ../../include/diaspora.php:2087 -#: ../../view/theme/diabook/theme.php:466 -#: ../../view/theme/diabook/theme.php:475 -msgid "status" -msgstr "Stav" - -#: ../../mod/subthread.php:103 +#: ../../include/conversation.php:206 #, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s následuje %3$s uživatele %2$s" +msgid "%1$s poked %2$s" +msgstr "%1$s šťouchnul %2$s" -#: ../../mod/tagrm.php:41 -msgid "Tag removed" -msgstr "Štítek odstraněn" +#: ../../include/conversation.php:226 ../../mod/mood.php:62 +#, php-format +msgid "%1$s is currently %2$s" +msgstr "%1$s je právě %2$s" -#: ../../mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "Odebrat štítek položky" +#: ../../include/conversation.php:265 ../../mod/tagger.php:95 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s označen uživatelem %2$s %3$s s %4$s" -#: ../../mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "Vyberte štítek k odebrání: " +#: ../../include/conversation.php:290 +msgid "post/item" +msgstr "příspěvek/položka" -#: ../../mod/tagrm.php:93 ../../mod/delegate.php:139 -msgid "Remove" +#: ../../include/conversation.php:291 +#, php-format +msgid "%1$s marked %2$s's %3$s as favorite" +msgstr "uživatel %1$s označil %2$s's %3$s jako oblíbeného" + +#: ../../include/conversation.php:612 ../../object/Item.php:129 +#: ../../mod/photos.php:1653 ../../mod/content.php:437 +#: ../../mod/content.php:740 +msgid "Select" +msgstr "Vybrat" + +#: ../../include/conversation.php:613 ../../object/Item.php:130 +#: ../../mod/group.php:171 ../../mod/settings.php:682 +#: ../../mod/contacts.php:733 ../../mod/admin.php:1007 +#: ../../mod/photos.php:1654 ../../mod/content.php:438 +#: ../../mod/content.php:741 +msgid "Delete" msgstr "Odstranit" -#: ../../mod/filer.php:30 ../../include/conversation.php:1006 -#: ../../include/conversation.php:1024 +#: ../../include/conversation.php:653 ../../object/Item.php:326 +#: ../../object/Item.php:327 ../../mod/content.php:471 +#: ../../mod/content.php:852 ../../mod/content.php:853 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Zobrazit profil uživatele %s na %s" + +#: ../../include/conversation.php:665 ../../object/Item.php:316 +msgid "Categories:" +msgstr "Kategorie:" + +#: ../../include/conversation.php:666 ../../object/Item.php:317 +msgid "Filed under:" +msgstr "Vyplněn pod:" + +#: ../../include/conversation.php:673 ../../object/Item.php:340 +#: ../../mod/content.php:481 ../../mod/content.php:864 +#, php-format +msgid "%s from %s" +msgstr "%s od %s" + +#: ../../include/conversation.php:689 ../../mod/content.php:497 +msgid "View in context" +msgstr "Pohled v kontextu" + +#: ../../include/conversation.php:691 ../../include/conversation.php:1108 +#: ../../object/Item.php:364 ../../mod/wallmessage.php:156 +#: ../../mod/editpost.php:124 ../../mod/photos.php:1545 +#: ../../mod/message.php:334 ../../mod/message.php:565 +#: ../../mod/content.php:499 ../../mod/content.php:883 +msgid "Please wait" +msgstr "Čekejte prosím" + +#: ../../include/conversation.php:771 +msgid "remove" +msgstr "odstranit" + +#: ../../include/conversation.php:775 +msgid "Delete Selected Items" +msgstr "Smazat vybrané položky" + +#: ../../include/conversation.php:874 +msgid "Follow Thread" +msgstr "Následovat vlákno" + +#: ../../include/conversation.php:943 +#, php-format +msgid "%s likes this." +msgstr "%s se to líbí." + +#: ../../include/conversation.php:943 +#, php-format +msgid "%s doesn't like this." +msgstr "%s se to nelíbí." + +#: ../../include/conversation.php:948 +#, php-format +msgid "%2$d people like this" +msgstr "%2$d lidem se to líbí" + +#: ../../include/conversation.php:951 +#, php-format +msgid "%2$d people don't like this" +msgstr "%2$d lidem se to nelíbí" + +#: ../../include/conversation.php:965 +msgid "and" +msgstr "a" + +#: ../../include/conversation.php:971 +#, php-format +msgid ", and %d other people" +msgstr ", a %d dalších lidí" + +#: ../../include/conversation.php:973 +#, php-format +msgid "%s like this." +msgstr "%s se to líbí." + +#: ../../include/conversation.php:973 +#, php-format +msgid "%s don't like this." +msgstr "%s se to nelíbí." + +#: ../../include/conversation.php:1000 ../../include/conversation.php:1018 +msgid "Visible to everybody" +msgstr "Viditelné pro všechny" + +#: ../../include/conversation.php:1001 ../../include/conversation.php:1019 +#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135 +#: ../../mod/message.php:283 ../../mod/message.php:291 +#: ../../mod/message.php:466 ../../mod/message.php:474 +msgid "Please enter a link URL:" +msgstr "Zadejte prosím URL odkaz:" + +#: ../../include/conversation.php:1002 ../../include/conversation.php:1020 +msgid "Please enter a video link/URL:" +msgstr "Prosím zadejte URL adresu videa:" + +#: ../../include/conversation.php:1003 ../../include/conversation.php:1021 +msgid "Please enter an audio link/URL:" +msgstr "Prosím zadejte URL adresu zvukového záznamu:" + +#: ../../include/conversation.php:1004 ../../include/conversation.php:1022 +msgid "Tag term:" +msgstr "Štítek:" + +#: ../../include/conversation.php:1005 ../../include/conversation.php:1023 +#: ../../mod/filer.php:30 msgid "Save to Folder:" msgstr "Uložit do složky:" -#: ../../mod/filer.php:30 -msgid "- select -" -msgstr "- vyber -" +#: ../../include/conversation.php:1006 ../../include/conversation.php:1024 +msgid "Where are you right now?" +msgstr "Kde právě jste?" -#: ../../mod/filer.php:31 ../../mod/editpost.php:109 ../../mod/notes.php:63 -#: ../../include/text.php:956 +#: ../../include/conversation.php:1007 +msgid "Delete item(s)?" +msgstr "Smazat položku(y)?" + +#: ../../include/conversation.php:1050 +msgid "Post to Email" +msgstr "Poslat příspěvek na e-mail" + +#: ../../include/conversation.php:1055 +#, php-format +msgid "Connectors disabled, since \"%s\" is enabled." +msgstr "Kontektory deaktivovány, od \"%s\" je aktivován." + +#: ../../include/conversation.php:1056 ../../mod/settings.php:1033 +msgid "Hide your profile details from unknown viewers?" +msgstr "Skrýt Vaše profilové detaily před neznámými uživateli?" + +#: ../../include/conversation.php:1089 ../../mod/photos.php:1544 +msgid "Share" +msgstr "Sdílet" + +#: ../../include/conversation.php:1090 ../../mod/wallmessage.php:154 +#: ../../mod/editpost.php:110 ../../mod/message.php:332 +#: ../../mod/message.php:562 +msgid "Upload photo" +msgstr "Nahrát fotografii" + +#: ../../include/conversation.php:1091 ../../mod/editpost.php:111 +msgid "upload photo" +msgstr "nahrát fotky" + +#: ../../include/conversation.php:1092 ../../mod/editpost.php:112 +msgid "Attach file" +msgstr "Přiložit soubor" + +#: ../../include/conversation.php:1093 ../../mod/editpost.php:113 +msgid "attach file" +msgstr "přidat soubor" + +#: ../../include/conversation.php:1094 ../../mod/wallmessage.php:155 +#: ../../mod/editpost.php:114 ../../mod/message.php:333 +#: ../../mod/message.php:563 +msgid "Insert web link" +msgstr "Vložit webový odkaz" + +#: ../../include/conversation.php:1095 ../../mod/editpost.php:115 +msgid "web link" +msgstr "webový odkaz" + +#: ../../include/conversation.php:1096 ../../mod/editpost.php:116 +msgid "Insert video link" +msgstr "Zadejte odkaz na video" + +#: ../../include/conversation.php:1097 ../../mod/editpost.php:117 +msgid "video link" +msgstr "odkaz na video" + +#: ../../include/conversation.php:1098 ../../mod/editpost.php:118 +msgid "Insert audio link" +msgstr "Zadejte odkaz na zvukový záznam" + +#: ../../include/conversation.php:1099 ../../mod/editpost.php:119 +msgid "audio link" +msgstr "odkaz na audio" + +#: ../../include/conversation.php:1100 ../../mod/editpost.php:120 +msgid "Set your location" +msgstr "Nastavte vaši polohu" + +#: ../../include/conversation.php:1101 ../../mod/editpost.php:121 +msgid "set location" +msgstr "nastavit místo" + +#: ../../include/conversation.php:1102 ../../mod/editpost.php:122 +msgid "Clear browser location" +msgstr "Odstranit adresu v prohlížeči" + +#: ../../include/conversation.php:1103 ../../mod/editpost.php:123 +msgid "clear location" +msgstr "vymazat místo" + +#: ../../include/conversation.php:1105 ../../mod/editpost.php:137 +msgid "Set title" +msgstr "Nastavit titulek" + +#: ../../include/conversation.php:1107 ../../mod/editpost.php:139 +msgid "Categories (comma-separated list)" +msgstr "Kategorie (čárkou oddělený seznam)" + +#: ../../include/conversation.php:1109 ../../mod/editpost.php:125 +msgid "Permission settings" +msgstr "Nastavení oprávnění" + +#: ../../include/conversation.php:1110 +msgid "permissions" +msgstr "oprávnění" + +#: ../../include/conversation.php:1118 ../../mod/editpost.php:133 +msgid "CC: email addresses" +msgstr "skrytá kopie: e-mailové adresy" + +#: ../../include/conversation.php:1119 ../../mod/editpost.php:134 +msgid "Public post" +msgstr "Veřejný příspěvek" + +#: ../../include/conversation.php:1121 ../../mod/editpost.php:140 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Příklad: bob@example.com, mary@example.com" + +#: ../../include/conversation.php:1125 ../../object/Item.php:687 +#: ../../mod/editpost.php:145 ../../mod/photos.php:1566 +#: ../../mod/photos.php:1610 ../../mod/photos.php:1698 +#: ../../mod/content.php:719 +msgid "Preview" +msgstr "Náhled" + +#: ../../include/conversation.php:1134 +msgid "Post to Groups" +msgstr "Zveřejnit na Groups" + +#: ../../include/conversation.php:1135 +msgid "Post to Contacts" +msgstr "Zveřejnit na Groups" + +#: ../../include/conversation.php:1136 +msgid "Private post" +msgstr "Soukromý příspěvek" + +#: ../../include/text.php:297 +msgid "newer" +msgstr "novější" + +#: ../../include/text.php:299 +msgid "older" +msgstr "starší" + +#: ../../include/text.php:304 +msgid "prev" +msgstr "předchozí" + +#: ../../include/text.php:306 +msgid "first" +msgstr "první" + +#: ../../include/text.php:338 +msgid "last" +msgstr "poslední" + +#: ../../include/text.php:341 +msgid "next" +msgstr "další" + +#: ../../include/text.php:396 +msgid "Loading more entries..." +msgstr "Načítání více záznamů..." + +#: ../../include/text.php:397 +msgid "The end" +msgstr "Konec" + +#: ../../include/text.php:870 +msgid "No contacts" +msgstr "Žádné kontakty" + +#: ../../include/text.php:879 +#, php-format +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "%d kontakt" +msgstr[1] "%d kontaktů" +msgstr[2] "%d kontaktů" + +#: ../../include/text.php:891 ../../mod/viewcontacts.php:78 +msgid "View Contacts" +msgstr "Zobrazit kontakty" + +#: ../../include/text.php:971 ../../mod/editpost.php:109 +#: ../../mod/notes.php:63 ../../mod/filer.php:31 msgid "Save" msgstr "Uložit" -#: ../../mod/follow.php:27 -msgid "Contact added" -msgstr "Kontakt přidán" +#: ../../include/text.php:1020 +msgid "poke" +msgstr "šťouchnout" -#: ../../mod/item.php:113 -msgid "Unable to locate original post." -msgstr "Nelze nalézt původní příspěvek." +#: ../../include/text.php:1020 +msgid "poked" +msgstr "šťouchnut" -#: ../../mod/item.php:345 -msgid "Empty post discarded." -msgstr "Prázdný příspěvek odstraněn." +#: ../../include/text.php:1021 +msgid "ping" +msgstr "cinknout" -#: ../../mod/item.php:484 ../../mod/wall_upload.php:169 -#: ../../mod/wall_upload.php:178 ../../mod/wall_upload.php:185 -#: ../../include/Photo.php:916 ../../include/Photo.php:931 -#: ../../include/Photo.php:938 ../../include/Photo.php:960 -#: ../../include/message.php:144 -msgid "Wall Photos" -msgstr "Fotografie na zdi" +#: ../../include/text.php:1021 +msgid "pinged" +msgstr "cinkut" -#: ../../mod/item.php:938 -msgid "System error. Post not saved." -msgstr "Chyba systému. Příspěvek nebyl uložen." +#: ../../include/text.php:1022 +msgid "prod" +msgstr "pobídnout" -#: ../../mod/item.php:964 +#: ../../include/text.php:1022 +msgid "prodded" +msgstr "pobídnut" + +#: ../../include/text.php:1023 +msgid "slap" +msgstr "dát facku" + +#: ../../include/text.php:1023 +msgid "slapped" +msgstr "být uhozen" + +#: ../../include/text.php:1024 +msgid "finger" +msgstr "osahávat" + +#: ../../include/text.php:1024 +msgid "fingered" +msgstr "osaháván" + +#: ../../include/text.php:1025 +msgid "rebuff" +msgstr "odmítnout" + +#: ../../include/text.php:1025 +msgid "rebuffed" +msgstr "odmítnut" + +#: ../../include/text.php:1039 +msgid "happy" +msgstr "šťasný" + +#: ../../include/text.php:1040 +msgid "sad" +msgstr "smutný" + +#: ../../include/text.php:1041 +msgid "mellow" +msgstr "jemný" + +#: ../../include/text.php:1042 +msgid "tired" +msgstr "unavený" + +#: ../../include/text.php:1043 +msgid "perky" +msgstr "emergický" + +#: ../../include/text.php:1044 +msgid "angry" +msgstr "nazlobený" + +#: ../../include/text.php:1045 +msgid "stupified" +msgstr "otupen" + +#: ../../include/text.php:1046 +msgid "puzzled" +msgstr "popletený" + +#: ../../include/text.php:1047 +msgid "interested" +msgstr "zajímavý" + +#: ../../include/text.php:1048 +msgid "bitter" +msgstr "hořký" + +#: ../../include/text.php:1049 +msgid "cheerful" +msgstr "radnostný" + +#: ../../include/text.php:1050 +msgid "alive" +msgstr "naživu" + +#: ../../include/text.php:1051 +msgid "annoyed" +msgstr "otráven" + +#: ../../include/text.php:1052 +msgid "anxious" +msgstr "znepokojený" + +#: ../../include/text.php:1053 +msgid "cranky" +msgstr "mrzutý" + +#: ../../include/text.php:1054 +msgid "disturbed" +msgstr "vyrušen" + +#: ../../include/text.php:1055 +msgid "frustrated" +msgstr "frustrovaný" + +#: ../../include/text.php:1056 +msgid "motivated" +msgstr "motivovaný" + +#: ../../include/text.php:1057 +msgid "relaxed" +msgstr "uvolněný" + +#: ../../include/text.php:1058 +msgid "surprised" +msgstr "překvapený" + +#: ../../include/text.php:1228 +msgid "Monday" +msgstr "Pondělí" + +#: ../../include/text.php:1228 +msgid "Tuesday" +msgstr "Úterý" + +#: ../../include/text.php:1228 +msgid "Wednesday" +msgstr "Středa" + +#: ../../include/text.php:1228 +msgid "Thursday" +msgstr "Čtvrtek" + +#: ../../include/text.php:1228 +msgid "Friday" +msgstr "Pátek" + +#: ../../include/text.php:1228 +msgid "Saturday" +msgstr "Sobota" + +#: ../../include/text.php:1228 +msgid "Sunday" +msgstr "Neděle" + +#: ../../include/text.php:1232 +msgid "January" +msgstr "Ledna" + +#: ../../include/text.php:1232 +msgid "February" +msgstr "Února" + +#: ../../include/text.php:1232 +msgid "March" +msgstr "Března" + +#: ../../include/text.php:1232 +msgid "April" +msgstr "Dubna" + +#: ../../include/text.php:1232 +msgid "May" +msgstr "Května" + +#: ../../include/text.php:1232 +msgid "June" +msgstr "Června" + +#: ../../include/text.php:1232 +msgid "July" +msgstr "Července" + +#: ../../include/text.php:1232 +msgid "August" +msgstr "Srpna" + +#: ../../include/text.php:1232 +msgid "September" +msgstr "Září" + +#: ../../include/text.php:1232 +msgid "October" +msgstr "Října" + +#: ../../include/text.php:1232 +msgid "November" +msgstr "Listopadu" + +#: ../../include/text.php:1232 +msgid "December" +msgstr "Prosinec" + +#: ../../include/text.php:1422 ../../mod/videos.php:301 +msgid "View Video" +msgstr "Zobrazit video" + +#: ../../include/text.php:1454 +msgid "bytes" +msgstr "bytů" + +#: ../../include/text.php:1478 ../../include/text.php:1490 +msgid "Click to open/close" +msgstr "Klikněte pro otevření/zavření" + +#: ../../include/text.php:1664 ../../include/text.php:1674 +#: ../../mod/events.php:335 +msgid "link to source" +msgstr "odkaz na zdroj" + +#: ../../include/text.php:1731 +msgid "Select an alternate language" +msgstr "Vyběr alternativního jazyka" + +#: ../../include/text.php:1987 +msgid "activity" +msgstr "aktivita" + +#: ../../include/text.php:1989 ../../object/Item.php:389 +#: ../../object/Item.php:402 ../../mod/content.php:605 +msgid "comment" +msgid_plural "comments" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "komentář" + +#: ../../include/text.php:1990 +msgid "post" +msgstr "příspěvek" + +#: ../../include/text.php:2158 +msgid "Item filed" +msgstr "Položka vyplněna" + +#: ../../include/auth.php:38 +msgid "Logged out." +msgstr "Odhlášen." + +#: ../../include/auth.php:112 ../../include/auth.php:175 +#: ../../mod/openid.php:93 +msgid "Login failed." +msgstr "Přihlášení se nezdařilo." + +#: ../../include/auth.php:128 ../../include/user.php:67 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "Zaznamenali jsme problém s Vaším přihlášením prostřednictvím Vámi zadaným OpenID. Prosím ověřte si, že jste ID zadali správně. " + +#: ../../include/auth.php:128 ../../include/user.php:67 +msgid "The error message was:" +msgstr "Chybová zpráva byla:" + +#: ../../include/bbcode.php:433 ../../include/bbcode.php:1066 +#: ../../include/bbcode.php:1067 +msgid "Image/photo" +msgstr "Obrázek/fotografie" + +#: ../../include/bbcode.php:531 +#, php-format +msgid "%2$s %3$s" +msgstr "%2$s %3$s" + +#: ../../include/bbcode.php:565 #, php-format msgid "" -"This message was sent to you by %s, a member of the Friendica social " -"network." -msgstr "Tato zpráva vám byla zaslána od %s, člena sociální sítě Friendica." +"%s wrote the following post" +msgstr "%s napsal následující příspěvek" -#: ../../mod/item.php:966 -#, php-format -msgid "You may visit them online at %s" -msgstr "Můžete je navštívit online na adrese %s" +#: ../../include/bbcode.php:1030 ../../include/bbcode.php:1050 +msgid "$1 wrote:" +msgstr "$1 napsal:" -#: ../../mod/item.php:967 +#: ../../include/bbcode.php:1075 ../../include/bbcode.php:1076 +msgid "Encrypted content" +msgstr "Šifrovaný obsah" + +#: ../../include/security.php:22 +msgid "Welcome " +msgstr "Vítejte " + +#: ../../include/security.php:23 +msgid "Please upload a profile photo." +msgstr "Prosím nahrejte profilovou fotografii" + +#: ../../include/security.php:26 +msgid "Welcome back " +msgstr "Vítejte zpět " + +#: ../../include/security.php:366 msgid "" -"Please contact the sender by replying to this post if you do not wish to " -"receive these messages." -msgstr "Pokud nechcete dostávat tyto zprávy, kontaktujte prosím odesilatele odpovědí na tento záznam." +"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 "Formulářový bezpečnostní token nebyl správný. To pravděpodobně nastalo kvůli tom, že formulář byl otevřen příliš dlouho (>3 hodiny) před jeho odesláním." -#: ../../mod/item.php:971 +#: ../../include/oembed.php:213 +msgid "Embedded content" +msgstr "vložený obsah" + +#: ../../include/oembed.php:222 +msgid "Embedding disabled" +msgstr "Vkládání zakázáno" + +#: ../../include/profile_selectors.php:6 +msgid "Male" +msgstr "Muž" + +#: ../../include/profile_selectors.php:6 +msgid "Female" +msgstr "Žena" + +#: ../../include/profile_selectors.php:6 +msgid "Currently Male" +msgstr "V současné době muž" + +#: ../../include/profile_selectors.php:6 +msgid "Currently Female" +msgstr "V současné době žena" + +#: ../../include/profile_selectors.php:6 +msgid "Mostly Male" +msgstr "Většinou muž" + +#: ../../include/profile_selectors.php:6 +msgid "Mostly Female" +msgstr "Většinou žena" + +#: ../../include/profile_selectors.php:6 +msgid "Transgender" +msgstr "Transgender" + +#: ../../include/profile_selectors.php:6 +msgid "Intersex" +msgstr "Intersex" + +#: ../../include/profile_selectors.php:6 +msgid "Transsexual" +msgstr "Transexuál" + +#: ../../include/profile_selectors.php:6 +msgid "Hermaphrodite" +msgstr "Hermafrodit" + +#: ../../include/profile_selectors.php:6 +msgid "Neuter" +msgstr "Neutrál" + +#: ../../include/profile_selectors.php:6 +msgid "Non-specific" +msgstr "Nespecifikováno" + +#: ../../include/profile_selectors.php:6 +msgid "Other" +msgstr "Jiné" + +#: ../../include/profile_selectors.php:6 +msgid "Undecided" +msgstr "Nerozhodnuto" + +#: ../../include/profile_selectors.php:23 +msgid "Males" +msgstr "Muži" + +#: ../../include/profile_selectors.php:23 +msgid "Females" +msgstr "Ženy" + +#: ../../include/profile_selectors.php:23 +msgid "Gay" +msgstr "Gay" + +#: ../../include/profile_selectors.php:23 +msgid "Lesbian" +msgstr "Lesbička" + +#: ../../include/profile_selectors.php:23 +msgid "No Preference" +msgstr "Bez preferencí" + +#: ../../include/profile_selectors.php:23 +msgid "Bisexual" +msgstr "Bisexuál" + +#: ../../include/profile_selectors.php:23 +msgid "Autosexual" +msgstr "Autosexuál" + +#: ../../include/profile_selectors.php:23 +msgid "Abstinent" +msgstr "Abstinent" + +#: ../../include/profile_selectors.php:23 +msgid "Virgin" +msgstr "panic/panna" + +#: ../../include/profile_selectors.php:23 +msgid "Deviant" +msgstr "Deviant" + +#: ../../include/profile_selectors.php:23 +msgid "Fetish" +msgstr "Fetišista" + +#: ../../include/profile_selectors.php:23 +msgid "Oodles" +msgstr "Hodně" + +#: ../../include/profile_selectors.php:23 +msgid "Nonsexual" +msgstr "Nesexuální" + +#: ../../include/profile_selectors.php:42 +msgid "Single" +msgstr "Svobodný" + +#: ../../include/profile_selectors.php:42 +msgid "Lonely" +msgstr "Osamnělý" + +#: ../../include/profile_selectors.php:42 +msgid "Available" +msgstr "Dostupný" + +#: ../../include/profile_selectors.php:42 +msgid "Unavailable" +msgstr "Nedostupný" + +#: ../../include/profile_selectors.php:42 +msgid "Has crush" +msgstr "Zamilovaný" + +#: ../../include/profile_selectors.php:42 +msgid "Infatuated" +msgstr "Zabouchnutý" + +#: ../../include/profile_selectors.php:42 +msgid "Dating" +msgstr "Seznamující se" + +#: ../../include/profile_selectors.php:42 +msgid "Unfaithful" +msgstr "Nevěrný" + +#: ../../include/profile_selectors.php:42 +msgid "Sex Addict" +msgstr "Závislý na sexu" + +#: ../../include/profile_selectors.php:42 ../../include/user.php:289 +#: ../../include/user.php:293 +msgid "Friends" +msgstr "Přátelé" + +#: ../../include/profile_selectors.php:42 +msgid "Friends/Benefits" +msgstr "Přátelé / výhody" + +#: ../../include/profile_selectors.php:42 +msgid "Casual" +msgstr "Ležérní" + +#: ../../include/profile_selectors.php:42 +msgid "Engaged" +msgstr "Zadaný" + +#: ../../include/profile_selectors.php:42 +msgid "Married" +msgstr "Ženatý/vdaná" + +#: ../../include/profile_selectors.php:42 +msgid "Imaginarily married" +msgstr "Pomyslně ženatý/vdaná" + +#: ../../include/profile_selectors.php:42 +msgid "Partners" +msgstr "Partneři" + +#: ../../include/profile_selectors.php:42 +msgid "Cohabiting" +msgstr "Žijící ve společné domácnosti" + +#: ../../include/profile_selectors.php:42 +msgid "Common law" +msgstr "Zvykové právo" + +#: ../../include/profile_selectors.php:42 +msgid "Happy" +msgstr "Šťastný" + +#: ../../include/profile_selectors.php:42 +msgid "Not looking" +msgstr "Nehledající" + +#: ../../include/profile_selectors.php:42 +msgid "Swinger" +msgstr "Swinger" + +#: ../../include/profile_selectors.php:42 +msgid "Betrayed" +msgstr "Zrazen" + +#: ../../include/profile_selectors.php:42 +msgid "Separated" +msgstr "Odloučený" + +#: ../../include/profile_selectors.php:42 +msgid "Unstable" +msgstr "Nestálý" + +#: ../../include/profile_selectors.php:42 +msgid "Divorced" +msgstr "Rozvedený(á)" + +#: ../../include/profile_selectors.php:42 +msgid "Imaginarily divorced" +msgstr "Pomyslně rozvedený" + +#: ../../include/profile_selectors.php:42 +msgid "Widowed" +msgstr "Ovdovělý(á)" + +#: ../../include/profile_selectors.php:42 +msgid "Uncertain" +msgstr "Nejistý" + +#: ../../include/profile_selectors.php:42 +msgid "It's complicated" +msgstr "Je to složité" + +#: ../../include/profile_selectors.php:42 +msgid "Don't care" +msgstr "Nezajímá" + +#: ../../include/profile_selectors.php:42 +msgid "Ask me" +msgstr "Zeptej se mě" + +#: ../../include/user.php:40 +msgid "An invitation is required." +msgstr "Pozvánka je vyžadována." + +#: ../../include/user.php:45 +msgid "Invitation could not be verified." +msgstr "Pozvánka nemohla být ověřena." + +#: ../../include/user.php:53 +msgid "Invalid OpenID url" +msgstr "Neplatný odkaz OpenID" + +#: ../../include/user.php:74 +msgid "Please enter the required information." +msgstr "Zadejte prosím požadované informace." + +#: ../../include/user.php:88 +msgid "Please use a shorter name." +msgstr "Použijte prosím kratší jméno." + +#: ../../include/user.php:90 +msgid "Name too short." +msgstr "Jméno je příliš krátké." + +#: ../../include/user.php:105 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "Nezdá se, že by to bylo vaše celé jméno (křestní jméno a příjmení)." + +#: ../../include/user.php:110 +msgid "Your email domain is not among those allowed on this site." +msgstr "Váš e-mailová doména není na tomto serveru mezi povolenými." + +#: ../../include/user.php:113 +msgid "Not a valid email address." +msgstr "Neplatná e-mailová adresa." + +#: ../../include/user.php:126 +msgid "Cannot use that email." +msgstr "Tento e-mail nelze použít." + +#: ../../include/user.php:132 +msgid "" +"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " +"must also begin with a letter." +msgstr "Vaše \"přezdívka\" může obsahovat pouze \"a-z\", \"0-9\", \"-\", a \"_\", a musí začínat písmenem." + +#: ../../include/user.php:138 ../../include/user.php:236 +msgid "Nickname is already registered. Please choose another." +msgstr "Přezdívka je již registrována. Prosím vyberte jinou." + +#: ../../include/user.php:148 +msgid "" +"Nickname was once registered here and may not be re-used. Please choose " +"another." +msgstr "Tato přezdívka již zde byla použita a nemůže být využita znovu. Prosím vyberete si jinou." + +#: ../../include/user.php:164 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "Závažná chyba: Generování bezpečnostních klíčů se nezdařilo." + +#: ../../include/user.php:222 +msgid "An error occurred during registration. Please try again." +msgstr "Došlo k chybě při registraci. Zkuste to prosím znovu." + +#: ../../include/user.php:257 +msgid "An error occurred creating your default profile. Please try again." +msgstr "Došlo k chybě při vytváření Vašeho výchozího profilu. Zkuste to prosím znovu." + +#: ../../include/user.php:377 #, php-format -msgid "%s posted an update." -msgstr "%s poslal aktualizaci." +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tThank you for registering at %2$s. Your account has been created.\n" +"\t" +msgstr "\n\t\tDrahý %1$s,\n\t\t\tDěkujeme Vám za registraci na %2$s. Váš účet byl vytvořen.\n\t" + +#: ../../include/user.php:381 +#, php-format +msgid "" +"\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." +msgstr "\n\t\tVaše přihlašovací údaje jsou následující:\n\t\t\tAdresa webu:\t%3$s\n\t\t\tpřihlašovací jméno:\t%1$s\n\t\t\theslo:\t%5$s\n\n\t\tHeslo si můžete změnit na stránce \"Nastavení\" vašeho účtu poté, co se přihlásíte.\n\n\t\tProsím věnujte pár chvil revizi dalšího nastavení vašeho účtu na dané stránce.\n\n\t\tTaké su můžete přidat nějaké základní informace do svého výchozího profilu (na stránce \"Profily\"), takže ostatní lidé vás snáze najdou.\n\n\t\tDoporučujeme Vám uvést celé jméno a i foto. Přidáním nějakých \"klíčových slov\" (velmi užitečné pro hledání nových přátel) a možná také zemi, ve které žijete, pokud nechcete být více konkrétní.\n\n\t\tPlně resepktujeme vaše právo na soukromí a nic z výše uvedeného není povinné.\n\t\tPokud jste zde nový a neznáte zde nikoho, uvedením daných informací můžete získat nové přátele.\n\n\n\t\tDíky a vítejte na %2$s." + +#: ../../include/user.php:413 ../../mod/admin.php:838 +#, php-format +msgid "Registration details for %s" +msgstr "Registrační údaje pro %s" + +#: ../../include/acl_selectors.php:333 +msgid "Visible to everybody" +msgstr "Viditelné pro všechny" + +#: ../../object/Item.php:94 +msgid "This entry was edited" +msgstr "Tento záznam byl editován" + +#: ../../object/Item.php:116 ../../mod/photos.php:1359 +#: ../../mod/content.php:620 +msgid "Private Message" +msgstr "Soukromá zpráva" + +#: ../../object/Item.php:120 ../../mod/settings.php:681 +#: ../../mod/content.php:728 +msgid "Edit" +msgstr "Upravit" + +#: ../../object/Item.php:133 ../../mod/content.php:763 +msgid "save to folder" +msgstr "uložit do složky" + +#: ../../object/Item.php:195 ../../mod/content.php:753 +msgid "add star" +msgstr "přidat hvězdu" + +#: ../../object/Item.php:196 ../../mod/content.php:754 +msgid "remove star" +msgstr "odebrat hvězdu" + +#: ../../object/Item.php:197 ../../mod/content.php:755 +msgid "toggle star status" +msgstr "přepnout hvězdu" + +#: ../../object/Item.php:200 ../../mod/content.php:758 +msgid "starred" +msgstr "označeno hvězdou" + +#: ../../object/Item.php:208 +msgid "ignore thread" +msgstr "ignorovat vlákno" + +#: ../../object/Item.php:209 +msgid "unignore thread" +msgstr "přestat ignorovat vlákno" + +#: ../../object/Item.php:210 +msgid "toggle ignore status" +msgstr "přepnout stav Ignorování" + +#: ../../object/Item.php:213 +msgid "ignored" +msgstr "ignorován" + +#: ../../object/Item.php:220 ../../mod/content.php:759 +msgid "add tag" +msgstr "přidat štítek" + +#: ../../object/Item.php:231 ../../mod/photos.php:1542 +#: ../../mod/content.php:684 +msgid "I like this (toggle)" +msgstr "Líbí se mi to (přepínač)" + +#: ../../object/Item.php:231 ../../mod/content.php:684 +msgid "like" +msgstr "má rád" + +#: ../../object/Item.php:232 ../../mod/photos.php:1543 +#: ../../mod/content.php:685 +msgid "I don't like this (toggle)" +msgstr "Nelíbí se mi to (přepínač)" + +#: ../../object/Item.php:232 ../../mod/content.php:685 +msgid "dislike" +msgstr "nemá rád" + +#: ../../object/Item.php:234 ../../mod/content.php:687 +msgid "Share this" +msgstr "Sdílet toto" + +#: ../../object/Item.php:234 ../../mod/content.php:687 +msgid "share" +msgstr "sdílí" + +#: ../../object/Item.php:328 ../../mod/content.php:854 +msgid "to" +msgstr "pro" + +#: ../../object/Item.php:329 +msgid "via" +msgstr "přes" + +#: ../../object/Item.php:330 ../../mod/content.php:855 +msgid "Wall-to-Wall" +msgstr "Zeď-na-Zeď" + +#: ../../object/Item.php:331 ../../mod/content.php:856 +msgid "via Wall-To-Wall:" +msgstr "přes Zeď-na-Zeď " + +#: ../../object/Item.php:387 ../../mod/content.php:603 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d komentář" +msgstr[1] "%d komentářů" +msgstr[2] "%d komentářů" + +#: ../../object/Item.php:675 ../../mod/photos.php:1562 +#: ../../mod/photos.php:1606 ../../mod/photos.php:1694 +#: ../../mod/content.php:707 +msgid "This is you" +msgstr "Nastavte Vaši polohu" + +#: ../../object/Item.php:679 ../../mod/content.php:711 +msgid "Bold" +msgstr "Tučné" + +#: ../../object/Item.php:680 ../../mod/content.php:712 +msgid "Italic" +msgstr "Kurzíva" + +#: ../../object/Item.php:681 ../../mod/content.php:713 +msgid "Underline" +msgstr "Podrtžené" + +#: ../../object/Item.php:682 ../../mod/content.php:714 +msgid "Quote" +msgstr "Citovat" + +#: ../../object/Item.php:683 ../../mod/content.php:715 +msgid "Code" +msgstr "Kód" + +#: ../../object/Item.php:684 ../../mod/content.php:716 +msgid "Image" +msgstr "Obrázek" + +#: ../../object/Item.php:685 ../../mod/content.php:717 +msgid "Link" +msgstr "Odkaz" + +#: ../../object/Item.php:686 ../../mod/content.php:718 +msgid "Video" +msgstr "Video" + +#: ../../mod/attach.php:8 +msgid "Item not available." +msgstr "Položka není k dispozici." + +#: ../../mod/attach.php:20 +msgid "Item was not found." +msgstr "Položka nebyla nalezena." + +#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "Došlo k překročení maximálního počtu zpráv na zeď během jednoho dne. Zpráva %s nedoručena." + +#: ../../mod/wallmessage.php:56 ../../mod/message.php:63 +msgid "No recipient selected." +msgstr "Nevybrán příjemce." + +#: ../../mod/wallmessage.php:59 +msgid "Unable to check your home location." +msgstr "Nebylo možné zjistit Vaši domácí lokaci." + +#: ../../mod/wallmessage.php:62 ../../mod/message.php:70 +msgid "Message could not be sent." +msgstr "Zprávu se nepodařilo odeslat." + +#: ../../mod/wallmessage.php:65 ../../mod/message.php:73 +msgid "Message collection failure." +msgstr "Sběr zpráv selhal." + +#: ../../mod/wallmessage.php:68 ../../mod/message.php:76 +msgid "Message sent." +msgstr "Zpráva odeslána." + +#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 +msgid "No recipient." +msgstr "Žádný příjemce." + +#: ../../mod/wallmessage.php:142 ../../mod/message.php:319 +msgid "Send Private Message" +msgstr "Odeslat soukromou zprávu" + +#: ../../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 "Pokud si přejete, aby uživatel %s mohl odpovědět, ověřte si zda-li máte povoleno na svém serveru zasílání soukromých zpráv od neznámých odesilatelů." + +#: ../../mod/wallmessage.php:144 ../../mod/message.php:320 +#: ../../mod/message.php:553 +msgid "To:" +msgstr "Adresát:" + +#: ../../mod/wallmessage.php:145 ../../mod/message.php:325 +#: ../../mod/message.php:555 +msgid "Subject:" +msgstr "Předmět:" + +#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134 +#: ../../mod/message.php:329 ../../mod/message.php:558 +msgid "Your message:" +msgstr "Vaše zpráva:" #: ../../mod/group.php:29 msgid "Group created." @@ -979,386 +3271,72 @@ msgstr "Editor skupin" msgid "Members" msgstr "Členové" -#: ../../mod/apps.php:7 ../../index.php:212 -msgid "You must be logged in to use addons. " -msgstr "Musíte být přihlášeni pro použití rozšíření." +#: ../../mod/group.php:194 ../../mod/contacts.php:586 +msgid "All Contacts" +msgstr "Všechny kontakty" -#: ../../mod/apps.php:11 -msgid "Applications" -msgstr "Aplikace" +#: ../../mod/group.php:224 ../../mod/profperm.php:105 +msgid "Click on a contact to add or remove." +msgstr "Klikněte na kontakt pro přidání nebo odebrání" -#: ../../mod/apps.php:14 -msgid "No installed applications." -msgstr "Žádné nainstalované aplikace." +#: ../../mod/delegate.php:101 +msgid "No potential page delegates located." +msgstr "Žádní potenciální delegáti stránky nenalezeni." -#: ../../mod/dfrn_confirm.php:64 ../../mod/profiles.php:18 -#: ../../mod/profiles.php:133 ../../mod/profiles.php:179 -#: ../../mod/profiles.php:630 -msgid "Profile not found." -msgstr "Profil nenalezen" - -#: ../../mod/dfrn_confirm.php:120 ../../mod/fsuggest.php:20 -#: ../../mod/fsuggest.php:92 ../../mod/crepair.php:133 -msgid "Contact not found." -msgstr "Kontakt nenalezen." - -#: ../../mod/dfrn_confirm.php:121 +#: ../../mod/delegate.php:132 msgid "" -"This may occasionally happen if contact was requested by both persons and it" -" has already been approved." -msgstr "To se může občas stát pokud kontakt byl zažádán oběma osobami a již byl schválen." +"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 "Delegáti jsou schopni řídit všechny aspekty tohoto účtu / stránky, kromě základních nastavení účtu. Prosím, nepředávejte svůj osobní účet nikomu, komu úplně nevěříte.." -#: ../../mod/dfrn_confirm.php:240 -msgid "Response from remote site was not understood." -msgstr "Odpověď ze vzdáleného serveru nebyla srozumitelná." +#: ../../mod/delegate.php:133 +msgid "Existing Page Managers" +msgstr "Stávající správci stránky" -#: ../../mod/dfrn_confirm.php:249 ../../mod/dfrn_confirm.php:254 -msgid "Unexpected response from remote site: " -msgstr "Neočekávaná odpověď od vzdáleného serveru:" +#: ../../mod/delegate.php:135 +msgid "Existing Page Delegates" +msgstr "Stávající delegáti stránky " -#: ../../mod/dfrn_confirm.php:263 -msgid "Confirmation completed successfully." -msgstr "Potvrzení úspěšně dokončena." +#: ../../mod/delegate.php:137 +msgid "Potential Delegates" +msgstr "Potenciální delegáti" -#: ../../mod/dfrn_confirm.php:265 ../../mod/dfrn_confirm.php:279 -#: ../../mod/dfrn_confirm.php:286 -msgid "Remote site reported: " -msgstr "Vzdálený server oznámil:" +#: ../../mod/delegate.php:139 ../../mod/tagrm.php:93 +msgid "Remove" +msgstr "Odstranit" -#: ../../mod/dfrn_confirm.php:277 -msgid "Temporary failure. Please wait and try again." -msgstr "Dočasné selhání. Prosím, vyčkejte a zkuste to znovu." +#: ../../mod/delegate.php:140 +msgid "Add" +msgstr "Přidat" -#: ../../mod/dfrn_confirm.php:284 -msgid "Introduction failed or was revoked." -msgstr "Žádost o propojení selhala nebo byla zrušena." - -#: ../../mod/dfrn_confirm.php:429 -msgid "Unable to set contact photo." -msgstr "Nelze nastavit fotografii kontaktu." - -#: ../../mod/dfrn_confirm.php:486 ../../include/conversation.php:172 -#: ../../include/diaspora.php:620 -#, php-format -msgid "%1$s is now friends with %2$s" -msgstr "%1$s je nyní přítel s %2$s" - -#: ../../mod/dfrn_confirm.php:571 -#, php-format -msgid "No user record found for '%s' " -msgstr "Pro '%s' nenalezen žádný uživatelský záznam " - -#: ../../mod/dfrn_confirm.php:581 -msgid "Our site encryption key is apparently messed up." -msgstr "Náš šifrovací klíč zřejmě přestal správně fungovat." - -#: ../../mod/dfrn_confirm.php:592 -msgid "Empty site URL was provided or URL could not be decrypted by us." -msgstr "Byla poskytnuta prázdná URL adresa nebo se nepodařilo URL adresu dešifrovat." - -#: ../../mod/dfrn_confirm.php:613 -msgid "Contact record was not found for you on our site." -msgstr "Kontakt záznam nebyl nalezen pro vás na našich stránkách." - -#: ../../mod/dfrn_confirm.php:627 -#, php-format -msgid "Site public key not available in contact record for URL %s." -msgstr "V adresáři není k dispozici veřejný klíč pro URL %s." - -#: ../../mod/dfrn_confirm.php:647 -msgid "" -"The ID provided by your system is a duplicate on our system. It should work " -"if you try again." -msgstr "Váš systém poskytl duplicitní ID vůči našemu systému. Pokuste se akci zopakovat." - -#: ../../mod/dfrn_confirm.php:658 -msgid "Unable to set your contact credentials on our system." -msgstr "Nelze nastavit Vaše přihlašovací údaje v našem systému." - -#: ../../mod/dfrn_confirm.php:725 -msgid "Unable to update your contact profile details on our system" -msgstr "Nelze aktualizovat Váš profil v našem systému" - -#: ../../mod/dfrn_confirm.php:752 ../../mod/dfrn_request.php:717 -#: ../../include/items.php:4008 -msgid "[Name Withheld]" -msgstr "[Jméno odepřeno]" - -#: ../../mod/dfrn_confirm.php:797 -#, php-format -msgid "%1$s has joined %2$s" -msgstr "%1$s se připojil k %2$s" - -#: ../../mod/profile.php:21 ../../boot.php:1458 -msgid "Requested profile is not available." -msgstr "Požadovaný profil není k dispozici." - -#: ../../mod/profile.php:180 -msgid "Tips for New Members" -msgstr "Tipy pro nové členy" - -#: ../../mod/videos.php:125 -msgid "No videos selected" -msgstr "Není vybráno žádné video" - -#: ../../mod/videos.php:226 ../../mod/photos.php:1031 -msgid "Access to this item is restricted." -msgstr "Přístup k této položce je omezen." - -#: ../../mod/videos.php:301 ../../include/text.php:1405 -msgid "View Video" -msgstr "Zobrazit video" - -#: ../../mod/videos.php:308 ../../mod/photos.php:1808 -msgid "View Album" -msgstr "Zobrazit album" - -#: ../../mod/videos.php:317 -msgid "Recent Videos" -msgstr "Aktuální Videa" - -#: ../../mod/videos.php:319 -msgid "Upload New Videos" -msgstr "Nahrát nová videa" - -#: ../../mod/tagger.php:95 ../../include/conversation.php:266 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s označen uživatelem %2$s %3$s s %4$s" - -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Návrhy přátelství odeslány " - -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Navrhněte přátelé" - -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Navrhněte přátelé pro uživatele %s" - -#: ../../mod/lostpass.php:19 -msgid "No valid account found." -msgstr "Nenalezen žádný platný účet." - -#: ../../mod/lostpass.php:35 -msgid "Password reset request issued. Check your email." -msgstr "Žádost o obnovení hesla vyřízena. Zkontrolujte Vaši e-mailovou schránku." - -#: ../../mod/lostpass.php:42 -#, php-format -msgid "" -"\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." -msgstr "\n\t\tDrahý %1$s,\n\t\t\tNa \"%2$s\" jsme obdrželi požadavek na obnovu vašeho hesla \n\t\tpassword. Pro potvrzení žádosti prosím klikněte na zaslaný verifikační odkaz níže nebo si ho zkopírujte do adresní řádky prohlížeče.\n\n\t\tPokud jste tuto žádost nezasílaliI prosím na uvedený odkaz neklikejte a tento email smažte.\n\n\t\tVaše heslo nebude změněno dokud nebudeme moci oveřit, že jste autorem této žádosti." - -#: ../../mod/lostpass.php:53 -#, php-format -msgid "" -"\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" -msgstr "\n\t\tKlikněte na následující odkaz pro potvrzení Vaší identity:\n\n\t\t%1$s\n\n\t\tNásledně obdržíte zprávu obsahující nové heslo.\n\t\tHeslo si můžete si změnit na stránce nastavení účtu poté, co se přihlásíte.\n\n\t\tVaše přihlašovací údaje jsou následující:\n\n\t\tUmístění webu:\t%2$s\n\t\tPřihlašovací jméno:\t%3$s" - -#: ../../mod/lostpass.php:72 -#, php-format -msgid "Password reset requested at %s" -msgstr "Na %s bylo zažádáno o resetování hesla" - -#: ../../mod/lostpass.php:92 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "Žádost nemohla být ověřena. (Možná jste ji odeslali již dříve.) Obnovení hesla se nezdařilo." - -#: ../../mod/lostpass.php:109 ../../boot.php:1280 -msgid "Password Reset" -msgstr "Obnovení hesla" - -#: ../../mod/lostpass.php:110 -msgid "Your password has been reset as requested." -msgstr "Vaše heslo bylo na Vaše přání resetováno." - -#: ../../mod/lostpass.php:111 -msgid "Your new password is" -msgstr "Někdo Vám napsal na Vaši profilovou stránku" - -#: ../../mod/lostpass.php:112 -msgid "Save or copy your new password - and then" -msgstr "Uložte si nebo zkopírujte nové heslo - a pak" - -#: ../../mod/lostpass.php:113 -msgid "click here to login" -msgstr "klikněte zde pro přihlášení" - -#: ../../mod/lostpass.php:114 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Nezdá se, že by to bylo Vaše celé jméno (křestní jméno a příjmení)." - -#: ../../mod/lostpass.php:125 -#, php-format -msgid "" -"\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" -msgstr "\n\t\t\t\tDrahý %1$s,\n⇥⇥⇥⇥⇥Vaše heslo bylo na požádání změněno. Prosím uchovejte si tuto informaci (nebo si změntě heslo ihned na něco, co si budete pamatovat).\t" - -#: ../../mod/lostpass.php:131 -#, php-format -msgid "" -"\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" -msgstr "\n\t\t\t\tVaše přihlašovací údaje jsou následující:\n\n\t\t\t\tUmístění webu:\t%1$s\n\t\t\t\tPřihlašovací jméno:\t%2$s\n\t\t\t\tHeslo:\t%3$s\n\n\t\t\t\tHeslo si můžete si změnit na stránce nastavení účtu poté, co se přihlásíte.\n\t\t\t" - -#: ../../mod/lostpass.php:147 -#, php-format -msgid "Your password has been changed at %s" -msgstr "Vaše heslo bylo změněno na %s" - -#: ../../mod/lostpass.php:159 -msgid "Forgot your Password?" -msgstr "Zapomněli jste heslo?" - -#: ../../mod/lostpass.php:160 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Zadejte svůj e-mailovou adresu a odešlete žádost o zaslání Vašeho nového hesla. Poté zkontrolujte svůj e-mail pro další instrukce." - -#: ../../mod/lostpass.php:161 -msgid "Nickname or Email: " -msgstr "Přezdívka nebo e-mail: " - -#: ../../mod/lostpass.php:162 -msgid "Reset" -msgstr "Reset" - -#: ../../mod/like.php:166 ../../include/conversation.php:137 -#: ../../include/diaspora.php:2103 ../../view/theme/diabook/theme.php:480 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s má rád %2$s' na %3$s" - -#: ../../mod/like.php:168 ../../include/conversation.php:140 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s nemá rád %2$s na %3$s" - -#: ../../mod/ping.php:240 -msgid "{0} wants to be your friend" -msgstr "{0} chce být Vaším přítelem" - -#: ../../mod/ping.php:245 -msgid "{0} sent you a message" -msgstr "{0} vám poslal zprávu" - -#: ../../mod/ping.php:250 -msgid "{0} requested registration" -msgstr "{0} požaduje registraci" - -#: ../../mod/ping.php:256 -#, php-format -msgid "{0} commented %s's post" -msgstr "{0} komentoval příspěvek uživatele %s" - -#: ../../mod/ping.php:261 -#, php-format -msgid "{0} liked %s's post" -msgstr "{0} má rád příspěvek uživatele %s" - -#: ../../mod/ping.php:266 -#, php-format -msgid "{0} disliked %s's post" -msgstr "{0} nemá rád příspěvek uživatele %s" - -#: ../../mod/ping.php:271 -#, php-format -msgid "{0} is now friends with %s" -msgstr "{0} se skamarádil s %s" - -#: ../../mod/ping.php:276 -msgid "{0} posted" -msgstr "{0} zasláno" - -#: ../../mod/ping.php:281 -#, php-format -msgid "{0} tagged %s's post with #%s" -msgstr "{0} označen %s' příspěvek s #%s" - -#: ../../mod/ping.php:287 -msgid "{0} mentioned you in a post" -msgstr "{0} vás zmínil v příspěvku" - -#: ../../mod/viewcontacts.php:41 -msgid "No contacts." -msgstr "Žádné kontakty." - -#: ../../mod/viewcontacts.php:78 ../../include/text.php:876 -msgid "View Contacts" -msgstr "Zobrazit kontakty" +#: ../../mod/delegate.php:141 +msgid "No entries." +msgstr "Žádné záznamy." #: ../../mod/notifications.php:26 msgid "Invalid request identifier." msgstr "Neplatný identifikátor požadavku." #: ../../mod/notifications.php:35 ../../mod/notifications.php:165 -#: ../../mod/notifications.php:211 +#: ../../mod/notifications.php:215 msgid "Discard" msgstr "Odstranit" +#: ../../mod/notifications.php:51 ../../mod/notifications.php:164 +#: ../../mod/notifications.php:214 ../../mod/contacts.php:455 +#: ../../mod/contacts.php:519 ../../mod/contacts.php:731 +msgid "Ignore" +msgstr "Ignorovat" + #: ../../mod/notifications.php:78 msgid "System" msgstr "Systém" -#: ../../mod/notifications.php:83 ../../include/nav.php:145 -msgid "Network" -msgstr "Síť" - #: ../../mod/notifications.php:88 ../../mod/network.php:371 msgid "Personal" msgstr "Osobní" -#: ../../mod/notifications.php:93 ../../include/nav.php:105 -#: ../../include/nav.php:148 ../../view/theme/diabook/theme.php:123 -msgid "Home" -msgstr "Domů" - -#: ../../mod/notifications.php:98 ../../include/nav.php:154 -msgid "Introductions" -msgstr "Představení" - #: ../../mod/notifications.php:122 msgid "Show Ignored Requests" msgstr "Zobrazit ignorované žádosti" @@ -1367,7 +3345,7 @@ msgstr "Zobrazit ignorované žádosti" msgid "Hide Ignored Requests" msgstr "Skrýt ignorované žádosti" -#: ../../mod/notifications.php:149 ../../mod/notifications.php:195 +#: ../../mod/notifications.php:149 ../../mod/notifications.php:199 msgid "Notification type: " msgstr "Typ oznámení: " @@ -1380,15 +3358,20 @@ msgstr "Návrh přátelství" msgid "suggested by %s" msgstr "navrhl %s" -#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 +#: ../../mod/notifications.php:157 ../../mod/notifications.php:208 +#: ../../mod/contacts.php:525 +msgid "Hide this contact from others" +msgstr "Skrýt tento kontakt před ostatními" + +#: ../../mod/notifications.php:158 ../../mod/notifications.php:209 msgid "Post a new friend activity" msgstr "Zveřejnit aktivitu nového přítele." -#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 +#: ../../mod/notifications.php:158 ../../mod/notifications.php:209 msgid "if applicable" msgstr "je-li použitelné" -#: ../../mod/notifications.php:161 ../../mod/notifications.php:208 +#: ../../mod/notifications.php:161 ../../mod/notifications.php:212 #: ../../mod/admin.php:1005 msgid "Approve" msgstr "Schválit" @@ -1405,403 +3388,1311 @@ msgstr "ano" msgid "no" msgstr "ne" -#: ../../mod/notifications.php:188 -msgid "Approve as: " -msgstr "Schválit jako: " +#: ../../mod/notifications.php:182 +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 "" -#: ../../mod/notifications.php:189 +#: ../../mod/notifications.php:185 +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 "" + +#: ../../mod/notifications.php:193 msgid "Friend" msgstr "Přítel" -#: ../../mod/notifications.php:190 +#: ../../mod/notifications.php:194 msgid "Sharer" msgstr "Sdílené" -#: ../../mod/notifications.php:190 +#: ../../mod/notifications.php:194 msgid "Fan/Admirer" msgstr "Fanoušek / obdivovatel" -#: ../../mod/notifications.php:196 +#: ../../mod/notifications.php:200 msgid "Friend/Connect Request" msgstr "Přítel / žádost o připojení" -#: ../../mod/notifications.php:196 +#: ../../mod/notifications.php:200 msgid "New Follower" msgstr "Nový následovník" -#: ../../mod/notifications.php:217 +#: ../../mod/notifications.php:221 msgid "No introductions." msgstr "Žádné představení." -#: ../../mod/notifications.php:220 ../../include/nav.php:155 -msgid "Notifications" -msgstr "Upozornění" - -#: ../../mod/notifications.php:258 ../../mod/notifications.php:387 -#: ../../mod/notifications.php:478 +#: ../../mod/notifications.php:262 ../../mod/notifications.php:391 +#: ../../mod/notifications.php:482 #, php-format msgid "%s liked %s's post" msgstr "Uživateli %s se líbí příspěvek uživatele %s" -#: ../../mod/notifications.php:268 ../../mod/notifications.php:397 -#: ../../mod/notifications.php:488 +#: ../../mod/notifications.php:272 ../../mod/notifications.php:401 +#: ../../mod/notifications.php:492 #, php-format msgid "%s disliked %s's post" msgstr "Uživateli %s se nelíbí příspěvek uživatele %s" -#: ../../mod/notifications.php:283 ../../mod/notifications.php:412 -#: ../../mod/notifications.php:503 +#: ../../mod/notifications.php:287 ../../mod/notifications.php:416 +#: ../../mod/notifications.php:507 #, php-format msgid "%s is now friends with %s" msgstr "%s se nyní přátelí s %s" -#: ../../mod/notifications.php:290 ../../mod/notifications.php:419 +#: ../../mod/notifications.php:294 ../../mod/notifications.php:423 #, php-format msgid "%s created a new post" msgstr "%s vytvořil nový příspěvek" -#: ../../mod/notifications.php:291 ../../mod/notifications.php:420 -#: ../../mod/notifications.php:513 +#: ../../mod/notifications.php:295 ../../mod/notifications.php:424 +#: ../../mod/notifications.php:517 #, php-format msgid "%s commented on %s's post" msgstr "%s okomentoval příspěvek uživatele %s'" -#: ../../mod/notifications.php:306 +#: ../../mod/notifications.php:310 msgid "No more network notifications." msgstr "Žádné další síťové upozornění." -#: ../../mod/notifications.php:310 +#: ../../mod/notifications.php:314 msgid "Network Notifications" msgstr "Upozornění Sítě" -#: ../../mod/notifications.php:336 ../../mod/notify.php:75 +#: ../../mod/notifications.php:340 ../../mod/notify.php:75 msgid "No more system notifications." msgstr "Žádné další systémová upozornění." -#: ../../mod/notifications.php:340 ../../mod/notify.php:79 +#: ../../mod/notifications.php:344 ../../mod/notify.php:79 msgid "System Notifications" msgstr "Systémová upozornění" -#: ../../mod/notifications.php:435 +#: ../../mod/notifications.php:439 msgid "No more personal notifications." msgstr "Žádné další osobní upozornění." -#: ../../mod/notifications.php:439 +#: ../../mod/notifications.php:443 msgid "Personal Notifications" msgstr "Osobní upozornění" -#: ../../mod/notifications.php:520 +#: ../../mod/notifications.php:524 msgid "No more home notifications." msgstr "Žádné další domácí upozornění." -#: ../../mod/notifications.php:524 +#: ../../mod/notifications.php:528 msgid "Home Notifications" msgstr "Upozornění na vstupní straně" -#: ../../mod/babel.php:17 -msgid "Source (bbcode) text:" -msgstr "Zdrojový text (bbcode):" +#: ../../mod/hcard.php:10 +msgid "No profile" +msgstr "Žádný profil" -#: ../../mod/babel.php:23 -msgid "Source (Diaspora) text to convert to BBcode:" -msgstr "Zdrojový (Diaspora) text k převedení do BB kódování:" +#: ../../mod/settings.php:34 ../../mod/photos.php:80 +msgid "everybody" +msgstr "Žádost o připojení selhala nebo byla zrušena." -#: ../../mod/babel.php:31 -msgid "Source input: " -msgstr "Zdrojový vstup: " +#: ../../mod/settings.php:41 ../../mod/admin.php:1016 +msgid "Account" +msgstr "Účet" -#: ../../mod/babel.php:35 -msgid "bb2html (raw HTML): " -msgstr "bb2html (raw HTML): " +#: ../../mod/settings.php:46 +msgid "Additional features" +msgstr "Další funkčnosti" -#: ../../mod/babel.php:39 -msgid "bb2html: " -msgstr "bb2html: " +#: ../../mod/settings.php:51 +msgid "Display" +msgstr "Zobrazení" -#: ../../mod/babel.php:43 -msgid "bb2html2bb: " -msgstr "bb2html2bb: " +#: ../../mod/settings.php:57 ../../mod/settings.php:785 +msgid "Social Networks" +msgstr "Sociální sítě" -#: ../../mod/babel.php:47 -msgid "bb2md: " -msgstr "bb2md: " +#: ../../mod/settings.php:62 ../../mod/admin.php:106 ../../mod/admin.php:1102 +#: ../../mod/admin.php:1155 +msgid "Plugins" +msgstr "Pluginy" -#: ../../mod/babel.php:51 -msgid "bb2md2html: " -msgstr "bb2md2html: " +#: ../../mod/settings.php:72 +msgid "Connected apps" +msgstr "Propojené aplikace" -#: ../../mod/babel.php:55 -msgid "bb2dia2bb: " -msgstr "bb2dia2bb: " +#: ../../mod/settings.php:77 ../../mod/uexport.php:85 +msgid "Export personal data" +msgstr "Export osobních údajů" -#: ../../mod/babel.php:59 -msgid "bb2md2html2bb: " -msgstr "bb2md2html2bb: " +#: ../../mod/settings.php:82 +msgid "Remove account" +msgstr "Odstranit účet" -#: ../../mod/babel.php:69 -msgid "Source input (Diaspora format): " -msgstr "Vstupní data (ve formátu Diaspora): " +#: ../../mod/settings.php:134 +msgid "Missing some important data!" +msgstr "Chybí některé důležité údaje!" -#: ../../mod/babel.php:74 -msgid "diaspora2bb: " -msgstr "diaspora2bb: " +#: ../../mod/settings.php:137 ../../mod/settings.php:645 +#: ../../mod/contacts.php:729 +msgid "Update" +msgstr "Aktualizace" -#: ../../mod/navigation.php:20 ../../include/nav.php:34 -msgid "Nothing new here" -msgstr "Zde není nic nového" +#: ../../mod/settings.php:243 +msgid "Failed to connect with email account using the settings provided." +msgstr "Nepodařilo se připojit k e-mailovému účtu pomocí dodaného nastavení." -#: ../../mod/navigation.php:24 ../../include/nav.php:38 -msgid "Clear notifications" -msgstr "Smazat notifikace" +#: ../../mod/settings.php:248 +msgid "Email settings updated." +msgstr "Nastavení e-mailu aktualizována." -#: ../../mod/message.php:9 ../../include/nav.php:164 -msgid "New Message" -msgstr "Nová zpráva" +#: ../../mod/settings.php:263 +msgid "Features updated" +msgstr "Aktualizované funkčnosti" -#: ../../mod/message.php:63 ../../mod/wallmessage.php:56 -msgid "No recipient selected." -msgstr "Nevybrán příjemce." +#: ../../mod/settings.php:326 +msgid "Relocate message has been send to your contacts" +msgstr "Správa o změně umístění byla odeslána vašim kontaktům" -#: ../../mod/message.php:67 -msgid "Unable to locate contact information." -msgstr "Nepodařilo se najít kontaktní informace." +#: ../../mod/settings.php:340 +msgid "Passwords do not match. Password unchanged." +msgstr "Hesla se neshodují. Heslo nebylo změněno." -#: ../../mod/message.php:70 ../../mod/wallmessage.php:62 -msgid "Message could not be sent." -msgstr "Zprávu se nepodařilo odeslat." +#: ../../mod/settings.php:345 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Prázdné hesla nejsou povolena. Heslo nebylo změněno." -#: ../../mod/message.php:73 ../../mod/wallmessage.php:65 -msgid "Message collection failure." -msgstr "Sběr zpráv selhal." +#: ../../mod/settings.php:353 +msgid "Wrong password." +msgstr "Špatné heslo." -#: ../../mod/message.php:76 ../../mod/wallmessage.php:68 -msgid "Message sent." -msgstr "Zpráva odeslána." +#: ../../mod/settings.php:364 +msgid "Password changed." +msgstr "Heslo bylo změněno." -#: ../../mod/message.php:182 ../../include/nav.php:161 -msgid "Messages" -msgstr "Zprávy" +#: ../../mod/settings.php:366 +msgid "Password update failed. Please try again." +msgstr "Aktualizace hesla se nezdařila. Zkuste to prosím znovu." -#: ../../mod/message.php:207 -msgid "Do you really want to delete this message?" -msgstr "Opravdu chcete smazat tuto zprávu?" +#: ../../mod/settings.php:433 +msgid " Please use a shorter name." +msgstr "Prosím použijte kratší jméno." -#: ../../mod/message.php:227 -msgid "Message deleted." -msgstr "Zpráva odstraněna." +#: ../../mod/settings.php:435 +msgid " Name too short." +msgstr "Jméno je příliš krátké." -#: ../../mod/message.php:258 -msgid "Conversation removed." -msgstr "Konverzace odstraněna." +#: ../../mod/settings.php:444 +msgid "Wrong Password" +msgstr "Špatné heslo" -#: ../../mod/message.php:283 ../../mod/message.php:291 -#: ../../mod/message.php:466 ../../mod/message.php:474 -#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135 -#: ../../include/conversation.php:1002 ../../include/conversation.php:1020 -msgid "Please enter a link URL:" -msgstr "Zadejte prosím URL odkaz:" +#: ../../mod/settings.php:449 +msgid " Not valid email." +msgstr "Neplatný e-mail." -#: ../../mod/message.php:319 ../../mod/wallmessage.php:142 -msgid "Send Private Message" -msgstr "Odeslat soukromou zprávu" +#: ../../mod/settings.php:455 +msgid " Cannot change to that email." +msgstr "Nelze provést změnu na tento e-mail." -#: ../../mod/message.php:320 ../../mod/message.php:553 -#: ../../mod/wallmessage.php:144 -msgid "To:" -msgstr "Adresát:" +#: ../../mod/settings.php:511 +msgid "Private forum has no privacy permissions. Using default privacy group." +msgstr "Soukromé fórum nemá nastaveno zabezpečení. Používá se defaultní soukromá skupina." -#: ../../mod/message.php:325 ../../mod/message.php:555 -#: ../../mod/wallmessage.php:145 -msgid "Subject:" -msgstr "Předmět:" +#: ../../mod/settings.php:515 +msgid "Private forum has no privacy permissions and no default privacy group." +msgstr "Soukromé fórum nemá nastaveno zabezpečení a ani žádnou defaultní soukromou skupinu." -#: ../../mod/message.php:329 ../../mod/message.php:558 -#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134 -msgid "Your message:" -msgstr "Vaše zpráva:" +#: ../../mod/settings.php:545 +msgid "Settings updated." +msgstr "Nastavení aktualizováno." -#: ../../mod/message.php:332 ../../mod/message.php:562 -#: ../../mod/wallmessage.php:154 ../../mod/editpost.php:110 -#: ../../include/conversation.php:1091 -msgid "Upload photo" -msgstr "Nahrát fotografii" +#: ../../mod/settings.php:618 ../../mod/settings.php:644 +#: ../../mod/settings.php:680 +msgid "Add application" +msgstr "Přidat aplikaci" -#: ../../mod/message.php:333 ../../mod/message.php:563 -#: ../../mod/wallmessage.php:155 ../../mod/editpost.php:114 -#: ../../include/conversation.php:1095 -msgid "Insert web link" -msgstr "Vložit webový odkaz" +#: ../../mod/settings.php:619 ../../mod/settings.php:729 +#: ../../mod/settings.php:803 ../../mod/settings.php:885 +#: ../../mod/settings.php:1118 ../../mod/admin.php:620 +#: ../../mod/admin.php:1156 ../../mod/admin.php:1358 ../../mod/admin.php:1445 +msgid "Save Settings" +msgstr "Uložit Nastavení" -#: ../../mod/message.php:334 ../../mod/message.php:565 -#: ../../mod/content.php:499 ../../mod/content.php:883 -#: ../../mod/wallmessage.php:156 ../../mod/editpost.php:124 -#: ../../mod/photos.php:1545 ../../object/Item.php:364 -#: ../../include/conversation.php:692 ../../include/conversation.php:1109 -msgid "Please wait" -msgstr "Čekejte prosím" - -#: ../../mod/message.php:371 -msgid "No messages." -msgstr "Žádné zprávy." - -#: ../../mod/message.php:378 -#, php-format -msgid "Unknown sender - %s" -msgstr "Neznámý odesilatel - %s" - -#: ../../mod/message.php:381 -#, php-format -msgid "You and %s" -msgstr "Vy a %s" - -#: ../../mod/message.php:384 -#, php-format -msgid "%s and You" -msgstr "%s a Vy" - -#: ../../mod/message.php:405 ../../mod/message.php:546 -msgid "Delete conversation" -msgstr "Odstranit konverzaci" - -#: ../../mod/message.php:408 -msgid "D, d M Y - g:i A" -msgstr "D M R - g:i A" - -#: ../../mod/message.php:411 -#, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "%d zpráva" -msgstr[1] "%d zprávy" -msgstr[2] "%d zpráv" - -#: ../../mod/message.php:450 -msgid "Message not available." -msgstr "Zpráva není k dispozici." - -#: ../../mod/message.php:520 -msgid "Delete message" -msgstr "Smazat zprávu" - -#: ../../mod/message.php:548 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Není k dispozici zabezpečená komunikace. Možná budete schopni reagovat z odesilatelovy profilové stránky." - -#: ../../mod/message.php:552 -msgid "Send Reply" -msgstr "Poslat odpověď" - -#: ../../mod/update_display.php:22 ../../mod/update_community.php:18 -#: ../../mod/update_notes.php:37 ../../mod/update_profile.php:41 -#: ../../mod/update_network.php:25 -msgid "[Embedded content - reload page to view]" -msgstr "[Vložený obsah - obnovte stránku pro zobrazení]" - -#: ../../mod/crepair.php:106 -msgid "Contact settings applied." -msgstr "Nastavení kontaktu změněno" - -#: ../../mod/crepair.php:108 -msgid "Contact update failed." -msgstr "Aktualizace kontaktu selhala." - -#: ../../mod/crepair.php:139 -msgid "Repair Contact Settings" -msgstr "Opravit nastavení kontaktu" - -#: ../../mod/crepair.php:141 -msgid "" -"WARNING: This is highly advanced and if you enter incorrect" -" information your communications with this contact may stop working." -msgstr "Varování: Toto je velmi pokročilé a pokud zadáte nesprávné informace, Vaše komunikace s tímto kontaktem může přestat fungovat." - -#: ../../mod/crepair.php:142 -msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." -msgstr "Prosím použijte ihned v prohlížeči tlačítko \"zpět\" pokud si nejste jistí co dělat na této stránce." - -#: ../../mod/crepair.php:148 -msgid "Return to contact editor" -msgstr "Návrat k editoru kontaktu" - -#: ../../mod/crepair.php:159 ../../mod/crepair.php:161 -msgid "No mirroring" -msgstr "Žádné zrcadlení" - -#: ../../mod/crepair.php:159 -msgid "Mirror as forwarded posting" -msgstr "Zrcadlit pro přeposlané příspěvky" - -#: ../../mod/crepair.php:159 ../../mod/crepair.php:161 -msgid "Mirror as my own posting" -msgstr "Zrcadlit jako mé vlastní příspěvky" - -#: ../../mod/crepair.php:165 ../../mod/admin.php:1003 ../../mod/admin.php:1015 -#: ../../mod/admin.php:1016 ../../mod/admin.php:1029 -#: ../../mod/settings.php:616 ../../mod/settings.php:642 +#: ../../mod/settings.php:621 ../../mod/settings.php:647 +#: ../../mod/admin.php:1003 ../../mod/admin.php:1015 ../../mod/admin.php:1016 +#: ../../mod/admin.php:1029 ../../mod/crepair.php:165 msgid "Name" msgstr "Jméno" -#: ../../mod/crepair.php:166 -msgid "Account Nickname" -msgstr "Přezdívka účtu" +#: ../../mod/settings.php:622 ../../mod/settings.php:648 +msgid "Consumer Key" +msgstr "Consumer Key" -#: ../../mod/crepair.php:167 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@Tagname - upřednostněno před Jménem/Přezdívkou" +#: ../../mod/settings.php:623 ../../mod/settings.php:649 +msgid "Consumer Secret" +msgstr "Consumer Secret" -#: ../../mod/crepair.php:168 -msgid "Account URL" -msgstr "URL adresa účtu" +#: ../../mod/settings.php:624 ../../mod/settings.php:650 +msgid "Redirect" +msgstr "Přesměrování" -#: ../../mod/crepair.php:169 -msgid "Friend Request URL" -msgstr "Žádost o přátelství URL" +#: ../../mod/settings.php:625 ../../mod/settings.php:651 +msgid "Icon url" +msgstr "URL ikony" -#: ../../mod/crepair.php:170 -msgid "Friend Confirm URL" -msgstr "URL adresa potvrzení přátelství" +#: ../../mod/settings.php:636 +msgid "You can't edit this application." +msgstr "Nemůžete editovat tuto aplikaci." -#: ../../mod/crepair.php:171 -msgid "Notification Endpoint URL" -msgstr "Notifikační URL adresa" +#: ../../mod/settings.php:679 +msgid "Connected Apps" +msgstr "Připojené aplikace" -#: ../../mod/crepair.php:172 -msgid "Poll/Feed URL" -msgstr "Poll/Feed URL adresa" +#: ../../mod/settings.php:683 +msgid "Client key starts with" +msgstr "Klienský klíč začíná" -#: ../../mod/crepair.php:173 -msgid "New photo from this URL" -msgstr "Nové foto z této URL adresy" +#: ../../mod/settings.php:684 +msgid "No name" +msgstr "Bez názvu" -#: ../../mod/crepair.php:174 -msgid "Remote Self" -msgstr "Remote Self" +#: ../../mod/settings.php:685 +msgid "Remove authorization" +msgstr "Odstranit oprávnění" -#: ../../mod/crepair.php:176 -msgid "Mirror postings from this contact" -msgstr "Zrcadlení správ od tohoto kontaktu" +#: ../../mod/settings.php:697 +msgid "No Plugin settings configured" +msgstr "Žádný doplněk není nastaven" -#: ../../mod/crepair.php:176 +#: ../../mod/settings.php:705 +msgid "Plugin Settings" +msgstr "Nastavení doplňku" + +#: ../../mod/settings.php:719 +msgid "Off" +msgstr "Vypnuto" + +#: ../../mod/settings.php:719 +msgid "On" +msgstr "Zapnuto" + +#: ../../mod/settings.php:727 +msgid "Additional Features" +msgstr "Další Funkčnosti" + +#: ../../mod/settings.php:741 ../../mod/settings.php:742 +#, php-format +msgid "Built-in support for %s connectivity is %s" +msgstr "Vestavěná podpora pro připojení s %s je %s" + +#: ../../mod/settings.php:741 ../../mod/settings.php:742 +msgid "enabled" +msgstr "povoleno" + +#: ../../mod/settings.php:741 ../../mod/settings.php:742 +msgid "disabled" +msgstr "zakázáno" + +#: ../../mod/settings.php:742 +msgid "StatusNet" +msgstr "StatusNet" + +#: ../../mod/settings.php:778 +msgid "Email access is disabled on this site." +msgstr "Přístup k elektronické poště je na tomto serveru zakázán." + +#: ../../mod/settings.php:790 +msgid "Email/Mailbox Setup" +msgstr "Nastavení e-mailu" + +#: ../../mod/settings.php:791 msgid "" -"Mark this contact as remote_self, this will cause friendica to repost new " -"entries from this contact." -msgstr "Označit tento kontakt jako \"remote_self\", s tímto nastavením freindica bude přeposílat všechny nové příspěvky od tohoto kontaktu." +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "Pokud chcete komunikovat pomocí této služby s Vašimi kontakty z e-mailu (volitelné), uveďte, jak se připojit k Vaší e-mailové schránce." -#: ../../mod/bookmarklet.php:12 ../../boot.php:1266 ../../include/nav.php:92 -msgid "Login" -msgstr "Přihlásit se" +#: ../../mod/settings.php:792 +msgid "Last successful email check:" +msgstr "Poslední úspěšná kontrola e-mailu:" -#: ../../mod/bookmarklet.php:41 -msgid "The post was created" -msgstr "Příspěvek byl vytvořen" +#: ../../mod/settings.php:794 +msgid "IMAP server name:" +msgstr "jméno IMAP serveru:" -#: ../../mod/viewsrc.php:7 -msgid "Access denied." -msgstr "Přístup odmítnut" +#: ../../mod/settings.php:795 +msgid "IMAP port:" +msgstr "IMAP port:" + +#: ../../mod/settings.php:796 +msgid "Security:" +msgstr "Zabezpečení:" + +#: ../../mod/settings.php:796 ../../mod/settings.php:801 +msgid "None" +msgstr "Žádný" + +#: ../../mod/settings.php:797 +msgid "Email login name:" +msgstr "přihlašovací jméno k e-mailu:" + +#: ../../mod/settings.php:798 +msgid "Email password:" +msgstr "heslo k Vašemu e-mailu:" + +#: ../../mod/settings.php:799 +msgid "Reply-to address:" +msgstr "Odpovědět na adresu:" + +#: ../../mod/settings.php:800 +msgid "Send public posts to all email contacts:" +msgstr "Poslat veřejné příspěvky na všechny e-mailové kontakty:" + +#: ../../mod/settings.php:801 +msgid "Action after import:" +msgstr "Akce po importu:" + +#: ../../mod/settings.php:801 +msgid "Mark as seen" +msgstr "Označit jako přečtené" + +#: ../../mod/settings.php:801 +msgid "Move to folder" +msgstr "Přesunout do složky" + +#: ../../mod/settings.php:802 +msgid "Move to folder:" +msgstr "Přesunout do složky:" + +#: ../../mod/settings.php:833 ../../mod/admin.php:545 +msgid "No special theme for mobile devices" +msgstr "žádné speciální téma pro mobilní zařízení" + +#: ../../mod/settings.php:883 +msgid "Display Settings" +msgstr "Nastavení Zobrazení" + +#: ../../mod/settings.php:889 ../../mod/settings.php:904 +msgid "Display Theme:" +msgstr "Vybrat grafickou šablonu:" + +#: ../../mod/settings.php:890 +msgid "Mobile Theme:" +msgstr "Téma pro mobilní zařízení:" + +#: ../../mod/settings.php:891 +msgid "Update browser every xx seconds" +msgstr "Aktualizovat prohlížeč každých xx sekund" + +#: ../../mod/settings.php:891 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Minimum 10 sekund, žádné maximum." + +#: ../../mod/settings.php:892 +msgid "Number of items to display per page:" +msgstr "Počet položek zobrazených na stránce:" + +#: ../../mod/settings.php:892 ../../mod/settings.php:893 +msgid "Maximum of 100 items" +msgstr "Maximum 100 položek" + +#: ../../mod/settings.php:893 +msgid "Number of items to display per page when viewed from mobile device:" +msgstr "Počet položek ke zobrazení na stránce při zobrazení na mobilním zařízení:" + +#: ../../mod/settings.php:894 +msgid "Don't show emoticons" +msgstr "Nezobrazovat emotikony" + +#: ../../mod/settings.php:895 +msgid "Don't show notices" +msgstr "Nezobrazovat oznámění" + +#: ../../mod/settings.php:896 +msgid "Infinite scroll" +msgstr "Nekonečné posouvání" + +#: ../../mod/settings.php:897 +msgid "Automatic updates only at the top of the network page" +msgstr "Automatické aktualizace pouze na hlavní stránce Síť." + +#: ../../mod/settings.php:974 +msgid "User Types" +msgstr "Uživatelské typy" + +#: ../../mod/settings.php:975 +msgid "Community Types" +msgstr "Komunitní typy" + +#: ../../mod/settings.php:976 +msgid "Normal Account Page" +msgstr "Normální stránka účtu" + +#: ../../mod/settings.php:977 +msgid "This account is a normal personal profile" +msgstr "Tento účet je běžný osobní profil" + +#: ../../mod/settings.php:980 +msgid "Soapbox Page" +msgstr "Stránka \"Soapbox\"" + +#: ../../mod/settings.php:981 +msgid "Automatically approve all connection/friend requests as read-only fans" +msgstr "Automaticky schválit všechna spojení / přátelství jako fanoušky s právem pouze ke čtení" + +#: ../../mod/settings.php:984 +msgid "Community Forum/Celebrity Account" +msgstr "Komunitní fórum/ účet celebrity" + +#: ../../mod/settings.php:985 +msgid "" +"Automatically approve all connection/friend requests as read-write fans" +msgstr "Automaticky schvalovat všechny žádosti o spojení / přátelství, jako fanoušky s právem ke čtení." + +#: ../../mod/settings.php:988 +msgid "Automatic Friend Page" +msgstr "Automatická stránka přítele" + +#: ../../mod/settings.php:989 +msgid "Automatically approve all connection/friend requests as friends" +msgstr "Automaticky schvalovat všechny žádosti o spojení / přátelství jako přátele" + +#: ../../mod/settings.php:992 +msgid "Private Forum [Experimental]" +msgstr "Soukromé fórum [Experimentální]" + +#: ../../mod/settings.php:993 +msgid "Private forum - approved members only" +msgstr "Soukromé fórum - pouze pro schválené členy" + +#: ../../mod/settings.php:1005 +msgid "OpenID:" +msgstr "OpenID:" + +#: ../../mod/settings.php:1005 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "(Volitelné) Povolit OpenID pro přihlášení k tomuto účtu." + +#: ../../mod/settings.php:1015 +msgid "Publish your default profile in your local site directory?" +msgstr "Publikovat Váš výchozí profil v místním adresáři webu?" + +#: ../../mod/settings.php:1015 ../../mod/settings.php:1021 +#: ../../mod/settings.php:1029 ../../mod/settings.php:1033 +#: ../../mod/settings.php:1038 ../../mod/settings.php:1044 +#: ../../mod/settings.php:1050 ../../mod/settings.php:1056 +#: ../../mod/settings.php:1086 ../../mod/settings.php:1087 +#: ../../mod/settings.php:1088 ../../mod/settings.php:1089 +#: ../../mod/settings.php:1090 ../../mod/register.php:234 +#: ../../mod/dfrn_request.php:830 ../../mod/api.php:106 +#: ../../mod/profiles.php:661 ../../mod/profiles.php:665 +msgid "No" +msgstr "Ne" + +#: ../../mod/settings.php:1021 +msgid "Publish your default profile in the global social directory?" +msgstr "Publikovat Váš výchozí profil v globální sociálním adresáři?" + +#: ../../mod/settings.php:1029 +msgid "Hide your contact/friend list from viewers of your default profile?" +msgstr "Skrýt Vaše kontaktní údaje a seznam přátel před návštěvníky ve Vašem výchozím profilu?" + +#: ../../mod/settings.php:1033 +msgid "" +"If enabled, posting public messages to Diaspora and other networks isn't " +"possible." +msgstr "Pokud je povoleno, není možné zasílání veřejných příspěvků do Diaspory a dalších sítí." + +#: ../../mod/settings.php:1038 +msgid "Allow friends to post to your profile page?" +msgstr "Povolit přátelům umisťování příspěvků na vaši profilovou stránku?" + +#: ../../mod/settings.php:1044 +msgid "Allow friends to tag your posts?" +msgstr "Povolit přátelům označovat Vaše příspěvky?" + +#: ../../mod/settings.php:1050 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "Chcete nám povolit abychom vás navrhovali jako přátelé pro nové členy?" + +#: ../../mod/settings.php:1056 +msgid "Permit unknown people to send you private mail?" +msgstr "Povolit neznámým lidem Vám zasílat soukromé zprávy?" + +#: ../../mod/settings.php:1064 +msgid "Profile is not published." +msgstr "Profil není zveřejněn." + +#: ../../mod/settings.php:1067 ../../mod/profile_photo.php:248 +msgid "or" +msgstr "nebo" + +#: ../../mod/settings.php:1072 +msgid "Your Identity Address is" +msgstr "Vaše adresa identity je" + +#: ../../mod/settings.php:1083 +msgid "Automatically expire posts after this many days:" +msgstr "Automaticky expirovat příspěvky po zadaném počtu dní:" + +#: ../../mod/settings.php:1083 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "Pokud je prázdné, příspěvky nebudou nikdy expirovat. Expirované příspěvky budou vymazány" + +#: ../../mod/settings.php:1084 +msgid "Advanced expiration settings" +msgstr "Pokročilé nastavení expirací" + +#: ../../mod/settings.php:1085 +msgid "Advanced Expiration" +msgstr "Nastavení expirací" + +#: ../../mod/settings.php:1086 +msgid "Expire posts:" +msgstr "Expirovat příspěvky:" + +#: ../../mod/settings.php:1087 +msgid "Expire personal notes:" +msgstr "Expirovat osobní poznámky:" + +#: ../../mod/settings.php:1088 +msgid "Expire starred posts:" +msgstr "Expirovat příspěvky s hvězdou:" + +#: ../../mod/settings.php:1089 +msgid "Expire photos:" +msgstr "Expirovat fotografie:" + +#: ../../mod/settings.php:1090 +msgid "Only expire posts by others:" +msgstr "Přízpěvky expirovat pouze ostatními:" + +#: ../../mod/settings.php:1116 +msgid "Account Settings" +msgstr "Nastavení účtu" + +#: ../../mod/settings.php:1124 +msgid "Password Settings" +msgstr "Nastavení hesla" + +#: ../../mod/settings.php:1125 +msgid "New Password:" +msgstr "Nové heslo:" + +#: ../../mod/settings.php:1126 +msgid "Confirm:" +msgstr "Potvrďte:" + +#: ../../mod/settings.php:1126 +msgid "Leave password fields blank unless changing" +msgstr "Pokud nechcete změnit heslo, položku hesla nevyplňujte" + +#: ../../mod/settings.php:1127 +msgid "Current Password:" +msgstr "Stávající heslo:" + +#: ../../mod/settings.php:1127 ../../mod/settings.php:1128 +msgid "Your current password to confirm the changes" +msgstr "Vaše stávající heslo k potvrzení změn" + +#: ../../mod/settings.php:1128 +msgid "Password:" +msgstr "Heslo: " + +#: ../../mod/settings.php:1132 +msgid "Basic Settings" +msgstr "Základní nastavení" + +#: ../../mod/settings.php:1134 +msgid "Email Address:" +msgstr "E-mailová adresa:" + +#: ../../mod/settings.php:1135 +msgid "Your Timezone:" +msgstr "Vaše časové pásmo:" + +#: ../../mod/settings.php:1136 +msgid "Default Post Location:" +msgstr "Výchozí umístění příspěvků:" + +#: ../../mod/settings.php:1137 +msgid "Use Browser Location:" +msgstr "Používat umístění dle prohlížeče:" + +#: ../../mod/settings.php:1140 +msgid "Security and Privacy Settings" +msgstr "Nastavení zabezpečení a soukromí" + +#: ../../mod/settings.php:1142 +msgid "Maximum Friend Requests/Day:" +msgstr "Maximální počet žádostí o přátelství za den:" + +#: ../../mod/settings.php:1142 ../../mod/settings.php:1172 +msgid "(to prevent spam abuse)" +msgstr "(Aby se zabránilo spamu)" + +#: ../../mod/settings.php:1143 +msgid "Default Post Permissions" +msgstr "Výchozí oprávnění pro příspěvek" + +#: ../../mod/settings.php:1144 +msgid "(click to open/close)" +msgstr "(Klikněte pro otevření/zavření)" + +#: ../../mod/settings.php:1153 ../../mod/photos.php:1146 +#: ../../mod/photos.php:1519 +msgid "Show to Groups" +msgstr "Zobrazit ve Skupinách" + +#: ../../mod/settings.php:1154 ../../mod/photos.php:1147 +#: ../../mod/photos.php:1520 +msgid "Show to Contacts" +msgstr "Zobrazit v Kontaktech" + +#: ../../mod/settings.php:1155 +msgid "Default Private Post" +msgstr "Výchozí Soukromý příspěvek" + +#: ../../mod/settings.php:1156 +msgid "Default Public Post" +msgstr "Výchozí Veřejný příspěvek" + +#: ../../mod/settings.php:1160 +msgid "Default Permissions for New Posts" +msgstr "Výchozí oprávnění pro nové příspěvky" + +#: ../../mod/settings.php:1172 +msgid "Maximum private messages per day from unknown people:" +msgstr "Maximum soukromých zpráv od neznámých lidí:" + +#: ../../mod/settings.php:1175 +msgid "Notification Settings" +msgstr "Nastavení notifikací" + +#: ../../mod/settings.php:1176 +msgid "By default post a status message when:" +msgstr "Defaultně posílat statusové zprávy když:" + +#: ../../mod/settings.php:1177 +msgid "accepting a friend request" +msgstr "akceptuji požadavek na přátelství" + +#: ../../mod/settings.php:1178 +msgid "joining a forum/community" +msgstr "připojující se k fóru/komunitě" + +#: ../../mod/settings.php:1179 +msgid "making an interesting profile change" +msgstr "provedení zajímavé profilové změny" + +#: ../../mod/settings.php:1180 +msgid "Send a notification email when:" +msgstr "Poslat notifikaci e-mailem, když" + +#: ../../mod/settings.php:1181 +msgid "You receive an introduction" +msgstr "obdržíte žádost o propojení" + +#: ../../mod/settings.php:1182 +msgid "Your introductions are confirmed" +msgstr "Vaše žádosti jsou potvrzeny" + +#: ../../mod/settings.php:1183 +msgid "Someone writes on your profile wall" +msgstr "někdo Vám napíše na Vaši profilovou stránku" + +#: ../../mod/settings.php:1184 +msgid "Someone writes a followup comment" +msgstr "někdo Vám napíše následný komentář" + +#: ../../mod/settings.php:1185 +msgid "You receive a private message" +msgstr "obdržíte soukromou zprávu" + +#: ../../mod/settings.php:1186 +msgid "You receive a friend suggestion" +msgstr "Obdržel jste návrh přátelství" + +#: ../../mod/settings.php:1187 +msgid "You are tagged in a post" +msgstr "Jste označen v příspěvku" + +#: ../../mod/settings.php:1188 +msgid "You are poked/prodded/etc. in a post" +msgstr "Byl Jste šťouchnout v příspěvku" + +#: ../../mod/settings.php:1190 +msgid "Text-only notification emails" +msgstr "Pouze textové notifikační e-maily" + +#: ../../mod/settings.php:1192 +msgid "Send text only notification emails, without the html part" +msgstr "Posílat pouze textové notifikační e-maily, bez html části." + +#: ../../mod/settings.php:1194 +msgid "Advanced Account/Page Type Settings" +msgstr "Pokročilé nastavení účtu/stránky" + +#: ../../mod/settings.php:1195 +msgid "Change the behaviour of this account for special situations" +msgstr "Změnit chování tohoto účtu ve speciálních situacích" + +#: ../../mod/settings.php:1198 +msgid "Relocate" +msgstr "Změna umístění" + +#: ../../mod/settings.php:1199 +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 "Pokud jste přemístil tento profil z jiného serveru a nějaký z vašich kontaktů nedostává Vaše aktualizace, zkuste stisknout toto tlačítko." + +#: ../../mod/settings.php:1200 +msgid "Resend relocate message to contacts" +msgstr "Znovu odeslat správu o změně umístění Vašim kontaktům" + +#: ../../mod/common.php:42 +msgid "Common Friends" +msgstr "Společní přátelé" + +#: ../../mod/common.php:78 +msgid "No contacts in common." +msgstr "Žádné společné kontakty." + +#: ../../mod/lockview.php:31 ../../mod/lockview.php:39 +msgid "Remote privacy information not available." +msgstr "Vzdálené soukromé informace nejsou k dispozici." + +#: ../../mod/lockview.php:48 +msgid "Visible to:" +msgstr "Viditelné pro:" + +#: ../../mod/contacts.php:112 +#, php-format +msgid "%d contact edited." +msgid_plural "%d contacts edited" +msgstr[0] "%d kontakt upraven." +msgstr[1] "%d kontakty upraveny" +msgstr[2] "%d kontaktů upraveno" + +#: ../../mod/contacts.php:143 ../../mod/contacts.php:276 +msgid "Could not access contact record." +msgstr "Nelze získat přístup k záznamu kontaktu." + +#: ../../mod/contacts.php:157 +msgid "Could not locate selected profile." +msgstr "Nelze nalézt vybraný profil." + +#: ../../mod/contacts.php:190 +msgid "Contact updated." +msgstr "Kontakt aktualizován." + +#: ../../mod/contacts.php:192 ../../mod/dfrn_request.php:576 +msgid "Failed to update contact record." +msgstr "Nepodařilo se aktualizovat kontakt." + +#: ../../mod/contacts.php:291 +msgid "Contact has been blocked" +msgstr "Kontakt byl zablokován" + +#: ../../mod/contacts.php:291 +msgid "Contact has been unblocked" +msgstr "Kontakt byl odblokován" + +#: ../../mod/contacts.php:302 +msgid "Contact has been ignored" +msgstr "Kontakt bude ignorován" + +#: ../../mod/contacts.php:302 +msgid "Contact has been unignored" +msgstr "Kontakt přestal být ignorován" + +#: ../../mod/contacts.php:314 +msgid "Contact has been archived" +msgstr "Kontakt byl archivován" + +#: ../../mod/contacts.php:314 +msgid "Contact has been unarchived" +msgstr "Kontakt byl vrácen z archívu." + +#: ../../mod/contacts.php:339 ../../mod/contacts.php:727 +msgid "Do you really want to delete this contact?" +msgstr "Opravdu chcete smazat tento kontakt?" + +#: ../../mod/contacts.php:356 +msgid "Contact has been removed." +msgstr "Kontakt byl odstraněn." + +#: ../../mod/contacts.php:394 +#, php-format +msgid "You are mutual friends with %s" +msgstr "Jste vzájemní přátelé s uživatelem %s" + +#: ../../mod/contacts.php:398 +#, php-format +msgid "You are sharing with %s" +msgstr "Sdílíte s uživatelem %s" + +#: ../../mod/contacts.php:403 +#, php-format +msgid "%s is sharing with you" +msgstr "uživatel %s sdílí s vámi" + +#: ../../mod/contacts.php:423 +msgid "Private communications are not available for this contact." +msgstr "Soukromá komunikace není dostupná pro tento kontakt." + +#: ../../mod/contacts.php:426 ../../mod/admin.php:569 +msgid "Never" +msgstr "Nikdy" + +#: ../../mod/contacts.php:430 +msgid "(Update was successful)" +msgstr "(Aktualizace byla úspěšná)" + +#: ../../mod/contacts.php:430 +msgid "(Update was not successful)" +msgstr "(Aktualizace nebyla úspěšná)" + +#: ../../mod/contacts.php:432 +msgid "Suggest friends" +msgstr "Navrhněte přátelé" + +#: ../../mod/contacts.php:436 +#, php-format +msgid "Network type: %s" +msgstr "Typ sítě: %s" + +#: ../../mod/contacts.php:444 +msgid "View all contacts" +msgstr "Zobrazit všechny kontakty" + +#: ../../mod/contacts.php:449 ../../mod/contacts.php:518 +#: ../../mod/contacts.php:730 ../../mod/admin.php:1009 +msgid "Unblock" +msgstr "Odblokovat" + +#: ../../mod/contacts.php:449 ../../mod/contacts.php:518 +#: ../../mod/contacts.php:730 ../../mod/admin.php:1008 +msgid "Block" +msgstr "Blokovat" + +#: ../../mod/contacts.php:452 +msgid "Toggle Blocked status" +msgstr "Přepnout stav Blokováno" + +#: ../../mod/contacts.php:455 ../../mod/contacts.php:519 +#: ../../mod/contacts.php:731 +msgid "Unignore" +msgstr "Přestat ignorovat" + +#: ../../mod/contacts.php:458 +msgid "Toggle Ignored status" +msgstr "Přepnout stav Ignorováno" + +#: ../../mod/contacts.php:462 ../../mod/contacts.php:732 +msgid "Unarchive" +msgstr "Vrátit z archívu" + +#: ../../mod/contacts.php:462 ../../mod/contacts.php:732 +msgid "Archive" +msgstr "Archivovat" + +#: ../../mod/contacts.php:465 +msgid "Toggle Archive status" +msgstr "Přepnout stav Archivováno" + +#: ../../mod/contacts.php:468 +msgid "Repair" +msgstr "Opravit" + +#: ../../mod/contacts.php:471 +msgid "Advanced Contact Settings" +msgstr "Pokročilé nastavení kontaktu" + +#: ../../mod/contacts.php:477 +msgid "Communications lost with this contact!" +msgstr "Komunikace s tímto kontaktem byla ztracena!" + +#: ../../mod/contacts.php:480 +msgid "Fetch further information for feeds" +msgstr "Načítat další informace pro kanál" + +#: ../../mod/contacts.php:481 +msgid "Disabled" +msgstr "Zakázáno" + +#: ../../mod/contacts.php:481 +msgid "Fetch information" +msgstr "Načítat informace" + +#: ../../mod/contacts.php:481 +msgid "Fetch information and keywords" +msgstr "Načítat informace a klíčová slova" + +#: ../../mod/contacts.php:490 +msgid "Contact Editor" +msgstr "Editor kontaktu" + +#: ../../mod/contacts.php:493 +msgid "Profile Visibility" +msgstr "Viditelnost profilu" + +#: ../../mod/contacts.php:494 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Vyberte prosím profil, který chcete zobrazit %s při zabezpečeném prohlížení vašeho profilu." + +#: ../../mod/contacts.php:495 +msgid "Contact Information / Notes" +msgstr "Kontaktní informace / poznámky" + +#: ../../mod/contacts.php:496 +msgid "Edit contact notes" +msgstr "Editovat poznámky kontaktu" + +#: ../../mod/contacts.php:501 ../../mod/contacts.php:695 +#: ../../mod/nogroup.php:40 ../../mod/viewcontacts.php:64 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Navštivte profil uživatele %s [%s]" + +#: ../../mod/contacts.php:502 +msgid "Block/Unblock contact" +msgstr "Blokovat / Odblokovat kontakt" + +#: ../../mod/contacts.php:503 +msgid "Ignore contact" +msgstr "Ignorovat kontakt" + +#: ../../mod/contacts.php:504 +msgid "Repair URL settings" +msgstr "Opravit nastavení adresy URL " + +#: ../../mod/contacts.php:505 +msgid "View conversations" +msgstr "Zobrazit konverzace" + +#: ../../mod/contacts.php:507 +msgid "Delete contact" +msgstr "Odstranit kontakt" + +#: ../../mod/contacts.php:511 +msgid "Last update:" +msgstr "Poslední aktualizace:" + +#: ../../mod/contacts.php:513 +msgid "Update public posts" +msgstr "Aktualizovat veřejné příspěvky" + +#: ../../mod/contacts.php:515 ../../mod/admin.php:1503 +msgid "Update now" +msgstr "Aktualizovat" + +#: ../../mod/contacts.php:522 +msgid "Currently blocked" +msgstr "V současnosti zablokováno" + +#: ../../mod/contacts.php:523 +msgid "Currently ignored" +msgstr "V současnosti ignorováno" + +#: ../../mod/contacts.php:524 +msgid "Currently archived" +msgstr "Aktuálně archivován" + +#: ../../mod/contacts.php:525 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "Odpovědi/Libí se na Vaše veřejné příspěvky mohou být stále viditelné" + +#: ../../mod/contacts.php:526 +msgid "Notification for new posts" +msgstr "Upozornění na nové příspěvky" + +#: ../../mod/contacts.php:526 +msgid "Send a notification of every new post of this contact" +msgstr "Poslat upozornění při každém novém příspěvku tohoto kontaktu" + +#: ../../mod/contacts.php:529 +msgid "Blacklisted keywords" +msgstr "Zakázaná klíčová slova" + +#: ../../mod/contacts.php:529 +msgid "" +"Comma separated list of keywords that should not be converted to hashtags, " +"when \"Fetch information and keywords\" is selected" +msgstr "Čárkou oddělený seznam klíčových slov, které by neměly být převáděna na hashtagy, když je zvoleno \"Načítat informace a klíčová slova\"" + +#: ../../mod/contacts.php:580 +msgid "Suggestions" +msgstr "Doporučení" + +#: ../../mod/contacts.php:583 +msgid "Suggest potential friends" +msgstr "Navrhnout potenciální přátele" + +#: ../../mod/contacts.php:589 +msgid "Show all contacts" +msgstr "Zobrazit všechny kontakty" + +#: ../../mod/contacts.php:592 +msgid "Unblocked" +msgstr "Odblokován" + +#: ../../mod/contacts.php:595 +msgid "Only show unblocked contacts" +msgstr "Zobrazit pouze neblokované kontakty" + +#: ../../mod/contacts.php:599 +msgid "Blocked" +msgstr "Blokován" + +#: ../../mod/contacts.php:602 +msgid "Only show blocked contacts" +msgstr "Zobrazit pouze blokované kontakty" + +#: ../../mod/contacts.php:606 +msgid "Ignored" +msgstr "Ignorován" + +#: ../../mod/contacts.php:609 +msgid "Only show ignored contacts" +msgstr "Zobrazit pouze ignorované kontakty" + +#: ../../mod/contacts.php:613 +msgid "Archived" +msgstr "Archivován" + +#: ../../mod/contacts.php:616 +msgid "Only show archived contacts" +msgstr "Zobrazit pouze archivované kontakty" + +#: ../../mod/contacts.php:620 +msgid "Hidden" +msgstr "Skrytý" + +#: ../../mod/contacts.php:623 +msgid "Only show hidden contacts" +msgstr "Zobrazit pouze skryté kontakty" + +#: ../../mod/contacts.php:671 +msgid "Mutual Friendship" +msgstr "Vzájemné přátelství" + +#: ../../mod/contacts.php:675 +msgid "is a fan of yours" +msgstr "je Váš fanoušek" + +#: ../../mod/contacts.php:679 +msgid "you are a fan of" +msgstr "jste fanouškem" + +#: ../../mod/contacts.php:696 ../../mod/nogroup.php:41 +msgid "Edit contact" +msgstr "Editovat kontakt" + +#: ../../mod/contacts.php:722 +msgid "Search your contacts" +msgstr "Prohledat Vaše kontakty" + +#: ../../mod/contacts.php:723 ../../mod/directory.php:61 +msgid "Finding: " +msgstr "Zjištění: " + +#: ../../mod/wall_attach.php:75 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "Omlouváme se, možná je Váš soubor větší než je povolené maximum dle nastavení PHP" + +#: ../../mod/wall_attach.php:75 +msgid "Or - did you try to upload an empty file?" +msgstr "Nebo - nenahrával jste prázdný soubor?" + +#: ../../mod/wall_attach.php:81 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "Velikost souboru přesáhla limit %d" + +#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133 +msgid "File upload failed." +msgstr "Nahrání souboru se nezdařilo." + +#: ../../mod/update_community.php:18 ../../mod/update_network.php:25 +#: ../../mod/update_notes.php:37 ../../mod/update_display.php:22 +#: ../../mod/update_profile.php:41 +msgid "[Embedded content - reload page to view]" +msgstr "[Vložený obsah - obnovte stránku pro zobrazení]" + +#: ../../mod/uexport.php:77 +msgid "Export account" +msgstr "Exportovat účet" + +#: ../../mod/uexport.php:77 +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 "Exportujte svůj účet a své kontakty. Použijte tuto funkci pro vytvoření zálohy svého účtu a/nebo k přesunu na jiný server." + +#: ../../mod/uexport.php:78 +msgid "Export all" +msgstr "Exportovat vše" + +#: ../../mod/uexport.php:78 +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 "Exportujte své informace k účtu, kontakty a vše své položky jako json. To může být velmi velký soubor a může to zabrat spoustu času. Tuto funkci použijte pro úplnou zálohu svého účtu(fotografie se neexportují)" + +#: ../../mod/register.php:90 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "Registrace úspěšná. Zkontrolujte prosím svůj e-mail pro další instrukce." + +#: ../../mod/register.php:96 +#, php-format +msgid "" +"Failed to send email message. Here your accout details:
login: %s
" +"password: %s

You can change your password after login." +msgstr "Nepovedlo se odeslat emailovou zprávu. Zde jsou detaily Vašeho účtu:
login: %s
heslo: %s

Své heslo můžete změnit po přihlášení." + +#: ../../mod/register.php:105 +msgid "Your registration can not be processed." +msgstr "Vaši registraci nelze zpracovat." + +#: ../../mod/register.php:148 +msgid "Your registration is pending approval by the site owner." +msgstr "Vaše registrace čeká na schválení vlastníkem serveru." + +#: ../../mod/register.php:186 ../../mod/uimport.php:50 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Došlo k překročení maximálního povoleného počtu registrací za den na tomto serveru. Zkuste to zítra znovu." + +#: ../../mod/register.php:214 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking 'Register'." +msgstr "Tento formulář můžete (volitelně) vyplnit s pomocí OpenID tím, že vyplníte své OpenID a kliknutete na tlačítko 'Zaregistrovat'." + +#: ../../mod/register.php:215 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "Pokud nepoužíváte OpenID, nechte prosím toto pole prázdné a vyplňte zbylé položky." + +#: ../../mod/register.php:216 +msgid "Your OpenID (optional): " +msgstr "Vaše OpenID (nepovinné): " + +#: ../../mod/register.php:230 +msgid "Include your profile in member directory?" +msgstr "Toto je Váš veřejný profil.
Ten může být viditelný kýmkoliv na internetu." + +#: ../../mod/register.php:251 +msgid "Membership on this site is by invitation only." +msgstr "Členství na tomto webu je pouze na pozvání." + +#: ../../mod/register.php:252 +msgid "Your invitation ID: " +msgstr "Vaše pozvání ID:" + +#: ../../mod/register.php:255 ../../mod/admin.php:621 +msgid "Registration" +msgstr "Registrace" + +#: ../../mod/register.php:263 +msgid "Your Full Name (e.g. Joe Smith): " +msgstr "Vaše celé jméno (např. Jan Novák):" + +#: ../../mod/register.php:264 +msgid "Your Email Address: " +msgstr "Vaše e-mailová adresa:" + +#: ../../mod/register.php:265 +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be " +"'nickname@$sitename'." +msgstr "Vyberte přezdívku k profilu. Ta musí začít s textovým znakem. Vaše profilová adresa na tomto webu pak bude \"přezdívka@$sitename\"." + +#: ../../mod/register.php:266 +msgid "Choose a nickname: " +msgstr "Vyberte přezdívku:" + +#: ../../mod/register.php:275 ../../mod/uimport.php:64 +msgid "Import" +msgstr "Import" + +#: ../../mod/register.php:276 +msgid "Import your profile to this friendica instance" +msgstr "Import Vašeho profilu do této friendica instance" + +#: ../../mod/oexchange.php:25 +msgid "Post successful." +msgstr "Příspěvek úspěšně odeslán" + +#: ../../mod/maintenance.php:5 +msgid "System down for maintenance" +msgstr "Systém vypnut z důvodů údržby" + +#: ../../mod/profile.php:155 ../../mod/display.php:332 +msgid "Access to this profile has been restricted." +msgstr "Přístup na tento profil byl omezen." + +#: ../../mod/profile.php:180 +msgid "Tips for New Members" +msgstr "Tipy pro nové členy" + +#: ../../mod/videos.php:115 ../../mod/dfrn_request.php:762 +#: ../../mod/viewcontacts.php:19 ../../mod/photos.php:920 +#: ../../mod/search.php:89 ../../mod/community.php:18 +#: ../../mod/display.php:212 ../../mod/directory.php:33 +msgid "Public access denied." +msgstr "Veřejný přístup odepřen." + +#: ../../mod/videos.php:125 +msgid "No videos selected" +msgstr "Není vybráno žádné video" + +#: ../../mod/videos.php:226 ../../mod/photos.php:1031 +msgid "Access to this item is restricted." +msgstr "Přístup k této položce je omezen." + +#: ../../mod/videos.php:308 ../../mod/photos.php:1808 +msgid "View Album" +msgstr "Zobrazit album" + +#: ../../mod/videos.php:317 +msgid "Recent Videos" +msgstr "Aktuální Videa" + +#: ../../mod/videos.php:319 +msgid "Upload New Videos" +msgstr "Nahrát nová videa" + +#: ../../mod/manage.php:106 +msgid "Manage Identities and/or Pages" +msgstr "Správa identit a / nebo stránek" + +#: ../../mod/manage.php:107 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "Přepnutí mezi různými identitami nebo komunitními/skupinovými stránkami, které sdílí Vaše detaily účtu, nebo kterým jste přidělili oprávnění nastavovat přístupová práva." + +#: ../../mod/manage.php:108 +msgid "Select an identity to manage: " +msgstr "Vyberte identitu pro správu: " + +#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 +msgid "Item not found" +msgstr "Položka nenalezena" + +#: ../../mod/editpost.php:39 +msgid "Edit post" +msgstr "Upravit příspěvek" #: ../../mod/dirfind.php:26 msgid "People Search" @@ -1811,19 +4702,246 @@ msgstr "Vyhledávání lidí" msgid "No matches" msgstr "Žádné shody" -#: ../../mod/fbrowser.php:25 ../../boot.php:2126 ../../include/nav.php:78 -#: ../../view/theme/diabook/theme.php:126 -msgid "Photos" -msgstr "Fotografie" +#: ../../mod/regmod.php:55 +msgid "Account approved." +msgstr "Účet schválen." + +#: ../../mod/regmod.php:92 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registrace zrušena pro %s" + +#: ../../mod/regmod.php:104 +msgid "Please login." +msgstr "Přihlaste se, prosím." + +#: ../../mod/dfrn_request.php:95 +msgid "This introduction has already been accepted." +msgstr "Toto pozvání již bylo přijato." + +#: ../../mod/dfrn_request.php:120 ../../mod/dfrn_request.php:518 +msgid "Profile location is not valid or does not contain profile information." +msgstr "Adresa profilu není platná nebo neobsahuje profilové informace" + +#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:523 +msgid "Warning: profile location has no identifiable owner name." +msgstr "Varování: umístění profilu nemá žádné identifikovatelné jméno vlastníka" + +#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:525 +msgid "Warning: profile location has no profile photo." +msgstr "Varování: umístění profilu nemá žádnou profilovou fotografii." + +#: ../../mod/dfrn_request.php:130 ../../mod/dfrn_request.php:528 +#, 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 požadovaný parametr nebyl nalezen na daném místě" +msgstr[1] "%d požadované parametry nebyly nalezeny na daném místě" +msgstr[2] "%d požadované parametry nebyly nalezeny na daném místě" + +#: ../../mod/dfrn_request.php:172 +msgid "Introduction complete." +msgstr "Představení dokončeno." + +#: ../../mod/dfrn_request.php:214 +msgid "Unrecoverable protocol error." +msgstr "Neopravitelná chyba protokolu" + +#: ../../mod/dfrn_request.php:242 +msgid "Profile unavailable." +msgstr "Profil není k dispozici." + +#: ../../mod/dfrn_request.php:267 +#, php-format +msgid "%s has received too many connection requests today." +msgstr "%s dnes obdržel příliš mnoho požadavků na připojení." + +#: ../../mod/dfrn_request.php:268 +msgid "Spam protection measures have been invoked." +msgstr "Ochrana proti spamu byla aktivována" + +#: ../../mod/dfrn_request.php:269 +msgid "Friends are advised to please try again in 24 hours." +msgstr "Přátelům se doporučuje to zkusit znovu za 24 hodin." + +#: ../../mod/dfrn_request.php:331 +msgid "Invalid locator" +msgstr "Neplatný odkaz" + +#: ../../mod/dfrn_request.php:340 +msgid "Invalid email address." +msgstr "Neplatná emailová adresa" + +#: ../../mod/dfrn_request.php:367 +msgid "This account has not been configured for email. Request failed." +msgstr "Tento účet nebyl nastaven pro email. Požadavek nesplněn." + +#: ../../mod/dfrn_request.php:463 +msgid "Unable to resolve your name at the provided location." +msgstr "Nepodařilo se zjistit Vaše jméno na zadané adrese." + +#: ../../mod/dfrn_request.php:476 +msgid "You have already introduced yourself here." +msgstr "Již jste se zde zavedli." + +#: ../../mod/dfrn_request.php:480 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "Zřejmě jste již přátelé se %s." + +#: ../../mod/dfrn_request.php:501 +msgid "Invalid profile URL." +msgstr "Neplatné URL profilu." + +#: ../../mod/dfrn_request.php:597 +msgid "Your introduction has been sent." +msgstr "Vaše žádost o propojení byla odeslána." + +#: ../../mod/dfrn_request.php:650 +msgid "Please login to confirm introduction." +msgstr "Prosím přihlašte se k potvrzení žádosti o propojení." + +#: ../../mod/dfrn_request.php:660 +msgid "" +"Incorrect identity currently logged in. Please login to " +"this profile." +msgstr "Jste přihlášeni pod nesprávnou identitou Prosím, přihlaste se do tohoto profilu." + +#: ../../mod/dfrn_request.php:671 +msgid "Hide this contact" +msgstr "Skrýt tento kontakt" + +#: ../../mod/dfrn_request.php:674 +#, php-format +msgid "Welcome home %s." +msgstr "Vítejte doma %s." + +#: ../../mod/dfrn_request.php:675 +#, php-format +msgid "Please confirm your introduction/connection request to %s." +msgstr "Prosím potvrďte Vaši žádost o propojení %s." + +#: ../../mod/dfrn_request.php:804 +msgid "" +"Please enter your 'Identity Address' from one of the following supported " +"communications networks:" +msgstr "Prosím zadejte Vaši adresu identity jedné z následujících podporovaných komunikačních sítí:" + +#: ../../mod/dfrn_request.php:824 +msgid "" +"If you are not yet a member of the free social web, follow this link to find a public" +" Friendica site and join us today." +msgstr "Pokud ještě nejste členem svobodné sociální sítě, následujte tento odkaz k nalezení veřejného Friendica serveru a přidejte se k nám ještě dnes." + +#: ../../mod/dfrn_request.php:827 +msgid "Friend/Connection Request" +msgstr "Požadavek o přátelství / kontaktování" + +#: ../../mod/dfrn_request.php:828 +msgid "" +"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " +"testuser@identi.ca" +msgstr "Příklady: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" + +#: ../../mod/dfrn_request.php:829 +msgid "Please answer the following:" +msgstr "Odpovězte, prosím, následující:" + +#: ../../mod/dfrn_request.php:830 +#, php-format +msgid "Does %s know you?" +msgstr "Zná Vás uživatel %s ?" + +#: ../../mod/dfrn_request.php:834 +msgid "Add a personal note:" +msgstr "Přidat osobní poznámku:" + +#: ../../mod/dfrn_request.php:837 +msgid "StatusNet/Federated Social Web" +msgstr "StatusNet / Federativní Sociální Web" + +#: ../../mod/dfrn_request.php:839 +#, php-format +msgid "" +" - please do not use this form. Instead, enter %s into your Diaspora search" +" bar." +msgstr " - prosím nepoužívejte tento formulář. Místo toho zadejte %s do Vašeho Diaspora vyhledávacího pole." + +#: ../../mod/dfrn_request.php:840 +msgid "Your Identity Address:" +msgstr "Verze PHP pro příkazový řádek na Vašem systému nemá povolen \"register_argc_argv\"." + +#: ../../mod/dfrn_request.php:843 +msgid "Submit Request" +msgstr "Odeslat žádost" #: ../../mod/fbrowser.php:113 msgid "Files" msgstr "Soubory" +#: ../../mod/api.php:76 ../../mod/api.php:102 +msgid "Authorize application connection" +msgstr "Povolit připojení aplikacím" + +#: ../../mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "Vraťte se do vaší aplikace a zadejte tento bezpečnostní kód:" + +#: ../../mod/api.php:89 +msgid "Please login to continue." +msgstr "Pro pokračování se prosím přihlaste." + +#: ../../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 "Chcete umožnit této aplikaci přístup k vašim příspěvkům a kontaktům a/nebo k vytváření Vašich nových příspěvků?" + +#: ../../mod/suggest.php:27 +msgid "Do you really want to delete this suggestion?" +msgstr "Opravdu chcete smazat tento návrh?" + +#: ../../mod/suggest.php:74 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Nejsou dostupné žádné návrhy. Pokud je toto nový server, zkuste to znovu za 24 hodin." + +#: ../../mod/suggest.php:92 +msgid "Ignore/Hide" +msgstr "Ignorovat / skrýt" + #: ../../mod/nogroup.php:59 msgid "Contacts who are not members of a group" msgstr "Kontakty, které nejsou členy skupiny" +#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 +#: ../../mod/crepair.php:133 ../../mod/dfrn_confirm.php:120 +msgid "Contact not found." +msgstr "Kontakt nenalezen." + +#: ../../mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "Návrhy přátelství odeslány " + +#: ../../mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Navrhněte přátelé" + +#: ../../mod/fsuggest.php:99 +#, php-format +msgid "Suggest a friend for %s" +msgstr "Navrhněte přátelé pro uživatele %s" + +#: ../../mod/share.php:44 +msgid "link" +msgstr "odkaz" + +#: ../../mod/viewcontacts.php:41 +msgid "No contacts." +msgstr "Žádné kontakty." + #: ../../mod/admin.php:57 msgid "Theme settings updated." msgstr "Nastavení téma zobrazení bylo aktualizováno." @@ -1836,11 +4954,6 @@ msgstr "Web" msgid "Users" msgstr "Uživatelé" -#: ../../mod/admin.php:106 ../../mod/admin.php:1102 ../../mod/admin.php:1155 -#: ../../mod/settings.php:57 -msgid "Plugins" -msgstr "Pluginy" - #: ../../mod/admin.php:107 ../../mod/admin.php:1323 ../../mod/admin.php:1357 msgid "Themes" msgstr "Témata" @@ -1861,10 +4974,6 @@ msgstr "vyzkoušet adresu" msgid "check webfinger" msgstr "vyzkoušet webfinger" -#: ../../mod/admin.php:130 ../../include/nav.php:184 -msgid "Admin" -msgstr "Administrace" - #: ../../mod/admin.php:131 msgid "Plugin Features" msgstr "Funkčnosti rozšíření" @@ -1939,10 +5048,6 @@ msgstr "Nelze zpracovat výchozí url adresu. Musí obsahovat alespoň msgid "Site settings updated." msgstr "Nastavení webu aktualizováno." -#: ../../mod/admin.php:545 ../../mod/settings.php:828 -msgid "No special theme for mobile devices" -msgstr "žádné speciální téma pro mobilní zařízení" - #: ../../mod/admin.php:562 msgid "No community page" msgstr "Komunitní stránka neexistuje" @@ -1959,22 +5064,6 @@ msgstr "Globální komunitní stránka" msgid "At post arrival" msgstr "Při obdržení příspěvku" -#: ../../mod/admin.php:571 ../../include/contact_selectors.php:56 -msgid "Frequently" -msgstr "Často" - -#: ../../mod/admin.php:572 ../../include/contact_selectors.php:57 -msgid "Hourly" -msgstr "každou hodinu" - -#: ../../mod/admin.php:573 ../../include/contact_selectors.php:58 -msgid "Twice daily" -msgstr "Dvakrát denně" - -#: ../../mod/admin.php:574 ../../include/contact_selectors.php:59 -msgid "Daily" -msgstr "denně" - #: ../../mod/admin.php:579 msgid "Multi user instance" msgstr "Více uživatelská instance" @@ -2003,17 +5092,6 @@ msgstr "Vyžadovat u všech odkazů použití SSL" msgid "Self-signed certificate, use SSL for local links only (discouraged)" msgstr "Certifikát podepsaný sám sebou, použít SSL pouze pro lokální odkazy (nedoporučeno)" -#: ../../mod/admin.php:620 ../../mod/admin.php:1156 ../../mod/admin.php:1358 -#: ../../mod/admin.php:1445 ../../mod/settings.php:614 -#: ../../mod/settings.php:724 ../../mod/settings.php:798 -#: ../../mod/settings.php:880 ../../mod/settings.php:1113 -msgid "Save Settings" -msgstr "Uložit Nastavení" - -#: ../../mod/admin.php:621 ../../mod/register.php:255 -msgid "Registration" -msgstr "Registrace" - #: ../../mod/admin.php:622 msgid "File upload" msgstr "Nahrání souborů" @@ -2648,11 +5726,6 @@ msgid "" "\t\t\tThank you and welcome to %4$s." msgstr "\n\t\t\tVaše přihlašovací údaje jsou následující:\n\n\t\t\tAdresa webu: \t%1$s\n\t\t\tpřihlašovací jméno:\t\t%2$s\n\t\t\theslo:\t\t%3$s\n\n\t\t\tHeslo si můžete změnit na stránce \"Nastavení\" vašeho účtu poté, co se přihlásíte.\n\n\t\t\tProsím věnujte pár chvil revizi dalšího nastavení vašeho účtu na dané stránce.\n\n\t\t\tTaké su můžete přidat nějaké základní informace do svého výchozího profilu (na stránce \"Profily\"), takže ostatní lidé vás snáze najdou. \n\n\t\t\tDoporučujeme Vám uvést celé jméno a i foto. Přidáním nějakých \"klíčových slov\" (velmi užitečné pro hledání nových přátel) a možná také zemi, ve které žijete, pokud nechcete být více konkrétní.\n\n\t\t\tPlně resepktujeme vaše právo na soukromí a nic z výše uvedeného není povinné. Pokud jste zde nový a neznáte zde nikoho, uvedením daných informací můžete získat nové přátele.\n\n\t\t\tDíky a vítejte na %4$s." -#: ../../mod/admin.php:838 ../../include/user.php:413 -#, php-format -msgid "Registration details for %s" -msgstr "Registrační údaje pro %s" - #: ../../mod/admin.php:850 #, php-format msgid "%s user blocked/unblocked" @@ -2704,12 +5777,6 @@ msgstr "Uživatel čeká na trvalé smazání" msgid "Request date" msgstr "Datum žádosti" -#: ../../mod/admin.php:1003 ../../mod/admin.php:1015 ../../mod/admin.php:1016 -#: ../../mod/admin.php:1031 ../../include/contact_selectors.php:79 -#: ../../include/contact_selectors.php:86 -msgid "Email" -msgstr "E-mail" - #: ../../mod/admin.php:1004 msgid "No registrations." msgstr "Žádné registrace." @@ -2746,10 +5813,6 @@ msgstr "Poslední položka" msgid "Deleted since" msgstr "Smazán od" -#: ../../mod/admin.php:1016 ../../mod/settings.php:36 -msgid "Account" -msgstr "Účet" - #: ../../mod/admin.php:1018 msgid "" "Selected users will be deleted!\\n\\nEverything these users had posted on " @@ -2870,6 +5933,35 @@ msgstr "FTP uživatel" msgid "FTP Password" msgstr "FTP heslo" +#: ../../mod/wall_upload.php:122 ../../mod/profile_photo.php:144 +#, php-format +msgid "Image exceeds size limit of %d" +msgstr "Obrázek překročil limit velikosti %d" + +#: ../../mod/wall_upload.php:144 ../../mod/photos.php:807 +#: ../../mod/profile_photo.php:153 +msgid "Unable to process image." +msgstr "Obrázek není možné zprocesovat" + +#: ../../mod/wall_upload.php:172 ../../mod/photos.php:834 +#: ../../mod/profile_photo.php:301 +msgid "Image upload failed." +msgstr "Nahrání obrázku selhalo." + +#: ../../mod/home.php:35 +#, php-format +msgid "Welcome to %s" +msgstr "Vítá Vás %s" + +#: ../../mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "Chyba OpenID protokolu. Navrátilo se žádné ID." + +#: ../../mod/openid.php:53 +msgid "" +"Account not found and OpenID registration is not permitted on this site." +msgstr "Nenalezen účet a OpenID registrace na tomto serveru není dovolena." + #: ../../mod/network.php:142 msgid "Search Results For:" msgstr "Výsledky hledání pro:" @@ -2878,15 +5970,6 @@ msgstr "Výsledky hledání pro:" msgid "Remove term" msgstr "Odstranit termín" -#: ../../mod/network.php:194 ../../mod/search.php:30 -#: ../../include/features.php:42 -msgid "Saved Searches" -msgstr "Uložená hledání" - -#: ../../mod/network.php:195 ../../include/group.php:275 -msgid "add" -msgstr "přidat" - #: ../../mod/network.php:356 msgid "Commented Order" msgstr "Dle komentářů" @@ -2968,14 +6051,576 @@ msgstr "Soukromé zprávy této osobě jsou vystaveny riziku prozrazení." msgid "Invalid contact." msgstr "Neplatný kontakt." -#: ../../mod/allfriends.php:34 -#, php-format -msgid "Friends of %s" -msgstr "Přátelé uživatele %s" +#: ../../mod/filer.php:30 +msgid "- select -" +msgstr "- vyber -" -#: ../../mod/allfriends.php:40 -msgid "No friends to display." -msgstr "Žádní přátelé k zobrazení" +#: ../../mod/friendica.php:59 +msgid "This is Friendica, version" +msgstr "Toto je Friendica, verze" + +#: ../../mod/friendica.php:60 +msgid "running at web location" +msgstr "běžící na webu" + +#: ../../mod/friendica.php:62 +msgid "" +"Please visit Friendica.com to learn " +"more about the Friendica project." +msgstr "Pro získání dalších informací o projektu Friendica navštivte prosím Friendica.com." + +#: ../../mod/friendica.php:64 +msgid "Bug reports and issues: please visit" +msgstr "Pro hlášení chyb a námětů na změny navštivte:" + +#: ../../mod/friendica.php:65 +msgid "" +"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " +"dot com" +msgstr "Návrhy, chválu, dary, apod. - prosím piště na \"info\" na Friendica - tečka com" + +#: ../../mod/friendica.php:79 +msgid "Installed plugins/addons/apps:" +msgstr "Instalované pluginy/doplňky/aplikace:" + +#: ../../mod/friendica.php:92 +msgid "No installed plugins/addons/apps" +msgstr "Nejsou žádné nainstalované doplňky/aplikace" + +#: ../../mod/apps.php:11 +msgid "Applications" +msgstr "Aplikace" + +#: ../../mod/apps.php:14 +msgid "No installed applications." +msgstr "Žádné nainstalované aplikace." + +#: ../../mod/photos.php:67 ../../mod/photos.php:1262 ../../mod/photos.php:1819 +msgid "Upload New Photos" +msgstr "Nahrát nové fotografie" + +#: ../../mod/photos.php:144 +msgid "Contact information unavailable" +msgstr "Kontakt byl zablokován" + +#: ../../mod/photos.php:165 +msgid "Album not found." +msgstr "Album nenalezeno." + +#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204 +msgid "Delete Album" +msgstr "Smazat album" + +#: ../../mod/photos.php:198 +msgid "Do you really want to delete this photo album and all its photos?" +msgstr "Opravdu chcete smazat toto foto album a všechny jeho fotografie?" + +#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1515 +msgid "Delete Photo" +msgstr "Smazat fotografii" + +#: ../../mod/photos.php:287 +msgid "Do you really want to delete this photo?" +msgstr "Opravdu chcete smazat tuto fotografii?" + +#: ../../mod/photos.php:662 +#, php-format +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "%1$s byl označen v %2$s uživatelem %3$s" + +#: ../../mod/photos.php:662 +msgid "a photo" +msgstr "fotografie" + +#: ../../mod/photos.php:767 +msgid "Image exceeds size limit of " +msgstr "Velikost obrázku překračuje limit velikosti" + +#: ../../mod/photos.php:775 +msgid "Image file is empty." +msgstr "Soubor obrázku je prázdný." + +#: ../../mod/photos.php:930 +msgid "No photos selected" +msgstr "Není vybrána žádná fotografie" + +#: ../../mod/photos.php:1094 +#, php-format +msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." +msgstr "Použil jste %1$.2f Mbajtů z %2$.2f Mbajtů úložiště fotografií." + +#: ../../mod/photos.php:1129 +msgid "Upload Photos" +msgstr "Nahrání fotografií " + +#: ../../mod/photos.php:1133 ../../mod/photos.php:1199 +msgid "New album name: " +msgstr "Název nového alba: " + +#: ../../mod/photos.php:1134 +msgid "or existing album name: " +msgstr "nebo stávající název alba: " + +#: ../../mod/photos.php:1135 +msgid "Do not show a status post for this upload" +msgstr "Nezobrazovat stav pro tento upload" + +#: ../../mod/photos.php:1137 ../../mod/photos.php:1510 +msgid "Permissions" +msgstr "Oprávnění:" + +#: ../../mod/photos.php:1148 +msgid "Private Photo" +msgstr "Soukromé Fotografie" + +#: ../../mod/photos.php:1149 +msgid "Public Photo" +msgstr "Veřejné Fotografie" + +#: ../../mod/photos.php:1212 +msgid "Edit Album" +msgstr "Edituj album" + +#: ../../mod/photos.php:1218 +msgid "Show Newest First" +msgstr "Zobrazit nejprve nejnovější:" + +#: ../../mod/photos.php:1220 +msgid "Show Oldest First" +msgstr "Zobrazit nejprve nejstarší:" + +#: ../../mod/photos.php:1248 ../../mod/photos.php:1802 +msgid "View Photo" +msgstr "Zobraz fotografii" + +#: ../../mod/photos.php:1294 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Oprávnění bylo zamítnuto. Přístup k této položce může být omezen." + +#: ../../mod/photos.php:1296 +msgid "Photo not available" +msgstr "Fotografie není k dispozici" + +#: ../../mod/photos.php:1352 +msgid "View photo" +msgstr "Zobrazit obrázek" + +#: ../../mod/photos.php:1352 +msgid "Edit photo" +msgstr "Editovat fotografii" + +#: ../../mod/photos.php:1353 +msgid "Use as profile photo" +msgstr "Použít jako profilovou fotografii" + +#: ../../mod/photos.php:1378 +msgid "View Full Size" +msgstr "Zobrazit v plné velikosti" + +#: ../../mod/photos.php:1457 +msgid "Tags: " +msgstr "Štítky: " + +#: ../../mod/photos.php:1460 +msgid "[Remove any tag]" +msgstr "[Odstranit všechny štítky]" + +#: ../../mod/photos.php:1500 +msgid "Rotate CW (right)" +msgstr "Rotovat po směru hodinových ručiček (doprava)" + +#: ../../mod/photos.php:1501 +msgid "Rotate CCW (left)" +msgstr "Rotovat proti směru hodinových ručiček (doleva)" + +#: ../../mod/photos.php:1503 +msgid "New album name" +msgstr "Nové jméno alba" + +#: ../../mod/photos.php:1506 +msgid "Caption" +msgstr "Titulek" + +#: ../../mod/photos.php:1508 +msgid "Add a Tag" +msgstr "Přidat štítek" + +#: ../../mod/photos.php:1512 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Příklad: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" + +#: ../../mod/photos.php:1521 +msgid "Private photo" +msgstr "Soukromé fotografie" + +#: ../../mod/photos.php:1522 +msgid "Public photo" +msgstr "Veřejné fotografie" + +#: ../../mod/photos.php:1817 +msgid "Recent Photos" +msgstr "Aktuální fotografie" + +#: ../../mod/bookmarklet.php:41 +msgid "The post was created" +msgstr "Příspěvek byl vytvořen" + +#: ../../mod/follow.php:27 +msgid "Contact added" +msgstr "Kontakt přidán" + +#: ../../mod/uimport.php:66 +msgid "Move account" +msgstr "Přesunout účet" + +#: ../../mod/uimport.php:67 +msgid "You can import an account from another Friendica server." +msgstr "Můžete importovat účet z jiného Friendica serveru." + +#: ../../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 "Musíte exportovat svůj účet na sterém serveru a nahrát ho zde. My následně vytvoříme Váš původní účet zde včetně všech kontaktů. Zároveň se pokusíme informovat všechny Vaše přátele, že jste se sem přestěhovali." + +#: ../../mod/uimport.php:69 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (statusnet/identi.ca) or from Diaspora" +msgstr "Tato funkčnost je experimentální. Nemůžeme importovat kontakty z OSStatus sítí (statusnet/identi.ca) nebo z Diaspory" + +#: ../../mod/uimport.php:70 +msgid "Account file" +msgstr "Soubor s účtem" + +#: ../../mod/uimport.php:70 +msgid "" +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" +msgstr "K exportu Vašeho účtu, jděte do \"Nastavení->Export vašich osobních dat\" a zvolte \" Export účtu\"" + +#: ../../mod/invite.php:27 +msgid "Total invitation limit exceeded." +msgstr "Celkový limit pozvánek byl překročen" + +#: ../../mod/invite.php:49 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : není platná e-mailová adresa." + +#: ../../mod/invite.php:73 +msgid "Please join us on Friendica" +msgstr "Prosím přidejte se k nám na Friendice" + +#: ../../mod/invite.php:84 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Limit pozvánek byl překročen. Prosím kontaktujte vašeho administrátora webu." + +#: ../../mod/invite.php:89 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : Doručení zprávy se nezdařilo." + +#: ../../mod/invite.php:93 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d zpráva odeslána." +msgstr[1] "%d zprávy odeslány." +msgstr[2] "%d zprávy odeslány." + +#: ../../mod/invite.php:112 +msgid "You have no more invitations available" +msgstr "Nemáte k dispozici žádné další pozvánky" + +#: ../../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 "Navštivte %s pro seznam veřejných serverů, na kterých se můžete přidat. Členové Friendica se mohou navzájem propojovat, stejně tak jako se mohou přiopojit se členy mnoha dalších sociálních sítí." + +#: ../../mod/invite.php:122 +#, php-format +msgid "" +"To accept this invitation, please visit and register at %s or any other " +"public Friendica website." +msgstr "K akceptaci této pozvánky prosím navštivte a registrujte se na %s nebo na kterékoliv jiném veřejném Friendica serveru." + +#: ../../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 servery jsou všechny propojené a vytváří tak rozsáhlou sociální síť s důrazem na soukromý a je pod kontrolou svých členů. Členové se mohou propojovat s mnoha dalšími tradičními sociálními sítěmi. Navštivte %s pro seznam alternativních Friendica serverů kde se můžete přidat." + +#: ../../mod/invite.php:126 +msgid "" +"Our apologies. This system is not currently configured to connect with other" +" public sites or invite members." +msgstr "Omlouváme se. Systém nyní není nastaven tak, aby se připojil k ostatním veřejným serverům nebo umožnil pozvat nové členy." + +#: ../../mod/invite.php:132 +msgid "Send invitations" +msgstr "Poslat pozvánky" + +#: ../../mod/invite.php:133 +msgid "Enter email addresses, one per line:" +msgstr "Zadejte e-mailové adresy, jednu na řádek:" + +#: ../../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 "Jste srdečně pozván se připojit ke mně a k mým blízkým přátelům na Friendica - a pomoci nám vytvořit lepší sociální síť." + +#: ../../mod/invite.php:137 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "Budete muset zadat kód této pozvánky: $invite_code" + +#: ../../mod/invite.php:137 +msgid "" +"Once you have registered, please connect with me via my profile page at:" +msgstr "Jakmile se zaregistrujete, prosím spojte se se mnou přes mou profilovu stránku na:" + +#: ../../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 "Pro více informací o Friendica projektu a o tom, proč je tak důležitý, prosím navštivte http://friendica.com" + +#: ../../mod/viewsrc.php:7 +msgid "Access denied." +msgstr "Přístup odmítnut" + +#: ../../mod/lostpass.php:19 +msgid "No valid account found." +msgstr "Nenalezen žádný platný účet." + +#: ../../mod/lostpass.php:35 +msgid "Password reset request issued. Check your email." +msgstr "Žádost o obnovení hesla vyřízena. Zkontrolujte Vaši e-mailovou schránku." + +#: ../../mod/lostpass.php:42 +#, php-format +msgid "" +"\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." +msgstr "\n\t\tDrahý %1$s,\n\t\t\tNa \"%2$s\" jsme obdrželi požadavek na obnovu vašeho hesla \n\t\tpassword. Pro potvrzení žádosti prosím klikněte na zaslaný verifikační odkaz níže nebo si ho zkopírujte do adresní řádky prohlížeče.\n\n\t\tPokud jste tuto žádost nezasílaliI prosím na uvedený odkaz neklikejte a tento email smažte.\n\n\t\tVaše heslo nebude změněno dokud nebudeme moci oveřit, že jste autorem této žádosti." + +#: ../../mod/lostpass.php:53 +#, php-format +msgid "" +"\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" +msgstr "\n\t\tKlikněte na následující odkaz pro potvrzení Vaší identity:\n\n\t\t%1$s\n\n\t\tNásledně obdržíte zprávu obsahující nové heslo.\n\t\tHeslo si můžete si změnit na stránce nastavení účtu poté, co se přihlásíte.\n\n\t\tVaše přihlašovací údaje jsou následující:\n\n\t\tUmístění webu:\t%2$s\n\t\tPřihlašovací jméno:\t%3$s" + +#: ../../mod/lostpass.php:72 +#, php-format +msgid "Password reset requested at %s" +msgstr "Na %s bylo zažádáno o resetování hesla" + +#: ../../mod/lostpass.php:92 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "Žádost nemohla být ověřena. (Možná jste ji odeslali již dříve.) Obnovení hesla se nezdařilo." + +#: ../../mod/lostpass.php:110 +msgid "Your password has been reset as requested." +msgstr "Vaše heslo bylo na Vaše přání resetováno." + +#: ../../mod/lostpass.php:111 +msgid "Your new password is" +msgstr "Někdo Vám napsal na Vaši profilovou stránku" + +#: ../../mod/lostpass.php:112 +msgid "Save or copy your new password - and then" +msgstr "Uložte si nebo zkopírujte nové heslo - a pak" + +#: ../../mod/lostpass.php:113 +msgid "click here to login" +msgstr "klikněte zde pro přihlášení" + +#: ../../mod/lostpass.php:114 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Nezdá se, že by to bylo Vaše celé jméno (křestní jméno a příjmení)." + +#: ../../mod/lostpass.php:125 +#, php-format +msgid "" +"\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" +msgstr "\n\t\t\t\tDrahý %1$s,\n⇥⇥⇥⇥⇥Vaše heslo bylo na požádání změněno. Prosím uchovejte si tuto informaci (nebo si změntě heslo ihned na něco, co si budete pamatovat).\t" + +#: ../../mod/lostpass.php:131 +#, php-format +msgid "" +"\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" +msgstr "\n\t\t\t\tVaše přihlašovací údaje jsou následující:\n\n\t\t\t\tUmístění webu:\t%1$s\n\t\t\t\tPřihlašovací jméno:\t%2$s\n\t\t\t\tHeslo:\t%3$s\n\n\t\t\t\tHeslo si můžete si změnit na stránce nastavení účtu poté, co se přihlásíte.\n\t\t\t" + +#: ../../mod/lostpass.php:147 +#, php-format +msgid "Your password has been changed at %s" +msgstr "Vaše heslo bylo změněno na %s" + +#: ../../mod/lostpass.php:159 +msgid "Forgot your Password?" +msgstr "Zapomněli jste heslo?" + +#: ../../mod/lostpass.php:160 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Zadejte svůj e-mailovou adresu a odešlete žádost o zaslání Vašeho nového hesla. Poté zkontrolujte svůj e-mail pro další instrukce." + +#: ../../mod/lostpass.php:161 +msgid "Nickname or Email: " +msgstr "Přezdívka nebo e-mail: " + +#: ../../mod/lostpass.php:162 +msgid "Reset" +msgstr "Reset" + +#: ../../mod/babel.php:17 +msgid "Source (bbcode) text:" +msgstr "Zdrojový text (bbcode):" + +#: ../../mod/babel.php:23 +msgid "Source (Diaspora) text to convert to BBcode:" +msgstr "Zdrojový (Diaspora) text k převedení do BB kódování:" + +#: ../../mod/babel.php:31 +msgid "Source input: " +msgstr "Zdrojový vstup: " + +#: ../../mod/babel.php:35 +msgid "bb2html (raw HTML): " +msgstr "bb2html (raw 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 "Vstupní data (ve formátu Diaspora): " + +#: ../../mod/babel.php:74 +msgid "diaspora2bb: " +msgstr "diaspora2bb: " + +#: ../../mod/tagrm.php:41 +msgid "Tag removed" +msgstr "Štítek odstraněn" + +#: ../../mod/tagrm.php:79 +msgid "Remove Item Tag" +msgstr "Odebrat štítek položky" + +#: ../../mod/tagrm.php:81 +msgid "Select a tag to remove: " +msgstr "Vyberte štítek k odebrání: " + +#: ../../mod/removeme.php:46 ../../mod/removeme.php:49 +msgid "Remove My Account" +msgstr "Odstranit můj účet" + +#: ../../mod/removeme.php:47 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "Tímto bude kompletně odstraněn váš účet. Jakmile bude účet odstraněn, nebude už možné ho obnovit." + +#: ../../mod/removeme.php:48 +msgid "Please enter your password for verification:" +msgstr "Prosím, zadejte své heslo pro ověření:" + +#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 +msgid "Invalid profile identifier." +msgstr "Neplatný identifikátor profilu." + +#: ../../mod/profperm.php:101 +msgid "Profile Visibility Editor" +msgstr "Editor viditelnosti profilu " + +#: ../../mod/profperm.php:114 +msgid "Visible To" +msgstr "Viditelný pro" + +#: ../../mod/profperm.php:130 +msgid "All Contacts (with secure profile access)" +msgstr "Všechny kontakty (se zabezpečeným přístupovým profilem )" + +#: ../../mod/match.php:12 +msgid "Profile Match" +msgstr "Shoda profilu" + +#: ../../mod/match.php:20 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Žádná klíčová slova k porovnání. Prosím, přidejte klíčová slova do Vašeho výchozího profilu." + +#: ../../mod/match.php:57 +msgid "is interested in:" +msgstr "zajímá se o:" #: ../../mod/events.php:66 msgid "Event title and start time are required." @@ -2989,16 +6634,6 @@ msgstr "l, F j" msgid "Edit event" msgstr "Editovat událost" -#: ../../mod/events.php:335 ../../include/text.php:1647 -#: ../../include/text.php:1657 -msgid "link to source" -msgstr "odkaz na zdroj" - -#: ../../mod/events.php:370 ../../boot.php:2143 ../../include/nav.php:80 -#: ../../view/theme/diabook/theme.php:127 -msgid "Events" -msgstr "Události" - #: ../../mod/events.php:371 msgid "Create New Event" msgstr "Vytvořit novou událost" @@ -3048,11 +6683,6 @@ msgstr "Nastavit časové pásmo pro uživatele s právem pro čtení" msgid "Description:" msgstr "Popis:" -#: ../../mod/events.php:471 ../../mod/directory.php:136 ../../boot.php:1648 -#: ../../include/bb2diaspora.php:170 ../../include/event.php:40 -msgid "Location:" -msgstr "Místo:" - #: ../../mod/events.php:473 msgid "Title:" msgstr "Název:" @@ -3061,186 +6691,437 @@ msgstr "Název:" msgid "Share this event" msgstr "Sdílet tuto událost" -#: ../../mod/content.php:437 ../../mod/content.php:740 -#: ../../mod/photos.php:1653 ../../object/Item.php:129 -#: ../../include/conversation.php:613 -msgid "Select" -msgstr "Vybrat" +#: ../../mod/ping.php:240 +msgid "{0} wants to be your friend" +msgstr "{0} chce být Vaším přítelem" -#: ../../mod/content.php:471 ../../mod/content.php:852 -#: ../../mod/content.php:853 ../../object/Item.php:326 -#: ../../object/Item.php:327 ../../include/conversation.php:654 +#: ../../mod/ping.php:245 +msgid "{0} sent you a message" +msgstr "{0} vám poslal zprávu" + +#: ../../mod/ping.php:250 +msgid "{0} requested registration" +msgstr "{0} požaduje registraci" + +#: ../../mod/ping.php:256 #, php-format -msgid "View %s's profile @ %s" -msgstr "Zobrazit profil uživatele %s na %s" +msgid "{0} commented %s's post" +msgstr "{0} komentoval příspěvek uživatele %s" -#: ../../mod/content.php:481 ../../mod/content.php:864 -#: ../../object/Item.php:340 ../../include/conversation.php:674 +#: ../../mod/ping.php:261 #, php-format -msgid "%s from %s" -msgstr "%s od %s" +msgid "{0} liked %s's post" +msgstr "{0} má rád příspěvek uživatele %s" -#: ../../mod/content.php:497 ../../include/conversation.php:690 -msgid "View in context" -msgstr "Pohled v kontextu" - -#: ../../mod/content.php:603 ../../object/Item.php:387 +#: ../../mod/ping.php:266 #, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d komentář" -msgstr[1] "%d komentářů" -msgstr[2] "%d komentářů" +msgid "{0} disliked %s's post" +msgstr "{0} nemá rád příspěvek uživatele %s" -#: ../../mod/content.php:605 ../../object/Item.php:389 -#: ../../object/Item.php:402 ../../include/text.php:1972 -msgid "comment" -msgid_plural "comments" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "komentář" +#: ../../mod/ping.php:271 +#, php-format +msgid "{0} is now friends with %s" +msgstr "{0} se skamarádil s %s" -#: ../../mod/content.php:606 ../../boot.php:751 ../../object/Item.php:390 -#: ../../include/contact_widgets.php:205 -msgid "show more" -msgstr "zobrazit více" +#: ../../mod/ping.php:276 +msgid "{0} posted" +msgstr "{0} zasláno" -#: ../../mod/content.php:620 ../../mod/photos.php:1359 -#: ../../object/Item.php:116 -msgid "Private Message" -msgstr "Soukromá zpráva" +#: ../../mod/ping.php:281 +#, php-format +msgid "{0} tagged %s's post with #%s" +msgstr "{0} označen %s' příspěvek s #%s" -#: ../../mod/content.php:684 ../../mod/photos.php:1542 -#: ../../object/Item.php:231 -msgid "I like this (toggle)" -msgstr "Líbí se mi to (přepínač)" +#: ../../mod/ping.php:287 +msgid "{0} mentioned you in a post" +msgstr "{0} vás zmínil v příspěvku" -#: ../../mod/content.php:684 ../../object/Item.php:231 -msgid "like" -msgstr "má rád" +#: ../../mod/mood.php:133 +msgid "Mood" +msgstr "Nálada" -#: ../../mod/content.php:685 ../../mod/photos.php:1543 -#: ../../object/Item.php:232 -msgid "I don't like this (toggle)" -msgstr "Nelíbí se mi to (přepínač)" +#: ../../mod/mood.php:134 +msgid "Set your current mood and tell your friends" +msgstr "Nastavte svou aktuální náladu a řekněte to Vašim přátelům" -#: ../../mod/content.php:685 ../../object/Item.php:232 -msgid "dislike" -msgstr "nemá rád" +#: ../../mod/search.php:174 ../../mod/community.php:62 +#: ../../mod/community.php:71 +msgid "No results." +msgstr "Žádné výsledky." -#: ../../mod/content.php:687 ../../object/Item.php:234 -msgid "Share this" -msgstr "Sdílet toto" +#: ../../mod/message.php:67 +msgid "Unable to locate contact information." +msgstr "Nepodařilo se najít kontaktní informace." -#: ../../mod/content.php:687 ../../object/Item.php:234 -msgid "share" -msgstr "sdílí" +#: ../../mod/message.php:207 +msgid "Do you really want to delete this message?" +msgstr "Opravdu chcete smazat tuto zprávu?" -#: ../../mod/content.php:707 ../../mod/photos.php:1562 -#: ../../mod/photos.php:1606 ../../mod/photos.php:1694 -#: ../../object/Item.php:675 -msgid "This is you" -msgstr "Nastavte Vaši polohu" +#: ../../mod/message.php:227 +msgid "Message deleted." +msgstr "Zpráva odstraněna." -#: ../../mod/content.php:709 ../../mod/photos.php:1564 -#: ../../mod/photos.php:1608 ../../mod/photos.php:1696 ../../boot.php:750 -#: ../../object/Item.php:361 ../../object/Item.php:677 -msgid "Comment" -msgstr "Okomentovat" +#: ../../mod/message.php:258 +msgid "Conversation removed." +msgstr "Konverzace odstraněna." -#: ../../mod/content.php:711 ../../object/Item.php:679 -msgid "Bold" -msgstr "Tučné" +#: ../../mod/message.php:371 +msgid "No messages." +msgstr "Žádné zprávy." -#: ../../mod/content.php:712 ../../object/Item.php:680 -msgid "Italic" -msgstr "Kurzíva" +#: ../../mod/message.php:378 +#, php-format +msgid "Unknown sender - %s" +msgstr "Neznámý odesilatel - %s" -#: ../../mod/content.php:713 ../../object/Item.php:681 -msgid "Underline" -msgstr "Podrtžené" +#: ../../mod/message.php:381 +#, php-format +msgid "You and %s" +msgstr "Vy a %s" -#: ../../mod/content.php:714 ../../object/Item.php:682 -msgid "Quote" -msgstr "Citovat" +#: ../../mod/message.php:384 +#, php-format +msgid "%s and You" +msgstr "%s a Vy" -#: ../../mod/content.php:715 ../../object/Item.php:683 -msgid "Code" -msgstr "Kód" +#: ../../mod/message.php:405 ../../mod/message.php:546 +msgid "Delete conversation" +msgstr "Odstranit konverzaci" -#: ../../mod/content.php:716 ../../object/Item.php:684 -msgid "Image" -msgstr "Obrázek" +#: ../../mod/message.php:408 +msgid "D, d M Y - g:i A" +msgstr "D M R - g:i A" -#: ../../mod/content.php:717 ../../object/Item.php:685 -msgid "Link" -msgstr "Odkaz" +#: ../../mod/message.php:411 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d zpráva" +msgstr[1] "%d zprávy" +msgstr[2] "%d zpráv" -#: ../../mod/content.php:718 ../../object/Item.php:686 -msgid "Video" -msgstr "Video" +#: ../../mod/message.php:450 +msgid "Message not available." +msgstr "Zpráva není k dispozici." -#: ../../mod/content.php:719 ../../mod/editpost.php:145 -#: ../../mod/photos.php:1566 ../../mod/photos.php:1610 -#: ../../mod/photos.php:1698 ../../object/Item.php:687 -#: ../../include/conversation.php:1126 -msgid "Preview" -msgstr "Náhled" +#: ../../mod/message.php:520 +msgid "Delete message" +msgstr "Smazat zprávu" -#: ../../mod/content.php:728 ../../mod/settings.php:676 -#: ../../object/Item.php:120 -msgid "Edit" -msgstr "Upravit" - -#: ../../mod/content.php:753 ../../object/Item.php:195 -msgid "add star" -msgstr "přidat hvězdu" - -#: ../../mod/content.php:754 ../../object/Item.php:196 -msgid "remove star" -msgstr "odebrat hvězdu" - -#: ../../mod/content.php:755 ../../object/Item.php:197 -msgid "toggle star status" -msgstr "přepnout hvězdu" - -#: ../../mod/content.php:758 ../../object/Item.php:200 -msgid "starred" -msgstr "označeno hvězdou" - -#: ../../mod/content.php:759 ../../object/Item.php:220 -msgid "add tag" -msgstr "přidat štítek" - -#: ../../mod/content.php:763 ../../object/Item.php:133 -msgid "save to folder" -msgstr "uložit do složky" - -#: ../../mod/content.php:854 ../../object/Item.php:328 -msgid "to" -msgstr "pro" - -#: ../../mod/content.php:855 ../../object/Item.php:330 -msgid "Wall-to-Wall" -msgstr "Zeď-na-Zeď" - -#: ../../mod/content.php:856 ../../object/Item.php:331 -msgid "via Wall-To-Wall:" -msgstr "přes Zeď-na-Zeď " - -#: ../../mod/removeme.php:46 ../../mod/removeme.php:49 -msgid "Remove My Account" -msgstr "Odstranit můj účet" - -#: ../../mod/removeme.php:47 +#: ../../mod/message.php:548 msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "Tímto bude kompletně odstraněn váš účet. Jakmile bude účet odstraněn, nebude už možné ho obnovit." +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Není k dispozici zabezpečená komunikace. Možná budete schopni reagovat z odesilatelovy profilové stránky." -#: ../../mod/removeme.php:48 -msgid "Please enter your password for verification:" -msgstr "Prosím, zadejte své heslo pro ověření:" +#: ../../mod/message.php:552 +msgid "Send Reply" +msgstr "Poslat odpověď" + +#: ../../mod/community.php:23 +msgid "Not available." +msgstr "Není k dispozici." + +#: ../../mod/profiles.php:18 ../../mod/profiles.php:133 +#: ../../mod/profiles.php:179 ../../mod/profiles.php:630 +#: ../../mod/dfrn_confirm.php:64 +msgid "Profile not found." +msgstr "Profil nenalezen" + +#: ../../mod/profiles.php:37 +msgid "Profile deleted." +msgstr "Profil smazán." + +#: ../../mod/profiles.php:55 ../../mod/profiles.php:89 +msgid "Profile-" +msgstr "Profil-" + +#: ../../mod/profiles.php:74 ../../mod/profiles.php:117 +msgid "New profile created." +msgstr "Nový profil vytvořen." + +#: ../../mod/profiles.php:95 +msgid "Profile unavailable to clone." +msgstr "Profil není možné naklonovat." + +#: ../../mod/profiles.php:189 +msgid "Profile Name is required." +msgstr "Jméno profilu je povinné." + +#: ../../mod/profiles.php:340 +msgid "Marital Status" +msgstr "Rodinný Stav" + +#: ../../mod/profiles.php:344 +msgid "Romantic Partner" +msgstr "Romatický partner" + +#: ../../mod/profiles.php:348 +msgid "Likes" +msgstr "Libí se mi" + +#: ../../mod/profiles.php:352 +msgid "Dislikes" +msgstr "Nelibí se mi" + +#: ../../mod/profiles.php:356 +msgid "Work/Employment" +msgstr "Práce/Zaměstnání" + +#: ../../mod/profiles.php:359 +msgid "Religion" +msgstr "Náboženství" + +#: ../../mod/profiles.php:363 +msgid "Political Views" +msgstr "Politické přesvědčení" + +#: ../../mod/profiles.php:367 +msgid "Gender" +msgstr "Pohlaví" + +#: ../../mod/profiles.php:371 +msgid "Sexual Preference" +msgstr "Sexuální orientace" + +#: ../../mod/profiles.php:375 +msgid "Homepage" +msgstr "Domácí stránka" + +#: ../../mod/profiles.php:379 ../../mod/profiles.php:698 +msgid "Interests" +msgstr "Zájmy" + +#: ../../mod/profiles.php:383 +msgid "Address" +msgstr "Adresa" + +#: ../../mod/profiles.php:390 ../../mod/profiles.php:694 +msgid "Location" +msgstr "Lokace" + +#: ../../mod/profiles.php:473 +msgid "Profile updated." +msgstr "Profil aktualizován." + +#: ../../mod/profiles.php:568 +msgid " and " +msgstr " a " + +#: ../../mod/profiles.php:576 +msgid "public profile" +msgstr "veřejný profil" + +#: ../../mod/profiles.php:579 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s změnil %2$s na “%3$s”" + +#: ../../mod/profiles.php:580 +#, php-format +msgid " - Visit %1$s's %2$s" +msgstr " - Navštivte %2$s uživatele %1$s" + +#: ../../mod/profiles.php:583 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s aktualizoval %2$s, změnou %3$s." + +#: ../../mod/profiles.php:658 +msgid "Hide contacts and friends:" +msgstr "Skrýt kontakty a přátele:" + +#: ../../mod/profiles.php:663 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "Skrýt u tohoto profilu Vaše kontakty / seznam přátel před před dalšími uživateli zobrazující si tento profil?" + +#: ../../mod/profiles.php:685 +msgid "Edit Profile Details" +msgstr "Upravit podrobnosti profilu " + +#: ../../mod/profiles.php:687 +msgid "Change Profile Photo" +msgstr "Změna Profilové fotky" + +#: ../../mod/profiles.php:688 +msgid "View this profile" +msgstr "Zobrazit tento profil" + +#: ../../mod/profiles.php:689 +msgid "Create a new profile using these settings" +msgstr "Vytvořit nový profil pomocí tohoto nastavení" + +#: ../../mod/profiles.php:690 +msgid "Clone this profile" +msgstr "Klonovat tento profil" + +#: ../../mod/profiles.php:691 +msgid "Delete this profile" +msgstr "Smazat tento profil" + +#: ../../mod/profiles.php:692 +msgid "Basic information" +msgstr "Základní informace" + +#: ../../mod/profiles.php:693 +msgid "Profile picture" +msgstr "Profilový obrázek" + +#: ../../mod/profiles.php:695 +msgid "Preferences" +msgstr "Nastavení" + +#: ../../mod/profiles.php:696 +msgid "Status information" +msgstr "Statusové informace" + +#: ../../mod/profiles.php:697 +msgid "Additional information" +msgstr "Dodatečné informace" + +#: ../../mod/profiles.php:699 ../../mod/newmember.php:36 +#: ../../mod/profile_photo.php:244 +msgid "Upload Profile Photo" +msgstr "Nahrát profilovou fotografii" + +#: ../../mod/profiles.php:700 +msgid "Profile Name:" +msgstr "Jméno profilu:" + +#: ../../mod/profiles.php:701 +msgid "Your Full Name:" +msgstr "Vaše celé jméno:" + +#: ../../mod/profiles.php:702 +msgid "Title/Description:" +msgstr "Název / Popis:" + +#: ../../mod/profiles.php:703 +msgid "Your Gender:" +msgstr "Vaše pohlaví:" + +#: ../../mod/profiles.php:704 +#, php-format +msgid "Birthday (%s):" +msgstr "Narozeniny uživatele (%s):" + +#: ../../mod/profiles.php:705 +msgid "Street Address:" +msgstr "Ulice:" + +#: ../../mod/profiles.php:706 +msgid "Locality/City:" +msgstr "Město:" + +#: ../../mod/profiles.php:707 +msgid "Postal/Zip Code:" +msgstr "PSČ:" + +#: ../../mod/profiles.php:708 +msgid "Country:" +msgstr "Země:" + +#: ../../mod/profiles.php:709 +msgid "Region/State:" +msgstr "Region / stát:" + +#: ../../mod/profiles.php:710 +msgid " Marital Status:" +msgstr " Rodinný stav:" + +#: ../../mod/profiles.php:711 +msgid "Who: (if applicable)" +msgstr "Kdo: (pokud je možné)" + +#: ../../mod/profiles.php:712 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Příklady: jan123, Jan Novák, jan@seznam.cz" + +#: ../../mod/profiles.php:713 +msgid "Since [date]:" +msgstr "Od [data]:" + +#: ../../mod/profiles.php:715 +msgid "Homepage URL:" +msgstr "Odkaz na domovskou stránku:" + +#: ../../mod/profiles.php:718 +msgid "Religious Views:" +msgstr "Náboženské přesvědčení:" + +#: ../../mod/profiles.php:719 +msgid "Public Keywords:" +msgstr "Veřejná klíčová slova:" + +#: ../../mod/profiles.php:720 +msgid "Private Keywords:" +msgstr "Soukromá klíčová slova:" + +#: ../../mod/profiles.php:723 +msgid "Example: fishing photography software" +msgstr "Příklad: fishing photography software" + +#: ../../mod/profiles.php:724 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "(Používá se pro doporučování potenciálních přátel, může být viděno ostatními)" + +#: ../../mod/profiles.php:725 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Používá se pro vyhledávání profilů, není nikdy zobrazeno ostatním)" + +#: ../../mod/profiles.php:726 +msgid "Tell us about yourself..." +msgstr "Řekněte nám něco o sobě ..." + +#: ../../mod/profiles.php:727 +msgid "Hobbies/Interests" +msgstr "Koníčky/zájmy" + +#: ../../mod/profiles.php:728 +msgid "Contact information and Social Networks" +msgstr "Kontaktní informace a sociální sítě" + +#: ../../mod/profiles.php:729 +msgid "Musical interests" +msgstr "Hudební vkus" + +#: ../../mod/profiles.php:730 +msgid "Books, literature" +msgstr "Knihy, literatura" + +#: ../../mod/profiles.php:731 +msgid "Television" +msgstr "Televize" + +#: ../../mod/profiles.php:732 +msgid "Film/dance/culture/entertainment" +msgstr "Film/tanec/kultura/zábava" + +#: ../../mod/profiles.php:733 +msgid "Love/romance" +msgstr "Láska/romantika" + +#: ../../mod/profiles.php:734 +msgid "Work/employment" +msgstr "Práce/zaměstnání" + +#: ../../mod/profiles.php:735 +msgid "School/education" +msgstr "Škola/vzdělání" + +#: ../../mod/profiles.php:740 +msgid "" +"This is your public profile.
It may " +"be visible to anybody using the internet." +msgstr "Toto je váš veřejný profil.
Ten může být viditelný kýmkoliv na internetu." + +#: ../../mod/profiles.php:750 ../../mod/directory.php:113 +msgid "Age: " +msgstr "Věk: " + +#: ../../mod/profiles.php:803 +msgid "Edit/Manage Profiles" +msgstr "Upravit / Spravovat profily" #: ../../mod/install.php:117 msgid "Friendica Communications Server - Setup" @@ -3533,1014 +7414,482 @@ msgid "" "poller." msgstr "Webový instalátor musí být schopen vytvořit soubor s názvem \".htconfig.php\" v hlavním adresáři Vašeho webového serveru ale nyní mu to není umožněno." -#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112 -#, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "Došlo k překročení maximálního počtu zpráv na zeď během jednoho dne. Zpráva %s nedoručena." - -#: ../../mod/wallmessage.php:59 -msgid "Unable to check your home location." -msgstr "Nebylo možné zjistit Vaši domácí lokaci." - -#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 -msgid "No recipient." -msgstr "Žádný příjemce." - -#: ../../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 "Pokud si přejete, aby uživatel %s mohl odpovědět, ověřte si zda-li máte povoleno na svém serveru zasílání soukromých zpráv od neznámých odesilatelů." - -#: ../../mod/help.php:79 +#: ../../mod/help.php:31 msgid "Help:" msgstr "Nápověda:" -#: ../../mod/help.php:84 ../../include/nav.php:114 -msgid "Help" -msgstr "Nápověda" +#: ../../mod/crepair.php:106 +msgid "Contact settings applied." +msgstr "Nastavení kontaktu změněno" -#: ../../mod/help.php:90 ../../index.php:256 -msgid "Not Found" -msgstr "Nenalezen" +#: ../../mod/crepair.php:108 +msgid "Contact update failed." +msgstr "Aktualizace kontaktu selhala." -#: ../../mod/help.php:93 ../../index.php:259 -msgid "Page not found." -msgstr "Stránka nenalezena" +#: ../../mod/crepair.php:139 +msgid "Repair Contact Settings" +msgstr "Opravit nastavení kontaktu" + +#: ../../mod/crepair.php:141 +msgid "" +"WARNING: This is highly advanced and if you enter incorrect" +" information your communications with this contact may stop working." +msgstr "Varování: Toto je velmi pokročilé a pokud zadáte nesprávné informace, Vaše komunikace s tímto kontaktem může přestat fungovat." + +#: ../../mod/crepair.php:142 +msgid "" +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "Prosím použijte ihned v prohlížeči tlačítko \"zpět\" pokud si nejste jistí co dělat na této stránce." + +#: ../../mod/crepair.php:148 +msgid "Return to contact editor" +msgstr "Návrat k editoru kontaktu" + +#: ../../mod/crepair.php:159 ../../mod/crepair.php:161 +msgid "No mirroring" +msgstr "Žádné zrcadlení" + +#: ../../mod/crepair.php:159 +msgid "Mirror as forwarded posting" +msgstr "Zrcadlit pro přeposlané příspěvky" + +#: ../../mod/crepair.php:159 ../../mod/crepair.php:161 +msgid "Mirror as my own posting" +msgstr "Zrcadlit jako mé vlastní příspěvky" + +#: ../../mod/crepair.php:166 +msgid "Account Nickname" +msgstr "Přezdívka účtu" + +#: ../../mod/crepair.php:167 +msgid "@Tagname - overrides Name/Nickname" +msgstr "@Tagname - upřednostněno před Jménem/Přezdívkou" + +#: ../../mod/crepair.php:168 +msgid "Account URL" +msgstr "URL adresa účtu" + +#: ../../mod/crepair.php:169 +msgid "Friend Request URL" +msgstr "Žádost o přátelství URL" + +#: ../../mod/crepair.php:170 +msgid "Friend Confirm URL" +msgstr "URL adresa potvrzení přátelství" + +#: ../../mod/crepair.php:171 +msgid "Notification Endpoint URL" +msgstr "Notifikační URL adresa" + +#: ../../mod/crepair.php:172 +msgid "Poll/Feed URL" +msgstr "Poll/Feed URL adresa" + +#: ../../mod/crepair.php:173 +msgid "New photo from this URL" +msgstr "Nové foto z této URL adresy" + +#: ../../mod/crepair.php:174 +msgid "Remote Self" +msgstr "Remote Self" + +#: ../../mod/crepair.php:176 +msgid "Mirror postings from this contact" +msgstr "Zrcadlení správ od tohoto kontaktu" + +#: ../../mod/crepair.php:176 +msgid "" +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." +msgstr "Označit tento kontakt jako \"remote_self\", s tímto nastavením freindica bude přeposílat všechny nové příspěvky od tohoto kontaktu." + +#: ../../mod/newmember.php:6 +msgid "Welcome to Friendica" +msgstr "Vítejte na Friendica" + +#: ../../mod/newmember.php:8 +msgid "New Member Checklist" +msgstr "Seznam doporučení pro nového člena" + +#: ../../mod/newmember.php:12 +msgid "" +"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." +msgstr "Rádi bychom vám nabídli několik tipů a odkazů pro začátek. Klikněte na jakoukoliv položku pro zobrazení relevantní stránky. Odkaz na tuto stránku bude viditelný z Vaší domovské stránky po dobu dvou týdnů od Vaší první registrace." + +#: ../../mod/newmember.php:14 +msgid "Getting Started" +msgstr "Začínáme" + +#: ../../mod/newmember.php:18 +msgid "Friendica Walk-Through" +msgstr "Prohlídka Friendica " + +#: ../../mod/newmember.php:18 +msgid "" +"On your Quick Start page - find a brief introduction to your " +"profile and network tabs, make some new connections, and find some groups to" +" join." +msgstr "Na Vaší stránce Rychlý Start - naleznete stručné představení k Vašemu profilu a záložce Síť, k vytvoření spojení s novými kontakty a nalezení skupin, ke kterým se můžete připojit." + +#: ../../mod/newmember.php:26 +msgid "Go to Your Settings" +msgstr "Navštivte své nastavení" + +#: ../../mod/newmember.php:26 +msgid "" +"On your Settings page - change your initial password. Also make a " +"note of your Identity Address. This looks just like an email address - and " +"will be useful in making friends on the free social web." +msgstr "Na Vaší stránce Nastavení - si změňte Vaše první heslo.\nVěnujte také svou pozornost k adrese identity. Vypadá jako emailová adresa a bude Vám užitečná pro navazování přátelství na svobodné sociální síti." + +#: ../../mod/newmember.php:28 +msgid "" +"Review the other settings, particularly the privacy settings. An unpublished" +" directory listing is like having an unlisted phone number. In general, you " +"should probably publish your listing - unless all of your friends and " +"potential friends know exactly how to find you." +msgstr "Prohlédněte si další nastavení, a to zejména nastavení soukromí. Nezveřejnění svého účtu v adresáři je jako mít nezveřejněné telefonní číslo. Obecně platí, že je lepší mít svůj účet zveřejněný, leda by všichni vaši potenciální přátelé věděli, jak vás přesně najít." + +#: ../../mod/newmember.php:36 +msgid "" +"Upload a profile photo if you have not done so already. Studies have shown " +"that people with real photos of themselves are ten times more likely to make" +" friends than people who do not." +msgstr "Nahrajte si svou profilovou fotku, pokud jste tak již neučinili. Studie ukázaly, že lidé se skutečnými fotografiemi mají desetkrát častěji přátele než lidé, kteří nemají." + +#: ../../mod/newmember.php:38 +msgid "Edit Your Profile" +msgstr "Editujte Váš profil" + +#: ../../mod/newmember.php:38 +msgid "" +"Edit your default profile to your liking. Review the " +"settings for hiding your list of friends and hiding the profile from unknown" +" visitors." +msgstr "Upravit výchozí profil podle vašich představ. Prověřte nastavení pro skrytí Vašeho seznamu přátel a skrytí profilu před neznámými návštěvníky." + +#: ../../mod/newmember.php:40 +msgid "Profile Keywords" +msgstr "Profilová klíčová slova" + +#: ../../mod/newmember.php:40 +msgid "" +"Set some public keywords for your default profile which describe your " +"interests. We may be able to find other people with similar interests and " +"suggest friendships." +msgstr "Nastavte si nějaká veřejné klíčová slova pro výchozí profil, která popisují Vaše zájmy. Friendika Vám může nalézt další lidi s podobnými zájmy a navrhnout přátelství." + +#: ../../mod/newmember.php:44 +msgid "Connecting" +msgstr "Probíhá pokus o připojení" + +#: ../../mod/newmember.php:49 +msgid "" +"Authorise the Facebook Connector if you currently have a Facebook account " +"and we will (optionally) import all your Facebook friends and conversations." +msgstr "Jestliže máte účet na Facebooku, povolte konektor na Facebook a bude možné (na přání) importovat všechny Vaš přátele na Facebooku a všechny Vaše konverzace." + +#: ../../mod/newmember.php:51 +msgid "" +"If this is your own personal server, installing the Facebook addon " +"may ease your transition to the free social web." +msgstr "Pokud je toto Váš soukromý server, instalací Facebok doplňku můžete zjednodušit Váš přechod na svobodný sociální web." + +#: ../../mod/newmember.php:56 +msgid "Importing Emails" +msgstr "Importování emaiů" + +#: ../../mod/newmember.php:56 +msgid "" +"Enter your email access information on your Connector Settings page if you " +"wish to import and interact with friends or mailing lists from your email " +"INBOX" +msgstr "Pokud chcete importovat své přátele nebo mailové skupiny a komunikovat s nimi, zadejte na Vaší stránce Nastavení kontektoru své přístupové údaje do svého emailového účtu" + +#: ../../mod/newmember.php:58 +msgid "Go to Your Contacts Page" +msgstr "Navštivte Vaši stránku s kontakty" + +#: ../../mod/newmember.php:58 +msgid "" +"Your Contacts page is your gateway to managing friendships and connecting " +"with friends on other networks. Typically you enter their address or site " +"URL in the Add New Contact dialog." +msgstr "Vaše stránka Kontakty je Vaše brána k nastavování přátelství a propojení s přáteli z dalších sítí. Typicky zadáte jejich emailovou adresu nebo URL adresu jejich serveru prostřednictvím dialogu Přidat nový kontakt." + +#: ../../mod/newmember.php:60 +msgid "Go to Your Site's Directory" +msgstr "Navštivte lokální adresář Friendica" + +#: ../../mod/newmember.php:60 +msgid "" +"The Directory page lets you find other people in this network or other " +"federated sites. Look for a Connect or Follow link on " +"their profile page. Provide your own Identity Address if requested." +msgstr "Stránka Adresář Vám pomůže najít další lidi na tomto serveru nebo v jiných propojených serverech. Prostřednictvím odkazů Připojení nebo Následovat si prohlédněte jejich profilovou stránku. Uveďte svou vlastní adresu identity, je-li požadována." + +#: ../../mod/newmember.php:62 +msgid "Finding New People" +msgstr "Nalezení nových lidí" + +#: ../../mod/newmember.php:62 +msgid "" +"On the side panel of the Contacts page are several tools to find new " +"friends. We can match people by interest, look up people by name or " +"interest, and provide suggestions based on network relationships. On a brand" +" new site, friend suggestions will usually begin to be populated within 24 " +"hours." +msgstr "Na bočním panelu stránky s kontakty je několik nástrojů k nalezení nových přátel. Porovnáme lidi dle zájmů, najdeme lidi podle jména nebo zájmu a poskytneme Vám návrhy založené na přátelství v síti přátel. Na zcela novém serveru se návrhy přátelství nabínou obvykle během 24 hodin." + +#: ../../mod/newmember.php:70 +msgid "Group Your Contacts" +msgstr "Seskupte si své kontakty" + +#: ../../mod/newmember.php:70 +msgid "" +"Once you have made some friends, organize them into private conversation " +"groups from the sidebar of your Contacts page and then you can interact with" +" each group privately on your Network page." +msgstr "Jakmile získáte nějaké přátele, uspořádejte si je do soukromých konverzačních skupin na postranním panelu Vaší stránky Kontakty a pak můžete komunikovat s každou touto skupinu soukromě prostřednictvím stránky Síť." + +#: ../../mod/newmember.php:73 +msgid "Why Aren't My Posts Public?" +msgstr "Proč nejsou mé příspěvky veřejné?" + +#: ../../mod/newmember.php:73 +msgid "" +"Friendica respects your privacy. By default, your posts will only show up to" +" people you've added as friends. For more information, see the help section " +"from the link above." +msgstr "Friendica respektuje Vaše soukromí. Defaultně jsou Vaše příspěvky viditelné pouze lidem, které označíte jako Vaše přátelé. Více informací naleznete v nápovědě na výše uvedeném odkazu" + +#: ../../mod/newmember.php:78 +msgid "Getting Help" +msgstr "Získání nápovědy" + +#: ../../mod/newmember.php:82 +msgid "Go to the Help Section" +msgstr "Navštivte sekci nápovědy" + +#: ../../mod/newmember.php:82 +msgid "" +"Our help pages may be consulted for detail on other program" +" features and resources." +msgstr "Na stránkách Nápověda naleznete nejen další podrobnosti o všech funkcích Friendika ale také další zdroje informací." + +#: ../../mod/poke.php:192 +msgid "Poke/Prod" +msgstr "Šťouchanec" + +#: ../../mod/poke.php:193 +msgid "poke, prod or do other things to somebody" +msgstr "někoho šťouchnout nebo mu provést jinou věc" + +#: ../../mod/poke.php:194 +msgid "Recipient" +msgstr "Příjemce" + +#: ../../mod/poke.php:195 +msgid "Choose what you wish to do to recipient" +msgstr "Vyberte, co si přejete příjemci udělat" + +#: ../../mod/poke.php:198 +msgid "Make this post private" +msgstr "Změnit tento příspěvek na soukromý" + +#: ../../mod/display.php:496 +msgid "Item has been removed." +msgstr "Položka byla odstraněna." + +#: ../../mod/subthread.php:103 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s následuje %3$s uživatele %2$s" #: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536 #, php-format msgid "%1$s welcomes %2$s" msgstr "%1$s vítá %2$s" -#: ../../mod/home.php:35 -#, php-format -msgid "Welcome to %s" -msgstr "Vítá Vás %s" - -#: ../../mod/wall_attach.php:75 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "Omlouváme se, možná je Váš soubor větší než je povolené maximum dle nastavení PHP" - -#: ../../mod/wall_attach.php:75 -msgid "Or - did you try to upload an empty file?" -msgstr "Nebo - nenahrával jste prázdný soubor?" - -#: ../../mod/wall_attach.php:81 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "Velikost souboru přesáhla limit %d" - -#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133 -msgid "File upload failed." -msgstr "Nahrání souboru se nezdařilo." - -#: ../../mod/match.php:12 -msgid "Profile Match" -msgstr "Shoda profilu" - -#: ../../mod/match.php:20 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Žádná klíčová slova k porovnání. Prosím, přidejte klíčová slova do Vašeho výchozího profilu." - -#: ../../mod/match.php:57 -msgid "is interested in:" -msgstr "zajímá se o:" - -#: ../../mod/match.php:58 ../../mod/suggest.php:90 ../../boot.php:1568 -#: ../../include/contact_widgets.php:10 -msgid "Connect" -msgstr "Spojit" - -#: ../../mod/share.php:44 -msgid "link" -msgstr "odkaz" - -#: ../../mod/community.php:23 -msgid "Not available." -msgstr "Není k dispozici." - -#: ../../mod/community.php:32 ../../include/nav.php:129 -#: ../../include/nav.php:131 ../../view/theme/diabook/theme.php:129 -msgid "Community" -msgstr "Komunita" - -#: ../../mod/community.php:62 ../../mod/community.php:71 -#: ../../mod/search.php:168 ../../mod/search.php:192 -msgid "No results." -msgstr "Žádné výsledky." - -#: ../../mod/settings.php:29 ../../mod/photos.php:80 -msgid "everybody" -msgstr "Žádost o připojení selhala nebo byla zrušena." - -#: ../../mod/settings.php:41 -msgid "Additional features" -msgstr "Další funkčnosti" - -#: ../../mod/settings.php:46 -msgid "Display" -msgstr "Zobrazení" - -#: ../../mod/settings.php:52 ../../mod/settings.php:780 -msgid "Social Networks" -msgstr "Sociální sítě" - -#: ../../mod/settings.php:62 ../../include/nav.php:170 -msgid "Delegations" -msgstr "Delegace" - -#: ../../mod/settings.php:67 -msgid "Connected apps" -msgstr "Propojené aplikace" - -#: ../../mod/settings.php:72 ../../mod/uexport.php:85 -msgid "Export personal data" -msgstr "Export osobních údajů" - -#: ../../mod/settings.php:77 -msgid "Remove account" -msgstr "Odstranit účet" - -#: ../../mod/settings.php:129 -msgid "Missing some important data!" -msgstr "Chybí některé důležité údaje!" - -#: ../../mod/settings.php:238 -msgid "Failed to connect with email account using the settings provided." -msgstr "Nepodařilo se připojit k e-mailovému účtu pomocí dodaného nastavení." - -#: ../../mod/settings.php:243 -msgid "Email settings updated." -msgstr "Nastavení e-mailu aktualizována." - -#: ../../mod/settings.php:258 -msgid "Features updated" -msgstr "Aktualizované funkčnosti" - -#: ../../mod/settings.php:321 -msgid "Relocate message has been send to your contacts" -msgstr "Správa o změně umístění byla odeslána vašim kontaktům" - -#: ../../mod/settings.php:335 -msgid "Passwords do not match. Password unchanged." -msgstr "Hesla se neshodují. Heslo nebylo změněno." - -#: ../../mod/settings.php:340 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Prázdné hesla nejsou povolena. Heslo nebylo změněno." - -#: ../../mod/settings.php:348 -msgid "Wrong password." -msgstr "Špatné heslo." - -#: ../../mod/settings.php:359 -msgid "Password changed." -msgstr "Heslo bylo změněno." - -#: ../../mod/settings.php:361 -msgid "Password update failed. Please try again." -msgstr "Aktualizace hesla se nezdařila. Zkuste to prosím znovu." - -#: ../../mod/settings.php:428 -msgid " Please use a shorter name." -msgstr "Prosím použijte kratší jméno." - -#: ../../mod/settings.php:430 -msgid " Name too short." -msgstr "Jméno je příliš krátké." - -#: ../../mod/settings.php:439 -msgid "Wrong Password" -msgstr "Špatné heslo" - -#: ../../mod/settings.php:444 -msgid " Not valid email." -msgstr "Neplatný e-mail." - -#: ../../mod/settings.php:450 -msgid " Cannot change to that email." -msgstr "Nelze provést změnu na tento e-mail." - -#: ../../mod/settings.php:506 -msgid "Private forum has no privacy permissions. Using default privacy group." -msgstr "Soukromé fórum nemá nastaveno zabezpečení. Používá se defaultní soukromá skupina." - -#: ../../mod/settings.php:510 -msgid "Private forum has no privacy permissions and no default privacy group." -msgstr "Soukromé fórum nemá nastaveno zabezpečení a ani žádnou defaultní soukromou skupinu." - -#: ../../mod/settings.php:540 -msgid "Settings updated." -msgstr "Nastavení aktualizováno." - -#: ../../mod/settings.php:613 ../../mod/settings.php:639 -#: ../../mod/settings.php:675 -msgid "Add application" -msgstr "Přidat aplikaci" - -#: ../../mod/settings.php:617 ../../mod/settings.php:643 -msgid "Consumer Key" -msgstr "Consumer Key" - -#: ../../mod/settings.php:618 ../../mod/settings.php:644 -msgid "Consumer Secret" -msgstr "Consumer Secret" - -#: ../../mod/settings.php:619 ../../mod/settings.php:645 -msgid "Redirect" -msgstr "Přesměrování" - -#: ../../mod/settings.php:620 ../../mod/settings.php:646 -msgid "Icon url" -msgstr "URL ikony" - -#: ../../mod/settings.php:631 -msgid "You can't edit this application." -msgstr "Nemůžete editovat tuto aplikaci." - -#: ../../mod/settings.php:674 -msgid "Connected Apps" -msgstr "Připojené aplikace" - -#: ../../mod/settings.php:678 -msgid "Client key starts with" -msgstr "Klienský klíč začíná" - -#: ../../mod/settings.php:679 -msgid "No name" -msgstr "Bez názvu" - -#: ../../mod/settings.php:680 -msgid "Remove authorization" -msgstr "Odstranit oprávnění" - -#: ../../mod/settings.php:692 -msgid "No Plugin settings configured" -msgstr "Žádný doplněk není nastaven" - -#: ../../mod/settings.php:700 -msgid "Plugin Settings" -msgstr "Nastavení doplňku" - -#: ../../mod/settings.php:714 -msgid "Off" -msgstr "Vypnuto" - -#: ../../mod/settings.php:714 -msgid "On" -msgstr "Zapnuto" - -#: ../../mod/settings.php:722 -msgid "Additional Features" -msgstr "Další Funkčnosti" - -#: ../../mod/settings.php:736 ../../mod/settings.php:737 -#, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "Vestavěná podpora pro připojení s %s je %s" - -#: ../../mod/settings.php:736 ../../mod/dfrn_request.php:838 -#: ../../include/contact_selectors.php:80 -msgid "Diaspora" -msgstr "Diaspora" - -#: ../../mod/settings.php:736 ../../mod/settings.php:737 -msgid "enabled" -msgstr "povoleno" - -#: ../../mod/settings.php:736 ../../mod/settings.php:737 -msgid "disabled" -msgstr "zakázáno" - -#: ../../mod/settings.php:737 -msgid "StatusNet" -msgstr "StatusNet" - -#: ../../mod/settings.php:773 -msgid "Email access is disabled on this site." -msgstr "Přístup k elektronické poště je na tomto serveru zakázán." - -#: ../../mod/settings.php:785 -msgid "Email/Mailbox Setup" -msgstr "Nastavení e-mailu" - -#: ../../mod/settings.php:786 +#: ../../mod/dfrn_confirm.php:121 msgid "" -"If you wish to communicate with email contacts using this service " -"(optional), please specify how to connect to your mailbox." -msgstr "Pokud chcete komunikovat pomocí této služby s Vašimi kontakty z e-mailu (volitelné), uveďte, jak se připojit k Vaší e-mailové schránce." +"This may occasionally happen if contact was requested by both persons and it" +" has already been approved." +msgstr "To se může občas stát pokud kontakt byl zažádán oběma osobami a již byl schválen." -#: ../../mod/settings.php:787 -msgid "Last successful email check:" -msgstr "Poslední úspěšná kontrola e-mailu:" +#: ../../mod/dfrn_confirm.php:240 +msgid "Response from remote site was not understood." +msgstr "Odpověď ze vzdáleného serveru nebyla srozumitelná." -#: ../../mod/settings.php:789 -msgid "IMAP server name:" -msgstr "jméno IMAP serveru:" +#: ../../mod/dfrn_confirm.php:249 ../../mod/dfrn_confirm.php:254 +msgid "Unexpected response from remote site: " +msgstr "Neočekávaná odpověď od vzdáleného serveru:" -#: ../../mod/settings.php:790 -msgid "IMAP port:" -msgstr "IMAP port:" +#: ../../mod/dfrn_confirm.php:263 +msgid "Confirmation completed successfully." +msgstr "Potvrzení úspěšně dokončena." -#: ../../mod/settings.php:791 -msgid "Security:" -msgstr "Zabezpečení:" +#: ../../mod/dfrn_confirm.php:265 ../../mod/dfrn_confirm.php:279 +#: ../../mod/dfrn_confirm.php:286 +msgid "Remote site reported: " +msgstr "Vzdálený server oznámil:" -#: ../../mod/settings.php:791 ../../mod/settings.php:796 -msgid "None" -msgstr "Žádný" +#: ../../mod/dfrn_confirm.php:277 +msgid "Temporary failure. Please wait and try again." +msgstr "Dočasné selhání. Prosím, vyčkejte a zkuste to znovu." -#: ../../mod/settings.php:792 -msgid "Email login name:" -msgstr "přihlašovací jméno k e-mailu:" +#: ../../mod/dfrn_confirm.php:284 +msgid "Introduction failed or was revoked." +msgstr "Žádost o propojení selhala nebo byla zrušena." -#: ../../mod/settings.php:793 -msgid "Email password:" -msgstr "heslo k Vašemu e-mailu:" +#: ../../mod/dfrn_confirm.php:429 +msgid "Unable to set contact photo." +msgstr "Nelze nastavit fotografii kontaktu." -#: ../../mod/settings.php:794 -msgid "Reply-to address:" -msgstr "Odpovědět na adresu:" - -#: ../../mod/settings.php:795 -msgid "Send public posts to all email contacts:" -msgstr "Poslat veřejné příspěvky na všechny e-mailové kontakty:" - -#: ../../mod/settings.php:796 -msgid "Action after import:" -msgstr "Akce po importu:" - -#: ../../mod/settings.php:796 -msgid "Mark as seen" -msgstr "Označit jako přečtené" - -#: ../../mod/settings.php:796 -msgid "Move to folder" -msgstr "Přesunout do složky" - -#: ../../mod/settings.php:797 -msgid "Move to folder:" -msgstr "Přesunout do složky:" - -#: ../../mod/settings.php:878 -msgid "Display Settings" -msgstr "Nastavení Zobrazení" - -#: ../../mod/settings.php:884 ../../mod/settings.php:899 -msgid "Display Theme:" -msgstr "Vybrat grafickou šablonu:" - -#: ../../mod/settings.php:885 -msgid "Mobile Theme:" -msgstr "Téma pro mobilní zařízení:" - -#: ../../mod/settings.php:886 -msgid "Update browser every xx seconds" -msgstr "Aktualizovat prohlížeč každých xx sekund" - -#: ../../mod/settings.php:886 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Minimum 10 sekund, žádné maximum." - -#: ../../mod/settings.php:887 -msgid "Number of items to display per page:" -msgstr "Počet položek zobrazených na stránce:" - -#: ../../mod/settings.php:887 ../../mod/settings.php:888 -msgid "Maximum of 100 items" -msgstr "Maximum 100 položek" - -#: ../../mod/settings.php:888 -msgid "Number of items to display per page when viewed from mobile device:" -msgstr "Počet položek ke zobrazení na stránce při zobrazení na mobilním zařízení:" - -#: ../../mod/settings.php:889 -msgid "Don't show emoticons" -msgstr "Nezobrazovat emotikony" - -#: ../../mod/settings.php:890 -msgid "Don't show notices" -msgstr "Nezobrazovat oznámění" - -#: ../../mod/settings.php:891 -msgid "Infinite scroll" -msgstr "Nekonečné posouvání" - -#: ../../mod/settings.php:892 -msgid "Automatic updates only at the top of the network page" -msgstr "Automatické aktualizace pouze na hlavní stránce Síť." - -#: ../../mod/settings.php:969 -msgid "User Types" -msgstr "Uživatelské typy" - -#: ../../mod/settings.php:970 -msgid "Community Types" -msgstr "Komunitní typy" - -#: ../../mod/settings.php:971 -msgid "Normal Account Page" -msgstr "Normální stránka účtu" - -#: ../../mod/settings.php:972 -msgid "This account is a normal personal profile" -msgstr "Tento účet je běžný osobní profil" - -#: ../../mod/settings.php:975 -msgid "Soapbox Page" -msgstr "Stránka \"Soapbox\"" - -#: ../../mod/settings.php:976 -msgid "Automatically approve all connection/friend requests as read-only fans" -msgstr "Automaticky schválit všechna spojení / přátelství jako fanoušky s právem pouze ke čtení" - -#: ../../mod/settings.php:979 -msgid "Community Forum/Celebrity Account" -msgstr "Komunitní fórum/ účet celebrity" - -#: ../../mod/settings.php:980 -msgid "" -"Automatically approve all connection/friend requests as read-write fans" -msgstr "Automaticky schvalovat všechny žádosti o spojení / přátelství, jako fanoušky s právem ke čtení." - -#: ../../mod/settings.php:983 -msgid "Automatic Friend Page" -msgstr "Automatická stránka přítele" - -#: ../../mod/settings.php:984 -msgid "Automatically approve all connection/friend requests as friends" -msgstr "Automaticky schvalovat všechny žádosti o spojení / přátelství jako přátele" - -#: ../../mod/settings.php:987 -msgid "Private Forum [Experimental]" -msgstr "Soukromé fórum [Experimentální]" - -#: ../../mod/settings.php:988 -msgid "Private forum - approved members only" -msgstr "Soukromé fórum - pouze pro schválené členy" - -#: ../../mod/settings.php:1000 -msgid "OpenID:" -msgstr "OpenID:" - -#: ../../mod/settings.php:1000 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "(Volitelné) Povolit OpenID pro přihlášení k tomuto účtu." - -#: ../../mod/settings.php:1010 -msgid "Publish your default profile in your local site directory?" -msgstr "Publikovat Váš výchozí profil v místním adresáři webu?" - -#: ../../mod/settings.php:1010 ../../mod/settings.php:1016 -#: ../../mod/settings.php:1024 ../../mod/settings.php:1028 -#: ../../mod/settings.php:1033 ../../mod/settings.php:1039 -#: ../../mod/settings.php:1045 ../../mod/settings.php:1051 -#: ../../mod/settings.php:1081 ../../mod/settings.php:1082 -#: ../../mod/settings.php:1083 ../../mod/settings.php:1084 -#: ../../mod/settings.php:1085 ../../mod/dfrn_request.php:830 -#: ../../mod/register.php:234 ../../mod/profiles.php:661 -#: ../../mod/profiles.php:665 ../../mod/api.php:106 -msgid "No" -msgstr "Ne" - -#: ../../mod/settings.php:1016 -msgid "Publish your default profile in the global social directory?" -msgstr "Publikovat Váš výchozí profil v globální sociálním adresáři?" - -#: ../../mod/settings.php:1024 -msgid "Hide your contact/friend list from viewers of your default profile?" -msgstr "Skrýt Vaše kontaktní údaje a seznam přátel před návštěvníky ve Vašem výchozím profilu?" - -#: ../../mod/settings.php:1028 ../../include/conversation.php:1057 -msgid "Hide your profile details from unknown viewers?" -msgstr "Skrýt Vaše profilové detaily před neznámými uživateli?" - -#: ../../mod/settings.php:1028 -msgid "" -"If enabled, posting public messages to Diaspora and other networks isn't " -"possible." -msgstr "Pokud je povoleno, není možné zasílání veřejných příspěvků do Diaspory a dalších sítí." - -#: ../../mod/settings.php:1033 -msgid "Allow friends to post to your profile page?" -msgstr "Povolit přátelům umisťování příspěvků na vaši profilovou stránku?" - -#: ../../mod/settings.php:1039 -msgid "Allow friends to tag your posts?" -msgstr "Povolit přátelům označovat Vaše příspěvky?" - -#: ../../mod/settings.php:1045 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "Chcete nám povolit abychom vás navrhovali jako přátelé pro nové členy?" - -#: ../../mod/settings.php:1051 -msgid "Permit unknown people to send you private mail?" -msgstr "Povolit neznámým lidem Vám zasílat soukromé zprávy?" - -#: ../../mod/settings.php:1059 -msgid "Profile is not published." -msgstr "Profil není zveřejněn." - -#: ../../mod/settings.php:1067 -msgid "Your Identity Address is" -msgstr "Vaše adresa identity je" - -#: ../../mod/settings.php:1078 -msgid "Automatically expire posts after this many days:" -msgstr "Automaticky expirovat příspěvky po zadaném počtu dní:" - -#: ../../mod/settings.php:1078 -msgid "If empty, posts will not expire. Expired posts will be deleted" -msgstr "Pokud je prázdné, příspěvky nebudou nikdy expirovat. Expirované příspěvky budou vymazány" - -#: ../../mod/settings.php:1079 -msgid "Advanced expiration settings" -msgstr "Pokročilé nastavení expirací" - -#: ../../mod/settings.php:1080 -msgid "Advanced Expiration" -msgstr "Nastavení expirací" - -#: ../../mod/settings.php:1081 -msgid "Expire posts:" -msgstr "Expirovat příspěvky:" - -#: ../../mod/settings.php:1082 -msgid "Expire personal notes:" -msgstr "Expirovat osobní poznámky:" - -#: ../../mod/settings.php:1083 -msgid "Expire starred posts:" -msgstr "Expirovat příspěvky s hvězdou:" - -#: ../../mod/settings.php:1084 -msgid "Expire photos:" -msgstr "Expirovat fotografie:" - -#: ../../mod/settings.php:1085 -msgid "Only expire posts by others:" -msgstr "Přízpěvky expirovat pouze ostatními:" - -#: ../../mod/settings.php:1111 -msgid "Account Settings" -msgstr "Nastavení účtu" - -#: ../../mod/settings.php:1119 -msgid "Password Settings" -msgstr "Nastavení hesla" - -#: ../../mod/settings.php:1120 -msgid "New Password:" -msgstr "Nové heslo:" - -#: ../../mod/settings.php:1121 -msgid "Confirm:" -msgstr "Potvrďte:" - -#: ../../mod/settings.php:1121 -msgid "Leave password fields blank unless changing" -msgstr "Pokud nechcete změnit heslo, položku hesla nevyplňujte" - -#: ../../mod/settings.php:1122 -msgid "Current Password:" -msgstr "Stávající heslo:" - -#: ../../mod/settings.php:1122 ../../mod/settings.php:1123 -msgid "Your current password to confirm the changes" -msgstr "Vaše stávající heslo k potvrzení změn" - -#: ../../mod/settings.php:1123 -msgid "Password:" -msgstr "Heslo: " - -#: ../../mod/settings.php:1127 -msgid "Basic Settings" -msgstr "Základní nastavení" - -#: ../../mod/settings.php:1128 ../../include/profile_advanced.php:15 -msgid "Full Name:" -msgstr "Celé jméno:" - -#: ../../mod/settings.php:1129 -msgid "Email Address:" -msgstr "E-mailová adresa:" - -#: ../../mod/settings.php:1130 -msgid "Your Timezone:" -msgstr "Vaše časové pásmo:" - -#: ../../mod/settings.php:1131 -msgid "Default Post Location:" -msgstr "Výchozí umístění příspěvků:" - -#: ../../mod/settings.php:1132 -msgid "Use Browser Location:" -msgstr "Používat umístění dle prohlížeče:" - -#: ../../mod/settings.php:1135 -msgid "Security and Privacy Settings" -msgstr "Nastavení zabezpečení a soukromí" - -#: ../../mod/settings.php:1137 -msgid "Maximum Friend Requests/Day:" -msgstr "Maximální počet žádostí o přátelství za den:" - -#: ../../mod/settings.php:1137 ../../mod/settings.php:1167 -msgid "(to prevent spam abuse)" -msgstr "(Aby se zabránilo spamu)" - -#: ../../mod/settings.php:1138 -msgid "Default Post Permissions" -msgstr "Výchozí oprávnění pro příspěvek" - -#: ../../mod/settings.php:1139 -msgid "(click to open/close)" -msgstr "(Klikněte pro otevření/zavření)" - -#: ../../mod/settings.php:1148 ../../mod/photos.php:1146 -#: ../../mod/photos.php:1519 -msgid "Show to Groups" -msgstr "Zobrazit ve Skupinách" - -#: ../../mod/settings.php:1149 ../../mod/photos.php:1147 -#: ../../mod/photos.php:1520 -msgid "Show to Contacts" -msgstr "Zobrazit v Kontaktech" - -#: ../../mod/settings.php:1150 -msgid "Default Private Post" -msgstr "Výchozí Soukromý příspěvek" - -#: ../../mod/settings.php:1151 -msgid "Default Public Post" -msgstr "Výchozí Veřejný příspěvek" - -#: ../../mod/settings.php:1155 -msgid "Default Permissions for New Posts" -msgstr "Výchozí oprávnění pro nové příspěvky" - -#: ../../mod/settings.php:1167 -msgid "Maximum private messages per day from unknown people:" -msgstr "Maximum soukromých zpráv od neznámých lidí:" - -#: ../../mod/settings.php:1170 -msgid "Notification Settings" -msgstr "Nastavení notifikací" - -#: ../../mod/settings.php:1171 -msgid "By default post a status message when:" -msgstr "Defaultně posílat statusové zprávy když:" - -#: ../../mod/settings.php:1172 -msgid "accepting a friend request" -msgstr "akceptuji požadavek na přátelství" - -#: ../../mod/settings.php:1173 -msgid "joining a forum/community" -msgstr "připojující se k fóru/komunitě" - -#: ../../mod/settings.php:1174 -msgid "making an interesting profile change" -msgstr "provedení zajímavé profilové změny" - -#: ../../mod/settings.php:1175 -msgid "Send a notification email when:" -msgstr "Poslat notifikaci e-mailem, když" - -#: ../../mod/settings.php:1176 -msgid "You receive an introduction" -msgstr "obdržíte žádost o propojení" - -#: ../../mod/settings.php:1177 -msgid "Your introductions are confirmed" -msgstr "Vaše žádosti jsou potvrzeny" - -#: ../../mod/settings.php:1178 -msgid "Someone writes on your profile wall" -msgstr "někdo Vám napíše na Vaši profilovou stránku" - -#: ../../mod/settings.php:1179 -msgid "Someone writes a followup comment" -msgstr "někdo Vám napíše následný komentář" - -#: ../../mod/settings.php:1180 -msgid "You receive a private message" -msgstr "obdržíte soukromou zprávu" - -#: ../../mod/settings.php:1181 -msgid "You receive a friend suggestion" -msgstr "Obdržel jste návrh přátelství" - -#: ../../mod/settings.php:1182 -msgid "You are tagged in a post" -msgstr "Jste označen v příspěvku" - -#: ../../mod/settings.php:1183 -msgid "You are poked/prodded/etc. in a post" -msgstr "Byl Jste šťouchnout v příspěvku" - -#: ../../mod/settings.php:1185 -msgid "Text-only notification emails" -msgstr "Pouze textové notifikační e-maily" - -#: ../../mod/settings.php:1187 -msgid "Send text only notification emails, without the html part" -msgstr "Posílat pouze textové notifikační e-maily, bez html části." - -#: ../../mod/settings.php:1189 -msgid "Advanced Account/Page Type Settings" -msgstr "Pokročilé nastavení účtu/stránky" - -#: ../../mod/settings.php:1190 -msgid "Change the behaviour of this account for special situations" -msgstr "Změnit chování tohoto účtu ve speciálních situacích" - -#: ../../mod/settings.php:1193 -msgid "Relocate" -msgstr "Změna umístění" - -#: ../../mod/settings.php:1194 -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 "Pokud jste přemístil tento profil z jiného serveru a nějaký z vašich kontaktů nedostává Vaše aktualizace, zkuste stisknout toto tlačítko." - -#: ../../mod/settings.php:1195 -msgid "Resend relocate message to contacts" -msgstr "Znovu odeslat správu o změně umístění Vašim kontaktům" - -#: ../../mod/dfrn_request.php:95 -msgid "This introduction has already been accepted." -msgstr "Toto pozvání již bylo přijato." - -#: ../../mod/dfrn_request.php:120 ../../mod/dfrn_request.php:518 -msgid "Profile location is not valid or does not contain profile information." -msgstr "Adresa profilu není platná nebo neobsahuje profilové informace" - -#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:523 -msgid "Warning: profile location has no identifiable owner name." -msgstr "Varování: umístění profilu nemá žádné identifikovatelné jméno vlastníka" - -#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:525 -msgid "Warning: profile location has no profile photo." -msgstr "Varování: umístění profilu nemá žádnou profilovou fotografii." - -#: ../../mod/dfrn_request.php:130 ../../mod/dfrn_request.php:528 +#: ../../mod/dfrn_confirm.php:571 #, 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 požadovaný parametr nebyl nalezen na daném místě" -msgstr[1] "%d požadované parametry nebyly nalezeny na daném místě" -msgstr[2] "%d požadované parametry nebyly nalezeny na daném místě" +msgid "No user record found for '%s' " +msgstr "Pro '%s' nenalezen žádný uživatelský záznam " -#: ../../mod/dfrn_request.php:172 -msgid "Introduction complete." -msgstr "Představení dokončeno." +#: ../../mod/dfrn_confirm.php:581 +msgid "Our site encryption key is apparently messed up." +msgstr "Náš šifrovací klíč zřejmě přestal správně fungovat." -#: ../../mod/dfrn_request.php:214 -msgid "Unrecoverable protocol error." -msgstr "Neopravitelná chyba protokolu" +#: ../../mod/dfrn_confirm.php:592 +msgid "Empty site URL was provided or URL could not be decrypted by us." +msgstr "Byla poskytnuta prázdná URL adresa nebo se nepodařilo URL adresu dešifrovat." -#: ../../mod/dfrn_request.php:242 -msgid "Profile unavailable." -msgstr "Profil není k dispozici." +#: ../../mod/dfrn_confirm.php:613 +msgid "Contact record was not found for you on our site." +msgstr "Kontakt záznam nebyl nalezen pro vás na našich stránkách." -#: ../../mod/dfrn_request.php:267 +#: ../../mod/dfrn_confirm.php:627 #, php-format -msgid "%s has received too many connection requests today." -msgstr "%s dnes obdržel příliš mnoho požadavků na připojení." +msgid "Site public key not available in contact record for URL %s." +msgstr "V adresáři není k dispozici veřejný klíč pro URL %s." -#: ../../mod/dfrn_request.php:268 -msgid "Spam protection measures have been invoked." -msgstr "Ochrana proti spamu byla aktivována" - -#: ../../mod/dfrn_request.php:269 -msgid "Friends are advised to please try again in 24 hours." -msgstr "Přátelům se doporučuje to zkusit znovu za 24 hodin." - -#: ../../mod/dfrn_request.php:331 -msgid "Invalid locator" -msgstr "Neplatný odkaz" - -#: ../../mod/dfrn_request.php:340 -msgid "Invalid email address." -msgstr "Neplatná emailová adresa" - -#: ../../mod/dfrn_request.php:367 -msgid "This account has not been configured for email. Request failed." -msgstr "Tento účet nebyl nastaven pro email. Požadavek nesplněn." - -#: ../../mod/dfrn_request.php:463 -msgid "Unable to resolve your name at the provided location." -msgstr "Nepodařilo se zjistit Vaše jméno na zadané adrese." - -#: ../../mod/dfrn_request.php:476 -msgid "You have already introduced yourself here." -msgstr "Již jste se zde zavedli." - -#: ../../mod/dfrn_request.php:480 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Zřejmě jste již přátelé se %s." - -#: ../../mod/dfrn_request.php:501 -msgid "Invalid profile URL." -msgstr "Neplatné URL profilu." - -#: ../../mod/dfrn_request.php:507 ../../include/follow.php:27 -msgid "Disallowed profile URL." -msgstr "Nepovolené URL profilu." - -#: ../../mod/dfrn_request.php:597 -msgid "Your introduction has been sent." -msgstr "Vaše žádost o propojení byla odeslána." - -#: ../../mod/dfrn_request.php:650 -msgid "Please login to confirm introduction." -msgstr "Prosím přihlašte se k potvrzení žádosti o propojení." - -#: ../../mod/dfrn_request.php:660 +#: ../../mod/dfrn_confirm.php:647 msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "Jste přihlášeni pod nesprávnou identitou Prosím, přihlaste se do tohoto profilu." +"The ID provided by your system is a duplicate on our system. It should work " +"if you try again." +msgstr "Váš systém poskytl duplicitní ID vůči našemu systému. Pokuste se akci zopakovat." -#: ../../mod/dfrn_request.php:671 -msgid "Hide this contact" -msgstr "Skrýt tento kontakt" +#: ../../mod/dfrn_confirm.php:658 +msgid "Unable to set your contact credentials on our system." +msgstr "Nelze nastavit Vaše přihlašovací údaje v našem systému." -#: ../../mod/dfrn_request.php:674 +#: ../../mod/dfrn_confirm.php:725 +msgid "Unable to update your contact profile details on our system" +msgstr "Nelze aktualizovat Váš profil v našem systému" + +#: ../../mod/dfrn_confirm.php:797 #, php-format -msgid "Welcome home %s." -msgstr "Vítejte doma %s." +msgid "%1$s has joined %2$s" +msgstr "%1$s se připojil k %2$s" -#: ../../mod/dfrn_request.php:675 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Prosím potvrďte Vaši žádost o propojení %s." +#: ../../mod/item.php:114 +msgid "Unable to locate original post." +msgstr "Nelze nalézt původní příspěvek." -#: ../../mod/dfrn_request.php:676 -msgid "Confirm" -msgstr "Potvrdit" +#: ../../mod/item.php:346 +msgid "Empty post discarded." +msgstr "Prázdný příspěvek odstraněn." -#: ../../mod/dfrn_request.php:804 -msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"communications networks:" -msgstr "Prosím zadejte Vaši adresu identity jedné z následujících podporovaných komunikačních sítí:" +#: ../../mod/item.php:839 +msgid "System error. Post not saved." +msgstr "Chyba systému. Příspěvek nebyl uložen." -#: ../../mod/dfrn_request.php:824 -msgid "" -"If you are not yet a member of the free social web, follow this link to find a public" -" Friendica site and join us today." -msgstr "Pokud ještě nejste členem svobodné sociální sítě, následujte tento odkaz k nalezení veřejného Friendica serveru a přidejte se k nám ještě dnes." - -#: ../../mod/dfrn_request.php:827 -msgid "Friend/Connection Request" -msgstr "Požadavek o přátelství / kontaktování" - -#: ../../mod/dfrn_request.php:828 -msgid "" -"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " -"testuser@identi.ca" -msgstr "Příklady: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" - -#: ../../mod/dfrn_request.php:829 -msgid "Please answer the following:" -msgstr "Odpovězte, prosím, následující:" - -#: ../../mod/dfrn_request.php:830 -#, php-format -msgid "Does %s know you?" -msgstr "Zná Vás uživatel %s ?" - -#: ../../mod/dfrn_request.php:834 -msgid "Add a personal note:" -msgstr "Přidat osobní poznámku:" - -#: ../../mod/dfrn_request.php:836 ../../include/contact_selectors.php:76 -msgid "Friendica" -msgstr "Friendica" - -#: ../../mod/dfrn_request.php:837 -msgid "StatusNet/Federated Social Web" -msgstr "StatusNet / Federativní Sociální Web" - -#: ../../mod/dfrn_request.php:839 +#: ../../mod/item.php:965 #, php-format msgid "" -" - please do not use this form. Instead, enter %s into your Diaspora search" -" bar." -msgstr " - prosím nepoužívejte tento formulář. Místo toho zadejte %s do Vašeho Diaspora vyhledávacího pole." +"This message was sent to you by %s, a member of the Friendica social " +"network." +msgstr "Tato zpráva vám byla zaslána od %s, člena sociální sítě Friendica." -#: ../../mod/dfrn_request.php:840 -msgid "Your Identity Address:" -msgstr "Verze PHP pro příkazový řádek na Vašem systému nemá povolen \"register_argc_argv\"." - -#: ../../mod/dfrn_request.php:843 -msgid "Submit Request" -msgstr "Odeslat žádost" - -#: ../../mod/register.php:90 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "Registrace úspěšná. Zkontrolujte prosím svůj e-mail pro další instrukce." - -#: ../../mod/register.php:96 +#: ../../mod/item.php:967 #, php-format +msgid "You may visit them online at %s" +msgstr "Můžete je navštívit online na adrese %s" + +#: ../../mod/item.php:968 msgid "" -"Failed to send email message. Here your accout details:
login: %s
" -"password: %s

You can change your password after login." -msgstr "Nepovedlo se odeslat emailovou zprávu. Zde jsou detaily Vašeho účtu:
login: %s
heslo: %s

Své heslo můžete změnit po přihlášení." +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." +msgstr "Pokud nechcete dostávat tyto zprávy, kontaktujte prosím odesilatele odpovědí na tento záznam." -#: ../../mod/register.php:105 -msgid "Your registration can not be processed." -msgstr "Vaši registraci nelze zpracovat." +#: ../../mod/item.php:972 +#, php-format +msgid "%s posted an update." +msgstr "%s poslal aktualizaci." -#: ../../mod/register.php:148 -msgid "Your registration is pending approval by the site owner." -msgstr "Vaše registrace čeká na schválení vlastníkem serveru." +#: ../../mod/profile_photo.php:44 +msgid "Image uploaded but image cropping failed." +msgstr "Obrázek byl odeslán, ale jeho oříznutí se nesdařilo." -#: ../../mod/register.php:186 ../../mod/uimport.php:50 +#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84 +#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "Nepodařilo se snížit velikost obrázku [%s]." + +#: ../../mod/profile_photo.php:118 msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Došlo k překročení maximálního povoleného počtu registrací za den na tomto serveru. Zkuste to zítra znovu." +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Znovu načtěte stránku (Shift+F5) nebo vymažte cache prohlížeče, pokud se nové fotografie nezobrazí okamžitě." -#: ../../mod/register.php:214 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking 'Register'." -msgstr "Tento formulář můžete (volitelně) vyplnit s pomocí OpenID tím, že vyplníte své OpenID a kliknutete na tlačítko 'Zaregistrovat'." +#: ../../mod/profile_photo.php:128 +msgid "Unable to process image" +msgstr "Obrázek nelze zpracovat " -#: ../../mod/register.php:215 -msgid "" -"If you are not familiar with OpenID, please leave that field blank and fill " -"in the rest of the items." -msgstr "Pokud nepoužíváte OpenID, nechte prosím toto pole prázdné a vyplňte zbylé položky." +#: ../../mod/profile_photo.php:242 +msgid "Upload File:" +msgstr "Nahrát soubor:" -#: ../../mod/register.php:216 -msgid "Your OpenID (optional): " -msgstr "Vaše OpenID (nepovinné): " +#: ../../mod/profile_photo.php:243 +msgid "Select a profile:" +msgstr "Vybrat profil:" -#: ../../mod/register.php:230 -msgid "Include your profile in member directory?" -msgstr "Toto je Váš veřejný profil.
Ten může být viditelný kýmkoliv na internetu." +#: ../../mod/profile_photo.php:245 +msgid "Upload" +msgstr "Nahrát" -#: ../../mod/register.php:251 -msgid "Membership on this site is by invitation only." -msgstr "Členství na tomto webu je pouze na pozvání." +#: ../../mod/profile_photo.php:248 +msgid "skip this step" +msgstr "přeskočit tento krok " -#: ../../mod/register.php:252 -msgid "Your invitation ID: " -msgstr "Vaše pozvání ID:" +#: ../../mod/profile_photo.php:248 +msgid "select a photo from your photo albums" +msgstr "Vybrat fotografii z Vašich fotoalb" -#: ../../mod/register.php:263 -msgid "Your Full Name (e.g. Joe Smith): " -msgstr "Vaše celé jméno (např. Jan Novák):" +#: ../../mod/profile_photo.php:262 +msgid "Crop Image" +msgstr "Oříznout obrázek" -#: ../../mod/register.php:264 -msgid "Your Email Address: " -msgstr "Vaše e-mailová adresa:" +#: ../../mod/profile_photo.php:263 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Prosím, ořízněte tento obrázek pro optimální zobrazení." -#: ../../mod/register.php:265 -msgid "" -"Choose a profile nickname. This must begin with a text character. Your " -"profile address on this site will then be " -"'nickname@$sitename'." -msgstr "Vyberte přezdívku k profilu. Ta musí začít s textovým znakem. Vaše profilová adresa na tomto webu pak bude \"přezdívka@$sitename\"." +#: ../../mod/profile_photo.php:265 +msgid "Done Editing" +msgstr "Editace dokončena" -#: ../../mod/register.php:266 -msgid "Choose a nickname: " -msgstr "Vyberte přezdívku:" +#: ../../mod/profile_photo.php:299 +msgid "Image uploaded successfully." +msgstr "Obrázek byl úspěšně nahrán." -#: ../../mod/register.php:269 ../../boot.php:1241 ../../include/nav.php:109 -msgid "Register" -msgstr "Registrovat" +#: ../../mod/allfriends.php:34 +#, php-format +msgid "Friends of %s" +msgstr "Přátelé uživatele %s" -#: ../../mod/register.php:275 ../../mod/uimport.php:64 -msgid "Import" -msgstr "Import" - -#: ../../mod/register.php:276 -msgid "Import your profile to this friendica instance" -msgstr "Import Vašeho profilu do této friendica instance" - -#: ../../mod/maintenance.php:5 -msgid "System down for maintenance" -msgstr "Systém vypnut z důvodů údržby" - -#: ../../mod/search.php:99 ../../include/text.php:953 -#: ../../include/text.php:954 ../../include/nav.php:119 -msgid "Search" -msgstr "Vyhledávání" - -#: ../../mod/directory.php:51 ../../view/theme/diabook/theme.php:525 -msgid "Global Directory" -msgstr "Globální adresář" +#: ../../mod/allfriends.php:40 +msgid "No friends to display." +msgstr "Žádní přátelé k zobrazení" #: ../../mod/directory.php:59 msgid "Find on this site" @@ -4550,607 +7899,14 @@ msgstr "Nalézt na tomto webu" msgid "Site Directory" msgstr "Adresář serveru" -#: ../../mod/directory.php:113 ../../mod/profiles.php:750 -msgid "Age: " -msgstr "Věk: " - #: ../../mod/directory.php:116 msgid "Gender: " msgstr "Pohlaví: " -#: ../../mod/directory.php:138 ../../boot.php:1650 -#: ../../include/profile_advanced.php:17 -msgid "Gender:" -msgstr "Pohlaví:" - -#: ../../mod/directory.php:140 ../../boot.php:1653 -#: ../../include/profile_advanced.php:37 -msgid "Status:" -msgstr "Status:" - -#: ../../mod/directory.php:142 ../../boot.php:1655 -#: ../../include/profile_advanced.php:48 -msgid "Homepage:" -msgstr "Domácí stránka:" - -#: ../../mod/directory.php:144 ../../boot.php:1657 -#: ../../include/profile_advanced.php:58 -msgid "About:" -msgstr "O mě:" - #: ../../mod/directory.php:189 msgid "No entries (some entries may be hidden)." msgstr "Žádné záznamy (některé položky mohou být skryty)." -#: ../../mod/delegate.php:101 -msgid "No potential page delegates located." -msgstr "Žádní potenciální delegáti stránky nenalezeni." - -#: ../../mod/delegate.php:130 ../../include/nav.php:170 -msgid "Delegate Page Management" -msgstr "Správa delegátů stránky" - -#: ../../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 "Delegáti jsou schopni řídit všechny aspekty tohoto účtu / stránky, kromě základních nastavení účtu. Prosím, nepředávejte svůj osobní účet nikomu, komu úplně nevěříte.." - -#: ../../mod/delegate.php:133 -msgid "Existing Page Managers" -msgstr "Stávající správci stránky" - -#: ../../mod/delegate.php:135 -msgid "Existing Page Delegates" -msgstr "Stávající delegáti stránky " - -#: ../../mod/delegate.php:137 -msgid "Potential Delegates" -msgstr "Potenciální delegáti" - -#: ../../mod/delegate.php:140 -msgid "Add" -msgstr "Přidat" - -#: ../../mod/delegate.php:141 -msgid "No entries." -msgstr "Žádné záznamy." - -#: ../../mod/common.php:42 -msgid "Common Friends" -msgstr "Společní přátelé" - -#: ../../mod/common.php:78 -msgid "No contacts in common." -msgstr "Žádné společné kontakty." - -#: ../../mod/uexport.php:77 -msgid "Export account" -msgstr "Exportovat účet" - -#: ../../mod/uexport.php:77 -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 "Exportujte svůj účet a své kontakty. Použijte tuto funkci pro vytvoření zálohy svého účtu a/nebo k přesunu na jiný server." - -#: ../../mod/uexport.php:78 -msgid "Export all" -msgstr "Exportovat vše" - -#: ../../mod/uexport.php:78 -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 "Exportujte své informace k účtu, kontakty a vše své položky jako json. To může být velmi velký soubor a může to zabrat spoustu času. Tuto funkci použijte pro úplnou zálohu svého účtu(fotografie se neexportují)" - -#: ../../mod/mood.php:62 ../../include/conversation.php:227 -#, php-format -msgid "%1$s is currently %2$s" -msgstr "%1$s je právě %2$s" - -#: ../../mod/mood.php:133 -msgid "Mood" -msgstr "Nálada" - -#: ../../mod/mood.php:134 -msgid "Set your current mood and tell your friends" -msgstr "Nastavte svou aktuální náladu a řekněte to Vašim přátelům" - -#: ../../mod/suggest.php:27 -msgid "Do you really want to delete this suggestion?" -msgstr "Opravdu chcete smazat tento návrh?" - -#: ../../mod/suggest.php:68 ../../include/contact_widgets.php:35 -#: ../../view/theme/diabook/theme.php:527 -msgid "Friend Suggestions" -msgstr "Návrhy přátel" - -#: ../../mod/suggest.php:74 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Nejsou dostupné žádné návrhy. Pokud je toto nový server, zkuste to znovu za 24 hodin." - -#: ../../mod/suggest.php:92 -msgid "Ignore/Hide" -msgstr "Ignorovat / skrýt" - -#: ../../mod/profiles.php:37 -msgid "Profile deleted." -msgstr "Profil smazán." - -#: ../../mod/profiles.php:55 ../../mod/profiles.php:89 -msgid "Profile-" -msgstr "Profil-" - -#: ../../mod/profiles.php:74 ../../mod/profiles.php:117 -msgid "New profile created." -msgstr "Nový profil vytvořen." - -#: ../../mod/profiles.php:95 -msgid "Profile unavailable to clone." -msgstr "Profil není možné naklonovat." - -#: ../../mod/profiles.php:189 -msgid "Profile Name is required." -msgstr "Jméno profilu je povinné." - -#: ../../mod/profiles.php:340 -msgid "Marital Status" -msgstr "Rodinný Stav" - -#: ../../mod/profiles.php:344 -msgid "Romantic Partner" -msgstr "Romatický partner" - -#: ../../mod/profiles.php:348 -msgid "Likes" -msgstr "Libí se mi" - -#: ../../mod/profiles.php:352 -msgid "Dislikes" -msgstr "Nelibí se mi" - -#: ../../mod/profiles.php:356 -msgid "Work/Employment" -msgstr "Práce/Zaměstnání" - -#: ../../mod/profiles.php:359 -msgid "Religion" -msgstr "Náboženství" - -#: ../../mod/profiles.php:363 -msgid "Political Views" -msgstr "Politické přesvědčení" - -#: ../../mod/profiles.php:367 -msgid "Gender" -msgstr "Pohlaví" - -#: ../../mod/profiles.php:371 -msgid "Sexual Preference" -msgstr "Sexuální orientace" - -#: ../../mod/profiles.php:375 -msgid "Homepage" -msgstr "Domácí stránka" - -#: ../../mod/profiles.php:379 ../../mod/profiles.php:698 -msgid "Interests" -msgstr "Zájmy" - -#: ../../mod/profiles.php:383 -msgid "Address" -msgstr "Adresa" - -#: ../../mod/profiles.php:390 ../../mod/profiles.php:694 -msgid "Location" -msgstr "Lokace" - -#: ../../mod/profiles.php:473 -msgid "Profile updated." -msgstr "Profil aktualizován." - -#: ../../mod/profiles.php:568 -msgid " and " -msgstr " a " - -#: ../../mod/profiles.php:576 -msgid "public profile" -msgstr "veřejný profil" - -#: ../../mod/profiles.php:579 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s změnil %2$s na “%3$s”" - -#: ../../mod/profiles.php:580 -#, php-format -msgid " - Visit %1$s's %2$s" -msgstr " - Navštivte %2$s uživatele %1$s" - -#: ../../mod/profiles.php:583 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s aktualizoval %2$s, změnou %3$s." - -#: ../../mod/profiles.php:658 -msgid "Hide contacts and friends:" -msgstr "Skrýt kontakty a přátele:" - -#: ../../mod/profiles.php:663 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "Skrýt u tohoto profilu Vaše kontakty / seznam přátel před před dalšími uživateli zobrazující si tento profil?" - -#: ../../mod/profiles.php:685 -msgid "Edit Profile Details" -msgstr "Upravit podrobnosti profilu " - -#: ../../mod/profiles.php:687 -msgid "Change Profile Photo" -msgstr "Změna Profilové fotky" - -#: ../../mod/profiles.php:688 -msgid "View this profile" -msgstr "Zobrazit tento profil" - -#: ../../mod/profiles.php:689 -msgid "Create a new profile using these settings" -msgstr "Vytvořit nový profil pomocí tohoto nastavení" - -#: ../../mod/profiles.php:690 -msgid "Clone this profile" -msgstr "Klonovat tento profil" - -#: ../../mod/profiles.php:691 -msgid "Delete this profile" -msgstr "Smazat tento profil" - -#: ../../mod/profiles.php:692 -msgid "Basic information" -msgstr "Základní informace" - -#: ../../mod/profiles.php:693 -msgid "Profile picture" -msgstr "Profilový obrázek" - -#: ../../mod/profiles.php:695 -msgid "Preferences" -msgstr "Nastavení" - -#: ../../mod/profiles.php:696 -msgid "Status information" -msgstr "Statusové informace" - -#: ../../mod/profiles.php:697 -msgid "Additional information" -msgstr "Dodatečné informace" - -#: ../../mod/profiles.php:700 -msgid "Profile Name:" -msgstr "Jméno profilu:" - -#: ../../mod/profiles.php:701 -msgid "Your Full Name:" -msgstr "Vaše celé jméno:" - -#: ../../mod/profiles.php:702 -msgid "Title/Description:" -msgstr "Název / Popis:" - -#: ../../mod/profiles.php:703 -msgid "Your Gender:" -msgstr "Vaše pohlaví:" - -#: ../../mod/profiles.php:704 -#, php-format -msgid "Birthday (%s):" -msgstr "Narozeniny uživatele (%s):" - -#: ../../mod/profiles.php:705 -msgid "Street Address:" -msgstr "Ulice:" - -#: ../../mod/profiles.php:706 -msgid "Locality/City:" -msgstr "Město:" - -#: ../../mod/profiles.php:707 -msgid "Postal/Zip Code:" -msgstr "PSČ:" - -#: ../../mod/profiles.php:708 -msgid "Country:" -msgstr "Země:" - -#: ../../mod/profiles.php:709 -msgid "Region/State:" -msgstr "Region / stát:" - -#: ../../mod/profiles.php:710 -msgid " Marital Status:" -msgstr " Rodinný stav:" - -#: ../../mod/profiles.php:711 -msgid "Who: (if applicable)" -msgstr "Kdo: (pokud je možné)" - -#: ../../mod/profiles.php:712 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Příklady: jan123, Jan Novák, jan@seznam.cz" - -#: ../../mod/profiles.php:713 -msgid "Since [date]:" -msgstr "Od [data]:" - -#: ../../mod/profiles.php:714 ../../include/profile_advanced.php:46 -msgid "Sexual Preference:" -msgstr "Sexuální preference:" - -#: ../../mod/profiles.php:715 -msgid "Homepage URL:" -msgstr "Odkaz na domovskou stránku:" - -#: ../../mod/profiles.php:716 ../../include/profile_advanced.php:50 -msgid "Hometown:" -msgstr "Rodné město" - -#: ../../mod/profiles.php:717 ../../include/profile_advanced.php:54 -msgid "Political Views:" -msgstr "Politické přesvědčení:" - -#: ../../mod/profiles.php:718 -msgid "Religious Views:" -msgstr "Náboženské přesvědčení:" - -#: ../../mod/profiles.php:719 -msgid "Public Keywords:" -msgstr "Veřejná klíčová slova:" - -#: ../../mod/profiles.php:720 -msgid "Private Keywords:" -msgstr "Soukromá klíčová slova:" - -#: ../../mod/profiles.php:721 ../../include/profile_advanced.php:62 -msgid "Likes:" -msgstr "Líbí se:" - -#: ../../mod/profiles.php:722 ../../include/profile_advanced.php:64 -msgid "Dislikes:" -msgstr "Nelibí se:" - -#: ../../mod/profiles.php:723 -msgid "Example: fishing photography software" -msgstr "Příklad: fishing photography software" - -#: ../../mod/profiles.php:724 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "(Používá se pro doporučování potenciálních přátel, může být viděno ostatními)" - -#: ../../mod/profiles.php:725 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(Používá se pro vyhledávání profilů, není nikdy zobrazeno ostatním)" - -#: ../../mod/profiles.php:726 -msgid "Tell us about yourself..." -msgstr "Řekněte nám něco o sobě ..." - -#: ../../mod/profiles.php:727 -msgid "Hobbies/Interests" -msgstr "Koníčky/zájmy" - -#: ../../mod/profiles.php:728 -msgid "Contact information and Social Networks" -msgstr "Kontaktní informace a sociální sítě" - -#: ../../mod/profiles.php:729 -msgid "Musical interests" -msgstr "Hudební vkus" - -#: ../../mod/profiles.php:730 -msgid "Books, literature" -msgstr "Knihy, literatura" - -#: ../../mod/profiles.php:731 -msgid "Television" -msgstr "Televize" - -#: ../../mod/profiles.php:732 -msgid "Film/dance/culture/entertainment" -msgstr "Film/tanec/kultura/zábava" - -#: ../../mod/profiles.php:733 -msgid "Love/romance" -msgstr "Láska/romantika" - -#: ../../mod/profiles.php:734 -msgid "Work/employment" -msgstr "Práce/zaměstnání" - -#: ../../mod/profiles.php:735 -msgid "School/education" -msgstr "Škola/vzdělání" - -#: ../../mod/profiles.php:740 -msgid "" -"This is your public profile.
It may " -"be visible to anybody using the internet." -msgstr "Toto je váš veřejný profil.
Ten může být viditelný kýmkoliv na internetu." - -#: ../../mod/profiles.php:803 -msgid "Edit/Manage Profiles" -msgstr "Upravit / Spravovat profily" - -#: ../../mod/profiles.php:804 ../../boot.php:1611 ../../boot.php:1637 -msgid "Change profile photo" -msgstr "Změnit profilovou fotografii" - -#: ../../mod/profiles.php:805 ../../boot.php:1612 -msgid "Create New Profile" -msgstr "Vytvořit nový profil" - -#: ../../mod/profiles.php:816 ../../boot.php:1622 -msgid "Profile Image" -msgstr "Profilový obrázek" - -#: ../../mod/profiles.php:818 ../../boot.php:1625 -msgid "visible to everybody" -msgstr "viditelné pro všechny" - -#: ../../mod/profiles.php:819 ../../boot.php:1626 -msgid "Edit visibility" -msgstr "Upravit viditelnost" - -#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 -msgid "Item not found" -msgstr "Položka nenalezena" - -#: ../../mod/editpost.php:39 -msgid "Edit post" -msgstr "Upravit příspěvek" - -#: ../../mod/editpost.php:111 ../../include/conversation.php:1092 -msgid "upload photo" -msgstr "nahrát fotky" - -#: ../../mod/editpost.php:112 ../../include/conversation.php:1093 -msgid "Attach file" -msgstr "Přiložit soubor" - -#: ../../mod/editpost.php:113 ../../include/conversation.php:1094 -msgid "attach file" -msgstr "přidat soubor" - -#: ../../mod/editpost.php:115 ../../include/conversation.php:1096 -msgid "web link" -msgstr "webový odkaz" - -#: ../../mod/editpost.php:116 ../../include/conversation.php:1097 -msgid "Insert video link" -msgstr "Zadejte odkaz na video" - -#: ../../mod/editpost.php:117 ../../include/conversation.php:1098 -msgid "video link" -msgstr "odkaz na video" - -#: ../../mod/editpost.php:118 ../../include/conversation.php:1099 -msgid "Insert audio link" -msgstr "Zadejte odkaz na zvukový záznam" - -#: ../../mod/editpost.php:119 ../../include/conversation.php:1100 -msgid "audio link" -msgstr "odkaz na audio" - -#: ../../mod/editpost.php:120 ../../include/conversation.php:1101 -msgid "Set your location" -msgstr "Nastavte vaši polohu" - -#: ../../mod/editpost.php:121 ../../include/conversation.php:1102 -msgid "set location" -msgstr "nastavit místo" - -#: ../../mod/editpost.php:122 ../../include/conversation.php:1103 -msgid "Clear browser location" -msgstr "Odstranit adresu v prohlížeči" - -#: ../../mod/editpost.php:123 ../../include/conversation.php:1104 -msgid "clear location" -msgstr "vymazat místo" - -#: ../../mod/editpost.php:125 ../../include/conversation.php:1110 -msgid "Permission settings" -msgstr "Nastavení oprávnění" - -#: ../../mod/editpost.php:133 ../../include/conversation.php:1119 -msgid "CC: email addresses" -msgstr "skrytá kopie: e-mailové adresy" - -#: ../../mod/editpost.php:134 ../../include/conversation.php:1120 -msgid "Public post" -msgstr "Veřejný příspěvek" - -#: ../../mod/editpost.php:137 ../../include/conversation.php:1106 -msgid "Set title" -msgstr "Nastavit titulek" - -#: ../../mod/editpost.php:139 ../../include/conversation.php:1108 -msgid "Categories (comma-separated list)" -msgstr "Kategorie (čárkou oddělený seznam)" - -#: ../../mod/editpost.php:140 ../../include/conversation.php:1122 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Příklad: bob@example.com, mary@example.com" - -#: ../../mod/friendica.php:59 -msgid "This is Friendica, version" -msgstr "Toto je Friendica, verze" - -#: ../../mod/friendica.php:60 -msgid "running at web location" -msgstr "běžící na webu" - -#: ../../mod/friendica.php:62 -msgid "" -"Please visit Friendica.com to learn " -"more about the Friendica project." -msgstr "Pro získání dalších informací o projektu Friendica navštivte prosím Friendica.com." - -#: ../../mod/friendica.php:64 -msgid "Bug reports and issues: please visit" -msgstr "Pro hlášení chyb a námětů na změny navštivte:" - -#: ../../mod/friendica.php:65 -msgid "" -"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " -"dot com" -msgstr "Návrhy, chválu, dary, apod. - prosím piště na \"info\" na Friendica - tečka com" - -#: ../../mod/friendica.php:79 -msgid "Installed plugins/addons/apps:" -msgstr "Instalované pluginy/doplňky/aplikace:" - -#: ../../mod/friendica.php:92 -msgid "No installed plugins/addons/apps" -msgstr "Nejsou žádné nainstalované doplňky/aplikace" - -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" -msgstr "Povolit připojení aplikacím" - -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "Vraťte se do vaší aplikace a zadejte tento bezpečnostní kód:" - -#: ../../mod/api.php:89 -msgid "Please login to continue." -msgstr "Pro pokračování se prosím přihlaste." - -#: ../../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 "Chcete umožnit této aplikaci přístup k vašim příspěvkům a kontaktům a/nebo k vytváření Vašich nových příspěvků?" - -#: ../../mod/lockview.php:31 ../../mod/lockview.php:39 -msgid "Remote privacy information not available." -msgstr "Vzdálené soukromé informace nejsou k dispozici." - -#: ../../mod/lockview.php:48 -msgid "Visible to:" -msgstr "Viditelné pro:" - -#: ../../mod/notes.php:44 ../../boot.php:2150 -msgid "Personal Notes" -msgstr "Osobní poznámky" - -#: ../../mod/localtime.php:12 ../../include/bb2diaspora.php:148 -#: ../../include/event.php:11 -msgid "l F d, Y \\@ g:i A" -msgstr "l F d, Y \\@ g:i A" - #: ../../mod/localtime.php:24 msgid "Time Conversion" msgstr "Časová konverze" @@ -5179,2707 +7935,3 @@ msgstr "Převedený lokální čas : %s" #: ../../mod/localtime.php:41 msgid "Please select your timezone:" msgstr "Prosím, vyberte své časové pásmo:" - -#: ../../mod/poke.php:192 -msgid "Poke/Prod" -msgstr "Šťouchanec" - -#: ../../mod/poke.php:193 -msgid "poke, prod or do other things to somebody" -msgstr "někoho šťouchnout nebo mu provést jinou věc" - -#: ../../mod/poke.php:194 -msgid "Recipient" -msgstr "Příjemce" - -#: ../../mod/poke.php:195 -msgid "Choose what you wish to do to recipient" -msgstr "Vyberte, co si přejete příjemci udělat" - -#: ../../mod/poke.php:198 -msgid "Make this post private" -msgstr "Změnit tento příspěvek na soukromý" - -#: ../../mod/invite.php:27 -msgid "Total invitation limit exceeded." -msgstr "Celkový limit pozvánek byl překročen" - -#: ../../mod/invite.php:49 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s : není platná e-mailová adresa." - -#: ../../mod/invite.php:73 -msgid "Please join us on Friendica" -msgstr "Prosím přidejte se k nám na Friendice" - -#: ../../mod/invite.php:84 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Limit pozvánek byl překročen. Prosím kontaktujte vašeho administrátora webu." - -#: ../../mod/invite.php:89 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Doručení zprávy se nezdařilo." - -#: ../../mod/invite.php:93 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d zpráva odeslána." -msgstr[1] "%d zprávy odeslány." -msgstr[2] "%d zprávy odeslány." - -#: ../../mod/invite.php:112 -msgid "You have no more invitations available" -msgstr "Nemáte k dispozici žádné další pozvánky" - -#: ../../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 "Navštivte %s pro seznam veřejných serverů, na kterých se můžete přidat. Členové Friendica se mohou navzájem propojovat, stejně tak jako se mohou přiopojit se členy mnoha dalších sociálních sítí." - -#: ../../mod/invite.php:122 -#, php-format -msgid "" -"To accept this invitation, please visit and register at %s or any other " -"public Friendica website." -msgstr "K akceptaci této pozvánky prosím navštivte a registrujte se na %s nebo na kterékoliv jiném veřejném Friendica serveru." - -#: ../../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 servery jsou všechny propojené a vytváří tak rozsáhlou sociální síť s důrazem na soukromý a je pod kontrolou svých členů. Členové se mohou propojovat s mnoha dalšími tradičními sociálními sítěmi. Navštivte %s pro seznam alternativních Friendica serverů kde se můžete přidat." - -#: ../../mod/invite.php:126 -msgid "" -"Our apologies. This system is not currently configured to connect with other" -" public sites or invite members." -msgstr "Omlouváme se. Systém nyní není nastaven tak, aby se připojil k ostatním veřejným serverům nebo umožnil pozvat nové členy." - -#: ../../mod/invite.php:132 -msgid "Send invitations" -msgstr "Poslat pozvánky" - -#: ../../mod/invite.php:133 -msgid "Enter email addresses, one per line:" -msgstr "Zadejte e-mailové adresy, jednu na řádek:" - -#: ../../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 "Jste srdečně pozván se připojit ke mně a k mým blízkým přátelům na Friendica - a pomoci nám vytvořit lepší sociální síť." - -#: ../../mod/invite.php:137 -msgid "You will need to supply this invitation code: $invite_code" -msgstr "Budete muset zadat kód této pozvánky: $invite_code" - -#: ../../mod/invite.php:137 -msgid "" -"Once you have registered, please connect with me via my profile page at:" -msgstr "Jakmile se zaregistrujete, prosím spojte se se mnou přes mou profilovu stránku na:" - -#: ../../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 "Pro více informací o Friendica projektu a o tom, proč je tak důležitý, prosím navštivte http://friendica.com" - -#: ../../mod/photos.php:52 ../../boot.php:2129 -msgid "Photo Albums" -msgstr "Fotoalba" - -#: ../../mod/photos.php:60 ../../mod/photos.php:155 ../../mod/photos.php:1064 -#: ../../mod/photos.php:1187 ../../mod/photos.php:1210 -#: ../../mod/photos.php:1760 ../../mod/photos.php:1772 -#: ../../view/theme/diabook/theme.php:499 -msgid "Contact Photos" -msgstr "Fotogalerie kontaktu" - -#: ../../mod/photos.php:67 ../../mod/photos.php:1262 ../../mod/photos.php:1819 -msgid "Upload New Photos" -msgstr "Nahrát nové fotografie" - -#: ../../mod/photos.php:144 -msgid "Contact information unavailable" -msgstr "Kontakt byl zablokován" - -#: ../../mod/photos.php:165 -msgid "Album not found." -msgstr "Album nenalezeno." - -#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204 -msgid "Delete Album" -msgstr "Smazat album" - -#: ../../mod/photos.php:198 -msgid "Do you really want to delete this photo album and all its photos?" -msgstr "Opravdu chcete smazat toto foto album a všechny jeho fotografie?" - -#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1515 -msgid "Delete Photo" -msgstr "Smazat fotografii" - -#: ../../mod/photos.php:287 -msgid "Do you really want to delete this photo?" -msgstr "Opravdu chcete smazat tuto fotografii?" - -#: ../../mod/photos.php:662 -#, php-format -msgid "%1$s was tagged in %2$s by %3$s" -msgstr "%1$s byl označen v %2$s uživatelem %3$s" - -#: ../../mod/photos.php:662 -msgid "a photo" -msgstr "fotografie" - -#: ../../mod/photos.php:767 -msgid "Image exceeds size limit of " -msgstr "Velikost obrázku překračuje limit velikosti" - -#: ../../mod/photos.php:775 -msgid "Image file is empty." -msgstr "Soubor obrázku je prázdný." - -#: ../../mod/photos.php:930 -msgid "No photos selected" -msgstr "Není vybrána žádná fotografie" - -#: ../../mod/photos.php:1094 -#, php-format -msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." -msgstr "Použil jste %1$.2f Mbajtů z %2$.2f Mbajtů úložiště fotografií." - -#: ../../mod/photos.php:1129 -msgid "Upload Photos" -msgstr "Nahrání fotografií " - -#: ../../mod/photos.php:1133 ../../mod/photos.php:1199 -msgid "New album name: " -msgstr "Název nového alba: " - -#: ../../mod/photos.php:1134 -msgid "or existing album name: " -msgstr "nebo stávající název alba: " - -#: ../../mod/photos.php:1135 -msgid "Do not show a status post for this upload" -msgstr "Nezobrazovat stav pro tento upload" - -#: ../../mod/photos.php:1137 ../../mod/photos.php:1510 -msgid "Permissions" -msgstr "Oprávnění:" - -#: ../../mod/photos.php:1148 -msgid "Private Photo" -msgstr "Soukromé Fotografie" - -#: ../../mod/photos.php:1149 -msgid "Public Photo" -msgstr "Veřejné Fotografie" - -#: ../../mod/photos.php:1212 -msgid "Edit Album" -msgstr "Edituj album" - -#: ../../mod/photos.php:1218 -msgid "Show Newest First" -msgstr "Zobrazit nejprve nejnovější:" - -#: ../../mod/photos.php:1220 -msgid "Show Oldest First" -msgstr "Zobrazit nejprve nejstarší:" - -#: ../../mod/photos.php:1248 ../../mod/photos.php:1802 -msgid "View Photo" -msgstr "Zobraz fotografii" - -#: ../../mod/photos.php:1294 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Oprávnění bylo zamítnuto. Přístup k této položce může být omezen." - -#: ../../mod/photos.php:1296 -msgid "Photo not available" -msgstr "Fotografie není k dispozici" - -#: ../../mod/photos.php:1352 -msgid "View photo" -msgstr "Zobrazit obrázek" - -#: ../../mod/photos.php:1352 -msgid "Edit photo" -msgstr "Editovat fotografii" - -#: ../../mod/photos.php:1353 -msgid "Use as profile photo" -msgstr "Použít jako profilovou fotografii" - -#: ../../mod/photos.php:1378 -msgid "View Full Size" -msgstr "Zobrazit v plné velikosti" - -#: ../../mod/photos.php:1457 -msgid "Tags: " -msgstr "Štítky: " - -#: ../../mod/photos.php:1460 -msgid "[Remove any tag]" -msgstr "[Odstranit všechny štítky]" - -#: ../../mod/photos.php:1500 -msgid "Rotate CW (right)" -msgstr "Rotovat po směru hodinových ručiček (doprava)" - -#: ../../mod/photos.php:1501 -msgid "Rotate CCW (left)" -msgstr "Rotovat proti směru hodinových ručiček (doleva)" - -#: ../../mod/photos.php:1503 -msgid "New album name" -msgstr "Nové jméno alba" - -#: ../../mod/photos.php:1506 -msgid "Caption" -msgstr "Titulek" - -#: ../../mod/photos.php:1508 -msgid "Add a Tag" -msgstr "Přidat štítek" - -#: ../../mod/photos.php:1512 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Příklad: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" - -#: ../../mod/photos.php:1521 -msgid "Private photo" -msgstr "Soukromé fotografie" - -#: ../../mod/photos.php:1522 -msgid "Public photo" -msgstr "Veřejné fotografie" - -#: ../../mod/photos.php:1544 ../../include/conversation.php:1090 -msgid "Share" -msgstr "Sdílet" - -#: ../../mod/photos.php:1817 -msgid "Recent Photos" -msgstr "Aktuální fotografie" - -#: ../../mod/regmod.php:55 -msgid "Account approved." -msgstr "Účet schválen." - -#: ../../mod/regmod.php:92 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registrace zrušena pro %s" - -#: ../../mod/regmod.php:104 -msgid "Please login." -msgstr "Přihlaste se, prosím." - -#: ../../mod/uimport.php:66 -msgid "Move account" -msgstr "Přesunout účet" - -#: ../../mod/uimport.php:67 -msgid "You can import an account from another Friendica server." -msgstr "Můžete importovat účet z jiného Friendica serveru." - -#: ../../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 "Musíte exportovat svůj účet na sterém serveru a nahrát ho zde. My následně vytvoříme Váš původní účet zde včetně všech kontaktů. Zároveň se pokusíme informovat všechny Vaše přátele, že jste se sem přestěhovali." - -#: ../../mod/uimport.php:69 -msgid "" -"This feature is experimental. We can't import contacts from the OStatus " -"network (statusnet/identi.ca) or from Diaspora" -msgstr "Tato funkčnost je experimentální. Nemůžeme importovat kontakty z OSStatus sítí (statusnet/identi.ca) nebo z Diaspory" - -#: ../../mod/uimport.php:70 -msgid "Account file" -msgstr "Soubor s účtem" - -#: ../../mod/uimport.php:70 -msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" -msgstr "K exportu Vašeho účtu, jděte do \"Nastavení->Export vašich osobních dat\" a zvolte \" Export účtu\"" - -#: ../../mod/attach.php:8 -msgid "Item not available." -msgstr "Položka není k dispozici." - -#: ../../mod/attach.php:20 -msgid "Item was not found." -msgstr "Položka nebyla nalezena." - -#: ../../boot.php:749 -msgid "Delete this item?" -msgstr "Odstranit tuto položku?" - -#: ../../boot.php:752 -msgid "show fewer" -msgstr "zobrazit méně" - -#: ../../boot.php:1122 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "Aktualizace %s selhala. Zkontrolujte protokol chyb." - -#: ../../boot.php:1240 -msgid "Create a New Account" -msgstr "Vytvořit nový účet" - -#: ../../boot.php:1265 ../../include/nav.php:73 -msgid "Logout" -msgstr "Odhlásit se" - -#: ../../boot.php:1268 -msgid "Nickname or Email address: " -msgstr "Přezdívka nebo e-mailová adresa:" - -#: ../../boot.php:1269 -msgid "Password: " -msgstr "Heslo: " - -#: ../../boot.php:1270 -msgid "Remember me" -msgstr "Pamatuj si mne" - -#: ../../boot.php:1273 -msgid "Or login using OpenID: " -msgstr "Nebo přihlášení pomocí OpenID: " - -#: ../../boot.php:1279 -msgid "Forgot your password?" -msgstr "Zapomněli jste své heslo?" - -#: ../../boot.php:1282 -msgid "Website Terms of Service" -msgstr "Podmínky použití serveru" - -#: ../../boot.php:1283 -msgid "terms of service" -msgstr "podmínky použití" - -#: ../../boot.php:1285 -msgid "Website Privacy Policy" -msgstr "Pravidla ochrany soukromí serveru" - -#: ../../boot.php:1286 -msgid "privacy policy" -msgstr "Ochrana soukromí" - -#: ../../boot.php:1419 -msgid "Requested account is not available." -msgstr "Požadovaný účet není dostupný." - -#: ../../boot.php:1501 ../../boot.php:1635 -#: ../../include/profile_advanced.php:84 -msgid "Edit profile" -msgstr "Upravit profil" - -#: ../../boot.php:1600 -msgid "Message" -msgstr "Zpráva" - -#: ../../boot.php:1606 ../../include/nav.php:175 -msgid "Profiles" -msgstr "Profily" - -#: ../../boot.php:1606 -msgid "Manage/edit profiles" -msgstr "Spravovat/upravit profily" - -#: ../../boot.php:1706 -msgid "Network:" -msgstr "Síť:" - -#: ../../boot.php:1736 ../../boot.php:1822 -msgid "g A l F d" -msgstr "g A l F d" - -#: ../../boot.php:1737 ../../boot.php:1823 -msgid "F d" -msgstr "d. F" - -#: ../../boot.php:1782 ../../boot.php:1863 -msgid "[today]" -msgstr "[Dnes]" - -#: ../../boot.php:1794 -msgid "Birthday Reminders" -msgstr "Připomínka narozenin" - -#: ../../boot.php:1795 -msgid "Birthdays this week:" -msgstr "Narozeniny tento týden:" - -#: ../../boot.php:1856 -msgid "[No description]" -msgstr "[Žádný popis]" - -#: ../../boot.php:1874 -msgid "Event Reminders" -msgstr "Připomenutí událostí" - -#: ../../boot.php:1875 -msgid "Events this week:" -msgstr "Události tohoto týdne:" - -#: ../../boot.php:2112 ../../include/nav.php:76 -msgid "Status" -msgstr "Stav" - -#: ../../boot.php:2115 -msgid "Status Messages and Posts" -msgstr "Statusové zprávy a příspěvky " - -#: ../../boot.php:2122 -msgid "Profile Details" -msgstr "Detaily profilu" - -#: ../../boot.php:2133 ../../boot.php:2136 ../../include/nav.php:79 -msgid "Videos" -msgstr "Videa" - -#: ../../boot.php:2146 -msgid "Events and Calendar" -msgstr "Události a kalendář" - -#: ../../boot.php:2153 -msgid "Only You Can See This" -msgstr "Toto můžete vidět jen Vy" - -#: ../../object/Item.php:94 -msgid "This entry was edited" -msgstr "Tento záznam byl editován" - -#: ../../object/Item.php:208 -msgid "ignore thread" -msgstr "ignorovat vlákno" - -#: ../../object/Item.php:209 -msgid "unignore thread" -msgstr "přestat ignorovat vlákno" - -#: ../../object/Item.php:210 -msgid "toggle ignore status" -msgstr "přepnout stav Ignorování" - -#: ../../object/Item.php:213 -msgid "ignored" -msgstr "ignorován" - -#: ../../object/Item.php:316 ../../include/conversation.php:666 -msgid "Categories:" -msgstr "Kategorie:" - -#: ../../object/Item.php:317 ../../include/conversation.php:667 -msgid "Filed under:" -msgstr "Vyplněn pod:" - -#: ../../object/Item.php:329 -msgid "via" -msgstr "přes" - -#: ../../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 "\n\t\t\tThe friendica vývojáři uvolnili nedávno aktualizaci %s,\n\t\t\tale při pokusu o její instalaci se něco velmi nepovedlo.\n\t\t\tJe třeba to opravit a já to sám nedokážu. Prosím kontaktuj\n\t\t\tfriendica vývojáře, pokud mi s tím nepomůžeš ty sám. Moje databáze může být poškozena." - -#: ../../include/dbstructure.php:31 -#, php-format -msgid "" -"The error message is\n" -"[pre]%s[/pre]" -msgstr "Chybová zpráva je\n[pre]%s[/pre]" - -#: ../../include/dbstructure.php:162 -msgid "Errors encountered creating database tables." -msgstr "Při vytváření databázových tabulek došlo k chybám." - -#: ../../include/dbstructure.php:220 -msgid "Errors encountered performing database changes." -msgstr "Při provádění databázových změn došlo k chybám." - -#: ../../include/auth.php:38 -msgid "Logged out." -msgstr "Odhlášen." - -#: ../../include/auth.php:128 ../../include/user.php:67 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Zaznamenali jsme problém s Vaším přihlášením prostřednictvím Vámi zadaným OpenID. Prosím ověřte si, že jste ID zadali správně. " - -#: ../../include/auth.php:128 ../../include/user.php:67 -msgid "The error message was:" -msgstr "Chybová zpráva byla:" - -#: ../../include/contact_widgets.php:6 -msgid "Add New Contact" -msgstr "Přidat nový kontakt" - -#: ../../include/contact_widgets.php:7 -msgid "Enter address or web location" -msgstr "Zadejte adresu nebo umístění webu" - -#: ../../include/contact_widgets.php:8 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Příklad: jan@příklad.cz, http://příklad.cz/jana" - -#: ../../include/contact_widgets.php:24 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "Pozvánka %d k dispozici" -msgstr[1] "Pozvánky %d k dispozici" -msgstr[2] "Pozvánky %d k dispozici" - -#: ../../include/contact_widgets.php:30 -msgid "Find People" -msgstr "Nalézt lidi" - -#: ../../include/contact_widgets.php:31 -msgid "Enter name or interest" -msgstr "Zadejte jméno nebo zájmy" - -#: ../../include/contact_widgets.php:32 -msgid "Connect/Follow" -msgstr "Připojit / Následovat" - -#: ../../include/contact_widgets.php:33 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Příklady: Robert Morgenstein, rybaření" - -#: ../../include/contact_widgets.php:36 ../../view/theme/diabook/theme.php:526 -msgid "Similar Interests" -msgstr "Podobné zájmy" - -#: ../../include/contact_widgets.php:37 -msgid "Random Profile" -msgstr "Náhodný Profil" - -#: ../../include/contact_widgets.php:38 ../../view/theme/diabook/theme.php:528 -msgid "Invite Friends" -msgstr "Pozvat přátele" - -#: ../../include/contact_widgets.php:71 -msgid "Networks" -msgstr "Sítě" - -#: ../../include/contact_widgets.php:74 -msgid "All Networks" -msgstr "Všechny sítě" - -#: ../../include/contact_widgets.php:104 ../../include/features.php:60 -msgid "Saved Folders" -msgstr "Uložené složky" - -#: ../../include/contact_widgets.php:107 ../../include/contact_widgets.php:139 -msgid "Everything" -msgstr "Všechno" - -#: ../../include/contact_widgets.php:136 -msgid "Categories" -msgstr "Kategorie" - -#: ../../include/features.php:23 -msgid "General Features" -msgstr "Obecné funkčnosti" - -#: ../../include/features.php:25 -msgid "Multiple Profiles" -msgstr "Vícenásobné profily" - -#: ../../include/features.php:25 -msgid "Ability to create multiple profiles" -msgstr "Schopnost vytvořit vícenásobné profily" - -#: ../../include/features.php:30 -msgid "Post Composition Features" -msgstr "Nastavení vytváření příspěvků" - -#: ../../include/features.php:31 -msgid "Richtext Editor" -msgstr "Richtext Editor" - -#: ../../include/features.php:31 -msgid "Enable richtext editor" -msgstr "Povolit richtext editor" - -#: ../../include/features.php:32 -msgid "Post Preview" -msgstr "Náhled příspěvku" - -#: ../../include/features.php:32 -msgid "Allow previewing posts and comments before publishing them" -msgstr "Povolit náhledy příspěvků a komentářů před jejich zveřejněním" - -#: ../../include/features.php:33 -msgid "Auto-mention Forums" -msgstr "Automaticky zmíněná Fóra" - -#: ../../include/features.php:33 -msgid "" -"Add/remove mention when a fourm page is selected/deselected in ACL window." -msgstr "Přidat/odebrat zmínku, když stránka fóra je označena/odznačena v ACL okně" - -#: ../../include/features.php:38 -msgid "Network Sidebar Widgets" -msgstr "Síťové postranní widgety" - -#: ../../include/features.php:39 -msgid "Search by Date" -msgstr "Vyhledávat dle Data" - -#: ../../include/features.php:39 -msgid "Ability to select posts by date ranges" -msgstr "Možnost označit příspěvky dle časového intervalu" - -#: ../../include/features.php:40 -msgid "Group Filter" -msgstr "Skupinový Filtr" - -#: ../../include/features.php:40 -msgid "Enable widget to display Network posts only from selected group" -msgstr "Povolit widget pro zobrazení příspěvků v Síti pouze ze zvolené skupiny" - -#: ../../include/features.php:41 -msgid "Network Filter" -msgstr "Síťový Filtr" - -#: ../../include/features.php:41 -msgid "Enable widget to display Network posts only from selected network" -msgstr "Povolit widget pro zobrazení příspěvků v Síti pouze ze zvolené sítě" - -#: ../../include/features.php:42 -msgid "Save search terms for re-use" -msgstr "Uložit kritéria vyhledávání pro znovupoužití" - -#: ../../include/features.php:47 -msgid "Network Tabs" -msgstr "Síťové záložky" - -#: ../../include/features.php:48 -msgid "Network Personal Tab" -msgstr "Osobní síťový záložka " - -#: ../../include/features.php:48 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "Povolit záložku pro zobrazení pouze síťových příspěvků, na které jste reagoval " - -#: ../../include/features.php:49 -msgid "Network New Tab" -msgstr "Nová záložka síť" - -#: ../../include/features.php:49 -msgid "Enable tab to display only new Network posts (from the last 12 hours)" -msgstr "Povolit záložku pro zobrazení pouze nových příspěvků (za posledních 12 hodin)" - -#: ../../include/features.php:50 -msgid "Network Shared Links Tab" -msgstr "záložka Síťové sdílené odkazy " - -#: ../../include/features.php:50 -msgid "Enable tab to display only Network posts with links in them" -msgstr "Povolit záložky pro zobrazování pouze Síťových příspěvků s vazbou na ně" - -#: ../../include/features.php:55 -msgid "Post/Comment Tools" -msgstr "Nástroje Příspěvků/Komentářů" - -#: ../../include/features.php:56 -msgid "Multiple Deletion" -msgstr "Násobné mazání" - -#: ../../include/features.php:56 -msgid "Select and delete multiple posts/comments at once" -msgstr "Označit a smazat více " - -#: ../../include/features.php:57 -msgid "Edit Sent Posts" -msgstr "Editovat Odeslané příspěvky" - -#: ../../include/features.php:57 -msgid "Edit and correct posts and comments after sending" -msgstr "Editovat a opravit příspěvky a komentáře po odeslání" - -#: ../../include/features.php:58 -msgid "Tagging" -msgstr "Štítkování" - -#: ../../include/features.php:58 -msgid "Ability to tag existing posts" -msgstr "Schopnost přidat štítky ke stávajícím příspvěkům" - -#: ../../include/features.php:59 -msgid "Post Categories" -msgstr "Kategorie příspěvků" - -#: ../../include/features.php:59 -msgid "Add categories to your posts" -msgstr "Přidat kategorie k Vašim příspěvkům" - -#: ../../include/features.php:60 -msgid "Ability to file posts under folders" -msgstr "Možnost řadit příspěvky do složek" - -#: ../../include/features.php:61 -msgid "Dislike Posts" -msgstr "Označit příspěvky jako neoblíbené" - -#: ../../include/features.php:61 -msgid "Ability to dislike posts/comments" -msgstr "Možnost označit příspěvky/komentáře jako neoblíbené" - -#: ../../include/features.php:62 -msgid "Star Posts" -msgstr "Příspěvky s hvězdou" - -#: ../../include/features.php:62 -msgid "Ability to mark special posts with a star indicator" -msgstr "Možnost označit příspěvky s indikátorem hvězdy" - -#: ../../include/features.php:63 -msgid "Mute Post Notifications" -msgstr "Utlumit upozornění na přísvěvky" - -#: ../../include/features.php:63 -msgid "Ability to mute notifications for a thread" -msgstr "Možnost stlumit upozornění pro vlákno" - -#: ../../include/follow.php:32 -msgid "Connect URL missing." -msgstr "Chybí URL adresa." - -#: ../../include/follow.php:59 -msgid "" -"This site is not configured to allow communications with other networks." -msgstr "Tento web není nakonfigurován tak, aby umožňoval komunikaci s ostatními sítěmi." - -#: ../../include/follow.php:60 ../../include/follow.php:80 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "Nenalezen žádný kompatibilní komunikační protokol nebo kanál." - -#: ../../include/follow.php:78 -msgid "The profile address specified does not provide adequate information." -msgstr "Uvedená adresa profilu neposkytuje dostatečné informace." - -#: ../../include/follow.php:82 -msgid "An author or name was not found." -msgstr "Autor nebo jméno nenalezeno" - -#: ../../include/follow.php:84 -msgid "No browser URL could be matched to this address." -msgstr "Této adrese neodpovídá žádné URL prohlížeče." - -#: ../../include/follow.php:86 -msgid "" -"Unable to match @-style Identity Address with a known protocol or email " -"contact." -msgstr "Není možné namapovat adresu identity ve stylu @ s žádným možným protokolem ani emailovým kontaktem." - -#: ../../include/follow.php:87 -msgid "Use mailto: in front of address to force email check." -msgstr "Použite mailo: před adresou k vynucení emailové kontroly." - -#: ../../include/follow.php:93 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "Zadaná adresa profilu patří do sítě, která byla na tomto serveru zakázána." - -#: ../../include/follow.php:103 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "Omezený profil. Tato osoba nebude schopna od Vás přijímat přímé / osobní sdělení." - -#: ../../include/follow.php:205 -msgid "Unable to retrieve contact information." -msgstr "Nepodařilo se získat kontaktní informace." - -#: ../../include/follow.php:258 -msgid "following" -msgstr "následující" - -#: ../../include/group.php:25 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "Dříve smazaná skupina s tímto jménem byla obnovena. Stávající oprávnění může ovlivnit tuto skupinu a její budoucí členy. Pokud to není to, co jste chtěli, vytvořte, prosím, další skupinu s jiným názvem." - -#: ../../include/group.php:207 -msgid "Default privacy group for new contacts" -msgstr "Defaultní soukromá skrupina pro nové kontakty." - -#: ../../include/group.php:226 -msgid "Everybody" -msgstr "Všichni" - -#: ../../include/group.php:249 -msgid "edit" -msgstr "editovat" - -#: ../../include/group.php:271 -msgid "Edit group" -msgstr "Editovat skupinu" - -#: ../../include/group.php:272 -msgid "Create a new group" -msgstr "Vytvořit novou skupinu" - -#: ../../include/group.php:273 -msgid "Contacts not in any group" -msgstr "Kontakty, které nejsou v žádné skupině" - -#: ../../include/datetime.php:43 ../../include/datetime.php:45 -msgid "Miscellaneous" -msgstr "Různé" - -#: ../../include/datetime.php:153 ../../include/datetime.php:290 -msgid "year" -msgstr "rok" - -#: ../../include/datetime.php:158 ../../include/datetime.php:291 -msgid "month" -msgstr "měsíc" - -#: ../../include/datetime.php:163 ../../include/datetime.php:293 -msgid "day" -msgstr "den" - -#: ../../include/datetime.php:276 -msgid "never" -msgstr "nikdy" - -#: ../../include/datetime.php:282 -msgid "less than a second ago" -msgstr "méně než před sekundou" - -#: ../../include/datetime.php:290 -msgid "years" -msgstr "let" - -#: ../../include/datetime.php:291 -msgid "months" -msgstr "měsíců" - -#: ../../include/datetime.php:292 -msgid "week" -msgstr "týdnem" - -#: ../../include/datetime.php:292 -msgid "weeks" -msgstr "týdny" - -#: ../../include/datetime.php:293 -msgid "days" -msgstr "dnů" - -#: ../../include/datetime.php:294 -msgid "hour" -msgstr "hodina" - -#: ../../include/datetime.php:294 -msgid "hours" -msgstr "hodin" - -#: ../../include/datetime.php:295 -msgid "minute" -msgstr "minuta" - -#: ../../include/datetime.php:295 -msgid "minutes" -msgstr "minut" - -#: ../../include/datetime.php:296 -msgid "second" -msgstr "sekunda" - -#: ../../include/datetime.php:296 -msgid "seconds" -msgstr "sekund" - -#: ../../include/datetime.php:305 -#, php-format -msgid "%1$d %2$s ago" -msgstr "před %1$d %2$s" - -#: ../../include/datetime.php:477 ../../include/items.php:2211 -#, php-format -msgid "%s's birthday" -msgstr "%s má narozeniny" - -#: ../../include/datetime.php:478 ../../include/items.php:2212 -#, php-format -msgid "Happy Birthday %s" -msgstr "Veselé narozeniny %s" - -#: ../../include/acl_selectors.php:333 -msgid "Visible to everybody" -msgstr "Viditelné pro všechny" - -#: ../../include/acl_selectors.php:334 ../../view/theme/diabook/config.php:142 -#: ../../view/theme/diabook/theme.php:621 -msgid "show" -msgstr "zobrazit" - -#: ../../include/acl_selectors.php:335 ../../view/theme/diabook/config.php:142 -#: ../../view/theme/diabook/theme.php:621 -msgid "don't show" -msgstr "nikdy nezobrazit" - -#: ../../include/message.php:15 ../../include/message.php:172 -msgid "[no subject]" -msgstr "[bez předmětu]" - -#: ../../include/Contact.php:115 -msgid "stopped following" -msgstr "následování zastaveno" - -#: ../../include/Contact.php:228 ../../include/conversation.php:882 -msgid "Poke" -msgstr "Šťouchnout" - -#: ../../include/Contact.php:229 ../../include/conversation.php:876 -msgid "View Status" -msgstr "Zobrazit Status" - -#: ../../include/Contact.php:230 ../../include/conversation.php:877 -msgid "View Profile" -msgstr "Zobrazit Profil" - -#: ../../include/Contact.php:231 ../../include/conversation.php:878 -msgid "View Photos" -msgstr "Zobrazit Fotky" - -#: ../../include/Contact.php:232 ../../include/Contact.php:255 -#: ../../include/conversation.php:879 -msgid "Network Posts" -msgstr "Zobrazit Příspěvky sítě" - -#: ../../include/Contact.php:233 ../../include/Contact.php:255 -#: ../../include/conversation.php:880 -msgid "Edit Contact" -msgstr "Editovat Kontakty" - -#: ../../include/Contact.php:234 -msgid "Drop Contact" -msgstr "Odstranit kontakt" - -#: ../../include/Contact.php:235 ../../include/Contact.php:255 -#: ../../include/conversation.php:881 -msgid "Send PM" -msgstr "Poslat soukromou zprávu" - -#: ../../include/security.php:22 -msgid "Welcome " -msgstr "Vítejte " - -#: ../../include/security.php:23 -msgid "Please upload a profile photo." -msgstr "Prosím nahrejte profilovou fotografii" - -#: ../../include/security.php:26 -msgid "Welcome back " -msgstr "Vítejte zpět " - -#: ../../include/security.php:366 -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 "Formulářový bezpečnostní token nebyl správný. To pravděpodobně nastalo kvůli tom, že formulář byl otevřen příliš dlouho (>3 hodiny) před jeho odesláním." - -#: ../../include/conversation.php:118 ../../include/conversation.php:246 -#: ../../include/text.php:1966 ../../view/theme/diabook/theme.php:463 -msgid "event" -msgstr "událost" - -#: ../../include/conversation.php:207 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s šťouchnul %2$s" - -#: ../../include/conversation.php:211 ../../include/text.php:1005 -msgid "poked" -msgstr "šťouchnut" - -#: ../../include/conversation.php:291 -msgid "post/item" -msgstr "příspěvek/položka" - -#: ../../include/conversation.php:292 -#, php-format -msgid "%1$s marked %2$s's %3$s as favorite" -msgstr "uživatel %1$s označil %2$s's %3$s jako oblíbeného" - -#: ../../include/conversation.php:772 -msgid "remove" -msgstr "odstranit" - -#: ../../include/conversation.php:776 -msgid "Delete Selected Items" -msgstr "Smazat vybrané položky" - -#: ../../include/conversation.php:875 -msgid "Follow Thread" -msgstr "Následovat vlákno" - -#: ../../include/conversation.php:944 -#, php-format -msgid "%s likes this." -msgstr "%s se to líbí." - -#: ../../include/conversation.php:944 -#, php-format -msgid "%s doesn't like this." -msgstr "%s se to nelíbí." - -#: ../../include/conversation.php:949 -#, php-format -msgid "%2$d people like this" -msgstr "%2$d lidem se to líbí" - -#: ../../include/conversation.php:952 -#, php-format -msgid "%2$d people don't like this" -msgstr "%2$d lidem se to nelíbí" - -#: ../../include/conversation.php:966 -msgid "and" -msgstr "a" - -#: ../../include/conversation.php:972 -#, php-format -msgid ", and %d other people" -msgstr ", a %d dalších lidí" - -#: ../../include/conversation.php:974 -#, php-format -msgid "%s like this." -msgstr "%s se to líbí." - -#: ../../include/conversation.php:974 -#, php-format -msgid "%s don't like this." -msgstr "%s se to nelíbí." - -#: ../../include/conversation.php:1001 ../../include/conversation.php:1019 -msgid "Visible to everybody" -msgstr "Viditelné pro všechny" - -#: ../../include/conversation.php:1003 ../../include/conversation.php:1021 -msgid "Please enter a video link/URL:" -msgstr "Prosím zadejte URL adresu videa:" - -#: ../../include/conversation.php:1004 ../../include/conversation.php:1022 -msgid "Please enter an audio link/URL:" -msgstr "Prosím zadejte URL adresu zvukového záznamu:" - -#: ../../include/conversation.php:1005 ../../include/conversation.php:1023 -msgid "Tag term:" -msgstr "Štítek:" - -#: ../../include/conversation.php:1007 ../../include/conversation.php:1025 -msgid "Where are you right now?" -msgstr "Kde právě jste?" - -#: ../../include/conversation.php:1008 -msgid "Delete item(s)?" -msgstr "Smazat položku(y)?" - -#: ../../include/conversation.php:1051 -msgid "Post to Email" -msgstr "Poslat příspěvek na e-mail" - -#: ../../include/conversation.php:1056 -#, php-format -msgid "Connectors disabled, since \"%s\" is enabled." -msgstr "Kontektory deaktivovány, od \"%s\" je aktivován." - -#: ../../include/conversation.php:1111 -msgid "permissions" -msgstr "oprávnění" - -#: ../../include/conversation.php:1135 -msgid "Post to Groups" -msgstr "Zveřejnit na Groups" - -#: ../../include/conversation.php:1136 -msgid "Post to Contacts" -msgstr "Zveřejnit na Groups" - -#: ../../include/conversation.php:1137 -msgid "Private post" -msgstr "Soukromý příspěvek" - -#: ../../include/network.php:895 -msgid "view full size" -msgstr "zobrazit v plné velikosti" - -#: ../../include/text.php:297 -msgid "newer" -msgstr "novější" - -#: ../../include/text.php:299 -msgid "older" -msgstr "starší" - -#: ../../include/text.php:304 -msgid "prev" -msgstr "předchozí" - -#: ../../include/text.php:306 -msgid "first" -msgstr "první" - -#: ../../include/text.php:338 -msgid "last" -msgstr "poslední" - -#: ../../include/text.php:341 -msgid "next" -msgstr "další" - -#: ../../include/text.php:855 -msgid "No contacts" -msgstr "Žádné kontakty" - -#: ../../include/text.php:864 -#, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" -msgstr[0] "%d kontakt" -msgstr[1] "%d kontaktů" -msgstr[2] "%d kontaktů" - -#: ../../include/text.php:1005 -msgid "poke" -msgstr "šťouchnout" - -#: ../../include/text.php:1006 -msgid "ping" -msgstr "cinknout" - -#: ../../include/text.php:1006 -msgid "pinged" -msgstr "cinkut" - -#: ../../include/text.php:1007 -msgid "prod" -msgstr "pobídnout" - -#: ../../include/text.php:1007 -msgid "prodded" -msgstr "pobídnut" - -#: ../../include/text.php:1008 -msgid "slap" -msgstr "dát facku" - -#: ../../include/text.php:1008 -msgid "slapped" -msgstr "být uhozen" - -#: ../../include/text.php:1009 -msgid "finger" -msgstr "osahávat" - -#: ../../include/text.php:1009 -msgid "fingered" -msgstr "osaháván" - -#: ../../include/text.php:1010 -msgid "rebuff" -msgstr "odmítnout" - -#: ../../include/text.php:1010 -msgid "rebuffed" -msgstr "odmítnut" - -#: ../../include/text.php:1024 -msgid "happy" -msgstr "šťasný" - -#: ../../include/text.php:1025 -msgid "sad" -msgstr "smutný" - -#: ../../include/text.php:1026 -msgid "mellow" -msgstr "jemný" - -#: ../../include/text.php:1027 -msgid "tired" -msgstr "unavený" - -#: ../../include/text.php:1028 -msgid "perky" -msgstr "emergický" - -#: ../../include/text.php:1029 -msgid "angry" -msgstr "nazlobený" - -#: ../../include/text.php:1030 -msgid "stupified" -msgstr "otupen" - -#: ../../include/text.php:1031 -msgid "puzzled" -msgstr "popletený" - -#: ../../include/text.php:1032 -msgid "interested" -msgstr "zajímavý" - -#: ../../include/text.php:1033 -msgid "bitter" -msgstr "hořký" - -#: ../../include/text.php:1034 -msgid "cheerful" -msgstr "radnostný" - -#: ../../include/text.php:1035 -msgid "alive" -msgstr "naživu" - -#: ../../include/text.php:1036 -msgid "annoyed" -msgstr "otráven" - -#: ../../include/text.php:1037 -msgid "anxious" -msgstr "znepokojený" - -#: ../../include/text.php:1038 -msgid "cranky" -msgstr "mrzutý" - -#: ../../include/text.php:1039 -msgid "disturbed" -msgstr "vyrušen" - -#: ../../include/text.php:1040 -msgid "frustrated" -msgstr "frustrovaný" - -#: ../../include/text.php:1041 -msgid "motivated" -msgstr "motivovaný" - -#: ../../include/text.php:1042 -msgid "relaxed" -msgstr "uvolněný" - -#: ../../include/text.php:1043 -msgid "surprised" -msgstr "překvapený" - -#: ../../include/text.php:1213 -msgid "Monday" -msgstr "Pondělí" - -#: ../../include/text.php:1213 -msgid "Tuesday" -msgstr "Úterý" - -#: ../../include/text.php:1213 -msgid "Wednesday" -msgstr "Středa" - -#: ../../include/text.php:1213 -msgid "Thursday" -msgstr "Čtvrtek" - -#: ../../include/text.php:1213 -msgid "Friday" -msgstr "Pátek" - -#: ../../include/text.php:1213 -msgid "Saturday" -msgstr "Sobota" - -#: ../../include/text.php:1213 -msgid "Sunday" -msgstr "Neděle" - -#: ../../include/text.php:1217 -msgid "January" -msgstr "Ledna" - -#: ../../include/text.php:1217 -msgid "February" -msgstr "Února" - -#: ../../include/text.php:1217 -msgid "March" -msgstr "Března" - -#: ../../include/text.php:1217 -msgid "April" -msgstr "Dubna" - -#: ../../include/text.php:1217 -msgid "May" -msgstr "Května" - -#: ../../include/text.php:1217 -msgid "June" -msgstr "Června" - -#: ../../include/text.php:1217 -msgid "July" -msgstr "Července" - -#: ../../include/text.php:1217 -msgid "August" -msgstr "Srpna" - -#: ../../include/text.php:1217 -msgid "September" -msgstr "Září" - -#: ../../include/text.php:1217 -msgid "October" -msgstr "Října" - -#: ../../include/text.php:1217 -msgid "November" -msgstr "Listopadu" - -#: ../../include/text.php:1217 -msgid "December" -msgstr "Prosinec" - -#: ../../include/text.php:1437 -msgid "bytes" -msgstr "bytů" - -#: ../../include/text.php:1461 ../../include/text.php:1473 -msgid "Click to open/close" -msgstr "Klikněte pro otevření/zavření" - -#: ../../include/text.php:1702 ../../include/user.php:247 -#: ../../view/theme/duepuntozero/config.php:44 -msgid "default" -msgstr "standardní" - -#: ../../include/text.php:1714 -msgid "Select an alternate language" -msgstr "Vyběr alternativního jazyka" - -#: ../../include/text.php:1970 -msgid "activity" -msgstr "aktivita" - -#: ../../include/text.php:1973 -msgid "post" -msgstr "příspěvek" - -#: ../../include/text.php:2141 -msgid "Item filed" -msgstr "Položka vyplněna" - -#: ../../include/bbcode.php:428 ../../include/bbcode.php:1047 -#: ../../include/bbcode.php:1048 -msgid "Image/photo" -msgstr "Obrázek/fotografie" - -#: ../../include/bbcode.php:528 -#, php-format -msgid "%2$s %3$s" -msgstr "%2$s %3$s" - -#: ../../include/bbcode.php:562 -#, php-format -msgid "" -"%s wrote the following post" -msgstr "%s napsal následující příspěvek" - -#: ../../include/bbcode.php:1011 ../../include/bbcode.php:1031 -msgid "$1 wrote:" -msgstr "$1 napsal:" - -#: ../../include/bbcode.php:1056 ../../include/bbcode.php:1057 -msgid "Encrypted content" -msgstr "Šifrovaný obsah" - -#: ../../include/notifier.php:786 ../../include/delivery.php:456 -msgid "(no subject)" -msgstr "(Bez předmětu)" - -#: ../../include/notifier.php:796 ../../include/delivery.php:467 -#: ../../include/enotify.php:33 -msgid "noreply" -msgstr "neodpovídat" - -#: ../../include/dba_pdo.php:72 ../../include/dba.php:56 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Nelze nalézt záznam v DNS pro databázový server '%s'" - -#: ../../include/contact_selectors.php:32 -msgid "Unknown | Not categorised" -msgstr "Neznámé | Nezařazeno" - -#: ../../include/contact_selectors.php:33 -msgid "Block immediately" -msgstr "Okamžitě blokovat " - -#: ../../include/contact_selectors.php:34 -msgid "Shady, spammer, self-marketer" -msgstr "pochybný, spammer, self-makerter" - -#: ../../include/contact_selectors.php:35 -msgid "Known to me, but no opinion" -msgstr "Znám ho ale, ale bez rozhodnutí" - -#: ../../include/contact_selectors.php:36 -msgid "OK, probably harmless" -msgstr "OK, pravděpodobně neškodný" - -#: ../../include/contact_selectors.php:37 -msgid "Reputable, has my trust" -msgstr "Renomovaný, má mou důvěru" - -#: ../../include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Týdenně" - -#: ../../include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Měsíčně" - -#: ../../include/contact_selectors.php:77 -msgid "OStatus" -msgstr "OStatus" - -#: ../../include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: ../../include/contact_selectors.php:82 -msgid "Zot!" -msgstr "Zot!" - -#: ../../include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: ../../include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: ../../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 konektor" - -#: ../../include/contact_selectors.php:91 -msgid "Statusnet" -msgstr "Statusnet" - -#: ../../include/contact_selectors.php:92 -msgid "App.net" -msgstr "App.net" - -#: ../../include/Scrape.php:614 -msgid " on Last.fm" -msgstr " na Last.fm" - -#: ../../include/bb2diaspora.php:154 ../../include/event.php:20 -msgid "Starts:" -msgstr "Začíná:" - -#: ../../include/bb2diaspora.php:162 ../../include/event.php:30 -msgid "Finishes:" -msgstr "Končí:" - -#: ../../include/profile_advanced.php:22 -msgid "j F, Y" -msgstr "j F, Y" - -#: ../../include/profile_advanced.php:23 -msgid "j F" -msgstr "j F" - -#: ../../include/profile_advanced.php:30 -msgid "Birthday:" -msgstr "Narozeniny:" - -#: ../../include/profile_advanced.php:34 -msgid "Age:" -msgstr "Věk:" - -#: ../../include/profile_advanced.php:43 -#, php-format -msgid "for %1$d %2$s" -msgstr "pro %1$d %2$s" - -#: ../../include/profile_advanced.php:52 -msgid "Tags:" -msgstr "Štítky:" - -#: ../../include/profile_advanced.php:56 -msgid "Religion:" -msgstr "Náboženství:" - -#: ../../include/profile_advanced.php:60 -msgid "Hobbies/Interests:" -msgstr "Koníčky/zájmy:" - -#: ../../include/profile_advanced.php:67 -msgid "Contact information and Social Networks:" -msgstr "Kontaktní informace a sociální sítě:" - -#: ../../include/profile_advanced.php:69 -msgid "Musical interests:" -msgstr "Hudební vkus:" - -#: ../../include/profile_advanced.php:71 -msgid "Books, literature:" -msgstr "Knihy, literatura:" - -#: ../../include/profile_advanced.php:73 -msgid "Television:" -msgstr "Televize:" - -#: ../../include/profile_advanced.php:75 -msgid "Film/dance/culture/entertainment:" -msgstr "Film/tanec/kultura/zábava:" - -#: ../../include/profile_advanced.php:77 -msgid "Love/Romance:" -msgstr "Láska/romance" - -#: ../../include/profile_advanced.php:79 -msgid "Work/employment:" -msgstr "Práce/zaměstnání:" - -#: ../../include/profile_advanced.php:81 -msgid "School/education:" -msgstr "Škola/vzdělávání:" - -#: ../../include/plugin.php:455 ../../include/plugin.php:457 -msgid "Click here to upgrade." -msgstr "Klikněte zde pro aktualizaci." - -#: ../../include/plugin.php:463 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Tato akce překročí limit nastavené Vaším předplatným." - -#: ../../include/plugin.php:468 -msgid "This action is not available under your subscription plan." -msgstr "Tato akce není v rámci Vašeho předplatného dostupná." - -#: ../../include/nav.php:73 -msgid "End this session" -msgstr "Konec této relace" - -#: ../../include/nav.php:76 ../../include/nav.php:148 -#: ../../view/theme/diabook/theme.php:123 -msgid "Your posts and conversations" -msgstr "Vaše příspěvky a konverzace" - -#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:124 -msgid "Your profile page" -msgstr "Vaše profilová stránka" - -#: ../../include/nav.php:78 ../../view/theme/diabook/theme.php:126 -msgid "Your photos" -msgstr "Vaše fotky" - -#: ../../include/nav.php:79 -msgid "Your videos" -msgstr "Vaše videa" - -#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:127 -msgid "Your events" -msgstr "Vaše události" - -#: ../../include/nav.php:81 ../../view/theme/diabook/theme.php:128 -msgid "Personal notes" -msgstr "Osobní poznámky" - -#: ../../include/nav.php:81 -msgid "Your personal notes" -msgstr "Vaše osobní poznámky" - -#: ../../include/nav.php:92 -msgid "Sign in" -msgstr "Přihlásit se" - -#: ../../include/nav.php:105 -msgid "Home Page" -msgstr "Domácí stránka" - -#: ../../include/nav.php:109 -msgid "Create an account" -msgstr "Vytvořit účet" - -#: ../../include/nav.php:114 -msgid "Help and documentation" -msgstr "Nápověda a dokumentace" - -#: ../../include/nav.php:117 -msgid "Apps" -msgstr "Aplikace" - -#: ../../include/nav.php:117 -msgid "Addon applications, utilities, games" -msgstr "Doplňkové aplikace, nástroje, hry" - -#: ../../include/nav.php:119 -msgid "Search site content" -msgstr "Hledání na stránkách tohoto webu" - -#: ../../include/nav.php:129 -msgid "Conversations on this site" -msgstr "Konverzace na tomto webu" - -#: ../../include/nav.php:131 -msgid "Conversations on the network" -msgstr "Konverzace v síti" - -#: ../../include/nav.php:133 -msgid "Directory" -msgstr "Adresář" - -#: ../../include/nav.php:133 -msgid "People directory" -msgstr "Adresář" - -#: ../../include/nav.php:135 -msgid "Information" -msgstr "Informace" - -#: ../../include/nav.php:135 -msgid "Information about this friendica instance" -msgstr "Informace o této instanci Friendica" - -#: ../../include/nav.php:145 -msgid "Conversations from your friends" -msgstr "Konverzace od Vašich přátel" - -#: ../../include/nav.php:146 -msgid "Network Reset" -msgstr "Síťový Reset" - -#: ../../include/nav.php:146 -msgid "Load Network page with no filters" -msgstr "Načíst stránku Síť bez filtrů" - -#: ../../include/nav.php:154 -msgid "Friend Requests" -msgstr "Žádosti přátel" - -#: ../../include/nav.php:156 -msgid "See all notifications" -msgstr "Zobrazit všechny upozornění" - -#: ../../include/nav.php:157 -msgid "Mark all system notifications seen" -msgstr "Označit všechny upozornění systému jako přečtené" - -#: ../../include/nav.php:161 -msgid "Private mail" -msgstr "Soukromá pošta" - -#: ../../include/nav.php:162 -msgid "Inbox" -msgstr "Doručená pošta" - -#: ../../include/nav.php:163 -msgid "Outbox" -msgstr "Odeslaná pošta" - -#: ../../include/nav.php:167 -msgid "Manage" -msgstr "Spravovat" - -#: ../../include/nav.php:167 -msgid "Manage other pages" -msgstr "Spravovat jiné stránky" - -#: ../../include/nav.php:172 -msgid "Account settings" -msgstr "Nastavení účtu" - -#: ../../include/nav.php:175 -msgid "Manage/Edit Profiles" -msgstr "Spravovat/Editovat Profily" - -#: ../../include/nav.php:177 -msgid "Manage/edit friends and contacts" -msgstr "Spravovat/upravit přátelé a kontakty" - -#: ../../include/nav.php:184 -msgid "Site setup and configuration" -msgstr "Nastavení webu a konfigurace" - -#: ../../include/nav.php:188 -msgid "Navigation" -msgstr "Navigace" - -#: ../../include/nav.php:188 -msgid "Site map" -msgstr "Mapa webu" - -#: ../../include/api.php:304 ../../include/api.php:315 -#: ../../include/api.php:416 ../../include/api.php:1063 -#: ../../include/api.php:1065 -msgid "User not found." -msgstr "Uživatel nenalezen" - -#: ../../include/api.php:771 -#, php-format -msgid "Daily posting limit of %d posts reached. The post was rejected." -msgstr "Bylo dosaženo denního limitu %d odeslaných příspěvků. Příspěvek byl odmítnut." - -#: ../../include/api.php:790 -#, php-format -msgid "Weekly posting limit of %d posts reached. The post was rejected." -msgstr "Bylo týdenního limitu %d odeslaných příspěvků. Příspěvek byl odmítnut." - -#: ../../include/api.php:809 -#, php-format -msgid "Monthly posting limit of %d posts reached. The post was rejected." -msgstr "Bylo dosaženo měsíčního limitu %d odeslaných příspěvků. Příspěvek byl odmítnut." - -#: ../../include/api.php:1272 -msgid "There is no status with this id." -msgstr "Není tu žádný status s tímto id." - -#: ../../include/api.php:1342 -msgid "There is no conversation with this id." -msgstr "Nemáme žádnou konverzaci s tímto id." - -#: ../../include/api.php:1614 -msgid "Invalid request." -msgstr "Neplatný požadavek." - -#: ../../include/api.php:1625 -msgid "Invalid item." -msgstr "Neplatná položka." - -#: ../../include/api.php:1635 -msgid "Invalid action. " -msgstr "Neplatná akce" - -#: ../../include/api.php:1643 -msgid "DB error" -msgstr "DB chyba" - -#: ../../include/user.php:40 -msgid "An invitation is required." -msgstr "Pozvánka je vyžadována." - -#: ../../include/user.php:45 -msgid "Invitation could not be verified." -msgstr "Pozvánka nemohla být ověřena." - -#: ../../include/user.php:53 -msgid "Invalid OpenID url" -msgstr "Neplatný odkaz OpenID" - -#: ../../include/user.php:74 -msgid "Please enter the required information." -msgstr "Zadejte prosím požadované informace." - -#: ../../include/user.php:88 -msgid "Please use a shorter name." -msgstr "Použijte prosím kratší jméno." - -#: ../../include/user.php:90 -msgid "Name too short." -msgstr "Jméno je příliš krátké." - -#: ../../include/user.php:105 -msgid "That doesn't appear to be your full (First Last) name." -msgstr "Nezdá se, že by to bylo vaše celé jméno (křestní jméno a příjmení)." - -#: ../../include/user.php:110 -msgid "Your email domain is not among those allowed on this site." -msgstr "Váš e-mailová doména není na tomto serveru mezi povolenými." - -#: ../../include/user.php:113 -msgid "Not a valid email address." -msgstr "Neplatná e-mailová adresa." - -#: ../../include/user.php:126 -msgid "Cannot use that email." -msgstr "Tento e-mail nelze použít." - -#: ../../include/user.php:132 -msgid "" -"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " -"must also begin with a letter." -msgstr "Vaše \"přezdívka\" může obsahovat pouze \"a-z\", \"0-9\", \"-\", a \"_\", a musí začínat písmenem." - -#: ../../include/user.php:138 ../../include/user.php:236 -msgid "Nickname is already registered. Please choose another." -msgstr "Přezdívka je již registrována. Prosím vyberte jinou." - -#: ../../include/user.php:148 -msgid "" -"Nickname was once registered here and may not be re-used. Please choose " -"another." -msgstr "Tato přezdívka již zde byla použita a nemůže být využita znovu. Prosím vyberete si jinou." - -#: ../../include/user.php:164 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "Závažná chyba: Generování bezpečnostních klíčů se nezdařilo." - -#: ../../include/user.php:222 -msgid "An error occurred during registration. Please try again." -msgstr "Došlo k chybě při registraci. Zkuste to prosím znovu." - -#: ../../include/user.php:257 -msgid "An error occurred creating your default profile. Please try again." -msgstr "Došlo k chybě při vytváření Vašeho výchozího profilu. Zkuste to prosím znovu." - -#: ../../include/user.php:289 ../../include/user.php:293 -#: ../../include/profile_selectors.php:42 -msgid "Friends" -msgstr "Přátelé" - -#: ../../include/user.php:377 -#, php-format -msgid "" -"\n" -"\t\tDear %1$s,\n" -"\t\t\tThank you for registering at %2$s. Your account has been created.\n" -"\t" -msgstr "\n\t\tDrahý %1$s,\n\t\t\tDěkujeme Vám za registraci na %2$s. Váš účet byl vytvořen.\n\t" - -#: ../../include/user.php:381 -#, php-format -msgid "" -"\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." -msgstr "\n\t\tVaše přihlašovací údaje jsou následující:\n\t\t\tAdresa webu:\t%3$s\n\t\t\tpřihlašovací jméno:\t%1$s\n\t\t\theslo:\t%5$s\n\n\t\tHeslo si můžete změnit na stránce \"Nastavení\" vašeho účtu poté, co se přihlásíte.\n\n\t\tProsím věnujte pár chvil revizi dalšího nastavení vašeho účtu na dané stránce.\n\n\t\tTaké su můžete přidat nějaké základní informace do svého výchozího profilu (na stránce \"Profily\"), takže ostatní lidé vás snáze najdou.\n\n\t\tDoporučujeme Vám uvést celé jméno a i foto. Přidáním nějakých \"klíčových slov\" (velmi užitečné pro hledání nových přátel) a možná také zemi, ve které žijete, pokud nechcete být více konkrétní.\n\n\t\tPlně resepktujeme vaše právo na soukromí a nic z výše uvedeného není povinné.\n\t\tPokud jste zde nový a neznáte zde nikoho, uvedením daných informací můžete získat nové přátele.\n\n\n\t\tDíky a vítejte na %2$s." - -#: ../../include/diaspora.php:703 -msgid "Sharing notification from Diaspora network" -msgstr "Sdílení oznámení ze sítě Diaspora" - -#: ../../include/diaspora.php:2520 -msgid "Attachments:" -msgstr "Přílohy:" - -#: ../../include/items.php:4555 -msgid "Do you really want to delete this item?" -msgstr "Opravdu chcete smazat tuto položku?" - -#: ../../include/items.php:4778 -msgid "Archives" -msgstr "Archív" - -#: ../../include/profile_selectors.php:6 -msgid "Male" -msgstr "Muž" - -#: ../../include/profile_selectors.php:6 -msgid "Female" -msgstr "Žena" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Male" -msgstr "V současné době muž" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Female" -msgstr "V současné době žena" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Male" -msgstr "Většinou muž" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Female" -msgstr "Většinou žena" - -#: ../../include/profile_selectors.php:6 -msgid "Transgender" -msgstr "Transgender" - -#: ../../include/profile_selectors.php:6 -msgid "Intersex" -msgstr "Intersex" - -#: ../../include/profile_selectors.php:6 -msgid "Transsexual" -msgstr "Transexuál" - -#: ../../include/profile_selectors.php:6 -msgid "Hermaphrodite" -msgstr "Hermafrodit" - -#: ../../include/profile_selectors.php:6 -msgid "Neuter" -msgstr "Neutrál" - -#: ../../include/profile_selectors.php:6 -msgid "Non-specific" -msgstr "Nespecifikováno" - -#: ../../include/profile_selectors.php:6 -msgid "Other" -msgstr "Jiné" - -#: ../../include/profile_selectors.php:6 -msgid "Undecided" -msgstr "Nerozhodnuto" - -#: ../../include/profile_selectors.php:23 -msgid "Males" -msgstr "Muži" - -#: ../../include/profile_selectors.php:23 -msgid "Females" -msgstr "Ženy" - -#: ../../include/profile_selectors.php:23 -msgid "Gay" -msgstr "Gay" - -#: ../../include/profile_selectors.php:23 -msgid "Lesbian" -msgstr "Lesbička" - -#: ../../include/profile_selectors.php:23 -msgid "No Preference" -msgstr "Bez preferencí" - -#: ../../include/profile_selectors.php:23 -msgid "Bisexual" -msgstr "Bisexuál" - -#: ../../include/profile_selectors.php:23 -msgid "Autosexual" -msgstr "Autosexuál" - -#: ../../include/profile_selectors.php:23 -msgid "Abstinent" -msgstr "Abstinent" - -#: ../../include/profile_selectors.php:23 -msgid "Virgin" -msgstr "panic/panna" - -#: ../../include/profile_selectors.php:23 -msgid "Deviant" -msgstr "Deviant" - -#: ../../include/profile_selectors.php:23 -msgid "Fetish" -msgstr "Fetišista" - -#: ../../include/profile_selectors.php:23 -msgid "Oodles" -msgstr "Hodně" - -#: ../../include/profile_selectors.php:23 -msgid "Nonsexual" -msgstr "Nesexuální" - -#: ../../include/profile_selectors.php:42 -msgid "Single" -msgstr "Svobodný" - -#: ../../include/profile_selectors.php:42 -msgid "Lonely" -msgstr "Osamnělý" - -#: ../../include/profile_selectors.php:42 -msgid "Available" -msgstr "Dostupný" - -#: ../../include/profile_selectors.php:42 -msgid "Unavailable" -msgstr "Nedostupný" - -#: ../../include/profile_selectors.php:42 -msgid "Has crush" -msgstr "Zamilovaný" - -#: ../../include/profile_selectors.php:42 -msgid "Infatuated" -msgstr "Zabouchnutý" - -#: ../../include/profile_selectors.php:42 -msgid "Dating" -msgstr "Seznamující se" - -#: ../../include/profile_selectors.php:42 -msgid "Unfaithful" -msgstr "Nevěrný" - -#: ../../include/profile_selectors.php:42 -msgid "Sex Addict" -msgstr "Závislý na sexu" - -#: ../../include/profile_selectors.php:42 -msgid "Friends/Benefits" -msgstr "Přátelé / výhody" - -#: ../../include/profile_selectors.php:42 -msgid "Casual" -msgstr "Ležérní" - -#: ../../include/profile_selectors.php:42 -msgid "Engaged" -msgstr "Zadaný" - -#: ../../include/profile_selectors.php:42 -msgid "Married" -msgstr "Ženatý/vdaná" - -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily married" -msgstr "Pomyslně ženatý/vdaná" - -#: ../../include/profile_selectors.php:42 -msgid "Partners" -msgstr "Partneři" - -#: ../../include/profile_selectors.php:42 -msgid "Cohabiting" -msgstr "Žijící ve společné domácnosti" - -#: ../../include/profile_selectors.php:42 -msgid "Common law" -msgstr "Zvykové právo" - -#: ../../include/profile_selectors.php:42 -msgid "Happy" -msgstr "Šťastný" - -#: ../../include/profile_selectors.php:42 -msgid "Not looking" -msgstr "Nehledající" - -#: ../../include/profile_selectors.php:42 -msgid "Swinger" -msgstr "Swinger" - -#: ../../include/profile_selectors.php:42 -msgid "Betrayed" -msgstr "Zrazen" - -#: ../../include/profile_selectors.php:42 -msgid "Separated" -msgstr "Odloučený" - -#: ../../include/profile_selectors.php:42 -msgid "Unstable" -msgstr "Nestálý" - -#: ../../include/profile_selectors.php:42 -msgid "Divorced" -msgstr "Rozvedený(á)" - -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily divorced" -msgstr "Pomyslně rozvedený" - -#: ../../include/profile_selectors.php:42 -msgid "Widowed" -msgstr "Ovdovělý(á)" - -#: ../../include/profile_selectors.php:42 -msgid "Uncertain" -msgstr "Nejistý" - -#: ../../include/profile_selectors.php:42 -msgid "It's complicated" -msgstr "Je to složité" - -#: ../../include/profile_selectors.php:42 -msgid "Don't care" -msgstr "Nezajímá" - -#: ../../include/profile_selectors.php:42 -msgid "Ask me" -msgstr "Zeptej se mě" - -#: ../../include/enotify.php:18 -msgid "Friendica Notification" -msgstr "Friendica Notifikace" - -#: ../../include/enotify.php:21 -msgid "Thank You," -msgstr "Děkujeme, " - -#: ../../include/enotify.php:23 -#, php-format -msgid "%s Administrator" -msgstr "%s Administrátor" - -#: ../../include/enotify.php:64 -#, php-format -msgid "%s " -msgstr "%s " - -#: ../../include/enotify.php:68 -#, php-format -msgid "[Friendica:Notify] New mail received at %s" -msgstr "[Friendica:Upozornění] Obdržena nová zpráva na %s" - -#: ../../include/enotify.php:70 -#, php-format -msgid "%1$s sent you a new private message at %2$s." -msgstr "%1$s Vám poslal novou soukromou zprávu na %2$s." - -#: ../../include/enotify.php:71 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s Vám poslal %2$s." - -#: ../../include/enotify.php:71 -msgid "a private message" -msgstr "soukromá zpráva" - -#: ../../include/enotify.php:72 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Prosím navštivte %s pro zobrazení Vašich soukromých zpráv a možnost na ně odpovědět." - -#: ../../include/enotify.php:124 -#, php-format -msgid "%1$s commented on [url=%2$s]a %3$s[/url]" -msgstr "%1$s okomentoval na [url=%2$s]%3$s[/url]" - -#: ../../include/enotify.php:131 -#, php-format -msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" -msgstr "%1$s okomentoval na [url=%2$s]%3$s's %4$s[/url]" - -#: ../../include/enotify.php:139 -#, php-format -msgid "%1$s commented on [url=%2$s]your %3$s[/url]" -msgstr "%1$s okomentoval na [url=%2$s]Váš %3$s[/url]" - -#: ../../include/enotify.php:149 -#, php-format -msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[Friendica:Upozornění] Komentář ke konverzaci #%1$d od %2$s" - -#: ../../include/enotify.php:150 -#, php-format -msgid "%s commented on an item/conversation you have been following." -msgstr "Uživatel %s okomentoval vámi sledovanou položku/konverzaci." - -#: ../../include/enotify.php:153 ../../include/enotify.php:168 -#: ../../include/enotify.php:181 ../../include/enotify.php:194 -#: ../../include/enotify.php:212 ../../include/enotify.php:225 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Prosím navštivte %s pro zobrazení konverzace a možnosti odpovědět." - -#: ../../include/enotify.php:160 -#, php-format -msgid "[Friendica:Notify] %s posted to your profile wall" -msgstr "[Friendica:Upozornění] %s umístěn na Vaši profilovou zeď" - -#: ../../include/enotify.php:162 -#, php-format -msgid "%1$s posted to your profile wall at %2$s" -msgstr "%1$s přidal příspěvek na Vaši profilovou zeď na %2$s" - -#: ../../include/enotify.php:164 -#, php-format -msgid "%1$s posted to [url=%2$s]your wall[/url]" -msgstr "%1$s napřidáno na [url=%2$s]na Vaši zeď[/url]" - -#: ../../include/enotify.php:175 -#, php-format -msgid "[Friendica:Notify] %s tagged you" -msgstr "[Friendica:Upozornění] %s Vás označil" - -#: ../../include/enotify.php:176 -#, php-format -msgid "%1$s tagged you at %2$s" -msgstr "%1$s Vás označil na %2$s" - -#: ../../include/enotify.php:177 -#, php-format -msgid "%1$s [url=%2$s]tagged you[/url]." -msgstr "%1$s [url=%2$s]Vás označil[/url]." - -#: ../../include/enotify.php:188 -#, php-format -msgid "[Friendica:Notify] %s shared a new post" -msgstr "[Friendica:Notify] %s nasdílel nový příspěvek" - -#: ../../include/enotify.php:189 -#, php-format -msgid "%1$s shared a new post at %2$s" -msgstr "%1$s nasdílel nový příspěvek na %2$s" - -#: ../../include/enotify.php:190 -#, php-format -msgid "%1$s [url=%2$s]shared a post[/url]." -msgstr "%1$s [url=%2$s]nasdílel příspěvek[/url]." - -#: ../../include/enotify.php:202 -#, php-format -msgid "[Friendica:Notify] %1$s poked you" -msgstr "[Friendica:Upozornění] %1$s Vás šťouchnul" - -#: ../../include/enotify.php:203 -#, php-format -msgid "%1$s poked you at %2$s" -msgstr "%1$s Vás šťouchnul na %2$s" - -#: ../../include/enotify.php:204 -#, php-format -msgid "%1$s [url=%2$s]poked you[/url]." -msgstr "Uživatel %1$s [url=%2$s]Vás šťouchnul[/url]." - -#: ../../include/enotify.php:219 -#, php-format -msgid "[Friendica:Notify] %s tagged your post" -msgstr "[Friendica:Upozornění] %s označil Váš příspěvek" - -#: ../../include/enotify.php:220 -#, php-format -msgid "%1$s tagged your post at %2$s" -msgstr "%1$s označil Váš příspěvek na %2$s" - -#: ../../include/enotify.php:221 -#, php-format -msgid "%1$s tagged [url=%2$s]your post[/url]" -msgstr "%1$s označil [url=%2$s]Váš příspěvek[/url]" - -#: ../../include/enotify.php:232 -msgid "[Friendica:Notify] Introduction received" -msgstr "[Friendica:Upozornění] Obdrženo přestavení" - -#: ../../include/enotify.php:233 -#, php-format -msgid "You've received an introduction from '%1$s' at %2$s" -msgstr "Obdržel jste žádost o spojení od '%1$s' na %2$s" - -#: ../../include/enotify.php:234 -#, php-format -msgid "You've received [url=%1$s]an introduction[/url] from %2$s." -msgstr "Obdržel jste [url=%1$s]žádost o spojení[/url] od %2$s." - -#: ../../include/enotify.php:237 ../../include/enotify.php:279 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Můžete navštívit jejich profil na %s" - -#: ../../include/enotify.php:239 -#, php-format -msgid "Please visit %s to approve or reject the introduction." -msgstr "Prosím navštivte %s pro schválení či zamítnutí představení." - -#: ../../include/enotify.php:247 -msgid "[Friendica:Notify] A new person is sharing with you" -msgstr "[Friendica:Upozornění] Nový člověk s vámi sdílí" - -#: ../../include/enotify.php:248 ../../include/enotify.php:249 -#, php-format -msgid "%1$s is sharing with you at %2$s" -msgstr "uživatel %1$s sdílí s vámi ma %2$s" - -#: ../../include/enotify.php:255 -msgid "[Friendica:Notify] You have a new follower" -msgstr "[Friendica:Upozornění] Máte nového následovníka" - -#: ../../include/enotify.php:256 ../../include/enotify.php:257 -#, php-format -msgid "You have a new follower at %2$s : %1$s" -msgstr "Máte nového následovníka na %2$s : %1$s" - -#: ../../include/enotify.php:270 -msgid "[Friendica:Notify] Friend suggestion received" -msgstr "[Friendica:Upozornění] Obdržen návrh na přátelství" - -#: ../../include/enotify.php:271 -#, php-format -msgid "You've received a friend suggestion from '%1$s' at %2$s" -msgstr "Obdržel jste návrh přátelství od '%1$s' na %2$s" - -#: ../../include/enotify.php:272 -#, php-format -msgid "" -"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." -msgstr "Obdržel jste [url=%1$s]návrh přátelství[/url] s %2$s from %3$s." - -#: ../../include/enotify.php:277 -msgid "Name:" -msgstr "Jméno:" - -#: ../../include/enotify.php:278 -msgid "Photo:" -msgstr "Foto:" - -#: ../../include/enotify.php:281 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Prosím navštivte %s pro schválení či zamítnutí doporučení." - -#: ../../include/enotify.php:289 ../../include/enotify.php:302 -msgid "[Friendica:Notify] Connection accepted" -msgstr "[Friendica:Upozornění] Spojení akceptováno" - -#: ../../include/enotify.php:290 ../../include/enotify.php:303 -#, php-format -msgid "'%1$s' has acepted your connection request at %2$s" -msgstr "'%1$s' akceptoval váš požadavek na spojení na %2$s" - -#: ../../include/enotify.php:291 ../../include/enotify.php:304 -#, php-format -msgid "%2$s has accepted your [url=%1$s]connection request[/url]." -msgstr "%2$s akceptoval váš [url=%1$s]požadavek na spojení[/url]." - -#: ../../include/enotify.php:294 -msgid "" -"You are now mutual friends and may exchange status updates, photos, and email\n" -"\twithout restriction." -msgstr "Jste nyní vzájemnými přáteli a můžete si vyměňovat aktualizace statusu, fotografií a emailů\nbez omezení." - -#: ../../include/enotify.php:297 ../../include/enotify.php:311 -#, php-format -msgid "Please visit %s if you wish to make any changes to this relationship." -msgstr "Prosím navštivte %s pokud chcete změnit tento vztah." - -#: ../../include/enotify.php:307 -#, php-format -msgid "" -"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of " -"communication - such as private messaging and some profile interactions. If " -"this is a celebrity or community page, these settings were applied " -"automatically." -msgstr "'%1$s' vás přijal jako \"fanouška\", což omezuje některé formy komunikace - jako jsou soukromé zprávy a některé interakce na profilech. Pokud se jedná o celebritu, případně o komunitní stránky, pak bylo toto nastavení provedeno automaticky.." - -#: ../../include/enotify.php:309 -#, php-format -msgid "" -"'%1$s' may choose to extend this into a two-way or more permissive " -"relationship in the future. " -msgstr "''%1$s' se může rozhodnout rozšířit tento vztah na oboustraný nebo méně restriktivní" - -#: ../../include/enotify.php:322 -msgid "[Friendica System:Notify] registration request" -msgstr "[Systém Friendica :Upozornění] registrační požadavek" - -#: ../../include/enotify.php:323 -#, php-format -msgid "You've received a registration request from '%1$s' at %2$s" -msgstr "Obdržel jste požadavek na registraci od '%1$s' na %2$s" - -#: ../../include/enotify.php:324 -#, php-format -msgid "You've received a [url=%1$s]registration request[/url] from %2$s." -msgstr "Obdržel jste [url=%1$s]požadavek na registraci[/url] od '%2$s'." - -#: ../../include/enotify.php:327 -#, php-format -msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" -msgstr "Plné jméno:\t%1$s\\nUmístění webu:\t%2$s\\nPřihlašovací účet:\t%3$s (%4$s)" - -#: ../../include/enotify.php:330 -#, php-format -msgid "Please visit %s to approve or reject the request." -msgstr "Prosím navštivte %s k odsouhlasení nebo k zamítnutí požadavku." - -#: ../../include/oembed.php:212 -msgid "Embedded content" -msgstr "vložený obsah" - -#: ../../include/oembed.php:221 -msgid "Embedding disabled" -msgstr "Vkládání zakázáno" - -#: ../../include/uimport.php:94 -msgid "Error decoding account file" -msgstr "Chyba dekódování uživatelského účtu" - -#: ../../include/uimport.php:100 -msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "Chyba! V datovém souboru není označení verze! Je to opravdu soubor s účtem Friendica?" - -#: ../../include/uimport.php:116 ../../include/uimport.php:127 -msgid "Error! Cannot check nickname" -msgstr "Chyba! Nelze ověřit přezdívku" - -#: ../../include/uimport.php:120 ../../include/uimport.php:131 -#, php-format -msgid "User '%s' already exists on this server!" -msgstr "Uživatel '%s' již na tomto serveru existuje!" - -#: ../../include/uimport.php:153 -msgid "User creation error" -msgstr "Chyba vytváření uživatele" - -#: ../../include/uimport.php:171 -msgid "User profile creation error" -msgstr "Chyba vytváření uživatelského účtu" - -#: ../../include/uimport.php:220 -#, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "%d kontakt nenaimporován" -msgstr[1] "%d kontaktů nenaimporováno" -msgstr[2] "%d kontakty nenaimporovány" - -#: ../../include/uimport.php:290 -msgid "Done. You can now login with your username and password" -msgstr "Hotovo. Nyní se můžete přihlásit se svými uživatelským účtem a heslem" - -#: ../../index.php:428 -msgid "toggle mobile" -msgstr "přepnout mobil" - -#: ../../view/theme/cleanzero/config.php:82 -#: ../../view/theme/dispy/config.php:72 ../../view/theme/quattro/config.php:66 -#: ../../view/theme/diabook/config.php:150 ../../view/theme/vier/config.php:55 -#: ../../view/theme/duepuntozero/config.php:61 -msgid "Theme settings" -msgstr "Nastavení téma" - -#: ../../view/theme/cleanzero/config.php:83 -msgid "Set resize level for images in posts and comments (width and height)" -msgstr "Nastavit velikost fotek v přízpěvcích a komentářích (šířka a výška)" - -#: ../../view/theme/cleanzero/config.php:84 -#: ../../view/theme/dispy/config.php:73 -#: ../../view/theme/diabook/config.php:151 -msgid "Set font-size for posts and comments" -msgstr "Nastav velikost písma pro přízpěvky a komentáře." - -#: ../../view/theme/cleanzero/config.php:85 -msgid "Set theme width" -msgstr "Nastavení šířku grafické šablony" - -#: ../../view/theme/cleanzero/config.php:86 -#: ../../view/theme/quattro/config.php:68 -msgid "Color scheme" -msgstr "Barevné schéma" - -#: ../../view/theme/dispy/config.php:74 -#: ../../view/theme/diabook/config.php:152 -msgid "Set line-height for posts and comments" -msgstr "Nastav výšku řádku pro přízpěvky a komentáře." - -#: ../../view/theme/dispy/config.php:75 -msgid "Set colour scheme" -msgstr "Nastavit barevné schéma" - -#: ../../view/theme/quattro/config.php:67 -msgid "Alignment" -msgstr "Zarovnání" - -#: ../../view/theme/quattro/config.php:67 -msgid "Left" -msgstr "Vlevo" - -#: ../../view/theme/quattro/config.php:67 -msgid "Center" -msgstr "Uprostřed" - -#: ../../view/theme/quattro/config.php:69 -msgid "Posts font size" -msgstr "Velikost písma u příspěvků" - -#: ../../view/theme/quattro/config.php:70 -msgid "Textareas font size" -msgstr "Velikost písma textů" - -#: ../../view/theme/diabook/config.php:153 -msgid "Set resolution for middle column" -msgstr "Nastav rozlišení pro prostřední sloupec" - -#: ../../view/theme/diabook/config.php:154 -msgid "Set color scheme" -msgstr "Nastavení barevného schematu" - -#: ../../view/theme/diabook/config.php:155 -msgid "Set zoomfactor for Earth Layer" -msgstr "Nastavit přiblížení pro Earth Layer" - -#: ../../view/theme/diabook/config.php:156 -#: ../../view/theme/diabook/theme.php:585 -msgid "Set longitude (X) for Earth Layers" -msgstr "Nastavit zeměpistnou délku (X) pro Earth Layers" - -#: ../../view/theme/diabook/config.php:157 -#: ../../view/theme/diabook/theme.php:586 -msgid "Set latitude (Y) for Earth Layers" -msgstr "Nastavit zeměpistnou šířku (X) pro Earth Layers" - -#: ../../view/theme/diabook/config.php:158 -#: ../../view/theme/diabook/theme.php:130 -#: ../../view/theme/diabook/theme.php:544 -#: ../../view/theme/diabook/theme.php:624 -msgid "Community Pages" -msgstr "Komunitní stránky" - -#: ../../view/theme/diabook/config.php:159 -#: ../../view/theme/diabook/theme.php:579 -#: ../../view/theme/diabook/theme.php:625 -msgid "Earth Layers" -msgstr "Earth Layers" - -#: ../../view/theme/diabook/config.php:160 -#: ../../view/theme/diabook/theme.php:391 -#: ../../view/theme/diabook/theme.php:626 -msgid "Community Profiles" -msgstr "Komunitní profily" - -#: ../../view/theme/diabook/config.php:161 -#: ../../view/theme/diabook/theme.php:599 -#: ../../view/theme/diabook/theme.php:627 -msgid "Help or @NewHere ?" -msgstr "Pomoc nebo @ProNováčky ?" - -#: ../../view/theme/diabook/config.php:162 -#: ../../view/theme/diabook/theme.php:606 -#: ../../view/theme/diabook/theme.php:628 -msgid "Connect Services" -msgstr "Propojené služby" - -#: ../../view/theme/diabook/config.php:163 -#: ../../view/theme/diabook/theme.php:523 -#: ../../view/theme/diabook/theme.php:629 -msgid "Find Friends" -msgstr "Nalézt Přátele" - -#: ../../view/theme/diabook/config.php:164 -#: ../../view/theme/diabook/theme.php:412 -#: ../../view/theme/diabook/theme.php:630 -msgid "Last users" -msgstr "Poslední uživatelé" - -#: ../../view/theme/diabook/config.php:165 -#: ../../view/theme/diabook/theme.php:486 -#: ../../view/theme/diabook/theme.php:631 -msgid "Last photos" -msgstr "Poslední fotografie" - -#: ../../view/theme/diabook/config.php:166 -#: ../../view/theme/diabook/theme.php:441 -#: ../../view/theme/diabook/theme.php:632 -msgid "Last likes" -msgstr "Poslední líbí/nelíbí" - -#: ../../view/theme/diabook/theme.php:125 -msgid "Your contacts" -msgstr "Vaše kontakty" - -#: ../../view/theme/diabook/theme.php:128 -msgid "Your personal photos" -msgstr "Vaše osobní fotky" - -#: ../../view/theme/diabook/theme.php:524 -msgid "Local Directory" -msgstr "Lokální Adresář" - -#: ../../view/theme/diabook/theme.php:584 -msgid "Set zoomfactor for Earth Layers" -msgstr "Nastavit faktor přiblížení pro Earth Layers" - -#: ../../view/theme/diabook/theme.php:622 -msgid "Show/hide boxes at right-hand column:" -msgstr "Zobrazit/skrýt boxy na pravém sloupci:" - -#: ../../view/theme/vier/config.php:56 -msgid "Set style" -msgstr "Nastavit styl" - -#: ../../view/theme/duepuntozero/config.php:45 -msgid "greenzero" -msgstr "zelená nula" - -#: ../../view/theme/duepuntozero/config.php:46 -msgid "purplezero" -msgstr "fialová nula" - -#: ../../view/theme/duepuntozero/config.php:47 -msgid "easterbunny" -msgstr "velikonoční zajíček" - -#: ../../view/theme/duepuntozero/config.php:48 -msgid "darkzero" -msgstr "tmavá nula" - -#: ../../view/theme/duepuntozero/config.php:49 -msgid "comix" -msgstr "komiksová" - -#: ../../view/theme/duepuntozero/config.php:50 -msgid "slackr" -msgstr "flákač" - -#: ../../view/theme/duepuntozero/config.php:62 -msgid "Variations" -msgstr "Variace" diff --git a/view/cs/strings.php b/view/cs/strings.php index 9b38cc8215..9fd5ba8ad8 100644 --- a/view/cs/strings.php +++ b/view/cs/strings.php @@ -5,6 +5,962 @@ function string_plural_select_cs($n){ return ($n==1) ? 0 : ($n>=2 && $n<=4) ? 1 : 2;; }} ; +$a->strings["Submit"] = "Odeslat"; +$a->strings["Theme settings"] = "Nastavení téma"; +$a->strings["Set resize level for images in posts and comments (width and height)"] = "Nastavit velikost fotek v přízpěvcích a komentářích (šířka a výška)"; +$a->strings["Set font-size for posts and comments"] = "Nastav velikost písma pro přízpěvky a komentáře."; +$a->strings["Set theme width"] = "Nastavení šířku grafické šablony"; +$a->strings["Color scheme"] = "Barevné schéma"; +$a->strings["Set style"] = "Nastavit styl"; +$a->strings["default"] = "standardní"; +$a->strings["greenzero"] = "zelená nula"; +$a->strings["purplezero"] = "fialová nula"; +$a->strings["easterbunny"] = "velikonoční zajíček"; +$a->strings["darkzero"] = "tmavá nula"; +$a->strings["comix"] = "komiksová"; +$a->strings["slackr"] = "flákač"; +$a->strings["Variations"] = "Variace"; +$a->strings["don't show"] = "nikdy nezobrazit"; +$a->strings["show"] = "zobrazit"; +$a->strings["Set line-height for posts and comments"] = "Nastav výšku řádku pro přízpěvky a komentáře."; +$a->strings["Set resolution for middle column"] = "Nastav rozlišení pro prostřední sloupec"; +$a->strings["Set color scheme"] = "Nastavení barevného schematu"; +$a->strings["Set zoomfactor for Earth Layer"] = "Nastavit přiblížení pro Earth Layer"; +$a->strings["Set longitude (X) for Earth Layers"] = "Nastavit zeměpistnou délku (X) pro Earth Layers"; +$a->strings["Set latitude (Y) for Earth Layers"] = "Nastavit zeměpistnou šířku (X) pro Earth Layers"; +$a->strings["Community Pages"] = "Komunitní stránky"; +$a->strings["Earth Layers"] = "Earth Layers"; +$a->strings["Community Profiles"] = "Komunitní profily"; +$a->strings["Help or @NewHere ?"] = "Pomoc nebo @ProNováčky ?"; +$a->strings["Connect Services"] = "Propojené služby"; +$a->strings["Find Friends"] = "Nalézt Přátele"; +$a->strings["Last users"] = "Poslední uživatelé"; +$a->strings["Last photos"] = "Poslední fotografie"; +$a->strings["Last likes"] = "Poslední líbí/nelíbí"; +$a->strings["Home"] = "Domů"; +$a->strings["Your posts and conversations"] = "Vaše příspěvky a konverzace"; +$a->strings["Profile"] = "Profil"; +$a->strings["Your profile page"] = "Vaše profilová stránka"; +$a->strings["Contacts"] = "Kontakty"; +$a->strings["Your contacts"] = "Vaše kontakty"; +$a->strings["Photos"] = "Fotografie"; +$a->strings["Your photos"] = "Vaše fotky"; +$a->strings["Events"] = "Události"; +$a->strings["Your events"] = "Vaše události"; +$a->strings["Personal notes"] = "Osobní poznámky"; +$a->strings["Your personal photos"] = "Vaše osobní fotky"; +$a->strings["Community"] = "Komunita"; +$a->strings["event"] = "událost"; +$a->strings["status"] = "Stav"; +$a->strings["photo"] = "fotografie"; +$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s má rád %2\$s' na %3\$s"; +$a->strings["Contact Photos"] = "Fotogalerie kontaktu"; +$a->strings["Profile Photos"] = "Profilové fotografie"; +$a->strings["Local Directory"] = "Lokální Adresář"; +$a->strings["Global Directory"] = "Globální adresář"; +$a->strings["Similar Interests"] = "Podobné zájmy"; +$a->strings["Friend Suggestions"] = "Návrhy přátel"; +$a->strings["Invite Friends"] = "Pozvat přátele"; +$a->strings["Settings"] = "Nastavení"; +$a->strings["Set zoomfactor for Earth Layers"] = "Nastavit faktor přiblížení pro Earth Layers"; +$a->strings["Show/hide boxes at right-hand column:"] = "Zobrazit/skrýt boxy na pravém sloupci:"; +$a->strings["Alignment"] = "Zarovnání"; +$a->strings["Left"] = "Vlevo"; +$a->strings["Center"] = "Uprostřed"; +$a->strings["Posts font size"] = "Velikost písma u příspěvků"; +$a->strings["Textareas font size"] = "Velikost písma textů"; +$a->strings["Set colour scheme"] = "Nastavit barevné schéma"; +$a->strings["You must be logged in to use addons. "] = "Musíte být přihlášeni pro použití rozšíření."; +$a->strings["Not Found"] = "Nenalezen"; +$a->strings["Page not found."] = "Stránka nenalezena"; +$a->strings["Permission denied"] = "Nedostatečné oprávnění"; +$a->strings["Permission denied."] = "Přístup odmítnut."; +$a->strings["toggle mobile"] = "přepnout mobil"; +$a->strings["Do you wish to confirm your identity (%s) with %s"] = ""; +$a->strings["Confirm"] = "Potvrdit"; +$a->strings["Do not confirm"] = "Nepotvrzovat"; +$a->strings["Trust This Site"] = "Důvěřovat tomuto webu"; +$a->strings["No Identifier Sent"] = "Nezaslán žádný identifikátor"; +$a->strings["Requested identity don't match logged in user."] = ""; +$a->strings["Please wait; you are being redirected to <%s>"] = "Čekejte prosím, budete přesměrován na <%s>"; +$a->strings["Delete this item?"] = "Odstranit tuto položku?"; +$a->strings["Comment"] = "Okomentovat"; +$a->strings["show more"] = "zobrazit více"; +$a->strings["show fewer"] = "zobrazit méně"; +$a->strings["Update %s failed. See error logs."] = "Aktualizace %s selhala. Zkontrolujte protokol chyb."; +$a->strings["Create a New Account"] = "Vytvořit nový účet"; +$a->strings["Register"] = "Registrovat"; +$a->strings["Logout"] = "Odhlásit se"; +$a->strings["Login"] = "Přihlásit se"; +$a->strings["Nickname or Email address: "] = "Přezdívka nebo e-mailová adresa:"; +$a->strings["Password: "] = "Heslo: "; +$a->strings["Remember me"] = "Pamatuj si mne"; +$a->strings["Or login using OpenID: "] = "Nebo přihlášení pomocí OpenID: "; +$a->strings["Forgot your password?"] = "Zapomněli jste své heslo?"; +$a->strings["Password Reset"] = "Obnovení hesla"; +$a->strings["Website Terms of Service"] = "Podmínky použití serveru"; +$a->strings["terms of service"] = "podmínky použití"; +$a->strings["Website Privacy Policy"] = "Pravidla ochrany soukromí serveru"; +$a->strings["privacy policy"] = "Ochrana soukromí"; +$a->strings["Requested account is not available."] = "Požadovaný účet není dostupný."; +$a->strings["Requested profile is not available."] = "Požadovaný profil není k dispozici."; +$a->strings["Edit profile"] = "Upravit profil"; +$a->strings["Connect"] = "Spojit"; +$a->strings["Message"] = "Zpráva"; +$a->strings["Profiles"] = "Profily"; +$a->strings["Manage/edit profiles"] = "Spravovat/upravit profily"; +$a->strings["Change profile photo"] = "Změnit profilovou fotografii"; +$a->strings["Create New Profile"] = "Vytvořit nový profil"; +$a->strings["Profile Image"] = "Profilový obrázek"; +$a->strings["visible to everybody"] = "viditelné pro všechny"; +$a->strings["Edit visibility"] = "Upravit viditelnost"; +$a->strings["Location:"] = "Místo:"; +$a->strings["Gender:"] = "Pohlaví:"; +$a->strings["Status:"] = "Status:"; +$a->strings["Homepage:"] = "Domácí stránka:"; +$a->strings["About:"] = "O mě:"; +$a->strings["Network:"] = "Síť:"; +$a->strings["g A l F d"] = "g A l F d"; +$a->strings["F d"] = "d. F"; +$a->strings["[today]"] = "[Dnes]"; +$a->strings["Birthday Reminders"] = "Připomínka narozenin"; +$a->strings["Birthdays this week:"] = "Narozeniny tento týden:"; +$a->strings["[No description]"] = "[Žádný popis]"; +$a->strings["Event Reminders"] = "Připomenutí událostí"; +$a->strings["Events this week:"] = "Události tohoto týdne:"; +$a->strings["Status"] = "Stav"; +$a->strings["Status Messages and Posts"] = "Statusové zprávy a příspěvky "; +$a->strings["Profile Details"] = "Detaily profilu"; +$a->strings["Photo Albums"] = "Fotoalba"; +$a->strings["Videos"] = "Videa"; +$a->strings["Events and Calendar"] = "Události a kalendář"; +$a->strings["Personal Notes"] = "Osobní poznámky"; +$a->strings["Only You Can See This"] = "Toto můžete vidět jen Vy"; +$a->strings["General Features"] = "Obecné funkčnosti"; +$a->strings["Multiple Profiles"] = "Vícenásobné profily"; +$a->strings["Ability to create multiple profiles"] = "Schopnost vytvořit vícenásobné profily"; +$a->strings["Post Composition Features"] = "Nastavení vytváření příspěvků"; +$a->strings["Richtext Editor"] = "Richtext Editor"; +$a->strings["Enable richtext editor"] = "Povolit richtext editor"; +$a->strings["Post Preview"] = "Náhled příspěvku"; +$a->strings["Allow previewing posts and comments before publishing them"] = "Povolit náhledy příspěvků a komentářů před jejich zveřejněním"; +$a->strings["Auto-mention Forums"] = "Automaticky zmíněná Fóra"; +$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = "Přidat/odebrat zmínku, když stránka fóra je označena/odznačena v ACL okně"; +$a->strings["Network Sidebar Widgets"] = "Síťové postranní widgety"; +$a->strings["Search by Date"] = "Vyhledávat dle Data"; +$a->strings["Ability to select posts by date ranges"] = "Možnost označit příspěvky dle časového intervalu"; +$a->strings["Group Filter"] = "Skupinový Filtr"; +$a->strings["Enable widget to display Network posts only from selected group"] = "Povolit widget pro zobrazení příspěvků v Síti pouze ze zvolené skupiny"; +$a->strings["Network Filter"] = "Síťový Filtr"; +$a->strings["Enable widget to display Network posts only from selected network"] = "Povolit widget pro zobrazení příspěvků v Síti pouze ze zvolené sítě"; +$a->strings["Saved Searches"] = "Uložená hledání"; +$a->strings["Save search terms for re-use"] = "Uložit kritéria vyhledávání pro znovupoužití"; +$a->strings["Network Tabs"] = "Síťové záložky"; +$a->strings["Network Personal Tab"] = "Osobní síťový záložka "; +$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Povolit záložku pro zobrazení pouze síťových příspěvků, na které jste reagoval "; +$a->strings["Network New Tab"] = "Nová záložka síť"; +$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Povolit záložku pro zobrazení pouze nových příspěvků (za posledních 12 hodin)"; +$a->strings["Network Shared Links Tab"] = "záložka Síťové sdílené odkazy "; +$a->strings["Enable tab to display only Network posts with links in them"] = "Povolit záložky pro zobrazování pouze Síťových příspěvků s vazbou na ně"; +$a->strings["Post/Comment Tools"] = "Nástroje Příspěvků/Komentářů"; +$a->strings["Multiple Deletion"] = "Násobné mazání"; +$a->strings["Select and delete multiple posts/comments at once"] = "Označit a smazat více "; +$a->strings["Edit Sent Posts"] = "Editovat Odeslané příspěvky"; +$a->strings["Edit and correct posts and comments after sending"] = "Editovat a opravit příspěvky a komentáře po odeslání"; +$a->strings["Tagging"] = "Štítkování"; +$a->strings["Ability to tag existing posts"] = "Schopnost přidat štítky ke stávajícím příspvěkům"; +$a->strings["Post Categories"] = "Kategorie příspěvků"; +$a->strings["Add categories to your posts"] = "Přidat kategorie k Vašim příspěvkům"; +$a->strings["Saved Folders"] = "Uložené složky"; +$a->strings["Ability to file posts under folders"] = "Možnost řadit příspěvky do složek"; +$a->strings["Dislike Posts"] = "Označit příspěvky jako neoblíbené"; +$a->strings["Ability to dislike posts/comments"] = "Možnost označit příspěvky/komentáře jako neoblíbené"; +$a->strings["Star Posts"] = "Příspěvky s hvězdou"; +$a->strings["Ability to mark special posts with a star indicator"] = "Možnost označit příspěvky s indikátorem hvězdy"; +$a->strings["Mute Post Notifications"] = "Utlumit upozornění na přísvěvky"; +$a->strings["Ability to mute notifications for a thread"] = "Možnost stlumit upozornění pro vlákno"; +$a->strings["%s's birthday"] = "%s má narozeniny"; +$a->strings["Happy Birthday %s"] = "Veselé narozeniny %s"; +$a->strings["[Name Withheld]"] = "[Jméno odepřeno]"; +$a->strings["Item not found."] = "Položka nenalezena."; +$a->strings["Do you really want to delete this item?"] = "Opravdu chcete smazat tuto položku?"; +$a->strings["Yes"] = "Ano"; +$a->strings["Cancel"] = "Zrušit"; +$a->strings["Archives"] = "Archív"; +$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Dříve smazaná skupina s tímto jménem byla obnovena. Stávající oprávnění může ovlivnit tuto skupinu a její budoucí členy. Pokud to není to, co jste chtěli, vytvořte, prosím, další skupinu s jiným názvem."; +$a->strings["Default privacy group for new contacts"] = "Defaultní soukromá skrupina pro nové kontakty."; +$a->strings["Everybody"] = "Všichni"; +$a->strings["edit"] = "editovat"; +$a->strings["Groups"] = "Skupiny"; +$a->strings["Edit group"] = "Editovat skupinu"; +$a->strings["Create a new group"] = "Vytvořit novou skupinu"; +$a->strings["Contacts not in any group"] = "Kontakty, které nejsou v žádné skupině"; +$a->strings["add"] = "přidat"; +$a->strings["Wall Photos"] = "Fotografie na zdi"; +$a->strings["Cannot locate DNS info for database server '%s'"] = "Nelze nalézt záznam v DNS pro databázový server '%s'"; +$a->strings["Add New Contact"] = "Přidat nový kontakt"; +$a->strings["Enter address or web location"] = "Zadejte adresu nebo umístění webu"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Příklad: jan@příklad.cz, http://příklad.cz/jana"; +$a->strings["%d invitation available"] = array( + 0 => "Pozvánka %d k dispozici", + 1 => "Pozvánky %d k dispozici", + 2 => "Pozvánky %d k dispozici", +); +$a->strings["Find People"] = "Nalézt lidi"; +$a->strings["Enter name or interest"] = "Zadejte jméno nebo zájmy"; +$a->strings["Connect/Follow"] = "Připojit / Následovat"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "Příklady: Robert Morgenstein, rybaření"; +$a->strings["Find"] = "Najít"; +$a->strings["Random Profile"] = "Náhodný Profil"; +$a->strings["Networks"] = "Sítě"; +$a->strings["All Networks"] = "Všechny sítě"; +$a->strings["Everything"] = "Všechno"; +$a->strings["Categories"] = "Kategorie"; +$a->strings["%d contact in common"] = array( + 0 => "%d sdílený kontakt", + 1 => "%d sdílených kontaktů", + 2 => "%d sdílených kontaktů", +); +$a->strings["Friendica Notification"] = "Friendica Notifikace"; +$a->strings["Thank You,"] = "Děkujeme, "; +$a->strings["%s Administrator"] = "%s Administrátor"; +$a->strings["noreply"] = "neodpovídat"; +$a->strings["%s "] = "%s "; +$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Upozornění] Obdržena nová zpráva na %s"; +$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s Vám poslal novou soukromou zprávu na %2\$s."; +$a->strings["%1\$s sent you %2\$s."] = "%1\$s Vám poslal %2\$s."; +$a->strings["a private message"] = "soukromá zpráva"; +$a->strings["Please visit %s to view and/or reply to your private messages."] = "Prosím navštivte %s pro zobrazení Vašich soukromých zpráv a možnost na ně odpovědět."; +$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s okomentoval na [url=%2\$s]%3\$s[/url]"; +$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s okomentoval na [url=%2\$s]%3\$s's %4\$s[/url]"; +$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s okomentoval na [url=%2\$s]Váš %3\$s[/url]"; +$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Upozornění] Komentář ke konverzaci #%1\$d od %2\$s"; +$a->strings["%s commented on an item/conversation you have been following."] = "Uživatel %s okomentoval vámi sledovanou položku/konverzaci."; +$a->strings["Please visit %s to view and/or reply to the conversation."] = "Prosím navštivte %s pro zobrazení konverzace a možnosti odpovědět."; +$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Upozornění] %s umístěn na Vaši profilovou zeď"; +$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s přidal příspěvek na Vaši profilovou zeď na %2\$s"; +$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s napřidáno na [url=%2\$s]na Vaši zeď[/url]"; +$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Upozornění] %s Vás označil"; +$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s Vás označil na %2\$s"; +$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]Vás označil[/url]."; +$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Notify] %s nasdílel nový příspěvek"; +$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s nasdílel nový příspěvek na %2\$s"; +$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]nasdílel příspěvek[/url]."; +$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Upozornění] %1\$s Vás šťouchnul"; +$a->strings["%1\$s poked you at %2\$s"] = "%1\$s Vás šťouchnul na %2\$s"; +$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "Uživatel %1\$s [url=%2\$s]Vás šťouchnul[/url]."; +$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Upozornění] %s označil Váš příspěvek"; +$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s označil Váš příspěvek na %2\$s"; +$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s označil [url=%2\$s]Váš příspěvek[/url]"; +$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Upozornění] Obdrženo přestavení"; +$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Obdržel jste žádost o spojení od '%1\$s' na %2\$s"; +$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Obdržel jste [url=%1\$s]žádost o spojení[/url] od %2\$s."; +$a->strings["You may visit their profile at %s"] = "Můžete navštívit jejich profil na %s"; +$a->strings["Please visit %s to approve or reject the introduction."] = "Prosím navštivte %s pro schválení či zamítnutí představení."; +$a->strings["[Friendica:Notify] A new person is sharing with you"] = "[Friendica:Upozornění] Nový člověk s vámi sdílí"; +$a->strings["%1\$s is sharing with you at %2\$s"] = "uživatel %1\$s sdílí s vámi ma %2\$s"; +$a->strings["[Friendica:Notify] You have a new follower"] = "[Friendica:Upozornění] Máte nového následovníka"; +$a->strings["You have a new follower at %2\$s : %1\$s"] = "Máte nového následovníka na %2\$s : %1\$s"; +$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Upozornění] Obdržen návrh na přátelství"; +$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Obdržel jste návrh přátelství od '%1\$s' na %2\$s"; +$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Obdržel jste [url=%1\$s]návrh přátelství[/url] s %2\$s from %3\$s."; +$a->strings["Name:"] = "Jméno:"; +$a->strings["Photo:"] = "Foto:"; +$a->strings["Please visit %s to approve or reject the suggestion."] = "Prosím navštivte %s pro schválení či zamítnutí doporučení."; +$a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica:Upozornění] Spojení akceptováno"; +$a->strings["'%1\$s' has acepted your connection request at %2\$s"] = "'%1\$s' akceptoval váš požadavek na spojení na %2\$s"; +$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$s akceptoval váš [url=%1\$s]požadavek na spojení[/url]."; +$a->strings["You are now mutual friends and may exchange status updates, photos, and email\n\twithout restriction."] = "Jste nyní vzájemnými přáteli a můžete si vyměňovat aktualizace statusu, fotografií a emailů\nbez omezení."; +$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Prosím navštivte %s pokud chcete změnit tento vztah."; +$a->strings["'%1\$s' has chosen to accept you a \"fan\", which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = "'%1\$s' vás přijal jako \"fanouška\", což omezuje některé formy komunikace - jako jsou soukromé zprávy a některé interakce na profilech. Pokud se jedná o celebritu, případně o komunitní stránky, pak bylo toto nastavení provedeno automaticky.."; +$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future. "] = "''%1\$s' se může rozhodnout rozšířit tento vztah na oboustraný nebo méně restriktivní"; +$a->strings["[Friendica System:Notify] registration request"] = "[Systém Friendica :Upozornění] registrační požadavek"; +$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Obdržel jste požadavek na registraci od '%1\$s' na %2\$s"; +$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Obdržel jste [url=%1\$s]požadavek na registraci[/url] od '%2\$s'."; +$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Plné jméno:\t%1\$s\\nUmístění webu:\t%2\$s\\nPřihlašovací účet:\t%3\$s (%4\$s)"; +$a->strings["Please visit %s to approve or reject the request."] = "Prosím navštivte %s k odsouhlasení nebo k zamítnutí požadavku."; +$a->strings["User not found."] = "Uživatel nenalezen"; +$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "Bylo dosaženo denního limitu %d odeslaných příspěvků. Příspěvek byl odmítnut."; +$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Bylo týdenního limitu %d odeslaných příspěvků. Příspěvek byl odmítnut."; +$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "Bylo dosaženo měsíčního limitu %d odeslaných příspěvků. Příspěvek byl odmítnut."; +$a->strings["There is no status with this id."] = "Není tu žádný status s tímto id."; +$a->strings["There is no conversation with this id."] = "Nemáme žádnou konverzaci s tímto id."; +$a->strings["Invalid request."] = "Neplatný požadavek."; +$a->strings["Invalid item."] = "Neplatná položka."; +$a->strings["Invalid action. "] = "Neplatná akce"; +$a->strings["DB error"] = "DB chyba"; +$a->strings["view full size"] = "zobrazit v plné velikosti"; +$a->strings[" on Last.fm"] = " na Last.fm"; +$a->strings["Full Name:"] = "Celé jméno:"; +$a->strings["j F, Y"] = "j F, Y"; +$a->strings["j F"] = "j F"; +$a->strings["Birthday:"] = "Narozeniny:"; +$a->strings["Age:"] = "Věk:"; +$a->strings["for %1\$d %2\$s"] = "pro %1\$d %2\$s"; +$a->strings["Sexual Preference:"] = "Sexuální preference:"; +$a->strings["Hometown:"] = "Rodné město"; +$a->strings["Tags:"] = "Štítky:"; +$a->strings["Political Views:"] = "Politické přesvědčení:"; +$a->strings["Religion:"] = "Náboženství:"; +$a->strings["Hobbies/Interests:"] = "Koníčky/zájmy:"; +$a->strings["Likes:"] = "Líbí se:"; +$a->strings["Dislikes:"] = "Nelibí se:"; +$a->strings["Contact information and Social Networks:"] = "Kontaktní informace a sociální sítě:"; +$a->strings["Musical interests:"] = "Hudební vkus:"; +$a->strings["Books, literature:"] = "Knihy, literatura:"; +$a->strings["Television:"] = "Televize:"; +$a->strings["Film/dance/culture/entertainment:"] = "Film/tanec/kultura/zábava:"; +$a->strings["Love/Romance:"] = "Láska/romance"; +$a->strings["Work/employment:"] = "Práce/zaměstnání:"; +$a->strings["School/education:"] = "Škola/vzdělávání:"; +$a->strings["Nothing new here"] = "Zde není nic nového"; +$a->strings["Clear notifications"] = "Smazat notifikace"; +$a->strings["End this session"] = "Konec této relace"; +$a->strings["Your videos"] = "Vaše videa"; +$a->strings["Your personal notes"] = "Vaše osobní poznámky"; +$a->strings["Sign in"] = "Přihlásit se"; +$a->strings["Home Page"] = "Domácí stránka"; +$a->strings["Create an account"] = "Vytvořit účet"; +$a->strings["Help"] = "Nápověda"; +$a->strings["Help and documentation"] = "Nápověda a dokumentace"; +$a->strings["Apps"] = "Aplikace"; +$a->strings["Addon applications, utilities, games"] = "Doplňkové aplikace, nástroje, hry"; +$a->strings["Search"] = "Vyhledávání"; +$a->strings["Search site content"] = "Hledání na stránkách tohoto webu"; +$a->strings["Conversations on this site"] = "Konverzace na tomto webu"; +$a->strings["Conversations on the network"] = "Konverzace v síti"; +$a->strings["Directory"] = "Adresář"; +$a->strings["People directory"] = "Adresář"; +$a->strings["Information"] = "Informace"; +$a->strings["Information about this friendica instance"] = "Informace o této instanci Friendica"; +$a->strings["Network"] = "Síť"; +$a->strings["Conversations from your friends"] = "Konverzace od Vašich přátel"; +$a->strings["Network Reset"] = "Síťový Reset"; +$a->strings["Load Network page with no filters"] = "Načíst stránku Síť bez filtrů"; +$a->strings["Introductions"] = "Představení"; +$a->strings["Friend Requests"] = "Žádosti přátel"; +$a->strings["Notifications"] = "Upozornění"; +$a->strings["See all notifications"] = "Zobrazit všechny upozornění"; +$a->strings["Mark all system notifications seen"] = "Označit všechny upozornění systému jako přečtené"; +$a->strings["Messages"] = "Zprávy"; +$a->strings["Private mail"] = "Soukromá pošta"; +$a->strings["Inbox"] = "Doručená pošta"; +$a->strings["Outbox"] = "Odeslaná pošta"; +$a->strings["New Message"] = "Nová zpráva"; +$a->strings["Manage"] = "Spravovat"; +$a->strings["Manage other pages"] = "Spravovat jiné stránky"; +$a->strings["Delegations"] = "Delegace"; +$a->strings["Delegate Page Management"] = "Správa delegátů stránky"; +$a->strings["Account settings"] = "Nastavení účtu"; +$a->strings["Manage/Edit Profiles"] = "Spravovat/Editovat Profily"; +$a->strings["Manage/edit friends and contacts"] = "Spravovat/upravit přátelé a kontakty"; +$a->strings["Admin"] = "Administrace"; +$a->strings["Site setup and configuration"] = "Nastavení webu a konfigurace"; +$a->strings["Navigation"] = "Navigace"; +$a->strings["Site map"] = "Mapa webu"; +$a->strings["Click here to upgrade."] = "Klikněte zde pro aktualizaci."; +$a->strings["This action exceeds the limits set by your subscription plan."] = "Tato akce překročí limit nastavené Vaším předplatným."; +$a->strings["This action is not available under your subscription plan."] = "Tato akce není v rámci Vašeho předplatného dostupná."; +$a->strings["Disallowed profile URL."] = "Nepovolené URL profilu."; +$a->strings["Connect URL missing."] = "Chybí URL adresa."; +$a->strings["This site is not configured to allow communications with other networks."] = "Tento web není nakonfigurován tak, aby umožňoval komunikaci s ostatními sítěmi."; +$a->strings["No compatible communication protocols or feeds were discovered."] = "Nenalezen žádný kompatibilní komunikační protokol nebo kanál."; +$a->strings["The profile address specified does not provide adequate information."] = "Uvedená adresa profilu neposkytuje dostatečné informace."; +$a->strings["An author or name was not found."] = "Autor nebo jméno nenalezeno"; +$a->strings["No browser URL could be matched to this address."] = "Této adrese neodpovídá žádné URL prohlížeče."; +$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Není možné namapovat adresu identity ve stylu @ s žádným možným protokolem ani emailovým kontaktem."; +$a->strings["Use mailto: in front of address to force email check."] = "Použite mailo: před adresou k vynucení emailové kontroly."; +$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Zadaná adresa profilu patří do sítě, která byla na tomto serveru zakázána."; +$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Omezený profil. Tato osoba nebude schopna od Vás přijímat přímé / osobní sdělení."; +$a->strings["Unable to retrieve contact information."] = "Nepodařilo se získat kontaktní informace."; +$a->strings["following"] = "následující"; +$a->strings["Error decoding account file"] = "Chyba dekódování uživatelského účtu"; +$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Chyba! V datovém souboru není označení verze! Je to opravdu soubor s účtem Friendica?"; +$a->strings["Error! Cannot check nickname"] = "Chyba! Nelze ověřit přezdívku"; +$a->strings["User '%s' already exists on this server!"] = "Uživatel '%s' již na tomto serveru existuje!"; +$a->strings["User creation error"] = "Chyba vytváření uživatele"; +$a->strings["User profile creation error"] = "Chyba vytváření uživatelského účtu"; +$a->strings["%d contact not imported"] = array( + 0 => "%d kontakt nenaimporován", + 1 => "%d kontaktů nenaimporováno", + 2 => "%d kontakty nenaimporovány", +); +$a->strings["Done. You can now login with your username and password"] = "Hotovo. Nyní se můžete přihlásit se svými uživatelským účtem a heslem"; +$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; +$a->strings["Starts:"] = "Začíná:"; +$a->strings["Finishes:"] = "Končí:"; +$a->strings["stopped following"] = "následování zastaveno"; +$a->strings["Poke"] = "Šťouchnout"; +$a->strings["View Status"] = "Zobrazit Status"; +$a->strings["View Profile"] = "Zobrazit Profil"; +$a->strings["View Photos"] = "Zobrazit Fotky"; +$a->strings["Network Posts"] = "Zobrazit Příspěvky sítě"; +$a->strings["Edit Contact"] = "Editovat Kontakty"; +$a->strings["Drop Contact"] = "Odstranit kontakt"; +$a->strings["Send PM"] = "Poslat soukromou zprávu"; +$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."] = "\n\t\t\tThe friendica vývojáři uvolnili nedávno aktualizaci %s,\n\t\t\tale při pokusu o její instalaci se něco velmi nepovedlo.\n\t\t\tJe třeba to opravit a já to sám nedokážu. Prosím kontaktuj\n\t\t\tfriendica vývojáře, pokud mi s tím nepomůžeš ty sám. Moje databáze může být poškozena."; +$a->strings["The error message is\n[pre]%s[/pre]"] = "Chybová zpráva je\n[pre]%s[/pre]"; +$a->strings["Errors encountered creating database tables."] = "Při vytváření databázových tabulek došlo k chybám."; +$a->strings["Errors encountered performing database changes."] = "Při provádění databázových změn došlo k chybám."; +$a->strings["Miscellaneous"] = "Různé"; +$a->strings["year"] = "rok"; +$a->strings["month"] = "měsíc"; +$a->strings["day"] = "den"; +$a->strings["never"] = "nikdy"; +$a->strings["less than a second ago"] = "méně než před sekundou"; +$a->strings["years"] = "let"; +$a->strings["months"] = "měsíců"; +$a->strings["week"] = "týdnem"; +$a->strings["weeks"] = "týdny"; +$a->strings["days"] = "dnů"; +$a->strings["hour"] = "hodina"; +$a->strings["hours"] = "hodin"; +$a->strings["minute"] = "minuta"; +$a->strings["minutes"] = "minut"; +$a->strings["second"] = "sekunda"; +$a->strings["seconds"] = "sekund"; +$a->strings["%1\$d %2\$s ago"] = "před %1\$d %2\$s"; +$a->strings["[no subject]"] = "[bez předmětu]"; +$a->strings["(no subject)"] = "(Bez předmětu)"; +$a->strings["Unknown | Not categorised"] = "Neznámé | Nezařazeno"; +$a->strings["Block immediately"] = "Okamžitě blokovat "; +$a->strings["Shady, spammer, self-marketer"] = "pochybný, spammer, self-makerter"; +$a->strings["Known to me, but no opinion"] = "Znám ho ale, ale bez rozhodnutí"; +$a->strings["OK, probably harmless"] = "OK, pravděpodobně neškodný"; +$a->strings["Reputable, has my trust"] = "Renomovaný, má mou důvěru"; +$a->strings["Frequently"] = "Často"; +$a->strings["Hourly"] = "každou hodinu"; +$a->strings["Twice daily"] = "Dvakrát denně"; +$a->strings["Daily"] = "denně"; +$a->strings["Weekly"] = "Týdenně"; +$a->strings["Monthly"] = "Měsíčně"; +$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!"] = "Zot!"; +$a->strings["LinkedIn"] = "LinkedIn"; +$a->strings["XMPP/IM"] = "XMPP/IM"; +$a->strings["MySpace"] = "MySpace"; +$a->strings["Google+"] = "Google+"; +$a->strings["pump.io"] = "pump.io"; +$a->strings["Twitter"] = "Twitter"; +$a->strings["Diaspora Connector"] = "Diaspora konektor"; +$a->strings["Statusnet"] = "Statusnet"; +$a->strings["App.net"] = "App.net"; +$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s je nyní přítel s %2\$s"; +$a->strings["Sharing notification from Diaspora network"] = "Sdílení oznámení ze sítě Diaspora"; +$a->strings["Attachments:"] = "Přílohy:"; +$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s nemá rád %2\$s na %3\$s"; +$a->strings["%1\$s poked %2\$s"] = "%1\$s šťouchnul %2\$s"; +$a->strings["%1\$s is currently %2\$s"] = "%1\$s je právě %2\$s"; +$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s označen uživatelem %2\$s %3\$s s %4\$s"; +$a->strings["post/item"] = "příspěvek/položka"; +$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "uživatel %1\$s označil %2\$s's %3\$s jako oblíbeného"; +$a->strings["Select"] = "Vybrat"; +$a->strings["Delete"] = "Odstranit"; +$a->strings["View %s's profile @ %s"] = "Zobrazit profil uživatele %s na %s"; +$a->strings["Categories:"] = "Kategorie:"; +$a->strings["Filed under:"] = "Vyplněn pod:"; +$a->strings["%s from %s"] = "%s od %s"; +$a->strings["View in context"] = "Pohled v kontextu"; +$a->strings["Please wait"] = "Čekejte prosím"; +$a->strings["remove"] = "odstranit"; +$a->strings["Delete Selected Items"] = "Smazat vybrané položky"; +$a->strings["Follow Thread"] = "Následovat vlákno"; +$a->strings["%s likes this."] = "%s se to líbí."; +$a->strings["%s doesn't like this."] = "%s se to nelíbí."; +$a->strings["%2\$d people like this"] = "%2\$d lidem se to líbí"; +$a->strings["%2\$d people don't like this"] = "%2\$d lidem se to nelíbí"; +$a->strings["and"] = "a"; +$a->strings[", and %d other people"] = ", a %d dalších lidí"; +$a->strings["%s like this."] = "%s se to líbí."; +$a->strings["%s don't like this."] = "%s se to nelíbí."; +$a->strings["Visible to everybody"] = "Viditelné pro všechny"; +$a->strings["Please enter a link URL:"] = "Zadejte prosím URL odkaz:"; +$a->strings["Please enter a video link/URL:"] = "Prosím zadejte URL adresu videa:"; +$a->strings["Please enter an audio link/URL:"] = "Prosím zadejte URL adresu zvukového záznamu:"; +$a->strings["Tag term:"] = "Štítek:"; +$a->strings["Save to Folder:"] = "Uložit do složky:"; +$a->strings["Where are you right now?"] = "Kde právě jste?"; +$a->strings["Delete item(s)?"] = "Smazat položku(y)?"; +$a->strings["Post to Email"] = "Poslat příspěvek na e-mail"; +$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Kontektory deaktivovány, od \"%s\" je aktivován."; +$a->strings["Hide your profile details from unknown viewers?"] = "Skrýt Vaše profilové detaily před neznámými uživateli?"; +$a->strings["Share"] = "Sdílet"; +$a->strings["Upload photo"] = "Nahrát fotografii"; +$a->strings["upload photo"] = "nahrát fotky"; +$a->strings["Attach file"] = "Přiložit soubor"; +$a->strings["attach file"] = "přidat soubor"; +$a->strings["Insert web link"] = "Vložit webový odkaz"; +$a->strings["web link"] = "webový odkaz"; +$a->strings["Insert video link"] = "Zadejte odkaz na video"; +$a->strings["video link"] = "odkaz na video"; +$a->strings["Insert audio link"] = "Zadejte odkaz na zvukový záznam"; +$a->strings["audio link"] = "odkaz na audio"; +$a->strings["Set your location"] = "Nastavte vaši polohu"; +$a->strings["set location"] = "nastavit místo"; +$a->strings["Clear browser location"] = "Odstranit adresu v prohlížeči"; +$a->strings["clear location"] = "vymazat místo"; +$a->strings["Set title"] = "Nastavit titulek"; +$a->strings["Categories (comma-separated list)"] = "Kategorie (čárkou oddělený seznam)"; +$a->strings["Permission settings"] = "Nastavení oprávnění"; +$a->strings["permissions"] = "oprávnění"; +$a->strings["CC: email addresses"] = "skrytá kopie: e-mailové adresy"; +$a->strings["Public post"] = "Veřejný příspěvek"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Příklad: bob@example.com, mary@example.com"; +$a->strings["Preview"] = "Náhled"; +$a->strings["Post to Groups"] = "Zveřejnit na Groups"; +$a->strings["Post to Contacts"] = "Zveřejnit na Groups"; +$a->strings["Private post"] = "Soukromý příspěvek"; +$a->strings["newer"] = "novější"; +$a->strings["older"] = "starší"; +$a->strings["prev"] = "předchozí"; +$a->strings["first"] = "první"; +$a->strings["last"] = "poslední"; +$a->strings["next"] = "další"; +$a->strings["Loading more entries..."] = "Načítání více záznamů..."; +$a->strings["The end"] = "Konec"; +$a->strings["No contacts"] = "Žádné kontakty"; +$a->strings["%d Contact"] = array( + 0 => "%d kontakt", + 1 => "%d kontaktů", + 2 => "%d kontaktů", +); +$a->strings["View Contacts"] = "Zobrazit kontakty"; +$a->strings["Save"] = "Uložit"; +$a->strings["poke"] = "šťouchnout"; +$a->strings["poked"] = "šťouchnut"; +$a->strings["ping"] = "cinknout"; +$a->strings["pinged"] = "cinkut"; +$a->strings["prod"] = "pobídnout"; +$a->strings["prodded"] = "pobídnut"; +$a->strings["slap"] = "dát facku"; +$a->strings["slapped"] = "být uhozen"; +$a->strings["finger"] = "osahávat"; +$a->strings["fingered"] = "osaháván"; +$a->strings["rebuff"] = "odmítnout"; +$a->strings["rebuffed"] = "odmítnut"; +$a->strings["happy"] = "šťasný"; +$a->strings["sad"] = "smutný"; +$a->strings["mellow"] = "jemný"; +$a->strings["tired"] = "unavený"; +$a->strings["perky"] = "emergický"; +$a->strings["angry"] = "nazlobený"; +$a->strings["stupified"] = "otupen"; +$a->strings["puzzled"] = "popletený"; +$a->strings["interested"] = "zajímavý"; +$a->strings["bitter"] = "hořký"; +$a->strings["cheerful"] = "radnostný"; +$a->strings["alive"] = "naživu"; +$a->strings["annoyed"] = "otráven"; +$a->strings["anxious"] = "znepokojený"; +$a->strings["cranky"] = "mrzutý"; +$a->strings["disturbed"] = "vyrušen"; +$a->strings["frustrated"] = "frustrovaný"; +$a->strings["motivated"] = "motivovaný"; +$a->strings["relaxed"] = "uvolněný"; +$a->strings["surprised"] = "překvapený"; +$a->strings["Monday"] = "Pondělí"; +$a->strings["Tuesday"] = "Úterý"; +$a->strings["Wednesday"] = "Středa"; +$a->strings["Thursday"] = "Čtvrtek"; +$a->strings["Friday"] = "Pátek"; +$a->strings["Saturday"] = "Sobota"; +$a->strings["Sunday"] = "Neděle"; +$a->strings["January"] = "Ledna"; +$a->strings["February"] = "Února"; +$a->strings["March"] = "Března"; +$a->strings["April"] = "Dubna"; +$a->strings["May"] = "Května"; +$a->strings["June"] = "Června"; +$a->strings["July"] = "Července"; +$a->strings["August"] = "Srpna"; +$a->strings["September"] = "Září"; +$a->strings["October"] = "Října"; +$a->strings["November"] = "Listopadu"; +$a->strings["December"] = "Prosinec"; +$a->strings["View Video"] = "Zobrazit video"; +$a->strings["bytes"] = "bytů"; +$a->strings["Click to open/close"] = "Klikněte pro otevření/zavření"; +$a->strings["link to source"] = "odkaz na zdroj"; +$a->strings["Select an alternate language"] = "Vyběr alternativního jazyka"; +$a->strings["activity"] = "aktivita"; +$a->strings["comment"] = array( + 0 => "", + 1 => "", + 2 => "komentář", +); +$a->strings["post"] = "příspěvek"; +$a->strings["Item filed"] = "Položka vyplněna"; +$a->strings["Logged out."] = "Odhlášen."; +$a->strings["Login failed."] = "Přihlášení se nezdařilo."; +$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Zaznamenali jsme problém s Vaším přihlášením prostřednictvím Vámi zadaným OpenID. Prosím ověřte si, že jste ID zadali správně. "; +$a->strings["The error message was:"] = "Chybová zpráva byla:"; +$a->strings["Image/photo"] = "Obrázek/fotografie"; +$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s"; +$a->strings["%s wrote the following post"] = "%s napsal následující příspěvek"; +$a->strings["$1 wrote:"] = "$1 napsal:"; +$a->strings["Encrypted content"] = "Šifrovaný obsah"; +$a->strings["Welcome "] = "Vítejte "; +$a->strings["Please upload a profile photo."] = "Prosím nahrejte profilovou fotografii"; +$a->strings["Welcome back "] = "Vítejte zpět "; +$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."] = "Formulářový bezpečnostní token nebyl správný. To pravděpodobně nastalo kvůli tom, že formulář byl otevřen příliš dlouho (>3 hodiny) před jeho odesláním."; +$a->strings["Embedded content"] = "vložený obsah"; +$a->strings["Embedding disabled"] = "Vkládání zakázáno"; +$a->strings["Male"] = "Muž"; +$a->strings["Female"] = "Žena"; +$a->strings["Currently Male"] = "V současné době muž"; +$a->strings["Currently Female"] = "V současné době žena"; +$a->strings["Mostly Male"] = "Většinou muž"; +$a->strings["Mostly Female"] = "Většinou žena"; +$a->strings["Transgender"] = "Transgender"; +$a->strings["Intersex"] = "Intersex"; +$a->strings["Transsexual"] = "Transexuál"; +$a->strings["Hermaphrodite"] = "Hermafrodit"; +$a->strings["Neuter"] = "Neutrál"; +$a->strings["Non-specific"] = "Nespecifikováno"; +$a->strings["Other"] = "Jiné"; +$a->strings["Undecided"] = "Nerozhodnuto"; +$a->strings["Males"] = "Muži"; +$a->strings["Females"] = "Ženy"; +$a->strings["Gay"] = "Gay"; +$a->strings["Lesbian"] = "Lesbička"; +$a->strings["No Preference"] = "Bez preferencí"; +$a->strings["Bisexual"] = "Bisexuál"; +$a->strings["Autosexual"] = "Autosexuál"; +$a->strings["Abstinent"] = "Abstinent"; +$a->strings["Virgin"] = "panic/panna"; +$a->strings["Deviant"] = "Deviant"; +$a->strings["Fetish"] = "Fetišista"; +$a->strings["Oodles"] = "Hodně"; +$a->strings["Nonsexual"] = "Nesexuální"; +$a->strings["Single"] = "Svobodný"; +$a->strings["Lonely"] = "Osamnělý"; +$a->strings["Available"] = "Dostupný"; +$a->strings["Unavailable"] = "Nedostupný"; +$a->strings["Has crush"] = "Zamilovaný"; +$a->strings["Infatuated"] = "Zabouchnutý"; +$a->strings["Dating"] = "Seznamující se"; +$a->strings["Unfaithful"] = "Nevěrný"; +$a->strings["Sex Addict"] = "Závislý na sexu"; +$a->strings["Friends"] = "Přátelé"; +$a->strings["Friends/Benefits"] = "Přátelé / výhody"; +$a->strings["Casual"] = "Ležérní"; +$a->strings["Engaged"] = "Zadaný"; +$a->strings["Married"] = "Ženatý/vdaná"; +$a->strings["Imaginarily married"] = "Pomyslně ženatý/vdaná"; +$a->strings["Partners"] = "Partneři"; +$a->strings["Cohabiting"] = "Žijící ve společné domácnosti"; +$a->strings["Common law"] = "Zvykové právo"; +$a->strings["Happy"] = "Šťastný"; +$a->strings["Not looking"] = "Nehledající"; +$a->strings["Swinger"] = "Swinger"; +$a->strings["Betrayed"] = "Zrazen"; +$a->strings["Separated"] = "Odloučený"; +$a->strings["Unstable"] = "Nestálý"; +$a->strings["Divorced"] = "Rozvedený(á)"; +$a->strings["Imaginarily divorced"] = "Pomyslně rozvedený"; +$a->strings["Widowed"] = "Ovdovělý(á)"; +$a->strings["Uncertain"] = "Nejistý"; +$a->strings["It's complicated"] = "Je to složité"; +$a->strings["Don't care"] = "Nezajímá"; +$a->strings["Ask me"] = "Zeptej se mě"; +$a->strings["An invitation is required."] = "Pozvánka je vyžadována."; +$a->strings["Invitation could not be verified."] = "Pozvánka nemohla být ověřena."; +$a->strings["Invalid OpenID url"] = "Neplatný odkaz OpenID"; +$a->strings["Please enter the required information."] = "Zadejte prosím požadované informace."; +$a->strings["Please use a shorter name."] = "Použijte prosím kratší jméno."; +$a->strings["Name too short."] = "Jméno je příliš krátké."; +$a->strings["That doesn't appear to be your full (First Last) name."] = "Nezdá se, že by to bylo vaše celé jméno (křestní jméno a příjmení)."; +$a->strings["Your email domain is not among those allowed on this site."] = "Váš e-mailová doména není na tomto serveru mezi povolenými."; +$a->strings["Not a valid email address."] = "Neplatná e-mailová adresa."; +$a->strings["Cannot use that email."] = "Tento e-mail nelze použít."; +$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Vaše \"přezdívka\" může obsahovat pouze \"a-z\", \"0-9\", \"-\", a \"_\", a musí začínat písmenem."; +$a->strings["Nickname is already registered. Please choose another."] = "Přezdívka je již registrována. Prosím vyberte jinou."; +$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Tato přezdívka již zde byla použita a nemůže být využita znovu. Prosím vyberete si jinou."; +$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "Závažná chyba: Generování bezpečnostních klíčů se nezdařilo."; +$a->strings["An error occurred during registration. Please try again."] = "Došlo k chybě při registraci. Zkuste to prosím znovu."; +$a->strings["An error occurred creating your default profile. Please try again."] = "Došlo k chybě při vytváření Vašeho výchozího profilu. Zkuste to prosím znovu."; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\n\t\tDrahý %1\$s,\n\t\t\tDěkujeme Vám za registraci na %2\$s. Váš účet byl vytvořen.\n\t"; +$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."] = "\n\t\tVaše přihlašovací údaje jsou následující:\n\t\t\tAdresa webu:\t%3\$s\n\t\t\tpřihlašovací jméno:\t%1\$s\n\t\t\theslo:\t%5\$s\n\n\t\tHeslo si můžete změnit na stránce \"Nastavení\" vašeho účtu poté, co se přihlásíte.\n\n\t\tProsím věnujte pár chvil revizi dalšího nastavení vašeho účtu na dané stránce.\n\n\t\tTaké su můžete přidat nějaké základní informace do svého výchozího profilu (na stránce \"Profily\"), takže ostatní lidé vás snáze najdou.\n\n\t\tDoporučujeme Vám uvést celé jméno a i foto. Přidáním nějakých \"klíčových slov\" (velmi užitečné pro hledání nových přátel) a možná také zemi, ve které žijete, pokud nechcete být více konkrétní.\n\n\t\tPlně resepktujeme vaše právo na soukromí a nic z výše uvedeného není povinné.\n\t\tPokud jste zde nový a neznáte zde nikoho, uvedením daných informací můžete získat nové přátele.\n\n\n\t\tDíky a vítejte na %2\$s."; +$a->strings["Registration details for %s"] = "Registrační údaje pro %s"; +$a->strings["Visible to everybody"] = "Viditelné pro všechny"; +$a->strings["This entry was edited"] = "Tento záznam byl editován"; +$a->strings["Private Message"] = "Soukromá zpráva"; +$a->strings["Edit"] = "Upravit"; +$a->strings["save to folder"] = "uložit do složky"; +$a->strings["add star"] = "přidat hvězdu"; +$a->strings["remove star"] = "odebrat hvězdu"; +$a->strings["toggle star status"] = "přepnout hvězdu"; +$a->strings["starred"] = "označeno hvězdou"; +$a->strings["ignore thread"] = "ignorovat vlákno"; +$a->strings["unignore thread"] = "přestat ignorovat vlákno"; +$a->strings["toggle ignore status"] = "přepnout stav Ignorování"; +$a->strings["ignored"] = "ignorován"; +$a->strings["add tag"] = "přidat štítek"; +$a->strings["I like this (toggle)"] = "Líbí se mi to (přepínač)"; +$a->strings["like"] = "má rád"; +$a->strings["I don't like this (toggle)"] = "Nelíbí se mi to (přepínač)"; +$a->strings["dislike"] = "nemá rád"; +$a->strings["Share this"] = "Sdílet toto"; +$a->strings["share"] = "sdílí"; +$a->strings["to"] = "pro"; +$a->strings["via"] = "přes"; +$a->strings["Wall-to-Wall"] = "Zeď-na-Zeď"; +$a->strings["via Wall-To-Wall:"] = "přes Zeď-na-Zeď "; +$a->strings["%d comment"] = array( + 0 => "%d komentář", + 1 => "%d komentářů", + 2 => "%d komentářů", +); +$a->strings["This is you"] = "Nastavte Vaši polohu"; +$a->strings["Bold"] = "Tučné"; +$a->strings["Italic"] = "Kurzíva"; +$a->strings["Underline"] = "Podrtžené"; +$a->strings["Quote"] = "Citovat"; +$a->strings["Code"] = "Kód"; +$a->strings["Image"] = "Obrázek"; +$a->strings["Link"] = "Odkaz"; +$a->strings["Video"] = "Video"; +$a->strings["Item not available."] = "Položka není k dispozici."; +$a->strings["Item was not found."] = "Položka nebyla nalezena."; +$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Došlo k překročení maximálního počtu zpráv na zeď během jednoho dne. Zpráva %s nedoručena."; +$a->strings["No recipient selected."] = "Nevybrán příjemce."; +$a->strings["Unable to check your home location."] = "Nebylo možné zjistit Vaši domácí lokaci."; +$a->strings["Message could not be sent."] = "Zprávu se nepodařilo odeslat."; +$a->strings["Message collection failure."] = "Sběr zpráv selhal."; +$a->strings["Message sent."] = "Zpráva odeslána."; +$a->strings["No recipient."] = "Žádný příjemce."; +$a->strings["Send Private Message"] = "Odeslat soukromou zprávu"; +$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Pokud si přejete, aby uživatel %s mohl odpovědět, ověřte si zda-li máte povoleno na svém serveru zasílání soukromých zpráv od neznámých odesilatelů."; +$a->strings["To:"] = "Adresát:"; +$a->strings["Subject:"] = "Předmět:"; +$a->strings["Your message:"] = "Vaše zpráva:"; +$a->strings["Group created."] = "Skupina vytvořena."; +$a->strings["Could not create group."] = "Nelze vytvořit skupinu."; +$a->strings["Group not found."] = "Skupina nenalezena."; +$a->strings["Group name changed."] = "Název skupiny byl změněn."; +$a->strings["Save Group"] = "Uložit Skupinu"; +$a->strings["Create a group of contacts/friends."] = "Vytvořit skupinu kontaktů / přátel."; +$a->strings["Group Name: "] = "Název skupiny: "; +$a->strings["Group removed."] = "Skupina odstraněna. "; +$a->strings["Unable to remove group."] = "Nelze odstranit skupinu."; +$a->strings["Group Editor"] = "Editor skupin"; +$a->strings["Members"] = "Členové"; +$a->strings["All Contacts"] = "Všechny kontakty"; +$a->strings["Click on a contact to add or remove."] = "Klikněte na kontakt pro přidání nebo odebrání"; +$a->strings["No potential page delegates located."] = "Žádní potenciální delegáti stránky nenalezeni."; +$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."] = "Delegáti jsou schopni řídit všechny aspekty tohoto účtu / stránky, kromě základních nastavení účtu. Prosím, nepředávejte svůj osobní účet nikomu, komu úplně nevěříte.."; +$a->strings["Existing Page Managers"] = "Stávající správci stránky"; +$a->strings["Existing Page Delegates"] = "Stávající delegáti stránky "; +$a->strings["Potential Delegates"] = "Potenciální delegáti"; +$a->strings["Remove"] = "Odstranit"; +$a->strings["Add"] = "Přidat"; +$a->strings["No entries."] = "Žádné záznamy."; +$a->strings["Invalid request identifier."] = "Neplatný identifikátor požadavku."; +$a->strings["Discard"] = "Odstranit"; +$a->strings["Ignore"] = "Ignorovat"; +$a->strings["System"] = "Systém"; +$a->strings["Personal"] = "Osobní"; +$a->strings["Show Ignored Requests"] = "Zobrazit ignorované žádosti"; +$a->strings["Hide Ignored Requests"] = "Skrýt ignorované žádosti"; +$a->strings["Notification type: "] = "Typ oznámení: "; +$a->strings["Friend Suggestion"] = "Návrh přátelství"; +$a->strings["suggested by %s"] = "navrhl %s"; +$a->strings["Hide this contact from others"] = "Skrýt tento kontakt před ostatními"; +$a->strings["Post a new friend activity"] = "Zveřejnit aktivitu nového přítele."; +$a->strings["if applicable"] = "je-li použitelné"; +$a->strings["Approve"] = "Schválit"; +$a->strings["Claims to be known to you: "] = "Vaši údajní známí: "; +$a->strings["yes"] = "ano"; +$a->strings["no"] = "ne"; +$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: "] = ""; +$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: "] = ""; +$a->strings["Friend"] = "Přítel"; +$a->strings["Sharer"] = "Sdílené"; +$a->strings["Fan/Admirer"] = "Fanoušek / obdivovatel"; +$a->strings["Friend/Connect Request"] = "Přítel / žádost o připojení"; +$a->strings["New Follower"] = "Nový následovník"; +$a->strings["No introductions."] = "Žádné představení."; +$a->strings["%s liked %s's post"] = "Uživateli %s se líbí příspěvek uživatele %s"; +$a->strings["%s disliked %s's post"] = "Uživateli %s se nelíbí příspěvek uživatele %s"; +$a->strings["%s is now friends with %s"] = "%s se nyní přátelí s %s"; +$a->strings["%s created a new post"] = "%s vytvořil nový příspěvek"; +$a->strings["%s commented on %s's post"] = "%s okomentoval příspěvek uživatele %s'"; +$a->strings["No more network notifications."] = "Žádné další síťové upozornění."; +$a->strings["Network Notifications"] = "Upozornění Sítě"; +$a->strings["No more system notifications."] = "Žádné další systémová upozornění."; +$a->strings["System Notifications"] = "Systémová upozornění"; +$a->strings["No more personal notifications."] = "Žádné další osobní upozornění."; +$a->strings["Personal Notifications"] = "Osobní upozornění"; +$a->strings["No more home notifications."] = "Žádné další domácí upozornění."; +$a->strings["Home Notifications"] = "Upozornění na vstupní straně"; +$a->strings["No profile"] = "Žádný profil"; +$a->strings["everybody"] = "Žádost o připojení selhala nebo byla zrušena."; +$a->strings["Account"] = "Účet"; +$a->strings["Additional features"] = "Další funkčnosti"; +$a->strings["Display"] = "Zobrazení"; +$a->strings["Social Networks"] = "Sociální sítě"; +$a->strings["Plugins"] = "Pluginy"; +$a->strings["Connected apps"] = "Propojené aplikace"; +$a->strings["Export personal data"] = "Export osobních údajů"; +$a->strings["Remove account"] = "Odstranit účet"; +$a->strings["Missing some important data!"] = "Chybí některé důležité údaje!"; +$a->strings["Update"] = "Aktualizace"; +$a->strings["Failed to connect with email account using the settings provided."] = "Nepodařilo se připojit k e-mailovému účtu pomocí dodaného nastavení."; +$a->strings["Email settings updated."] = "Nastavení e-mailu aktualizována."; +$a->strings["Features updated"] = "Aktualizované funkčnosti"; +$a->strings["Relocate message has been send to your contacts"] = "Správa o změně umístění byla odeslána vašim kontaktům"; +$a->strings["Passwords do not match. Password unchanged."] = "Hesla se neshodují. Heslo nebylo změněno."; +$a->strings["Empty passwords are not allowed. Password unchanged."] = "Prázdné hesla nejsou povolena. Heslo nebylo změněno."; +$a->strings["Wrong password."] = "Špatné heslo."; +$a->strings["Password changed."] = "Heslo bylo změněno."; +$a->strings["Password update failed. Please try again."] = "Aktualizace hesla se nezdařila. Zkuste to prosím znovu."; +$a->strings[" Please use a shorter name."] = "Prosím použijte kratší jméno."; +$a->strings[" Name too short."] = "Jméno je příliš krátké."; +$a->strings["Wrong Password"] = "Špatné heslo"; +$a->strings[" Not valid email."] = "Neplatný e-mail."; +$a->strings[" Cannot change to that email."] = "Nelze provést změnu na tento e-mail."; +$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Soukromé fórum nemá nastaveno zabezpečení. Používá se defaultní soukromá skupina."; +$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Soukromé fórum nemá nastaveno zabezpečení a ani žádnou defaultní soukromou skupinu."; +$a->strings["Settings updated."] = "Nastavení aktualizováno."; +$a->strings["Add application"] = "Přidat aplikaci"; +$a->strings["Save Settings"] = "Uložit Nastavení"; +$a->strings["Name"] = "Jméno"; +$a->strings["Consumer Key"] = "Consumer Key"; +$a->strings["Consumer Secret"] = "Consumer Secret"; +$a->strings["Redirect"] = "Přesměrování"; +$a->strings["Icon url"] = "URL ikony"; +$a->strings["You can't edit this application."] = "Nemůžete editovat tuto aplikaci."; +$a->strings["Connected Apps"] = "Připojené aplikace"; +$a->strings["Client key starts with"] = "Klienský klíč začíná"; +$a->strings["No name"] = "Bez názvu"; +$a->strings["Remove authorization"] = "Odstranit oprávnění"; +$a->strings["No Plugin settings configured"] = "Žádný doplněk není nastaven"; +$a->strings["Plugin Settings"] = "Nastavení doplňku"; +$a->strings["Off"] = "Vypnuto"; +$a->strings["On"] = "Zapnuto"; +$a->strings["Additional Features"] = "Další Funkčnosti"; +$a->strings["Built-in support for %s connectivity is %s"] = "Vestavěná podpora pro připojení s %s je %s"; +$a->strings["enabled"] = "povoleno"; +$a->strings["disabled"] = "zakázáno"; +$a->strings["StatusNet"] = "StatusNet"; +$a->strings["Email access is disabled on this site."] = "Přístup k elektronické poště je na tomto serveru zakázán."; +$a->strings["Email/Mailbox Setup"] = "Nastavení e-mailu"; +$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Pokud chcete komunikovat pomocí této služby s Vašimi kontakty z e-mailu (volitelné), uveďte, jak se připojit k Vaší e-mailové schránce."; +$a->strings["Last successful email check:"] = "Poslední úspěšná kontrola e-mailu:"; +$a->strings["IMAP server name:"] = "jméno IMAP serveru:"; +$a->strings["IMAP port:"] = "IMAP port:"; +$a->strings["Security:"] = "Zabezpečení:"; +$a->strings["None"] = "Žádný"; +$a->strings["Email login name:"] = "přihlašovací jméno k e-mailu:"; +$a->strings["Email password:"] = "heslo k Vašemu e-mailu:"; +$a->strings["Reply-to address:"] = "Odpovědět na adresu:"; +$a->strings["Send public posts to all email contacts:"] = "Poslat veřejné příspěvky na všechny e-mailové kontakty:"; +$a->strings["Action after import:"] = "Akce po importu:"; +$a->strings["Mark as seen"] = "Označit jako přečtené"; +$a->strings["Move to folder"] = "Přesunout do složky"; +$a->strings["Move to folder:"] = "Přesunout do složky:"; +$a->strings["No special theme for mobile devices"] = "žádné speciální téma pro mobilní zařízení"; +$a->strings["Display Settings"] = "Nastavení Zobrazení"; +$a->strings["Display Theme:"] = "Vybrat grafickou šablonu:"; +$a->strings["Mobile Theme:"] = "Téma pro mobilní zařízení:"; +$a->strings["Update browser every xx seconds"] = "Aktualizovat prohlížeč každých xx sekund"; +$a->strings["Minimum of 10 seconds, no maximum"] = "Minimum 10 sekund, žádné maximum."; +$a->strings["Number of items to display per page:"] = "Počet položek zobrazených na stránce:"; +$a->strings["Maximum of 100 items"] = "Maximum 100 položek"; +$a->strings["Number of items to display per page when viewed from mobile device:"] = "Počet položek ke zobrazení na stránce při zobrazení na mobilním zařízení:"; +$a->strings["Don't show emoticons"] = "Nezobrazovat emotikony"; +$a->strings["Don't show notices"] = "Nezobrazovat oznámění"; +$a->strings["Infinite scroll"] = "Nekonečné posouvání"; +$a->strings["Automatic updates only at the top of the network page"] = "Automatické aktualizace pouze na hlavní stránce Síť."; +$a->strings["User Types"] = "Uživatelské typy"; +$a->strings["Community Types"] = "Komunitní typy"; +$a->strings["Normal Account Page"] = "Normální stránka účtu"; +$a->strings["This account is a normal personal profile"] = "Tento účet je běžný osobní profil"; +$a->strings["Soapbox Page"] = "Stránka \"Soapbox\""; +$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Automaticky schválit všechna spojení / přátelství jako fanoušky s právem pouze ke čtení"; +$a->strings["Community Forum/Celebrity Account"] = "Komunitní fórum/ účet celebrity"; +$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Automaticky schvalovat všechny žádosti o spojení / přátelství, jako fanoušky s právem ke čtení."; +$a->strings["Automatic Friend Page"] = "Automatická stránka přítele"; +$a->strings["Automatically approve all connection/friend requests as friends"] = "Automaticky schvalovat všechny žádosti o spojení / přátelství jako přátele"; +$a->strings["Private Forum [Experimental]"] = "Soukromé fórum [Experimentální]"; +$a->strings["Private forum - approved members only"] = "Soukromé fórum - pouze pro schválené členy"; +$a->strings["OpenID:"] = "OpenID:"; +$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Volitelné) Povolit OpenID pro přihlášení k tomuto účtu."; +$a->strings["Publish your default profile in your local site directory?"] = "Publikovat Váš výchozí profil v místním adresáři webu?"; +$a->strings["No"] = "Ne"; +$a->strings["Publish your default profile in the global social directory?"] = "Publikovat Váš výchozí profil v globální sociálním adresáři?"; +$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Skrýt Vaše kontaktní údaje a seznam přátel před návštěvníky ve Vašem výchozím profilu?"; +$a->strings["If enabled, posting public messages to Diaspora and other networks isn't possible."] = "Pokud je povoleno, není možné zasílání veřejných příspěvků do Diaspory a dalších sítí."; +$a->strings["Allow friends to post to your profile page?"] = "Povolit přátelům umisťování příspěvků na vaši profilovou stránku?"; +$a->strings["Allow friends to tag your posts?"] = "Povolit přátelům označovat Vaše příspěvky?"; +$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Chcete nám povolit abychom vás navrhovali jako přátelé pro nové členy?"; +$a->strings["Permit unknown people to send you private mail?"] = "Povolit neznámým lidem Vám zasílat soukromé zprávy?"; +$a->strings["Profile is not published."] = "Profil není zveřejněn."; +$a->strings["or"] = "nebo"; +$a->strings["Your Identity Address is"] = "Vaše adresa identity je"; +$a->strings["Automatically expire posts after this many days:"] = "Automaticky expirovat příspěvky po zadaném počtu dní:"; +$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Pokud je prázdné, příspěvky nebudou nikdy expirovat. Expirované příspěvky budou vymazány"; +$a->strings["Advanced expiration settings"] = "Pokročilé nastavení expirací"; +$a->strings["Advanced Expiration"] = "Nastavení expirací"; +$a->strings["Expire posts:"] = "Expirovat příspěvky:"; +$a->strings["Expire personal notes:"] = "Expirovat osobní poznámky:"; +$a->strings["Expire starred posts:"] = "Expirovat příspěvky s hvězdou:"; +$a->strings["Expire photos:"] = "Expirovat fotografie:"; +$a->strings["Only expire posts by others:"] = "Přízpěvky expirovat pouze ostatními:"; +$a->strings["Account Settings"] = "Nastavení účtu"; +$a->strings["Password Settings"] = "Nastavení hesla"; +$a->strings["New Password:"] = "Nové heslo:"; +$a->strings["Confirm:"] = "Potvrďte:"; +$a->strings["Leave password fields blank unless changing"] = "Pokud nechcete změnit heslo, položku hesla nevyplňujte"; +$a->strings["Current Password:"] = "Stávající heslo:"; +$a->strings["Your current password to confirm the changes"] = "Vaše stávající heslo k potvrzení změn"; +$a->strings["Password:"] = "Heslo: "; +$a->strings["Basic Settings"] = "Základní nastavení"; +$a->strings["Email Address:"] = "E-mailová adresa:"; +$a->strings["Your Timezone:"] = "Vaše časové pásmo:"; +$a->strings["Default Post Location:"] = "Výchozí umístění příspěvků:"; +$a->strings["Use Browser Location:"] = "Používat umístění dle prohlížeče:"; +$a->strings["Security and Privacy Settings"] = "Nastavení zabezpečení a soukromí"; +$a->strings["Maximum Friend Requests/Day:"] = "Maximální počet žádostí o přátelství za den:"; +$a->strings["(to prevent spam abuse)"] = "(Aby se zabránilo spamu)"; +$a->strings["Default Post Permissions"] = "Výchozí oprávnění pro příspěvek"; +$a->strings["(click to open/close)"] = "(Klikněte pro otevření/zavření)"; +$a->strings["Show to Groups"] = "Zobrazit ve Skupinách"; +$a->strings["Show to Contacts"] = "Zobrazit v Kontaktech"; +$a->strings["Default Private Post"] = "Výchozí Soukromý příspěvek"; +$a->strings["Default Public Post"] = "Výchozí Veřejný příspěvek"; +$a->strings["Default Permissions for New Posts"] = "Výchozí oprávnění pro nové příspěvky"; +$a->strings["Maximum private messages per day from unknown people:"] = "Maximum soukromých zpráv od neznámých lidí:"; +$a->strings["Notification Settings"] = "Nastavení notifikací"; +$a->strings["By default post a status message when:"] = "Defaultně posílat statusové zprávy když:"; +$a->strings["accepting a friend request"] = "akceptuji požadavek na přátelství"; +$a->strings["joining a forum/community"] = "připojující se k fóru/komunitě"; +$a->strings["making an interesting profile change"] = "provedení zajímavé profilové změny"; +$a->strings["Send a notification email when:"] = "Poslat notifikaci e-mailem, když"; +$a->strings["You receive an introduction"] = "obdržíte žádost o propojení"; +$a->strings["Your introductions are confirmed"] = "Vaše žádosti jsou potvrzeny"; +$a->strings["Someone writes on your profile wall"] = "někdo Vám napíše na Vaši profilovou stránku"; +$a->strings["Someone writes a followup comment"] = "někdo Vám napíše následný komentář"; +$a->strings["You receive a private message"] = "obdržíte soukromou zprávu"; +$a->strings["You receive a friend suggestion"] = "Obdržel jste návrh přátelství"; +$a->strings["You are tagged in a post"] = "Jste označen v příspěvku"; +$a->strings["You are poked/prodded/etc. in a post"] = "Byl Jste šťouchnout v příspěvku"; +$a->strings["Text-only notification emails"] = "Pouze textové notifikační e-maily"; +$a->strings["Send text only notification emails, without the html part"] = "Posílat pouze textové notifikační e-maily, bez html části."; +$a->strings["Advanced Account/Page Type Settings"] = "Pokročilé nastavení účtu/stránky"; +$a->strings["Change the behaviour of this account for special situations"] = "Změnit chování tohoto účtu ve speciálních situacích"; +$a->strings["Relocate"] = "Změna umístění"; +$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."] = "Pokud jste přemístil tento profil z jiného serveru a nějaký z vašich kontaktů nedostává Vaše aktualizace, zkuste stisknout toto tlačítko."; +$a->strings["Resend relocate message to contacts"] = "Znovu odeslat správu o změně umístění Vašim kontaktům"; +$a->strings["Common Friends"] = "Společní přátelé"; +$a->strings["No contacts in common."] = "Žádné společné kontakty."; +$a->strings["Remote privacy information not available."] = "Vzdálené soukromé informace nejsou k dispozici."; +$a->strings["Visible to:"] = "Viditelné pro:"; $a->strings["%d contact edited."] = array( 0 => "%d kontakt upraven.", 1 => "%d kontakty upraveny", @@ -14,7 +970,6 @@ $a->strings["Could not access contact record."] = "Nelze získat přístup k zá $a->strings["Could not locate selected profile."] = "Nelze nalézt vybraný profil."; $a->strings["Contact updated."] = "Kontakt aktualizován."; $a->strings["Failed to update contact record."] = "Nepodařilo se aktualizovat kontakt."; -$a->strings["Permission denied."] = "Přístup odmítnut."; $a->strings["Contact has been blocked"] = "Kontakt byl zablokován"; $a->strings["Contact has been unblocked"] = "Kontakt byl odblokován"; $a->strings["Contact has been ignored"] = "Kontakt bude ignorován"; @@ -22,8 +977,6 @@ $a->strings["Contact has been unignored"] = "Kontakt přestal být ignorován"; $a->strings["Contact has been archived"] = "Kontakt byl archivován"; $a->strings["Contact has been unarchived"] = "Kontakt byl vrácen z archívu."; $a->strings["Do you really want to delete this contact?"] = "Opravdu chcete smazat tento kontakt?"; -$a->strings["Yes"] = "Ano"; -$a->strings["Cancel"] = "Zrušit"; $a->strings["Contact has been removed."] = "Kontakt byl odstraněn."; $a->strings["You are mutual friends with %s"] = "Jste vzájemní přátelé s uživatelem %s"; $a->strings["You are sharing with %s"] = "Sdílíte s uživatelem %s"; @@ -34,17 +987,11 @@ $a->strings["(Update was successful)"] = "(Aktualizace byla úspěšná)"; $a->strings["(Update was not successful)"] = "(Aktualizace nebyla úspěšná)"; $a->strings["Suggest friends"] = "Navrhněte přátelé"; $a->strings["Network type: %s"] = "Typ sítě: %s"; -$a->strings["%d contact in common"] = array( - 0 => "%d sdílený kontakt", - 1 => "%d sdílených kontaktů", - 2 => "%d sdílených kontaktů", -); $a->strings["View all contacts"] = "Zobrazit všechny kontakty"; $a->strings["Unblock"] = "Odblokovat"; $a->strings["Block"] = "Blokovat"; $a->strings["Toggle Blocked status"] = "Přepnout stav Blokováno"; $a->strings["Unignore"] = "Přestat ignorovat"; -$a->strings["Ignore"] = "Ignorovat"; $a->strings["Toggle Ignored status"] = "Přepnout stav Ignorováno"; $a->strings["Unarchive"] = "Vrátit z archívu"; $a->strings["Archive"] = "Archivovat"; @@ -52,8 +999,11 @@ $a->strings["Toggle Archive status"] = "Přepnout stav Archivováno"; $a->strings["Repair"] = "Opravit"; $a->strings["Advanced Contact Settings"] = "Pokročilé nastavení kontaktu"; $a->strings["Communications lost with this contact!"] = "Komunikace s tímto kontaktem byla ztracena!"; +$a->strings["Fetch further information for feeds"] = "Načítat další informace pro kanál"; +$a->strings["Disabled"] = "Zakázáno"; +$a->strings["Fetch information"] = "Načítat informace"; +$a->strings["Fetch information and keywords"] = "Načítat informace a klíčová slova"; $a->strings["Contact Editor"] = "Editor kontaktu"; -$a->strings["Submit"] = "Odeslat"; $a->strings["Profile Visibility"] = "Viditelnost profilu"; $a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Vyberte prosím profil, který chcete zobrazit %s při zabezpečeném prohlížení vašeho profilu."; $a->strings["Contact Information / Notes"] = "Kontaktní informace / poznámky"; @@ -70,19 +1020,13 @@ $a->strings["Update now"] = "Aktualizovat"; $a->strings["Currently blocked"] = "V současnosti zablokováno"; $a->strings["Currently ignored"] = "V současnosti ignorováno"; $a->strings["Currently archived"] = "Aktuálně archivován"; -$a->strings["Hide this contact from others"] = "Skrýt tento kontakt před ostatními"; $a->strings["Replies/likes to your public posts may still be visible"] = "Odpovědi/Libí se na Vaše veřejné příspěvky mohou být stále viditelné"; $a->strings["Notification for new posts"] = "Upozornění na nové příspěvky"; $a->strings["Send a notification of every new post of this contact"] = "Poslat upozornění při každém novém příspěvku tohoto kontaktu"; -$a->strings["Fetch further information for feeds"] = "Načítat další informace pro kanál"; -$a->strings["Disabled"] = "Zakázáno"; -$a->strings["Fetch information"] = "Načítat informace"; -$a->strings["Fetch information and keywords"] = "Načítat informace a klíčová slova"; $a->strings["Blacklisted keywords"] = "Zakázaná klíčová slova"; $a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Čárkou oddělený seznam klíčových slov, které by neměly být převáděna na hashtagy, když je zvoleno \"Načítat informace a klíčová slova\""; $a->strings["Suggestions"] = "Doporučení"; $a->strings["Suggest potential friends"] = "Navrhnout potenciální přátele"; -$a->strings["All Contacts"] = "Všechny kontakty"; $a->strings["Show all contacts"] = "Zobrazit všechny kontakty"; $a->strings["Unblocked"] = "Odblokován"; $a->strings["Only show unblocked contacts"] = "Zobrazit pouze neblokované kontakty"; @@ -98,310 +1042,117 @@ $a->strings["Mutual Friendship"] = "Vzájemné přátelství"; $a->strings["is a fan of yours"] = "je Váš fanoušek"; $a->strings["you are a fan of"] = "jste fanouškem"; $a->strings["Edit contact"] = "Editovat kontakt"; -$a->strings["Contacts"] = "Kontakty"; $a->strings["Search your contacts"] = "Prohledat Vaše kontakty"; $a->strings["Finding: "] = "Zjištění: "; -$a->strings["Find"] = "Najít"; -$a->strings["Update"] = "Aktualizace"; -$a->strings["Delete"] = "Odstranit"; -$a->strings["No profile"] = "Žádný profil"; -$a->strings["Manage Identities and/or Pages"] = "Správa identit a / nebo stránek"; -$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Přepnutí mezi různými identitami nebo komunitními/skupinovými stránkami, které sdílí Vaše detaily účtu, nebo kterým jste přidělili oprávnění nastavovat přístupová práva."; -$a->strings["Select an identity to manage: "] = "Vyberte identitu pro správu: "; +$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Omlouváme se, možná je Váš soubor větší než je povolené maximum dle nastavení PHP"; +$a->strings["Or - did you try to upload an empty file?"] = "Nebo - nenahrával jste prázdný soubor?"; +$a->strings["File exceeds size limit of %d"] = "Velikost souboru přesáhla limit %d"; +$a->strings["File upload failed."] = "Nahrání souboru se nezdařilo."; +$a->strings["[Embedded content - reload page to view]"] = "[Vložený obsah - obnovte stránku pro zobrazení]"; +$a->strings["Export account"] = "Exportovat účet"; +$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."] = "Exportujte svůj účet a své kontakty. Použijte tuto funkci pro vytvoření zálohy svého účtu a/nebo k přesunu na jiný server."; +$a->strings["Export all"] = "Exportovat vše"; +$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)"] = "Exportujte své informace k účtu, kontakty a vše své položky jako json. To může být velmi velký soubor a může to zabrat spoustu času. Tuto funkci použijte pro úplnou zálohu svého účtu(fotografie se neexportují)"; +$a->strings["Registration successful. Please check your email for further instructions."] = "Registrace úspěšná. Zkontrolujte prosím svůj e-mail pro další instrukce."; +$a->strings["Failed to send email message. Here your accout details:
login: %s
password: %s

You can change your password after login."] = "Nepovedlo se odeslat emailovou zprávu. Zde jsou detaily Vašeho účtu:
login: %s
heslo: %s

Své heslo můžete změnit po přihlášení."; +$a->strings["Your registration can not be processed."] = "Vaši registraci nelze zpracovat."; +$a->strings["Your registration is pending approval by the site owner."] = "Vaše registrace čeká na schválení vlastníkem serveru."; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Došlo k překročení maximálního povoleného počtu registrací za den na tomto serveru. Zkuste to zítra znovu."; +$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Tento formulář můžete (volitelně) vyplnit s pomocí OpenID tím, že vyplníte své OpenID a kliknutete na tlačítko 'Zaregistrovat'."; +$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Pokud nepoužíváte OpenID, nechte prosím toto pole prázdné a vyplňte zbylé položky."; +$a->strings["Your OpenID (optional): "] = "Vaše OpenID (nepovinné): "; +$a->strings["Include your profile in member directory?"] = "Toto je Váš veřejný profil.
Ten může být viditelný kýmkoliv na internetu."; +$a->strings["Membership on this site is by invitation only."] = "Členství na tomto webu je pouze na pozvání."; +$a->strings["Your invitation ID: "] = "Vaše pozvání ID:"; +$a->strings["Registration"] = "Registrace"; +$a->strings["Your Full Name (e.g. Joe Smith): "] = "Vaše celé jméno (např. Jan Novák):"; +$a->strings["Your Email Address: "] = "Vaše e-mailová adresa:"; +$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Vyberte přezdívku k profilu. Ta musí začít s textovým znakem. Vaše profilová adresa na tomto webu pak bude \"přezdívka@\$sitename\"."; +$a->strings["Choose a nickname: "] = "Vyberte přezdívku:"; +$a->strings["Import"] = "Import"; +$a->strings["Import your profile to this friendica instance"] = "Import Vašeho profilu do této friendica instance"; $a->strings["Post successful."] = "Příspěvek úspěšně odeslán"; -$a->strings["Permission denied"] = "Nedostatečné oprávnění"; -$a->strings["Invalid profile identifier."] = "Neplatný identifikátor profilu."; -$a->strings["Profile Visibility Editor"] = "Editor viditelnosti profilu "; -$a->strings["Profile"] = "Profil"; -$a->strings["Click on a contact to add or remove."] = "Klikněte na kontakt pro přidání nebo odebrání"; -$a->strings["Visible To"] = "Viditelný pro"; -$a->strings["All Contacts (with secure profile access)"] = "Všechny kontakty (se zabezpečeným přístupovým profilem )"; -$a->strings["Item not found."] = "Položka nenalezena."; -$a->strings["Public access denied."] = "Veřejný přístup odepřen."; +$a->strings["System down for maintenance"] = "Systém vypnut z důvodů údržby"; $a->strings["Access to this profile has been restricted."] = "Přístup na tento profil byl omezen."; -$a->strings["Item has been removed."] = "Položka byla odstraněna."; -$a->strings["Welcome to Friendica"] = "Vítejte na Friendica"; -$a->strings["New Member Checklist"] = "Seznam doporučení pro nového člena"; -$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."] = "Rádi bychom vám nabídli několik tipů a odkazů pro začátek. Klikněte na jakoukoliv položku pro zobrazení relevantní stránky. Odkaz na tuto stránku bude viditelný z Vaší domovské stránky po dobu dvou týdnů od Vaší první registrace."; -$a->strings["Getting Started"] = "Začínáme"; -$a->strings["Friendica Walk-Through"] = "Prohlídka Friendica "; -$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Na Vaší stránce Rychlý Start - naleznete stručné představení k Vašemu profilu a záložce Síť, k vytvoření spojení s novými kontakty a nalezení skupin, ke kterým se můžete připojit."; -$a->strings["Settings"] = "Nastavení"; -$a->strings["Go to Your Settings"] = "Navštivte své nastavení"; -$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Na Vaší stránce Nastavení - si změňte Vaše první heslo.\nVěnujte také svou pozornost k adrese identity. Vypadá jako emailová adresa a bude Vám užitečná pro navazování přátelství na svobodné sociální síti."; -$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Prohlédněte si další nastavení, a to zejména nastavení soukromí. Nezveřejnění svého účtu v adresáři je jako mít nezveřejněné telefonní číslo. Obecně platí, že je lepší mít svůj účet zveřejněný, leda by všichni vaši potenciální přátelé věděli, jak vás přesně najít."; -$a->strings["Upload Profile Photo"] = "Nahrát profilovou fotografii"; -$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Nahrajte si svou profilovou fotku, pokud jste tak již neučinili. Studie ukázaly, že lidé se skutečnými fotografiemi mají desetkrát častěji přátele než lidé, kteří nemají."; -$a->strings["Edit Your Profile"] = "Editujte Váš profil"; -$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Upravit výchozí profil podle vašich představ. Prověřte nastavení pro skrytí Vašeho seznamu přátel a skrytí profilu před neznámými návštěvníky."; -$a->strings["Profile Keywords"] = "Profilová klíčová slova"; -$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Nastavte si nějaká veřejné klíčová slova pro výchozí profil, která popisují Vaše zájmy. Friendika Vám může nalézt další lidi s podobnými zájmy a navrhnout přátelství."; -$a->strings["Connecting"] = "Probíhá pokus o připojení"; -$a->strings["Facebook"] = "Facebook"; -$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Jestliže máte účet na Facebooku, povolte konektor na Facebook a bude možné (na přání) importovat všechny Vaš přátele na Facebooku a všechny Vaše konverzace."; -$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Pokud je toto Váš soukromý server, instalací Facebok doplňku můžete zjednodušit Váš přechod na svobodný sociální web."; -$a->strings["Importing Emails"] = "Importování emaiů"; -$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Pokud chcete importovat své přátele nebo mailové skupiny a komunikovat s nimi, zadejte na Vaší stránce Nastavení kontektoru své přístupové údaje do svého emailového účtu"; -$a->strings["Go to Your Contacts Page"] = "Navštivte Vaši stránku s kontakty"; -$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = "Vaše stránka Kontakty je Vaše brána k nastavování přátelství a propojení s přáteli z dalších sítí. Typicky zadáte jejich emailovou adresu nebo URL adresu jejich serveru prostřednictvím dialogu Přidat nový kontakt."; -$a->strings["Go to Your Site's Directory"] = "Navštivte lokální adresář Friendica"; -$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "Stránka Adresář Vám pomůže najít další lidi na tomto serveru nebo v jiných propojených serverech. Prostřednictvím odkazů Připojení nebo Následovat si prohlédněte jejich profilovou stránku. Uveďte svou vlastní adresu identity, je-li požadována."; -$a->strings["Finding New People"] = "Nalezení nových lidí"; -$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Na bočním panelu stránky s kontakty je několik nástrojů k nalezení nových přátel. Porovnáme lidi dle zájmů, najdeme lidi podle jména nebo zájmu a poskytneme Vám návrhy založené na přátelství v síti přátel. Na zcela novém serveru se návrhy přátelství nabínou obvykle během 24 hodin."; -$a->strings["Groups"] = "Skupiny"; -$a->strings["Group Your Contacts"] = "Seskupte si své kontakty"; -$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Jakmile získáte nějaké přátele, uspořádejte si je do soukromých konverzačních skupin na postranním panelu Vaší stránky Kontakty a pak můžete komunikovat s každou touto skupinu soukromě prostřednictvím stránky Síť."; -$a->strings["Why Aren't My Posts Public?"] = "Proč nejsou mé příspěvky veřejné?"; -$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respektuje Vaše soukromí. Defaultně jsou Vaše příspěvky viditelné pouze lidem, které označíte jako Vaše přátelé. Více informací naleznete v nápovědě na výše uvedeném odkazu"; -$a->strings["Getting Help"] = "Získání nápovědy"; -$a->strings["Go to the Help Section"] = "Navštivte sekci nápovědy"; -$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Na stránkách Nápověda naleznete nejen další podrobnosti o všech funkcích Friendika ale také další zdroje informací."; -$a->strings["OpenID protocol error. No ID returned."] = "Chyba OpenID protokolu. Navrátilo se žádné ID."; -$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Nenalezen účet a OpenID registrace na tomto serveru není dovolena."; -$a->strings["Login failed."] = "Přihlášení se nezdařilo."; -$a->strings["Image uploaded but image cropping failed."] = "Obrázek byl odeslán, ale jeho oříznutí se nesdařilo."; -$a->strings["Profile Photos"] = "Profilové fotografie"; -$a->strings["Image size reduction [%s] failed."] = "Nepodařilo se snížit velikost obrázku [%s]."; -$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Znovu načtěte stránku (Shift+F5) nebo vymažte cache prohlížeče, pokud se nové fotografie nezobrazí okamžitě."; -$a->strings["Unable to process image"] = "Obrázek nelze zpracovat "; -$a->strings["Image exceeds size limit of %d"] = "Obrázek překročil limit velikosti %d"; -$a->strings["Unable to process image."] = "Obrázek není možné zprocesovat"; -$a->strings["Upload File:"] = "Nahrát soubor:"; -$a->strings["Select a profile:"] = "Vybrat profil:"; -$a->strings["Upload"] = "Nahrát"; -$a->strings["or"] = "nebo"; -$a->strings["skip this step"] = "přeskočit tento krok "; -$a->strings["select a photo from your photo albums"] = "Vybrat fotografii z Vašich fotoalb"; -$a->strings["Crop Image"] = "Oříznout obrázek"; -$a->strings["Please adjust the image cropping for optimum viewing."] = "Prosím, ořízněte tento obrázek pro optimální zobrazení."; -$a->strings["Done Editing"] = "Editace dokončena"; -$a->strings["Image uploaded successfully."] = "Obrázek byl úspěšně nahrán."; -$a->strings["Image upload failed."] = "Nahrání obrázku selhalo."; -$a->strings["photo"] = "fotografie"; -$a->strings["status"] = "Stav"; -$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s následuje %3\$s uživatele %2\$s"; -$a->strings["Tag removed"] = "Štítek odstraněn"; -$a->strings["Remove Item Tag"] = "Odebrat štítek položky"; -$a->strings["Select a tag to remove: "] = "Vyberte štítek k odebrání: "; -$a->strings["Remove"] = "Odstranit"; -$a->strings["Save to Folder:"] = "Uložit do složky:"; -$a->strings["- select -"] = "- vyber -"; -$a->strings["Save"] = "Uložit"; -$a->strings["Contact added"] = "Kontakt přidán"; -$a->strings["Unable to locate original post."] = "Nelze nalézt původní příspěvek."; -$a->strings["Empty post discarded."] = "Prázdný příspěvek odstraněn."; -$a->strings["Wall Photos"] = "Fotografie na zdi"; -$a->strings["System error. Post not saved."] = "Chyba systému. Příspěvek nebyl uložen."; -$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Tato zpráva vám byla zaslána od %s, člena sociální sítě Friendica."; -$a->strings["You may visit them online at %s"] = "Můžete je navštívit online na adrese %s"; -$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Pokud nechcete dostávat tyto zprávy, kontaktujte prosím odesilatele odpovědí na tento záznam."; -$a->strings["%s posted an update."] = "%s poslal aktualizaci."; -$a->strings["Group created."] = "Skupina vytvořena."; -$a->strings["Could not create group."] = "Nelze vytvořit skupinu."; -$a->strings["Group not found."] = "Skupina nenalezena."; -$a->strings["Group name changed."] = "Název skupiny byl změněn."; -$a->strings["Save Group"] = "Uložit Skupinu"; -$a->strings["Create a group of contacts/friends."] = "Vytvořit skupinu kontaktů / přátel."; -$a->strings["Group Name: "] = "Název skupiny: "; -$a->strings["Group removed."] = "Skupina odstraněna. "; -$a->strings["Unable to remove group."] = "Nelze odstranit skupinu."; -$a->strings["Group Editor"] = "Editor skupin"; -$a->strings["Members"] = "Členové"; -$a->strings["You must be logged in to use addons. "] = "Musíte být přihlášeni pro použití rozšíření."; -$a->strings["Applications"] = "Aplikace"; -$a->strings["No installed applications."] = "Žádné nainstalované aplikace."; -$a->strings["Profile not found."] = "Profil nenalezen"; -$a->strings["Contact not found."] = "Kontakt nenalezen."; -$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "To se může občas stát pokud kontakt byl zažádán oběma osobami a již byl schválen."; -$a->strings["Response from remote site was not understood."] = "Odpověď ze vzdáleného serveru nebyla srozumitelná."; -$a->strings["Unexpected response from remote site: "] = "Neočekávaná odpověď od vzdáleného serveru:"; -$a->strings["Confirmation completed successfully."] = "Potvrzení úspěšně dokončena."; -$a->strings["Remote site reported: "] = "Vzdálený server oznámil:"; -$a->strings["Temporary failure. Please wait and try again."] = "Dočasné selhání. Prosím, vyčkejte a zkuste to znovu."; -$a->strings["Introduction failed or was revoked."] = "Žádost o propojení selhala nebo byla zrušena."; -$a->strings["Unable to set contact photo."] = "Nelze nastavit fotografii kontaktu."; -$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s je nyní přítel s %2\$s"; -$a->strings["No user record found for '%s' "] = "Pro '%s' nenalezen žádný uživatelský záznam "; -$a->strings["Our site encryption key is apparently messed up."] = "Náš šifrovací klíč zřejmě přestal správně fungovat."; -$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Byla poskytnuta prázdná URL adresa nebo se nepodařilo URL adresu dešifrovat."; -$a->strings["Contact record was not found for you on our site."] = "Kontakt záznam nebyl nalezen pro vás na našich stránkách."; -$a->strings["Site public key not available in contact record for URL %s."] = "V adresáři není k dispozici veřejný klíč pro URL %s."; -$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Váš systém poskytl duplicitní ID vůči našemu systému. Pokuste se akci zopakovat."; -$a->strings["Unable to set your contact credentials on our system."] = "Nelze nastavit Vaše přihlašovací údaje v našem systému."; -$a->strings["Unable to update your contact profile details on our system"] = "Nelze aktualizovat Váš profil v našem systému"; -$a->strings["[Name Withheld]"] = "[Jméno odepřeno]"; -$a->strings["%1\$s has joined %2\$s"] = "%1\$s se připojil k %2\$s"; -$a->strings["Requested profile is not available."] = "Požadovaný profil není k dispozici."; $a->strings["Tips for New Members"] = "Tipy pro nové členy"; +$a->strings["Public access denied."] = "Veřejný přístup odepřen."; $a->strings["No videos selected"] = "Není vybráno žádné video"; $a->strings["Access to this item is restricted."] = "Přístup k této položce je omezen."; -$a->strings["View Video"] = "Zobrazit video"; $a->strings["View Album"] = "Zobrazit album"; $a->strings["Recent Videos"] = "Aktuální Videa"; $a->strings["Upload New Videos"] = "Nahrát nová videa"; -$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s označen uživatelem %2\$s %3\$s s %4\$s"; +$a->strings["Manage Identities and/or Pages"] = "Správa identit a / nebo stránek"; +$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Přepnutí mezi různými identitami nebo komunitními/skupinovými stránkami, které sdílí Vaše detaily účtu, nebo kterým jste přidělili oprávnění nastavovat přístupová práva."; +$a->strings["Select an identity to manage: "] = "Vyberte identitu pro správu: "; +$a->strings["Item not found"] = "Položka nenalezena"; +$a->strings["Edit post"] = "Upravit příspěvek"; +$a->strings["People Search"] = "Vyhledávání lidí"; +$a->strings["No matches"] = "Žádné shody"; +$a->strings["Account approved."] = "Účet schválen."; +$a->strings["Registration revoked for %s"] = "Registrace zrušena pro %s"; +$a->strings["Please login."] = "Přihlaste se, prosím."; +$a->strings["This introduction has already been accepted."] = "Toto pozvání již bylo přijato."; +$a->strings["Profile location is not valid or does not contain profile information."] = "Adresa profilu není platná nebo neobsahuje profilové informace"; +$a->strings["Warning: profile location has no identifiable owner name."] = "Varování: umístění profilu nemá žádné identifikovatelné jméno vlastníka"; +$a->strings["Warning: profile location has no profile photo."] = "Varování: umístění profilu nemá žádnou profilovou fotografii."; +$a->strings["%d required parameter was not found at the given location"] = array( + 0 => "%d požadovaný parametr nebyl nalezen na daném místě", + 1 => "%d požadované parametry nebyly nalezeny na daném místě", + 2 => "%d požadované parametry nebyly nalezeny na daném místě", +); +$a->strings["Introduction complete."] = "Představení dokončeno."; +$a->strings["Unrecoverable protocol error."] = "Neopravitelná chyba protokolu"; +$a->strings["Profile unavailable."] = "Profil není k dispozici."; +$a->strings["%s has received too many connection requests today."] = "%s dnes obdržel příliš mnoho požadavků na připojení."; +$a->strings["Spam protection measures have been invoked."] = "Ochrana proti spamu byla aktivována"; +$a->strings["Friends are advised to please try again in 24 hours."] = "Přátelům se doporučuje to zkusit znovu za 24 hodin."; +$a->strings["Invalid locator"] = "Neplatný odkaz"; +$a->strings["Invalid email address."] = "Neplatná emailová adresa"; +$a->strings["This account has not been configured for email. Request failed."] = "Tento účet nebyl nastaven pro email. Požadavek nesplněn."; +$a->strings["Unable to resolve your name at the provided location."] = "Nepodařilo se zjistit Vaše jméno na zadané adrese."; +$a->strings["You have already introduced yourself here."] = "Již jste se zde zavedli."; +$a->strings["Apparently you are already friends with %s."] = "Zřejmě jste již přátelé se %s."; +$a->strings["Invalid profile URL."] = "Neplatné URL profilu."; +$a->strings["Your introduction has been sent."] = "Vaše žádost o propojení byla odeslána."; +$a->strings["Please login to confirm introduction."] = "Prosím přihlašte se k potvrzení žádosti o propojení."; +$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Jste přihlášeni pod nesprávnou identitou Prosím, přihlaste se do tohoto profilu."; +$a->strings["Hide this contact"] = "Skrýt tento kontakt"; +$a->strings["Welcome home %s."] = "Vítejte doma %s."; +$a->strings["Please confirm your introduction/connection request to %s."] = "Prosím potvrďte Vaši žádost o propojení %s."; +$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Prosím zadejte Vaši adresu identity jedné z následujících podporovaných komunikačních sítí:"; +$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = "Pokud ještě nejste členem svobodné sociální sítě, následujte tento odkaz k nalezení veřejného Friendica serveru a přidejte se k nám ještě dnes."; +$a->strings["Friend/Connection Request"] = "Požadavek o přátelství / kontaktování"; +$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Příklady: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; +$a->strings["Please answer the following:"] = "Odpovězte, prosím, následující:"; +$a->strings["Does %s know you?"] = "Zná Vás uživatel %s ?"; +$a->strings["Add a personal note:"] = "Přidat osobní poznámku:"; +$a->strings["StatusNet/Federated Social Web"] = "StatusNet / Federativní Sociální Web"; +$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - prosím nepoužívejte tento formulář. Místo toho zadejte %s do Vašeho Diaspora vyhledávacího pole."; +$a->strings["Your Identity Address:"] = "Verze PHP pro příkazový řádek na Vašem systému nemá povolen \"register_argc_argv\"."; +$a->strings["Submit Request"] = "Odeslat žádost"; +$a->strings["Files"] = "Soubory"; +$a->strings["Authorize application connection"] = "Povolit připojení aplikacím"; +$a->strings["Return to your app and insert this Securty Code:"] = "Vraťte se do vaší aplikace a zadejte tento bezpečnostní kód:"; +$a->strings["Please login to continue."] = "Pro pokračování se prosím přihlaste."; +$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Chcete umožnit této aplikaci přístup k vašim příspěvkům a kontaktům a/nebo k vytváření Vašich nových příspěvků?"; +$a->strings["Do you really want to delete this suggestion?"] = "Opravdu chcete smazat tento návrh?"; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Nejsou dostupné žádné návrhy. Pokud je toto nový server, zkuste to znovu za 24 hodin."; +$a->strings["Ignore/Hide"] = "Ignorovat / skrýt"; +$a->strings["Contacts who are not members of a group"] = "Kontakty, které nejsou členy skupiny"; +$a->strings["Contact not found."] = "Kontakt nenalezen."; $a->strings["Friend suggestion sent."] = "Návrhy přátelství odeslány "; $a->strings["Suggest Friends"] = "Navrhněte přátelé"; $a->strings["Suggest a friend for %s"] = "Navrhněte přátelé pro uživatele %s"; -$a->strings["No valid account found."] = "Nenalezen žádný platný účet."; -$a->strings["Password reset request issued. Check your email."] = "Žádost o obnovení hesla vyřízena. Zkontrolujte Vaši e-mailovou schránku."; -$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."] = "\n\t\tDrahý %1\$s,\n\t\t\tNa \"%2\$s\" jsme obdrželi požadavek na obnovu vašeho hesla \n\t\tpassword. Pro potvrzení žádosti prosím klikněte na zaslaný verifikační odkaz níže nebo si ho zkopírujte do adresní řádky prohlížeče.\n\n\t\tPokud jste tuto žádost nezasílaliI prosím na uvedený odkaz neklikejte a tento email smažte.\n\n\t\tVaše heslo nebude změněno dokud nebudeme moci oveřit, že jste autorem této žádosti."; -$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"] = "\n\t\tKlikněte na následující odkaz pro potvrzení Vaší identity:\n\n\t\t%1\$s\n\n\t\tNásledně obdržíte zprávu obsahující nové heslo.\n\t\tHeslo si můžete si změnit na stránce nastavení účtu poté, co se přihlásíte.\n\n\t\tVaše přihlašovací údaje jsou následující:\n\n\t\tUmístění webu:\t%2\$s\n\t\tPřihlašovací jméno:\t%3\$s"; -$a->strings["Password reset requested at %s"] = "Na %s bylo zažádáno o resetování hesla"; -$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Žádost nemohla být ověřena. (Možná jste ji odeslali již dříve.) Obnovení hesla se nezdařilo."; -$a->strings["Password Reset"] = "Obnovení hesla"; -$a->strings["Your password has been reset as requested."] = "Vaše heslo bylo na Vaše přání resetováno."; -$a->strings["Your new password is"] = "Někdo Vám napsal na Vaši profilovou stránku"; -$a->strings["Save or copy your new password - and then"] = "Uložte si nebo zkopírujte nové heslo - a pak"; -$a->strings["click here to login"] = "klikněte zde pro přihlášení"; -$a->strings["Your password may be changed from the Settings page after successful login."] = "Nezdá se, že by to bylo Vaše celé jméno (křestní jméno a příjmení)."; -$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"] = "\n\t\t\t\tDrahý %1\$s,\n⇥⇥⇥⇥⇥Vaše heslo bylo na požádání změněno. Prosím uchovejte si tuto informaci (nebo si změntě heslo ihned na něco, co si budete pamatovat).\t"; -$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"] = "\n\t\t\t\tVaše přihlašovací údaje jsou následující:\n\n\t\t\t\tUmístění webu:\t%1\$s\n\t\t\t\tPřihlašovací jméno:\t%2\$s\n\t\t\t\tHeslo:\t%3\$s\n\n\t\t\t\tHeslo si můžete si změnit na stránce nastavení účtu poté, co se přihlásíte.\n\t\t\t"; -$a->strings["Your password has been changed at %s"] = "Vaše heslo bylo změněno na %s"; -$a->strings["Forgot your Password?"] = "Zapomněli jste heslo?"; -$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Zadejte svůj e-mailovou adresu a odešlete žádost o zaslání Vašeho nového hesla. Poté zkontrolujte svůj e-mail pro další instrukce."; -$a->strings["Nickname or Email: "] = "Přezdívka nebo e-mail: "; -$a->strings["Reset"] = "Reset"; -$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s má rád %2\$s' na %3\$s"; -$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s nemá rád %2\$s na %3\$s"; -$a->strings["{0} wants to be your friend"] = "{0} chce být Vaším přítelem"; -$a->strings["{0} sent you a message"] = "{0} vám poslal zprávu"; -$a->strings["{0} requested registration"] = "{0} požaduje registraci"; -$a->strings["{0} commented %s's post"] = "{0} komentoval příspěvek uživatele %s"; -$a->strings["{0} liked %s's post"] = "{0} má rád příspěvek uživatele %s"; -$a->strings["{0} disliked %s's post"] = "{0} nemá rád příspěvek uživatele %s"; -$a->strings["{0} is now friends with %s"] = "{0} se skamarádil s %s"; -$a->strings["{0} posted"] = "{0} zasláno"; -$a->strings["{0} tagged %s's post with #%s"] = "{0} označen %s' příspěvek s #%s"; -$a->strings["{0} mentioned you in a post"] = "{0} vás zmínil v příspěvku"; +$a->strings["link"] = "odkaz"; $a->strings["No contacts."] = "Žádné kontakty."; -$a->strings["View Contacts"] = "Zobrazit kontakty"; -$a->strings["Invalid request identifier."] = "Neplatný identifikátor požadavku."; -$a->strings["Discard"] = "Odstranit"; -$a->strings["System"] = "Systém"; -$a->strings["Network"] = "Síť"; -$a->strings["Personal"] = "Osobní"; -$a->strings["Home"] = "Domů"; -$a->strings["Introductions"] = "Představení"; -$a->strings["Show Ignored Requests"] = "Zobrazit ignorované žádosti"; -$a->strings["Hide Ignored Requests"] = "Skrýt ignorované žádosti"; -$a->strings["Notification type: "] = "Typ oznámení: "; -$a->strings["Friend Suggestion"] = "Návrh přátelství"; -$a->strings["suggested by %s"] = "navrhl %s"; -$a->strings["Post a new friend activity"] = "Zveřejnit aktivitu nového přítele."; -$a->strings["if applicable"] = "je-li použitelné"; -$a->strings["Approve"] = "Schválit"; -$a->strings["Claims to be known to you: "] = "Vaši údajní známí: "; -$a->strings["yes"] = "ano"; -$a->strings["no"] = "ne"; -$a->strings["Approve as: "] = "Schválit jako: "; -$a->strings["Friend"] = "Přítel"; -$a->strings["Sharer"] = "Sdílené"; -$a->strings["Fan/Admirer"] = "Fanoušek / obdivovatel"; -$a->strings["Friend/Connect Request"] = "Přítel / žádost o připojení"; -$a->strings["New Follower"] = "Nový následovník"; -$a->strings["No introductions."] = "Žádné představení."; -$a->strings["Notifications"] = "Upozornění"; -$a->strings["%s liked %s's post"] = "Uživateli %s se líbí příspěvek uživatele %s"; -$a->strings["%s disliked %s's post"] = "Uživateli %s se nelíbí příspěvek uživatele %s"; -$a->strings["%s is now friends with %s"] = "%s se nyní přátelí s %s"; -$a->strings["%s created a new post"] = "%s vytvořil nový příspěvek"; -$a->strings["%s commented on %s's post"] = "%s okomentoval příspěvek uživatele %s'"; -$a->strings["No more network notifications."] = "Žádné další síťové upozornění."; -$a->strings["Network Notifications"] = "Upozornění Sítě"; -$a->strings["No more system notifications."] = "Žádné další systémová upozornění."; -$a->strings["System Notifications"] = "Systémová upozornění"; -$a->strings["No more personal notifications."] = "Žádné další osobní upozornění."; -$a->strings["Personal Notifications"] = "Osobní upozornění"; -$a->strings["No more home notifications."] = "Žádné další domácí upozornění."; -$a->strings["Home Notifications"] = "Upozornění na vstupní straně"; -$a->strings["Source (bbcode) text:"] = "Zdrojový text (bbcode):"; -$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Zdrojový (Diaspora) text k převedení do BB kódování:"; -$a->strings["Source input: "] = "Zdrojový vstup: "; -$a->strings["bb2html (raw HTML): "] = "bb2html (raw 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): "] = "Vstupní data (ve formátu Diaspora): "; -$a->strings["diaspora2bb: "] = "diaspora2bb: "; -$a->strings["Nothing new here"] = "Zde není nic nového"; -$a->strings["Clear notifications"] = "Smazat notifikace"; -$a->strings["New Message"] = "Nová zpráva"; -$a->strings["No recipient selected."] = "Nevybrán příjemce."; -$a->strings["Unable to locate contact information."] = "Nepodařilo se najít kontaktní informace."; -$a->strings["Message could not be sent."] = "Zprávu se nepodařilo odeslat."; -$a->strings["Message collection failure."] = "Sběr zpráv selhal."; -$a->strings["Message sent."] = "Zpráva odeslána."; -$a->strings["Messages"] = "Zprávy"; -$a->strings["Do you really want to delete this message?"] = "Opravdu chcete smazat tuto zprávu?"; -$a->strings["Message deleted."] = "Zpráva odstraněna."; -$a->strings["Conversation removed."] = "Konverzace odstraněna."; -$a->strings["Please enter a link URL:"] = "Zadejte prosím URL odkaz:"; -$a->strings["Send Private Message"] = "Odeslat soukromou zprávu"; -$a->strings["To:"] = "Adresát:"; -$a->strings["Subject:"] = "Předmět:"; -$a->strings["Your message:"] = "Vaše zpráva:"; -$a->strings["Upload photo"] = "Nahrát fotografii"; -$a->strings["Insert web link"] = "Vložit webový odkaz"; -$a->strings["Please wait"] = "Čekejte prosím"; -$a->strings["No messages."] = "Žádné zprávy."; -$a->strings["Unknown sender - %s"] = "Neznámý odesilatel - %s"; -$a->strings["You and %s"] = "Vy a %s"; -$a->strings["%s and You"] = "%s a Vy"; -$a->strings["Delete conversation"] = "Odstranit konverzaci"; -$a->strings["D, d M Y - g:i A"] = "D M R - g:i A"; -$a->strings["%d message"] = array( - 0 => "%d zpráva", - 1 => "%d zprávy", - 2 => "%d zpráv", -); -$a->strings["Message not available."] = "Zpráva není k dispozici."; -$a->strings["Delete message"] = "Smazat zprávu"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Není k dispozici zabezpečená komunikace. Možná budete schopni reagovat z odesilatelovy profilové stránky."; -$a->strings["Send Reply"] = "Poslat odpověď"; -$a->strings["[Embedded content - reload page to view]"] = "[Vložený obsah - obnovte stránku pro zobrazení]"; -$a->strings["Contact settings applied."] = "Nastavení kontaktu změněno"; -$a->strings["Contact update failed."] = "Aktualizace kontaktu selhala."; -$a->strings["Repair Contact Settings"] = "Opravit nastavení kontaktu"; -$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "Varování: Toto je velmi pokročilé a pokud zadáte nesprávné informace, Vaše komunikace s tímto kontaktem může přestat fungovat."; -$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Prosím použijte ihned v prohlížeči tlačítko \"zpět\" pokud si nejste jistí co dělat na této stránce."; -$a->strings["Return to contact editor"] = "Návrat k editoru kontaktu"; -$a->strings["No mirroring"] = "Žádné zrcadlení"; -$a->strings["Mirror as forwarded posting"] = "Zrcadlit pro přeposlané příspěvky"; -$a->strings["Mirror as my own posting"] = "Zrcadlit jako mé vlastní příspěvky"; -$a->strings["Name"] = "Jméno"; -$a->strings["Account Nickname"] = "Přezdívka účtu"; -$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - upřednostněno před Jménem/Přezdívkou"; -$a->strings["Account URL"] = "URL adresa účtu"; -$a->strings["Friend Request URL"] = "Žádost o přátelství URL"; -$a->strings["Friend Confirm URL"] = "URL adresa potvrzení přátelství"; -$a->strings["Notification Endpoint URL"] = "Notifikační URL adresa"; -$a->strings["Poll/Feed URL"] = "Poll/Feed URL adresa"; -$a->strings["New photo from this URL"] = "Nové foto z této URL adresy"; -$a->strings["Remote Self"] = "Remote Self"; -$a->strings["Mirror postings from this contact"] = "Zrcadlení správ od tohoto kontaktu"; -$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Označit tento kontakt jako \"remote_self\", s tímto nastavením freindica bude přeposílat všechny nové příspěvky od tohoto kontaktu."; -$a->strings["Login"] = "Přihlásit se"; -$a->strings["The post was created"] = "Příspěvek byl vytvořen"; -$a->strings["Access denied."] = "Přístup odmítnut"; -$a->strings["People Search"] = "Vyhledávání lidí"; -$a->strings["No matches"] = "Žádné shody"; -$a->strings["Photos"] = "Fotografie"; -$a->strings["Files"] = "Soubory"; -$a->strings["Contacts who are not members of a group"] = "Kontakty, které nejsou členy skupiny"; $a->strings["Theme settings updated."] = "Nastavení téma zobrazení bylo aktualizováno."; $a->strings["Site"] = "Web"; $a->strings["Users"] = "Uživatelé"; -$a->strings["Plugins"] = "Pluginy"; $a->strings["Themes"] = "Témata"; $a->strings["DB updates"] = "Aktualizace databáze"; $a->strings["Logs"] = "Logy"; $a->strings["probe address"] = "vyzkoušet adresu"; $a->strings["check webfinger"] = "vyzkoušet webfinger"; -$a->strings["Admin"] = "Administrace"; $a->strings["Plugin Features"] = "Funkčnosti rozšíření"; $a->strings["diagnostics"] = "diagnostika"; $a->strings["User registrations waiting for confirmation"] = "Registrace uživatele čeká na potvrzení"; @@ -420,15 +1171,10 @@ $a->strings["Version"] = "Verze"; $a->strings["Active plugins"] = "Aktivní pluginy"; $a->strings["Can not parse base url. Must have at least ://"] = "Nelze zpracovat výchozí url adresu. Musí obsahovat alespoň ://"; $a->strings["Site settings updated."] = "Nastavení webu aktualizováno."; -$a->strings["No special theme for mobile devices"] = "žádné speciální téma pro mobilní zařízení"; $a->strings["No community page"] = "Komunitní stránka neexistuje"; $a->strings["Public postings from users of this site"] = "Počet veřejných příspěvků od uživatele na této stránce"; $a->strings["Global community page"] = "Globální komunitní stránka"; $a->strings["At post arrival"] = "Při obdržení příspěvku"; -$a->strings["Frequently"] = "Často"; -$a->strings["Hourly"] = "každou hodinu"; -$a->strings["Twice daily"] = "Dvakrát denně"; -$a->strings["Daily"] = "denně"; $a->strings["Multi user instance"] = "Více uživatelská instance"; $a->strings["Closed"] = "Uzavřeno"; $a->strings["Requires approval"] = "Vyžaduje schválení"; @@ -436,8 +1182,6 @@ $a->strings["Open"] = "Otevřená"; $a->strings["No SSL policy, links will track page SSL state"] = "Žádná SSL politika, odkazy budou následovat stránky SSL stav"; $a->strings["Force all links to use SSL"] = "Vyžadovat u všech odkazů použití SSL"; $a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Certifikát podepsaný sám sebou, použít SSL pouze pro lokální odkazy (nedoporučeno)"; -$a->strings["Save Settings"] = "Uložit Nastavení"; -$a->strings["Registration"] = "Registrace"; $a->strings["File upload"] = "Nahrání souborů"; $a->strings["Policies"] = "Politiky"; $a->strings["Advanced"] = "Pokročilé"; @@ -569,7 +1313,6 @@ $a->strings["Mark success (if update was manually applied)"] = "Označit za úsp $a->strings["Attempt to execute this update step automatically"] = "Pokusit se provést tuto aktualizaci automaticky."; $a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tthe administrator of %2\$s has set up an account for you."] = "\n\t\t\tDrahý %1\$s,\n\t\t\t\tadministrátor webu %2\$s pro Vás vytvořil uživatelský účet."; $a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t\t%2\$s\n\t\t\tPassword:\t\t%3\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tThank you and welcome to %4\$s."] = "\n\t\t\tVaše přihlašovací údaje jsou následující:\n\n\t\t\tAdresa webu: \t%1\$s\n\t\t\tpřihlašovací jméno:\t\t%2\$s\n\t\t\theslo:\t\t%3\$s\n\n\t\t\tHeslo si můžete změnit na stránce \"Nastavení\" vašeho účtu poté, co se přihlásíte.\n\n\t\t\tProsím věnujte pár chvil revizi dalšího nastavení vašeho účtu na dané stránce.\n\n\t\t\tTaké su můžete přidat nějaké základní informace do svého výchozího profilu (na stránce \"Profily\"), takže ostatní lidé vás snáze najdou. \n\n\t\t\tDoporučujeme Vám uvést celé jméno a i foto. Přidáním nějakých \"klíčových slov\" (velmi užitečné pro hledání nových přátel) a možná také zemi, ve které žijete, pokud nechcete být více konkrétní.\n\n\t\t\tPlně resepktujeme vaše právo na soukromí a nic z výše uvedeného není povinné. Pokud jste zde nový a neznáte zde nikoho, uvedením daných informací můžete získat nové přátele.\n\n\t\t\tDíky a vítejte na %4\$s."; -$a->strings["Registration details for %s"] = "Registrační údaje pro %s"; $a->strings["%s user blocked/unblocked"] = array( 0 => "%s uživatel blokován/odblokován", 1 => "%s uživatelů blokováno/odblokováno", @@ -588,7 +1331,6 @@ $a->strings["select all"] = "Vybrat vše"; $a->strings["User registrations waiting for confirm"] = "Registrace uživatele čeká na potvrzení"; $a->strings["User waiting for permanent deletion"] = "Uživatel čeká na trvalé smazání"; $a->strings["Request date"] = "Datum žádosti"; -$a->strings["Email"] = "E-mail"; $a->strings["No registrations."] = "Žádné registrace."; $a->strings["Deny"] = "Odmítnout"; $a->strings["Site admin"] = "Site administrátor"; @@ -598,7 +1340,6 @@ $a->strings["Register date"] = "Datum registrace"; $a->strings["Last login"] = "Datum posledního přihlášení"; $a->strings["Last item"] = "Poslední položka"; $a->strings["Deleted since"] = "Smazán od"; -$a->strings["Account"] = "Účet"; $a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Vybraní uživatelé budou smazáni!\\n\\n Vše, co tito uživatelé na těchto stránkách vytvořili, bude trvale odstraněno!\\n\\n Opravdu pokračovat?"; $a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Uživatel {0} bude smazán!\\n\\n Vše, co tento uživatel na těchto stránkách vytvořil, bude trvale odstraněno!\\n\\n Opravdu pokračovat?"; $a->strings["Name of the new user."] = "Jméno nového uživatele"; @@ -627,10 +1368,14 @@ $a->strings["FTP Host"] = "Hostitel FTP"; $a->strings["FTP Path"] = "Cesta FTP"; $a->strings["FTP User"] = "FTP uživatel"; $a->strings["FTP Password"] = "FTP heslo"; +$a->strings["Image exceeds size limit of %d"] = "Obrázek překročil limit velikosti %d"; +$a->strings["Unable to process image."] = "Obrázek není možné zprocesovat"; +$a->strings["Image upload failed."] = "Nahrání obrázku selhalo."; +$a->strings["Welcome to %s"] = "Vítá Vás %s"; +$a->strings["OpenID protocol error. No ID returned."] = "Chyba OpenID protokolu. Navrátilo se žádné ID."; +$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Nenalezen účet a OpenID registrace na tomto serveru není dovolena."; $a->strings["Search Results For:"] = "Výsledky hledání pro:"; $a->strings["Remove term"] = "Odstranit termín"; -$a->strings["Saved Searches"] = "Uložená hledání"; -$a->strings["add"] = "přidat"; $a->strings["Commented Order"] = "Dle komentářů"; $a->strings["Sort by Comment Date"] = "Řadit podle data komentáře"; $a->strings["Posted Order"] = "Dle data"; @@ -654,13 +1399,133 @@ $a->strings["Group: "] = "Skupina: "; $a->strings["Contact: "] = "Kontakt: "; $a->strings["Private messages to this person are at risk of public disclosure."] = "Soukromé zprávy této osobě jsou vystaveny riziku prozrazení."; $a->strings["Invalid contact."] = "Neplatný kontakt."; -$a->strings["Friends of %s"] = "Přátelé uživatele %s"; -$a->strings["No friends to display."] = "Žádní přátelé k zobrazení"; +$a->strings["- select -"] = "- vyber -"; +$a->strings["This is Friendica, version"] = "Toto je Friendica, verze"; +$a->strings["running at web location"] = "běžící na webu"; +$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Pro získání dalších informací o projektu Friendica navštivte prosím Friendica.com."; +$a->strings["Bug reports and issues: please visit"] = "Pro hlášení chyb a námětů na změny navštivte:"; +$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Návrhy, chválu, dary, apod. - prosím piště na \"info\" na Friendica - tečka com"; +$a->strings["Installed plugins/addons/apps:"] = "Instalované pluginy/doplňky/aplikace:"; +$a->strings["No installed plugins/addons/apps"] = "Nejsou žádné nainstalované doplňky/aplikace"; +$a->strings["Applications"] = "Aplikace"; +$a->strings["No installed applications."] = "Žádné nainstalované aplikace."; +$a->strings["Upload New Photos"] = "Nahrát nové fotografie"; +$a->strings["Contact information unavailable"] = "Kontakt byl zablokován"; +$a->strings["Album not found."] = "Album nenalezeno."; +$a->strings["Delete Album"] = "Smazat album"; +$a->strings["Do you really want to delete this photo album and all its photos?"] = "Opravdu chcete smazat toto foto album a všechny jeho fotografie?"; +$a->strings["Delete Photo"] = "Smazat fotografii"; +$a->strings["Do you really want to delete this photo?"] = "Opravdu chcete smazat tuto fotografii?"; +$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s byl označen v %2\$s uživatelem %3\$s"; +$a->strings["a photo"] = "fotografie"; +$a->strings["Image exceeds size limit of "] = "Velikost obrázku překračuje limit velikosti"; +$a->strings["Image file is empty."] = "Soubor obrázku je prázdný."; +$a->strings["No photos selected"] = "Není vybrána žádná fotografie"; +$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Použil jste %1$.2f Mbajtů z %2$.2f Mbajtů úložiště fotografií."; +$a->strings["Upload Photos"] = "Nahrání fotografií "; +$a->strings["New album name: "] = "Název nového alba: "; +$a->strings["or existing album name: "] = "nebo stávající název alba: "; +$a->strings["Do not show a status post for this upload"] = "Nezobrazovat stav pro tento upload"; +$a->strings["Permissions"] = "Oprávnění:"; +$a->strings["Private Photo"] = "Soukromé Fotografie"; +$a->strings["Public Photo"] = "Veřejné Fotografie"; +$a->strings["Edit Album"] = "Edituj album"; +$a->strings["Show Newest First"] = "Zobrazit nejprve nejnovější:"; +$a->strings["Show Oldest First"] = "Zobrazit nejprve nejstarší:"; +$a->strings["View Photo"] = "Zobraz fotografii"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Oprávnění bylo zamítnuto. Přístup k této položce může být omezen."; +$a->strings["Photo not available"] = "Fotografie není k dispozici"; +$a->strings["View photo"] = "Zobrazit obrázek"; +$a->strings["Edit photo"] = "Editovat fotografii"; +$a->strings["Use as profile photo"] = "Použít jako profilovou fotografii"; +$a->strings["View Full Size"] = "Zobrazit v plné velikosti"; +$a->strings["Tags: "] = "Štítky: "; +$a->strings["[Remove any tag]"] = "[Odstranit všechny štítky]"; +$a->strings["Rotate CW (right)"] = "Rotovat po směru hodinových ručiček (doprava)"; +$a->strings["Rotate CCW (left)"] = "Rotovat proti směru hodinových ručiček (doleva)"; +$a->strings["New album name"] = "Nové jméno alba"; +$a->strings["Caption"] = "Titulek"; +$a->strings["Add a Tag"] = "Přidat štítek"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Příklad: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"; +$a->strings["Private photo"] = "Soukromé fotografie"; +$a->strings["Public photo"] = "Veřejné fotografie"; +$a->strings["Recent Photos"] = "Aktuální fotografie"; +$a->strings["The post was created"] = "Příspěvek byl vytvořen"; +$a->strings["Contact added"] = "Kontakt přidán"; +$a->strings["Move account"] = "Přesunout účet"; +$a->strings["You can import an account from another Friendica server."] = "Můžete importovat účet z jiného Friendica serveru."; +$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."] = "Musíte exportovat svůj účet na sterém serveru a nahrát ho zde. My následně vytvoříme Váš původní účet zde včetně všech kontaktů. Zároveň se pokusíme informovat všechny Vaše přátele, že jste se sem přestěhovali."; +$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Tato funkčnost je experimentální. Nemůžeme importovat kontakty z OSStatus sítí (statusnet/identi.ca) nebo z Diaspory"; +$a->strings["Account file"] = "Soubor s účtem"; +$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "K exportu Vašeho účtu, jděte do \"Nastavení->Export vašich osobních dat\" a zvolte \" Export účtu\""; +$a->strings["Total invitation limit exceeded."] = "Celkový limit pozvánek byl překročen"; +$a->strings["%s : Not a valid email address."] = "%s : není platná e-mailová adresa."; +$a->strings["Please join us on Friendica"] = "Prosím přidejte se k nám na Friendice"; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limit pozvánek byl překročen. Prosím kontaktujte vašeho administrátora webu."; +$a->strings["%s : Message delivery failed."] = "%s : Doručení zprávy se nezdařilo."; +$a->strings["%d message sent."] = array( + 0 => "%d zpráva odeslána.", + 1 => "%d zprávy odeslány.", + 2 => "%d zprávy odeslány.", +); +$a->strings["You have no more invitations available"] = "Nemáte k dispozici žádné další pozvánky"; +$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Navštivte %s pro seznam veřejných serverů, na kterých se můžete přidat. Členové Friendica se mohou navzájem propojovat, stejně tak jako se mohou přiopojit se členy mnoha dalších sociálních sítí."; +$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "K akceptaci této pozvánky prosím navštivte a registrujte se na %s nebo na kterékoliv jiném veřejném Friendica serveru."; +$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Friendica servery jsou všechny propojené a vytváří tak rozsáhlou sociální síť s důrazem na soukromý a je pod kontrolou svých členů. Členové se mohou propojovat s mnoha dalšími tradičními sociálními sítěmi. Navštivte %s pro seznam alternativních Friendica serverů kde se můžete přidat."; +$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Omlouváme se. Systém nyní není nastaven tak, aby se připojil k ostatním veřejným serverům nebo umožnil pozvat nové členy."; +$a->strings["Send invitations"] = "Poslat pozvánky"; +$a->strings["Enter email addresses, one per line:"] = "Zadejte e-mailové adresy, jednu na řádek:"; +$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Jste srdečně pozván se připojit ke mně a k mým blízkým přátelům na Friendica - a pomoci nám vytvořit lepší sociální síť."; +$a->strings["You will need to supply this invitation code: \$invite_code"] = "Budete muset zadat kód této pozvánky: \$invite_code"; +$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Jakmile se zaregistrujete, prosím spojte se se mnou přes mou profilovu stránku na:"; +$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Pro více informací o Friendica projektu a o tom, proč je tak důležitý, prosím navštivte http://friendica.com"; +$a->strings["Access denied."] = "Přístup odmítnut"; +$a->strings["No valid account found."] = "Nenalezen žádný platný účet."; +$a->strings["Password reset request issued. Check your email."] = "Žádost o obnovení hesla vyřízena. Zkontrolujte Vaši e-mailovou schránku."; +$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."] = "\n\t\tDrahý %1\$s,\n\t\t\tNa \"%2\$s\" jsme obdrželi požadavek na obnovu vašeho hesla \n\t\tpassword. Pro potvrzení žádosti prosím klikněte na zaslaný verifikační odkaz níže nebo si ho zkopírujte do adresní řádky prohlížeče.\n\n\t\tPokud jste tuto žádost nezasílaliI prosím na uvedený odkaz neklikejte a tento email smažte.\n\n\t\tVaše heslo nebude změněno dokud nebudeme moci oveřit, že jste autorem této žádosti."; +$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"] = "\n\t\tKlikněte na následující odkaz pro potvrzení Vaší identity:\n\n\t\t%1\$s\n\n\t\tNásledně obdržíte zprávu obsahující nové heslo.\n\t\tHeslo si můžete si změnit na stránce nastavení účtu poté, co se přihlásíte.\n\n\t\tVaše přihlašovací údaje jsou následující:\n\n\t\tUmístění webu:\t%2\$s\n\t\tPřihlašovací jméno:\t%3\$s"; +$a->strings["Password reset requested at %s"] = "Na %s bylo zažádáno o resetování hesla"; +$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Žádost nemohla být ověřena. (Možná jste ji odeslali již dříve.) Obnovení hesla se nezdařilo."; +$a->strings["Your password has been reset as requested."] = "Vaše heslo bylo na Vaše přání resetováno."; +$a->strings["Your new password is"] = "Někdo Vám napsal na Vaši profilovou stránku"; +$a->strings["Save or copy your new password - and then"] = "Uložte si nebo zkopírujte nové heslo - a pak"; +$a->strings["click here to login"] = "klikněte zde pro přihlášení"; +$a->strings["Your password may be changed from the Settings page after successful login."] = "Nezdá se, že by to bylo Vaše celé jméno (křestní jméno a příjmení)."; +$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"] = "\n\t\t\t\tDrahý %1\$s,\n⇥⇥⇥⇥⇥Vaše heslo bylo na požádání změněno. Prosím uchovejte si tuto informaci (nebo si změntě heslo ihned na něco, co si budete pamatovat).\t"; +$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"] = "\n\t\t\t\tVaše přihlašovací údaje jsou následující:\n\n\t\t\t\tUmístění webu:\t%1\$s\n\t\t\t\tPřihlašovací jméno:\t%2\$s\n\t\t\t\tHeslo:\t%3\$s\n\n\t\t\t\tHeslo si můžete si změnit na stránce nastavení účtu poté, co se přihlásíte.\n\t\t\t"; +$a->strings["Your password has been changed at %s"] = "Vaše heslo bylo změněno na %s"; +$a->strings["Forgot your Password?"] = "Zapomněli jste heslo?"; +$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Zadejte svůj e-mailovou adresu a odešlete žádost o zaslání Vašeho nového hesla. Poté zkontrolujte svůj e-mail pro další instrukce."; +$a->strings["Nickname or Email: "] = "Přezdívka nebo e-mail: "; +$a->strings["Reset"] = "Reset"; +$a->strings["Source (bbcode) text:"] = "Zdrojový text (bbcode):"; +$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Zdrojový (Diaspora) text k převedení do BB kódování:"; +$a->strings["Source input: "] = "Zdrojový vstup: "; +$a->strings["bb2html (raw HTML): "] = "bb2html (raw 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): "] = "Vstupní data (ve formátu Diaspora): "; +$a->strings["diaspora2bb: "] = "diaspora2bb: "; +$a->strings["Tag removed"] = "Štítek odstraněn"; +$a->strings["Remove Item Tag"] = "Odebrat štítek položky"; +$a->strings["Select a tag to remove: "] = "Vyberte štítek k odebrání: "; +$a->strings["Remove My Account"] = "Odstranit můj účet"; +$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Tímto bude kompletně odstraněn váš účet. Jakmile bude účet odstraněn, nebude už možné ho obnovit."; +$a->strings["Please enter your password for verification:"] = "Prosím, zadejte své heslo pro ověření:"; +$a->strings["Invalid profile identifier."] = "Neplatný identifikátor profilu."; +$a->strings["Profile Visibility Editor"] = "Editor viditelnosti profilu "; +$a->strings["Visible To"] = "Viditelný pro"; +$a->strings["All Contacts (with secure profile access)"] = "Všechny kontakty (se zabezpečeným přístupovým profilem )"; +$a->strings["Profile Match"] = "Shoda profilu"; +$a->strings["No keywords to match. Please add keywords to your default profile."] = "Žádná klíčová slova k porovnání. Prosím, přidejte klíčová slova do Vašeho výchozího profilu."; +$a->strings["is interested in:"] = "zajímá se o:"; $a->strings["Event title and start time are required."] = "Název události a datum začátku jsou vyžadovány."; $a->strings["l, F j"] = "l, F j"; $a->strings["Edit event"] = "Editovat událost"; -$a->strings["link to source"] = "odkaz na zdroj"; -$a->strings["Events"] = "Události"; $a->strings["Create New Event"] = "Vytvořit novou událost"; $a->strings["Previous"] = "Předchozí"; $a->strings["Next"] = "Dále"; @@ -673,55 +1538,114 @@ $a->strings["Finish date/time is not known or not relevant"] = "Datum/čas konce $a->strings["Event Finishes:"] = "Akce končí:"; $a->strings["Adjust for viewer timezone"] = "Nastavit časové pásmo pro uživatele s právem pro čtení"; $a->strings["Description:"] = "Popis:"; -$a->strings["Location:"] = "Místo:"; $a->strings["Title:"] = "Název:"; $a->strings["Share this event"] = "Sdílet tuto událost"; -$a->strings["Select"] = "Vybrat"; -$a->strings["View %s's profile @ %s"] = "Zobrazit profil uživatele %s na %s"; -$a->strings["%s from %s"] = "%s od %s"; -$a->strings["View in context"] = "Pohled v kontextu"; -$a->strings["%d comment"] = array( - 0 => "%d komentář", - 1 => "%d komentářů", - 2 => "%d komentářů", +$a->strings["{0} wants to be your friend"] = "{0} chce být Vaším přítelem"; +$a->strings["{0} sent you a message"] = "{0} vám poslal zprávu"; +$a->strings["{0} requested registration"] = "{0} požaduje registraci"; +$a->strings["{0} commented %s's post"] = "{0} komentoval příspěvek uživatele %s"; +$a->strings["{0} liked %s's post"] = "{0} má rád příspěvek uživatele %s"; +$a->strings["{0} disliked %s's post"] = "{0} nemá rád příspěvek uživatele %s"; +$a->strings["{0} is now friends with %s"] = "{0} se skamarádil s %s"; +$a->strings["{0} posted"] = "{0} zasláno"; +$a->strings["{0} tagged %s's post with #%s"] = "{0} označen %s' příspěvek s #%s"; +$a->strings["{0} mentioned you in a post"] = "{0} vás zmínil v příspěvku"; +$a->strings["Mood"] = "Nálada"; +$a->strings["Set your current mood and tell your friends"] = "Nastavte svou aktuální náladu a řekněte to Vašim přátelům"; +$a->strings["No results."] = "Žádné výsledky."; +$a->strings["Unable to locate contact information."] = "Nepodařilo se najít kontaktní informace."; +$a->strings["Do you really want to delete this message?"] = "Opravdu chcete smazat tuto zprávu?"; +$a->strings["Message deleted."] = "Zpráva odstraněna."; +$a->strings["Conversation removed."] = "Konverzace odstraněna."; +$a->strings["No messages."] = "Žádné zprávy."; +$a->strings["Unknown sender - %s"] = "Neznámý odesilatel - %s"; +$a->strings["You and %s"] = "Vy a %s"; +$a->strings["%s and You"] = "%s a Vy"; +$a->strings["Delete conversation"] = "Odstranit konverzaci"; +$a->strings["D, d M Y - g:i A"] = "D M R - g:i A"; +$a->strings["%d message"] = array( + 0 => "%d zpráva", + 1 => "%d zprávy", + 2 => "%d zpráv", ); -$a->strings["comment"] = array( - 0 => "", - 1 => "", - 2 => "komentář", -); -$a->strings["show more"] = "zobrazit více"; -$a->strings["Private Message"] = "Soukromá zpráva"; -$a->strings["I like this (toggle)"] = "Líbí se mi to (přepínač)"; -$a->strings["like"] = "má rád"; -$a->strings["I don't like this (toggle)"] = "Nelíbí se mi to (přepínač)"; -$a->strings["dislike"] = "nemá rád"; -$a->strings["Share this"] = "Sdílet toto"; -$a->strings["share"] = "sdílí"; -$a->strings["This is you"] = "Nastavte Vaši polohu"; -$a->strings["Comment"] = "Okomentovat"; -$a->strings["Bold"] = "Tučné"; -$a->strings["Italic"] = "Kurzíva"; -$a->strings["Underline"] = "Podrtžené"; -$a->strings["Quote"] = "Citovat"; -$a->strings["Code"] = "Kód"; -$a->strings["Image"] = "Obrázek"; -$a->strings["Link"] = "Odkaz"; -$a->strings["Video"] = "Video"; -$a->strings["Preview"] = "Náhled"; -$a->strings["Edit"] = "Upravit"; -$a->strings["add star"] = "přidat hvězdu"; -$a->strings["remove star"] = "odebrat hvězdu"; -$a->strings["toggle star status"] = "přepnout hvězdu"; -$a->strings["starred"] = "označeno hvězdou"; -$a->strings["add tag"] = "přidat štítek"; -$a->strings["save to folder"] = "uložit do složky"; -$a->strings["to"] = "pro"; -$a->strings["Wall-to-Wall"] = "Zeď-na-Zeď"; -$a->strings["via Wall-To-Wall:"] = "přes Zeď-na-Zeď "; -$a->strings["Remove My Account"] = "Odstranit můj účet"; -$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Tímto bude kompletně odstraněn váš účet. Jakmile bude účet odstraněn, nebude už možné ho obnovit."; -$a->strings["Please enter your password for verification:"] = "Prosím, zadejte své heslo pro ověření:"; +$a->strings["Message not available."] = "Zpráva není k dispozici."; +$a->strings["Delete message"] = "Smazat zprávu"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Není k dispozici zabezpečená komunikace. Možná budete schopni reagovat z odesilatelovy profilové stránky."; +$a->strings["Send Reply"] = "Poslat odpověď"; +$a->strings["Not available."] = "Není k dispozici."; +$a->strings["Profile not found."] = "Profil nenalezen"; +$a->strings["Profile deleted."] = "Profil smazán."; +$a->strings["Profile-"] = "Profil-"; +$a->strings["New profile created."] = "Nový profil vytvořen."; +$a->strings["Profile unavailable to clone."] = "Profil není možné naklonovat."; +$a->strings["Profile Name is required."] = "Jméno profilu je povinné."; +$a->strings["Marital Status"] = "Rodinný Stav"; +$a->strings["Romantic Partner"] = "Romatický partner"; +$a->strings["Likes"] = "Libí se mi"; +$a->strings["Dislikes"] = "Nelibí se mi"; +$a->strings["Work/Employment"] = "Práce/Zaměstnání"; +$a->strings["Religion"] = "Náboženství"; +$a->strings["Political Views"] = "Politické přesvědčení"; +$a->strings["Gender"] = "Pohlaví"; +$a->strings["Sexual Preference"] = "Sexuální orientace"; +$a->strings["Homepage"] = "Domácí stránka"; +$a->strings["Interests"] = "Zájmy"; +$a->strings["Address"] = "Adresa"; +$a->strings["Location"] = "Lokace"; +$a->strings["Profile updated."] = "Profil aktualizován."; +$a->strings[" and "] = " a "; +$a->strings["public profile"] = "veřejný profil"; +$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s změnil %2\$s na “%3\$s”"; +$a->strings[" - Visit %1\$s's %2\$s"] = " - Navštivte %2\$s uživatele %1\$s"; +$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s aktualizoval %2\$s, změnou %3\$s."; +$a->strings["Hide contacts and friends:"] = "Skrýt kontakty a přátele:"; +$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Skrýt u tohoto profilu Vaše kontakty / seznam přátel před před dalšími uživateli zobrazující si tento profil?"; +$a->strings["Edit Profile Details"] = "Upravit podrobnosti profilu "; +$a->strings["Change Profile Photo"] = "Změna Profilové fotky"; +$a->strings["View this profile"] = "Zobrazit tento profil"; +$a->strings["Create a new profile using these settings"] = "Vytvořit nový profil pomocí tohoto nastavení"; +$a->strings["Clone this profile"] = "Klonovat tento profil"; +$a->strings["Delete this profile"] = "Smazat tento profil"; +$a->strings["Basic information"] = "Základní informace"; +$a->strings["Profile picture"] = "Profilový obrázek"; +$a->strings["Preferences"] = "Nastavení"; +$a->strings["Status information"] = "Statusové informace"; +$a->strings["Additional information"] = "Dodatečné informace"; +$a->strings["Upload Profile Photo"] = "Nahrát profilovou fotografii"; +$a->strings["Profile Name:"] = "Jméno profilu:"; +$a->strings["Your Full Name:"] = "Vaše celé jméno:"; +$a->strings["Title/Description:"] = "Název / Popis:"; +$a->strings["Your Gender:"] = "Vaše pohlaví:"; +$a->strings["Birthday (%s):"] = "Narozeniny uživatele (%s):"; +$a->strings["Street Address:"] = "Ulice:"; +$a->strings["Locality/City:"] = "Město:"; +$a->strings["Postal/Zip Code:"] = "PSČ:"; +$a->strings["Country:"] = "Země:"; +$a->strings["Region/State:"] = "Region / stát:"; +$a->strings[" Marital Status:"] = " Rodinný stav:"; +$a->strings["Who: (if applicable)"] = "Kdo: (pokud je možné)"; +$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Příklady: jan123, Jan Novák, jan@seznam.cz"; +$a->strings["Since [date]:"] = "Od [data]:"; +$a->strings["Homepage URL:"] = "Odkaz na domovskou stránku:"; +$a->strings["Religious Views:"] = "Náboženské přesvědčení:"; +$a->strings["Public Keywords:"] = "Veřejná klíčová slova:"; +$a->strings["Private Keywords:"] = "Soukromá klíčová slova:"; +$a->strings["Example: fishing photography software"] = "Příklad: fishing photography software"; +$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Používá se pro doporučování potenciálních přátel, může být viděno ostatními)"; +$a->strings["(Used for searching profiles, never shown to others)"] = "(Používá se pro vyhledávání profilů, není nikdy zobrazeno ostatním)"; +$a->strings["Tell us about yourself..."] = "Řekněte nám něco o sobě ..."; +$a->strings["Hobbies/Interests"] = "Koníčky/zájmy"; +$a->strings["Contact information and Social Networks"] = "Kontaktní informace a sociální sítě"; +$a->strings["Musical interests"] = "Hudební vkus"; +$a->strings["Books, literature"] = "Knihy, literatura"; +$a->strings["Television"] = "Televize"; +$a->strings["Film/dance/culture/entertainment"] = "Film/tanec/kultura/zábava"; +$a->strings["Love/romance"] = "Láska/romantika"; +$a->strings["Work/employment"] = "Práce/zaměstnání"; +$a->strings["School/education"] = "Škola/vzdělání"; +$a->strings["This is your public profile.
It may be visible to anybody using the internet."] = "Toto je váš veřejný profil.
Ten může být viditelný kýmkoliv na internetu."; +$a->strings["Age: "] = "Věk: "; +$a->strings["Edit/Manage Profiles"] = "Upravit / Spravovat profily"; $a->strings["Friendica Communications Server - Setup"] = "Friendica Komunikační server - Nastavení"; $a->strings["Could not connect to database."] = "Nelze se připojit k databázi."; $a->strings["Could not create table."] = "Nelze vytvořit tabulku."; @@ -783,1028 +1707,113 @@ $a->strings["Url rewrite is working"] = "Url rewrite je funkční."; $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."] = "Databázový konfigurační soubor \".htconfig.php\" nemohl být uložen. Prosím, použijte přiložený text k vytvoření konfiguračního souboru ve vašem kořenovém adresáři webového serveru."; $a->strings["

What next

"] = "

Co dál

"; $a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "Webový instalátor musí být schopen vytvořit soubor s názvem \".htconfig.php\" v hlavním adresáři Vašeho webového serveru ale nyní mu to není umožněno."; -$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Došlo k překročení maximálního počtu zpráv na zeď během jednoho dne. Zpráva %s nedoručena."; -$a->strings["Unable to check your home location."] = "Nebylo možné zjistit Vaši domácí lokaci."; -$a->strings["No recipient."] = "Žádný příjemce."; -$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Pokud si přejete, aby uživatel %s mohl odpovědět, ověřte si zda-li máte povoleno na svém serveru zasílání soukromých zpráv od neznámých odesilatelů."; $a->strings["Help:"] = "Nápověda:"; -$a->strings["Help"] = "Nápověda"; -$a->strings["Not Found"] = "Nenalezen"; -$a->strings["Page not found."] = "Stránka nenalezena"; +$a->strings["Contact settings applied."] = "Nastavení kontaktu změněno"; +$a->strings["Contact update failed."] = "Aktualizace kontaktu selhala."; +$a->strings["Repair Contact Settings"] = "Opravit nastavení kontaktu"; +$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "Varování: Toto je velmi pokročilé a pokud zadáte nesprávné informace, Vaše komunikace s tímto kontaktem může přestat fungovat."; +$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Prosím použijte ihned v prohlížeči tlačítko \"zpět\" pokud si nejste jistí co dělat na této stránce."; +$a->strings["Return to contact editor"] = "Návrat k editoru kontaktu"; +$a->strings["No mirroring"] = "Žádné zrcadlení"; +$a->strings["Mirror as forwarded posting"] = "Zrcadlit pro přeposlané příspěvky"; +$a->strings["Mirror as my own posting"] = "Zrcadlit jako mé vlastní příspěvky"; +$a->strings["Account Nickname"] = "Přezdívka účtu"; +$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - upřednostněno před Jménem/Přezdívkou"; +$a->strings["Account URL"] = "URL adresa účtu"; +$a->strings["Friend Request URL"] = "Žádost o přátelství URL"; +$a->strings["Friend Confirm URL"] = "URL adresa potvrzení přátelství"; +$a->strings["Notification Endpoint URL"] = "Notifikační URL adresa"; +$a->strings["Poll/Feed URL"] = "Poll/Feed URL adresa"; +$a->strings["New photo from this URL"] = "Nové foto z této URL adresy"; +$a->strings["Remote Self"] = "Remote Self"; +$a->strings["Mirror postings from this contact"] = "Zrcadlení správ od tohoto kontaktu"; +$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Označit tento kontakt jako \"remote_self\", s tímto nastavením freindica bude přeposílat všechny nové příspěvky od tohoto kontaktu."; +$a->strings["Welcome to Friendica"] = "Vítejte na Friendica"; +$a->strings["New Member Checklist"] = "Seznam doporučení pro nového člena"; +$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."] = "Rádi bychom vám nabídli několik tipů a odkazů pro začátek. Klikněte na jakoukoliv položku pro zobrazení relevantní stránky. Odkaz na tuto stránku bude viditelný z Vaší domovské stránky po dobu dvou týdnů od Vaší první registrace."; +$a->strings["Getting Started"] = "Začínáme"; +$a->strings["Friendica Walk-Through"] = "Prohlídka Friendica "; +$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Na Vaší stránce Rychlý Start - naleznete stručné představení k Vašemu profilu a záložce Síť, k vytvoření spojení s novými kontakty a nalezení skupin, ke kterým se můžete připojit."; +$a->strings["Go to Your Settings"] = "Navštivte své nastavení"; +$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Na Vaší stránce Nastavení - si změňte Vaše první heslo.\nVěnujte také svou pozornost k adrese identity. Vypadá jako emailová adresa a bude Vám užitečná pro navazování přátelství na svobodné sociální síti."; +$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Prohlédněte si další nastavení, a to zejména nastavení soukromí. Nezveřejnění svého účtu v adresáři je jako mít nezveřejněné telefonní číslo. Obecně platí, že je lepší mít svůj účet zveřejněný, leda by všichni vaši potenciální přátelé věděli, jak vás přesně najít."; +$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Nahrajte si svou profilovou fotku, pokud jste tak již neučinili. Studie ukázaly, že lidé se skutečnými fotografiemi mají desetkrát častěji přátele než lidé, kteří nemají."; +$a->strings["Edit Your Profile"] = "Editujte Váš profil"; +$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Upravit výchozí profil podle vašich představ. Prověřte nastavení pro skrytí Vašeho seznamu přátel a skrytí profilu před neznámými návštěvníky."; +$a->strings["Profile Keywords"] = "Profilová klíčová slova"; +$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Nastavte si nějaká veřejné klíčová slova pro výchozí profil, která popisují Vaše zájmy. Friendika Vám může nalézt další lidi s podobnými zájmy a navrhnout přátelství."; +$a->strings["Connecting"] = "Probíhá pokus o připojení"; +$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Jestliže máte účet na Facebooku, povolte konektor na Facebook a bude možné (na přání) importovat všechny Vaš přátele na Facebooku a všechny Vaše konverzace."; +$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Pokud je toto Váš soukromý server, instalací Facebok doplňku můžete zjednodušit Váš přechod na svobodný sociální web."; +$a->strings["Importing Emails"] = "Importování emaiů"; +$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Pokud chcete importovat své přátele nebo mailové skupiny a komunikovat s nimi, zadejte na Vaší stránce Nastavení kontektoru své přístupové údaje do svého emailového účtu"; +$a->strings["Go to Your Contacts Page"] = "Navštivte Vaši stránku s kontakty"; +$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = "Vaše stránka Kontakty je Vaše brána k nastavování přátelství a propojení s přáteli z dalších sítí. Typicky zadáte jejich emailovou adresu nebo URL adresu jejich serveru prostřednictvím dialogu Přidat nový kontakt."; +$a->strings["Go to Your Site's Directory"] = "Navštivte lokální adresář Friendica"; +$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "Stránka Adresář Vám pomůže najít další lidi na tomto serveru nebo v jiných propojených serverech. Prostřednictvím odkazů Připojení nebo Následovat si prohlédněte jejich profilovou stránku. Uveďte svou vlastní adresu identity, je-li požadována."; +$a->strings["Finding New People"] = "Nalezení nových lidí"; +$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Na bočním panelu stránky s kontakty je několik nástrojů k nalezení nových přátel. Porovnáme lidi dle zájmů, najdeme lidi podle jména nebo zájmu a poskytneme Vám návrhy založené na přátelství v síti přátel. Na zcela novém serveru se návrhy přátelství nabínou obvykle během 24 hodin."; +$a->strings["Group Your Contacts"] = "Seskupte si své kontakty"; +$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Jakmile získáte nějaké přátele, uspořádejte si je do soukromých konverzačních skupin na postranním panelu Vaší stránky Kontakty a pak můžete komunikovat s každou touto skupinu soukromě prostřednictvím stránky Síť."; +$a->strings["Why Aren't My Posts Public?"] = "Proč nejsou mé příspěvky veřejné?"; +$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respektuje Vaše soukromí. Defaultně jsou Vaše příspěvky viditelné pouze lidem, které označíte jako Vaše přátelé. Více informací naleznete v nápovědě na výše uvedeném odkazu"; +$a->strings["Getting Help"] = "Získání nápovědy"; +$a->strings["Go to the Help Section"] = "Navštivte sekci nápovědy"; +$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Na stránkách Nápověda naleznete nejen další podrobnosti o všech funkcích Friendika ale také další zdroje informací."; +$a->strings["Poke/Prod"] = "Šťouchanec"; +$a->strings["poke, prod or do other things to somebody"] = "někoho šťouchnout nebo mu provést jinou věc"; +$a->strings["Recipient"] = "Příjemce"; +$a->strings["Choose what you wish to do to recipient"] = "Vyberte, co si přejete příjemci udělat"; +$a->strings["Make this post private"] = "Změnit tento příspěvek na soukromý"; +$a->strings["Item has been removed."] = "Položka byla odstraněna."; +$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s následuje %3\$s uživatele %2\$s"; $a->strings["%1\$s welcomes %2\$s"] = "%1\$s vítá %2\$s"; -$a->strings["Welcome to %s"] = "Vítá Vás %s"; -$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Omlouváme se, možná je Váš soubor větší než je povolené maximum dle nastavení PHP"; -$a->strings["Or - did you try to upload an empty file?"] = "Nebo - nenahrával jste prázdný soubor?"; -$a->strings["File exceeds size limit of %d"] = "Velikost souboru přesáhla limit %d"; -$a->strings["File upload failed."] = "Nahrání souboru se nezdařilo."; -$a->strings["Profile Match"] = "Shoda profilu"; -$a->strings["No keywords to match. Please add keywords to your default profile."] = "Žádná klíčová slova k porovnání. Prosím, přidejte klíčová slova do Vašeho výchozího profilu."; -$a->strings["is interested in:"] = "zajímá se o:"; -$a->strings["Connect"] = "Spojit"; -$a->strings["link"] = "odkaz"; -$a->strings["Not available."] = "Není k dispozici."; -$a->strings["Community"] = "Komunita"; -$a->strings["No results."] = "Žádné výsledky."; -$a->strings["everybody"] = "Žádost o připojení selhala nebo byla zrušena."; -$a->strings["Additional features"] = "Další funkčnosti"; -$a->strings["Display"] = "Zobrazení"; -$a->strings["Social Networks"] = "Sociální sítě"; -$a->strings["Delegations"] = "Delegace"; -$a->strings["Connected apps"] = "Propojené aplikace"; -$a->strings["Export personal data"] = "Export osobních údajů"; -$a->strings["Remove account"] = "Odstranit účet"; -$a->strings["Missing some important data!"] = "Chybí některé důležité údaje!"; -$a->strings["Failed to connect with email account using the settings provided."] = "Nepodařilo se připojit k e-mailovému účtu pomocí dodaného nastavení."; -$a->strings["Email settings updated."] = "Nastavení e-mailu aktualizována."; -$a->strings["Features updated"] = "Aktualizované funkčnosti"; -$a->strings["Relocate message has been send to your contacts"] = "Správa o změně umístění byla odeslána vašim kontaktům"; -$a->strings["Passwords do not match. Password unchanged."] = "Hesla se neshodují. Heslo nebylo změněno."; -$a->strings["Empty passwords are not allowed. Password unchanged."] = "Prázdné hesla nejsou povolena. Heslo nebylo změněno."; -$a->strings["Wrong password."] = "Špatné heslo."; -$a->strings["Password changed."] = "Heslo bylo změněno."; -$a->strings["Password update failed. Please try again."] = "Aktualizace hesla se nezdařila. Zkuste to prosím znovu."; -$a->strings[" Please use a shorter name."] = "Prosím použijte kratší jméno."; -$a->strings[" Name too short."] = "Jméno je příliš krátké."; -$a->strings["Wrong Password"] = "Špatné heslo"; -$a->strings[" Not valid email."] = "Neplatný e-mail."; -$a->strings[" Cannot change to that email."] = "Nelze provést změnu na tento e-mail."; -$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Soukromé fórum nemá nastaveno zabezpečení. Používá se defaultní soukromá skupina."; -$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Soukromé fórum nemá nastaveno zabezpečení a ani žádnou defaultní soukromou skupinu."; -$a->strings["Settings updated."] = "Nastavení aktualizováno."; -$a->strings["Add application"] = "Přidat aplikaci"; -$a->strings["Consumer Key"] = "Consumer Key"; -$a->strings["Consumer Secret"] = "Consumer Secret"; -$a->strings["Redirect"] = "Přesměrování"; -$a->strings["Icon url"] = "URL ikony"; -$a->strings["You can't edit this application."] = "Nemůžete editovat tuto aplikaci."; -$a->strings["Connected Apps"] = "Připojené aplikace"; -$a->strings["Client key starts with"] = "Klienský klíč začíná"; -$a->strings["No name"] = "Bez názvu"; -$a->strings["Remove authorization"] = "Odstranit oprávnění"; -$a->strings["No Plugin settings configured"] = "Žádný doplněk není nastaven"; -$a->strings["Plugin Settings"] = "Nastavení doplňku"; -$a->strings["Off"] = "Vypnuto"; -$a->strings["On"] = "Zapnuto"; -$a->strings["Additional Features"] = "Další Funkčnosti"; -$a->strings["Built-in support for %s connectivity is %s"] = "Vestavěná podpora pro připojení s %s je %s"; -$a->strings["Diaspora"] = "Diaspora"; -$a->strings["enabled"] = "povoleno"; -$a->strings["disabled"] = "zakázáno"; -$a->strings["StatusNet"] = "StatusNet"; -$a->strings["Email access is disabled on this site."] = "Přístup k elektronické poště je na tomto serveru zakázán."; -$a->strings["Email/Mailbox Setup"] = "Nastavení e-mailu"; -$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Pokud chcete komunikovat pomocí této služby s Vašimi kontakty z e-mailu (volitelné), uveďte, jak se připojit k Vaší e-mailové schránce."; -$a->strings["Last successful email check:"] = "Poslední úspěšná kontrola e-mailu:"; -$a->strings["IMAP server name:"] = "jméno IMAP serveru:"; -$a->strings["IMAP port:"] = "IMAP port:"; -$a->strings["Security:"] = "Zabezpečení:"; -$a->strings["None"] = "Žádný"; -$a->strings["Email login name:"] = "přihlašovací jméno k e-mailu:"; -$a->strings["Email password:"] = "heslo k Vašemu e-mailu:"; -$a->strings["Reply-to address:"] = "Odpovědět na adresu:"; -$a->strings["Send public posts to all email contacts:"] = "Poslat veřejné příspěvky na všechny e-mailové kontakty:"; -$a->strings["Action after import:"] = "Akce po importu:"; -$a->strings["Mark as seen"] = "Označit jako přečtené"; -$a->strings["Move to folder"] = "Přesunout do složky"; -$a->strings["Move to folder:"] = "Přesunout do složky:"; -$a->strings["Display Settings"] = "Nastavení Zobrazení"; -$a->strings["Display Theme:"] = "Vybrat grafickou šablonu:"; -$a->strings["Mobile Theme:"] = "Téma pro mobilní zařízení:"; -$a->strings["Update browser every xx seconds"] = "Aktualizovat prohlížeč každých xx sekund"; -$a->strings["Minimum of 10 seconds, no maximum"] = "Minimum 10 sekund, žádné maximum."; -$a->strings["Number of items to display per page:"] = "Počet položek zobrazených na stránce:"; -$a->strings["Maximum of 100 items"] = "Maximum 100 položek"; -$a->strings["Number of items to display per page when viewed from mobile device:"] = "Počet položek ke zobrazení na stránce při zobrazení na mobilním zařízení:"; -$a->strings["Don't show emoticons"] = "Nezobrazovat emotikony"; -$a->strings["Don't show notices"] = "Nezobrazovat oznámění"; -$a->strings["Infinite scroll"] = "Nekonečné posouvání"; -$a->strings["Automatic updates only at the top of the network page"] = "Automatické aktualizace pouze na hlavní stránce Síť."; -$a->strings["User Types"] = "Uživatelské typy"; -$a->strings["Community Types"] = "Komunitní typy"; -$a->strings["Normal Account Page"] = "Normální stránka účtu"; -$a->strings["This account is a normal personal profile"] = "Tento účet je běžný osobní profil"; -$a->strings["Soapbox Page"] = "Stránka \"Soapbox\""; -$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Automaticky schválit všechna spojení / přátelství jako fanoušky s právem pouze ke čtení"; -$a->strings["Community Forum/Celebrity Account"] = "Komunitní fórum/ účet celebrity"; -$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Automaticky schvalovat všechny žádosti o spojení / přátelství, jako fanoušky s právem ke čtení."; -$a->strings["Automatic Friend Page"] = "Automatická stránka přítele"; -$a->strings["Automatically approve all connection/friend requests as friends"] = "Automaticky schvalovat všechny žádosti o spojení / přátelství jako přátele"; -$a->strings["Private Forum [Experimental]"] = "Soukromé fórum [Experimentální]"; -$a->strings["Private forum - approved members only"] = "Soukromé fórum - pouze pro schválené členy"; -$a->strings["OpenID:"] = "OpenID:"; -$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Volitelné) Povolit OpenID pro přihlášení k tomuto účtu."; -$a->strings["Publish your default profile in your local site directory?"] = "Publikovat Váš výchozí profil v místním adresáři webu?"; -$a->strings["No"] = "Ne"; -$a->strings["Publish your default profile in the global social directory?"] = "Publikovat Váš výchozí profil v globální sociálním adresáři?"; -$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Skrýt Vaše kontaktní údaje a seznam přátel před návštěvníky ve Vašem výchozím profilu?"; -$a->strings["Hide your profile details from unknown viewers?"] = "Skrýt Vaše profilové detaily před neznámými uživateli?"; -$a->strings["If enabled, posting public messages to Diaspora and other networks isn't possible."] = "Pokud je povoleno, není možné zasílání veřejných příspěvků do Diaspory a dalších sítí."; -$a->strings["Allow friends to post to your profile page?"] = "Povolit přátelům umisťování příspěvků na vaši profilovou stránku?"; -$a->strings["Allow friends to tag your posts?"] = "Povolit přátelům označovat Vaše příspěvky?"; -$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Chcete nám povolit abychom vás navrhovali jako přátelé pro nové členy?"; -$a->strings["Permit unknown people to send you private mail?"] = "Povolit neznámým lidem Vám zasílat soukromé zprávy?"; -$a->strings["Profile is not published."] = "Profil není zveřejněn."; -$a->strings["Your Identity Address is"] = "Vaše adresa identity je"; -$a->strings["Automatically expire posts after this many days:"] = "Automaticky expirovat příspěvky po zadaném počtu dní:"; -$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Pokud je prázdné, příspěvky nebudou nikdy expirovat. Expirované příspěvky budou vymazány"; -$a->strings["Advanced expiration settings"] = "Pokročilé nastavení expirací"; -$a->strings["Advanced Expiration"] = "Nastavení expirací"; -$a->strings["Expire posts:"] = "Expirovat příspěvky:"; -$a->strings["Expire personal notes:"] = "Expirovat osobní poznámky:"; -$a->strings["Expire starred posts:"] = "Expirovat příspěvky s hvězdou:"; -$a->strings["Expire photos:"] = "Expirovat fotografie:"; -$a->strings["Only expire posts by others:"] = "Přízpěvky expirovat pouze ostatními:"; -$a->strings["Account Settings"] = "Nastavení účtu"; -$a->strings["Password Settings"] = "Nastavení hesla"; -$a->strings["New Password:"] = "Nové heslo:"; -$a->strings["Confirm:"] = "Potvrďte:"; -$a->strings["Leave password fields blank unless changing"] = "Pokud nechcete změnit heslo, položku hesla nevyplňujte"; -$a->strings["Current Password:"] = "Stávající heslo:"; -$a->strings["Your current password to confirm the changes"] = "Vaše stávající heslo k potvrzení změn"; -$a->strings["Password:"] = "Heslo: "; -$a->strings["Basic Settings"] = "Základní nastavení"; -$a->strings["Full Name:"] = "Celé jméno:"; -$a->strings["Email Address:"] = "E-mailová adresa:"; -$a->strings["Your Timezone:"] = "Vaše časové pásmo:"; -$a->strings["Default Post Location:"] = "Výchozí umístění příspěvků:"; -$a->strings["Use Browser Location:"] = "Používat umístění dle prohlížeče:"; -$a->strings["Security and Privacy Settings"] = "Nastavení zabezpečení a soukromí"; -$a->strings["Maximum Friend Requests/Day:"] = "Maximální počet žádostí o přátelství za den:"; -$a->strings["(to prevent spam abuse)"] = "(Aby se zabránilo spamu)"; -$a->strings["Default Post Permissions"] = "Výchozí oprávnění pro příspěvek"; -$a->strings["(click to open/close)"] = "(Klikněte pro otevření/zavření)"; -$a->strings["Show to Groups"] = "Zobrazit ve Skupinách"; -$a->strings["Show to Contacts"] = "Zobrazit v Kontaktech"; -$a->strings["Default Private Post"] = "Výchozí Soukromý příspěvek"; -$a->strings["Default Public Post"] = "Výchozí Veřejný příspěvek"; -$a->strings["Default Permissions for New Posts"] = "Výchozí oprávnění pro nové příspěvky"; -$a->strings["Maximum private messages per day from unknown people:"] = "Maximum soukromých zpráv od neznámých lidí:"; -$a->strings["Notification Settings"] = "Nastavení notifikací"; -$a->strings["By default post a status message when:"] = "Defaultně posílat statusové zprávy když:"; -$a->strings["accepting a friend request"] = "akceptuji požadavek na přátelství"; -$a->strings["joining a forum/community"] = "připojující se k fóru/komunitě"; -$a->strings["making an interesting profile change"] = "provedení zajímavé profilové změny"; -$a->strings["Send a notification email when:"] = "Poslat notifikaci e-mailem, když"; -$a->strings["You receive an introduction"] = "obdržíte žádost o propojení"; -$a->strings["Your introductions are confirmed"] = "Vaše žádosti jsou potvrzeny"; -$a->strings["Someone writes on your profile wall"] = "někdo Vám napíše na Vaši profilovou stránku"; -$a->strings["Someone writes a followup comment"] = "někdo Vám napíše následný komentář"; -$a->strings["You receive a private message"] = "obdržíte soukromou zprávu"; -$a->strings["You receive a friend suggestion"] = "Obdržel jste návrh přátelství"; -$a->strings["You are tagged in a post"] = "Jste označen v příspěvku"; -$a->strings["You are poked/prodded/etc. in a post"] = "Byl Jste šťouchnout v příspěvku"; -$a->strings["Text-only notification emails"] = "Pouze textové notifikační e-maily"; -$a->strings["Send text only notification emails, without the html part"] = "Posílat pouze textové notifikační e-maily, bez html části."; -$a->strings["Advanced Account/Page Type Settings"] = "Pokročilé nastavení účtu/stránky"; -$a->strings["Change the behaviour of this account for special situations"] = "Změnit chování tohoto účtu ve speciálních situacích"; -$a->strings["Relocate"] = "Změna umístění"; -$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."] = "Pokud jste přemístil tento profil z jiného serveru a nějaký z vašich kontaktů nedostává Vaše aktualizace, zkuste stisknout toto tlačítko."; -$a->strings["Resend relocate message to contacts"] = "Znovu odeslat správu o změně umístění Vašim kontaktům"; -$a->strings["This introduction has already been accepted."] = "Toto pozvání již bylo přijato."; -$a->strings["Profile location is not valid or does not contain profile information."] = "Adresa profilu není platná nebo neobsahuje profilové informace"; -$a->strings["Warning: profile location has no identifiable owner name."] = "Varování: umístění profilu nemá žádné identifikovatelné jméno vlastníka"; -$a->strings["Warning: profile location has no profile photo."] = "Varování: umístění profilu nemá žádnou profilovou fotografii."; -$a->strings["%d required parameter was not found at the given location"] = array( - 0 => "%d požadovaný parametr nebyl nalezen na daném místě", - 1 => "%d požadované parametry nebyly nalezeny na daném místě", - 2 => "%d požadované parametry nebyly nalezeny na daném místě", -); -$a->strings["Introduction complete."] = "Představení dokončeno."; -$a->strings["Unrecoverable protocol error."] = "Neopravitelná chyba protokolu"; -$a->strings["Profile unavailable."] = "Profil není k dispozici."; -$a->strings["%s has received too many connection requests today."] = "%s dnes obdržel příliš mnoho požadavků na připojení."; -$a->strings["Spam protection measures have been invoked."] = "Ochrana proti spamu byla aktivována"; -$a->strings["Friends are advised to please try again in 24 hours."] = "Přátelům se doporučuje to zkusit znovu za 24 hodin."; -$a->strings["Invalid locator"] = "Neplatný odkaz"; -$a->strings["Invalid email address."] = "Neplatná emailová adresa"; -$a->strings["This account has not been configured for email. Request failed."] = "Tento účet nebyl nastaven pro email. Požadavek nesplněn."; -$a->strings["Unable to resolve your name at the provided location."] = "Nepodařilo se zjistit Vaše jméno na zadané adrese."; -$a->strings["You have already introduced yourself here."] = "Již jste se zde zavedli."; -$a->strings["Apparently you are already friends with %s."] = "Zřejmě jste již přátelé se %s."; -$a->strings["Invalid profile URL."] = "Neplatné URL profilu."; -$a->strings["Disallowed profile URL."] = "Nepovolené URL profilu."; -$a->strings["Your introduction has been sent."] = "Vaše žádost o propojení byla odeslána."; -$a->strings["Please login to confirm introduction."] = "Prosím přihlašte se k potvrzení žádosti o propojení."; -$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Jste přihlášeni pod nesprávnou identitou Prosím, přihlaste se do tohoto profilu."; -$a->strings["Hide this contact"] = "Skrýt tento kontakt"; -$a->strings["Welcome home %s."] = "Vítejte doma %s."; -$a->strings["Please confirm your introduction/connection request to %s."] = "Prosím potvrďte Vaši žádost o propojení %s."; -$a->strings["Confirm"] = "Potvrdit"; -$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Prosím zadejte Vaši adresu identity jedné z následujících podporovaných komunikačních sítí:"; -$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = "Pokud ještě nejste členem svobodné sociální sítě, následujte tento odkaz k nalezení veřejného Friendica serveru a přidejte se k nám ještě dnes."; -$a->strings["Friend/Connection Request"] = "Požadavek o přátelství / kontaktování"; -$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Příklady: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; -$a->strings["Please answer the following:"] = "Odpovězte, prosím, následující:"; -$a->strings["Does %s know you?"] = "Zná Vás uživatel %s ?"; -$a->strings["Add a personal note:"] = "Přidat osobní poznámku:"; -$a->strings["Friendica"] = "Friendica"; -$a->strings["StatusNet/Federated Social Web"] = "StatusNet / Federativní Sociální Web"; -$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - prosím nepoužívejte tento formulář. Místo toho zadejte %s do Vašeho Diaspora vyhledávacího pole."; -$a->strings["Your Identity Address:"] = "Verze PHP pro příkazový řádek na Vašem systému nemá povolen \"register_argc_argv\"."; -$a->strings["Submit Request"] = "Odeslat žádost"; -$a->strings["Registration successful. Please check your email for further instructions."] = "Registrace úspěšná. Zkontrolujte prosím svůj e-mail pro další instrukce."; -$a->strings["Failed to send email message. Here your accout details:
login: %s
password: %s

You can change your password after login."] = "Nepovedlo se odeslat emailovou zprávu. Zde jsou detaily Vašeho účtu:
login: %s
heslo: %s

Své heslo můžete změnit po přihlášení."; -$a->strings["Your registration can not be processed."] = "Vaši registraci nelze zpracovat."; -$a->strings["Your registration is pending approval by the site owner."] = "Vaše registrace čeká na schválení vlastníkem serveru."; -$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Došlo k překročení maximálního povoleného počtu registrací za den na tomto serveru. Zkuste to zítra znovu."; -$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Tento formulář můžete (volitelně) vyplnit s pomocí OpenID tím, že vyplníte své OpenID a kliknutete na tlačítko 'Zaregistrovat'."; -$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Pokud nepoužíváte OpenID, nechte prosím toto pole prázdné a vyplňte zbylé položky."; -$a->strings["Your OpenID (optional): "] = "Vaše OpenID (nepovinné): "; -$a->strings["Include your profile in member directory?"] = "Toto je Váš veřejný profil.
Ten může být viditelný kýmkoliv na internetu."; -$a->strings["Membership on this site is by invitation only."] = "Členství na tomto webu je pouze na pozvání."; -$a->strings["Your invitation ID: "] = "Vaše pozvání ID:"; -$a->strings["Your Full Name (e.g. Joe Smith): "] = "Vaše celé jméno (např. Jan Novák):"; -$a->strings["Your Email Address: "] = "Vaše e-mailová adresa:"; -$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Vyberte přezdívku k profilu. Ta musí začít s textovým znakem. Vaše profilová adresa na tomto webu pak bude \"přezdívka@\$sitename\"."; -$a->strings["Choose a nickname: "] = "Vyberte přezdívku:"; -$a->strings["Register"] = "Registrovat"; -$a->strings["Import"] = "Import"; -$a->strings["Import your profile to this friendica instance"] = "Import Vašeho profilu do této friendica instance"; -$a->strings["System down for maintenance"] = "Systém vypnut z důvodů údržby"; -$a->strings["Search"] = "Vyhledávání"; -$a->strings["Global Directory"] = "Globální adresář"; +$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "To se může občas stát pokud kontakt byl zažádán oběma osobami a již byl schválen."; +$a->strings["Response from remote site was not understood."] = "Odpověď ze vzdáleného serveru nebyla srozumitelná."; +$a->strings["Unexpected response from remote site: "] = "Neočekávaná odpověď od vzdáleného serveru:"; +$a->strings["Confirmation completed successfully."] = "Potvrzení úspěšně dokončena."; +$a->strings["Remote site reported: "] = "Vzdálený server oznámil:"; +$a->strings["Temporary failure. Please wait and try again."] = "Dočasné selhání. Prosím, vyčkejte a zkuste to znovu."; +$a->strings["Introduction failed or was revoked."] = "Žádost o propojení selhala nebo byla zrušena."; +$a->strings["Unable to set contact photo."] = "Nelze nastavit fotografii kontaktu."; +$a->strings["No user record found for '%s' "] = "Pro '%s' nenalezen žádný uživatelský záznam "; +$a->strings["Our site encryption key is apparently messed up."] = "Náš šifrovací klíč zřejmě přestal správně fungovat."; +$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Byla poskytnuta prázdná URL adresa nebo se nepodařilo URL adresu dešifrovat."; +$a->strings["Contact record was not found for you on our site."] = "Kontakt záznam nebyl nalezen pro vás na našich stránkách."; +$a->strings["Site public key not available in contact record for URL %s."] = "V adresáři není k dispozici veřejný klíč pro URL %s."; +$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Váš systém poskytl duplicitní ID vůči našemu systému. Pokuste se akci zopakovat."; +$a->strings["Unable to set your contact credentials on our system."] = "Nelze nastavit Vaše přihlašovací údaje v našem systému."; +$a->strings["Unable to update your contact profile details on our system"] = "Nelze aktualizovat Váš profil v našem systému"; +$a->strings["%1\$s has joined %2\$s"] = "%1\$s se připojil k %2\$s"; +$a->strings["Unable to locate original post."] = "Nelze nalézt původní příspěvek."; +$a->strings["Empty post discarded."] = "Prázdný příspěvek odstraněn."; +$a->strings["System error. Post not saved."] = "Chyba systému. Příspěvek nebyl uložen."; +$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Tato zpráva vám byla zaslána od %s, člena sociální sítě Friendica."; +$a->strings["You may visit them online at %s"] = "Můžete je navštívit online na adrese %s"; +$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Pokud nechcete dostávat tyto zprávy, kontaktujte prosím odesilatele odpovědí na tento záznam."; +$a->strings["%s posted an update."] = "%s poslal aktualizaci."; +$a->strings["Image uploaded but image cropping failed."] = "Obrázek byl odeslán, ale jeho oříznutí se nesdařilo."; +$a->strings["Image size reduction [%s] failed."] = "Nepodařilo se snížit velikost obrázku [%s]."; +$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Znovu načtěte stránku (Shift+F5) nebo vymažte cache prohlížeče, pokud se nové fotografie nezobrazí okamžitě."; +$a->strings["Unable to process image"] = "Obrázek nelze zpracovat "; +$a->strings["Upload File:"] = "Nahrát soubor:"; +$a->strings["Select a profile:"] = "Vybrat profil:"; +$a->strings["Upload"] = "Nahrát"; +$a->strings["skip this step"] = "přeskočit tento krok "; +$a->strings["select a photo from your photo albums"] = "Vybrat fotografii z Vašich fotoalb"; +$a->strings["Crop Image"] = "Oříznout obrázek"; +$a->strings["Please adjust the image cropping for optimum viewing."] = "Prosím, ořízněte tento obrázek pro optimální zobrazení."; +$a->strings["Done Editing"] = "Editace dokončena"; +$a->strings["Image uploaded successfully."] = "Obrázek byl úspěšně nahrán."; +$a->strings["Friends of %s"] = "Přátelé uživatele %s"; +$a->strings["No friends to display."] = "Žádní přátelé k zobrazení"; $a->strings["Find on this site"] = "Nalézt na tomto webu"; $a->strings["Site Directory"] = "Adresář serveru"; -$a->strings["Age: "] = "Věk: "; $a->strings["Gender: "] = "Pohlaví: "; -$a->strings["Gender:"] = "Pohlaví:"; -$a->strings["Status:"] = "Status:"; -$a->strings["Homepage:"] = "Domácí stránka:"; -$a->strings["About:"] = "O mě:"; $a->strings["No entries (some entries may be hidden)."] = "Žádné záznamy (některé položky mohou být skryty)."; -$a->strings["No potential page delegates located."] = "Žádní potenciální delegáti stránky nenalezeni."; -$a->strings["Delegate Page Management"] = "Správa delegátů stránky"; -$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."] = "Delegáti jsou schopni řídit všechny aspekty tohoto účtu / stránky, kromě základních nastavení účtu. Prosím, nepředávejte svůj osobní účet nikomu, komu úplně nevěříte.."; -$a->strings["Existing Page Managers"] = "Stávající správci stránky"; -$a->strings["Existing Page Delegates"] = "Stávající delegáti stránky "; -$a->strings["Potential Delegates"] = "Potenciální delegáti"; -$a->strings["Add"] = "Přidat"; -$a->strings["No entries."] = "Žádné záznamy."; -$a->strings["Common Friends"] = "Společní přátelé"; -$a->strings["No contacts in common."] = "Žádné společné kontakty."; -$a->strings["Export account"] = "Exportovat účet"; -$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."] = "Exportujte svůj účet a své kontakty. Použijte tuto funkci pro vytvoření zálohy svého účtu a/nebo k přesunu na jiný server."; -$a->strings["Export all"] = "Exportovat vše"; -$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)"] = "Exportujte své informace k účtu, kontakty a vše své položky jako json. To může být velmi velký soubor a může to zabrat spoustu času. Tuto funkci použijte pro úplnou zálohu svého účtu(fotografie se neexportují)"; -$a->strings["%1\$s is currently %2\$s"] = "%1\$s je právě %2\$s"; -$a->strings["Mood"] = "Nálada"; -$a->strings["Set your current mood and tell your friends"] = "Nastavte svou aktuální náladu a řekněte to Vašim přátelům"; -$a->strings["Do you really want to delete this suggestion?"] = "Opravdu chcete smazat tento návrh?"; -$a->strings["Friend Suggestions"] = "Návrhy přátel"; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Nejsou dostupné žádné návrhy. Pokud je toto nový server, zkuste to znovu za 24 hodin."; -$a->strings["Ignore/Hide"] = "Ignorovat / skrýt"; -$a->strings["Profile deleted."] = "Profil smazán."; -$a->strings["Profile-"] = "Profil-"; -$a->strings["New profile created."] = "Nový profil vytvořen."; -$a->strings["Profile unavailable to clone."] = "Profil není možné naklonovat."; -$a->strings["Profile Name is required."] = "Jméno profilu je povinné."; -$a->strings["Marital Status"] = "Rodinný Stav"; -$a->strings["Romantic Partner"] = "Romatický partner"; -$a->strings["Likes"] = "Libí se mi"; -$a->strings["Dislikes"] = "Nelibí se mi"; -$a->strings["Work/Employment"] = "Práce/Zaměstnání"; -$a->strings["Religion"] = "Náboženství"; -$a->strings["Political Views"] = "Politické přesvědčení"; -$a->strings["Gender"] = "Pohlaví"; -$a->strings["Sexual Preference"] = "Sexuální orientace"; -$a->strings["Homepage"] = "Domácí stránka"; -$a->strings["Interests"] = "Zájmy"; -$a->strings["Address"] = "Adresa"; -$a->strings["Location"] = "Lokace"; -$a->strings["Profile updated."] = "Profil aktualizován."; -$a->strings[" and "] = " a "; -$a->strings["public profile"] = "veřejný profil"; -$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s změnil %2\$s na “%3\$s”"; -$a->strings[" - Visit %1\$s's %2\$s"] = " - Navštivte %2\$s uživatele %1\$s"; -$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s aktualizoval %2\$s, změnou %3\$s."; -$a->strings["Hide contacts and friends:"] = "Skrýt kontakty a přátele:"; -$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Skrýt u tohoto profilu Vaše kontakty / seznam přátel před před dalšími uživateli zobrazující si tento profil?"; -$a->strings["Edit Profile Details"] = "Upravit podrobnosti profilu "; -$a->strings["Change Profile Photo"] = "Změna Profilové fotky"; -$a->strings["View this profile"] = "Zobrazit tento profil"; -$a->strings["Create a new profile using these settings"] = "Vytvořit nový profil pomocí tohoto nastavení"; -$a->strings["Clone this profile"] = "Klonovat tento profil"; -$a->strings["Delete this profile"] = "Smazat tento profil"; -$a->strings["Basic information"] = "Základní informace"; -$a->strings["Profile picture"] = "Profilový obrázek"; -$a->strings["Preferences"] = "Nastavení"; -$a->strings["Status information"] = "Statusové informace"; -$a->strings["Additional information"] = "Dodatečné informace"; -$a->strings["Profile Name:"] = "Jméno profilu:"; -$a->strings["Your Full Name:"] = "Vaše celé jméno:"; -$a->strings["Title/Description:"] = "Název / Popis:"; -$a->strings["Your Gender:"] = "Vaše pohlaví:"; -$a->strings["Birthday (%s):"] = "Narozeniny uživatele (%s):"; -$a->strings["Street Address:"] = "Ulice:"; -$a->strings["Locality/City:"] = "Město:"; -$a->strings["Postal/Zip Code:"] = "PSČ:"; -$a->strings["Country:"] = "Země:"; -$a->strings["Region/State:"] = "Region / stát:"; -$a->strings[" Marital Status:"] = " Rodinný stav:"; -$a->strings["Who: (if applicable)"] = "Kdo: (pokud je možné)"; -$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Příklady: jan123, Jan Novák, jan@seznam.cz"; -$a->strings["Since [date]:"] = "Od [data]:"; -$a->strings["Sexual Preference:"] = "Sexuální preference:"; -$a->strings["Homepage URL:"] = "Odkaz na domovskou stránku:"; -$a->strings["Hometown:"] = "Rodné město"; -$a->strings["Political Views:"] = "Politické přesvědčení:"; -$a->strings["Religious Views:"] = "Náboženské přesvědčení:"; -$a->strings["Public Keywords:"] = "Veřejná klíčová slova:"; -$a->strings["Private Keywords:"] = "Soukromá klíčová slova:"; -$a->strings["Likes:"] = "Líbí se:"; -$a->strings["Dislikes:"] = "Nelibí se:"; -$a->strings["Example: fishing photography software"] = "Příklad: fishing photography software"; -$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Používá se pro doporučování potenciálních přátel, může být viděno ostatními)"; -$a->strings["(Used for searching profiles, never shown to others)"] = "(Používá se pro vyhledávání profilů, není nikdy zobrazeno ostatním)"; -$a->strings["Tell us about yourself..."] = "Řekněte nám něco o sobě ..."; -$a->strings["Hobbies/Interests"] = "Koníčky/zájmy"; -$a->strings["Contact information and Social Networks"] = "Kontaktní informace a sociální sítě"; -$a->strings["Musical interests"] = "Hudební vkus"; -$a->strings["Books, literature"] = "Knihy, literatura"; -$a->strings["Television"] = "Televize"; -$a->strings["Film/dance/culture/entertainment"] = "Film/tanec/kultura/zábava"; -$a->strings["Love/romance"] = "Láska/romantika"; -$a->strings["Work/employment"] = "Práce/zaměstnání"; -$a->strings["School/education"] = "Škola/vzdělání"; -$a->strings["This is your public profile.
It may be visible to anybody using the internet."] = "Toto je váš veřejný profil.
Ten může být viditelný kýmkoliv na internetu."; -$a->strings["Edit/Manage Profiles"] = "Upravit / Spravovat profily"; -$a->strings["Change profile photo"] = "Změnit profilovou fotografii"; -$a->strings["Create New Profile"] = "Vytvořit nový profil"; -$a->strings["Profile Image"] = "Profilový obrázek"; -$a->strings["visible to everybody"] = "viditelné pro všechny"; -$a->strings["Edit visibility"] = "Upravit viditelnost"; -$a->strings["Item not found"] = "Položka nenalezena"; -$a->strings["Edit post"] = "Upravit příspěvek"; -$a->strings["upload photo"] = "nahrát fotky"; -$a->strings["Attach file"] = "Přiložit soubor"; -$a->strings["attach file"] = "přidat soubor"; -$a->strings["web link"] = "webový odkaz"; -$a->strings["Insert video link"] = "Zadejte odkaz na video"; -$a->strings["video link"] = "odkaz na video"; -$a->strings["Insert audio link"] = "Zadejte odkaz na zvukový záznam"; -$a->strings["audio link"] = "odkaz na audio"; -$a->strings["Set your location"] = "Nastavte vaši polohu"; -$a->strings["set location"] = "nastavit místo"; -$a->strings["Clear browser location"] = "Odstranit adresu v prohlížeči"; -$a->strings["clear location"] = "vymazat místo"; -$a->strings["Permission settings"] = "Nastavení oprávnění"; -$a->strings["CC: email addresses"] = "skrytá kopie: e-mailové adresy"; -$a->strings["Public post"] = "Veřejný příspěvek"; -$a->strings["Set title"] = "Nastavit titulek"; -$a->strings["Categories (comma-separated list)"] = "Kategorie (čárkou oddělený seznam)"; -$a->strings["Example: bob@example.com, mary@example.com"] = "Příklad: bob@example.com, mary@example.com"; -$a->strings["This is Friendica, version"] = "Toto je Friendica, verze"; -$a->strings["running at web location"] = "běžící na webu"; -$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Pro získání dalších informací o projektu Friendica navštivte prosím Friendica.com."; -$a->strings["Bug reports and issues: please visit"] = "Pro hlášení chyb a námětů na změny navštivte:"; -$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Návrhy, chválu, dary, apod. - prosím piště na \"info\" na Friendica - tečka com"; -$a->strings["Installed plugins/addons/apps:"] = "Instalované pluginy/doplňky/aplikace:"; -$a->strings["No installed plugins/addons/apps"] = "Nejsou žádné nainstalované doplňky/aplikace"; -$a->strings["Authorize application connection"] = "Povolit připojení aplikacím"; -$a->strings["Return to your app and insert this Securty Code:"] = "Vraťte se do vaší aplikace a zadejte tento bezpečnostní kód:"; -$a->strings["Please login to continue."] = "Pro pokračování se prosím přihlaste."; -$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Chcete umožnit této aplikaci přístup k vašim příspěvkům a kontaktům a/nebo k vytváření Vašich nových příspěvků?"; -$a->strings["Remote privacy information not available."] = "Vzdálené soukromé informace nejsou k dispozici."; -$a->strings["Visible to:"] = "Viditelné pro:"; -$a->strings["Personal Notes"] = "Osobní poznámky"; -$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; $a->strings["Time Conversion"] = "Časová konverze"; $a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica poskytuje tuto službu pro sdílení událostí s ostatními sítěmi a přáteli v neznámých časových zónách"; $a->strings["UTC time: %s"] = "UTC čas: %s"; $a->strings["Current timezone: %s"] = "Aktuální časové pásmo: %s"; $a->strings["Converted localtime: %s"] = "Převedený lokální čas : %s"; $a->strings["Please select your timezone:"] = "Prosím, vyberte své časové pásmo:"; -$a->strings["Poke/Prod"] = "Šťouchanec"; -$a->strings["poke, prod or do other things to somebody"] = "někoho šťouchnout nebo mu provést jinou věc"; -$a->strings["Recipient"] = "Příjemce"; -$a->strings["Choose what you wish to do to recipient"] = "Vyberte, co si přejete příjemci udělat"; -$a->strings["Make this post private"] = "Změnit tento příspěvek na soukromý"; -$a->strings["Total invitation limit exceeded."] = "Celkový limit pozvánek byl překročen"; -$a->strings["%s : Not a valid email address."] = "%s : není platná e-mailová adresa."; -$a->strings["Please join us on Friendica"] = "Prosím přidejte se k nám na Friendice"; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limit pozvánek byl překročen. Prosím kontaktujte vašeho administrátora webu."; -$a->strings["%s : Message delivery failed."] = "%s : Doručení zprávy se nezdařilo."; -$a->strings["%d message sent."] = array( - 0 => "%d zpráva odeslána.", - 1 => "%d zprávy odeslány.", - 2 => "%d zprávy odeslány.", -); -$a->strings["You have no more invitations available"] = "Nemáte k dispozici žádné další pozvánky"; -$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Navštivte %s pro seznam veřejných serverů, na kterých se můžete přidat. Členové Friendica se mohou navzájem propojovat, stejně tak jako se mohou přiopojit se členy mnoha dalších sociálních sítí."; -$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "K akceptaci této pozvánky prosím navštivte a registrujte se na %s nebo na kterékoliv jiném veřejném Friendica serveru."; -$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Friendica servery jsou všechny propojené a vytváří tak rozsáhlou sociální síť s důrazem na soukromý a je pod kontrolou svých členů. Členové se mohou propojovat s mnoha dalšími tradičními sociálními sítěmi. Navštivte %s pro seznam alternativních Friendica serverů kde se můžete přidat."; -$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Omlouváme se. Systém nyní není nastaven tak, aby se připojil k ostatním veřejným serverům nebo umožnil pozvat nové členy."; -$a->strings["Send invitations"] = "Poslat pozvánky"; -$a->strings["Enter email addresses, one per line:"] = "Zadejte e-mailové adresy, jednu na řádek:"; -$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Jste srdečně pozván se připojit ke mně a k mým blízkým přátelům na Friendica - a pomoci nám vytvořit lepší sociální síť."; -$a->strings["You will need to supply this invitation code: \$invite_code"] = "Budete muset zadat kód této pozvánky: \$invite_code"; -$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Jakmile se zaregistrujete, prosím spojte se se mnou přes mou profilovu stránku na:"; -$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Pro více informací o Friendica projektu a o tom, proč je tak důležitý, prosím navštivte http://friendica.com"; -$a->strings["Photo Albums"] = "Fotoalba"; -$a->strings["Contact Photos"] = "Fotogalerie kontaktu"; -$a->strings["Upload New Photos"] = "Nahrát nové fotografie"; -$a->strings["Contact information unavailable"] = "Kontakt byl zablokován"; -$a->strings["Album not found."] = "Album nenalezeno."; -$a->strings["Delete Album"] = "Smazat album"; -$a->strings["Do you really want to delete this photo album and all its photos?"] = "Opravdu chcete smazat toto foto album a všechny jeho fotografie?"; -$a->strings["Delete Photo"] = "Smazat fotografii"; -$a->strings["Do you really want to delete this photo?"] = "Opravdu chcete smazat tuto fotografii?"; -$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s byl označen v %2\$s uživatelem %3\$s"; -$a->strings["a photo"] = "fotografie"; -$a->strings["Image exceeds size limit of "] = "Velikost obrázku překračuje limit velikosti"; -$a->strings["Image file is empty."] = "Soubor obrázku je prázdný."; -$a->strings["No photos selected"] = "Není vybrána žádná fotografie"; -$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Použil jste %1$.2f Mbajtů z %2$.2f Mbajtů úložiště fotografií."; -$a->strings["Upload Photos"] = "Nahrání fotografií "; -$a->strings["New album name: "] = "Název nového alba: "; -$a->strings["or existing album name: "] = "nebo stávající název alba: "; -$a->strings["Do not show a status post for this upload"] = "Nezobrazovat stav pro tento upload"; -$a->strings["Permissions"] = "Oprávnění:"; -$a->strings["Private Photo"] = "Soukromé Fotografie"; -$a->strings["Public Photo"] = "Veřejné Fotografie"; -$a->strings["Edit Album"] = "Edituj album"; -$a->strings["Show Newest First"] = "Zobrazit nejprve nejnovější:"; -$a->strings["Show Oldest First"] = "Zobrazit nejprve nejstarší:"; -$a->strings["View Photo"] = "Zobraz fotografii"; -$a->strings["Permission denied. Access to this item may be restricted."] = "Oprávnění bylo zamítnuto. Přístup k této položce může být omezen."; -$a->strings["Photo not available"] = "Fotografie není k dispozici"; -$a->strings["View photo"] = "Zobrazit obrázek"; -$a->strings["Edit photo"] = "Editovat fotografii"; -$a->strings["Use as profile photo"] = "Použít jako profilovou fotografii"; -$a->strings["View Full Size"] = "Zobrazit v plné velikosti"; -$a->strings["Tags: "] = "Štítky: "; -$a->strings["[Remove any tag]"] = "[Odstranit všechny štítky]"; -$a->strings["Rotate CW (right)"] = "Rotovat po směru hodinových ručiček (doprava)"; -$a->strings["Rotate CCW (left)"] = "Rotovat proti směru hodinových ručiček (doleva)"; -$a->strings["New album name"] = "Nové jméno alba"; -$a->strings["Caption"] = "Titulek"; -$a->strings["Add a Tag"] = "Přidat štítek"; -$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Příklad: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"; -$a->strings["Private photo"] = "Soukromé fotografie"; -$a->strings["Public photo"] = "Veřejné fotografie"; -$a->strings["Share"] = "Sdílet"; -$a->strings["Recent Photos"] = "Aktuální fotografie"; -$a->strings["Account approved."] = "Účet schválen."; -$a->strings["Registration revoked for %s"] = "Registrace zrušena pro %s"; -$a->strings["Please login."] = "Přihlaste se, prosím."; -$a->strings["Move account"] = "Přesunout účet"; -$a->strings["You can import an account from another Friendica server."] = "Můžete importovat účet z jiného Friendica serveru."; -$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."] = "Musíte exportovat svůj účet na sterém serveru a nahrát ho zde. My následně vytvoříme Váš původní účet zde včetně všech kontaktů. Zároveň se pokusíme informovat všechny Vaše přátele, že jste se sem přestěhovali."; -$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Tato funkčnost je experimentální. Nemůžeme importovat kontakty z OSStatus sítí (statusnet/identi.ca) nebo z Diaspory"; -$a->strings["Account file"] = "Soubor s účtem"; -$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "K exportu Vašeho účtu, jděte do \"Nastavení->Export vašich osobních dat\" a zvolte \" Export účtu\""; -$a->strings["Item not available."] = "Položka není k dispozici."; -$a->strings["Item was not found."] = "Položka nebyla nalezena."; -$a->strings["Delete this item?"] = "Odstranit tuto položku?"; -$a->strings["show fewer"] = "zobrazit méně"; -$a->strings["Update %s failed. See error logs."] = "Aktualizace %s selhala. Zkontrolujte protokol chyb."; -$a->strings["Create a New Account"] = "Vytvořit nový účet"; -$a->strings["Logout"] = "Odhlásit se"; -$a->strings["Nickname or Email address: "] = "Přezdívka nebo e-mailová adresa:"; -$a->strings["Password: "] = "Heslo: "; -$a->strings["Remember me"] = "Pamatuj si mne"; -$a->strings["Or login using OpenID: "] = "Nebo přihlášení pomocí OpenID: "; -$a->strings["Forgot your password?"] = "Zapomněli jste své heslo?"; -$a->strings["Website Terms of Service"] = "Podmínky použití serveru"; -$a->strings["terms of service"] = "podmínky použití"; -$a->strings["Website Privacy Policy"] = "Pravidla ochrany soukromí serveru"; -$a->strings["privacy policy"] = "Ochrana soukromí"; -$a->strings["Requested account is not available."] = "Požadovaný účet není dostupný."; -$a->strings["Edit profile"] = "Upravit profil"; -$a->strings["Message"] = "Zpráva"; -$a->strings["Profiles"] = "Profily"; -$a->strings["Manage/edit profiles"] = "Spravovat/upravit profily"; -$a->strings["Network:"] = "Síť:"; -$a->strings["g A l F d"] = "g A l F d"; -$a->strings["F d"] = "d. F"; -$a->strings["[today]"] = "[Dnes]"; -$a->strings["Birthday Reminders"] = "Připomínka narozenin"; -$a->strings["Birthdays this week:"] = "Narozeniny tento týden:"; -$a->strings["[No description]"] = "[Žádný popis]"; -$a->strings["Event Reminders"] = "Připomenutí událostí"; -$a->strings["Events this week:"] = "Události tohoto týdne:"; -$a->strings["Status"] = "Stav"; -$a->strings["Status Messages and Posts"] = "Statusové zprávy a příspěvky "; -$a->strings["Profile Details"] = "Detaily profilu"; -$a->strings["Videos"] = "Videa"; -$a->strings["Events and Calendar"] = "Události a kalendář"; -$a->strings["Only You Can See This"] = "Toto můžete vidět jen Vy"; -$a->strings["This entry was edited"] = "Tento záznam byl editován"; -$a->strings["ignore thread"] = "ignorovat vlákno"; -$a->strings["unignore thread"] = "přestat ignorovat vlákno"; -$a->strings["toggle ignore status"] = "přepnout stav Ignorování"; -$a->strings["ignored"] = "ignorován"; -$a->strings["Categories:"] = "Kategorie:"; -$a->strings["Filed under:"] = "Vyplněn pod:"; -$a->strings["via"] = "přes"; -$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."] = "\n\t\t\tThe friendica vývojáři uvolnili nedávno aktualizaci %s,\n\t\t\tale při pokusu o její instalaci se něco velmi nepovedlo.\n\t\t\tJe třeba to opravit a já to sám nedokážu. Prosím kontaktuj\n\t\t\tfriendica vývojáře, pokud mi s tím nepomůžeš ty sám. Moje databáze může být poškozena."; -$a->strings["The error message is\n[pre]%s[/pre]"] = "Chybová zpráva je\n[pre]%s[/pre]"; -$a->strings["Errors encountered creating database tables."] = "Při vytváření databázových tabulek došlo k chybám."; -$a->strings["Errors encountered performing database changes."] = "Při provádění databázových změn došlo k chybám."; -$a->strings["Logged out."] = "Odhlášen."; -$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Zaznamenali jsme problém s Vaším přihlášením prostřednictvím Vámi zadaným OpenID. Prosím ověřte si, že jste ID zadali správně. "; -$a->strings["The error message was:"] = "Chybová zpráva byla:"; -$a->strings["Add New Contact"] = "Přidat nový kontakt"; -$a->strings["Enter address or web location"] = "Zadejte adresu nebo umístění webu"; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Příklad: jan@příklad.cz, http://příklad.cz/jana"; -$a->strings["%d invitation available"] = array( - 0 => "Pozvánka %d k dispozici", - 1 => "Pozvánky %d k dispozici", - 2 => "Pozvánky %d k dispozici", -); -$a->strings["Find People"] = "Nalézt lidi"; -$a->strings["Enter name or interest"] = "Zadejte jméno nebo zájmy"; -$a->strings["Connect/Follow"] = "Připojit / Následovat"; -$a->strings["Examples: Robert Morgenstein, Fishing"] = "Příklady: Robert Morgenstein, rybaření"; -$a->strings["Similar Interests"] = "Podobné zájmy"; -$a->strings["Random Profile"] = "Náhodný Profil"; -$a->strings["Invite Friends"] = "Pozvat přátele"; -$a->strings["Networks"] = "Sítě"; -$a->strings["All Networks"] = "Všechny sítě"; -$a->strings["Saved Folders"] = "Uložené složky"; -$a->strings["Everything"] = "Všechno"; -$a->strings["Categories"] = "Kategorie"; -$a->strings["General Features"] = "Obecné funkčnosti"; -$a->strings["Multiple Profiles"] = "Vícenásobné profily"; -$a->strings["Ability to create multiple profiles"] = "Schopnost vytvořit vícenásobné profily"; -$a->strings["Post Composition Features"] = "Nastavení vytváření příspěvků"; -$a->strings["Richtext Editor"] = "Richtext Editor"; -$a->strings["Enable richtext editor"] = "Povolit richtext editor"; -$a->strings["Post Preview"] = "Náhled příspěvku"; -$a->strings["Allow previewing posts and comments before publishing them"] = "Povolit náhledy příspěvků a komentářů před jejich zveřejněním"; -$a->strings["Auto-mention Forums"] = "Automaticky zmíněná Fóra"; -$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = "Přidat/odebrat zmínku, když stránka fóra je označena/odznačena v ACL okně"; -$a->strings["Network Sidebar Widgets"] = "Síťové postranní widgety"; -$a->strings["Search by Date"] = "Vyhledávat dle Data"; -$a->strings["Ability to select posts by date ranges"] = "Možnost označit příspěvky dle časového intervalu"; -$a->strings["Group Filter"] = "Skupinový Filtr"; -$a->strings["Enable widget to display Network posts only from selected group"] = "Povolit widget pro zobrazení příspěvků v Síti pouze ze zvolené skupiny"; -$a->strings["Network Filter"] = "Síťový Filtr"; -$a->strings["Enable widget to display Network posts only from selected network"] = "Povolit widget pro zobrazení příspěvků v Síti pouze ze zvolené sítě"; -$a->strings["Save search terms for re-use"] = "Uložit kritéria vyhledávání pro znovupoužití"; -$a->strings["Network Tabs"] = "Síťové záložky"; -$a->strings["Network Personal Tab"] = "Osobní síťový záložka "; -$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Povolit záložku pro zobrazení pouze síťových příspěvků, na které jste reagoval "; -$a->strings["Network New Tab"] = "Nová záložka síť"; -$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Povolit záložku pro zobrazení pouze nových příspěvků (za posledních 12 hodin)"; -$a->strings["Network Shared Links Tab"] = "záložka Síťové sdílené odkazy "; -$a->strings["Enable tab to display only Network posts with links in them"] = "Povolit záložky pro zobrazování pouze Síťových příspěvků s vazbou na ně"; -$a->strings["Post/Comment Tools"] = "Nástroje Příspěvků/Komentářů"; -$a->strings["Multiple Deletion"] = "Násobné mazání"; -$a->strings["Select and delete multiple posts/comments at once"] = "Označit a smazat více "; -$a->strings["Edit Sent Posts"] = "Editovat Odeslané příspěvky"; -$a->strings["Edit and correct posts and comments after sending"] = "Editovat a opravit příspěvky a komentáře po odeslání"; -$a->strings["Tagging"] = "Štítkování"; -$a->strings["Ability to tag existing posts"] = "Schopnost přidat štítky ke stávajícím příspvěkům"; -$a->strings["Post Categories"] = "Kategorie příspěvků"; -$a->strings["Add categories to your posts"] = "Přidat kategorie k Vašim příspěvkům"; -$a->strings["Ability to file posts under folders"] = "Možnost řadit příspěvky do složek"; -$a->strings["Dislike Posts"] = "Označit příspěvky jako neoblíbené"; -$a->strings["Ability to dislike posts/comments"] = "Možnost označit příspěvky/komentáře jako neoblíbené"; -$a->strings["Star Posts"] = "Příspěvky s hvězdou"; -$a->strings["Ability to mark special posts with a star indicator"] = "Možnost označit příspěvky s indikátorem hvězdy"; -$a->strings["Mute Post Notifications"] = "Utlumit upozornění na přísvěvky"; -$a->strings["Ability to mute notifications for a thread"] = "Možnost stlumit upozornění pro vlákno"; -$a->strings["Connect URL missing."] = "Chybí URL adresa."; -$a->strings["This site is not configured to allow communications with other networks."] = "Tento web není nakonfigurován tak, aby umožňoval komunikaci s ostatními sítěmi."; -$a->strings["No compatible communication protocols or feeds were discovered."] = "Nenalezen žádný kompatibilní komunikační protokol nebo kanál."; -$a->strings["The profile address specified does not provide adequate information."] = "Uvedená adresa profilu neposkytuje dostatečné informace."; -$a->strings["An author or name was not found."] = "Autor nebo jméno nenalezeno"; -$a->strings["No browser URL could be matched to this address."] = "Této adrese neodpovídá žádné URL prohlížeče."; -$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Není možné namapovat adresu identity ve stylu @ s žádným možným protokolem ani emailovým kontaktem."; -$a->strings["Use mailto: in front of address to force email check."] = "Použite mailo: před adresou k vynucení emailové kontroly."; -$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Zadaná adresa profilu patří do sítě, která byla na tomto serveru zakázána."; -$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Omezený profil. Tato osoba nebude schopna od Vás přijímat přímé / osobní sdělení."; -$a->strings["Unable to retrieve contact information."] = "Nepodařilo se získat kontaktní informace."; -$a->strings["following"] = "následující"; -$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Dříve smazaná skupina s tímto jménem byla obnovena. Stávající oprávnění může ovlivnit tuto skupinu a její budoucí členy. Pokud to není to, co jste chtěli, vytvořte, prosím, další skupinu s jiným názvem."; -$a->strings["Default privacy group for new contacts"] = "Defaultní soukromá skrupina pro nové kontakty."; -$a->strings["Everybody"] = "Všichni"; -$a->strings["edit"] = "editovat"; -$a->strings["Edit group"] = "Editovat skupinu"; -$a->strings["Create a new group"] = "Vytvořit novou skupinu"; -$a->strings["Contacts not in any group"] = "Kontakty, které nejsou v žádné skupině"; -$a->strings["Miscellaneous"] = "Různé"; -$a->strings["year"] = "rok"; -$a->strings["month"] = "měsíc"; -$a->strings["day"] = "den"; -$a->strings["never"] = "nikdy"; -$a->strings["less than a second ago"] = "méně než před sekundou"; -$a->strings["years"] = "let"; -$a->strings["months"] = "měsíců"; -$a->strings["week"] = "týdnem"; -$a->strings["weeks"] = "týdny"; -$a->strings["days"] = "dnů"; -$a->strings["hour"] = "hodina"; -$a->strings["hours"] = "hodin"; -$a->strings["minute"] = "minuta"; -$a->strings["minutes"] = "minut"; -$a->strings["second"] = "sekunda"; -$a->strings["seconds"] = "sekund"; -$a->strings["%1\$d %2\$s ago"] = "před %1\$d %2\$s"; -$a->strings["%s's birthday"] = "%s má narozeniny"; -$a->strings["Happy Birthday %s"] = "Veselé narozeniny %s"; -$a->strings["Visible to everybody"] = "Viditelné pro všechny"; -$a->strings["show"] = "zobrazit"; -$a->strings["don't show"] = "nikdy nezobrazit"; -$a->strings["[no subject]"] = "[bez předmětu]"; -$a->strings["stopped following"] = "následování zastaveno"; -$a->strings["Poke"] = "Šťouchnout"; -$a->strings["View Status"] = "Zobrazit Status"; -$a->strings["View Profile"] = "Zobrazit Profil"; -$a->strings["View Photos"] = "Zobrazit Fotky"; -$a->strings["Network Posts"] = "Zobrazit Příspěvky sítě"; -$a->strings["Edit Contact"] = "Editovat Kontakty"; -$a->strings["Drop Contact"] = "Odstranit kontakt"; -$a->strings["Send PM"] = "Poslat soukromou zprávu"; -$a->strings["Welcome "] = "Vítejte "; -$a->strings["Please upload a profile photo."] = "Prosím nahrejte profilovou fotografii"; -$a->strings["Welcome back "] = "Vítejte zpět "; -$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."] = "Formulářový bezpečnostní token nebyl správný. To pravděpodobně nastalo kvůli tom, že formulář byl otevřen příliš dlouho (>3 hodiny) před jeho odesláním."; -$a->strings["event"] = "událost"; -$a->strings["%1\$s poked %2\$s"] = "%1\$s šťouchnul %2\$s"; -$a->strings["poked"] = "šťouchnut"; -$a->strings["post/item"] = "příspěvek/položka"; -$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "uživatel %1\$s označil %2\$s's %3\$s jako oblíbeného"; -$a->strings["remove"] = "odstranit"; -$a->strings["Delete Selected Items"] = "Smazat vybrané položky"; -$a->strings["Follow Thread"] = "Následovat vlákno"; -$a->strings["%s likes this."] = "%s se to líbí."; -$a->strings["%s doesn't like this."] = "%s se to nelíbí."; -$a->strings["%2\$d people like this"] = "%2\$d lidem se to líbí"; -$a->strings["%2\$d people don't like this"] = "%2\$d lidem se to nelíbí"; -$a->strings["and"] = "a"; -$a->strings[", and %d other people"] = ", a %d dalších lidí"; -$a->strings["%s like this."] = "%s se to líbí."; -$a->strings["%s don't like this."] = "%s se to nelíbí."; -$a->strings["Visible to everybody"] = "Viditelné pro všechny"; -$a->strings["Please enter a video link/URL:"] = "Prosím zadejte URL adresu videa:"; -$a->strings["Please enter an audio link/URL:"] = "Prosím zadejte URL adresu zvukového záznamu:"; -$a->strings["Tag term:"] = "Štítek:"; -$a->strings["Where are you right now?"] = "Kde právě jste?"; -$a->strings["Delete item(s)?"] = "Smazat položku(y)?"; -$a->strings["Post to Email"] = "Poslat příspěvek na e-mail"; -$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Kontektory deaktivovány, od \"%s\" je aktivován."; -$a->strings["permissions"] = "oprávnění"; -$a->strings["Post to Groups"] = "Zveřejnit na Groups"; -$a->strings["Post to Contacts"] = "Zveřejnit na Groups"; -$a->strings["Private post"] = "Soukromý příspěvek"; -$a->strings["view full size"] = "zobrazit v plné velikosti"; -$a->strings["newer"] = "novější"; -$a->strings["older"] = "starší"; -$a->strings["prev"] = "předchozí"; -$a->strings["first"] = "první"; -$a->strings["last"] = "poslední"; -$a->strings["next"] = "další"; -$a->strings["No contacts"] = "Žádné kontakty"; -$a->strings["%d Contact"] = array( - 0 => "%d kontakt", - 1 => "%d kontaktů", - 2 => "%d kontaktů", -); -$a->strings["poke"] = "šťouchnout"; -$a->strings["ping"] = "cinknout"; -$a->strings["pinged"] = "cinkut"; -$a->strings["prod"] = "pobídnout"; -$a->strings["prodded"] = "pobídnut"; -$a->strings["slap"] = "dát facku"; -$a->strings["slapped"] = "být uhozen"; -$a->strings["finger"] = "osahávat"; -$a->strings["fingered"] = "osaháván"; -$a->strings["rebuff"] = "odmítnout"; -$a->strings["rebuffed"] = "odmítnut"; -$a->strings["happy"] = "šťasný"; -$a->strings["sad"] = "smutný"; -$a->strings["mellow"] = "jemný"; -$a->strings["tired"] = "unavený"; -$a->strings["perky"] = "emergický"; -$a->strings["angry"] = "nazlobený"; -$a->strings["stupified"] = "otupen"; -$a->strings["puzzled"] = "popletený"; -$a->strings["interested"] = "zajímavý"; -$a->strings["bitter"] = "hořký"; -$a->strings["cheerful"] = "radnostný"; -$a->strings["alive"] = "naživu"; -$a->strings["annoyed"] = "otráven"; -$a->strings["anxious"] = "znepokojený"; -$a->strings["cranky"] = "mrzutý"; -$a->strings["disturbed"] = "vyrušen"; -$a->strings["frustrated"] = "frustrovaný"; -$a->strings["motivated"] = "motivovaný"; -$a->strings["relaxed"] = "uvolněný"; -$a->strings["surprised"] = "překvapený"; -$a->strings["Monday"] = "Pondělí"; -$a->strings["Tuesday"] = "Úterý"; -$a->strings["Wednesday"] = "Středa"; -$a->strings["Thursday"] = "Čtvrtek"; -$a->strings["Friday"] = "Pátek"; -$a->strings["Saturday"] = "Sobota"; -$a->strings["Sunday"] = "Neděle"; -$a->strings["January"] = "Ledna"; -$a->strings["February"] = "Února"; -$a->strings["March"] = "Března"; -$a->strings["April"] = "Dubna"; -$a->strings["May"] = "Května"; -$a->strings["June"] = "Června"; -$a->strings["July"] = "Července"; -$a->strings["August"] = "Srpna"; -$a->strings["September"] = "Září"; -$a->strings["October"] = "Října"; -$a->strings["November"] = "Listopadu"; -$a->strings["December"] = "Prosinec"; -$a->strings["bytes"] = "bytů"; -$a->strings["Click to open/close"] = "Klikněte pro otevření/zavření"; -$a->strings["default"] = "standardní"; -$a->strings["Select an alternate language"] = "Vyběr alternativního jazyka"; -$a->strings["activity"] = "aktivita"; -$a->strings["post"] = "příspěvek"; -$a->strings["Item filed"] = "Položka vyplněna"; -$a->strings["Image/photo"] = "Obrázek/fotografie"; -$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s"; -$a->strings["%s wrote the following post"] = "%s napsal následující příspěvek"; -$a->strings["$1 wrote:"] = "$1 napsal:"; -$a->strings["Encrypted content"] = "Šifrovaný obsah"; -$a->strings["(no subject)"] = "(Bez předmětu)"; -$a->strings["noreply"] = "neodpovídat"; -$a->strings["Cannot locate DNS info for database server '%s'"] = "Nelze nalézt záznam v DNS pro databázový server '%s'"; -$a->strings["Unknown | Not categorised"] = "Neznámé | Nezařazeno"; -$a->strings["Block immediately"] = "Okamžitě blokovat "; -$a->strings["Shady, spammer, self-marketer"] = "pochybný, spammer, self-makerter"; -$a->strings["Known to me, but no opinion"] = "Znám ho ale, ale bez rozhodnutí"; -$a->strings["OK, probably harmless"] = "OK, pravděpodobně neškodný"; -$a->strings["Reputable, has my trust"] = "Renomovaný, má mou důvěru"; -$a->strings["Weekly"] = "Týdenně"; -$a->strings["Monthly"] = "Měsíčně"; -$a->strings["OStatus"] = "OStatus"; -$a->strings["RSS/Atom"] = "RSS/Atom"; -$a->strings["Zot!"] = "Zot!"; -$a->strings["LinkedIn"] = "LinkedIn"; -$a->strings["XMPP/IM"] = "XMPP/IM"; -$a->strings["MySpace"] = "MySpace"; -$a->strings["Google+"] = "Google+"; -$a->strings["pump.io"] = "pump.io"; -$a->strings["Twitter"] = "Twitter"; -$a->strings["Diaspora Connector"] = "Diaspora konektor"; -$a->strings["Statusnet"] = "Statusnet"; -$a->strings["App.net"] = "App.net"; -$a->strings[" on Last.fm"] = " na Last.fm"; -$a->strings["Starts:"] = "Začíná:"; -$a->strings["Finishes:"] = "Končí:"; -$a->strings["j F, Y"] = "j F, Y"; -$a->strings["j F"] = "j F"; -$a->strings["Birthday:"] = "Narozeniny:"; -$a->strings["Age:"] = "Věk:"; -$a->strings["for %1\$d %2\$s"] = "pro %1\$d %2\$s"; -$a->strings["Tags:"] = "Štítky:"; -$a->strings["Religion:"] = "Náboženství:"; -$a->strings["Hobbies/Interests:"] = "Koníčky/zájmy:"; -$a->strings["Contact information and Social Networks:"] = "Kontaktní informace a sociální sítě:"; -$a->strings["Musical interests:"] = "Hudební vkus:"; -$a->strings["Books, literature:"] = "Knihy, literatura:"; -$a->strings["Television:"] = "Televize:"; -$a->strings["Film/dance/culture/entertainment:"] = "Film/tanec/kultura/zábava:"; -$a->strings["Love/Romance:"] = "Láska/romance"; -$a->strings["Work/employment:"] = "Práce/zaměstnání:"; -$a->strings["School/education:"] = "Škola/vzdělávání:"; -$a->strings["Click here to upgrade."] = "Klikněte zde pro aktualizaci."; -$a->strings["This action exceeds the limits set by your subscription plan."] = "Tato akce překročí limit nastavené Vaším předplatným."; -$a->strings["This action is not available under your subscription plan."] = "Tato akce není v rámci Vašeho předplatného dostupná."; -$a->strings["End this session"] = "Konec této relace"; -$a->strings["Your posts and conversations"] = "Vaše příspěvky a konverzace"; -$a->strings["Your profile page"] = "Vaše profilová stránka"; -$a->strings["Your photos"] = "Vaše fotky"; -$a->strings["Your videos"] = "Vaše videa"; -$a->strings["Your events"] = "Vaše události"; -$a->strings["Personal notes"] = "Osobní poznámky"; -$a->strings["Your personal notes"] = "Vaše osobní poznámky"; -$a->strings["Sign in"] = "Přihlásit se"; -$a->strings["Home Page"] = "Domácí stránka"; -$a->strings["Create an account"] = "Vytvořit účet"; -$a->strings["Help and documentation"] = "Nápověda a dokumentace"; -$a->strings["Apps"] = "Aplikace"; -$a->strings["Addon applications, utilities, games"] = "Doplňkové aplikace, nástroje, hry"; -$a->strings["Search site content"] = "Hledání na stránkách tohoto webu"; -$a->strings["Conversations on this site"] = "Konverzace na tomto webu"; -$a->strings["Conversations on the network"] = "Konverzace v síti"; -$a->strings["Directory"] = "Adresář"; -$a->strings["People directory"] = "Adresář"; -$a->strings["Information"] = "Informace"; -$a->strings["Information about this friendica instance"] = "Informace o této instanci Friendica"; -$a->strings["Conversations from your friends"] = "Konverzace od Vašich přátel"; -$a->strings["Network Reset"] = "Síťový Reset"; -$a->strings["Load Network page with no filters"] = "Načíst stránku Síť bez filtrů"; -$a->strings["Friend Requests"] = "Žádosti přátel"; -$a->strings["See all notifications"] = "Zobrazit všechny upozornění"; -$a->strings["Mark all system notifications seen"] = "Označit všechny upozornění systému jako přečtené"; -$a->strings["Private mail"] = "Soukromá pošta"; -$a->strings["Inbox"] = "Doručená pošta"; -$a->strings["Outbox"] = "Odeslaná pošta"; -$a->strings["Manage"] = "Spravovat"; -$a->strings["Manage other pages"] = "Spravovat jiné stránky"; -$a->strings["Account settings"] = "Nastavení účtu"; -$a->strings["Manage/Edit Profiles"] = "Spravovat/Editovat Profily"; -$a->strings["Manage/edit friends and contacts"] = "Spravovat/upravit přátelé a kontakty"; -$a->strings["Site setup and configuration"] = "Nastavení webu a konfigurace"; -$a->strings["Navigation"] = "Navigace"; -$a->strings["Site map"] = "Mapa webu"; -$a->strings["User not found."] = "Uživatel nenalezen"; -$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "Bylo dosaženo denního limitu %d odeslaných příspěvků. Příspěvek byl odmítnut."; -$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Bylo týdenního limitu %d odeslaných příspěvků. Příspěvek byl odmítnut."; -$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "Bylo dosaženo měsíčního limitu %d odeslaných příspěvků. Příspěvek byl odmítnut."; -$a->strings["There is no status with this id."] = "Není tu žádný status s tímto id."; -$a->strings["There is no conversation with this id."] = "Nemáme žádnou konverzaci s tímto id."; -$a->strings["Invalid request."] = "Neplatný požadavek."; -$a->strings["Invalid item."] = "Neplatná položka."; -$a->strings["Invalid action. "] = "Neplatná akce"; -$a->strings["DB error"] = "DB chyba"; -$a->strings["An invitation is required."] = "Pozvánka je vyžadována."; -$a->strings["Invitation could not be verified."] = "Pozvánka nemohla být ověřena."; -$a->strings["Invalid OpenID url"] = "Neplatný odkaz OpenID"; -$a->strings["Please enter the required information."] = "Zadejte prosím požadované informace."; -$a->strings["Please use a shorter name."] = "Použijte prosím kratší jméno."; -$a->strings["Name too short."] = "Jméno je příliš krátké."; -$a->strings["That doesn't appear to be your full (First Last) name."] = "Nezdá se, že by to bylo vaše celé jméno (křestní jméno a příjmení)."; -$a->strings["Your email domain is not among those allowed on this site."] = "Váš e-mailová doména není na tomto serveru mezi povolenými."; -$a->strings["Not a valid email address."] = "Neplatná e-mailová adresa."; -$a->strings["Cannot use that email."] = "Tento e-mail nelze použít."; -$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Vaše \"přezdívka\" může obsahovat pouze \"a-z\", \"0-9\", \"-\", a \"_\", a musí začínat písmenem."; -$a->strings["Nickname is already registered. Please choose another."] = "Přezdívka je již registrována. Prosím vyberte jinou."; -$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Tato přezdívka již zde byla použita a nemůže být využita znovu. Prosím vyberete si jinou."; -$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "Závažná chyba: Generování bezpečnostních klíčů se nezdařilo."; -$a->strings["An error occurred during registration. Please try again."] = "Došlo k chybě při registraci. Zkuste to prosím znovu."; -$a->strings["An error occurred creating your default profile. Please try again."] = "Došlo k chybě při vytváření Vašeho výchozího profilu. Zkuste to prosím znovu."; -$a->strings["Friends"] = "Přátelé"; -$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\n\t\tDrahý %1\$s,\n\t\t\tDěkujeme Vám za registraci na %2\$s. Váš účet byl vytvořen.\n\t"; -$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."] = "\n\t\tVaše přihlašovací údaje jsou následující:\n\t\t\tAdresa webu:\t%3\$s\n\t\t\tpřihlašovací jméno:\t%1\$s\n\t\t\theslo:\t%5\$s\n\n\t\tHeslo si můžete změnit na stránce \"Nastavení\" vašeho účtu poté, co se přihlásíte.\n\n\t\tProsím věnujte pár chvil revizi dalšího nastavení vašeho účtu na dané stránce.\n\n\t\tTaké su můžete přidat nějaké základní informace do svého výchozího profilu (na stránce \"Profily\"), takže ostatní lidé vás snáze najdou.\n\n\t\tDoporučujeme Vám uvést celé jméno a i foto. Přidáním nějakých \"klíčových slov\" (velmi užitečné pro hledání nových přátel) a možná také zemi, ve které žijete, pokud nechcete být více konkrétní.\n\n\t\tPlně resepktujeme vaše právo na soukromí a nic z výše uvedeného není povinné.\n\t\tPokud jste zde nový a neznáte zde nikoho, uvedením daných informací můžete získat nové přátele.\n\n\n\t\tDíky a vítejte na %2\$s."; -$a->strings["Sharing notification from Diaspora network"] = "Sdílení oznámení ze sítě Diaspora"; -$a->strings["Attachments:"] = "Přílohy:"; -$a->strings["Do you really want to delete this item?"] = "Opravdu chcete smazat tuto položku?"; -$a->strings["Archives"] = "Archív"; -$a->strings["Male"] = "Muž"; -$a->strings["Female"] = "Žena"; -$a->strings["Currently Male"] = "V současné době muž"; -$a->strings["Currently Female"] = "V současné době žena"; -$a->strings["Mostly Male"] = "Většinou muž"; -$a->strings["Mostly Female"] = "Většinou žena"; -$a->strings["Transgender"] = "Transgender"; -$a->strings["Intersex"] = "Intersex"; -$a->strings["Transsexual"] = "Transexuál"; -$a->strings["Hermaphrodite"] = "Hermafrodit"; -$a->strings["Neuter"] = "Neutrál"; -$a->strings["Non-specific"] = "Nespecifikováno"; -$a->strings["Other"] = "Jiné"; -$a->strings["Undecided"] = "Nerozhodnuto"; -$a->strings["Males"] = "Muži"; -$a->strings["Females"] = "Ženy"; -$a->strings["Gay"] = "Gay"; -$a->strings["Lesbian"] = "Lesbička"; -$a->strings["No Preference"] = "Bez preferencí"; -$a->strings["Bisexual"] = "Bisexuál"; -$a->strings["Autosexual"] = "Autosexuál"; -$a->strings["Abstinent"] = "Abstinent"; -$a->strings["Virgin"] = "panic/panna"; -$a->strings["Deviant"] = "Deviant"; -$a->strings["Fetish"] = "Fetišista"; -$a->strings["Oodles"] = "Hodně"; -$a->strings["Nonsexual"] = "Nesexuální"; -$a->strings["Single"] = "Svobodný"; -$a->strings["Lonely"] = "Osamnělý"; -$a->strings["Available"] = "Dostupný"; -$a->strings["Unavailable"] = "Nedostupný"; -$a->strings["Has crush"] = "Zamilovaný"; -$a->strings["Infatuated"] = "Zabouchnutý"; -$a->strings["Dating"] = "Seznamující se"; -$a->strings["Unfaithful"] = "Nevěrný"; -$a->strings["Sex Addict"] = "Závislý na sexu"; -$a->strings["Friends/Benefits"] = "Přátelé / výhody"; -$a->strings["Casual"] = "Ležérní"; -$a->strings["Engaged"] = "Zadaný"; -$a->strings["Married"] = "Ženatý/vdaná"; -$a->strings["Imaginarily married"] = "Pomyslně ženatý/vdaná"; -$a->strings["Partners"] = "Partneři"; -$a->strings["Cohabiting"] = "Žijící ve společné domácnosti"; -$a->strings["Common law"] = "Zvykové právo"; -$a->strings["Happy"] = "Šťastný"; -$a->strings["Not looking"] = "Nehledající"; -$a->strings["Swinger"] = "Swinger"; -$a->strings["Betrayed"] = "Zrazen"; -$a->strings["Separated"] = "Odloučený"; -$a->strings["Unstable"] = "Nestálý"; -$a->strings["Divorced"] = "Rozvedený(á)"; -$a->strings["Imaginarily divorced"] = "Pomyslně rozvedený"; -$a->strings["Widowed"] = "Ovdovělý(á)"; -$a->strings["Uncertain"] = "Nejistý"; -$a->strings["It's complicated"] = "Je to složité"; -$a->strings["Don't care"] = "Nezajímá"; -$a->strings["Ask me"] = "Zeptej se mě"; -$a->strings["Friendica Notification"] = "Friendica Notifikace"; -$a->strings["Thank You,"] = "Děkujeme, "; -$a->strings["%s Administrator"] = "%s Administrátor"; -$a->strings["%s "] = "%s "; -$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Upozornění] Obdržena nová zpráva na %s"; -$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s Vám poslal novou soukromou zprávu na %2\$s."; -$a->strings["%1\$s sent you %2\$s."] = "%1\$s Vám poslal %2\$s."; -$a->strings["a private message"] = "soukromá zpráva"; -$a->strings["Please visit %s to view and/or reply to your private messages."] = "Prosím navštivte %s pro zobrazení Vašich soukromých zpráv a možnost na ně odpovědět."; -$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s okomentoval na [url=%2\$s]%3\$s[/url]"; -$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s okomentoval na [url=%2\$s]%3\$s's %4\$s[/url]"; -$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s okomentoval na [url=%2\$s]Váš %3\$s[/url]"; -$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Upozornění] Komentář ke konverzaci #%1\$d od %2\$s"; -$a->strings["%s commented on an item/conversation you have been following."] = "Uživatel %s okomentoval vámi sledovanou položku/konverzaci."; -$a->strings["Please visit %s to view and/or reply to the conversation."] = "Prosím navštivte %s pro zobrazení konverzace a možnosti odpovědět."; -$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Upozornění] %s umístěn na Vaši profilovou zeď"; -$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s přidal příspěvek na Vaši profilovou zeď na %2\$s"; -$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s napřidáno na [url=%2\$s]na Vaši zeď[/url]"; -$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Upozornění] %s Vás označil"; -$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s Vás označil na %2\$s"; -$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]Vás označil[/url]."; -$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Notify] %s nasdílel nový příspěvek"; -$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s nasdílel nový příspěvek na %2\$s"; -$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]nasdílel příspěvek[/url]."; -$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Upozornění] %1\$s Vás šťouchnul"; -$a->strings["%1\$s poked you at %2\$s"] = "%1\$s Vás šťouchnul na %2\$s"; -$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "Uživatel %1\$s [url=%2\$s]Vás šťouchnul[/url]."; -$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Upozornění] %s označil Váš příspěvek"; -$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s označil Váš příspěvek na %2\$s"; -$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s označil [url=%2\$s]Váš příspěvek[/url]"; -$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Upozornění] Obdrženo přestavení"; -$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Obdržel jste žádost o spojení od '%1\$s' na %2\$s"; -$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Obdržel jste [url=%1\$s]žádost o spojení[/url] od %2\$s."; -$a->strings["You may visit their profile at %s"] = "Můžete navštívit jejich profil na %s"; -$a->strings["Please visit %s to approve or reject the introduction."] = "Prosím navštivte %s pro schválení či zamítnutí představení."; -$a->strings["[Friendica:Notify] A new person is sharing with you"] = "[Friendica:Upozornění] Nový člověk s vámi sdílí"; -$a->strings["%1\$s is sharing with you at %2\$s"] = "uživatel %1\$s sdílí s vámi ma %2\$s"; -$a->strings["[Friendica:Notify] You have a new follower"] = "[Friendica:Upozornění] Máte nového následovníka"; -$a->strings["You have a new follower at %2\$s : %1\$s"] = "Máte nového následovníka na %2\$s : %1\$s"; -$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Upozornění] Obdržen návrh na přátelství"; -$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Obdržel jste návrh přátelství od '%1\$s' na %2\$s"; -$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Obdržel jste [url=%1\$s]návrh přátelství[/url] s %2\$s from %3\$s."; -$a->strings["Name:"] = "Jméno:"; -$a->strings["Photo:"] = "Foto:"; -$a->strings["Please visit %s to approve or reject the suggestion."] = "Prosím navštivte %s pro schválení či zamítnutí doporučení."; -$a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica:Upozornění] Spojení akceptováno"; -$a->strings["'%1\$s' has acepted your connection request at %2\$s"] = "'%1\$s' akceptoval váš požadavek na spojení na %2\$s"; -$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$s akceptoval váš [url=%1\$s]požadavek na spojení[/url]."; -$a->strings["You are now mutual friends and may exchange status updates, photos, and email\n\twithout restriction."] = "Jste nyní vzájemnými přáteli a můžete si vyměňovat aktualizace statusu, fotografií a emailů\nbez omezení."; -$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Prosím navštivte %s pokud chcete změnit tento vztah."; -$a->strings["'%1\$s' has chosen to accept you a \"fan\", which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = "'%1\$s' vás přijal jako \"fanouška\", což omezuje některé formy komunikace - jako jsou soukromé zprávy a některé interakce na profilech. Pokud se jedná o celebritu, případně o komunitní stránky, pak bylo toto nastavení provedeno automaticky.."; -$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future. "] = "''%1\$s' se může rozhodnout rozšířit tento vztah na oboustraný nebo méně restriktivní"; -$a->strings["[Friendica System:Notify] registration request"] = "[Systém Friendica :Upozornění] registrační požadavek"; -$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Obdržel jste požadavek na registraci od '%1\$s' na %2\$s"; -$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Obdržel jste [url=%1\$s]požadavek na registraci[/url] od '%2\$s'."; -$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Plné jméno:\t%1\$s\\nUmístění webu:\t%2\$s\\nPřihlašovací účet:\t%3\$s (%4\$s)"; -$a->strings["Please visit %s to approve or reject the request."] = "Prosím navštivte %s k odsouhlasení nebo k zamítnutí požadavku."; -$a->strings["Embedded content"] = "vložený obsah"; -$a->strings["Embedding disabled"] = "Vkládání zakázáno"; -$a->strings["Error decoding account file"] = "Chyba dekódování uživatelského účtu"; -$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Chyba! V datovém souboru není označení verze! Je to opravdu soubor s účtem Friendica?"; -$a->strings["Error! Cannot check nickname"] = "Chyba! Nelze ověřit přezdívku"; -$a->strings["User '%s' already exists on this server!"] = "Uživatel '%s' již na tomto serveru existuje!"; -$a->strings["User creation error"] = "Chyba vytváření uživatele"; -$a->strings["User profile creation error"] = "Chyba vytváření uživatelského účtu"; -$a->strings["%d contact not imported"] = array( - 0 => "%d kontakt nenaimporován", - 1 => "%d kontaktů nenaimporováno", - 2 => "%d kontakty nenaimporovány", -); -$a->strings["Done. You can now login with your username and password"] = "Hotovo. Nyní se můžete přihlásit se svými uživatelským účtem a heslem"; -$a->strings["toggle mobile"] = "přepnout mobil"; -$a->strings["Theme settings"] = "Nastavení téma"; -$a->strings["Set resize level for images in posts and comments (width and height)"] = "Nastavit velikost fotek v přízpěvcích a komentářích (šířka a výška)"; -$a->strings["Set font-size for posts and comments"] = "Nastav velikost písma pro přízpěvky a komentáře."; -$a->strings["Set theme width"] = "Nastavení šířku grafické šablony"; -$a->strings["Color scheme"] = "Barevné schéma"; -$a->strings["Set line-height for posts and comments"] = "Nastav výšku řádku pro přízpěvky a komentáře."; -$a->strings["Set colour scheme"] = "Nastavit barevné schéma"; -$a->strings["Alignment"] = "Zarovnání"; -$a->strings["Left"] = "Vlevo"; -$a->strings["Center"] = "Uprostřed"; -$a->strings["Posts font size"] = "Velikost písma u příspěvků"; -$a->strings["Textareas font size"] = "Velikost písma textů"; -$a->strings["Set resolution for middle column"] = "Nastav rozlišení pro prostřední sloupec"; -$a->strings["Set color scheme"] = "Nastavení barevného schematu"; -$a->strings["Set zoomfactor for Earth Layer"] = "Nastavit přiblížení pro Earth Layer"; -$a->strings["Set longitude (X) for Earth Layers"] = "Nastavit zeměpistnou délku (X) pro Earth Layers"; -$a->strings["Set latitude (Y) for Earth Layers"] = "Nastavit zeměpistnou šířku (X) pro Earth Layers"; -$a->strings["Community Pages"] = "Komunitní stránky"; -$a->strings["Earth Layers"] = "Earth Layers"; -$a->strings["Community Profiles"] = "Komunitní profily"; -$a->strings["Help or @NewHere ?"] = "Pomoc nebo @ProNováčky ?"; -$a->strings["Connect Services"] = "Propojené služby"; -$a->strings["Find Friends"] = "Nalézt Přátele"; -$a->strings["Last users"] = "Poslední uživatelé"; -$a->strings["Last photos"] = "Poslední fotografie"; -$a->strings["Last likes"] = "Poslední líbí/nelíbí"; -$a->strings["Your contacts"] = "Vaše kontakty"; -$a->strings["Your personal photos"] = "Vaše osobní fotky"; -$a->strings["Local Directory"] = "Lokální Adresář"; -$a->strings["Set zoomfactor for Earth Layers"] = "Nastavit faktor přiblížení pro Earth Layers"; -$a->strings["Show/hide boxes at right-hand column:"] = "Zobrazit/skrýt boxy na pravém sloupci:"; -$a->strings["Set style"] = "Nastavit styl"; -$a->strings["greenzero"] = "zelená nula"; -$a->strings["purplezero"] = "fialová nula"; -$a->strings["easterbunny"] = "velikonoční zajíček"; -$a->strings["darkzero"] = "tmavá nula"; -$a->strings["comix"] = "komiksová"; -$a->strings["slackr"] = "flákač"; -$a->strings["Variations"] = "Variace"; From 7ecc401b5cfbae887546c5d13a840026485cc9c0 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Tue, 7 Apr 2015 09:07:04 +0200 Subject: [PATCH 019/306] FR update of the strings --- view/fr/messages.po | 11822 +++++++++++++++++++++--------------------- view/fr/strings.php | 2737 +++++----- 2 files changed, 7310 insertions(+), 7249 deletions(-) diff --git a/view/fr/messages.po b/view/fr/messages.po index 9e4d54527e..4d0b7c30ff 100644 --- a/view/fr/messages.po +++ b/view/fr/messages.po @@ -14,14 +14,14 @@ # Olivier , 2011-2012 # Sylvain Lagacé, 2014-2015 # tomamplius , 2014 -# Tubuntu , 2013-2014 +# Tubuntu , 2013-2015 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-09 08:57+0100\n" -"PO-Revision-Date: 2015-02-09 09:46+0000\n" -"Last-Translator: fabrixxm \n" +"POT-Creation-Date: 2015-04-04 17:54+0200\n" +"PO-Revision-Date: 2015-04-06 10:23+0000\n" +"Last-Translator: Tubuntu \n" "Language-Team: French (http://www.transifex.com/projects/p/friendica/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,919 +29,3207 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../mod/contacts.php:108 +#: ../../view/theme/cleanzero/config.php:80 +#: ../../view/theme/vier/config.php:56 +#: ../../view/theme/duepuntozero/config.php:59 +#: ../../view/theme/diabook/config.php:148 +#: ../../view/theme/diabook/theme.php:633 +#: ../../view/theme/quattro/config.php:64 ../../view/theme/dispy/config.php:70 +#: ../../object/Item.php:678 ../../mod/contacts.php:492 +#: ../../mod/manage.php:110 ../../mod/fsuggest.php:107 +#: ../../mod/photos.php:1084 ../../mod/photos.php:1203 +#: ../../mod/photos.php:1514 ../../mod/photos.php:1565 +#: ../../mod/photos.php:1609 ../../mod/photos.php:1697 +#: ../../mod/invite.php:140 ../../mod/events.php:478 ../../mod/mood.php:137 +#: ../../mod/message.php:335 ../../mod/message.php:564 +#: ../../mod/profiles.php:686 ../../mod/install.php:248 +#: ../../mod/install.php:286 ../../mod/crepair.php:186 +#: ../../mod/content.php:710 ../../mod/poke.php:199 ../../mod/localtime.php:45 +msgid "Submit" +msgstr "Envoyer" + +#: ../../view/theme/cleanzero/config.php:82 +#: ../../view/theme/vier/config.php:58 +#: ../../view/theme/duepuntozero/config.php:61 +#: ../../view/theme/diabook/config.php:150 +#: ../../view/theme/quattro/config.php:66 ../../view/theme/dispy/config.php:72 +msgid "Theme settings" +msgstr "Réglages du thème graphique" + +#: ../../view/theme/cleanzero/config.php:83 +msgid "Set resize level for images in posts and comments (width and height)" +msgstr "Choisir une taille pour les images dans les publications et commentaires (largeur et hauteur)" + +#: ../../view/theme/cleanzero/config.php:84 +#: ../../view/theme/diabook/config.php:151 +#: ../../view/theme/dispy/config.php:73 +msgid "Set font-size for posts and comments" +msgstr "Réglez 'font-size' (taille de police) pour publications et commentaires" + +#: ../../view/theme/cleanzero/config.php:85 +msgid "Set theme width" +msgstr "Largeur du thème" + +#: ../../view/theme/cleanzero/config.php:86 +#: ../../view/theme/quattro/config.php:68 +msgid "Color scheme" +msgstr "Palette de couleurs" + +#: ../../view/theme/vier/config.php:59 +msgid "Set style" +msgstr "Définir le style" + +#: ../../view/theme/duepuntozero/config.php:44 ../../include/text.php:1719 +#: ../../include/user.php:247 +msgid "default" +msgstr "défaut" + +#: ../../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" +msgstr "Variations" + +#: ../../view/theme/diabook/config.php:142 +#: ../../view/theme/diabook/theme.php:621 ../../include/acl_selectors.php:335 +msgid "don't show" +msgstr "cacher" + +#: ../../view/theme/diabook/config.php:142 +#: ../../view/theme/diabook/theme.php:621 ../../include/acl_selectors.php:334 +msgid "show" +msgstr "montrer" + +#: ../../view/theme/diabook/config.php:152 +#: ../../view/theme/dispy/config.php:74 +msgid "Set line-height for posts and comments" +msgstr "Réglez 'line-height' (hauteur de police) pour publications et commentaires" + +#: ../../view/theme/diabook/config.php:153 +msgid "Set resolution for middle column" +msgstr "Réglez la résolution de la colonne centrale" + +#: ../../view/theme/diabook/config.php:154 +msgid "Set color scheme" +msgstr "Choisir le schéma de couleurs" + +#: ../../view/theme/diabook/config.php:155 +msgid "Set zoomfactor for Earth Layer" +msgstr "Niveau de zoom" + +#: ../../view/theme/diabook/config.php:156 +#: ../../view/theme/diabook/theme.php:585 +msgid "Set longitude (X) for Earth Layers" +msgstr "Régler la longitude (X) pour la géolocalisation" + +#: ../../view/theme/diabook/config.php:157 +#: ../../view/theme/diabook/theme.php:586 +msgid "Set latitude (Y) for Earth Layers" +msgstr "Régler la latitude (Y) pour la géolocalisation" + +#: ../../view/theme/diabook/config.php:158 +#: ../../view/theme/diabook/theme.php:130 +#: ../../view/theme/diabook/theme.php:544 +#: ../../view/theme/diabook/theme.php:624 +msgid "Community Pages" +msgstr "Pages de Communauté" + +#: ../../view/theme/diabook/config.php:159 +#: ../../view/theme/diabook/theme.php:579 +#: ../../view/theme/diabook/theme.php:625 +msgid "Earth Layers" +msgstr "Géolocalisation" + +#: ../../view/theme/diabook/config.php:160 +#: ../../view/theme/diabook/theme.php:391 +#: ../../view/theme/diabook/theme.php:626 +msgid "Community Profiles" +msgstr "Profils communautaires" + +#: ../../view/theme/diabook/config.php:161 +#: ../../view/theme/diabook/theme.php:599 +#: ../../view/theme/diabook/theme.php:627 +msgid "Help or @NewHere ?" +msgstr "Aide ou @NewHere?" + +#: ../../view/theme/diabook/config.php:162 +#: ../../view/theme/diabook/theme.php:606 +#: ../../view/theme/diabook/theme.php:628 +msgid "Connect Services" +msgstr "Connecter des services" + +#: ../../view/theme/diabook/config.php:163 +#: ../../view/theme/diabook/theme.php:523 +#: ../../view/theme/diabook/theme.php:629 +msgid "Find Friends" +msgstr "Trouver des amis" + +#: ../../view/theme/diabook/config.php:164 +#: ../../view/theme/diabook/theme.php:412 +#: ../../view/theme/diabook/theme.php:630 +msgid "Last users" +msgstr "Derniers utilisateurs" + +#: ../../view/theme/diabook/config.php:165 +#: ../../view/theme/diabook/theme.php:486 +#: ../../view/theme/diabook/theme.php:631 +msgid "Last photos" +msgstr "Dernières photos" + +#: ../../view/theme/diabook/config.php:166 +#: ../../view/theme/diabook/theme.php:441 +#: ../../view/theme/diabook/theme.php:632 +msgid "Last likes" +msgstr "Dernièrement aimé" + +#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:105 +#: ../../include/nav.php:148 ../../mod/notifications.php:93 +msgid "Home" +msgstr "Profil" + +#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76 +#: ../../include/nav.php:148 +msgid "Your posts and conversations" +msgstr "Vos publications et conversations" + +#: ../../view/theme/diabook/theme.php:124 ../../boot.php:2133 +#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:87 +#: ../../include/nav.php:77 ../../mod/profperm.php:103 +#: ../../mod/newmember.php:32 +msgid "Profile" +msgstr "Profil" + +#: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77 +msgid "Your profile page" +msgstr "Votre page de profil" + +#: ../../view/theme/diabook/theme.php:125 ../../include/nav.php:177 +#: ../../mod/contacts.php:718 +msgid "Contacts" +msgstr "Contacts" + +#: ../../view/theme/diabook/theme.php:125 +msgid "Your contacts" +msgstr "Vos contacts" + +#: ../../view/theme/diabook/theme.php:126 ../../boot.php:2140 +#: ../../include/nav.php:78 ../../mod/fbrowser.php:25 +msgid "Photos" +msgstr "Photos" + +#: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:78 +msgid "Your photos" +msgstr "Vos photos" + +#: ../../view/theme/diabook/theme.php:127 ../../boot.php:2157 +#: ../../include/nav.php:80 ../../mod/events.php:370 +msgid "Events" +msgstr "Événements" + +#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:80 +msgid "Your events" +msgstr "Vos événements" + +#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:81 +msgid "Personal notes" +msgstr "Notes personnelles" + +#: ../../view/theme/diabook/theme.php:128 +msgid "Your personal photos" +msgstr "Vos photos personnelles" + +#: ../../view/theme/diabook/theme.php:129 ../../include/nav.php:129 +#: ../../include/nav.php:131 ../../mod/community.php:32 +msgid "Community" +msgstr "Communauté" + +#: ../../view/theme/diabook/theme.php:463 ../../include/conversation.php:118 +#: ../../include/conversation.php:245 ../../include/text.php:1983 +msgid "event" +msgstr "évènement" + +#: ../../view/theme/diabook/theme.php:466 +#: ../../view/theme/diabook/theme.php:475 ../../include/diaspora.php:2011 +#: ../../include/conversation.php:121 ../../include/conversation.php:130 +#: ../../include/conversation.php:248 ../../include/conversation.php:257 +#: ../../mod/like.php:149 ../../mod/like.php:319 ../../mod/subthread.php:87 +#: ../../mod/tagger.php:62 +msgid "status" +msgstr "le statut" + +#: ../../view/theme/diabook/theme.php:471 ../../include/diaspora.php:2011 +#: ../../include/conversation.php:126 ../../include/conversation.php:253 +#: ../../include/text.php:1985 ../../mod/like.php:149 +#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 +msgid "photo" +msgstr "photo" + +#: ../../view/theme/diabook/theme.php:480 ../../include/diaspora.php:2027 +#: ../../include/conversation.php:137 ../../mod/like.php:166 #, php-format -msgid "%d contact edited." -msgid_plural "%d contacts edited" -msgstr[0] "%d contact édité" -msgstr[1] "%d contacts édités." +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s aime %3$s de %2$s" -#: ../../mod/contacts.php:139 ../../mod/contacts.php:272 -msgid "Could not access contact record." -msgstr "Impossible d'accéder à l'enregistrement du contact." +#: ../../view/theme/diabook/theme.php:499 ../../mod/photos.php:60 +#: ../../mod/photos.php:155 ../../mod/photos.php:1064 +#: ../../mod/photos.php:1187 ../../mod/photos.php:1210 +#: ../../mod/photos.php:1760 ../../mod/photos.php:1772 +msgid "Contact Photos" +msgstr "Photos du contact" -#: ../../mod/contacts.php:153 -msgid "Could not locate selected profile." -msgstr "Impossible de localiser le profil séléctionné." +#: ../../view/theme/diabook/theme.php:500 ../../include/user.php:335 +#: ../../include/user.php:342 ../../include/user.php:349 +#: ../../mod/photos.php:155 ../../mod/photos.php:731 ../../mod/photos.php:1187 +#: ../../mod/photos.php:1210 ../../mod/profile_photo.php:74 +#: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88 +#: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296 +#: ../../mod/profile_photo.php:305 +msgid "Profile Photos" +msgstr "Photos du profil" -#: ../../mod/contacts.php:186 -msgid "Contact updated." -msgstr "Contact mis-à-jour." +#: ../../view/theme/diabook/theme.php:524 +msgid "Local Directory" +msgstr "Annuaire local" -#: ../../mod/contacts.php:188 ../../mod/dfrn_request.php:576 -msgid "Failed to update contact record." -msgstr "Échec de mise-à-jour du contact." +#: ../../view/theme/diabook/theme.php:525 ../../mod/directory.php:51 +msgid "Global Directory" +msgstr "Annuaire global" -#: ../../mod/contacts.php:254 ../../mod/manage.php:96 -#: ../../mod/display.php:499 ../../mod/profile_photo.php:19 -#: ../../mod/profile_photo.php:169 ../../mod/profile_photo.php:180 -#: ../../mod/profile_photo.php:193 ../../mod/follow.php:9 -#: ../../mod/item.php:168 ../../mod/item.php:184 ../../mod/group.php:19 -#: ../../mod/dfrn_confirm.php:55 ../../mod/fsuggest.php:78 -#: ../../mod/wall_upload.php:66 ../../mod/viewcontacts.php:24 -#: ../../mod/notifications.php:66 ../../mod/message.php:38 -#: ../../mod/message.php:174 ../../mod/crepair.php:119 -#: ../../mod/nogroup.php:25 ../../mod/network.php:4 ../../mod/allfriends.php:9 -#: ../../mod/events.php:140 ../../mod/install.php:151 +#: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:36 +msgid "Similar Interests" +msgstr "Intérêts similaires" + +#: ../../view/theme/diabook/theme.php:527 ../../include/contact_widgets.php:35 +#: ../../mod/suggest.php:68 +msgid "Friend Suggestions" +msgstr "Suggestions d'amitiés/contacts" + +#: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:38 +msgid "Invite Friends" +msgstr "Inviter des amis" + +#: ../../view/theme/diabook/theme.php:544 +#: ../../view/theme/diabook/theme.php:648 ../../include/nav.php:172 +#: ../../mod/settings.php:90 ../../mod/admin.php:1104 ../../mod/admin.php:1325 +#: ../../mod/newmember.php:22 +msgid "Settings" +msgstr "Réglages" + +#: ../../view/theme/diabook/theme.php:584 +msgid "Set zoomfactor for Earth Layers" +msgstr "Régler le niveau de zoom pour la géolocalisation" + +#: ../../view/theme/diabook/theme.php:622 +msgid "Show/hide boxes at right-hand column:" +msgstr "Montrer/cacher les boîtes dans la colonne de droite :" + +#: ../../view/theme/quattro/config.php:67 +msgid "Alignment" +msgstr "Alignement" + +#: ../../view/theme/quattro/config.php:67 +msgid "Left" +msgstr "Gauche" + +#: ../../view/theme/quattro/config.php:67 +msgid "Center" +msgstr "Centre" + +#: ../../view/theme/quattro/config.php:69 +msgid "Posts font size" +msgstr "Taille de texte des publications" + +#: ../../view/theme/quattro/config.php:70 +msgid "Textareas font size" +msgstr "Taille de police des zones de texte" + +#: ../../view/theme/dispy/config.php:75 +msgid "Set colour scheme" +msgstr "Choisir le schéma de couleurs" + +#: ../../index.php:211 ../../mod/apps.php:7 +msgid "You must be logged in to use addons. " +msgstr "Vous devez être connecté pour utiliser les greffons." + +#: ../../index.php:255 ../../mod/help.php:42 +msgid "Not Found" +msgstr "Non trouvé" + +#: ../../index.php:258 ../../mod/help.php:45 +msgid "Page not found." +msgstr "Page introuvable." + +#: ../../index.php:367 ../../mod/group.php:72 ../../mod/profperm.php:19 +msgid "Permission denied" +msgstr "Permission refusée" + +#: ../../index.php:368 ../../include/items.php:4815 ../../mod/attach.php:33 #: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33 #: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103 -#: ../../mod/wall_attach.php:55 ../../mod/settings.php:102 -#: ../../mod/settings.php:596 ../../mod/settings.php:601 -#: ../../mod/register.php:42 ../../mod/delegate.php:12 ../../mod/mood.php:114 -#: ../../mod/suggest.php:58 ../../mod/profiles.php:165 -#: ../../mod/profiles.php:618 ../../mod/editpost.php:10 ../../mod/api.php:26 -#: ../../mod/api.php:31 ../../mod/notes.php:20 ../../mod/poke.php:135 -#: ../../mod/invite.php:15 ../../mod/invite.php:101 ../../mod/photos.php:134 -#: ../../mod/photos.php:1050 ../../mod/regmod.php:110 ../../mod/uimport.php:23 -#: ../../mod/attach.php:33 ../../include/items.php:4712 ../../index.php:369 +#: ../../mod/group.php:19 ../../mod/delegate.php:12 +#: ../../mod/notifications.php:66 ../../mod/settings.php:20 +#: ../../mod/settings.php:107 ../../mod/settings.php:606 +#: ../../mod/contacts.php:258 ../../mod/wall_attach.php:55 +#: ../../mod/register.php:42 ../../mod/manage.php:96 ../../mod/editpost.php:10 +#: ../../mod/regmod.php:110 ../../mod/api.php:26 ../../mod/api.php:31 +#: ../../mod/suggest.php:58 ../../mod/nogroup.php:25 ../../mod/fsuggest.php:78 +#: ../../mod/viewcontacts.php:24 ../../mod/wall_upload.php:66 +#: ../../mod/notes.php:20 ../../mod/network.php:4 ../../mod/photos.php:134 +#: ../../mod/photos.php:1050 ../../mod/follow.php:9 ../../mod/uimport.php:23 +#: ../../mod/invite.php:15 ../../mod/invite.php:101 ../../mod/events.php:140 +#: ../../mod/mood.php:114 ../../mod/message.php:38 ../../mod/message.php:174 +#: ../../mod/profiles.php:165 ../../mod/profiles.php:618 +#: ../../mod/install.php:151 ../../mod/crepair.php:119 ../../mod/poke.php:135 +#: ../../mod/display.php:499 ../../mod/dfrn_confirm.php:55 +#: ../../mod/item.php:169 ../../mod/item.php:185 +#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169 +#: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193 +#: ../../mod/allfriends.php:9 msgid "Permission denied." msgstr "Permission refusée." -#: ../../mod/contacts.php:287 -msgid "Contact has been blocked" -msgstr "Le contact a été bloqué" +#: ../../index.php:427 +msgid "toggle mobile" +msgstr "activ. mobile" -#: ../../mod/contacts.php:287 -msgid "Contact has been unblocked" -msgstr "Le contact n'est plus bloqué" +#: ../../addon-wrk/openidserver/lib/render/trust.php:30 +#, php-format +msgid "Do you wish to confirm your identity (%s) with %s" +msgstr "Voulez-vous confirmer votre identité (%s) avec %s" -#: ../../mod/contacts.php:298 -msgid "Contact has been ignored" -msgstr "Le contact a été ignoré" +#: ../../addon-wrk/openidserver/lib/render/trust.php:43 +#: ../../mod/dfrn_request.php:676 +msgid "Confirm" +msgstr "Confirmer" -#: ../../mod/contacts.php:298 -msgid "Contact has been unignored" -msgstr "Le contact n'est plus ignoré" +#: ../../addon-wrk/openidserver/lib/render/trust.php:44 +msgid "Do not confirm" +msgstr "Ne pas confirmer" -#: ../../mod/contacts.php:310 -msgid "Contact has been archived" -msgstr "Contact archivé" +#: ../../addon-wrk/openidserver/lib/render/trust.php:48 +msgid "Trust This Site" +msgstr "Faire confiance à ce site" -#: ../../mod/contacts.php:310 -msgid "Contact has been unarchived" -msgstr "Contact désarchivé" +#: ../../addon-wrk/openidserver/lib/render/trust.php:53 +msgid "No Identifier Sent" +msgstr "Aucun identifiant envoyé" -#: ../../mod/contacts.php:335 ../../mod/contacts.php:711 -msgid "Do you really want to delete this contact?" -msgstr "Voulez-vous vraiment supprimer ce contact?" +#: ../../addon-wrk/openidserver/lib/render/wronguser.php:5 +msgid "Requested identity don't match logged in user." +msgstr "La requête d'identité ne correspond pas à l'utilisateur connecté." -#: ../../mod/contacts.php:337 ../../mod/message.php:209 -#: ../../mod/settings.php:1010 ../../mod/settings.php:1016 -#: ../../mod/settings.php:1024 ../../mod/settings.php:1028 -#: ../../mod/settings.php:1033 ../../mod/settings.php:1039 -#: ../../mod/settings.php:1045 ../../mod/settings.php:1051 -#: ../../mod/settings.php:1081 ../../mod/settings.php:1082 -#: ../../mod/settings.php:1083 ../../mod/settings.php:1084 -#: ../../mod/settings.php:1085 ../../mod/dfrn_request.php:830 -#: ../../mod/register.php:233 ../../mod/suggest.php:29 -#: ../../mod/profiles.php:661 ../../mod/profiles.php:664 ../../mod/api.php:105 -#: ../../include/items.php:4557 +#: ../../addon-wrk/openidserver/lib/render.php:27 +#, php-format +msgid "Please wait; you are being redirected to <%s>" +msgstr "Veuillez patienter, vous êtes redirigé vers <%s>" + +#: ../../boot.php:749 +msgid "Delete this item?" +msgstr "Effacer cet élément?" + +#: ../../boot.php:750 ../../object/Item.php:361 ../../object/Item.php:677 +#: ../../mod/photos.php:1564 ../../mod/photos.php:1608 +#: ../../mod/photos.php:1696 ../../mod/content.php:709 +msgid "Comment" +msgstr "Commenter" + +#: ../../boot.php:751 ../../include/contact_widgets.php:205 +#: ../../object/Item.php:390 ../../mod/content.php:606 +msgid "show more" +msgstr "montrer plus" + +#: ../../boot.php:752 +msgid "show fewer" +msgstr "montrer moins" + +#: ../../boot.php:1122 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "Mise-à-jour %s échouée. Voir les journaux d'erreur." + +#: ../../boot.php:1229 +msgid "Create a New Account" +msgstr "Créer un nouveau compte" + +#: ../../boot.php:1230 ../../include/nav.php:109 ../../mod/register.php:269 +msgid "Register" +msgstr "S'inscrire" + +#: ../../boot.php:1254 ../../include/nav.php:73 +msgid "Logout" +msgstr "Se déconnecter" + +#: ../../boot.php:1255 ../../include/nav.php:92 ../../mod/bookmarklet.php:12 +msgid "Login" +msgstr "Connexion" + +#: ../../boot.php:1257 +msgid "Nickname or Email address: " +msgstr "Pseudo ou courriel: " + +#: ../../boot.php:1258 +msgid "Password: " +msgstr "Mot de passe: " + +#: ../../boot.php:1259 +msgid "Remember me" +msgstr "Se souvenir de moi" + +#: ../../boot.php:1262 +msgid "Or login using OpenID: " +msgstr "Ou connectez-vous via OpenID: " + +#: ../../boot.php:1268 +msgid "Forgot your password?" +msgstr "Mot de passe oublié?" + +#: ../../boot.php:1269 ../../mod/lostpass.php:109 +msgid "Password Reset" +msgstr "Réinitialiser le mot de passe" + +#: ../../boot.php:1271 +msgid "Website Terms of Service" +msgstr "Conditions d'utilisation du site internet" + +#: ../../boot.php:1272 +msgid "terms of service" +msgstr "conditions d'utilisation" + +#: ../../boot.php:1274 +msgid "Website Privacy Policy" +msgstr "Politique de confidentialité du site internet" + +#: ../../boot.php:1275 +msgid "privacy policy" +msgstr "politique de confidentialité" + +#: ../../boot.php:1408 +msgid "Requested account is not available." +msgstr "Le compte demandé n'est pas disponible." + +#: ../../boot.php:1447 ../../mod/profile.php:21 +msgid "Requested profile is not available." +msgstr "Le profil demandé n'est pas disponible." + +#: ../../boot.php:1490 ../../boot.php:1624 +#: ../../include/profile_advanced.php:84 +msgid "Edit profile" +msgstr "Editer le profil" + +#: ../../boot.php:1557 ../../include/contact_widgets.php:10 +#: ../../mod/suggest.php:90 ../../mod/match.php:58 +msgid "Connect" +msgstr "Relier" + +#: ../../boot.php:1589 +msgid "Message" +msgstr "Message" + +#: ../../boot.php:1595 ../../include/nav.php:175 +msgid "Profiles" +msgstr "Profils" + +#: ../../boot.php:1595 +msgid "Manage/edit profiles" +msgstr "Gérer/éditer les profils" + +#: ../../boot.php:1600 ../../boot.php:1626 ../../mod/profiles.php:804 +msgid "Change profile photo" +msgstr "Changer de photo de profil" + +#: ../../boot.php:1601 ../../mod/profiles.php:805 +msgid "Create New Profile" +msgstr "Créer un nouveau profil" + +#: ../../boot.php:1611 ../../mod/profiles.php:816 +msgid "Profile Image" +msgstr "Image du profil" + +#: ../../boot.php:1614 ../../mod/profiles.php:818 +msgid "visible to everybody" +msgstr "visible par tous" + +#: ../../boot.php:1615 ../../mod/profiles.php:819 +msgid "Edit visibility" +msgstr "Changer la visibilité" + +#: ../../boot.php:1637 ../../include/event.php:40 +#: ../../include/bb2diaspora.php:155 ../../mod/events.php:471 +#: ../../mod/directory.php:136 +msgid "Location:" +msgstr "Localisation:" + +#: ../../boot.php:1639 ../../include/profile_advanced.php:17 +#: ../../mod/directory.php:138 +msgid "Gender:" +msgstr "Genre:" + +#: ../../boot.php:1642 ../../include/profile_advanced.php:37 +#: ../../mod/directory.php:140 +msgid "Status:" +msgstr "Statut:" + +#: ../../boot.php:1644 ../../include/profile_advanced.php:48 +#: ../../mod/directory.php:142 +msgid "Homepage:" +msgstr "Page personnelle:" + +#: ../../boot.php:1646 ../../include/profile_advanced.php:58 +#: ../../mod/directory.php:144 +msgid "About:" +msgstr "À propos:" + +#: ../../boot.php:1711 +msgid "Network:" +msgstr "Réseau" + +#: ../../boot.php:1743 ../../boot.php:1829 +msgid "g A l F d" +msgstr "g A | F d" + +#: ../../boot.php:1744 ../../boot.php:1830 +msgid "F d" +msgstr "F d" + +#: ../../boot.php:1789 ../../boot.php:1877 +msgid "[today]" +msgstr "[aujourd'hui]" + +#: ../../boot.php:1801 +msgid "Birthday Reminders" +msgstr "Rappels d'anniversaires" + +#: ../../boot.php:1802 +msgid "Birthdays this week:" +msgstr "Anniversaires cette semaine:" + +#: ../../boot.php:1864 +msgid "[No description]" +msgstr "[Sans description]" + +#: ../../boot.php:1888 +msgid "Event Reminders" +msgstr "Rappels d'événements" + +#: ../../boot.php:1889 +msgid "Events this week:" +msgstr "Evénements cette semaine:" + +#: ../../boot.php:2126 ../../include/nav.php:76 +msgid "Status" +msgstr "Statut" + +#: ../../boot.php:2129 +msgid "Status Messages and Posts" +msgstr "Messages d'état et publications" + +#: ../../boot.php:2136 +msgid "Profile Details" +msgstr "Détails du profil" + +#: ../../boot.php:2143 ../../mod/photos.php:52 +msgid "Photo Albums" +msgstr "Albums photo" + +#: ../../boot.php:2147 ../../boot.php:2150 ../../include/nav.php:79 +msgid "Videos" +msgstr "Vidéos" + +#: ../../boot.php:2160 +msgid "Events and Calendar" +msgstr "Événements et agenda" + +#: ../../boot.php:2164 ../../mod/notes.php:44 +msgid "Personal Notes" +msgstr "Notes personnelles" + +#: ../../boot.php:2167 +msgid "Only You Can See This" +msgstr "Vous seul pouvez voir ça" + +#: ../../include/features.php:23 +msgid "General Features" +msgstr "Fonctions générales" + +#: ../../include/features.php:25 +msgid "Multiple Profiles" +msgstr "Profils multiples" + +#: ../../include/features.php:25 +msgid "Ability to create multiple profiles" +msgstr "Possibilité de créer plusieurs profils" + +#: ../../include/features.php:30 +msgid "Post Composition Features" +msgstr "Caractéristiques de composition de publication" + +#: ../../include/features.php:31 +msgid "Richtext Editor" +msgstr "Éditeur de texte enrichi" + +#: ../../include/features.php:31 +msgid "Enable richtext editor" +msgstr "Activer l'éditeur de texte enrichi" + +#: ../../include/features.php:32 +msgid "Post Preview" +msgstr "Aperçu de la publication" + +#: ../../include/features.php:32 +msgid "Allow previewing posts and comments before publishing them" +msgstr "Permet la prévisualisation des publications et commentaires avant de les publier" + +#: ../../include/features.php:33 +msgid "Auto-mention Forums" +msgstr "" + +#: ../../include/features.php:33 +msgid "" +"Add/remove mention when a fourm page is selected/deselected in ACL window." +msgstr "" + +#: ../../include/features.php:38 +msgid "Network Sidebar Widgets" +msgstr "Widgets réseau pour barre latérale" + +#: ../../include/features.php:39 +msgid "Search by Date" +msgstr "Rechercher par Date" + +#: ../../include/features.php:39 +msgid "Ability to select posts by date ranges" +msgstr "Capacité de sélectionner les publications par intervalles de dates" + +#: ../../include/features.php:40 +msgid "Group Filter" +msgstr "Filtre de groupe" + +#: ../../include/features.php:40 +msgid "Enable widget to display Network posts only from selected group" +msgstr "Activer le widget d’affichage des publications du réseau seulement pour le groupe sélectionné" + +#: ../../include/features.php:41 +msgid "Network Filter" +msgstr "Filtre de réseau" + +#: ../../include/features.php:41 +msgid "Enable widget to display Network posts only from selected network" +msgstr "Activer le widget d’affichage des publications du réseau seulement pour le réseau sélectionné" + +#: ../../include/features.php:42 ../../mod/network.php:194 +#: ../../mod/search.php:30 +msgid "Saved Searches" +msgstr "Recherches" + +#: ../../include/features.php:42 +msgid "Save search terms for re-use" +msgstr "Sauvegarder la recherche pour une utilisation ultérieure" + +#: ../../include/features.php:47 +msgid "Network Tabs" +msgstr "Onglets Réseau" + +#: ../../include/features.php:48 +msgid "Network Personal Tab" +msgstr "Onglet Réseau Personnel" + +#: ../../include/features.php:48 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "Activer l'onglet pour afficher seulement les publications du réseau où vous avez interagit" + +#: ../../include/features.php:49 +msgid "Network New Tab" +msgstr "Nouvel onglet réseaux" + +#: ../../include/features.php:49 +msgid "Enable tab to display only new Network posts (from the last 12 hours)" +msgstr "Activer l'onglet pour afficher seulement les publications du réseau (dans les 12 dernières heures)" + +#: ../../include/features.php:50 +msgid "Network Shared Links Tab" +msgstr "Onglet réseau partagé" + +#: ../../include/features.php:50 +msgid "Enable tab to display only Network posts with links in them" +msgstr "Activer l'onglet pour afficher seulement les publications du réseau contenant des liens" + +#: ../../include/features.php:55 +msgid "Post/Comment Tools" +msgstr "outils de publication/commentaire" + +#: ../../include/features.php:56 +msgid "Multiple Deletion" +msgstr "Suppression multiple" + +#: ../../include/features.php:56 +msgid "Select and delete multiple posts/comments at once" +msgstr "Sélectionner et supprimer plusieurs publications/commentaires à la fois" + +#: ../../include/features.php:57 +msgid "Edit Sent Posts" +msgstr "Éditer les publications envoyées" + +#: ../../include/features.php:57 +msgid "Edit and correct posts and comments after sending" +msgstr "Éditer et corriger les publications et commentaires après l'envoi" + +#: ../../include/features.php:58 +msgid "Tagging" +msgstr "Étiquettage" + +#: ../../include/features.php:58 +msgid "Ability to tag existing posts" +msgstr "Possibilité d'étiqueter les publications existantes" + +#: ../../include/features.php:59 +msgid "Post Categories" +msgstr "Catégories des publications" + +#: ../../include/features.php:59 +msgid "Add categories to your posts" +msgstr "Ajouter des catégories à vos publications" + +#: ../../include/features.php:60 ../../include/contact_widgets.php:104 +msgid "Saved Folders" +msgstr "Dossiers sauvegardés" + +#: ../../include/features.php:60 +msgid "Ability to file posts under folders" +msgstr "Possibilité d'afficher les publications sous les répertoires" + +#: ../../include/features.php:61 +msgid "Dislike Posts" +msgstr "Publications non aimées" + +#: ../../include/features.php:61 +msgid "Ability to dislike posts/comments" +msgstr "Possibilité de ne pas aimer les publications/commentaires" + +#: ../../include/features.php:62 +msgid "Star Posts" +msgstr "Publications spéciales" + +#: ../../include/features.php:62 +msgid "Ability to mark special posts with a star indicator" +msgstr "Possibilité de marquer les publications spéciales d'une étoile" + +#: ../../include/features.php:63 +msgid "Mute Post Notifications" +msgstr "" + +#: ../../include/features.php:63 +msgid "Ability to mute notifications for a thread" +msgstr "" + +#: ../../include/items.php:2307 ../../include/datetime.php:477 +#, php-format +msgid "%s's birthday" +msgstr "Anniversaire de %s's" + +#: ../../include/items.php:2308 ../../include/datetime.php:478 +#, php-format +msgid "Happy Birthday %s" +msgstr "Joyeux anniversaire, %s !" + +#: ../../include/items.php:4111 ../../mod/dfrn_request.php:717 +#: ../../mod/dfrn_confirm.php:752 +msgid "[Name Withheld]" +msgstr "[Nom non-publié]" + +#: ../../include/items.php:4619 ../../mod/admin.php:169 +#: ../../mod/admin.php:1052 ../../mod/admin.php:1265 ../../mod/viewsrc.php:15 +#: ../../mod/notice.php:15 ../../mod/display.php:82 ../../mod/display.php:284 +#: ../../mod/display.php:503 +msgid "Item not found." +msgstr "Élément introuvable." + +#: ../../include/items.php:4658 +msgid "Do you really want to delete this item?" +msgstr "Voulez-vous vraiment supprimer cet élément ?" + +#: ../../include/items.php:4660 ../../mod/settings.php:1015 +#: ../../mod/settings.php:1021 ../../mod/settings.php:1029 +#: ../../mod/settings.php:1033 ../../mod/settings.php:1038 +#: ../../mod/settings.php:1044 ../../mod/settings.php:1050 +#: ../../mod/settings.php:1056 ../../mod/settings.php:1086 +#: ../../mod/settings.php:1087 ../../mod/settings.php:1088 +#: ../../mod/settings.php:1089 ../../mod/settings.php:1090 +#: ../../mod/contacts.php:341 ../../mod/register.php:233 +#: ../../mod/dfrn_request.php:830 ../../mod/api.php:105 +#: ../../mod/suggest.php:29 ../../mod/message.php:209 +#: ../../mod/profiles.php:661 ../../mod/profiles.php:664 msgid "Yes" msgstr "Oui" -#: ../../mod/contacts.php:340 ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 -#: ../../mod/message.php:212 ../../mod/fbrowser.php:81 -#: ../../mod/fbrowser.php:116 ../../mod/settings.php:615 -#: ../../mod/settings.php:641 ../../mod/dfrn_request.php:844 -#: ../../mod/suggest.php:32 ../../mod/editpost.php:148 -#: ../../mod/photos.php:203 ../../mod/photos.php:292 -#: ../../include/conversation.php:1129 ../../include/items.php:4560 +#: ../../include/items.php:4663 ../../include/conversation.php:1128 +#: ../../mod/settings.php:620 ../../mod/settings.php:646 +#: ../../mod/contacts.php:344 ../../mod/editpost.php:148 +#: ../../mod/dfrn_request.php:844 ../../mod/fbrowser.php:81 +#: ../../mod/fbrowser.php:116 ../../mod/suggest.php:32 +#: ../../mod/photos.php:203 ../../mod/photos.php:292 ../../mod/tagrm.php:11 +#: ../../mod/tagrm.php:94 ../../mod/message.php:212 msgid "Cancel" msgstr "Annuler" -#: ../../mod/contacts.php:352 -msgid "Contact has been removed." -msgstr "Ce contact a été retiré." +#: ../../include/items.php:4881 +msgid "Archives" +msgstr "Archives" -#: ../../mod/contacts.php:390 +#: ../../include/group.php:25 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "Un groupe supprimé a été recréé. Les permissions existantes pourraient s'appliquer à ce groupe et aux futurs membres. Si ce n'est pas le comportement attendu, merci de re-créer un autre groupe sous un autre nom." + +#: ../../include/group.php:207 +msgid "Default privacy group for new contacts" +msgstr "Paramètres de confidentialité par défaut pour les nouveaux contacts" + +#: ../../include/group.php:226 +msgid "Everybody" +msgstr "Tout le monde" + +#: ../../include/group.php:249 +msgid "edit" +msgstr "éditer" + +#: ../../include/group.php:270 ../../mod/newmember.php:66 +msgid "Groups" +msgstr "Groupes" + +#: ../../include/group.php:271 +msgid "Edit group" +msgstr "Editer groupe" + +#: ../../include/group.php:272 +msgid "Create a new group" +msgstr "Créer un nouveau groupe" + +#: ../../include/group.php:273 +msgid "Contacts not in any group" +msgstr "Contacts n'appartenant à aucun groupe" + +#: ../../include/group.php:275 ../../mod/network.php:195 +msgid "add" +msgstr "ajouter" + +#: ../../include/Photo_old.php:911 ../../include/Photo_old.php:926 +#: ../../include/Photo_old.php:933 ../../include/Photo_old.php:955 +#: ../../include/Photo.php:933 ../../include/Photo.php:948 +#: ../../include/Photo.php:955 ../../include/Photo.php:977 +#: ../../include/message.php:144 ../../mod/wall_upload.php:169 +#: ../../mod/wall_upload.php:178 ../../mod/wall_upload.php:185 +#: ../../mod/item.php:485 +msgid "Wall Photos" +msgstr "Photos du mur" + +#: ../../include/dba.php:56 ../../include/dba_pdo.php:72 #, php-format -msgid "You are mutual friends with %s" -msgstr "Vous êtes ami (et réciproquement) avec %s" +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Impossible de localiser les informations DNS pour le serveur de base de données '%s'" -#: ../../mod/contacts.php:394 +#: ../../include/contact_widgets.php:6 +msgid "Add New Contact" +msgstr "Ajouter un nouveau contact" + +#: ../../include/contact_widgets.php:7 +msgid "Enter address or web location" +msgstr "Entrez son adresse ou sa localisation web" + +#: ../../include/contact_widgets.php:8 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Exemple: bob@example.com, http://example.com/barbara" + +#: ../../include/contact_widgets.php:24 #, php-format -msgid "You are sharing with %s" -msgstr "Vous partagez avec %s" +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d invitation disponible" +msgstr[1] "%d invitations disponibles" -#: ../../mod/contacts.php:399 -#, php-format -msgid "%s is sharing with you" -msgstr "%s partage avec vous" +#: ../../include/contact_widgets.php:30 +msgid "Find People" +msgstr "Trouver des personnes" -#: ../../mod/contacts.php:416 -msgid "Private communications are not available for this contact." -msgstr "Les communications privées ne sont pas disponibles pour ce contact." +#: ../../include/contact_widgets.php:31 +msgid "Enter name or interest" +msgstr "Entrez un nom ou un centre d'intérêt" -#: ../../mod/contacts.php:419 ../../mod/admin.php:569 -msgid "Never" -msgstr "Jamais" +#: ../../include/contact_widgets.php:32 +msgid "Connect/Follow" +msgstr "Connecter/Suivre" -#: ../../mod/contacts.php:423 -msgid "(Update was successful)" -msgstr "(Mise à jour effectuée avec succès)" +#: ../../include/contact_widgets.php:33 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Exemples: Robert Morgenstein, Pêche" -#: ../../mod/contacts.php:423 -msgid "(Update was not successful)" -msgstr "(Mise à jour échouée)" +#: ../../include/contact_widgets.php:34 ../../mod/contacts.php:724 +#: ../../mod/directory.php:63 +msgid "Find" +msgstr "Trouver" -#: ../../mod/contacts.php:425 -msgid "Suggest friends" -msgstr "Suggérer amitié/contact" +#: ../../include/contact_widgets.php:37 +msgid "Random Profile" +msgstr "Profil au hasard" -#: ../../mod/contacts.php:429 -#, php-format -msgid "Network type: %s" -msgstr "Type de réseau %s" +#: ../../include/contact_widgets.php:71 +msgid "Networks" +msgstr "Réseaux" -#: ../../mod/contacts.php:432 ../../include/contact_widgets.php:200 +#: ../../include/contact_widgets.php:74 +msgid "All Networks" +msgstr "Tous réseaux" + +#: ../../include/contact_widgets.php:107 ../../include/contact_widgets.php:139 +msgid "Everything" +msgstr "Tout" + +#: ../../include/contact_widgets.php:136 +msgid "Categories" +msgstr "Catégories" + +#: ../../include/contact_widgets.php:200 ../../mod/contacts.php:439 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" msgstr[0] "%d contact en commun" msgstr[1] "%d contacts en commun" -#: ../../mod/contacts.php:437 -msgid "View all contacts" -msgstr "Voir tous les contacts" +#: ../../include/enotify.php:18 +msgid "Friendica Notification" +msgstr "Notification Friendica" -#: ../../mod/contacts.php:442 ../../mod/contacts.php:501 -#: ../../mod/contacts.php:714 ../../mod/admin.php:1009 -msgid "Unblock" -msgstr "Débloquer" +#: ../../include/enotify.php:21 +msgid "Thank You," +msgstr "Merci, " -#: ../../mod/contacts.php:442 ../../mod/contacts.php:501 -#: ../../mod/contacts.php:714 ../../mod/admin.php:1008 -msgid "Block" -msgstr "Bloquer" +#: ../../include/enotify.php:23 +#, php-format +msgid "%s Administrator" +msgstr "L'administrateur de %s" -#: ../../mod/contacts.php:445 -msgid "Toggle Blocked status" -msgstr "(dés)activer l'état \"bloqué\"" +#: ../../include/enotify.php:33 ../../include/delivery.php:467 +#: ../../include/notifier.php:796 +msgid "noreply" +msgstr "noreply" -#: ../../mod/contacts.php:448 ../../mod/contacts.php:502 -#: ../../mod/contacts.php:715 -msgid "Unignore" -msgstr "Ne plus ignorer" +#: ../../include/enotify.php:64 +#, php-format +msgid "%s " +msgstr "%s " -#: ../../mod/contacts.php:448 ../../mod/contacts.php:502 -#: ../../mod/contacts.php:715 ../../mod/notifications.php:51 -#: ../../mod/notifications.php:164 ../../mod/notifications.php:210 -msgid "Ignore" -msgstr "Ignorer" +#: ../../include/enotify.php:68 +#, php-format +msgid "[Friendica:Notify] New mail received at %s" +msgstr "[Friendica:Notification] Nouveau courriel reçu sur %s" -#: ../../mod/contacts.php:451 -msgid "Toggle Ignored status" -msgstr "(dés)activer l'état \"ignoré\"" +#: ../../include/enotify.php:70 +#, php-format +msgid "%1$s sent you a new private message at %2$s." +msgstr "%1$s vous a envoyé un nouveau message privé sur %2$s." -#: ../../mod/contacts.php:455 ../../mod/contacts.php:716 -msgid "Unarchive" -msgstr "Désarchiver" +#: ../../include/enotify.php:71 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s vous a envoyé %2$s." -#: ../../mod/contacts.php:455 ../../mod/contacts.php:716 -msgid "Archive" -msgstr "Archiver" +#: ../../include/enotify.php:71 +msgid "a private message" +msgstr "un message privé" -#: ../../mod/contacts.php:458 -msgid "Toggle Archive status" -msgstr "(dés)activer l'état \"archivé\"" +#: ../../include/enotify.php:72 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Merci de visiter %s pour voir vos messages privés et/ou y répondre." -#: ../../mod/contacts.php:461 -msgid "Repair" -msgstr "Réparer" +#: ../../include/enotify.php:124 +#, php-format +msgid "%1$s commented on [url=%2$s]a %3$s[/url]" +msgstr "%1$s a commenté sur [url=%2$s]un %3$s[/url]" -#: ../../mod/contacts.php:464 -msgid "Advanced Contact Settings" -msgstr "Réglages avancés du contact" +#: ../../include/enotify.php:131 +#, php-format +msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" +msgstr "%1$s a commenté sur [url=%2$s]le %4$s de %3$s[/url]" -#: ../../mod/contacts.php:470 -msgid "Communications lost with this contact!" -msgstr "Communications perdues avec ce contact !" +#: ../../include/enotify.php:139 +#, php-format +msgid "%1$s commented on [url=%2$s]your %3$s[/url]" +msgstr "%1$s commented on [url=%2$s]your %3$s[/url]" -#: ../../mod/contacts.php:473 -msgid "Contact Editor" -msgstr "Éditeur de contact" +#: ../../include/enotify.php:149 +#, php-format +msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" +msgstr "[Friendica:Notification] Commentaire de %2$s sur la conversation #%1$d" -#: ../../mod/contacts.php:475 ../../mod/manage.php:110 -#: ../../mod/fsuggest.php:107 ../../mod/message.php:335 -#: ../../mod/message.php:564 ../../mod/crepair.php:186 -#: ../../mod/events.php:478 ../../mod/content.php:710 -#: ../../mod/install.php:248 ../../mod/install.php:286 ../../mod/mood.php:137 -#: ../../mod/profiles.php:686 ../../mod/localtime.php:45 -#: ../../mod/poke.php:199 ../../mod/invite.php:140 ../../mod/photos.php:1084 -#: ../../mod/photos.php:1203 ../../mod/photos.php:1514 -#: ../../mod/photos.php:1565 ../../mod/photos.php:1609 -#: ../../mod/photos.php:1697 ../../object/Item.php:678 -#: ../../view/theme/cleanzero/config.php:80 -#: ../../view/theme/dispy/config.php:70 ../../view/theme/quattro/config.php:64 -#: ../../view/theme/diabook/config.php:148 -#: ../../view/theme/diabook/theme.php:633 ../../view/theme/vier/config.php:53 -#: ../../view/theme/duepuntozero/config.php:59 -msgid "Submit" -msgstr "Envoyer" +#: ../../include/enotify.php:150 +#, php-format +msgid "%s commented on an item/conversation you have been following." +msgstr "%s a commenté un élément que vous suivez." -#: ../../mod/contacts.php:476 -msgid "Profile Visibility" -msgstr "Visibilité du profil" +#: ../../include/enotify.php:153 ../../include/enotify.php:168 +#: ../../include/enotify.php:181 ../../include/enotify.php:194 +#: ../../include/enotify.php:212 ../../include/enotify.php:225 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Merci de visiter %s pour voir la conversation et/ou y répondre." -#: ../../mod/contacts.php:477 +#: ../../include/enotify.php:160 +#, php-format +msgid "[Friendica:Notify] %s posted to your profile wall" +msgstr "[Friendica:Notification] %s a posté sur votre mur de profil" + +#: ../../include/enotify.php:162 +#, php-format +msgid "%1$s posted to your profile wall at %2$s" +msgstr "%1$s a publié sur votre mur à %2$s" + +#: ../../include/enotify.php:164 +#, php-format +msgid "%1$s posted to [url=%2$s]your wall[/url]" +msgstr "%1$s a posté sur [url=%2$s]votre mur[/url]" + +#: ../../include/enotify.php:175 +#, php-format +msgid "[Friendica:Notify] %s tagged you" +msgstr "[Friendica:Notification] %s vous a étiqueté" + +#: ../../include/enotify.php:176 +#, php-format +msgid "%1$s tagged you at %2$s" +msgstr "%1$s vous a étiqueté sur %2$s" + +#: ../../include/enotify.php:177 +#, php-format +msgid "%1$s [url=%2$s]tagged you[/url]." +msgstr "%1$s [url=%2$s]vous a étiqueté[/url]." + +#: ../../include/enotify.php:188 +#, php-format +msgid "[Friendica:Notify] %s shared a new post" +msgstr "[Friendica:Notification] %s partage une nouvelle publication" + +#: ../../include/enotify.php:189 +#, php-format +msgid "%1$s shared a new post at %2$s" +msgstr "%1$s a partagé une nouvelle publication sur %2$s" + +#: ../../include/enotify.php:190 +#, php-format +msgid "%1$s [url=%2$s]shared a post[/url]." +msgstr "%1$s [url=%2$s]partage une publication[/url]." + +#: ../../include/enotify.php:202 +#, php-format +msgid "[Friendica:Notify] %1$s poked you" +msgstr "[Friendica:Notify] %1$s vous a sollicité" + +#: ../../include/enotify.php:203 +#, php-format +msgid "%1$s poked you at %2$s" +msgstr "%1$s vous a sollicité via %2$s" + +#: ../../include/enotify.php:204 +#, php-format +msgid "%1$s [url=%2$s]poked you[/url]." +msgstr "%1$s vous a [url=%2$s]sollicité[/url]." + +#: ../../include/enotify.php:219 +#, php-format +msgid "[Friendica:Notify] %s tagged your post" +msgstr "[Friendica:Notification] %s a étiqueté votre publication" + +#: ../../include/enotify.php:220 +#, php-format +msgid "%1$s tagged your post at %2$s" +msgstr "%1$s a étiqueté votre publication sur %2$s" + +#: ../../include/enotify.php:221 +#, php-format +msgid "%1$s tagged [url=%2$s]your post[/url]" +msgstr "%1$s a étiqueté [url=%2$s]votre publication[/url]" + +#: ../../include/enotify.php:232 +msgid "[Friendica:Notify] Introduction received" +msgstr "[Friendica:Notification] Introduction reçue" + +#: ../../include/enotify.php:233 +#, php-format +msgid "You've received an introduction from '%1$s' at %2$s" +msgstr "Vous avez reçu une introduction de '%1$s' sur %2$s" + +#: ../../include/enotify.php:234 +#, php-format +msgid "You've received [url=%1$s]an introduction[/url] from %2$s." +msgstr "Vous avez reçu [url=%1$s]une introduction[/url] de %2$s." + +#: ../../include/enotify.php:237 ../../include/enotify.php:279 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Vous pouvez visiter son profil sur %s" + +#: ../../include/enotify.php:239 +#, php-format +msgid "Please visit %s to approve or reject the introduction." +msgstr "Merci de visiter %s pour approuver ou rejeter l'introduction." + +#: ../../include/enotify.php:247 +msgid "[Friendica:Notify] A new person is sharing with you" +msgstr "" + +#: ../../include/enotify.php:248 ../../include/enotify.php:249 +#, php-format +msgid "%1$s is sharing with you at %2$s" +msgstr "" + +#: ../../include/enotify.php:255 +msgid "[Friendica:Notify] You have a new follower" +msgstr "" + +#: ../../include/enotify.php:256 ../../include/enotify.php:257 +#, php-format +msgid "You have a new follower at %2$s : %1$s" +msgstr "" + +#: ../../include/enotify.php:270 +msgid "[Friendica:Notify] Friend suggestion received" +msgstr "[Friendica:Notification] Nouvelle suggestion d'amitié" + +#: ../../include/enotify.php:271 +#, php-format +msgid "You've received a friend suggestion from '%1$s' at %2$s" +msgstr "Vous avez reçu une suggestion de '%1$s' sur %2$s" + +#: ../../include/enotify.php:272 #, php-format msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Merci de choisir le profil que vous souhaitez montrer à %s lorsqu'il vous rend visite de manière sécurisée." +"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." +msgstr "Vous avez reçu [url=%1$s]une suggestion[/url] de %3$s pour %2$s." -#: ../../mod/contacts.php:478 -msgid "Contact Information / Notes" -msgstr "Informations de contact / Notes" +#: ../../include/enotify.php:277 +msgid "Name:" +msgstr "Nom :" -#: ../../mod/contacts.php:479 -msgid "Edit contact notes" -msgstr "Éditer les notes des contacts" +#: ../../include/enotify.php:278 +msgid "Photo:" +msgstr "Photo :" -#: ../../mod/contacts.php:484 ../../mod/contacts.php:679 -#: ../../mod/viewcontacts.php:64 ../../mod/nogroup.php:40 +#: ../../include/enotify.php:281 #, php-format -msgid "Visit %s's profile [%s]" -msgstr "Visiter le profil de %s [%s]" +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Merci de visiter %s pour approuver ou rejeter la suggestion." -#: ../../mod/contacts.php:485 -msgid "Block/Unblock contact" -msgstr "Bloquer/débloquer ce contact" +#: ../../include/enotify.php:289 ../../include/enotify.php:302 +msgid "[Friendica:Notify] Connection accepted" +msgstr "" -#: ../../mod/contacts.php:486 -msgid "Ignore contact" -msgstr "Ignorer ce contact" +#: ../../include/enotify.php:290 ../../include/enotify.php:303 +#, php-format +msgid "'%1$s' has acepted your connection request at %2$s" +msgstr "" -#: ../../mod/contacts.php:487 -msgid "Repair URL settings" -msgstr "Réglages de réparation des URL" +#: ../../include/enotify.php:291 ../../include/enotify.php:304 +#, php-format +msgid "%2$s has accepted your [url=%1$s]connection request[/url]." +msgstr "" -#: ../../mod/contacts.php:488 -msgid "View conversations" -msgstr "Voir les conversations" - -#: ../../mod/contacts.php:490 -msgid "Delete contact" -msgstr "Effacer ce contact" - -#: ../../mod/contacts.php:494 -msgid "Last update:" -msgstr "Dernière mise-à-jour :" - -#: ../../mod/contacts.php:496 -msgid "Update public posts" -msgstr "Mettre à jour les publications publiques:" - -#: ../../mod/contacts.php:498 ../../mod/admin.php:1503 -msgid "Update now" -msgstr "Mettre à jour" - -#: ../../mod/contacts.php:505 -msgid "Currently blocked" -msgstr "Actuellement bloqué" - -#: ../../mod/contacts.php:506 -msgid "Currently ignored" -msgstr "Actuellement ignoré" - -#: ../../mod/contacts.php:507 -msgid "Currently archived" -msgstr "Actuellement archivé" - -#: ../../mod/contacts.php:508 ../../mod/notifications.php:157 -#: ../../mod/notifications.php:204 -msgid "Hide this contact from others" -msgstr "Cacher ce contact aux autres" - -#: ../../mod/contacts.php:508 +#: ../../include/enotify.php:294 msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "Les réponses et \"j'aime\" à vos publications publiques peuvent être toujours visibles" +"You are now mutual friends and may exchange status updates, photos, and email\n" +"\twithout restriction." +msgstr "" -#: ../../mod/contacts.php:509 -msgid "Notification for new posts" -msgstr "Notification des nouvelles publications" +#: ../../include/enotify.php:297 ../../include/enotify.php:311 +#, php-format +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr "" -#: ../../mod/contacts.php:509 -msgid "Send a notification of every new post of this contact" -msgstr "Envoyer une notification de chaque nouveau message en provenance de ce contact" - -#: ../../mod/contacts.php:510 -msgid "Fetch further information for feeds" -msgstr "Chercher plus d'informations pour les flux" - -#: ../../mod/contacts.php:511 -msgid "Disabled" -msgstr "Désactivé" - -#: ../../mod/contacts.php:511 -msgid "Fetch information" -msgstr "Récupérer informations" - -#: ../../mod/contacts.php:511 -msgid "Fetch information and keywords" -msgstr "Récupérer informations" - -#: ../../mod/contacts.php:513 -msgid "Blacklisted keywords" -msgstr "Mots-clés sur la liste noire" - -#: ../../mod/contacts.php:513 +#: ../../include/enotify.php:307 +#, php-format msgid "" -"Comma separated list of keywords that should not be converted to hashtags, " -"when \"Fetch information and keywords\" is selected" -msgstr "Liste de mots-clés separés par des virgules qui ne doivent pas être converti en mots-dièse quand « Récupérer informations et mots-clés » est sélectionné." +"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of " +"communication - such as private messaging and some profile interactions. If " +"this is a celebrity or community page, these settings were applied " +"automatically." +msgstr "" -#: ../../mod/contacts.php:564 -msgid "Suggestions" -msgstr "Suggestions" +#: ../../include/enotify.php:309 +#, php-format +msgid "" +"'%1$s' may choose to extend this into a two-way or more permissive " +"relationship in the future. " +msgstr "" -#: ../../mod/contacts.php:567 -msgid "Suggest potential friends" -msgstr "Suggérer des amis potentiels" +#: ../../include/enotify.php:322 +msgid "[Friendica System:Notify] registration request" +msgstr "" -#: ../../mod/contacts.php:570 ../../mod/group.php:194 -msgid "All Contacts" -msgstr "Tous les contacts" +#: ../../include/enotify.php:323 +#, php-format +msgid "You've received a registration request from '%1$s' at %2$s" +msgstr "" -#: ../../mod/contacts.php:573 -msgid "Show all contacts" -msgstr "Montrer tous les contacts" +#: ../../include/enotify.php:324 +#, php-format +msgid "You've received a [url=%1$s]registration request[/url] from %2$s." +msgstr "Vous avez reçu une [url=%1$s]demande de création de compte[/url] de %2$s." -#: ../../mod/contacts.php:576 -msgid "Unblocked" -msgstr "Non-bloqués" +#: ../../include/enotify.php:327 +#, php-format +msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" +msgstr "Nom complet :\t%1$s\\nAdresse :\t%2$s\\nIdentifiant :\t%3$s (%4$s)" -#: ../../mod/contacts.php:579 -msgid "Only show unblocked contacts" -msgstr "Ne montrer que les contacts non-bloqués" +#: ../../include/enotify.php:330 +#, php-format +msgid "Please visit %s to approve or reject the request." +msgstr "Veuillez visiter %s pour approuver ou rejeter la demande." -#: ../../mod/contacts.php:583 -msgid "Blocked" -msgstr "Bloqués" +#: ../../include/api.php:304 ../../include/api.php:315 +#: ../../include/api.php:416 ../../include/api.php:1063 +#: ../../include/api.php:1065 +msgid "User not found." +msgstr "Utilisateur non trouvé" -#: ../../mod/contacts.php:586 -msgid "Only show blocked contacts" -msgstr "Ne montrer que les contacts bloqués" +#: ../../include/api.php:770 +#, php-format +msgid "Daily posting limit of %d posts reached. The post was rejected." +msgstr "Le quota journalier de %d publications a été atteint. La publication a été rejetée." -#: ../../mod/contacts.php:590 -msgid "Ignored" -msgstr "Ignorés" +#: ../../include/api.php:789 +#, php-format +msgid "Weekly posting limit of %d posts reached. The post was rejected." +msgstr "Le quota hebdomadaire de %d publications a été atteint. La publication a été rejetée." -#: ../../mod/contacts.php:593 -msgid "Only show ignored contacts" -msgstr "Ne montrer que les contacts ignorés" +#: ../../include/api.php:808 +#, php-format +msgid "Monthly posting limit of %d posts reached. The post was rejected." +msgstr "Le quota mensuel de %d publications a été atteint. La publication a été rejetée." -#: ../../mod/contacts.php:597 -msgid "Archived" -msgstr "Archivés" +#: ../../include/api.php:1271 +msgid "There is no status with this id." +msgstr "Il n'y a pas de statut avec cet id." -#: ../../mod/contacts.php:600 -msgid "Only show archived contacts" -msgstr "Ne montrer que les contacts archivés" +#: ../../include/api.php:1341 +msgid "There is no conversation with this id." +msgstr "Il n'y a pas de conversation avec cet id." -#: ../../mod/contacts.php:604 -msgid "Hidden" -msgstr "Cachés" +#: ../../include/api.php:1613 +msgid "Invalid request." +msgstr "Requête invalide." -#: ../../mod/contacts.php:607 -msgid "Only show hidden contacts" -msgstr "Ne montrer que les contacts masqués" +#: ../../include/api.php:1624 +msgid "Invalid item." +msgstr "Item invalide." -#: ../../mod/contacts.php:655 -msgid "Mutual Friendship" -msgstr "Relation réciproque" +#: ../../include/api.php:1634 +msgid "Invalid action. " +msgstr "Action invalide." -#: ../../mod/contacts.php:659 -msgid "is a fan of yours" -msgstr "Vous suit" +#: ../../include/api.php:1642 +msgid "DB error" +msgstr "" -#: ../../mod/contacts.php:663 -msgid "you are a fan of" -msgstr "Vous le/la suivez" +#: ../../include/network.php:890 +msgid "view full size" +msgstr "voir en pleine taille" -#: ../../mod/contacts.php:680 ../../mod/nogroup.php:41 -msgid "Edit contact" +#: ../../include/Scrape.php:608 +msgid " on Last.fm" +msgstr "sur Last.fm" + +#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1133 +msgid "Full Name:" +msgstr "Nom complet:" + +#: ../../include/profile_advanced.php:22 +msgid "j F, Y" +msgstr "j F, Y" + +#: ../../include/profile_advanced.php:23 +msgid "j F" +msgstr "j F" + +#: ../../include/profile_advanced.php:30 +msgid "Birthday:" +msgstr "Anniversaire:" + +#: ../../include/profile_advanced.php:34 +msgid "Age:" +msgstr "Age:" + +#: ../../include/profile_advanced.php:43 +#, php-format +msgid "for %1$d %2$s" +msgstr "depuis %1$d %2$s" + +#: ../../include/profile_advanced.php:46 ../../mod/profiles.php:714 +msgid "Sexual Preference:" +msgstr "Préférence sexuelle:" + +#: ../../include/profile_advanced.php:50 ../../mod/profiles.php:716 +msgid "Hometown:" +msgstr " Ville d'origine:" + +#: ../../include/profile_advanced.php:52 +msgid "Tags:" +msgstr "Étiquette:" + +#: ../../include/profile_advanced.php:54 ../../mod/profiles.php:717 +msgid "Political Views:" +msgstr "Opinions politiques:" + +#: ../../include/profile_advanced.php:56 +msgid "Religion:" +msgstr "Religion:" + +#: ../../include/profile_advanced.php:60 +msgid "Hobbies/Interests:" +msgstr "Passe-temps/Centres d'intérêt:" + +#: ../../include/profile_advanced.php:62 ../../mod/profiles.php:721 +msgid "Likes:" +msgstr "J'aime :" + +#: ../../include/profile_advanced.php:64 ../../mod/profiles.php:722 +msgid "Dislikes:" +msgstr "Je n'aime pas :" + +#: ../../include/profile_advanced.php:67 +msgid "Contact information and Social Networks:" +msgstr "Coordonnées/Réseaux sociaux:" + +#: ../../include/profile_advanced.php:69 +msgid "Musical interests:" +msgstr "Goûts musicaux:" + +#: ../../include/profile_advanced.php:71 +msgid "Books, literature:" +msgstr "Lectures:" + +#: ../../include/profile_advanced.php:73 +msgid "Television:" +msgstr "Télévision:" + +#: ../../include/profile_advanced.php:75 +msgid "Film/dance/culture/entertainment:" +msgstr "Cinéma/Danse/Culture/Divertissement:" + +#: ../../include/profile_advanced.php:77 +msgid "Love/Romance:" +msgstr "Amour/Romance:" + +#: ../../include/profile_advanced.php:79 +msgid "Work/employment:" +msgstr "Activité professionnelle/Occupation:" + +#: ../../include/profile_advanced.php:81 +msgid "School/education:" +msgstr "Études/Formation:" + +#: ../../include/nav.php:34 ../../mod/navigation.php:20 +msgid "Nothing new here" +msgstr "Rien de neuf ici" + +#: ../../include/nav.php:38 ../../mod/navigation.php:24 +msgid "Clear notifications" +msgstr "Effacer les notifications" + +#: ../../include/nav.php:73 +msgid "End this session" +msgstr "Mettre fin à cette session" + +#: ../../include/nav.php:79 +msgid "Your videos" +msgstr "Vos vidéos" + +#: ../../include/nav.php:81 +msgid "Your personal notes" +msgstr "Vos notes personnelles" + +#: ../../include/nav.php:92 +msgid "Sign in" +msgstr "Se connecter" + +#: ../../include/nav.php:105 +msgid "Home Page" +msgstr "Page d'accueil" + +#: ../../include/nav.php:109 +msgid "Create an account" +msgstr "Créer un compte" + +#: ../../include/nav.php:114 ../../mod/help.php:36 +msgid "Help" +msgstr "Aide" + +#: ../../include/nav.php:114 +msgid "Help and documentation" +msgstr "Aide et documentation" + +#: ../../include/nav.php:117 +msgid "Apps" +msgstr "Applications" + +#: ../../include/nav.php:117 +msgid "Addon applications, utilities, games" +msgstr "Applications supplémentaires, utilitaires, jeux" + +#: ../../include/nav.php:119 ../../include/text.php:968 +#: ../../include/text.php:969 ../../mod/search.php:99 +msgid "Search" +msgstr "Recherche" + +#: ../../include/nav.php:119 +msgid "Search site content" +msgstr "Rechercher dans le contenu du site" + +#: ../../include/nav.php:129 +msgid "Conversations on this site" +msgstr "Conversations ayant cours sur ce site" + +#: ../../include/nav.php:131 +msgid "Conversations on the network" +msgstr "" + +#: ../../include/nav.php:133 +msgid "Directory" +msgstr "Annuaire" + +#: ../../include/nav.php:133 +msgid "People directory" +msgstr "Annuaire des utilisateurs" + +#: ../../include/nav.php:135 +msgid "Information" +msgstr "Information" + +#: ../../include/nav.php:135 +msgid "Information about this friendica instance" +msgstr "Information au sujet de cette instance de friendica" + +#: ../../include/nav.php:145 ../../mod/notifications.php:83 +msgid "Network" +msgstr "Réseau" + +#: ../../include/nav.php:145 +msgid "Conversations from your friends" +msgstr "Conversations de vos amis" + +#: ../../include/nav.php:146 +msgid "Network Reset" +msgstr "Réinitialiser le réseau" + +#: ../../include/nav.php:146 +msgid "Load Network page with no filters" +msgstr "Chargement des pages du réseau sans filtre" + +#: ../../include/nav.php:154 ../../mod/notifications.php:98 +msgid "Introductions" +msgstr "Introductions" + +#: ../../include/nav.php:154 +msgid "Friend Requests" +msgstr "Demande d'amitié" + +#: ../../include/nav.php:155 ../../mod/notifications.php:224 +msgid "Notifications" +msgstr "Notifications" + +#: ../../include/nav.php:156 +msgid "See all notifications" +msgstr "Voir toute notification" + +#: ../../include/nav.php:157 +msgid "Mark all system notifications seen" +msgstr "Marquer toutes les notifications système comme 'vues'" + +#: ../../include/nav.php:161 ../../mod/message.php:182 +msgid "Messages" +msgstr "Messages" + +#: ../../include/nav.php:161 +msgid "Private mail" +msgstr "Messages privés" + +#: ../../include/nav.php:162 +msgid "Inbox" +msgstr "Messages entrants" + +#: ../../include/nav.php:163 +msgid "Outbox" +msgstr "Messages sortants" + +#: ../../include/nav.php:164 ../../mod/message.php:9 +msgid "New Message" +msgstr "Nouveau message" + +#: ../../include/nav.php:167 +msgid "Manage" +msgstr "Gérer" + +#: ../../include/nav.php:167 +msgid "Manage other pages" +msgstr "Gérer les autres pages" + +#: ../../include/nav.php:170 ../../mod/settings.php:67 +msgid "Delegations" +msgstr "Délégations" + +#: ../../include/nav.php:170 ../../mod/delegate.php:130 +msgid "Delegate Page Management" +msgstr "Déléguer la gestion de la page" + +#: ../../include/nav.php:172 +msgid "Account settings" +msgstr "Compte" + +#: ../../include/nav.php:175 +msgid "Manage/Edit Profiles" +msgstr "Gérer/Éditer les profiles" + +#: ../../include/nav.php:177 +msgid "Manage/edit friends and contacts" +msgstr "Gérer/éditer les amitiés et contacts" + +#: ../../include/nav.php:184 ../../mod/admin.php:130 +msgid "Admin" +msgstr "Admin" + +#: ../../include/nav.php:184 +msgid "Site setup and configuration" +msgstr "Démarrage et configuration du site" + +#: ../../include/nav.php:188 +msgid "Navigation" +msgstr "Navigation" + +#: ../../include/nav.php:188 +msgid "Site map" +msgstr "Carte du site" + +#: ../../include/plugin.php:455 ../../include/plugin.php:457 +msgid "Click here to upgrade." +msgstr "Cliquez ici pour mettre à jour." + +#: ../../include/plugin.php:463 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Cette action dépasse les limites définies par votre abonnement." + +#: ../../include/plugin.php:468 +msgid "This action is not available under your subscription plan." +msgstr "Cette action n'est pas disponible avec votre abonnement." + +#: ../../include/follow.php:27 ../../mod/dfrn_request.php:507 +msgid "Disallowed profile URL." +msgstr "URL de profil interdite." + +#: ../../include/follow.php:32 +msgid "Connect URL missing." +msgstr "URL de connexion manquante." + +#: ../../include/follow.php:59 +msgid "" +"This site is not configured to allow communications with other networks." +msgstr "Ce site n'est pas configuré pour dialoguer avec d'autres réseaux." + +#: ../../include/follow.php:60 ../../include/follow.php:80 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "Aucun protocole de communication ni aucun flux n'a pu être découvert." + +#: ../../include/follow.php:78 +msgid "The profile address specified does not provide adequate information." +msgstr "L'adresse de profil indiquée ne fournit par les informations adéquates." + +#: ../../include/follow.php:82 +msgid "An author or name was not found." +msgstr "Aucun auteur ou nom d'auteur n'a pu être trouvé." + +#: ../../include/follow.php:84 +msgid "No browser URL could be matched to this address." +msgstr "Aucune URL de navigation ne correspond à cette adresse." + +#: ../../include/follow.php:86 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "Impossible de faire correspondre l'adresse d'identité en \"@\" avec un protocole connu ou un contact courriel." + +#: ../../include/follow.php:87 +msgid "Use mailto: in front of address to force email check." +msgstr "Utilisez mailto: en face d'une adresse pour l'obliger à être reconnue comme courriel." + +#: ../../include/follow.php:93 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "L'adresse de profil spécifiée correspond à un réseau qui a été désactivé sur ce site." + +#: ../../include/follow.php:103 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "Profil limité. Cette personne ne sera pas capable de recevoir des notifications directes/personnelles de votre part." + +#: ../../include/follow.php:205 +msgid "Unable to retrieve contact information." +msgstr "Impossible de récupérer les informations du contact." + +#: ../../include/follow.php:258 +msgid "following" +msgstr "following" + +#: ../../include/uimport.php:94 +msgid "Error decoding account file" +msgstr "Une erreur a été détecté en décodant un fichier utilisateur" + +#: ../../include/uimport.php:100 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "Erreur ! Pas de ficher de version existant ! Êtes vous sur un compte Friendica ?" + +#: ../../include/uimport.php:116 ../../include/uimport.php:127 +msgid "Error! Cannot check nickname" +msgstr "Erreur! Pseudo invalide" + +#: ../../include/uimport.php:120 ../../include/uimport.php:131 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "L'utilisateur '%s' existe déjà sur ce serveur!" + +#: ../../include/uimport.php:153 +msgid "User creation error" +msgstr "Erreur de création d'utilisateur" + +#: ../../include/uimport.php:171 +msgid "User profile creation error" +msgstr "Erreur de création du profil utilisateur" + +#: ../../include/uimport.php:220 +#, php-format +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "%d contacts non importés" +msgstr[1] "%d contacts non importés" + +#: ../../include/uimport.php:290 +msgid "Done. You can now login with your username and password" +msgstr "Action réalisé. Vous pouvez désormais vous connecter avec votre nom d'utilisateur et votre mot de passe" + +#: ../../include/event.php:11 ../../include/bb2diaspora.php:133 +#: ../../mod/localtime.php:12 +msgid "l F d, Y \\@ g:i A" +msgstr "l F d, Y \\@ g:i A" + +#: ../../include/event.php:20 ../../include/bb2diaspora.php:139 +msgid "Starts:" +msgstr "Débute:" + +#: ../../include/event.php:30 ../../include/bb2diaspora.php:147 +msgid "Finishes:" +msgstr "Finit:" + +#: ../../include/Contact.php:119 +msgid "stopped following" +msgstr "retiré de la liste de suivi" + +#: ../../include/Contact.php:232 ../../include/conversation.php:881 +msgid "Poke" +msgstr "Sollicitations (pokes)" + +#: ../../include/Contact.php:233 ../../include/conversation.php:875 +msgid "View Status" +msgstr "Voir les statuts" + +#: ../../include/Contact.php:234 ../../include/conversation.php:876 +msgid "View Profile" +msgstr "Voir le profil" + +#: ../../include/Contact.php:235 ../../include/conversation.php:877 +msgid "View Photos" +msgstr "Voir les photos" + +#: ../../include/Contact.php:236 ../../include/Contact.php:259 +#: ../../include/conversation.php:878 +msgid "Network Posts" +msgstr "Publications du réseau" + +#: ../../include/Contact.php:237 ../../include/Contact.php:259 +#: ../../include/conversation.php:879 +msgid "Edit Contact" msgstr "Éditer le contact" -#: ../../mod/contacts.php:702 ../../include/nav.php:177 -#: ../../view/theme/diabook/theme.php:125 -msgid "Contacts" -msgstr "Contacts" +#: ../../include/Contact.php:238 +msgid "Drop Contact" +msgstr "Supprimer le contact" -#: ../../mod/contacts.php:706 -msgid "Search your contacts" -msgstr "Rechercher dans vos contacts" +#: ../../include/Contact.php:239 ../../include/Contact.php:259 +#: ../../include/conversation.php:880 +msgid "Send PM" +msgstr "Message privé" -#: ../../mod/contacts.php:707 ../../mod/directory.php:61 -msgid "Finding: " -msgstr "Trouvé: " - -#: ../../mod/contacts.php:708 ../../mod/directory.php:63 -#: ../../include/contact_widgets.php:34 -msgid "Find" -msgstr "Trouver" - -#: ../../mod/contacts.php:713 ../../mod/settings.php:132 -#: ../../mod/settings.php:640 -msgid "Update" -msgstr "Mises-à-jour" - -#: ../../mod/contacts.php:717 ../../mod/group.php:171 ../../mod/admin.php:1007 -#: ../../mod/content.php:438 ../../mod/content.php:741 -#: ../../mod/settings.php:677 ../../mod/photos.php:1654 -#: ../../object/Item.php:130 ../../include/conversation.php:614 -msgid "Delete" -msgstr "Supprimer" - -#: ../../mod/hcard.php:10 -msgid "No profile" -msgstr "Aucun profil" - -#: ../../mod/manage.php:106 -msgid "Manage Identities and/or Pages" -msgstr "Gérer les identités et/ou les pages" - -#: ../../mod/manage.php:107 +#: ../../include/dbstructure.php:26 +#, php-format msgid "" -"Toggle between different identities or community/group pages which share " -"your account details or which you have been granted \"manage\" permissions" -msgstr "Basculez entre les différentes identités ou pages (groupes/communautés) qui se partagent votre compte ou que vous avez été autorisé à gérer." +"\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 "\nLes développeurs de Friendica ont récemment publié la mise à jour %s, mais en tentant de l’installer, quelque chose s’est terriblement mal passé. Une réparation s’impose et je ne peux pas la faire tout seul. Contactez un développeur Friendica si vous ne pouvez pas corriger le problème vous-même. Il est possible que ma base de données soit corrompue." -#: ../../mod/manage.php:108 -msgid "Select an identity to manage: " -msgstr "Choisir une identité à gérer: " - -#: ../../mod/oexchange.php:25 -msgid "Post successful." -msgstr "Publication réussie." - -#: ../../mod/profperm.php:19 ../../mod/group.php:72 ../../index.php:368 -msgid "Permission denied" -msgstr "Permission refusée" - -#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 -msgid "Invalid profile identifier." -msgstr "Identifiant de profil invalide." - -#: ../../mod/profperm.php:101 -msgid "Profile Visibility Editor" -msgstr "Éditer la visibilité du profil" - -#: ../../mod/profperm.php:103 ../../mod/newmember.php:32 ../../boot.php:2119 -#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:87 -#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:124 -msgid "Profile" -msgstr "Profil" - -#: ../../mod/profperm.php:105 ../../mod/group.php:224 -msgid "Click on a contact to add or remove." -msgstr "Cliquez sur un contact pour l'ajouter ou le supprimer." - -#: ../../mod/profperm.php:114 -msgid "Visible To" -msgstr "Visible par" - -#: ../../mod/profperm.php:130 -msgid "All Contacts (with secure profile access)" -msgstr "Tous les contacts (ayant un accès sécurisé)" - -#: ../../mod/display.php:82 ../../mod/display.php:284 -#: ../../mod/display.php:503 ../../mod/viewsrc.php:15 ../../mod/admin.php:169 -#: ../../mod/admin.php:1052 ../../mod/admin.php:1265 ../../mod/notice.php:15 -#: ../../include/items.php:4516 -msgid "Item not found." -msgstr "Élément introuvable." - -#: ../../mod/display.php:212 ../../mod/videos.php:115 -#: ../../mod/viewcontacts.php:19 ../../mod/community.php:18 -#: ../../mod/dfrn_request.php:762 ../../mod/search.php:89 -#: ../../mod/directory.php:33 ../../mod/photos.php:920 -msgid "Public access denied." -msgstr "Accès public refusé." - -#: ../../mod/display.php:332 ../../mod/profile.php:155 -msgid "Access to this profile has been restricted." -msgstr "L'accès au profil a été restreint." - -#: ../../mod/display.php:496 -msgid "Item has been removed." -msgstr "Cet élément a été enlevé." - -#: ../../mod/newmember.php:6 -msgid "Welcome to Friendica" -msgstr "Bienvenue sur Friendica" - -#: ../../mod/newmember.php:8 -msgid "New Member Checklist" -msgstr "Checklist du nouvel utilisateur" - -#: ../../mod/newmember.php:12 +#: ../../include/dbstructure.php:31 +#, php-format msgid "" -"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." -msgstr "Nous souhaiterions vous donner quelques astuces et ressources pour rendre votre expérience la plus agréable possible. Cliquez sur n'importe lequel de ces éléments pour visiter la page correspondante. Un lien vers cette page restera visible sur votre page d'accueil pendant les deux semaines qui suivent votre inscription initiale, puis disparaîtra silencieusement." +"The error message is\n" +"[pre]%s[/pre]" +msgstr "Le message d’erreur est\n[pre]%s[/pre]" -#: ../../mod/newmember.php:14 -msgid "Getting Started" -msgstr "Bien démarrer" +#: ../../include/dbstructure.php:150 +msgid "Errors encountered creating database tables." +msgstr "Des erreurs ont été signalées lors de la création des tables." -#: ../../mod/newmember.php:18 -msgid "Friendica Walk-Through" -msgstr "Friendica pas-à-pas" +#: ../../include/dbstructure.php:208 +msgid "Errors encountered performing database changes." +msgstr "Des erreurs sont survenues lors de la mise à jour de la base de données." -#: ../../mod/newmember.php:18 -msgid "" -"On your Quick Start page - find a brief introduction to your " -"profile and network tabs, make some new connections, and find some groups to" -" join." -msgstr "Sur votre page d'accueil, dans Conseils aux nouveaux venus - vous trouverez une rapide introduction aux onglets Profil et Réseau, pourrez vous connecter à Facebook, établir de nouvelles relations, et choisir des groupes à rejoindre." +#: ../../include/datetime.php:43 ../../include/datetime.php:45 +msgid "Miscellaneous" +msgstr "Divers" -#: ../../mod/newmember.php:22 ../../mod/admin.php:1104 -#: ../../mod/admin.php:1325 ../../mod/settings.php:85 -#: ../../include/nav.php:172 ../../view/theme/diabook/theme.php:544 -#: ../../view/theme/diabook/theme.php:648 -msgid "Settings" -msgstr "Réglages" +#: ../../include/datetime.php:153 ../../include/datetime.php:290 +msgid "year" +msgstr "an" -#: ../../mod/newmember.php:26 -msgid "Go to Your Settings" -msgstr "Éditer vos Réglages" +#: ../../include/datetime.php:158 ../../include/datetime.php:291 +msgid "month" +msgstr "mois" -#: ../../mod/newmember.php:26 -msgid "" -"On your Settings page - change your initial password. Also make a " -"note of your Identity Address. This looks just like an email address - and " -"will be useful in making friends on the free social web." -msgstr "Sur la page des Réglages - changez votre mot de passe initial. Notez bien votre Identité. Elle ressemble à une adresse de courriel - et vous sera utile pour vous faire des amis dans le web social libre." +#: ../../include/datetime.php:163 ../../include/datetime.php:293 +msgid "day" +msgstr "jour" -#: ../../mod/newmember.php:28 -msgid "" -"Review the other settings, particularly the privacy settings. An unpublished" -" directory listing is like having an unlisted phone number. In general, you " -"should probably publish your listing - unless all of your friends and " -"potential friends know exactly how to find you." -msgstr "Vérifiez les autres réglages, tout particulièrement ceux liés à la vie privée. Un profil non listé, c'est un peu comme un numéro sur liste rouge. En général, vous devriez probablement publier votre profil - à moins que tous vos amis (potentiels) sachent déjà comment vous trouver." +#: ../../include/datetime.php:276 +msgid "never" +msgstr "jamais" -#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244 -#: ../../mod/profiles.php:699 -msgid "Upload Profile Photo" -msgstr "Téléverser une photo de profil" +#: ../../include/datetime.php:282 +msgid "less than a second ago" +msgstr "il y a moins d'une seconde" -#: ../../mod/newmember.php:36 -msgid "" -"Upload a profile photo if you have not done so already. Studies have shown " -"that people with real photos of themselves are ten times more likely to make" -" friends than people who do not." -msgstr "Téléversez (envoyez) une photo de profil si vous n'en avez pas déjà une. Les études montrent que les gens qui affichent de vraies photos d'eux sont dix fois plus susceptibles de se faire des amis." +#: ../../include/datetime.php:290 +msgid "years" +msgstr "ans" -#: ../../mod/newmember.php:38 -msgid "Edit Your Profile" -msgstr "Éditer votre Profil" +#: ../../include/datetime.php:291 +msgid "months" +msgstr "mois" -#: ../../mod/newmember.php:38 -msgid "" -"Edit your default profile to your liking. Review the " -"settings for hiding your list of friends and hiding the profile from unknown" -" visitors." -msgstr "Éditez votre profil par défaut à votre convenance. Vérifiez les réglages concernant la visibilité de votre liste d'amis par les visiteurs inconnus." +#: ../../include/datetime.php:292 +msgid "week" +msgstr "semaine" -#: ../../mod/newmember.php:40 -msgid "Profile Keywords" -msgstr "Mots-clés du profil" +#: ../../include/datetime.php:292 +msgid "weeks" +msgstr "semaines" -#: ../../mod/newmember.php:40 -msgid "" -"Set some public keywords for your default profile which describe your " -"interests. We may be able to find other people with similar interests and " -"suggest friendships." -msgstr "Choisissez quelques mots-clé publics pour votre profil par défaut. Ils pourront ainsi décrire vos centres d'intérêt, et nous pourrons vous proposer des contacts qui les partagent." +#: ../../include/datetime.php:293 +msgid "days" +msgstr "jours" -#: ../../mod/newmember.php:44 -msgid "Connecting" -msgstr "Connexions" +#: ../../include/datetime.php:294 +msgid "hour" +msgstr "heure" -#: ../../mod/newmember.php:49 ../../mod/newmember.php:51 -#: ../../include/contact_selectors.php:81 +#: ../../include/datetime.php:294 +msgid "hours" +msgstr "heures" + +#: ../../include/datetime.php:295 +msgid "minute" +msgstr "minute" + +#: ../../include/datetime.php:295 +msgid "minutes" +msgstr "minutes" + +#: ../../include/datetime.php:296 +msgid "second" +msgstr "seconde" + +#: ../../include/datetime.php:296 +msgid "seconds" +msgstr "secondes" + +#: ../../include/datetime.php:305 +#, php-format +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s auparavant" + +#: ../../include/message.php:15 ../../include/message.php:172 +msgid "[no subject]" +msgstr "[pas de sujet]" + +#: ../../include/delivery.php:456 ../../include/notifier.php:786 +msgid "(no subject)" +msgstr "(sans titre)" + +#: ../../include/contact_selectors.php:32 +msgid "Unknown | Not categorised" +msgstr "Inconnu | Non-classé" + +#: ../../include/contact_selectors.php:33 +msgid "Block immediately" +msgstr "Bloquer immédiatement" + +#: ../../include/contact_selectors.php:34 +msgid "Shady, spammer, self-marketer" +msgstr "Douteux, spammeur, accro à l'auto-promotion" + +#: ../../include/contact_selectors.php:35 +msgid "Known to me, but no opinion" +msgstr "Connu de moi, mais sans opinion" + +#: ../../include/contact_selectors.php:36 +msgid "OK, probably harmless" +msgstr "OK, probablement inoffensif" + +#: ../../include/contact_selectors.php:37 +msgid "Reputable, has my trust" +msgstr "Réputé, a toute ma confiance" + +#: ../../include/contact_selectors.php:56 ../../mod/admin.php:571 +msgid "Frequently" +msgstr "Fréquemment" + +#: ../../include/contact_selectors.php:57 ../../mod/admin.php:572 +msgid "Hourly" +msgstr "Toutes les heures" + +#: ../../include/contact_selectors.php:58 ../../mod/admin.php:573 +msgid "Twice daily" +msgstr "Deux fois par jour" + +#: ../../include/contact_selectors.php:59 ../../mod/admin.php:574 +msgid "Daily" +msgstr "Chaque jour" + +#: ../../include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Chaque semaine" + +#: ../../include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Chaque mois" + +#: ../../include/contact_selectors.php:76 ../../mod/dfrn_request.php:836 +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:1003 +#: ../../mod/admin.php:1015 ../../mod/admin.php:1016 ../../mod/admin.php:1031 +msgid "Email" +msgstr "Courriel" + +#: ../../include/contact_selectors.php:80 ../../mod/settings.php:741 +#: ../../mod/dfrn_request.php:838 +msgid "Diaspora" +msgstr "Diaspora" + +#: ../../include/contact_selectors.php:81 ../../mod/newmember.php:49 +#: ../../mod/newmember.php:51 msgid "Facebook" msgstr "Facebook" -#: ../../mod/newmember.php:49 -msgid "" -"Authorise the Facebook Connector if you currently have a Facebook account " -"and we will (optionally) import all your Facebook friends and conversations." -msgstr "Activez et paramétrez le connecteur Facebook si vous avez un compte Facebook et nous pourrons (de manière facultative) importer tous vos amis et conversations Facebook." +#: ../../include/contact_selectors.php:82 +msgid "Zot!" +msgstr "Zot!" -#: ../../mod/newmember.php:51 -msgid "" -"If this is your own personal server, installing the Facebook addon " -"may ease your transition to the free social web." -msgstr "Si ceci est votre propre serveur, installer le connecteur Facebook peut adoucir votre transition vers le web social libre." +#: ../../include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "LinkedIn" -#: ../../mod/newmember.php:56 -msgid "Importing Emails" -msgstr "Importer courriels" +#: ../../include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "XMPP/IM" -#: ../../mod/newmember.php:56 -msgid "" -"Enter your email access information on your Connector Settings page if you " -"wish to import and interact with friends or mailing lists from your email " -"INBOX" -msgstr "Entrez vos paramètres de courriel dans les Réglages des connecteurs si vous souhaitez importer et interagir avec des amis ou des listes venant de votre Boîte de Réception." +#: ../../include/contact_selectors.php:85 +msgid "MySpace" +msgstr "MySpace" -#: ../../mod/newmember.php:58 -msgid "Go to Your Contacts Page" -msgstr "Consulter vos Contacts" +#: ../../include/contact_selectors.php:87 +msgid "Google+" +msgstr "Google+" -#: ../../mod/newmember.php:58 -msgid "" -"Your Contacts page is your gateway to managing friendships and connecting " -"with friends on other networks. Typically you enter their address or site " -"URL in the Add New Contact dialog." -msgstr "Votre page Contacts est le point d'entrée vers la gestion de vos amitiés/relations et la connexion à des amis venant d'autres réseaux. Typiquement, vous pourrez y rentrer leur adresse d'Identité ou l'URL de leur site dans le formulaire Ajouter un nouveau contact." +#: ../../include/contact_selectors.php:88 +msgid "pump.io" +msgstr "pump.io" -#: ../../mod/newmember.php:60 -msgid "Go to Your Site's Directory" -msgstr "Consulter l'Annuaire de votre Site" +#: ../../include/contact_selectors.php:89 +msgid "Twitter" +msgstr "Twitter" -#: ../../mod/newmember.php:60 -msgid "" -"The Directory page lets you find other people in this network or other " -"federated sites. Look for a Connect or Follow link on " -"their profile page. Provide your own Identity Address if requested." -msgstr "La page Annuaire vous permet de trouver d'autres personnes au sein de ce réseaux ou parmi d'autres sites fédérés. Cherchez un lien Relier ou Suivre sur leur profil. Vous pourrez avoir besoin d'indiquer votre adresse d'identité." +#: ../../include/contact_selectors.php:90 +msgid "Diaspora Connector" +msgstr "Connecteur Diaspora" -#: ../../mod/newmember.php:62 -msgid "Finding New People" -msgstr "Trouver de nouvelles personnes" +#: ../../include/contact_selectors.php:91 +msgid "Statusnet" +msgstr "Statusnet" -#: ../../mod/newmember.php:62 -msgid "" -"On the side panel of the Contacts page are several tools to find new " -"friends. We can match people by interest, look up people by name or " -"interest, and provide suggestions based on network relationships. On a brand" -" new site, friend suggestions will usually begin to be populated within 24 " -"hours." -msgstr "Sur le panneau latéral de la page Contacts, il y a plusieurs moyens de trouver de nouveaux amis. Nous pouvons mettre les gens en relation selon leurs intérêts, rechercher des amis par nom ou intérêt, et fournir des suggestions en fonction de la topologie du réseau. Sur un site tout neuf, les suggestions d'amitié devraient commencer à apparaître au bout de 24 heures." +#: ../../include/contact_selectors.php:92 +msgid "App.net" +msgstr "App.net" -#: ../../mod/newmember.php:66 ../../include/group.php:270 -msgid "Groups" -msgstr "Groupes" - -#: ../../mod/newmember.php:70 -msgid "Group Your Contacts" -msgstr "Grouper vos contacts" - -#: ../../mod/newmember.php:70 -msgid "" -"Once you have made some friends, organize them into private conversation " -"groups from the sidebar of your Contacts page and then you can interact with" -" each group privately on your Network page." -msgstr "Une fois que vous avez trouvé quelques amis, organisez-les en groupes de conversation privés depuis le panneau latéral de la page Contacts. Vous pourrez ensuite interagir avec chaque groupe de manière privée depuis la page Réseau." - -#: ../../mod/newmember.php:73 -msgid "Why Aren't My Posts Public?" -msgstr "Pourquoi mes éléments ne sont pas publics?" - -#: ../../mod/newmember.php:73 -msgid "" -"Friendica respects your privacy. By default, your posts will only show up to" -" people you've added as friends. For more information, see the help section " -"from the link above." -msgstr "Friendica respecte votre vie privée. Par défaut, toutes vos publications seront seulement montrés à vos amis. Pour plus d'information, consultez la section \"aide\" du lien ci-dessus." - -#: ../../mod/newmember.php:78 -msgid "Getting Help" -msgstr "Obtenir de l'aide" - -#: ../../mod/newmember.php:82 -msgid "Go to the Help Section" -msgstr "Aller à la section Aide" - -#: ../../mod/newmember.php:82 -msgid "" -"Our help pages may be consulted for detail on other program" -" features and resources." -msgstr "Nos pages d'aide peuvent être consultées pour davantage de détails sur les fonctionnalités ou les ressources." - -#: ../../mod/openid.php:24 -msgid "OpenID protocol error. No ID returned." -msgstr "Erreur de protocole OpenID. Pas d'ID en retour." - -#: ../../mod/openid.php:53 -msgid "" -"Account not found and OpenID registration is not permitted on this site." -msgstr "Compte introuvable, et l'inscription OpenID n'est pas autorisée sur ce site." - -#: ../../mod/openid.php:93 ../../include/auth.php:112 -#: ../../include/auth.php:175 -msgid "Login failed." -msgstr "Échec de connexion." - -#: ../../mod/profile_photo.php:44 -msgid "Image uploaded but image cropping failed." -msgstr "Image envoyée, mais impossible de la retailler." - -#: ../../mod/profile_photo.php:74 ../../mod/profile_photo.php:81 -#: ../../mod/profile_photo.php:88 ../../mod/profile_photo.php:204 -#: ../../mod/profile_photo.php:296 ../../mod/profile_photo.php:305 -#: ../../mod/photos.php:155 ../../mod/photos.php:731 ../../mod/photos.php:1187 -#: ../../mod/photos.php:1210 ../../include/user.php:335 -#: ../../include/user.php:342 ../../include/user.php:349 -#: ../../view/theme/diabook/theme.php:500 -msgid "Profile Photos" -msgstr "Photos du profil" - -#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84 -#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308 +#: ../../include/diaspora.php:621 ../../include/conversation.php:172 +#: ../../mod/dfrn_confirm.php:486 #, php-format -msgid "Image size reduction [%s] failed." -msgstr "Réduction de la taille de l'image [%s] échouée." +msgid "%1$s is now friends with %2$s" +msgstr "%1$s est désormais lié à %2$s" -#: ../../mod/profile_photo.php:118 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Rechargez la page avec la touche Maj pressée, ou bien effacez le cache du navigateur, si d'aventure la nouvelle photo n'apparaissait pas immédiatement." +#: ../../include/diaspora.php:704 +msgid "Sharing notification from Diaspora network" +msgstr "Notification de partage du réseau Diaspora" -#: ../../mod/profile_photo.php:128 -msgid "Unable to process image" -msgstr "Impossible de traiter l'image" +#: ../../include/diaspora.php:2444 +msgid "Attachments:" +msgstr "Pièces jointes : " -#: ../../mod/profile_photo.php:144 ../../mod/wall_upload.php:122 +#: ../../include/conversation.php:140 ../../mod/like.php:168 #, php-format -msgid "Image exceeds size limit of %d" -msgstr "L'image dépasse la taille limite de %d" +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "%1$s n'aime pas %3$s de %2$s" -#: ../../mod/profile_photo.php:153 ../../mod/wall_upload.php:144 -#: ../../mod/photos.php:807 -msgid "Unable to process image." -msgstr "Impossible de traiter l'image." - -#: ../../mod/profile_photo.php:242 -msgid "Upload File:" -msgstr "Fichier à téléverser:" - -#: ../../mod/profile_photo.php:243 -msgid "Select a profile:" -msgstr "Choisir un profil:" - -#: ../../mod/profile_photo.php:245 -msgid "Upload" -msgstr "Téléverser" - -#: ../../mod/profile_photo.php:248 ../../mod/settings.php:1062 -msgid "or" -msgstr "ou" - -#: ../../mod/profile_photo.php:248 -msgid "skip this step" -msgstr "ignorer cette étape" - -#: ../../mod/profile_photo.php:248 -msgid "select a photo from your photo albums" -msgstr "choisissez une photo depuis vos albums" - -#: ../../mod/profile_photo.php:262 -msgid "Crop Image" -msgstr "(Re)cadrer l'image" - -#: ../../mod/profile_photo.php:263 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Ajustez le cadre de l'image pour une visualisation optimale." - -#: ../../mod/profile_photo.php:265 -msgid "Done Editing" -msgstr "Édition terminée" - -#: ../../mod/profile_photo.php:299 -msgid "Image uploaded successfully." -msgstr "Image téléversée avec succès." - -#: ../../mod/profile_photo.php:301 ../../mod/wall_upload.php:172 -#: ../../mod/photos.php:834 -msgid "Image upload failed." -msgstr "Le téléversement de l'image a échoué." - -#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:149 -#: ../../include/conversation.php:126 ../../include/conversation.php:254 -#: ../../include/text.php:1968 ../../include/diaspora.php:2087 -#: ../../view/theme/diabook/theme.php:471 -msgid "photo" -msgstr "photo" - -#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:149 -#: ../../mod/like.php:319 ../../include/conversation.php:121 -#: ../../include/conversation.php:130 ../../include/conversation.php:249 -#: ../../include/conversation.php:258 ../../include/diaspora.php:2087 -#: ../../view/theme/diabook/theme.php:466 -#: ../../view/theme/diabook/theme.php:475 -msgid "status" -msgstr "le statut" - -#: ../../mod/subthread.php:103 +#: ../../include/conversation.php:206 #, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s suit les %3$s de %2$s" +msgid "%1$s poked %2$s" +msgstr "%1$s a sollicité %2$s" -#: ../../mod/tagrm.php:41 -msgid "Tag removed" -msgstr "Étiquette supprimée" +#: ../../include/conversation.php:226 ../../mod/mood.php:62 +#, php-format +msgid "%1$s is currently %2$s" +msgstr "%1$s est d'humeur %2$s" -#: ../../mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "Enlever l'étiquette de l'élément" +#: ../../include/conversation.php:265 ../../mod/tagger.php:95 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s a étiqueté %3$s de %2$s avec %4$s" -#: ../../mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "Sélectionner une étiquette à supprimer: " +#: ../../include/conversation.php:290 +msgid "post/item" +msgstr "publication/élément" -#: ../../mod/tagrm.php:93 ../../mod/delegate.php:139 -msgid "Remove" -msgstr "Utiliser comme photo de profil" +#: ../../include/conversation.php:291 +#, php-format +msgid "%1$s marked %2$s's %3$s as favorite" +msgstr "%1$s a marqué le %3$s de %2$s comme favori" -#: ../../mod/filer.php:30 ../../include/conversation.php:1006 -#: ../../include/conversation.php:1024 +#: ../../include/conversation.php:612 ../../object/Item.php:129 +#: ../../mod/photos.php:1653 ../../mod/content.php:437 +#: ../../mod/content.php:740 +msgid "Select" +msgstr "Sélectionner" + +#: ../../include/conversation.php:613 ../../object/Item.php:130 +#: ../../mod/group.php:171 ../../mod/settings.php:682 +#: ../../mod/contacts.php:733 ../../mod/admin.php:1007 +#: ../../mod/photos.php:1654 ../../mod/content.php:438 +#: ../../mod/content.php:741 +msgid "Delete" +msgstr "Supprimer" + +#: ../../include/conversation.php:653 ../../object/Item.php:326 +#: ../../object/Item.php:327 ../../mod/content.php:471 +#: ../../mod/content.php:852 ../../mod/content.php:853 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Voir le profil de %s @ %s" + +#: ../../include/conversation.php:665 ../../object/Item.php:316 +msgid "Categories:" +msgstr "Catégories:" + +#: ../../include/conversation.php:666 ../../object/Item.php:317 +msgid "Filed under:" +msgstr "Rangé sous:" + +#: ../../include/conversation.php:673 ../../object/Item.php:340 +#: ../../mod/content.php:481 ../../mod/content.php:864 +#, php-format +msgid "%s from %s" +msgstr "%s de %s" + +#: ../../include/conversation.php:689 ../../mod/content.php:497 +msgid "View in context" +msgstr "Voir dans le contexte" + +#: ../../include/conversation.php:691 ../../include/conversation.php:1108 +#: ../../object/Item.php:364 ../../mod/wallmessage.php:156 +#: ../../mod/editpost.php:124 ../../mod/photos.php:1545 +#: ../../mod/message.php:334 ../../mod/message.php:565 +#: ../../mod/content.php:499 ../../mod/content.php:883 +msgid "Please wait" +msgstr "Patientez" + +#: ../../include/conversation.php:771 +msgid "remove" +msgstr "enlever" + +#: ../../include/conversation.php:775 +msgid "Delete Selected Items" +msgstr "Supprimer les éléments sélectionnés" + +#: ../../include/conversation.php:874 +msgid "Follow Thread" +msgstr "Suivre le fil" + +#: ../../include/conversation.php:943 +#, php-format +msgid "%s likes this." +msgstr "%s aime ça." + +#: ../../include/conversation.php:943 +#, php-format +msgid "%s doesn't like this." +msgstr "%s n'aime pas ça." + +#: ../../include/conversation.php:948 +#, php-format +msgid "%2$d people like this" +msgstr "%2$d personnes aiment ça" + +#: ../../include/conversation.php:951 +#, php-format +msgid "%2$d people don't like this" +msgstr "%2$d personnes n'aiment pas ça" + +#: ../../include/conversation.php:965 +msgid "and" +msgstr "et" + +#: ../../include/conversation.php:971 +#, php-format +msgid ", and %d other people" +msgstr ", et %d autres personnes" + +#: ../../include/conversation.php:973 +#, php-format +msgid "%s like this." +msgstr "%s aiment ça." + +#: ../../include/conversation.php:973 +#, php-format +msgid "%s don't like this." +msgstr "%s n'aiment pas ça." + +#: ../../include/conversation.php:1000 ../../include/conversation.php:1018 +msgid "Visible to everybody" +msgstr "Visible par tout le monde" + +#: ../../include/conversation.php:1001 ../../include/conversation.php:1019 +#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135 +#: ../../mod/message.php:283 ../../mod/message.php:291 +#: ../../mod/message.php:466 ../../mod/message.php:474 +msgid "Please enter a link URL:" +msgstr "Entrez un lien web:" + +#: ../../include/conversation.php:1002 ../../include/conversation.php:1020 +msgid "Please enter a video link/URL:" +msgstr "Entrez un lien/URL video :" + +#: ../../include/conversation.php:1003 ../../include/conversation.php:1021 +msgid "Please enter an audio link/URL:" +msgstr "Entrez un lien/URL audio :" + +#: ../../include/conversation.php:1004 ../../include/conversation.php:1022 +msgid "Tag term:" +msgstr "Terme d'étiquette:" + +#: ../../include/conversation.php:1005 ../../include/conversation.php:1023 +#: ../../mod/filer.php:30 msgid "Save to Folder:" msgstr "Sauver dans le Dossier:" -#: ../../mod/filer.php:30 -msgid "- select -" -msgstr "- choisir -" +#: ../../include/conversation.php:1006 ../../include/conversation.php:1024 +msgid "Where are you right now?" +msgstr "Où êtes-vous présentemment?" -#: ../../mod/filer.php:31 ../../mod/editpost.php:109 ../../mod/notes.php:63 -#: ../../include/text.php:956 +#: ../../include/conversation.php:1007 +msgid "Delete item(s)?" +msgstr "Supprimer les élément(s) ?" + +#: ../../include/conversation.php:1050 +msgid "Post to Email" +msgstr "Publier aux courriels" + +#: ../../include/conversation.php:1055 +#, php-format +msgid "Connectors disabled, since \"%s\" is enabled." +msgstr "" + +#: ../../include/conversation.php:1056 ../../mod/settings.php:1033 +msgid "Hide your profile details from unknown viewers?" +msgstr "Cacher les détails du profil aux visiteurs inconnus?" + +#: ../../include/conversation.php:1089 ../../mod/photos.php:1544 +msgid "Share" +msgstr "Partager" + +#: ../../include/conversation.php:1090 ../../mod/wallmessage.php:154 +#: ../../mod/editpost.php:110 ../../mod/message.php:332 +#: ../../mod/message.php:562 +msgid "Upload photo" +msgstr "Joindre photo" + +#: ../../include/conversation.php:1091 ../../mod/editpost.php:111 +msgid "upload photo" +msgstr "envoi image" + +#: ../../include/conversation.php:1092 ../../mod/editpost.php:112 +msgid "Attach file" +msgstr "Joindre fichier" + +#: ../../include/conversation.php:1093 ../../mod/editpost.php:113 +msgid "attach file" +msgstr "ajout fichier" + +#: ../../include/conversation.php:1094 ../../mod/wallmessage.php:155 +#: ../../mod/editpost.php:114 ../../mod/message.php:333 +#: ../../mod/message.php:563 +msgid "Insert web link" +msgstr "Insérer lien web" + +#: ../../include/conversation.php:1095 ../../mod/editpost.php:115 +msgid "web link" +msgstr "lien web" + +#: ../../include/conversation.php:1096 ../../mod/editpost.php:116 +msgid "Insert video link" +msgstr "Insérer un lien video" + +#: ../../include/conversation.php:1097 ../../mod/editpost.php:117 +msgid "video link" +msgstr "lien vidéo" + +#: ../../include/conversation.php:1098 ../../mod/editpost.php:118 +msgid "Insert audio link" +msgstr "Insérer un lien audio" + +#: ../../include/conversation.php:1099 ../../mod/editpost.php:119 +msgid "audio link" +msgstr "lien audio" + +#: ../../include/conversation.php:1100 ../../mod/editpost.php:120 +msgid "Set your location" +msgstr "Définir votre localisation" + +#: ../../include/conversation.php:1101 ../../mod/editpost.php:121 +msgid "set location" +msgstr "spéc. localisation" + +#: ../../include/conversation.php:1102 ../../mod/editpost.php:122 +msgid "Clear browser location" +msgstr "Effacer la localisation du navigateur" + +#: ../../include/conversation.php:1103 ../../mod/editpost.php:123 +msgid "clear location" +msgstr "supp. localisation" + +#: ../../include/conversation.php:1105 ../../mod/editpost.php:137 +msgid "Set title" +msgstr "Définir un titre" + +#: ../../include/conversation.php:1107 ../../mod/editpost.php:139 +msgid "Categories (comma-separated list)" +msgstr "Catégories (séparées par des virgules)" + +#: ../../include/conversation.php:1109 ../../mod/editpost.php:125 +msgid "Permission settings" +msgstr "Réglages des permissions" + +#: ../../include/conversation.php:1110 +msgid "permissions" +msgstr "permissions" + +#: ../../include/conversation.php:1118 ../../mod/editpost.php:133 +msgid "CC: email addresses" +msgstr "CC: adresses de courriel" + +#: ../../include/conversation.php:1119 ../../mod/editpost.php:134 +msgid "Public post" +msgstr "Publication publique" + +#: ../../include/conversation.php:1121 ../../mod/editpost.php:140 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Exemple: bob@exemple.com, mary@exemple.com" + +#: ../../include/conversation.php:1125 ../../object/Item.php:687 +#: ../../mod/editpost.php:145 ../../mod/photos.php:1566 +#: ../../mod/photos.php:1610 ../../mod/photos.php:1698 +#: ../../mod/content.php:719 +msgid "Preview" +msgstr "Aperçu" + +#: ../../include/conversation.php:1134 +msgid "Post to Groups" +msgstr "Publier aux groupes" + +#: ../../include/conversation.php:1135 +msgid "Post to Contacts" +msgstr "Publier aux contacts" + +#: ../../include/conversation.php:1136 +msgid "Private post" +msgstr "Message privé" + +#: ../../include/text.php:297 +msgid "newer" +msgstr "Plus récent" + +#: ../../include/text.php:299 +msgid "older" +msgstr "Plus ancien" + +#: ../../include/text.php:304 +msgid "prev" +msgstr "précédent" + +#: ../../include/text.php:306 +msgid "first" +msgstr "premier" + +#: ../../include/text.php:338 +msgid "last" +msgstr "dernier" + +#: ../../include/text.php:341 +msgid "next" +msgstr "suivant" + +#: ../../include/text.php:396 +msgid "Loading more entries..." +msgstr "" + +#: ../../include/text.php:397 +msgid "The end" +msgstr "" + +#: ../../include/text.php:870 +msgid "No contacts" +msgstr "Aucun contact" + +#: ../../include/text.php:879 +#, php-format +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "%d contact" +msgstr[1] "%d contacts" + +#: ../../include/text.php:891 ../../mod/viewcontacts.php:78 +msgid "View Contacts" +msgstr "Voir les contacts" + +#: ../../include/text.php:971 ../../mod/editpost.php:109 +#: ../../mod/notes.php:63 ../../mod/filer.php:31 msgid "Save" msgstr "Sauver" -#: ../../mod/follow.php:27 -msgid "Contact added" -msgstr "Contact ajouté" +#: ../../include/text.php:1020 +msgid "poke" +msgstr "titiller" -#: ../../mod/item.php:113 -msgid "Unable to locate original post." -msgstr "Impossible de localiser la publication originale." +#: ../../include/text.php:1020 +msgid "poked" +msgstr "a titillé" -#: ../../mod/item.php:345 -msgid "Empty post discarded." -msgstr "Publication vide rejetée." +#: ../../include/text.php:1021 +msgid "ping" +msgstr "attirer l'attention" -#: ../../mod/item.php:484 ../../mod/wall_upload.php:169 -#: ../../mod/wall_upload.php:178 ../../mod/wall_upload.php:185 -#: ../../include/Photo.php:916 ../../include/Photo.php:931 -#: ../../include/Photo.php:938 ../../include/Photo.php:960 -#: ../../include/message.php:144 -msgid "Wall Photos" -msgstr "Photos du mur" +#: ../../include/text.php:1021 +msgid "pinged" +msgstr "a attiré l'attention de" -#: ../../mod/item.php:938 -msgid "System error. Post not saved." -msgstr "Erreur système. Publication non sauvée." +#: ../../include/text.php:1022 +msgid "prod" +msgstr "aiguillonner" -#: ../../mod/item.php:964 +#: ../../include/text.php:1022 +msgid "prodded" +msgstr "a aiguillonné" + +#: ../../include/text.php:1023 +msgid "slap" +msgstr "gifler" + +#: ../../include/text.php:1023 +msgid "slapped" +msgstr "a giflé" + +#: ../../include/text.php:1024 +msgid "finger" +msgstr "tripoter" + +#: ../../include/text.php:1024 +msgid "fingered" +msgstr "a tripoté" + +#: ../../include/text.php:1025 +msgid "rebuff" +msgstr "rabrouer" + +#: ../../include/text.php:1025 +msgid "rebuffed" +msgstr "a rabroué" + +#: ../../include/text.php:1039 +msgid "happy" +msgstr "heureuse" + +#: ../../include/text.php:1040 +msgid "sad" +msgstr "triste" + +#: ../../include/text.php:1041 +msgid "mellow" +msgstr "suave" + +#: ../../include/text.php:1042 +msgid "tired" +msgstr "fatiguée" + +#: ../../include/text.php:1043 +msgid "perky" +msgstr "guillerette" + +#: ../../include/text.php:1044 +msgid "angry" +msgstr "colérique" + +#: ../../include/text.php:1045 +msgid "stupified" +msgstr "stupéfaite" + +#: ../../include/text.php:1046 +msgid "puzzled" +msgstr "perplexe" + +#: ../../include/text.php:1047 +msgid "interested" +msgstr "intéressée" + +#: ../../include/text.php:1048 +msgid "bitter" +msgstr "amère" + +#: ../../include/text.php:1049 +msgid "cheerful" +msgstr "entraînante" + +#: ../../include/text.php:1050 +msgid "alive" +msgstr "vivante" + +#: ../../include/text.php:1051 +msgid "annoyed" +msgstr "ennuyée" + +#: ../../include/text.php:1052 +msgid "anxious" +msgstr "anxieuse" + +#: ../../include/text.php:1053 +msgid "cranky" +msgstr "excentrique" + +#: ../../include/text.php:1054 +msgid "disturbed" +msgstr "dérangée" + +#: ../../include/text.php:1055 +msgid "frustrated" +msgstr "frustrée" + +#: ../../include/text.php:1056 +msgid "motivated" +msgstr "motivée" + +#: ../../include/text.php:1057 +msgid "relaxed" +msgstr "détendue" + +#: ../../include/text.php:1058 +msgid "surprised" +msgstr "surprise" + +#: ../../include/text.php:1228 +msgid "Monday" +msgstr "Lundi" + +#: ../../include/text.php:1228 +msgid "Tuesday" +msgstr "Mardi" + +#: ../../include/text.php:1228 +msgid "Wednesday" +msgstr "Mercredi" + +#: ../../include/text.php:1228 +msgid "Thursday" +msgstr "Jeudi" + +#: ../../include/text.php:1228 +msgid "Friday" +msgstr "Vendredi" + +#: ../../include/text.php:1228 +msgid "Saturday" +msgstr "Samedi" + +#: ../../include/text.php:1228 +msgid "Sunday" +msgstr "Dimanche" + +#: ../../include/text.php:1232 +msgid "January" +msgstr "Janvier" + +#: ../../include/text.php:1232 +msgid "February" +msgstr "Février" + +#: ../../include/text.php:1232 +msgid "March" +msgstr "Mars" + +#: ../../include/text.php:1232 +msgid "April" +msgstr "Avril" + +#: ../../include/text.php:1232 +msgid "May" +msgstr "Mai" + +#: ../../include/text.php:1232 +msgid "June" +msgstr "Juin" + +#: ../../include/text.php:1232 +msgid "July" +msgstr "Juillet" + +#: ../../include/text.php:1232 +msgid "August" +msgstr "Août" + +#: ../../include/text.php:1232 +msgid "September" +msgstr "Septembre" + +#: ../../include/text.php:1232 +msgid "October" +msgstr "Octobre" + +#: ../../include/text.php:1232 +msgid "November" +msgstr "Novembre" + +#: ../../include/text.php:1232 +msgid "December" +msgstr "Décembre" + +#: ../../include/text.php:1422 ../../mod/videos.php:301 +msgid "View Video" +msgstr "Regarder la vidéo" + +#: ../../include/text.php:1454 +msgid "bytes" +msgstr "octets" + +#: ../../include/text.php:1478 ../../include/text.php:1490 +msgid "Click to open/close" +msgstr "Cliquer pour ouvrir/fermer" + +#: ../../include/text.php:1664 ../../include/text.php:1674 +#: ../../mod/events.php:335 +msgid "link to source" +msgstr "lien original" + +#: ../../include/text.php:1731 +msgid "Select an alternate language" +msgstr "Choisir une langue alternative" + +#: ../../include/text.php:1987 +msgid "activity" +msgstr "activité" + +#: ../../include/text.php:1989 ../../object/Item.php:389 +#: ../../object/Item.php:402 ../../mod/content.php:605 +msgid "comment" +msgid_plural "comments" +msgstr[0] "" +msgstr[1] "commentaire" + +#: ../../include/text.php:1990 +msgid "post" +msgstr "publication" + +#: ../../include/text.php:2158 +msgid "Item filed" +msgstr "Élément classé" + +#: ../../include/auth.php:38 +msgid "Logged out." +msgstr "Déconnecté." + +#: ../../include/auth.php:112 ../../include/auth.php:175 +#: ../../mod/openid.php:93 +msgid "Login failed." +msgstr "Échec de connexion." + +#: ../../include/auth.php:128 ../../include/user.php:67 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "Nous avons eu un souci avec l'OpenID que vous avez fourni. merci de vérifier l'orthographe correcte de ce dernier." + +#: ../../include/auth.php:128 ../../include/user.php:67 +msgid "The error message was:" +msgstr "Le message d'erreur était :" + +#: ../../include/bbcode.php:433 ../../include/bbcode.php:1066 +#: ../../include/bbcode.php:1067 +msgid "Image/photo" +msgstr "Image/photo" + +#: ../../include/bbcode.php:531 +#, php-format +msgid "%2$s %3$s" +msgstr "" + +#: ../../include/bbcode.php:565 #, php-format msgid "" -"This message was sent to you by %s, a member of the Friendica social " -"network." -msgstr "Ce message vous a été envoyé par %s, membre du réseau social Friendica." +"%s wrote the following post" +msgstr "" -#: ../../mod/item.php:966 -#, php-format -msgid "You may visit them online at %s" -msgstr "Vous pouvez leur rendre visite sur %s" +#: ../../include/bbcode.php:1030 ../../include/bbcode.php:1050 +msgid "$1 wrote:" +msgstr "$1 a écrit:" -#: ../../mod/item.php:967 +#: ../../include/bbcode.php:1075 ../../include/bbcode.php:1076 +msgid "Encrypted content" +msgstr "Contenu chiffré" + +#: ../../include/security.php:22 +msgid "Welcome " +msgstr "Bienvenue " + +#: ../../include/security.php:23 +msgid "Please upload a profile photo." +msgstr "Merci d'illustrer votre profil d'une image." + +#: ../../include/security.php:26 +msgid "Welcome back " +msgstr "Bienvenue à nouveau, " + +#: ../../include/security.php:366 msgid "" -"Please contact the sender by replying to this post if you do not wish to " -"receive these messages." -msgstr "Merci de contacter l’émetteur en répondant à cette publication si vous ne souhaitez pas recevoir ces messages." +"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 "Le jeton de sécurité du formulaire n'est pas correct. Ceci veut probablement dire que le formulaire est resté ouvert trop longtemps (plus de 3 heures) avant d'être validé." -#: ../../mod/item.php:971 +#: ../../include/oembed.php:213 +msgid "Embedded content" +msgstr "Contenu incorporé" + +#: ../../include/oembed.php:222 +msgid "Embedding disabled" +msgstr "Incorporation désactivée" + +#: ../../include/profile_selectors.php:6 +msgid "Male" +msgstr "Masculin" + +#: ../../include/profile_selectors.php:6 +msgid "Female" +msgstr "Féminin" + +#: ../../include/profile_selectors.php:6 +msgid "Currently Male" +msgstr "Actuellement masculin" + +#: ../../include/profile_selectors.php:6 +msgid "Currently Female" +msgstr "Actuellement féminin" + +#: ../../include/profile_selectors.php:6 +msgid "Mostly Male" +msgstr "Principalement masculin" + +#: ../../include/profile_selectors.php:6 +msgid "Mostly Female" +msgstr "Principalement féminin" + +#: ../../include/profile_selectors.php:6 +msgid "Transgender" +msgstr "Transgenre" + +#: ../../include/profile_selectors.php:6 +msgid "Intersex" +msgstr "Inter-sexe" + +#: ../../include/profile_selectors.php:6 +msgid "Transsexual" +msgstr "Transsexuel" + +#: ../../include/profile_selectors.php:6 +msgid "Hermaphrodite" +msgstr "Hermaphrodite" + +#: ../../include/profile_selectors.php:6 +msgid "Neuter" +msgstr "Neutre" + +#: ../../include/profile_selectors.php:6 +msgid "Non-specific" +msgstr "Non-spécifique" + +#: ../../include/profile_selectors.php:6 +msgid "Other" +msgstr "Autre" + +#: ../../include/profile_selectors.php:6 +msgid "Undecided" +msgstr "Indécis" + +#: ../../include/profile_selectors.php:23 +msgid "Males" +msgstr "Hommes" + +#: ../../include/profile_selectors.php:23 +msgid "Females" +msgstr "Femmes" + +#: ../../include/profile_selectors.php:23 +msgid "Gay" +msgstr "Gay" + +#: ../../include/profile_selectors.php:23 +msgid "Lesbian" +msgstr "Lesbienne" + +#: ../../include/profile_selectors.php:23 +msgid "No Preference" +msgstr "Sans préférence" + +#: ../../include/profile_selectors.php:23 +msgid "Bisexual" +msgstr "Bisexuel" + +#: ../../include/profile_selectors.php:23 +msgid "Autosexual" +msgstr "Auto-sexuel" + +#: ../../include/profile_selectors.php:23 +msgid "Abstinent" +msgstr "Abstinent" + +#: ../../include/profile_selectors.php:23 +msgid "Virgin" +msgstr "Vierge" + +#: ../../include/profile_selectors.php:23 +msgid "Deviant" +msgstr "Déviant" + +#: ../../include/profile_selectors.php:23 +msgid "Fetish" +msgstr "Fétichiste" + +#: ../../include/profile_selectors.php:23 +msgid "Oodles" +msgstr "Oodles" + +#: ../../include/profile_selectors.php:23 +msgid "Nonsexual" +msgstr "Non-sexuel" + +#: ../../include/profile_selectors.php:42 +msgid "Single" +msgstr "Célibataire" + +#: ../../include/profile_selectors.php:42 +msgid "Lonely" +msgstr "Esseulé" + +#: ../../include/profile_selectors.php:42 +msgid "Available" +msgstr "Disponible" + +#: ../../include/profile_selectors.php:42 +msgid "Unavailable" +msgstr "Indisponible" + +#: ../../include/profile_selectors.php:42 +msgid "Has crush" +msgstr "Attiré par quelqu'un" + +#: ../../include/profile_selectors.php:42 +msgid "Infatuated" +msgstr "Entiché" + +#: ../../include/profile_selectors.php:42 +msgid "Dating" +msgstr "Dans une relation" + +#: ../../include/profile_selectors.php:42 +msgid "Unfaithful" +msgstr "Infidèle" + +#: ../../include/profile_selectors.php:42 +msgid "Sex Addict" +msgstr "Accro au sexe" + +#: ../../include/profile_selectors.php:42 ../../include/user.php:289 +#: ../../include/user.php:293 +msgid "Friends" +msgstr "Amis" + +#: ../../include/profile_selectors.php:42 +msgid "Friends/Benefits" +msgstr "Amis par intérêt" + +#: ../../include/profile_selectors.php:42 +msgid "Casual" +msgstr "Casual" + +#: ../../include/profile_selectors.php:42 +msgid "Engaged" +msgstr "Fiancé" + +#: ../../include/profile_selectors.php:42 +msgid "Married" +msgstr "Marié" + +#: ../../include/profile_selectors.php:42 +msgid "Imaginarily married" +msgstr "Se croit marié" + +#: ../../include/profile_selectors.php:42 +msgid "Partners" +msgstr "Partenaire" + +#: ../../include/profile_selectors.php:42 +msgid "Cohabiting" +msgstr "En cohabitation" + +#: ../../include/profile_selectors.php:42 +msgid "Common law" +msgstr "Marié \"de fait\"/\"sui juris\" (concubin)" + +#: ../../include/profile_selectors.php:42 +msgid "Happy" +msgstr "Heureux" + +#: ../../include/profile_selectors.php:42 +msgid "Not looking" +msgstr "Pas intéressé" + +#: ../../include/profile_selectors.php:42 +msgid "Swinger" +msgstr "Échangiste" + +#: ../../include/profile_selectors.php:42 +msgid "Betrayed" +msgstr "Trahi(e)" + +#: ../../include/profile_selectors.php:42 +msgid "Separated" +msgstr "Séparé" + +#: ../../include/profile_selectors.php:42 +msgid "Unstable" +msgstr "Instable" + +#: ../../include/profile_selectors.php:42 +msgid "Divorced" +msgstr "Divorcé" + +#: ../../include/profile_selectors.php:42 +msgid "Imaginarily divorced" +msgstr "Se croit divorcé" + +#: ../../include/profile_selectors.php:42 +msgid "Widowed" +msgstr "Veuf/Veuve" + +#: ../../include/profile_selectors.php:42 +msgid "Uncertain" +msgstr "Incertain" + +#: ../../include/profile_selectors.php:42 +msgid "It's complicated" +msgstr "C'est compliqué" + +#: ../../include/profile_selectors.php:42 +msgid "Don't care" +msgstr "S'en désintéresse" + +#: ../../include/profile_selectors.php:42 +msgid "Ask me" +msgstr "Me demander" + +#: ../../include/user.php:40 +msgid "An invitation is required." +msgstr "Une invitation est requise." + +#: ../../include/user.php:45 +msgid "Invitation could not be verified." +msgstr "L'invitation fournie n'a pu être validée." + +#: ../../include/user.php:53 +msgid "Invalid OpenID url" +msgstr "Adresse OpenID invalide" + +#: ../../include/user.php:74 +msgid "Please enter the required information." +msgstr "Entrez les informations requises." + +#: ../../include/user.php:88 +msgid "Please use a shorter name." +msgstr "Utilisez un nom plus court." + +#: ../../include/user.php:90 +msgid "Name too short." +msgstr "Nom trop court." + +#: ../../include/user.php:105 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "Ceci ne semble pas être votre nom complet (Prénom Nom)." + +#: ../../include/user.php:110 +msgid "Your email domain is not among those allowed on this site." +msgstr "Votre domaine de courriel n'est pas autorisé sur ce site." + +#: ../../include/user.php:113 +msgid "Not a valid email address." +msgstr "Ceci n'est pas une adresse courriel valide." + +#: ../../include/user.php:126 +msgid "Cannot use that email." +msgstr "Impossible d'utiliser ce courriel." + +#: ../../include/user.php:132 +msgid "" +"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " +"must also begin with a letter." +msgstr "Votre \"pseudo\" peut seulement contenir les caractères \"a-z\", \"0-9\", \"-\", and \"_\", et doit commencer par une lettre." + +#: ../../include/user.php:138 ../../include/user.php:236 +msgid "Nickname is already registered. Please choose another." +msgstr "Pseudo déjà utilisé. Merci d'en choisir un autre." + +#: ../../include/user.php:148 +msgid "" +"Nickname was once registered here and may not be re-used. Please choose " +"another." +msgstr "Ce surnom a déjà été utilisé ici, et ne peut re-servir. Merci d'en choisir un autre." + +#: ../../include/user.php:164 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "ERREUR SÉRIEUSE: La génération des clés de sécurité a échoué." + +#: ../../include/user.php:222 +msgid "An error occurred during registration. Please try again." +msgstr "Une erreur est survenue lors de l'inscription. Merci de recommencer." + +#: ../../include/user.php:257 +msgid "An error occurred creating your default profile. Please try again." +msgstr "Une erreur est survenue lors de la création de votre profil par défaut. Merci de recommencer." + +#: ../../include/user.php:377 #, php-format -msgid "%s posted an update." -msgstr "%s a publié une mise à jour." +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tThank you for registering at %2$s. Your account has been created.\n" +"\t" +msgstr "\n\t\tChère/Cher %1$s,\n\t\t\tMerci de vous être inscrit sur %2$s. Votre compte a bien été créé.\n\t" + +#: ../../include/user.php:381 +#, php-format +msgid "" +"\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." +msgstr "\n\t\tVoici vos informations de connexion :\n\t\t\tAdresse :\t%3$s\n\t\t\tIdentifiant :\t%1$s\n\t\t\tMot de passe :\t%5$s\n\n\t\tVous pourrez changer votre mot de passe dans les paramètres de votre compte une fois connecté.\n\n\t\tProfitez-en pour prendre le temps de passer en revue les autres paramètres de votre compte.\n\n\t\tVous pourrez aussi ajouter quelques informations élémentaires à votre profil par défaut (sur la page « Profils ») pour permettre à d’autres personnes de vous trouver facilement.\n\n\t\tNous recommandons de préciser votre nom complet, d’ajouter une photo et quelques mots-clefs (c’est très utile pour découvrir de nouveaux amis), et peut-être aussi d’indiquer au moins le pays dans lequel vous vivez, à défaut d’être plus précis.\n\n\t\tNous respectons pleinement votre droit à une vie privée, et vous n’avez aucune obligation de donner toutes ces informations. Mais si vous êtes nouveau et ne connaissez encore personne ici, cela peut vous aider à vous faire de nouveaux amis intéressants.\n\n\n\t\tMerci et bienvenu sur %2$s." + +#: ../../include/user.php:413 ../../mod/admin.php:838 +#, php-format +msgid "Registration details for %s" +msgstr "Détails d'inscription pour %s" + +#: ../../include/acl_selectors.php:333 +msgid "Visible to everybody" +msgstr "Visible par tout le monde" + +#: ../../object/Item.php:94 +msgid "This entry was edited" +msgstr "Cette entrée à été édité" + +#: ../../object/Item.php:116 ../../mod/photos.php:1359 +#: ../../mod/content.php:620 +msgid "Private Message" +msgstr "Message privé" + +#: ../../object/Item.php:120 ../../mod/settings.php:681 +#: ../../mod/content.php:728 +msgid "Edit" +msgstr "Éditer" + +#: ../../object/Item.php:133 ../../mod/content.php:763 +msgid "save to folder" +msgstr "sauver vers dossier" + +#: ../../object/Item.php:195 ../../mod/content.php:753 +msgid "add star" +msgstr "mett en avant" + +#: ../../object/Item.php:196 ../../mod/content.php:754 +msgid "remove star" +msgstr "ne plus mettre en avant" + +#: ../../object/Item.php:197 ../../mod/content.php:755 +msgid "toggle star status" +msgstr "mettre en avant" + +#: ../../object/Item.php:200 ../../mod/content.php:758 +msgid "starred" +msgstr "mis en avant" + +#: ../../object/Item.php:208 +msgid "ignore thread" +msgstr "ignorer le fil" + +#: ../../object/Item.php:209 +msgid "unignore thread" +msgstr "Ne plus ignorer le fil" + +#: ../../object/Item.php:210 +msgid "toggle ignore status" +msgstr "Ignorer le statut" + +#: ../../object/Item.php:213 +msgid "ignored" +msgstr "ignoré" + +#: ../../object/Item.php:220 ../../mod/content.php:759 +msgid "add tag" +msgstr "ajouter une étiquette" + +#: ../../object/Item.php:231 ../../mod/photos.php:1542 +#: ../../mod/content.php:684 +msgid "I like this (toggle)" +msgstr "J'aime (bascule)" + +#: ../../object/Item.php:231 ../../mod/content.php:684 +msgid "like" +msgstr "aime" + +#: ../../object/Item.php:232 ../../mod/photos.php:1543 +#: ../../mod/content.php:685 +msgid "I don't like this (toggle)" +msgstr "Je n'aime pas (bascule)" + +#: ../../object/Item.php:232 ../../mod/content.php:685 +msgid "dislike" +msgstr "n'aime pas" + +#: ../../object/Item.php:234 ../../mod/content.php:687 +msgid "Share this" +msgstr "Partager" + +#: ../../object/Item.php:234 ../../mod/content.php:687 +msgid "share" +msgstr "partager" + +#: ../../object/Item.php:328 ../../mod/content.php:854 +msgid "to" +msgstr "à" + +#: ../../object/Item.php:329 +msgid "via" +msgstr "via" + +#: ../../object/Item.php:330 ../../mod/content.php:855 +msgid "Wall-to-Wall" +msgstr "Inter-mur" + +#: ../../object/Item.php:331 ../../mod/content.php:856 +msgid "via Wall-To-Wall:" +msgstr "en Inter-mur:" + +#: ../../object/Item.php:387 ../../mod/content.php:603 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d commentaire" +msgstr[1] "%d commentaires" + +#: ../../object/Item.php:675 ../../mod/photos.php:1562 +#: ../../mod/photos.php:1606 ../../mod/photos.php:1694 +#: ../../mod/content.php:707 +msgid "This is you" +msgstr "C'est vous" + +#: ../../object/Item.php:679 ../../mod/content.php:711 +msgid "Bold" +msgstr "Gras" + +#: ../../object/Item.php:680 ../../mod/content.php:712 +msgid "Italic" +msgstr "Italique" + +#: ../../object/Item.php:681 ../../mod/content.php:713 +msgid "Underline" +msgstr "Souligné" + +#: ../../object/Item.php:682 ../../mod/content.php:714 +msgid "Quote" +msgstr "Citation" + +#: ../../object/Item.php:683 ../../mod/content.php:715 +msgid "Code" +msgstr "Code" + +#: ../../object/Item.php:684 ../../mod/content.php:716 +msgid "Image" +msgstr "Image" + +#: ../../object/Item.php:685 ../../mod/content.php:717 +msgid "Link" +msgstr "Lien" + +#: ../../object/Item.php:686 ../../mod/content.php:718 +msgid "Video" +msgstr "Vidéo" + +#: ../../mod/attach.php:8 +msgid "Item not available." +msgstr "Elément non disponible." + +#: ../../mod/attach.php:20 +msgid "Item was not found." +msgstr "Element introuvable." + +#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "Nombre de messages de mur quotidiens pour %s dépassé. Échec du message." + +#: ../../mod/wallmessage.php:56 ../../mod/message.php:63 +msgid "No recipient selected." +msgstr "Pas de destinataire sélectionné." + +#: ../../mod/wallmessage.php:59 +msgid "Unable to check your home location." +msgstr "Impossible de vérifier votre localisation." + +#: ../../mod/wallmessage.php:62 ../../mod/message.php:70 +msgid "Message could not be sent." +msgstr "Impossible d'envoyer le message." + +#: ../../mod/wallmessage.php:65 ../../mod/message.php:73 +msgid "Message collection failure." +msgstr "Récupération des messages infructueuse." + +#: ../../mod/wallmessage.php:68 ../../mod/message.php:76 +msgid "Message sent." +msgstr "Message envoyé." + +#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 +msgid "No recipient." +msgstr "Pas de destinataire." + +#: ../../mod/wallmessage.php:142 ../../mod/message.php:319 +msgid "Send Private Message" +msgstr "Envoyer un message privé" + +#: ../../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 "Si vous souhaitez que %s réponde, merci de vérifier vos réglages pour autoriser les messages privés venant d'inconnus." + +#: ../../mod/wallmessage.php:144 ../../mod/message.php:320 +#: ../../mod/message.php:553 +msgid "To:" +msgstr "À:" + +#: ../../mod/wallmessage.php:145 ../../mod/message.php:325 +#: ../../mod/message.php:555 +msgid "Subject:" +msgstr "Sujet:" + +#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134 +#: ../../mod/message.php:329 ../../mod/message.php:558 +msgid "Your message:" +msgstr "Votre message:" #: ../../mod/group.php:29 msgid "Group created." @@ -987,386 +3275,72 @@ msgstr "Éditeur de groupe" msgid "Members" msgstr "Membres" -#: ../../mod/apps.php:7 ../../index.php:212 -msgid "You must be logged in to use addons. " -msgstr "Vous devez être connecté pour utiliser les greffons." +#: ../../mod/group.php:194 ../../mod/contacts.php:586 +msgid "All Contacts" +msgstr "Tous les contacts" -#: ../../mod/apps.php:11 -msgid "Applications" -msgstr "Applications" +#: ../../mod/group.php:224 ../../mod/profperm.php:105 +msgid "Click on a contact to add or remove." +msgstr "Cliquez sur un contact pour l'ajouter ou le supprimer." -#: ../../mod/apps.php:14 -msgid "No installed applications." -msgstr "Pas d'application installée." +#: ../../mod/delegate.php:101 +msgid "No potential page delegates located." +msgstr "Pas de délégataire potentiel." -#: ../../mod/dfrn_confirm.php:64 ../../mod/profiles.php:18 -#: ../../mod/profiles.php:133 ../../mod/profiles.php:179 -#: ../../mod/profiles.php:630 -msgid "Profile not found." -msgstr "Profil introuvable." - -#: ../../mod/dfrn_confirm.php:120 ../../mod/fsuggest.php:20 -#: ../../mod/fsuggest.php:92 ../../mod/crepair.php:133 -msgid "Contact not found." -msgstr "Contact introuvable." - -#: ../../mod/dfrn_confirm.php:121 +#: ../../mod/delegate.php:132 msgid "" -"This may occasionally happen if contact was requested by both persons and it" -" has already been approved." -msgstr "Ceci peut se produire lorsque le contact a été requis par les deux personnes et a déjà été approuvé." +"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 "Les délégataires seront capables de gérer tous les aspects de ce compte ou de cette page, à l'exception des réglages de compte. Merci de ne pas déléguer votre compte principal à quelqu'un en qui vous n'avez pas une confiance absolue." -#: ../../mod/dfrn_confirm.php:240 -msgid "Response from remote site was not understood." -msgstr "Réponse du site distant incomprise." +#: ../../mod/delegate.php:133 +msgid "Existing Page Managers" +msgstr "Gestionnaires existants" -#: ../../mod/dfrn_confirm.php:249 ../../mod/dfrn_confirm.php:254 -msgid "Unexpected response from remote site: " -msgstr "Réponse inattendue du site distant: " +#: ../../mod/delegate.php:135 +msgid "Existing Page Delegates" +msgstr "Délégataires existants" -#: ../../mod/dfrn_confirm.php:263 -msgid "Confirmation completed successfully." -msgstr "Confirmation achevée avec succès." +#: ../../mod/delegate.php:137 +msgid "Potential Delegates" +msgstr "Délégataires potentiels" -#: ../../mod/dfrn_confirm.php:265 ../../mod/dfrn_confirm.php:279 -#: ../../mod/dfrn_confirm.php:286 -msgid "Remote site reported: " -msgstr "Alerte du site distant: " +#: ../../mod/delegate.php:139 ../../mod/tagrm.php:93 +msgid "Remove" +msgstr "Utiliser comme photo de profil" -#: ../../mod/dfrn_confirm.php:277 -msgid "Temporary failure. Please wait and try again." -msgstr "Échec temporaire. Merci de recommencer ultérieurement." +#: ../../mod/delegate.php:140 +msgid "Add" +msgstr "Ajouter" -#: ../../mod/dfrn_confirm.php:284 -msgid "Introduction failed or was revoked." -msgstr "Introduction échouée ou annulée." - -#: ../../mod/dfrn_confirm.php:429 -msgid "Unable to set contact photo." -msgstr "Impossible de définir la photo du contact." - -#: ../../mod/dfrn_confirm.php:486 ../../include/conversation.php:172 -#: ../../include/diaspora.php:620 -#, php-format -msgid "%1$s is now friends with %2$s" -msgstr "%1$s est désormais lié à %2$s" - -#: ../../mod/dfrn_confirm.php:571 -#, php-format -msgid "No user record found for '%s' " -msgstr "Pas d'utilisateur trouvé pour '%s' " - -#: ../../mod/dfrn_confirm.php:581 -msgid "Our site encryption key is apparently messed up." -msgstr "Notre clé de chiffrement de site est apparemment corrompue." - -#: ../../mod/dfrn_confirm.php:592 -msgid "Empty site URL was provided or URL could not be decrypted by us." -msgstr "URL de site absente ou indéchiffrable." - -#: ../../mod/dfrn_confirm.php:613 -msgid "Contact record was not found for you on our site." -msgstr "Pas d'entrée pour ce contact sur notre site." - -#: ../../mod/dfrn_confirm.php:627 -#, php-format -msgid "Site public key not available in contact record for URL %s." -msgstr "La clé publique du site ne se trouve pas dans l'enregistrement du contact pour l'URL %s." - -#: ../../mod/dfrn_confirm.php:647 -msgid "" -"The ID provided by your system is a duplicate on our system. It should work " -"if you try again." -msgstr "L'identifiant fourni par votre système fait doublon sur le notre. Cela peut fonctionner si vous réessayez." - -#: ../../mod/dfrn_confirm.php:658 -msgid "Unable to set your contact credentials on our system." -msgstr "Impossible de vous définir des permissions sur notre système." - -#: ../../mod/dfrn_confirm.php:725 -msgid "Unable to update your contact profile details on our system" -msgstr "Impossible de mettre les détails de votre profil à jour sur notre système" - -#: ../../mod/dfrn_confirm.php:752 ../../mod/dfrn_request.php:717 -#: ../../include/items.php:4008 -msgid "[Name Withheld]" -msgstr "[Nom non-publié]" - -#: ../../mod/dfrn_confirm.php:797 -#, php-format -msgid "%1$s has joined %2$s" -msgstr "%1$s a rejoint %2$s" - -#: ../../mod/profile.php:21 ../../boot.php:1458 -msgid "Requested profile is not available." -msgstr "Le profil demandé n'est pas disponible." - -#: ../../mod/profile.php:180 -msgid "Tips for New Members" -msgstr "Conseils aux nouveaux venus" - -#: ../../mod/videos.php:125 -msgid "No videos selected" -msgstr "Pas de vidéo sélectionné" - -#: ../../mod/videos.php:226 ../../mod/photos.php:1031 -msgid "Access to this item is restricted." -msgstr "Accès restreint à cet élément." - -#: ../../mod/videos.php:301 ../../include/text.php:1405 -msgid "View Video" -msgstr "Regarder la vidéo" - -#: ../../mod/videos.php:308 ../../mod/photos.php:1808 -msgid "View Album" -msgstr "Voir l'album" - -#: ../../mod/videos.php:317 -msgid "Recent Videos" -msgstr "Vidéos récente" - -#: ../../mod/videos.php:319 -msgid "Upload New Videos" -msgstr "Téléversé une nouvelle vidéo" - -#: ../../mod/tagger.php:95 ../../include/conversation.php:266 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s a étiqueté %3$s de %2$s avec %4$s" - -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Suggestion d'amitié/contact envoyée." - -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Suggérer des amis/contacts" - -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Suggérer un ami/contact pour %s" - -#: ../../mod/lostpass.php:19 -msgid "No valid account found." -msgstr "Impossible de trouver un compte valide." - -#: ../../mod/lostpass.php:35 -msgid "Password reset request issued. Check your email." -msgstr "Réinitialisation du mot de passe en cours. Vérifiez votre courriel." - -#: ../../mod/lostpass.php:42 -#, php-format -msgid "" -"\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." -msgstr "\n\t\tChère/Cher %1$s,\n\t\t\tNous avons reçu une demande de ré-initialisation du mot de passe de votre compte sur \"%2$s\". Pour confirmer cette demande, veuillez cliquer sur le lien de vérification ci-dessous ou le coller dans la barre d’adresse de votre navigateur.\n\n\t\tSi vous n’êtes PAS à l’origine de cette demande, NE suivez PAS le lien—ignorez et/ou supprimez ce message.\n\n\t\tVotre mot de passe ne sera pas modifié si nous n’avons pas de confirmation que la demande émane de vous." - -#: ../../mod/lostpass.php:53 -#, php-format -msgid "" -"\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" -msgstr "\n\t\tSuivez ce lien pour confirmer votre identité :\n\n\t\t%1$s\n\n\t\tVous recevrez alors a message contenant votre nouveau mot de passe.\n\t\tVous pourrez changer ce mot de passe depuis les paramètres de votre compte une fois connecté.\n\n\t\tInformations de connexion :\n\n\t\tAdresse :\t%2$s\n\t\tIdentifiant :\t%3$s" - -#: ../../mod/lostpass.php:72 -#, php-format -msgid "Password reset requested at %s" -msgstr "Requête de réinitialisation de mot de passe à %s" - -#: ../../mod/lostpass.php:92 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "Impossible d'honorer cette demande. (Vous l'avez peut-être déjà utilisée par le passé.) La réinitialisation a échoué." - -#: ../../mod/lostpass.php:109 ../../boot.php:1280 -msgid "Password Reset" -msgstr "Réinitialiser le mot de passe" - -#: ../../mod/lostpass.php:110 -msgid "Your password has been reset as requested." -msgstr "Votre mot de passe a bien été réinitialisé." - -#: ../../mod/lostpass.php:111 -msgid "Your new password is" -msgstr "Votre nouveau mot de passe est " - -#: ../../mod/lostpass.php:112 -msgid "Save or copy your new password - and then" -msgstr "Sauvez ou copiez ce nouveau mot de passe - puis" - -#: ../../mod/lostpass.php:113 -msgid "click here to login" -msgstr "cliquez ici pour vous connecter" - -#: ../../mod/lostpass.php:114 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Votre mot de passe peut être changé depuis la page <em>Réglages</em>, une fois que vous serez connecté." - -#: ../../mod/lostpass.php:125 -#, php-format -msgid "" -"\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" -msgstr "\n\t\t\t\tChère/Cher %1$s,\n\t\t\t\t\tVotre mot de passe a été changé ainsi que vous l’avez demandé. Veuillez conserver cette informations dans vos archives (ou changer immédiatement votre mot de passe pour un autre dont vous vous souviendrez).\n\t\t\t" - -#: ../../mod/lostpass.php:131 -#, php-format -msgid "" -"\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" -msgstr "\n\t\t\t\tVoici vos informations de connexion :\n\n\t\t\t\tAdresse :\t%1$s\n\t\t\t\tIdentifiant :\t%2$s\n\t\t\t\tMot de passe :\t%3$s\n\n\t\t\t\tVous pourrez changer votre mot de passe dans les paramètres de votre compte une fois connecté.\n\t\t\t" - -#: ../../mod/lostpass.php:147 -#, php-format -msgid "Your password has been changed at %s" -msgstr "Votre mot de passe a été modifié à %s" - -#: ../../mod/lostpass.php:159 -msgid "Forgot your Password?" -msgstr "Mot de passe oublié?" - -#: ../../mod/lostpass.php:160 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Entrez votre adresse de courriel et validez pour réinitialiser votre mot de passe. Vous recevrez la suite des instructions par courriel." - -#: ../../mod/lostpass.php:161 -msgid "Nickname or Email: " -msgstr "Pseudo ou Courriel: " - -#: ../../mod/lostpass.php:162 -msgid "Reset" -msgstr "Réinitialiser" - -#: ../../mod/like.php:166 ../../include/conversation.php:137 -#: ../../include/diaspora.php:2103 ../../view/theme/diabook/theme.php:480 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s aime %3$s de %2$s" - -#: ../../mod/like.php:168 ../../include/conversation.php:140 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s n'aime pas %3$s de %2$s" - -#: ../../mod/ping.php:240 -msgid "{0} wants to be your friend" -msgstr "{0} souhaite être votre ami(e)" - -#: ../../mod/ping.php:245 -msgid "{0} sent you a message" -msgstr "{0} vous a envoyé un message" - -#: ../../mod/ping.php:250 -msgid "{0} requested registration" -msgstr "{0} a demandé à s'inscrire" - -#: ../../mod/ping.php:256 -#, php-format -msgid "{0} commented %s's post" -msgstr "{0} a commenté la publication de %s" - -#: ../../mod/ping.php:261 -#, php-format -msgid "{0} liked %s's post" -msgstr "{0} a aimé la publication de %s" - -#: ../../mod/ping.php:266 -#, php-format -msgid "{0} disliked %s's post" -msgstr "{0} n'a pas aimé la publication de %s" - -#: ../../mod/ping.php:271 -#, php-format -msgid "{0} is now friends with %s" -msgstr "{0} est désormais ami(e) avec %s" - -#: ../../mod/ping.php:276 -msgid "{0} posted" -msgstr "{0} a publié" - -#: ../../mod/ping.php:281 -#, php-format -msgid "{0} tagged %s's post with #%s" -msgstr "{0} a étiqueté la publication de %s avec #%s" - -#: ../../mod/ping.php:287 -msgid "{0} mentioned you in a post" -msgstr "{0} vous a mentionné dans une publication" - -#: ../../mod/viewcontacts.php:41 -msgid "No contacts." -msgstr "Aucun contact." - -#: ../../mod/viewcontacts.php:78 ../../include/text.php:876 -msgid "View Contacts" -msgstr "Voir les contacts" +#: ../../mod/delegate.php:141 +msgid "No entries." +msgstr "Aucune entrée." #: ../../mod/notifications.php:26 msgid "Invalid request identifier." msgstr "Identifiant de demande invalide." #: ../../mod/notifications.php:35 ../../mod/notifications.php:165 -#: ../../mod/notifications.php:211 +#: ../../mod/notifications.php:215 msgid "Discard" msgstr "Rejeter" +#: ../../mod/notifications.php:51 ../../mod/notifications.php:164 +#: ../../mod/notifications.php:214 ../../mod/contacts.php:455 +#: ../../mod/contacts.php:519 ../../mod/contacts.php:731 +msgid "Ignore" +msgstr "Ignorer" + #: ../../mod/notifications.php:78 msgid "System" msgstr "Système" -#: ../../mod/notifications.php:83 ../../include/nav.php:145 -msgid "Network" -msgstr "Réseau" - #: ../../mod/notifications.php:88 ../../mod/network.php:371 msgid "Personal" msgstr "Personnel" -#: ../../mod/notifications.php:93 ../../include/nav.php:105 -#: ../../include/nav.php:148 ../../view/theme/diabook/theme.php:123 -msgid "Home" -msgstr "Profil" - -#: ../../mod/notifications.php:98 ../../include/nav.php:154 -msgid "Introductions" -msgstr "Introductions" - #: ../../mod/notifications.php:122 msgid "Show Ignored Requests" msgstr "Voir les demandes ignorées" @@ -1375,7 +3349,7 @@ msgstr "Voir les demandes ignorées" msgid "Hide Ignored Requests" msgstr "Cacher les demandes ignorées" -#: ../../mod/notifications.php:149 ../../mod/notifications.php:195 +#: ../../mod/notifications.php:149 ../../mod/notifications.php:199 msgid "Notification type: " msgstr "Type de notification: " @@ -1388,15 +3362,20 @@ msgstr "Suggestion d'amitié/contact" msgid "suggested by %s" msgstr "suggéré(e) par %s" -#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 +#: ../../mod/notifications.php:157 ../../mod/notifications.php:208 +#: ../../mod/contacts.php:525 +msgid "Hide this contact from others" +msgstr "Cacher ce contact aux autres" + +#: ../../mod/notifications.php:158 ../../mod/notifications.php:209 msgid "Post a new friend activity" msgstr "Poster une nouvelle avtivité d'ami" -#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 +#: ../../mod/notifications.php:158 ../../mod/notifications.php:209 msgid "if applicable" msgstr "si possible" -#: ../../mod/notifications.php:161 ../../mod/notifications.php:208 +#: ../../mod/notifications.php:161 ../../mod/notifications.php:212 #: ../../mod/admin.php:1005 msgid "Approve" msgstr "Approuver" @@ -1413,402 +3392,1310 @@ msgstr "oui" msgid "no" msgstr "non" -#: ../../mod/notifications.php:188 -msgid "Approve as: " -msgstr "Approuver en tant que: " +#: ../../mod/notifications.php:182 +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 "" -#: ../../mod/notifications.php:189 +#: ../../mod/notifications.php:185 +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 "" + +#: ../../mod/notifications.php:193 msgid "Friend" msgstr "Ami" -#: ../../mod/notifications.php:190 +#: ../../mod/notifications.php:194 msgid "Sharer" msgstr "Initiateur du partage" -#: ../../mod/notifications.php:190 +#: ../../mod/notifications.php:194 msgid "Fan/Admirer" msgstr "Fan/Admirateur" -#: ../../mod/notifications.php:196 +#: ../../mod/notifications.php:200 msgid "Friend/Connect Request" msgstr "Demande de connexion/relation" -#: ../../mod/notifications.php:196 +#: ../../mod/notifications.php:200 msgid "New Follower" msgstr "Nouvel abonné" -#: ../../mod/notifications.php:217 +#: ../../mod/notifications.php:221 msgid "No introductions." msgstr "Aucune demande d'introduction." -#: ../../mod/notifications.php:220 ../../include/nav.php:155 -msgid "Notifications" -msgstr "Notifications" - -#: ../../mod/notifications.php:258 ../../mod/notifications.php:387 -#: ../../mod/notifications.php:478 +#: ../../mod/notifications.php:262 ../../mod/notifications.php:391 +#: ../../mod/notifications.php:482 #, php-format msgid "%s liked %s's post" msgstr "%s a aimé la publication de %s" -#: ../../mod/notifications.php:268 ../../mod/notifications.php:397 -#: ../../mod/notifications.php:488 +#: ../../mod/notifications.php:272 ../../mod/notifications.php:401 +#: ../../mod/notifications.php:492 #, php-format msgid "%s disliked %s's post" msgstr "%s n'a pas aimé la publication de %s" -#: ../../mod/notifications.php:283 ../../mod/notifications.php:412 -#: ../../mod/notifications.php:503 +#: ../../mod/notifications.php:287 ../../mod/notifications.php:416 +#: ../../mod/notifications.php:507 #, php-format msgid "%s is now friends with %s" msgstr "%s est désormais ami(e) avec %s" -#: ../../mod/notifications.php:290 ../../mod/notifications.php:419 +#: ../../mod/notifications.php:294 ../../mod/notifications.php:423 #, php-format msgid "%s created a new post" msgstr "%s a créé une nouvelle publication" -#: ../../mod/notifications.php:291 ../../mod/notifications.php:420 -#: ../../mod/notifications.php:513 +#: ../../mod/notifications.php:295 ../../mod/notifications.php:424 +#: ../../mod/notifications.php:517 #, php-format msgid "%s commented on %s's post" msgstr "%s a commenté la publication de %s" -#: ../../mod/notifications.php:306 +#: ../../mod/notifications.php:310 msgid "No more network notifications." msgstr "Aucune notification du réseau." -#: ../../mod/notifications.php:310 +#: ../../mod/notifications.php:314 msgid "Network Notifications" msgstr "Notifications du réseau" -#: ../../mod/notifications.php:336 ../../mod/notify.php:75 +#: ../../mod/notifications.php:340 ../../mod/notify.php:75 msgid "No more system notifications." msgstr "Pas plus de notifications système." -#: ../../mod/notifications.php:340 ../../mod/notify.php:79 +#: ../../mod/notifications.php:344 ../../mod/notify.php:79 msgid "System Notifications" msgstr "Notifications du système" -#: ../../mod/notifications.php:435 +#: ../../mod/notifications.php:439 msgid "No more personal notifications." msgstr "Aucun notification personnelle." -#: ../../mod/notifications.php:439 +#: ../../mod/notifications.php:443 msgid "Personal Notifications" msgstr "Notifications personnelles" -#: ../../mod/notifications.php:520 +#: ../../mod/notifications.php:524 msgid "No more home notifications." msgstr "Aucune notification de la page d'accueil." -#: ../../mod/notifications.php:524 +#: ../../mod/notifications.php:528 msgid "Home Notifications" msgstr "Notifications de page d'accueil" -#: ../../mod/babel.php:17 -msgid "Source (bbcode) text:" -msgstr "Texte source (bbcode) :" +#: ../../mod/hcard.php:10 +msgid "No profile" +msgstr "Aucun profil" -#: ../../mod/babel.php:23 -msgid "Source (Diaspora) text to convert to BBcode:" -msgstr "Texte source (Diaspora) à convertir en BBcode :" +#: ../../mod/settings.php:34 ../../mod/photos.php:80 +msgid "everybody" +msgstr "tout le monde" -#: ../../mod/babel.php:31 -msgid "Source input: " -msgstr "Source input: " +#: ../../mod/settings.php:41 ../../mod/admin.php:1016 +msgid "Account" +msgstr "Compte" -#: ../../mod/babel.php:35 -msgid "bb2html (raw HTML): " -msgstr "bb2html (HTML brut)" +#: ../../mod/settings.php:46 +msgid "Additional features" +msgstr "Fonctions supplémentaires" -#: ../../mod/babel.php:39 -msgid "bb2html: " -msgstr "bb2html: " +#: ../../mod/settings.php:51 +msgid "Display" +msgstr "Afficher" -#: ../../mod/babel.php:43 -msgid "bb2html2bb: " -msgstr "bb2html2bb: " +#: ../../mod/settings.php:57 ../../mod/settings.php:785 +msgid "Social Networks" +msgstr "Réseaux sociaux" -#: ../../mod/babel.php:47 -msgid "bb2md: " -msgstr "bb2md: " +#: ../../mod/settings.php:62 ../../mod/admin.php:106 ../../mod/admin.php:1102 +#: ../../mod/admin.php:1155 +msgid "Plugins" +msgstr "Extensions" -#: ../../mod/babel.php:51 -msgid "bb2md2html: " -msgstr "bb2md2html: " +#: ../../mod/settings.php:72 +msgid "Connected apps" +msgstr "Applications connectées" -#: ../../mod/babel.php:55 -msgid "bb2dia2bb: " -msgstr "bb2dia2bb: " +#: ../../mod/settings.php:77 ../../mod/uexport.php:85 +msgid "Export personal data" +msgstr "Exporter" -#: ../../mod/babel.php:59 -msgid "bb2md2html2bb: " -msgstr "bb2md2html2bb: " +#: ../../mod/settings.php:82 +msgid "Remove account" +msgstr "Supprimer le compte" -#: ../../mod/babel.php:69 -msgid "Source input (Diaspora format): " -msgstr "Texte source (format Diaspora) :" +#: ../../mod/settings.php:134 +msgid "Missing some important data!" +msgstr "Il manque certaines informations importantes!" -#: ../../mod/babel.php:74 -msgid "diaspora2bb: " -msgstr "diaspora2bb :" +#: ../../mod/settings.php:137 ../../mod/settings.php:645 +#: ../../mod/contacts.php:729 +msgid "Update" +msgstr "Mises-à-jour" -#: ../../mod/navigation.php:20 ../../include/nav.php:34 -msgid "Nothing new here" -msgstr "Rien de neuf ici" +#: ../../mod/settings.php:243 +msgid "Failed to connect with email account using the settings provided." +msgstr "Impossible de se connecter au compte courriel configuré." -#: ../../mod/navigation.php:24 ../../include/nav.php:38 -msgid "Clear notifications" -msgstr "Effacer les notifications" +#: ../../mod/settings.php:248 +msgid "Email settings updated." +msgstr "Réglages de courriel mis-à-jour." -#: ../../mod/message.php:9 ../../include/nav.php:164 -msgid "New Message" -msgstr "Nouveau message" +#: ../../mod/settings.php:263 +msgid "Features updated" +msgstr "Fonctionnalités mises à jour" -#: ../../mod/message.php:63 ../../mod/wallmessage.php:56 -msgid "No recipient selected." -msgstr "Pas de destinataire sélectionné." +#: ../../mod/settings.php:326 +msgid "Relocate message has been send to your contacts" +msgstr "Un message de relocalisation a été envoyé à vos contacts." -#: ../../mod/message.php:67 -msgid "Unable to locate contact information." -msgstr "Impossible de localiser les informations du contact." +#: ../../mod/settings.php:340 +msgid "Passwords do not match. Password unchanged." +msgstr "Les mots de passe ne correspondent pas. Aucun changement appliqué." -#: ../../mod/message.php:70 ../../mod/wallmessage.php:62 -msgid "Message could not be sent." -msgstr "Impossible d'envoyer le message." +#: ../../mod/settings.php:345 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Les mots de passe vides sont interdits. Aucun changement appliqué." -#: ../../mod/message.php:73 ../../mod/wallmessage.php:65 -msgid "Message collection failure." -msgstr "Récupération des messages infructueuse." +#: ../../mod/settings.php:353 +msgid "Wrong password." +msgstr "Mauvais mot de passe." -#: ../../mod/message.php:76 ../../mod/wallmessage.php:68 -msgid "Message sent." -msgstr "Message envoyé." +#: ../../mod/settings.php:364 +msgid "Password changed." +msgstr "Mots de passe changés." -#: ../../mod/message.php:182 ../../include/nav.php:161 -msgid "Messages" -msgstr "Messages" +#: ../../mod/settings.php:366 +msgid "Password update failed. Please try again." +msgstr "Le changement de mot de passe a échoué. Merci de recommencer." -#: ../../mod/message.php:207 -msgid "Do you really want to delete this message?" -msgstr "Voulez-vous vraiment supprimer ce message ?" +#: ../../mod/settings.php:433 +msgid " Please use a shorter name." +msgstr " Merci d'utiliser un nom plus court." -#: ../../mod/message.php:227 -msgid "Message deleted." -msgstr "Message supprimé." +#: ../../mod/settings.php:435 +msgid " Name too short." +msgstr " Nom trop court." -#: ../../mod/message.php:258 -msgid "Conversation removed." -msgstr "Conversation supprimée." +#: ../../mod/settings.php:444 +msgid "Wrong Password" +msgstr "Mauvais mot de passe" -#: ../../mod/message.php:283 ../../mod/message.php:291 -#: ../../mod/message.php:466 ../../mod/message.php:474 -#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135 -#: ../../include/conversation.php:1002 ../../include/conversation.php:1020 -msgid "Please enter a link URL:" -msgstr "Entrez un lien web:" +#: ../../mod/settings.php:449 +msgid " Not valid email." +msgstr " Email invalide." -#: ../../mod/message.php:319 ../../mod/wallmessage.php:142 -msgid "Send Private Message" -msgstr "Envoyer un message privé" +#: ../../mod/settings.php:455 +msgid " Cannot change to that email." +msgstr " Impossible de changer pour cet email." -#: ../../mod/message.php:320 ../../mod/message.php:553 -#: ../../mod/wallmessage.php:144 -msgid "To:" -msgstr "À:" +#: ../../mod/settings.php:511 +msgid "Private forum has no privacy permissions. Using default privacy group." +msgstr "Ce forum privé n'a pas de paramètres de vie privée. Utilisation des paramètres de confidentialité par défaut." -#: ../../mod/message.php:325 ../../mod/message.php:555 -#: ../../mod/wallmessage.php:145 -msgid "Subject:" -msgstr "Sujet:" +#: ../../mod/settings.php:515 +msgid "Private forum has no privacy permissions and no default privacy group." +msgstr "Ce forum privé n'a pas de paramètres de vie privée ni de paramètres de confidentialité par défaut." -#: ../../mod/message.php:329 ../../mod/message.php:558 -#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134 -msgid "Your message:" -msgstr "Votre message:" +#: ../../mod/settings.php:545 +msgid "Settings updated." +msgstr "Réglages mis à jour." -#: ../../mod/message.php:332 ../../mod/message.php:562 -#: ../../mod/wallmessage.php:154 ../../mod/editpost.php:110 -#: ../../include/conversation.php:1091 -msgid "Upload photo" -msgstr "Joindre photo" +#: ../../mod/settings.php:618 ../../mod/settings.php:644 +#: ../../mod/settings.php:680 +msgid "Add application" +msgstr "Ajouter une application" -#: ../../mod/message.php:333 ../../mod/message.php:563 -#: ../../mod/wallmessage.php:155 ../../mod/editpost.php:114 -#: ../../include/conversation.php:1095 -msgid "Insert web link" -msgstr "Insérer lien web" +#: ../../mod/settings.php:619 ../../mod/settings.php:729 +#: ../../mod/settings.php:803 ../../mod/settings.php:885 +#: ../../mod/settings.php:1118 ../../mod/admin.php:620 +#: ../../mod/admin.php:1156 ../../mod/admin.php:1358 ../../mod/admin.php:1445 +msgid "Save Settings" +msgstr "Sauvegarder les paramétres" -#: ../../mod/message.php:334 ../../mod/message.php:565 -#: ../../mod/content.php:499 ../../mod/content.php:883 -#: ../../mod/wallmessage.php:156 ../../mod/editpost.php:124 -#: ../../mod/photos.php:1545 ../../object/Item.php:364 -#: ../../include/conversation.php:692 ../../include/conversation.php:1109 -msgid "Please wait" -msgstr "Patientez" - -#: ../../mod/message.php:371 -msgid "No messages." -msgstr "Aucun message." - -#: ../../mod/message.php:378 -#, php-format -msgid "Unknown sender - %s" -msgstr "Émetteur inconnu - %s" - -#: ../../mod/message.php:381 -#, php-format -msgid "You and %s" -msgstr "Vous et %s" - -#: ../../mod/message.php:384 -#, php-format -msgid "%s and You" -msgstr "%s et vous" - -#: ../../mod/message.php:405 ../../mod/message.php:546 -msgid "Delete conversation" -msgstr "Effacer conversation" - -#: ../../mod/message.php:408 -msgid "D, d M Y - g:i A" -msgstr "D, d M Y - g:i A" - -#: ../../mod/message.php:411 -#, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "%d message" -msgstr[1] "%d messages" - -#: ../../mod/message.php:450 -msgid "Message not available." -msgstr "Message indisponible." - -#: ../../mod/message.php:520 -msgid "Delete message" -msgstr "Effacer message" - -#: ../../mod/message.php:548 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Pas de communications sécurisées possibles. Vous serez peut-être en mesure de répondre depuis la page de profil de l'émetteur." - -#: ../../mod/message.php:552 -msgid "Send Reply" -msgstr "Répondre" - -#: ../../mod/update_display.php:22 ../../mod/update_community.php:18 -#: ../../mod/update_notes.php:37 ../../mod/update_profile.php:41 -#: ../../mod/update_network.php:25 -msgid "[Embedded content - reload page to view]" -msgstr "[contenu incorporé - rechargez la page pour le voir]" - -#: ../../mod/crepair.php:106 -msgid "Contact settings applied." -msgstr "Réglages du contact appliqués." - -#: ../../mod/crepair.php:108 -msgid "Contact update failed." -msgstr "Impossible d'appliquer les réglages." - -#: ../../mod/crepair.php:139 -msgid "Repair Contact Settings" -msgstr "Réglages de réparation des contacts" - -#: ../../mod/crepair.php:141 -msgid "" -"WARNING: This is highly advanced and if you enter incorrect" -" information your communications with this contact may stop working." -msgstr "ATTENTION: Manipulation réservée aux experts, toute information incorrecte pourrait empêcher la communication avec ce contact." - -#: ../../mod/crepair.php:142 -msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." -msgstr "une photo" - -#: ../../mod/crepair.php:148 -msgid "Return to contact editor" -msgstr "Retour à l'éditeur de contact" - -#: ../../mod/crepair.php:159 ../../mod/crepair.php:161 -msgid "No mirroring" -msgstr "" - -#: ../../mod/crepair.php:159 -msgid "Mirror as forwarded posting" -msgstr "" - -#: ../../mod/crepair.php:159 ../../mod/crepair.php:161 -msgid "Mirror as my own posting" -msgstr "" - -#: ../../mod/crepair.php:165 ../../mod/admin.php:1003 ../../mod/admin.php:1015 -#: ../../mod/admin.php:1016 ../../mod/admin.php:1029 -#: ../../mod/settings.php:616 ../../mod/settings.php:642 +#: ../../mod/settings.php:621 ../../mod/settings.php:647 +#: ../../mod/admin.php:1003 ../../mod/admin.php:1015 ../../mod/admin.php:1016 +#: ../../mod/admin.php:1029 ../../mod/crepair.php:165 msgid "Name" msgstr "Nom" -#: ../../mod/crepair.php:166 -msgid "Account Nickname" -msgstr "Pseudo du compte" +#: ../../mod/settings.php:622 ../../mod/settings.php:648 +msgid "Consumer Key" +msgstr "Clé utilisateur" -#: ../../mod/crepair.php:167 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@NomEtiquette - prend le pas sur Nom/Pseudo" +#: ../../mod/settings.php:623 ../../mod/settings.php:649 +msgid "Consumer Secret" +msgstr "Secret utilisateur" -#: ../../mod/crepair.php:168 -msgid "Account URL" -msgstr "URL du compte" +#: ../../mod/settings.php:624 ../../mod/settings.php:650 +msgid "Redirect" +msgstr "Rediriger" -#: ../../mod/crepair.php:169 -msgid "Friend Request URL" -msgstr "Echec du téléversement de l'image." +#: ../../mod/settings.php:625 ../../mod/settings.php:651 +msgid "Icon url" +msgstr "URL de l'icône" -#: ../../mod/crepair.php:170 -msgid "Friend Confirm URL" +#: ../../mod/settings.php:636 +msgid "You can't edit this application." +msgstr "Vous ne pouvez pas éditer cette application." + +#: ../../mod/settings.php:679 +msgid "Connected Apps" +msgstr "Applications connectées" + +#: ../../mod/settings.php:683 +msgid "Client key starts with" +msgstr "La clé cliente commence par" + +#: ../../mod/settings.php:684 +msgid "No name" +msgstr "Sans nom" + +#: ../../mod/settings.php:685 +msgid "Remove authorization" +msgstr "Révoquer l'autorisation" + +#: ../../mod/settings.php:697 +msgid "No Plugin settings configured" +msgstr "Pas de réglages d'extensions configurés" + +#: ../../mod/settings.php:705 +msgid "Plugin Settings" +msgstr "Extensions" + +#: ../../mod/settings.php:719 +msgid "Off" +msgstr "Éteint" + +#: ../../mod/settings.php:719 +msgid "On" +msgstr "Allumé" + +#: ../../mod/settings.php:727 +msgid "Additional Features" +msgstr "Fonctions supplémentaires" + +#: ../../mod/settings.php:741 ../../mod/settings.php:742 +#, php-format +msgid "Built-in support for %s connectivity is %s" +msgstr "Le support natif pour la connectivité %s est %s" + +#: ../../mod/settings.php:741 ../../mod/settings.php:742 +msgid "enabled" +msgstr "activé" + +#: ../../mod/settings.php:741 ../../mod/settings.php:742 +msgid "disabled" +msgstr "désactivé" + +#: ../../mod/settings.php:742 +msgid "StatusNet" +msgstr "StatusNet" + +#: ../../mod/settings.php:778 +msgid "Email access is disabled on this site." +msgstr "L'accès courriel est désactivé sur ce site." + +#: ../../mod/settings.php:790 +msgid "Email/Mailbox Setup" +msgstr "Réglages de courriel/boîte à lettre" + +#: ../../mod/settings.php:791 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "Si vous souhaitez communiquer avec vos contacts \"courriel\" (facultatif), merci de nous indiquer comment vous connecter à votre boîte." + +#: ../../mod/settings.php:792 +msgid "Last successful email check:" +msgstr "Dernière vérification réussie des courriels:" + +#: ../../mod/settings.php:794 +msgid "IMAP server name:" +msgstr "Nom du serveur IMAP:" + +#: ../../mod/settings.php:795 +msgid "IMAP port:" +msgstr "Port IMAP:" + +#: ../../mod/settings.php:796 +msgid "Security:" +msgstr "Sécurité:" + +#: ../../mod/settings.php:796 ../../mod/settings.php:801 +msgid "None" +msgstr "Aucun(e)" + +#: ../../mod/settings.php:797 +msgid "Email login name:" +msgstr "Nom de connexion:" + +#: ../../mod/settings.php:798 +msgid "Email password:" +msgstr "Mot de passe:" + +#: ../../mod/settings.php:799 +msgid "Reply-to address:" +msgstr "Adresse de réponse:" + +#: ../../mod/settings.php:800 +msgid "Send public posts to all email contacts:" +msgstr "Envoyer les publications publiques à tous les contacts courriels:" + +#: ../../mod/settings.php:801 +msgid "Action after import:" +msgstr "Action après import:" + +#: ../../mod/settings.php:801 +msgid "Mark as seen" +msgstr "Marquer comme vu" + +#: ../../mod/settings.php:801 +msgid "Move to folder" +msgstr "Déplacer vers" + +#: ../../mod/settings.php:802 +msgid "Move to folder:" +msgstr "Déplacer vers:" + +#: ../../mod/settings.php:833 ../../mod/admin.php:545 +msgid "No special theme for mobile devices" +msgstr "Pas de thème particulier pour les terminaux mobiles" + +#: ../../mod/settings.php:883 +msgid "Display Settings" +msgstr "Affichage" + +#: ../../mod/settings.php:889 ../../mod/settings.php:904 +msgid "Display Theme:" +msgstr "Thème d'affichage:" + +#: ../../mod/settings.php:890 +msgid "Mobile Theme:" +msgstr "Thème mobile:" + +#: ../../mod/settings.php:891 +msgid "Update browser every xx seconds" +msgstr "Mettre-à-jour l'affichage toutes les xx secondes" + +#: ../../mod/settings.php:891 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Délai minimum de 10 secondes, pas de maximum" + +#: ../../mod/settings.php:892 +msgid "Number of items to display per page:" +msgstr "Nombre d’éléments par page:" + +#: ../../mod/settings.php:892 ../../mod/settings.php:893 +msgid "Maximum of 100 items" +msgstr "Maximum de 100 éléments" + +#: ../../mod/settings.php:893 +msgid "Number of items to display per page when viewed from mobile device:" +msgstr "Nombre d'éléments a afficher par page pour un appareil mobile" + +#: ../../mod/settings.php:894 +msgid "Don't show emoticons" +msgstr "Ne pas afficher les émoticônes (smileys grahiques)" + +#: ../../mod/settings.php:895 +msgid "Don't show notices" +msgstr "Ne plus afficher les avis" + +#: ../../mod/settings.php:896 +msgid "Infinite scroll" +msgstr "Défilement infini" + +#: ../../mod/settings.php:897 +msgid "Automatic updates only at the top of the network page" +msgstr "" + +#: ../../mod/settings.php:974 +msgid "User Types" +msgstr "Types d'utilisateurs" + +#: ../../mod/settings.php:975 +msgid "Community Types" +msgstr "Genre de communautés" + +#: ../../mod/settings.php:976 +msgid "Normal Account Page" +msgstr "Compte normal" + +#: ../../mod/settings.php:977 +msgid "This account is a normal personal profile" +msgstr "Ce compte correspond à un profil normal, pour une seule personne (physique, généralement)" + +#: ../../mod/settings.php:980 +msgid "Soapbox Page" +msgstr "Compte \"boîte à savon\"" + +#: ../../mod/settings.php:981 +msgid "Automatically approve all connection/friend requests as read-only fans" +msgstr "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des fans 'en lecture seule'" + +#: ../../mod/settings.php:984 +msgid "Community Forum/Celebrity Account" +msgstr "Compte de communauté/célébrité" + +#: ../../mod/settings.php:985 +msgid "" +"Automatically approve all connection/friend requests as read-write fans" +msgstr "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des fans en 'lecture/écriture'" + +#: ../../mod/settings.php:988 +msgid "Automatic Friend Page" +msgstr "Compte d'\"amitié automatique\"" + +#: ../../mod/settings.php:989 +msgid "Automatically approve all connection/friend requests as friends" +msgstr "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des amis" + +#: ../../mod/settings.php:992 +msgid "Private Forum [Experimental]" +msgstr "Forum privé [expérimental]" + +#: ../../mod/settings.php:993 +msgid "Private forum - approved members only" +msgstr "Forum privé - modéré en inscription" + +#: ../../mod/settings.php:1005 +msgid "OpenID:" +msgstr "OpenID:" + +#: ../../mod/settings.php:1005 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "&nbsp;(Facultatif) Autoriser cet OpenID à se connecter à ce compte." + +#: ../../mod/settings.php:1015 +msgid "Publish your default profile in your local site directory?" +msgstr "Publier votre profil par défaut sur l'annuaire local de ce site?" + +#: ../../mod/settings.php:1015 ../../mod/settings.php:1021 +#: ../../mod/settings.php:1029 ../../mod/settings.php:1033 +#: ../../mod/settings.php:1038 ../../mod/settings.php:1044 +#: ../../mod/settings.php:1050 ../../mod/settings.php:1056 +#: ../../mod/settings.php:1086 ../../mod/settings.php:1087 +#: ../../mod/settings.php:1088 ../../mod/settings.php:1089 +#: ../../mod/settings.php:1090 ../../mod/register.php:234 +#: ../../mod/dfrn_request.php:830 ../../mod/api.php:106 +#: ../../mod/profiles.php:661 ../../mod/profiles.php:665 +msgid "No" +msgstr "Non" + +#: ../../mod/settings.php:1021 +msgid "Publish your default profile in the global social directory?" +msgstr "Publier votre profil par défaut sur l'annuaire social global?" + +#: ../../mod/settings.php:1029 +msgid "Hide your contact/friend list from viewers of your default profile?" +msgstr "Cacher votre liste de contacts/amis des visiteurs de votre profil par défaut?" + +#: ../../mod/settings.php:1033 +msgid "" +"If enabled, posting public messages to Diaspora and other networks isn't " +"possible." +msgstr "" + +#: ../../mod/settings.php:1038 +msgid "Allow friends to post to your profile page?" +msgstr "Autoriser vos amis à publier sur votre profil?" + +#: ../../mod/settings.php:1044 +msgid "Allow friends to tag your posts?" +msgstr "Autoriser vos amis à étiqueter vos publications?" + +#: ../../mod/settings.php:1050 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "Autoriser les suggestions d'amis potentiels aux nouveaux arrivants?" + +#: ../../mod/settings.php:1056 +msgid "Permit unknown people to send you private mail?" +msgstr "Autoriser les messages privés d'inconnus?" + +#: ../../mod/settings.php:1064 +msgid "Profile is not published." +msgstr "Ce profil n'est pas publié." + +#: ../../mod/settings.php:1067 ../../mod/profile_photo.php:248 +msgid "or" +msgstr "ou" + +#: ../../mod/settings.php:1072 +msgid "Your Identity Address is" +msgstr "L'adresse de votre identité est" + +#: ../../mod/settings.php:1083 +msgid "Automatically expire posts after this many days:" +msgstr "Les publications expirent automatiquement après (en jours) :" + +#: ../../mod/settings.php:1083 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "Si ce champ est vide, les publications n'expireront pas. Les publications expirées seront supprimées" + +#: ../../mod/settings.php:1084 +msgid "Advanced expiration settings" +msgstr "Réglages avancés de l'expiration" + +#: ../../mod/settings.php:1085 +msgid "Advanced Expiration" +msgstr "Expiration (avancé)" + +#: ../../mod/settings.php:1086 +msgid "Expire posts:" +msgstr "Faire expirer les publications:" + +#: ../../mod/settings.php:1087 +msgid "Expire personal notes:" +msgstr "Faire expirer les notes personnelles:" + +#: ../../mod/settings.php:1088 +msgid "Expire starred posts:" +msgstr "Faire expirer les publications marqués:" + +#: ../../mod/settings.php:1089 +msgid "Expire photos:" +msgstr "Faire expirer les photos:" + +#: ../../mod/settings.php:1090 +msgid "Only expire posts by others:" +msgstr "Faire expirer seulement les publications des autres:" + +#: ../../mod/settings.php:1116 +msgid "Account Settings" +msgstr "Compte" + +#: ../../mod/settings.php:1124 +msgid "Password Settings" +msgstr "Réglages de mot de passe" + +#: ../../mod/settings.php:1125 +msgid "New Password:" +msgstr "Nouveau mot de passe:" + +#: ../../mod/settings.php:1126 +msgid "Confirm:" +msgstr "Confirmer:" + +#: ../../mod/settings.php:1126 +msgid "Leave password fields blank unless changing" +msgstr "Laissez les champs de mot de passe vierges, sauf si vous désirez les changer" + +#: ../../mod/settings.php:1127 +msgid "Current Password:" +msgstr "Mot de passe actuel:" + +#: ../../mod/settings.php:1127 ../../mod/settings.php:1128 +msgid "Your current password to confirm the changes" +msgstr "Votre mot de passe actuel pour confirmer les modifications" + +#: ../../mod/settings.php:1128 +msgid "Password:" +msgstr "Mot de passe:" + +#: ../../mod/settings.php:1132 +msgid "Basic Settings" +msgstr "Réglages basiques" + +#: ../../mod/settings.php:1134 +msgid "Email Address:" +msgstr "Adresse courriel:" + +#: ../../mod/settings.php:1135 +msgid "Your Timezone:" +msgstr "Votre fuseau horaire:" + +#: ../../mod/settings.php:1136 +msgid "Default Post Location:" +msgstr "Emplacement de publication par défaut:" + +#: ../../mod/settings.php:1137 +msgid "Use Browser Location:" +msgstr "Utiliser la localisation géographique du navigateur:" + +#: ../../mod/settings.php:1140 +msgid "Security and Privacy Settings" +msgstr "Réglages de sécurité et vie privée" + +#: ../../mod/settings.php:1142 +msgid "Maximum Friend Requests/Day:" +msgstr "Nombre maximal de requêtes d'amitié/jour:" + +#: ../../mod/settings.php:1142 ../../mod/settings.php:1172 +msgid "(to prevent spam abuse)" +msgstr "(pour limiter l'impact du spam)" + +#: ../../mod/settings.php:1143 +msgid "Default Post Permissions" +msgstr "Permissions de publication par défaut" + +#: ../../mod/settings.php:1144 +msgid "(click to open/close)" +msgstr "(cliquer pour ouvrir/fermer)" + +#: ../../mod/settings.php:1153 ../../mod/photos.php:1146 +#: ../../mod/photos.php:1519 +msgid "Show to Groups" +msgstr "Montrer aux groupes" + +#: ../../mod/settings.php:1154 ../../mod/photos.php:1147 +#: ../../mod/photos.php:1520 +msgid "Show to Contacts" +msgstr "Montrer aux Contacts" + +#: ../../mod/settings.php:1155 +msgid "Default Private Post" +msgstr "Message privé par défaut" + +#: ../../mod/settings.php:1156 +msgid "Default Public Post" +msgstr "Message publique par défaut" + +#: ../../mod/settings.php:1160 +msgid "Default Permissions for New Posts" +msgstr "Permissions par défaut pour les nouvelles publications" + +#: ../../mod/settings.php:1172 +msgid "Maximum private messages per day from unknown people:" +msgstr "Maximum de messages privés d'inconnus par jour:" + +#: ../../mod/settings.php:1175 +msgid "Notification Settings" +msgstr "Réglages de notification" + +#: ../../mod/settings.php:1176 +msgid "By default post a status message when:" +msgstr "Par défaut, poster un statut quand:" + +#: ../../mod/settings.php:1177 +msgid "accepting a friend request" +msgstr "j'accepte un ami" + +#: ../../mod/settings.php:1178 +msgid "joining a forum/community" +msgstr "joignant un forum/une communauté" + +#: ../../mod/settings.php:1179 +msgid "making an interesting profile change" +msgstr "je fais une modification intéressante de mon profil" + +#: ../../mod/settings.php:1180 +msgid "Send a notification email when:" +msgstr "Envoyer un courriel de notification quand:" + +#: ../../mod/settings.php:1181 +msgid "You receive an introduction" +msgstr "Vous recevez une introduction" + +#: ../../mod/settings.php:1182 +msgid "Your introductions are confirmed" +msgstr "Vos introductions sont confirmées" + +#: ../../mod/settings.php:1183 +msgid "Someone writes on your profile wall" +msgstr "Quelqu'un écrit sur votre mur" + +#: ../../mod/settings.php:1184 +msgid "Someone writes a followup comment" +msgstr "Quelqu'un vous commente" + +#: ../../mod/settings.php:1185 +msgid "You receive a private message" +msgstr "Vous recevez un message privé" + +#: ../../mod/settings.php:1186 +msgid "You receive a friend suggestion" +msgstr "Vous avez reçu une suggestion d'ami" + +#: ../../mod/settings.php:1187 +msgid "You are tagged in a post" +msgstr "Vous avez été étiquetté dans une publication" + +#: ../../mod/settings.php:1188 +msgid "You are poked/prodded/etc. in a post" +msgstr "Vous avez été sollicité dans une publication" + +#: ../../mod/settings.php:1190 +msgid "Text-only notification emails" +msgstr "" + +#: ../../mod/settings.php:1192 +msgid "Send text only notification emails, without the html part" +msgstr "" + +#: ../../mod/settings.php:1194 +msgid "Advanced Account/Page Type Settings" +msgstr "Paramètres avancés de compte/page" + +#: ../../mod/settings.php:1195 +msgid "Change the behaviour of this account for special situations" +msgstr "Modifier le comportement de ce compte dans certaines situations" + +#: ../../mod/settings.php:1198 +msgid "Relocate" +msgstr "Relocaliser" + +#: ../../mod/settings.php:1199 +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 "Si vous avez migré ce profil depuis un autre serveur et que vos contacts ne reçoivent plus vos mises à jour, essayez ce bouton." + +#: ../../mod/settings.php:1200 +msgid "Resend relocate message to contacts" +msgstr "Renvoyer un message de relocalisation aux contacts." + +#: ../../mod/common.php:42 +msgid "Common Friends" +msgstr "Amis communs" + +#: ../../mod/common.php:78 +msgid "No contacts in common." +msgstr "Pas de contacts en commun." + +#: ../../mod/lockview.php:31 ../../mod/lockview.php:39 +msgid "Remote privacy information not available." +msgstr "Informations de confidentialité indisponibles." + +#: ../../mod/lockview.php:48 +msgid "Visible to:" +msgstr "Visible par:" + +#: ../../mod/contacts.php:112 +#, php-format +msgid "%d contact edited." +msgid_plural "%d contacts edited" +msgstr[0] "%d contact édité" +msgstr[1] "%d contacts édités." + +#: ../../mod/contacts.php:143 ../../mod/contacts.php:276 +msgid "Could not access contact record." +msgstr "Impossible d'accéder à l'enregistrement du contact." + +#: ../../mod/contacts.php:157 +msgid "Could not locate selected profile." +msgstr "Impossible de localiser le profil séléctionné." + +#: ../../mod/contacts.php:190 +msgid "Contact updated." +msgstr "Contact mis-à-jour." + +#: ../../mod/contacts.php:192 ../../mod/dfrn_request.php:576 +msgid "Failed to update contact record." +msgstr "Échec de mise-à-jour du contact." + +#: ../../mod/contacts.php:291 +msgid "Contact has been blocked" +msgstr "Le contact a été bloqué" + +#: ../../mod/contacts.php:291 +msgid "Contact has been unblocked" +msgstr "Le contact n'est plus bloqué" + +#: ../../mod/contacts.php:302 +msgid "Contact has been ignored" +msgstr "Le contact a été ignoré" + +#: ../../mod/contacts.php:302 +msgid "Contact has been unignored" +msgstr "Le contact n'est plus ignoré" + +#: ../../mod/contacts.php:314 +msgid "Contact has been archived" +msgstr "Contact archivé" + +#: ../../mod/contacts.php:314 +msgid "Contact has been unarchived" +msgstr "Contact désarchivé" + +#: ../../mod/contacts.php:339 ../../mod/contacts.php:727 +msgid "Do you really want to delete this contact?" +msgstr "Voulez-vous vraiment supprimer ce contact?" + +#: ../../mod/contacts.php:356 +msgid "Contact has been removed." +msgstr "Ce contact a été retiré." + +#: ../../mod/contacts.php:394 +#, php-format +msgid "You are mutual friends with %s" +msgstr "Vous êtes ami (et réciproquement) avec %s" + +#: ../../mod/contacts.php:398 +#, php-format +msgid "You are sharing with %s" +msgstr "Vous partagez avec %s" + +#: ../../mod/contacts.php:403 +#, php-format +msgid "%s is sharing with you" +msgstr "%s partage avec vous" + +#: ../../mod/contacts.php:423 +msgid "Private communications are not available for this contact." +msgstr "Les communications privées ne sont pas disponibles pour ce contact." + +#: ../../mod/contacts.php:426 ../../mod/admin.php:569 +msgid "Never" +msgstr "Jamais" + +#: ../../mod/contacts.php:430 +msgid "(Update was successful)" +msgstr "(Mise à jour effectuée avec succès)" + +#: ../../mod/contacts.php:430 +msgid "(Update was not successful)" +msgstr "(Mise à jour échouée)" + +#: ../../mod/contacts.php:432 +msgid "Suggest friends" +msgstr "Suggérer amitié/contact" + +#: ../../mod/contacts.php:436 +#, php-format +msgid "Network type: %s" +msgstr "Type de réseau %s" + +#: ../../mod/contacts.php:444 +msgid "View all contacts" +msgstr "Voir tous les contacts" + +#: ../../mod/contacts.php:449 ../../mod/contacts.php:518 +#: ../../mod/contacts.php:730 ../../mod/admin.php:1009 +msgid "Unblock" +msgstr "Débloquer" + +#: ../../mod/contacts.php:449 ../../mod/contacts.php:518 +#: ../../mod/contacts.php:730 ../../mod/admin.php:1008 +msgid "Block" +msgstr "Bloquer" + +#: ../../mod/contacts.php:452 +msgid "Toggle Blocked status" +msgstr "(dés)activer l'état \"bloqué\"" + +#: ../../mod/contacts.php:455 ../../mod/contacts.php:519 +#: ../../mod/contacts.php:731 +msgid "Unignore" +msgstr "Ne plus ignorer" + +#: ../../mod/contacts.php:458 +msgid "Toggle Ignored status" +msgstr "(dés)activer l'état \"ignoré\"" + +#: ../../mod/contacts.php:462 ../../mod/contacts.php:732 +msgid "Unarchive" +msgstr "Désarchiver" + +#: ../../mod/contacts.php:462 ../../mod/contacts.php:732 +msgid "Archive" +msgstr "Archiver" + +#: ../../mod/contacts.php:465 +msgid "Toggle Archive status" +msgstr "(dés)activer l'état \"archivé\"" + +#: ../../mod/contacts.php:468 +msgid "Repair" +msgstr "Réparer" + +#: ../../mod/contacts.php:471 +msgid "Advanced Contact Settings" +msgstr "Réglages avancés du contact" + +#: ../../mod/contacts.php:477 +msgid "Communications lost with this contact!" +msgstr "Communications perdues avec ce contact !" + +#: ../../mod/contacts.php:480 +msgid "Fetch further information for feeds" +msgstr "Chercher plus d'informations pour les flux" + +#: ../../mod/contacts.php:481 +msgid "Disabled" +msgstr "Désactivé" + +#: ../../mod/contacts.php:481 +msgid "Fetch information" +msgstr "Récupérer informations" + +#: ../../mod/contacts.php:481 +msgid "Fetch information and keywords" +msgstr "Récupérer informations" + +#: ../../mod/contacts.php:490 +msgid "Contact Editor" +msgstr "Éditeur de contact" + +#: ../../mod/contacts.php:493 +msgid "Profile Visibility" +msgstr "Visibilité du profil" + +#: ../../mod/contacts.php:494 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Merci de choisir le profil que vous souhaitez montrer à %s lorsqu'il vous rend visite de manière sécurisée." + +#: ../../mod/contacts.php:495 +msgid "Contact Information / Notes" +msgstr "Informations de contact / Notes" + +#: ../../mod/contacts.php:496 +msgid "Edit contact notes" +msgstr "Éditer les notes des contacts" + +#: ../../mod/contacts.php:501 ../../mod/contacts.php:695 +#: ../../mod/nogroup.php:40 ../../mod/viewcontacts.php:64 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Visiter le profil de %s [%s]" + +#: ../../mod/contacts.php:502 +msgid "Block/Unblock contact" +msgstr "Bloquer/débloquer ce contact" + +#: ../../mod/contacts.php:503 +msgid "Ignore contact" +msgstr "Ignorer ce contact" + +#: ../../mod/contacts.php:504 +msgid "Repair URL settings" +msgstr "Réglages de réparation des URL" + +#: ../../mod/contacts.php:505 +msgid "View conversations" +msgstr "Voir les conversations" + +#: ../../mod/contacts.php:507 +msgid "Delete contact" +msgstr "Effacer ce contact" + +#: ../../mod/contacts.php:511 +msgid "Last update:" +msgstr "Dernière mise-à-jour :" + +#: ../../mod/contacts.php:513 +msgid "Update public posts" +msgstr "Mettre à jour les publications publiques:" + +#: ../../mod/contacts.php:515 ../../mod/admin.php:1503 +msgid "Update now" +msgstr "Mettre à jour" + +#: ../../mod/contacts.php:522 +msgid "Currently blocked" +msgstr "Actuellement bloqué" + +#: ../../mod/contacts.php:523 +msgid "Currently ignored" +msgstr "Actuellement ignoré" + +#: ../../mod/contacts.php:524 +msgid "Currently archived" +msgstr "Actuellement archivé" + +#: ../../mod/contacts.php:525 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "Les réponses et \"j'aime\" à vos publications publiques peuvent être toujours visibles" + +#: ../../mod/contacts.php:526 +msgid "Notification for new posts" +msgstr "Notification des nouvelles publications" + +#: ../../mod/contacts.php:526 +msgid "Send a notification of every new post of this contact" +msgstr "Envoyer une notification de chaque nouveau message en provenance de ce contact" + +#: ../../mod/contacts.php:529 +msgid "Blacklisted keywords" +msgstr "Mots-clés sur la liste noire" + +#: ../../mod/contacts.php:529 +msgid "" +"Comma separated list of keywords that should not be converted to hashtags, " +"when \"Fetch information and keywords\" is selected" +msgstr "Liste de mots-clés separés par des virgules qui ne doivent pas être converti en mots-dièse quand « Récupérer informations et mots-clés » est sélectionné." + +#: ../../mod/contacts.php:580 +msgid "Suggestions" +msgstr "Suggestions" + +#: ../../mod/contacts.php:583 +msgid "Suggest potential friends" +msgstr "Suggérer des amis potentiels" + +#: ../../mod/contacts.php:589 +msgid "Show all contacts" +msgstr "Montrer tous les contacts" + +#: ../../mod/contacts.php:592 +msgid "Unblocked" +msgstr "Non-bloqués" + +#: ../../mod/contacts.php:595 +msgid "Only show unblocked contacts" +msgstr "Ne montrer que les contacts non-bloqués" + +#: ../../mod/contacts.php:599 +msgid "Blocked" +msgstr "Bloqués" + +#: ../../mod/contacts.php:602 +msgid "Only show blocked contacts" +msgstr "Ne montrer que les contacts bloqués" + +#: ../../mod/contacts.php:606 +msgid "Ignored" +msgstr "Ignorés" + +#: ../../mod/contacts.php:609 +msgid "Only show ignored contacts" +msgstr "Ne montrer que les contacts ignorés" + +#: ../../mod/contacts.php:613 +msgid "Archived" +msgstr "Archivés" + +#: ../../mod/contacts.php:616 +msgid "Only show archived contacts" +msgstr "Ne montrer que les contacts archivés" + +#: ../../mod/contacts.php:620 +msgid "Hidden" +msgstr "Cachés" + +#: ../../mod/contacts.php:623 +msgid "Only show hidden contacts" +msgstr "Ne montrer que les contacts masqués" + +#: ../../mod/contacts.php:671 +msgid "Mutual Friendship" +msgstr "Relation réciproque" + +#: ../../mod/contacts.php:675 +msgid "is a fan of yours" +msgstr "Vous suit" + +#: ../../mod/contacts.php:679 +msgid "you are a fan of" +msgstr "Vous le/la suivez" + +#: ../../mod/contacts.php:696 ../../mod/nogroup.php:41 +msgid "Edit contact" +msgstr "Éditer le contact" + +#: ../../mod/contacts.php:722 +msgid "Search your contacts" +msgstr "Rechercher dans vos contacts" + +#: ../../mod/contacts.php:723 ../../mod/directory.php:61 +msgid "Finding: " +msgstr "Trouvé: " + +#: ../../mod/wall_attach.php:75 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "Désolé, il semble que votre fichier est plus important que ce que la configuration de PHP autorise" + +#: ../../mod/wall_attach.php:75 +msgid "Or - did you try to upload an empty file?" +msgstr "Ou — auriez-vous essayé de télécharger un fichier vide ?" + +#: ../../mod/wall_attach.php:81 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "La taille du fichier dépasse la limite de %d" + +#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133 +msgid "File upload failed." +msgstr "Le téléversement a échoué." + +#: ../../mod/update_community.php:18 ../../mod/update_network.php:25 +#: ../../mod/update_notes.php:37 ../../mod/update_display.php:22 +#: ../../mod/update_profile.php:41 +msgid "[Embedded content - reload page to view]" +msgstr "[contenu incorporé - rechargez la page pour le voir]" + +#: ../../mod/uexport.php:77 +msgid "Export account" +msgstr "Exporter le compte" + +#: ../../mod/uexport.php:77 +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 "Exportez votre compte, vos infos et vos contacts. Vous pourrez utiliser le résultat comme sauvegarde et/ou pour le ré-importer sur un autre serveur." + +#: ../../mod/uexport.php:78 +msgid "Export all" +msgstr "Tout exporter" + +#: ../../mod/uexport.php:78 +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 "Exportez votre compte, vos infos, vos contacts et toutes vos publications (en JSON). Le fichier résultant peut être extrêmement volumineux, et sa production peut durer longtemps. Vous pourrez l'utiliser pour faire une sauvegarde complète (à part les photos)." + +#: ../../mod/register.php:90 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "Inscription réussie. Vérifiez vos emails pour la suite des instructions." + +#: ../../mod/register.php:96 +#, php-format +msgid "" +"Failed to send email message. Here your accout details:
login: %s
" +"password: %s

You can change your password after login." +msgstr "Impossible d’envoyer le courriel de confirmation. Voici vos informations de connexion:
identifiant : %s
mot de passe : %s

Vous pourrez changer votre mot de passe une fois connecté." + +#: ../../mod/register.php:105 +msgid "Your registration can not be processed." +msgstr "Votre inscription ne peut être traitée." + +#: ../../mod/register.php:148 +msgid "Your registration is pending approval by the site owner." +msgstr "Votre inscription attend une validation du propriétaire du site." + +#: ../../mod/register.php:186 ../../mod/uimport.php:50 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Le nombre d'inscriptions quotidiennes pour ce site a été dépassé. Merci de réessayer demain." + +#: ../../mod/register.php:214 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking 'Register'." +msgstr "Vous pouvez (si vous le souhaitez) remplir ce formulaire via OpenID. Fournissez votre OpenID et cliquez \"S'inscrire\"." + +#: ../../mod/register.php:215 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "Si vous n'êtes pas familier avec OpenID, laissez ce champ vide et remplissez le reste." + +#: ../../mod/register.php:216 +msgid "Your OpenID (optional): " +msgstr "Votre OpenID (facultatif): " + +#: ../../mod/register.php:230 +msgid "Include your profile in member directory?" +msgstr "Inclure votre profil dans l'annuaire des membres?" + +#: ../../mod/register.php:251 +msgid "Membership on this site is by invitation only." +msgstr "L'inscription à ce site se fait uniquement sur invitation." + +#: ../../mod/register.php:252 +msgid "Your invitation ID: " +msgstr "Votre ID d'invitation: " + +#: ../../mod/register.php:255 ../../mod/admin.php:621 +msgid "Registration" +msgstr "Inscription" + +#: ../../mod/register.php:263 +msgid "Your Full Name (e.g. Joe Smith): " +msgstr "Votre nom complet (p.ex. Michel Dupont): " + +#: ../../mod/register.php:264 +msgid "Your Email Address: " +msgstr "Votre adresse courriel: " + +#: ../../mod/register.php:265 +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be " +"'nickname@$sitename'." +msgstr "Choisissez un pseudo. Celui devra commencer par une lettre. L'adresse de votre profil en découlera sous la forme '<strong>pseudo@$sitename</strong>'." + +#: ../../mod/register.php:266 +msgid "Choose a nickname: " +msgstr "Choisir un pseudo: " + +#: ../../mod/register.php:275 ../../mod/uimport.php:64 +msgid "Import" +msgstr "Importer" + +#: ../../mod/register.php:276 +msgid "Import your profile to this friendica instance" +msgstr "Importer votre profile dans cette instance de friendica" + +#: ../../mod/oexchange.php:25 +msgid "Post successful." +msgstr "Publication réussie." + +#: ../../mod/maintenance.php:5 +msgid "System down for maintenance" +msgstr "Système indisponible pour cause de maintenance" + +#: ../../mod/profile.php:155 ../../mod/display.php:332 +msgid "Access to this profile has been restricted." +msgstr "L'accès au profil a été restreint." + +#: ../../mod/profile.php:180 +msgid "Tips for New Members" +msgstr "Conseils aux nouveaux venus" + +#: ../../mod/videos.php:115 ../../mod/dfrn_request.php:762 +#: ../../mod/viewcontacts.php:19 ../../mod/photos.php:920 +#: ../../mod/search.php:89 ../../mod/community.php:18 +#: ../../mod/display.php:212 ../../mod/directory.php:33 +msgid "Public access denied." msgstr "Accès public refusé." -#: ../../mod/crepair.php:171 -msgid "Notification Endpoint URL" -msgstr "Aucune photo sélectionnée" +#: ../../mod/videos.php:125 +msgid "No videos selected" +msgstr "Pas de vidéo sélectionné" -#: ../../mod/crepair.php:172 -msgid "Poll/Feed URL" -msgstr "Téléverser des photos" +#: ../../mod/videos.php:226 ../../mod/photos.php:1031 +msgid "Access to this item is restricted." +msgstr "Accès restreint à cet élément." -#: ../../mod/crepair.php:173 -msgid "New photo from this URL" -msgstr "Nouvelle photo depuis cette URL" +#: ../../mod/videos.php:308 ../../mod/photos.php:1808 +msgid "View Album" +msgstr "Voir l'album" -#: ../../mod/crepair.php:174 -msgid "Remote Self" -msgstr "" +#: ../../mod/videos.php:317 +msgid "Recent Videos" +msgstr "Vidéos récente" -#: ../../mod/crepair.php:176 -msgid "Mirror postings from this contact" -msgstr "" +#: ../../mod/videos.php:319 +msgid "Upload New Videos" +msgstr "Téléversé une nouvelle vidéo" -#: ../../mod/crepair.php:176 +#: ../../mod/manage.php:106 +msgid "Manage Identities and/or Pages" +msgstr "Gérer les identités et/ou les pages" + +#: ../../mod/manage.php:107 msgid "" -"Mark this contact as remote_self, this will cause friendica to repost new " -"entries from this contact." -msgstr "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "Basculez entre les différentes identités ou pages (groupes/communautés) qui se partagent votre compte ou que vous avez été autorisé à gérer." -#: ../../mod/bookmarklet.php:12 ../../boot.php:1266 ../../include/nav.php:92 -msgid "Login" -msgstr "Connexion" +#: ../../mod/manage.php:108 +msgid "Select an identity to manage: " +msgstr "Choisir une identité à gérer: " -#: ../../mod/bookmarklet.php:41 -msgid "The post was created" -msgstr "" +#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 +msgid "Item not found" +msgstr "Élément introuvable" -#: ../../mod/viewsrc.php:7 -msgid "Access denied." -msgstr "Accès refusé." +#: ../../mod/editpost.php:39 +msgid "Edit post" +msgstr "Éditer la publication" #: ../../mod/dirfind.php:26 msgid "People Search" @@ -1818,19 +4705,245 @@ msgstr "Recherche de personnes" msgid "No matches" msgstr "Aucune correspondance" -#: ../../mod/fbrowser.php:25 ../../boot.php:2126 ../../include/nav.php:78 -#: ../../view/theme/diabook/theme.php:126 -msgid "Photos" -msgstr "Photos" +#: ../../mod/regmod.php:55 +msgid "Account approved." +msgstr "Inscription validée." + +#: ../../mod/regmod.php:92 +#, php-format +msgid "Registration revoked for %s" +msgstr "Inscription révoquée pour %s" + +#: ../../mod/regmod.php:104 +msgid "Please login." +msgstr "Merci de vous connecter." + +#: ../../mod/dfrn_request.php:95 +msgid "This introduction has already been accepted." +msgstr "Cette introduction a déjà été acceptée." + +#: ../../mod/dfrn_request.php:120 ../../mod/dfrn_request.php:518 +msgid "Profile location is not valid or does not contain profile information." +msgstr "L'emplacement du profil est invalide ou ne contient pas de profil valide." + +#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:523 +msgid "Warning: profile location has no identifiable owner name." +msgstr "Attention: l'emplacement du profil n'a pas de nom identifiable." + +#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:525 +msgid "Warning: profile location has no profile photo." +msgstr "Attention: l'emplacement du profil n'a pas de photo de profil." + +#: ../../mod/dfrn_request.php:130 ../../mod/dfrn_request.php:528 +#, 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 paramètre requis n'a pas été trouvé à l'endroit indiqué" +msgstr[1] "%d paramètres requis n'ont pas été trouvés à l'endroit indiqué" + +#: ../../mod/dfrn_request.php:172 +msgid "Introduction complete." +msgstr "Phase d'introduction achevée." + +#: ../../mod/dfrn_request.php:214 +msgid "Unrecoverable protocol error." +msgstr "Erreur de protocole non-récupérable." + +#: ../../mod/dfrn_request.php:242 +msgid "Profile unavailable." +msgstr "Profil indisponible." + +#: ../../mod/dfrn_request.php:267 +#, php-format +msgid "%s has received too many connection requests today." +msgstr "%s a reçu trop de demandes d'introduction aujourd'hui." + +#: ../../mod/dfrn_request.php:268 +msgid "Spam protection measures have been invoked." +msgstr "Des mesures de protection contre le spam ont été déclenchées." + +#: ../../mod/dfrn_request.php:269 +msgid "Friends are advised to please try again in 24 hours." +msgstr "Les relations sont encouragées à attendre 24 heures pour recommencer." + +#: ../../mod/dfrn_request.php:331 +msgid "Invalid locator" +msgstr "Localisateur invalide" + +#: ../../mod/dfrn_request.php:340 +msgid "Invalid email address." +msgstr "Adresse courriel invalide." + +#: ../../mod/dfrn_request.php:367 +msgid "This account has not been configured for email. Request failed." +msgstr "Ce compte n'a pas été configuré pour les échanges de courriel. Requête avortée." + +#: ../../mod/dfrn_request.php:463 +msgid "Unable to resolve your name at the provided location." +msgstr "Impossible de résoudre votre nom à l'emplacement fourni." + +#: ../../mod/dfrn_request.php:476 +msgid "You have already introduced yourself here." +msgstr "Vous vous êtes déjà présenté ici." + +#: ../../mod/dfrn_request.php:480 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "Il semblerait que vous soyez déjà ami avec %s." + +#: ../../mod/dfrn_request.php:501 +msgid "Invalid profile URL." +msgstr "URL de profil invalide." + +#: ../../mod/dfrn_request.php:597 +msgid "Your introduction has been sent." +msgstr "Votre introduction a été envoyée." + +#: ../../mod/dfrn_request.php:650 +msgid "Please login to confirm introduction." +msgstr "Connectez-vous pour confirmer l'introduction." + +#: ../../mod/dfrn_request.php:660 +msgid "" +"Incorrect identity currently logged in. Please login to " +"this profile." +msgstr "Identité incorrecte actuellement connectée. Merci de vous connecter à ce profil." + +#: ../../mod/dfrn_request.php:671 +msgid "Hide this contact" +msgstr "Cacher ce contact" + +#: ../../mod/dfrn_request.php:674 +#, php-format +msgid "Welcome home %s." +msgstr "Bienvenue chez vous, %s." + +#: ../../mod/dfrn_request.php:675 +#, php-format +msgid "Please confirm your introduction/connection request to %s." +msgstr "Merci de confirmer votre demande d'introduction auprès de %s." + +#: ../../mod/dfrn_request.php:804 +msgid "" +"Please enter your 'Identity Address' from one of the following supported " +"communications networks:" +msgstr "Merci d'entrer votre \"adresse d'identité\" de l'un des réseaux de communication suivant:" + +#: ../../mod/dfrn_request.php:824 +msgid "" +"If you are not yet a member of the free social web, follow this link to find a public" +" Friendica site and join us today." +msgstr "Si vous n'êtes pas encore membre du web social libre, suivez ce lien pour trouver un site Friendica ouvert au public et nous rejoindre dès aujourd'hui." + +#: ../../mod/dfrn_request.php:827 +msgid "Friend/Connection Request" +msgstr "Requête de relation/amitié" + +#: ../../mod/dfrn_request.php:828 +msgid "" +"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " +"testuser@identi.ca" +msgstr "Exemples : jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" + +#: ../../mod/dfrn_request.php:829 +msgid "Please answer the following:" +msgstr "Merci de répondre à ce qui suit:" + +#: ../../mod/dfrn_request.php:830 +#, php-format +msgid "Does %s know you?" +msgstr "Est-ce que %s vous connaît?" + +#: ../../mod/dfrn_request.php:834 +msgid "Add a personal note:" +msgstr "Ajouter une note personnelle:" + +#: ../../mod/dfrn_request.php:837 +msgid "StatusNet/Federated Social Web" +msgstr "StatusNet/Federated Social Web" + +#: ../../mod/dfrn_request.php:839 +#, php-format +msgid "" +" - please do not use this form. Instead, enter %s into your Diaspora search" +" bar." +msgstr " - merci de ne pas utiliser ce formulaire. Entrez plutôt %s dans votre barre de recherche Diaspora." + +#: ../../mod/dfrn_request.php:840 +msgid "Your Identity Address:" +msgstr "Votre adresse d'identité:" + +#: ../../mod/dfrn_request.php:843 +msgid "Submit Request" +msgstr "Envoyer la requête" #: ../../mod/fbrowser.php:113 msgid "Files" msgstr "Fichiers" +#: ../../mod/api.php:76 ../../mod/api.php:102 +msgid "Authorize application connection" +msgstr "Autoriser l'application à se connecter" + +#: ../../mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "Retournez à votre application et saisissez ce Code de Sécurité : " + +#: ../../mod/api.php:89 +msgid "Please login to continue." +msgstr "Merci de vous connecter pour continuer." + +#: ../../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 "Voulez-vous autoriser cette application à accéder à vos publications et contacts, et/ou à créer des billets à votre place?" + +#: ../../mod/suggest.php:27 +msgid "Do you really want to delete this suggestion?" +msgstr "Voulez-vous vraiment supprimer cette suggestion ?" + +#: ../../mod/suggest.php:74 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Aucune suggestion. Si ce site est récent, merci de recommencer dans 24h." + +#: ../../mod/suggest.php:92 +msgid "Ignore/Hide" +msgstr "Ignorer/cacher" + #: ../../mod/nogroup.php:59 msgid "Contacts who are not members of a group" msgstr "Contacts qui n’appartiennent à aucun groupe" +#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 +#: ../../mod/crepair.php:133 ../../mod/dfrn_confirm.php:120 +msgid "Contact not found." +msgstr "Contact introuvable." + +#: ../../mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "Suggestion d'amitié/contact envoyée." + +#: ../../mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Suggérer des amis/contacts" + +#: ../../mod/fsuggest.php:99 +#, php-format +msgid "Suggest a friend for %s" +msgstr "Suggérer un ami/contact pour %s" + +#: ../../mod/share.php:44 +msgid "link" +msgstr "lien" + +#: ../../mod/viewcontacts.php:41 +msgid "No contacts." +msgstr "Aucun contact." + #: ../../mod/admin.php:57 msgid "Theme settings updated." msgstr "Réglages du thème sauvés." @@ -1843,11 +4956,6 @@ msgstr "Site" msgid "Users" msgstr "Utilisateurs" -#: ../../mod/admin.php:106 ../../mod/admin.php:1102 ../../mod/admin.php:1155 -#: ../../mod/settings.php:57 -msgid "Plugins" -msgstr "Extensions" - #: ../../mod/admin.php:107 ../../mod/admin.php:1323 ../../mod/admin.php:1357 msgid "Themes" msgstr "Thèmes" @@ -1868,10 +4976,6 @@ msgstr "" msgid "check webfinger" msgstr "" -#: ../../mod/admin.php:130 ../../include/nav.php:184 -msgid "Admin" -msgstr "Admin" - #: ../../mod/admin.php:131 msgid "Plugin Features" msgstr "Propriétés des extensions" @@ -1946,10 +5050,6 @@ msgstr "Impossible d'analyser l'URL de base. Doit contenir au moins ://< msgid "Site settings updated." msgstr "Réglages du site mis-à-jour." -#: ../../mod/admin.php:545 ../../mod/settings.php:828 -msgid "No special theme for mobile devices" -msgstr "Pas de thème particulier pour les terminaux mobiles" - #: ../../mod/admin.php:562 msgid "No community page" msgstr "" @@ -1966,22 +5066,6 @@ msgstr "" msgid "At post arrival" msgstr "A l'arrivé d'une publication" -#: ../../mod/admin.php:571 ../../include/contact_selectors.php:56 -msgid "Frequently" -msgstr "Fréquemment" - -#: ../../mod/admin.php:572 ../../include/contact_selectors.php:57 -msgid "Hourly" -msgstr "Toutes les heures" - -#: ../../mod/admin.php:573 ../../include/contact_selectors.php:58 -msgid "Twice daily" -msgstr "Deux fois par jour" - -#: ../../mod/admin.php:574 ../../include/contact_selectors.php:59 -msgid "Daily" -msgstr "Chaque jour" - #: ../../mod/admin.php:579 msgid "Multi user instance" msgstr "Instance multi-utilisateurs" @@ -2010,17 +5094,6 @@ msgstr "Forcer tous les liens à utiliser SSL" msgid "Self-signed certificate, use SSL for local links only (discouraged)" msgstr "Certificat auto-signé, n'utiliser SSL que pour les liens locaux (non recommandé)" -#: ../../mod/admin.php:620 ../../mod/admin.php:1156 ../../mod/admin.php:1358 -#: ../../mod/admin.php:1445 ../../mod/settings.php:614 -#: ../../mod/settings.php:724 ../../mod/settings.php:798 -#: ../../mod/settings.php:880 ../../mod/settings.php:1113 -msgid "Save Settings" -msgstr "Sauvegarder les paramétres" - -#: ../../mod/admin.php:621 ../../mod/register.php:255 -msgid "Registration" -msgstr "Inscription" - #: ../../mod/admin.php:622 msgid "File upload" msgstr "Téléversement de fichier" @@ -2655,11 +5728,6 @@ msgid "" "\t\t\tThank you and welcome to %4$s." msgstr "\n\t\t\tVoici vos informations de connexion :\n\n\t\t\tAdresse :\t%1$s\n\t\t\tIdentifiant :\t\t%2$s\n\t\t\tMot de passe :\t\t%3$s\n\n\t\t\tVous pourrez changer votre mot de passe dans les paramètres de votre compte une fois connecté.\n\n\t\t\tProfitez-en pour prendre le temps de passer en revue les autres paramètres de votre compte.\n\n\t\t\tVous pourrez aussi ajouter quelques informations élémentaires à votre profil par défaut (sur la page « Profils ») pour permettre à d’autres personnes de vous trouver facilement.\n\n\t\t\tNous recommandons de préciser votre nom complet, d’ajouter une photo et quelques mots-clefs (c’est très utile pour découvrir de nouveaux amis), et peut-être aussi d’indiquer au moins le pays dans lequel vous vivez, à défaut d’être plus précis.\n\n\t\t\tNous respectons pleinement votre droit à une vie privée, et vous n’avez aucune obligation de donner toutes ces informations. Mais si vous êtes nouveau et ne connaissez encore personne ici, cela peut vous aider à vous faire de nouveaux amis intéressants.\n\n\t\t\tMerci et bienvenu sur %4$s." -#: ../../mod/admin.php:838 ../../include/user.php:413 -#, php-format -msgid "Registration details for %s" -msgstr "Détails d'inscription pour %s" - #: ../../mod/admin.php:850 #, php-format msgid "%s user blocked/unblocked" @@ -2709,12 +5777,6 @@ msgstr "Utilisateur en attente de suppression définitive" msgid "Request date" msgstr "Date de la demande" -#: ../../mod/admin.php:1003 ../../mod/admin.php:1015 ../../mod/admin.php:1016 -#: ../../mod/admin.php:1031 ../../include/contact_selectors.php:79 -#: ../../include/contact_selectors.php:86 -msgid "Email" -msgstr "Courriel" - #: ../../mod/admin.php:1004 msgid "No registrations." msgstr "Pas d'inscriptions." @@ -2751,10 +5813,6 @@ msgstr "Dernier élément" msgid "Deleted since" msgstr "Supprimé depuis" -#: ../../mod/admin.php:1016 ../../mod/settings.php:36 -msgid "Account" -msgstr "Compte" - #: ../../mod/admin.php:1018 msgid "" "Selected users will be deleted!\\n\\nEverything these users had posted on " @@ -2875,6 +5933,35 @@ msgstr "Utilisateur FTP" msgid "FTP Password" msgstr "Mot de passe FTP" +#: ../../mod/wall_upload.php:122 ../../mod/profile_photo.php:144 +#, php-format +msgid "Image exceeds size limit of %d" +msgstr "L'image dépasse la taille limite de %d" + +#: ../../mod/wall_upload.php:144 ../../mod/photos.php:807 +#: ../../mod/profile_photo.php:153 +msgid "Unable to process image." +msgstr "Impossible de traiter l'image." + +#: ../../mod/wall_upload.php:172 ../../mod/photos.php:834 +#: ../../mod/profile_photo.php:301 +msgid "Image upload failed." +msgstr "Le téléversement de l'image a échoué." + +#: ../../mod/home.php:35 +#, php-format +msgid "Welcome to %s" +msgstr "Bienvenue sur %s" + +#: ../../mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "Erreur de protocole OpenID. Pas d'ID en retour." + +#: ../../mod/openid.php:53 +msgid "" +"Account not found and OpenID registration is not permitted on this site." +msgstr "Compte introuvable, et l'inscription OpenID n'est pas autorisée sur ce site." + #: ../../mod/network.php:142 msgid "Search Results For:" msgstr "Résultats pour:" @@ -2883,15 +5970,6 @@ msgstr "Résultats pour:" msgid "Remove term" msgstr "Retirer le terme" -#: ../../mod/network.php:194 ../../mod/search.php:30 -#: ../../include/features.php:42 -msgid "Saved Searches" -msgstr "Recherches" - -#: ../../mod/network.php:195 ../../include/group.php:275 -msgid "add" -msgstr "ajouter" - #: ../../mod/network.php:356 msgid "Commented Order" msgstr "Tri par commentaires" @@ -2972,14 +6050,575 @@ msgstr "Les messages privés envoyés à ce contact s'exposent à une diffusion msgid "Invalid contact." msgstr "Contact invalide." -#: ../../mod/allfriends.php:34 -#, php-format -msgid "Friends of %s" -msgstr "Amis de %s" +#: ../../mod/filer.php:30 +msgid "- select -" +msgstr "- choisir -" -#: ../../mod/allfriends.php:40 -msgid "No friends to display." -msgstr "Pas d'amis à afficher." +#: ../../mod/friendica.php:59 +msgid "This is Friendica, version" +msgstr "Motorisé par Friendica version" + +#: ../../mod/friendica.php:60 +msgid "running at web location" +msgstr "hébergé sur" + +#: ../../mod/friendica.php:62 +msgid "" +"Please visit Friendica.com to learn " +"more about the Friendica project." +msgstr "Merci de vous rendre sur Friendica.com si vous souhaitez en savoir plus sur le projet Friendica." + +#: ../../mod/friendica.php:64 +msgid "Bug reports and issues: please visit" +msgstr "Pour les rapports de bugs: rendez vous sur" + +#: ../../mod/friendica.php:65 +msgid "" +"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " +"dot com" +msgstr "Suggestions, remerciements, donations, etc. - écrivez à \"Info\" arob. Friendica - point com" + +#: ../../mod/friendica.php:79 +msgid "Installed plugins/addons/apps:" +msgstr "Extensions/greffons/applications installées:" + +#: ../../mod/friendica.php:92 +msgid "No installed plugins/addons/apps" +msgstr "Extensions/greffons/applications non installées:" + +#: ../../mod/apps.php:11 +msgid "Applications" +msgstr "Applications" + +#: ../../mod/apps.php:14 +msgid "No installed applications." +msgstr "Pas d'application installée." + +#: ../../mod/photos.php:67 ../../mod/photos.php:1262 ../../mod/photos.php:1819 +msgid "Upload New Photos" +msgstr "Téléverser de nouvelles photos" + +#: ../../mod/photos.php:144 +msgid "Contact information unavailable" +msgstr "Informations de contact indisponibles" + +#: ../../mod/photos.php:165 +msgid "Album not found." +msgstr "Album introuvable." + +#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204 +msgid "Delete Album" +msgstr "Effacer l'album" + +#: ../../mod/photos.php:198 +msgid "Do you really want to delete this photo album and all its photos?" +msgstr "Voulez-vous vraiment supprimer cet album photo et toutes ses photos ?" + +#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1515 +msgid "Delete Photo" +msgstr "Effacer la photo" + +#: ../../mod/photos.php:287 +msgid "Do you really want to delete this photo?" +msgstr "Voulez-vous vraiment supprimer cette photo ?" + +#: ../../mod/photos.php:662 +#, php-format +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "%1$s a été étiqueté dans %2$s par %3$s" + +#: ../../mod/photos.php:662 +msgid "a photo" +msgstr "une photo" + +#: ../../mod/photos.php:767 +msgid "Image exceeds size limit of " +msgstr "L'image dépasse la taille maximale de " + +#: ../../mod/photos.php:775 +msgid "Image file is empty." +msgstr "Fichier image vide." + +#: ../../mod/photos.php:930 +msgid "No photos selected" +msgstr "Aucune photo sélectionnée" + +#: ../../mod/photos.php:1094 +#, php-format +msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." +msgstr "Vous avez utilisé %1$.2f Mo sur %2$.2f d'espace de stockage pour les photos." + +#: ../../mod/photos.php:1129 +msgid "Upload Photos" +msgstr "Téléverser des photos" + +#: ../../mod/photos.php:1133 ../../mod/photos.php:1199 +msgid "New album name: " +msgstr "Nom du nouvel album: " + +#: ../../mod/photos.php:1134 +msgid "or existing album name: " +msgstr "ou nom d'un album existant: " + +#: ../../mod/photos.php:1135 +msgid "Do not show a status post for this upload" +msgstr "Ne pas publier de notice de statut pour cet envoi" + +#: ../../mod/photos.php:1137 ../../mod/photos.php:1510 +msgid "Permissions" +msgstr "Permissions" + +#: ../../mod/photos.php:1148 +msgid "Private Photo" +msgstr "Photo privée" + +#: ../../mod/photos.php:1149 +msgid "Public Photo" +msgstr "Photo publique" + +#: ../../mod/photos.php:1212 +msgid "Edit Album" +msgstr "Éditer l'album" + +#: ../../mod/photos.php:1218 +msgid "Show Newest First" +msgstr "Plus récent d'abord" + +#: ../../mod/photos.php:1220 +msgid "Show Oldest First" +msgstr "Plus ancien d'abord" + +#: ../../mod/photos.php:1248 ../../mod/photos.php:1802 +msgid "View Photo" +msgstr "Voir la photo" + +#: ../../mod/photos.php:1294 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Interdit. L'accès à cet élément peut avoir été restreint." + +#: ../../mod/photos.php:1296 +msgid "Photo not available" +msgstr "Photo indisponible" + +#: ../../mod/photos.php:1352 +msgid "View photo" +msgstr "Voir photo" + +#: ../../mod/photos.php:1352 +msgid "Edit photo" +msgstr "Éditer la photo" + +#: ../../mod/photos.php:1353 +msgid "Use as profile photo" +msgstr "Utiliser comme photo de profil" + +#: ../../mod/photos.php:1378 +msgid "View Full Size" +msgstr "Voir en taille réelle" + +#: ../../mod/photos.php:1457 +msgid "Tags: " +msgstr "Étiquettes:" + +#: ../../mod/photos.php:1460 +msgid "[Remove any tag]" +msgstr "[Retirer toutes les étiquettes]" + +#: ../../mod/photos.php:1500 +msgid "Rotate CW (right)" +msgstr "Tourner dans le sens des aiguilles d'une montre (vers la droite)" + +#: ../../mod/photos.php:1501 +msgid "Rotate CCW (left)" +msgstr "Tourner dans le sens contraire des aiguilles d'une montre (vers la gauche)" + +#: ../../mod/photos.php:1503 +msgid "New album name" +msgstr "Nom du nouvel album" + +#: ../../mod/photos.php:1506 +msgid "Caption" +msgstr "Titre" + +#: ../../mod/photos.php:1508 +msgid "Add a Tag" +msgstr "Ajouter une étiquette" + +#: ../../mod/photos.php:1512 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Exemples: @bob, @Barbara_Jensen, @jim@example.com, #Californie, #vacances" + +#: ../../mod/photos.php:1521 +msgid "Private photo" +msgstr "Photo privée" + +#: ../../mod/photos.php:1522 +msgid "Public photo" +msgstr "Photo publique" + +#: ../../mod/photos.php:1817 +msgid "Recent Photos" +msgstr "Photos récentes" + +#: ../../mod/bookmarklet.php:41 +msgid "The post was created" +msgstr "" + +#: ../../mod/follow.php:27 +msgid "Contact added" +msgstr "Contact ajouté" + +#: ../../mod/uimport.php:66 +msgid "Move account" +msgstr "Migrer le compte" + +#: ../../mod/uimport.php:67 +msgid "You can import an account from another Friendica server." +msgstr "Vous pouvez importer un compte d'un autre serveur Friendica." + +#: ../../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 "Vous devez exporter votre compte à partir de l'ancien serveur et le téléverser ici. Nous recréerons votre ancien compte ici avec tous vos contacts. Nous tenterons également d'informer vos amis que vous avez déménagé ici." + +#: ../../mod/uimport.php:69 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (statusnet/identi.ca) or from Diaspora" +msgstr "Cette fonctionnalité est expérimentale. Nous ne pouvons importer les contacts des réseaux OStatus (statusnet/identi.ca) ou Diaspora" + +#: ../../mod/uimport.php:70 +msgid "Account file" +msgstr "Fichier du compte" + +#: ../../mod/uimport.php:70 +msgid "" +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" +msgstr "Pour exporter votre compte, allez dans \"Paramètres> Exporter vos données personnelles\" et sélectionnez \"exportation de compte\"" + +#: ../../mod/invite.php:27 +msgid "Total invitation limit exceeded." +msgstr "La limite d'invitation totale est éxédée." + +#: ../../mod/invite.php:49 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : Adresse de courriel invalide." + +#: ../../mod/invite.php:73 +msgid "Please join us on Friendica" +msgstr "Rejoignez-nous sur Friendica" + +#: ../../mod/invite.php:84 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Limite d'invitation exédée. Veuillez contacter l'administrateur de votre site." + +#: ../../mod/invite.php:89 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : L'envoi du message a échoué." + +#: ../../mod/invite.php:93 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d message envoyé." +msgstr[1] "%d messages envoyés." + +#: ../../mod/invite.php:112 +msgid "You have no more invitations available" +msgstr "Vous n'avez plus d'invitations disponibles" + +#: ../../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 "Visitez %s pour une liste des sites publics que vous pouvez rejoindre. Les membres de Friendica appartenant à d'autres sites peuvent s'interconnecter, ainsi qu'avec les membres de plusieurs autres réseaux sociaux." + +#: ../../mod/invite.php:122 +#, php-format +msgid "" +"To accept this invitation, please visit and register at %s or any other " +"public Friendica website." +msgstr "Pour accepter cette invitation, merci d'aller vous inscrire sur %s, ou n'importe quel autre site Friendica public." + +#: ../../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 "Les sites Friendica sont tous interconnectés pour créer un immense réseau social respectueux de la vie privée, possédé et contrôllé par ses membres. Ils peuvent également interagir avec plusieurs réseaux sociaux traditionnels. Voir %s pour une liste d'autres sites Friendica que vous pourriez rejoindre." + +#: ../../mod/invite.php:126 +msgid "" +"Our apologies. This system is not currently configured to connect with other" +" public sites or invite members." +msgstr "Toutes nos excuses. Ce système n'est pas configuré pour se connecter à d'autres sites publics ou inviter de nouveaux membres." + +#: ../../mod/invite.php:132 +msgid "Send invitations" +msgstr "Envoyer des invitations" + +#: ../../mod/invite.php:133 +msgid "Enter email addresses, one per line:" +msgstr "Entrez les adresses email, une par ligne:" + +#: ../../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 "Vous êtes cordialement invité à me rejoindre sur Friendica, et nous aider ainsi à créer un meilleur web social." + +#: ../../mod/invite.php:137 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "Vous devrez fournir ce code d'invitation: $invite_code" + +#: ../../mod/invite.php:137 +msgid "" +"Once you have registered, please connect with me via my profile page at:" +msgstr "Une fois inscrit, connectez-vous à la page de mon profil sur:" + +#: ../../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 "Pour plus d'information sur le projet Friendica, et pourquoi nous croyons qu'il est important, merci de visiter http://friendica.com" + +#: ../../mod/viewsrc.php:7 +msgid "Access denied." +msgstr "Accès refusé." + +#: ../../mod/lostpass.php:19 +msgid "No valid account found." +msgstr "Impossible de trouver un compte valide." + +#: ../../mod/lostpass.php:35 +msgid "Password reset request issued. Check your email." +msgstr "Réinitialisation du mot de passe en cours. Vérifiez votre courriel." + +#: ../../mod/lostpass.php:42 +#, php-format +msgid "" +"\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." +msgstr "\n\t\tChère/Cher %1$s,\n\t\t\tNous avons reçu une demande de ré-initialisation du mot de passe de votre compte sur \"%2$s\". Pour confirmer cette demande, veuillez cliquer sur le lien de vérification ci-dessous ou le coller dans la barre d’adresse de votre navigateur.\n\n\t\tSi vous n’êtes PAS à l’origine de cette demande, NE suivez PAS le lien—ignorez et/ou supprimez ce message.\n\n\t\tVotre mot de passe ne sera pas modifié si nous n’avons pas de confirmation que la demande émane de vous." + +#: ../../mod/lostpass.php:53 +#, php-format +msgid "" +"\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" +msgstr "\n\t\tSuivez ce lien pour confirmer votre identité :\n\n\t\t%1$s\n\n\t\tVous recevrez alors a message contenant votre nouveau mot de passe.\n\t\tVous pourrez changer ce mot de passe depuis les paramètres de votre compte une fois connecté.\n\n\t\tInformations de connexion :\n\n\t\tAdresse :\t%2$s\n\t\tIdentifiant :\t%3$s" + +#: ../../mod/lostpass.php:72 +#, php-format +msgid "Password reset requested at %s" +msgstr "Requête de réinitialisation de mot de passe à %s" + +#: ../../mod/lostpass.php:92 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "Impossible d'honorer cette demande. (Vous l'avez peut-être déjà utilisée par le passé.) La réinitialisation a échoué." + +#: ../../mod/lostpass.php:110 +msgid "Your password has been reset as requested." +msgstr "Votre mot de passe a bien été réinitialisé." + +#: ../../mod/lostpass.php:111 +msgid "Your new password is" +msgstr "Votre nouveau mot de passe est " + +#: ../../mod/lostpass.php:112 +msgid "Save or copy your new password - and then" +msgstr "Sauvez ou copiez ce nouveau mot de passe - puis" + +#: ../../mod/lostpass.php:113 +msgid "click here to login" +msgstr "cliquez ici pour vous connecter" + +#: ../../mod/lostpass.php:114 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Votre mot de passe peut être changé depuis la page <em>Réglages</em>, une fois que vous serez connecté." + +#: ../../mod/lostpass.php:125 +#, php-format +msgid "" +"\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" +msgstr "\n\t\t\t\tChère/Cher %1$s,\n\t\t\t\t\tVotre mot de passe a été changé ainsi que vous l’avez demandé. Veuillez conserver cette informations dans vos archives (ou changer immédiatement votre mot de passe pour un autre dont vous vous souviendrez).\n\t\t\t" + +#: ../../mod/lostpass.php:131 +#, php-format +msgid "" +"\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" +msgstr "\n\t\t\t\tVoici vos informations de connexion :\n\n\t\t\t\tAdresse :\t%1$s\n\t\t\t\tIdentifiant :\t%2$s\n\t\t\t\tMot de passe :\t%3$s\n\n\t\t\t\tVous pourrez changer votre mot de passe dans les paramètres de votre compte une fois connecté.\n\t\t\t" + +#: ../../mod/lostpass.php:147 +#, php-format +msgid "Your password has been changed at %s" +msgstr "Votre mot de passe a été modifié à %s" + +#: ../../mod/lostpass.php:159 +msgid "Forgot your Password?" +msgstr "Mot de passe oublié?" + +#: ../../mod/lostpass.php:160 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Entrez votre adresse de courriel et validez pour réinitialiser votre mot de passe. Vous recevrez la suite des instructions par courriel." + +#: ../../mod/lostpass.php:161 +msgid "Nickname or Email: " +msgstr "Pseudo ou Courriel: " + +#: ../../mod/lostpass.php:162 +msgid "Reset" +msgstr "Réinitialiser" + +#: ../../mod/babel.php:17 +msgid "Source (bbcode) text:" +msgstr "Texte source (bbcode) :" + +#: ../../mod/babel.php:23 +msgid "Source (Diaspora) text to convert to BBcode:" +msgstr "Texte source (Diaspora) à convertir en BBcode :" + +#: ../../mod/babel.php:31 +msgid "Source input: " +msgstr "Source input: " + +#: ../../mod/babel.php:35 +msgid "bb2html (raw HTML): " +msgstr "bb2html (HTML brut)" + +#: ../../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 "Texte source (format Diaspora) :" + +#: ../../mod/babel.php:74 +msgid "diaspora2bb: " +msgstr "diaspora2bb :" + +#: ../../mod/tagrm.php:41 +msgid "Tag removed" +msgstr "Étiquette supprimée" + +#: ../../mod/tagrm.php:79 +msgid "Remove Item Tag" +msgstr "Enlever l'étiquette de l'élément" + +#: ../../mod/tagrm.php:81 +msgid "Select a tag to remove: " +msgstr "Sélectionner une étiquette à supprimer: " + +#: ../../mod/removeme.php:46 ../../mod/removeme.php:49 +msgid "Remove My Account" +msgstr "Supprimer mon compte" + +#: ../../mod/removeme.php:47 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "Ceci supprimera totalement votre compte. Cette opération est irréversible." + +#: ../../mod/removeme.php:48 +msgid "Please enter your password for verification:" +msgstr "Merci de saisir votre mot de passe pour vérification:" + +#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 +msgid "Invalid profile identifier." +msgstr "Identifiant de profil invalide." + +#: ../../mod/profperm.php:101 +msgid "Profile Visibility Editor" +msgstr "Éditer la visibilité du profil" + +#: ../../mod/profperm.php:114 +msgid "Visible To" +msgstr "Visible par" + +#: ../../mod/profperm.php:130 +msgid "All Contacts (with secure profile access)" +msgstr "Tous les contacts (ayant un accès sécurisé)" + +#: ../../mod/match.php:12 +msgid "Profile Match" +msgstr "Correpondance de profils" + +#: ../../mod/match.php:20 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Aucun mot-clé en correspondance. Merci d'ajouter des mots-clés à votre profil par défaut." + +#: ../../mod/match.php:57 +msgid "is interested in:" +msgstr "s'intéresse à:" #: ../../mod/events.php:66 msgid "Event title and start time are required." @@ -2993,16 +6632,6 @@ msgstr "l, F j" msgid "Edit event" msgstr "Editer l'événement" -#: ../../mod/events.php:335 ../../include/text.php:1647 -#: ../../include/text.php:1657 -msgid "link to source" -msgstr "lien original" - -#: ../../mod/events.php:370 ../../boot.php:2143 ../../include/nav.php:80 -#: ../../view/theme/diabook/theme.php:127 -msgid "Events" -msgstr "Événements" - #: ../../mod/events.php:371 msgid "Create New Event" msgstr "Créer un nouvel événement" @@ -3052,11 +6681,6 @@ msgstr "Ajuster à la zone horaire du visiteur" msgid "Description:" msgstr "Description:" -#: ../../mod/events.php:471 ../../mod/directory.php:136 ../../boot.php:1648 -#: ../../include/bb2diaspora.php:170 ../../include/event.php:40 -msgid "Location:" -msgstr "Localisation:" - #: ../../mod/events.php:473 msgid "Title:" msgstr "Titre :" @@ -3065,184 +6689,436 @@ msgstr "Titre :" msgid "Share this event" msgstr "Partager cet événement" -#: ../../mod/content.php:437 ../../mod/content.php:740 -#: ../../mod/photos.php:1653 ../../object/Item.php:129 -#: ../../include/conversation.php:613 -msgid "Select" -msgstr "Sélectionner" +#: ../../mod/ping.php:240 +msgid "{0} wants to be your friend" +msgstr "{0} souhaite être votre ami(e)" -#: ../../mod/content.php:471 ../../mod/content.php:852 -#: ../../mod/content.php:853 ../../object/Item.php:326 -#: ../../object/Item.php:327 ../../include/conversation.php:654 +#: ../../mod/ping.php:245 +msgid "{0} sent you a message" +msgstr "{0} vous a envoyé un message" + +#: ../../mod/ping.php:250 +msgid "{0} requested registration" +msgstr "{0} a demandé à s'inscrire" + +#: ../../mod/ping.php:256 #, php-format -msgid "View %s's profile @ %s" -msgstr "Voir le profil de %s @ %s" +msgid "{0} commented %s's post" +msgstr "{0} a commenté la publication de %s" -#: ../../mod/content.php:481 ../../mod/content.php:864 -#: ../../object/Item.php:340 ../../include/conversation.php:674 +#: ../../mod/ping.php:261 #, php-format -msgid "%s from %s" -msgstr "%s de %s" +msgid "{0} liked %s's post" +msgstr "{0} a aimé la publication de %s" -#: ../../mod/content.php:497 ../../include/conversation.php:690 -msgid "View in context" -msgstr "Voir dans le contexte" - -#: ../../mod/content.php:603 ../../object/Item.php:387 +#: ../../mod/ping.php:266 #, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d commentaire" -msgstr[1] "%d commentaires" +msgid "{0} disliked %s's post" +msgstr "{0} n'a pas aimé la publication de %s" -#: ../../mod/content.php:605 ../../object/Item.php:389 -#: ../../object/Item.php:402 ../../include/text.php:1972 -msgid "comment" -msgid_plural "comments" -msgstr[0] "" -msgstr[1] "commentaire" +#: ../../mod/ping.php:271 +#, php-format +msgid "{0} is now friends with %s" +msgstr "{0} est désormais ami(e) avec %s" -#: ../../mod/content.php:606 ../../boot.php:751 ../../object/Item.php:390 -#: ../../include/contact_widgets.php:205 -msgid "show more" -msgstr "montrer plus" +#: ../../mod/ping.php:276 +msgid "{0} posted" +msgstr "{0} a publié" -#: ../../mod/content.php:620 ../../mod/photos.php:1359 -#: ../../object/Item.php:116 -msgid "Private Message" -msgstr "Message privé" +#: ../../mod/ping.php:281 +#, php-format +msgid "{0} tagged %s's post with #%s" +msgstr "{0} a étiqueté la publication de %s avec #%s" -#: ../../mod/content.php:684 ../../mod/photos.php:1542 -#: ../../object/Item.php:231 -msgid "I like this (toggle)" -msgstr "J'aime (bascule)" +#: ../../mod/ping.php:287 +msgid "{0} mentioned you in a post" +msgstr "{0} vous a mentionné dans une publication" -#: ../../mod/content.php:684 ../../object/Item.php:231 -msgid "like" -msgstr "aime" +#: ../../mod/mood.php:133 +msgid "Mood" +msgstr "Humeur" -#: ../../mod/content.php:685 ../../mod/photos.php:1543 -#: ../../object/Item.php:232 -msgid "I don't like this (toggle)" -msgstr "Je n'aime pas (bascule)" +#: ../../mod/mood.php:134 +msgid "Set your current mood and tell your friends" +msgstr "Spécifiez votre humeur du moment, et informez vos amis" -#: ../../mod/content.php:685 ../../object/Item.php:232 -msgid "dislike" -msgstr "n'aime pas" +#: ../../mod/search.php:174 ../../mod/community.php:62 +#: ../../mod/community.php:71 +msgid "No results." +msgstr "Aucun résultat." -#: ../../mod/content.php:687 ../../object/Item.php:234 -msgid "Share this" -msgstr "Partager" +#: ../../mod/message.php:67 +msgid "Unable to locate contact information." +msgstr "Impossible de localiser les informations du contact." -#: ../../mod/content.php:687 ../../object/Item.php:234 -msgid "share" -msgstr "partager" +#: ../../mod/message.php:207 +msgid "Do you really want to delete this message?" +msgstr "Voulez-vous vraiment supprimer ce message ?" -#: ../../mod/content.php:707 ../../mod/photos.php:1562 -#: ../../mod/photos.php:1606 ../../mod/photos.php:1694 -#: ../../object/Item.php:675 -msgid "This is you" -msgstr "C'est vous" +#: ../../mod/message.php:227 +msgid "Message deleted." +msgstr "Message supprimé." -#: ../../mod/content.php:709 ../../mod/photos.php:1564 -#: ../../mod/photos.php:1608 ../../mod/photos.php:1696 ../../boot.php:750 -#: ../../object/Item.php:361 ../../object/Item.php:677 -msgid "Comment" -msgstr "Commenter" +#: ../../mod/message.php:258 +msgid "Conversation removed." +msgstr "Conversation supprimée." -#: ../../mod/content.php:711 ../../object/Item.php:679 -msgid "Bold" -msgstr "Gras" +#: ../../mod/message.php:371 +msgid "No messages." +msgstr "Aucun message." -#: ../../mod/content.php:712 ../../object/Item.php:680 -msgid "Italic" -msgstr "Italique" +#: ../../mod/message.php:378 +#, php-format +msgid "Unknown sender - %s" +msgstr "Émetteur inconnu - %s" -#: ../../mod/content.php:713 ../../object/Item.php:681 -msgid "Underline" -msgstr "Souligné" +#: ../../mod/message.php:381 +#, php-format +msgid "You and %s" +msgstr "Vous et %s" -#: ../../mod/content.php:714 ../../object/Item.php:682 -msgid "Quote" -msgstr "Citation" +#: ../../mod/message.php:384 +#, php-format +msgid "%s and You" +msgstr "%s et vous" -#: ../../mod/content.php:715 ../../object/Item.php:683 -msgid "Code" -msgstr "Code" +#: ../../mod/message.php:405 ../../mod/message.php:546 +msgid "Delete conversation" +msgstr "Effacer conversation" -#: ../../mod/content.php:716 ../../object/Item.php:684 -msgid "Image" -msgstr "Image" +#: ../../mod/message.php:408 +msgid "D, d M Y - g:i A" +msgstr "D, d M Y - g:i A" -#: ../../mod/content.php:717 ../../object/Item.php:685 -msgid "Link" -msgstr "Lien" +#: ../../mod/message.php:411 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d message" +msgstr[1] "%d messages" -#: ../../mod/content.php:718 ../../object/Item.php:686 -msgid "Video" -msgstr "Vidéo" +#: ../../mod/message.php:450 +msgid "Message not available." +msgstr "Message indisponible." -#: ../../mod/content.php:719 ../../mod/editpost.php:145 -#: ../../mod/photos.php:1566 ../../mod/photos.php:1610 -#: ../../mod/photos.php:1698 ../../object/Item.php:687 -#: ../../include/conversation.php:1126 -msgid "Preview" -msgstr "Aperçu" +#: ../../mod/message.php:520 +msgid "Delete message" +msgstr "Effacer message" -#: ../../mod/content.php:728 ../../mod/settings.php:676 -#: ../../object/Item.php:120 -msgid "Edit" -msgstr "Éditer" - -#: ../../mod/content.php:753 ../../object/Item.php:195 -msgid "add star" -msgstr "mett en avant" - -#: ../../mod/content.php:754 ../../object/Item.php:196 -msgid "remove star" -msgstr "ne plus mettre en avant" - -#: ../../mod/content.php:755 ../../object/Item.php:197 -msgid "toggle star status" -msgstr "mettre en avant" - -#: ../../mod/content.php:758 ../../object/Item.php:200 -msgid "starred" -msgstr "mis en avant" - -#: ../../mod/content.php:759 ../../object/Item.php:220 -msgid "add tag" -msgstr "ajouter une étiquette" - -#: ../../mod/content.php:763 ../../object/Item.php:133 -msgid "save to folder" -msgstr "sauver vers dossier" - -#: ../../mod/content.php:854 ../../object/Item.php:328 -msgid "to" -msgstr "à" - -#: ../../mod/content.php:855 ../../object/Item.php:330 -msgid "Wall-to-Wall" -msgstr "Inter-mur" - -#: ../../mod/content.php:856 ../../object/Item.php:331 -msgid "via Wall-To-Wall:" -msgstr "en Inter-mur:" - -#: ../../mod/removeme.php:46 ../../mod/removeme.php:49 -msgid "Remove My Account" -msgstr "Supprimer mon compte" - -#: ../../mod/removeme.php:47 +#: ../../mod/message.php:548 msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "Ceci supprimera totalement votre compte. Cette opération est irréversible." +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Pas de communications sécurisées possibles. Vous serez peut-être en mesure de répondre depuis la page de profil de l'émetteur." -#: ../../mod/removeme.php:48 -msgid "Please enter your password for verification:" -msgstr "Merci de saisir votre mot de passe pour vérification:" +#: ../../mod/message.php:552 +msgid "Send Reply" +msgstr "Répondre" + +#: ../../mod/community.php:23 +msgid "Not available." +msgstr "Indisponible." + +#: ../../mod/profiles.php:18 ../../mod/profiles.php:133 +#: ../../mod/profiles.php:179 ../../mod/profiles.php:630 +#: ../../mod/dfrn_confirm.php:64 +msgid "Profile not found." +msgstr "Profil introuvable." + +#: ../../mod/profiles.php:37 +msgid "Profile deleted." +msgstr "Profil supprimé." + +#: ../../mod/profiles.php:55 ../../mod/profiles.php:89 +msgid "Profile-" +msgstr "Profil-" + +#: ../../mod/profiles.php:74 ../../mod/profiles.php:117 +msgid "New profile created." +msgstr "Nouveau profil créé." + +#: ../../mod/profiles.php:95 +msgid "Profile unavailable to clone." +msgstr "Ce profil ne peut être cloné." + +#: ../../mod/profiles.php:189 +msgid "Profile Name is required." +msgstr "Le nom du profil est requis." + +#: ../../mod/profiles.php:340 +msgid "Marital Status" +msgstr "Statut marital" + +#: ../../mod/profiles.php:344 +msgid "Romantic Partner" +msgstr "Partenaire/conjoint" + +#: ../../mod/profiles.php:348 +msgid "Likes" +msgstr "Derniers \"J'aime\"" + +#: ../../mod/profiles.php:352 +msgid "Dislikes" +msgstr "Derniers \"Je n'aime pas\"" + +#: ../../mod/profiles.php:356 +msgid "Work/Employment" +msgstr "Travail/Occupation" + +#: ../../mod/profiles.php:359 +msgid "Religion" +msgstr "Religion" + +#: ../../mod/profiles.php:363 +msgid "Political Views" +msgstr "Tendance politique" + +#: ../../mod/profiles.php:367 +msgid "Gender" +msgstr "Sexe" + +#: ../../mod/profiles.php:371 +msgid "Sexual Preference" +msgstr "Préférence sexuelle" + +#: ../../mod/profiles.php:375 +msgid "Homepage" +msgstr "Site internet" + +#: ../../mod/profiles.php:379 ../../mod/profiles.php:698 +msgid "Interests" +msgstr "Centres d'intérêt" + +#: ../../mod/profiles.php:383 +msgid "Address" +msgstr "Adresse" + +#: ../../mod/profiles.php:390 ../../mod/profiles.php:694 +msgid "Location" +msgstr "Localisation" + +#: ../../mod/profiles.php:473 +msgid "Profile updated." +msgstr "Profil mis à jour." + +#: ../../mod/profiles.php:568 +msgid " and " +msgstr " et " + +#: ../../mod/profiles.php:576 +msgid "public profile" +msgstr "profil public" + +#: ../../mod/profiles.php:579 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s a changé %2$s en “%3$s”" + +#: ../../mod/profiles.php:580 +#, php-format +msgid " - Visit %1$s's %2$s" +msgstr "Visiter le %2$s de %1$s" + +#: ../../mod/profiles.php:583 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s a mis à jour son %2$s, en modifiant %3$s." + +#: ../../mod/profiles.php:658 +msgid "Hide contacts and friends:" +msgstr "Cacher mes contacts et amis:" + +#: ../../mod/profiles.php:663 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "Cacher ma liste d'amis/contacts des visiteurs de ce profil?" + +#: ../../mod/profiles.php:685 +msgid "Edit Profile Details" +msgstr "Éditer les détails du profil" + +#: ../../mod/profiles.php:687 +msgid "Change Profile Photo" +msgstr "Changer la photo du profil" + +#: ../../mod/profiles.php:688 +msgid "View this profile" +msgstr "Voir ce profil" + +#: ../../mod/profiles.php:689 +msgid "Create a new profile using these settings" +msgstr "Créer un nouveau profil en utilisant ces réglages" + +#: ../../mod/profiles.php:690 +msgid "Clone this profile" +msgstr "Cloner ce profil" + +#: ../../mod/profiles.php:691 +msgid "Delete this profile" +msgstr "Supprimer ce profil" + +#: ../../mod/profiles.php:692 +msgid "Basic information" +msgstr "Information de base" + +#: ../../mod/profiles.php:693 +msgid "Profile picture" +msgstr "Image de profil" + +#: ../../mod/profiles.php:695 +msgid "Preferences" +msgstr "Préférences" + +#: ../../mod/profiles.php:696 +msgid "Status information" +msgstr "Information sur le statut" + +#: ../../mod/profiles.php:697 +msgid "Additional information" +msgstr "Information additionnelle" + +#: ../../mod/profiles.php:699 ../../mod/newmember.php:36 +#: ../../mod/profile_photo.php:244 +msgid "Upload Profile Photo" +msgstr "Téléverser une photo de profil" + +#: ../../mod/profiles.php:700 +msgid "Profile Name:" +msgstr "Nom du profil:" + +#: ../../mod/profiles.php:701 +msgid "Your Full Name:" +msgstr "Votre nom complet:" + +#: ../../mod/profiles.php:702 +msgid "Title/Description:" +msgstr "Titre/Description:" + +#: ../../mod/profiles.php:703 +msgid "Your Gender:" +msgstr "Votre genre:" + +#: ../../mod/profiles.php:704 +#, php-format +msgid "Birthday (%s):" +msgstr "Anniversaire (%s):" + +#: ../../mod/profiles.php:705 +msgid "Street Address:" +msgstr "Adresse postale:" + +#: ../../mod/profiles.php:706 +msgid "Locality/City:" +msgstr "Ville/Localité:" + +#: ../../mod/profiles.php:707 +msgid "Postal/Zip Code:" +msgstr "Code postal:" + +#: ../../mod/profiles.php:708 +msgid "Country:" +msgstr "Pays:" + +#: ../../mod/profiles.php:709 +msgid "Region/State:" +msgstr "Région/État:" + +#: ../../mod/profiles.php:710 +msgid " Marital Status:" +msgstr " Statut marital:" + +#: ../../mod/profiles.php:711 +msgid "Who: (if applicable)" +msgstr "Qui: (si pertinent)" + +#: ../../mod/profiles.php:712 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Exemples: cathy123, Cathy Williams, cathy@example.com" + +#: ../../mod/profiles.php:713 +msgid "Since [date]:" +msgstr "Depuis [date] :" + +#: ../../mod/profiles.php:715 +msgid "Homepage URL:" +msgstr "Page personnelle:" + +#: ../../mod/profiles.php:718 +msgid "Religious Views:" +msgstr "Opinions religieuses:" + +#: ../../mod/profiles.php:719 +msgid "Public Keywords:" +msgstr "Mots-clés publics:" + +#: ../../mod/profiles.php:720 +msgid "Private Keywords:" +msgstr "Mots-clés privés:" + +#: ../../mod/profiles.php:723 +msgid "Example: fishing photography software" +msgstr "Exemple: football dessin programmation" + +#: ../../mod/profiles.php:724 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "(Utilisés pour vous suggérer des amis potentiels, peuvent être vus par autrui)" + +#: ../../mod/profiles.php:725 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Utilisés pour rechercher dans les profils, ne seront jamais montrés à autrui)" + +#: ../../mod/profiles.php:726 +msgid "Tell us about yourself..." +msgstr "Parlez-nous de vous..." + +#: ../../mod/profiles.php:727 +msgid "Hobbies/Interests" +msgstr "Passe-temps/Centres d'intérêt" + +#: ../../mod/profiles.php:728 +msgid "Contact information and Social Networks" +msgstr "Coordonnées/Réseaux sociaux" + +#: ../../mod/profiles.php:729 +msgid "Musical interests" +msgstr "Goûts musicaux" + +#: ../../mod/profiles.php:730 +msgid "Books, literature" +msgstr "Lectures" + +#: ../../mod/profiles.php:731 +msgid "Television" +msgstr "Télévision" + +#: ../../mod/profiles.php:732 +msgid "Film/dance/culture/entertainment" +msgstr "Cinéma/Danse/Culture/Divertissement" + +#: ../../mod/profiles.php:733 +msgid "Love/romance" +msgstr "Amour/Romance" + +#: ../../mod/profiles.php:734 +msgid "Work/employment" +msgstr "Activité professionnelle/Occupation" + +#: ../../mod/profiles.php:735 +msgid "School/education" +msgstr "Études/Formation" + +#: ../../mod/profiles.php:740 +msgid "" +"This is your public profile.
It may " +"be visible to anybody using the internet." +msgstr "Ceci est votre profil public.
Il peut être visible par n'importe quel utilisateur d'Internet." + +#: ../../mod/profiles.php:750 ../../mod/directory.php:113 +msgid "Age: " +msgstr "Age: " + +#: ../../mod/profiles.php:803 +msgid "Edit/Manage Profiles" +msgstr "Editer/gérer les profils" #: ../../mod/install.php:117 msgid "Friendica Communications Server - Setup" @@ -3535,1013 +7411,482 @@ msgid "" "poller." msgstr "IMPORTANT: Vous devez configurer [manuellement] une tâche programmée pour le 'poller'." -#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112 -#, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "Nombre de messages de mur quotidiens pour %s dépassé. Échec du message." - -#: ../../mod/wallmessage.php:59 -msgid "Unable to check your home location." -msgstr "Impossible de vérifier votre localisation." - -#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 -msgid "No recipient." -msgstr "Pas de destinataire." - -#: ../../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 "Si vous souhaitez que %s réponde, merci de vérifier vos réglages pour autoriser les messages privés venant d'inconnus." - -#: ../../mod/help.php:79 +#: ../../mod/help.php:31 msgid "Help:" msgstr "Aide:" -#: ../../mod/help.php:84 ../../include/nav.php:114 -msgid "Help" -msgstr "Aide" +#: ../../mod/crepair.php:106 +msgid "Contact settings applied." +msgstr "Réglages du contact appliqués." -#: ../../mod/help.php:90 ../../index.php:256 -msgid "Not Found" -msgstr "Non trouvé" +#: ../../mod/crepair.php:108 +msgid "Contact update failed." +msgstr "Impossible d'appliquer les réglages." -#: ../../mod/help.php:93 ../../index.php:259 -msgid "Page not found." -msgstr "Page introuvable." +#: ../../mod/crepair.php:139 +msgid "Repair Contact Settings" +msgstr "Réglages de réparation des contacts" + +#: ../../mod/crepair.php:141 +msgid "" +"WARNING: This is highly advanced and if you enter incorrect" +" information your communications with this contact may stop working." +msgstr "ATTENTION: Manipulation réservée aux experts, toute information incorrecte pourrait empêcher la communication avec ce contact." + +#: ../../mod/crepair.php:142 +msgid "" +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "une photo" + +#: ../../mod/crepair.php:148 +msgid "Return to contact editor" +msgstr "Retour à l'éditeur de contact" + +#: ../../mod/crepair.php:159 ../../mod/crepair.php:161 +msgid "No mirroring" +msgstr "" + +#: ../../mod/crepair.php:159 +msgid "Mirror as forwarded posting" +msgstr "" + +#: ../../mod/crepair.php:159 ../../mod/crepair.php:161 +msgid "Mirror as my own posting" +msgstr "" + +#: ../../mod/crepair.php:166 +msgid "Account Nickname" +msgstr "Pseudo du compte" + +#: ../../mod/crepair.php:167 +msgid "@Tagname - overrides Name/Nickname" +msgstr "@NomEtiquette - prend le pas sur Nom/Pseudo" + +#: ../../mod/crepair.php:168 +msgid "Account URL" +msgstr "URL du compte" + +#: ../../mod/crepair.php:169 +msgid "Friend Request URL" +msgstr "Echec du téléversement de l'image." + +#: ../../mod/crepair.php:170 +msgid "Friend Confirm URL" +msgstr "Accès public refusé." + +#: ../../mod/crepair.php:171 +msgid "Notification Endpoint URL" +msgstr "Aucune photo sélectionnée" + +#: ../../mod/crepair.php:172 +msgid "Poll/Feed URL" +msgstr "Téléverser des photos" + +#: ../../mod/crepair.php:173 +msgid "New photo from this URL" +msgstr "Nouvelle photo depuis cette URL" + +#: ../../mod/crepair.php:174 +msgid "Remote Self" +msgstr "" + +#: ../../mod/crepair.php:176 +msgid "Mirror postings from this contact" +msgstr "" + +#: ../../mod/crepair.php:176 +msgid "" +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." +msgstr "" + +#: ../../mod/newmember.php:6 +msgid "Welcome to Friendica" +msgstr "Bienvenue sur Friendica" + +#: ../../mod/newmember.php:8 +msgid "New Member Checklist" +msgstr "Checklist du nouvel utilisateur" + +#: ../../mod/newmember.php:12 +msgid "" +"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." +msgstr "Nous souhaiterions vous donner quelques astuces et ressources pour rendre votre expérience la plus agréable possible. Cliquez sur n'importe lequel de ces éléments pour visiter la page correspondante. Un lien vers cette page restera visible sur votre page d'accueil pendant les deux semaines qui suivent votre inscription initiale, puis disparaîtra silencieusement." + +#: ../../mod/newmember.php:14 +msgid "Getting Started" +msgstr "Bien démarrer" + +#: ../../mod/newmember.php:18 +msgid "Friendica Walk-Through" +msgstr "Friendica pas-à-pas" + +#: ../../mod/newmember.php:18 +msgid "" +"On your Quick Start page - find a brief introduction to your " +"profile and network tabs, make some new connections, and find some groups to" +" join." +msgstr "Sur votre page d'accueil, dans Conseils aux nouveaux venus - vous trouverez une rapide introduction aux onglets Profil et Réseau, pourrez vous connecter à Facebook, établir de nouvelles relations, et choisir des groupes à rejoindre." + +#: ../../mod/newmember.php:26 +msgid "Go to Your Settings" +msgstr "Éditer vos Réglages" + +#: ../../mod/newmember.php:26 +msgid "" +"On your Settings page - change your initial password. Also make a " +"note of your Identity Address. This looks just like an email address - and " +"will be useful in making friends on the free social web." +msgstr "Sur la page des Réglages - changez votre mot de passe initial. Notez bien votre Identité. Elle ressemble à une adresse de courriel - et vous sera utile pour vous faire des amis dans le web social libre." + +#: ../../mod/newmember.php:28 +msgid "" +"Review the other settings, particularly the privacy settings. An unpublished" +" directory listing is like having an unlisted phone number. In general, you " +"should probably publish your listing - unless all of your friends and " +"potential friends know exactly how to find you." +msgstr "Vérifiez les autres réglages, tout particulièrement ceux liés à la vie privée. Un profil non listé, c'est un peu comme un numéro sur liste rouge. En général, vous devriez probablement publier votre profil - à moins que tous vos amis (potentiels) sachent déjà comment vous trouver." + +#: ../../mod/newmember.php:36 +msgid "" +"Upload a profile photo if you have not done so already. Studies have shown " +"that people with real photos of themselves are ten times more likely to make" +" friends than people who do not." +msgstr "Téléversez (envoyez) une photo de profil si vous n'en avez pas déjà une. Les études montrent que les gens qui affichent de vraies photos d'eux sont dix fois plus susceptibles de se faire des amis." + +#: ../../mod/newmember.php:38 +msgid "Edit Your Profile" +msgstr "Éditer votre Profil" + +#: ../../mod/newmember.php:38 +msgid "" +"Edit your default profile to your liking. Review the " +"settings for hiding your list of friends and hiding the profile from unknown" +" visitors." +msgstr "Éditez votre profil par défaut à votre convenance. Vérifiez les réglages concernant la visibilité de votre liste d'amis par les visiteurs inconnus." + +#: ../../mod/newmember.php:40 +msgid "Profile Keywords" +msgstr "Mots-clés du profil" + +#: ../../mod/newmember.php:40 +msgid "" +"Set some public keywords for your default profile which describe your " +"interests. We may be able to find other people with similar interests and " +"suggest friendships." +msgstr "Choisissez quelques mots-clé publics pour votre profil par défaut. Ils pourront ainsi décrire vos centres d'intérêt, et nous pourrons vous proposer des contacts qui les partagent." + +#: ../../mod/newmember.php:44 +msgid "Connecting" +msgstr "Connexions" + +#: ../../mod/newmember.php:49 +msgid "" +"Authorise the Facebook Connector if you currently have a Facebook account " +"and we will (optionally) import all your Facebook friends and conversations." +msgstr "Activez et paramétrez le connecteur Facebook si vous avez un compte Facebook et nous pourrons (de manière facultative) importer tous vos amis et conversations Facebook." + +#: ../../mod/newmember.php:51 +msgid "" +"If this is your own personal server, installing the Facebook addon " +"may ease your transition to the free social web." +msgstr "Si ceci est votre propre serveur, installer le connecteur Facebook peut adoucir votre transition vers le web social libre." + +#: ../../mod/newmember.php:56 +msgid "Importing Emails" +msgstr "Importer courriels" + +#: ../../mod/newmember.php:56 +msgid "" +"Enter your email access information on your Connector Settings page if you " +"wish to import and interact with friends or mailing lists from your email " +"INBOX" +msgstr "Entrez vos paramètres de courriel dans les Réglages des connecteurs si vous souhaitez importer et interagir avec des amis ou des listes venant de votre Boîte de Réception." + +#: ../../mod/newmember.php:58 +msgid "Go to Your Contacts Page" +msgstr "Consulter vos Contacts" + +#: ../../mod/newmember.php:58 +msgid "" +"Your Contacts page is your gateway to managing friendships and connecting " +"with friends on other networks. Typically you enter their address or site " +"URL in the Add New Contact dialog." +msgstr "Votre page Contacts est le point d'entrée vers la gestion de vos amitiés/relations et la connexion à des amis venant d'autres réseaux. Typiquement, vous pourrez y rentrer leur adresse d'Identité ou l'URL de leur site dans le formulaire Ajouter un nouveau contact." + +#: ../../mod/newmember.php:60 +msgid "Go to Your Site's Directory" +msgstr "Consulter l'Annuaire de votre Site" + +#: ../../mod/newmember.php:60 +msgid "" +"The Directory page lets you find other people in this network or other " +"federated sites. Look for a Connect or Follow link on " +"their profile page. Provide your own Identity Address if requested." +msgstr "La page Annuaire vous permet de trouver d'autres personnes au sein de ce réseaux ou parmi d'autres sites fédérés. Cherchez un lien Relier ou Suivre sur leur profil. Vous pourrez avoir besoin d'indiquer votre adresse d'identité." + +#: ../../mod/newmember.php:62 +msgid "Finding New People" +msgstr "Trouver de nouvelles personnes" + +#: ../../mod/newmember.php:62 +msgid "" +"On the side panel of the Contacts page are several tools to find new " +"friends. We can match people by interest, look up people by name or " +"interest, and provide suggestions based on network relationships. On a brand" +" new site, friend suggestions will usually begin to be populated within 24 " +"hours." +msgstr "Sur le panneau latéral de la page Contacts, il y a plusieurs moyens de trouver de nouveaux amis. Nous pouvons mettre les gens en relation selon leurs intérêts, rechercher des amis par nom ou intérêt, et fournir des suggestions en fonction de la topologie du réseau. Sur un site tout neuf, les suggestions d'amitié devraient commencer à apparaître au bout de 24 heures." + +#: ../../mod/newmember.php:70 +msgid "Group Your Contacts" +msgstr "Grouper vos contacts" + +#: ../../mod/newmember.php:70 +msgid "" +"Once you have made some friends, organize them into private conversation " +"groups from the sidebar of your Contacts page and then you can interact with" +" each group privately on your Network page." +msgstr "Une fois que vous avez trouvé quelques amis, organisez-les en groupes de conversation privés depuis le panneau latéral de la page Contacts. Vous pourrez ensuite interagir avec chaque groupe de manière privée depuis la page Réseau." + +#: ../../mod/newmember.php:73 +msgid "Why Aren't My Posts Public?" +msgstr "Pourquoi mes éléments ne sont pas publics?" + +#: ../../mod/newmember.php:73 +msgid "" +"Friendica respects your privacy. By default, your posts will only show up to" +" people you've added as friends. For more information, see the help section " +"from the link above." +msgstr "Friendica respecte votre vie privée. Par défaut, toutes vos publications seront seulement montrés à vos amis. Pour plus d'information, consultez la section \"aide\" du lien ci-dessus." + +#: ../../mod/newmember.php:78 +msgid "Getting Help" +msgstr "Obtenir de l'aide" + +#: ../../mod/newmember.php:82 +msgid "Go to the Help Section" +msgstr "Aller à la section Aide" + +#: ../../mod/newmember.php:82 +msgid "" +"Our help pages may be consulted for detail on other program" +" features and resources." +msgstr "Nos pages d'aide peuvent être consultées pour davantage de détails sur les fonctionnalités ou les ressources." + +#: ../../mod/poke.php:192 +msgid "Poke/Prod" +msgstr "Solliciter" + +#: ../../mod/poke.php:193 +msgid "poke, prod or do other things to somebody" +msgstr "solliciter (poke/...) quelqu'un" + +#: ../../mod/poke.php:194 +msgid "Recipient" +msgstr "Destinataire" + +#: ../../mod/poke.php:195 +msgid "Choose what you wish to do to recipient" +msgstr "Choisissez ce que vous voulez faire au destinataire" + +#: ../../mod/poke.php:198 +msgid "Make this post private" +msgstr "Rendez ce message privé" + +#: ../../mod/display.php:496 +msgid "Item has been removed." +msgstr "Cet élément a été enlevé." + +#: ../../mod/subthread.php:103 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s suit les %3$s de %2$s" #: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536 #, php-format msgid "%1$s welcomes %2$s" msgstr "%1$s accueille %2$s" -#: ../../mod/home.php:35 -#, php-format -msgid "Welcome to %s" -msgstr "Bienvenue sur %s" - -#: ../../mod/wall_attach.php:75 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "Désolé, il semble que votre fichier est plus important que ce que la configuration de PHP autorise" - -#: ../../mod/wall_attach.php:75 -msgid "Or - did you try to upload an empty file?" -msgstr "Ou — auriez-vous essayé de télécharger un fichier vide ?" - -#: ../../mod/wall_attach.php:81 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "La taille du fichier dépasse la limite de %d" - -#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133 -msgid "File upload failed." -msgstr "Le téléversement a échoué." - -#: ../../mod/match.php:12 -msgid "Profile Match" -msgstr "Correpondance de profils" - -#: ../../mod/match.php:20 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Aucun mot-clé en correspondance. Merci d'ajouter des mots-clés à votre profil par défaut." - -#: ../../mod/match.php:57 -msgid "is interested in:" -msgstr "s'intéresse à:" - -#: ../../mod/match.php:58 ../../mod/suggest.php:90 ../../boot.php:1568 -#: ../../include/contact_widgets.php:10 -msgid "Connect" -msgstr "Relier" - -#: ../../mod/share.php:44 -msgid "link" -msgstr "lien" - -#: ../../mod/community.php:23 -msgid "Not available." -msgstr "Indisponible." - -#: ../../mod/community.php:32 ../../include/nav.php:129 -#: ../../include/nav.php:131 ../../view/theme/diabook/theme.php:129 -msgid "Community" -msgstr "Communauté" - -#: ../../mod/community.php:62 ../../mod/community.php:71 -#: ../../mod/search.php:168 ../../mod/search.php:192 -msgid "No results." -msgstr "Aucun résultat." - -#: ../../mod/settings.php:29 ../../mod/photos.php:80 -msgid "everybody" -msgstr "tout le monde" - -#: ../../mod/settings.php:41 -msgid "Additional features" -msgstr "Fonctions supplémentaires" - -#: ../../mod/settings.php:46 -msgid "Display" -msgstr "Afficher" - -#: ../../mod/settings.php:52 ../../mod/settings.php:780 -msgid "Social Networks" -msgstr "Réseaux sociaux" - -#: ../../mod/settings.php:62 ../../include/nav.php:170 -msgid "Delegations" -msgstr "Délégations" - -#: ../../mod/settings.php:67 -msgid "Connected apps" -msgstr "Applications connectées" - -#: ../../mod/settings.php:72 ../../mod/uexport.php:85 -msgid "Export personal data" -msgstr "Exporter" - -#: ../../mod/settings.php:77 -msgid "Remove account" -msgstr "Supprimer le compte" - -#: ../../mod/settings.php:129 -msgid "Missing some important data!" -msgstr "Il manque certaines informations importantes!" - -#: ../../mod/settings.php:238 -msgid "Failed to connect with email account using the settings provided." -msgstr "Impossible de se connecter au compte courriel configuré." - -#: ../../mod/settings.php:243 -msgid "Email settings updated." -msgstr "Réglages de courriel mis-à-jour." - -#: ../../mod/settings.php:258 -msgid "Features updated" -msgstr "Fonctionnalités mises à jour" - -#: ../../mod/settings.php:321 -msgid "Relocate message has been send to your contacts" -msgstr "Un message de relocalisation a été envoyé à vos contacts." - -#: ../../mod/settings.php:335 -msgid "Passwords do not match. Password unchanged." -msgstr "Les mots de passe ne correspondent pas. Aucun changement appliqué." - -#: ../../mod/settings.php:340 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Les mots de passe vides sont interdits. Aucun changement appliqué." - -#: ../../mod/settings.php:348 -msgid "Wrong password." -msgstr "Mauvais mot de passe." - -#: ../../mod/settings.php:359 -msgid "Password changed." -msgstr "Mots de passe changés." - -#: ../../mod/settings.php:361 -msgid "Password update failed. Please try again." -msgstr "Le changement de mot de passe a échoué. Merci de recommencer." - -#: ../../mod/settings.php:428 -msgid " Please use a shorter name." -msgstr " Merci d'utiliser un nom plus court." - -#: ../../mod/settings.php:430 -msgid " Name too short." -msgstr " Nom trop court." - -#: ../../mod/settings.php:439 -msgid "Wrong Password" -msgstr "Mauvais mot de passe" - -#: ../../mod/settings.php:444 -msgid " Not valid email." -msgstr " Email invalide." - -#: ../../mod/settings.php:450 -msgid " Cannot change to that email." -msgstr " Impossible de changer pour cet email." - -#: ../../mod/settings.php:506 -msgid "Private forum has no privacy permissions. Using default privacy group." -msgstr "Ce forum privé n'a pas de paramètres de vie privée. Utilisation des paramètres de confidentialité par défaut." - -#: ../../mod/settings.php:510 -msgid "Private forum has no privacy permissions and no default privacy group." -msgstr "Ce forum privé n'a pas de paramètres de vie privée ni de paramètres de confidentialité par défaut." - -#: ../../mod/settings.php:540 -msgid "Settings updated." -msgstr "Réglages mis à jour." - -#: ../../mod/settings.php:613 ../../mod/settings.php:639 -#: ../../mod/settings.php:675 -msgid "Add application" -msgstr "Ajouter une application" - -#: ../../mod/settings.php:617 ../../mod/settings.php:643 -msgid "Consumer Key" -msgstr "Clé utilisateur" - -#: ../../mod/settings.php:618 ../../mod/settings.php:644 -msgid "Consumer Secret" -msgstr "Secret utilisateur" - -#: ../../mod/settings.php:619 ../../mod/settings.php:645 -msgid "Redirect" -msgstr "Rediriger" - -#: ../../mod/settings.php:620 ../../mod/settings.php:646 -msgid "Icon url" -msgstr "URL de l'icône" - -#: ../../mod/settings.php:631 -msgid "You can't edit this application." -msgstr "Vous ne pouvez pas éditer cette application." - -#: ../../mod/settings.php:674 -msgid "Connected Apps" -msgstr "Applications connectées" - -#: ../../mod/settings.php:678 -msgid "Client key starts with" -msgstr "La clé cliente commence par" - -#: ../../mod/settings.php:679 -msgid "No name" -msgstr "Sans nom" - -#: ../../mod/settings.php:680 -msgid "Remove authorization" -msgstr "Révoquer l'autorisation" - -#: ../../mod/settings.php:692 -msgid "No Plugin settings configured" -msgstr "Pas de réglages d'extensions configurés" - -#: ../../mod/settings.php:700 -msgid "Plugin Settings" -msgstr "Extensions" - -#: ../../mod/settings.php:714 -msgid "Off" -msgstr "Éteint" - -#: ../../mod/settings.php:714 -msgid "On" -msgstr "Allumé" - -#: ../../mod/settings.php:722 -msgid "Additional Features" -msgstr "Fonctions supplémentaires" - -#: ../../mod/settings.php:736 ../../mod/settings.php:737 -#, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "Le support natif pour la connectivité %s est %s" - -#: ../../mod/settings.php:736 ../../mod/dfrn_request.php:838 -#: ../../include/contact_selectors.php:80 -msgid "Diaspora" -msgstr "Diaspora" - -#: ../../mod/settings.php:736 ../../mod/settings.php:737 -msgid "enabled" -msgstr "activé" - -#: ../../mod/settings.php:736 ../../mod/settings.php:737 -msgid "disabled" -msgstr "désactivé" - -#: ../../mod/settings.php:737 -msgid "StatusNet" -msgstr "StatusNet" - -#: ../../mod/settings.php:773 -msgid "Email access is disabled on this site." -msgstr "L'accès courriel est désactivé sur ce site." - -#: ../../mod/settings.php:785 -msgid "Email/Mailbox Setup" -msgstr "Réglages de courriel/boîte à lettre" - -#: ../../mod/settings.php:786 +#: ../../mod/dfrn_confirm.php:121 msgid "" -"If you wish to communicate with email contacts using this service " -"(optional), please specify how to connect to your mailbox." -msgstr "Si vous souhaitez communiquer avec vos contacts \"courriel\" (facultatif), merci de nous indiquer comment vous connecter à votre boîte." +"This may occasionally happen if contact was requested by both persons and it" +" has already been approved." +msgstr "Ceci peut se produire lorsque le contact a été requis par les deux personnes et a déjà été approuvé." -#: ../../mod/settings.php:787 -msgid "Last successful email check:" -msgstr "Dernière vérification réussie des courriels:" +#: ../../mod/dfrn_confirm.php:240 +msgid "Response from remote site was not understood." +msgstr "Réponse du site distant incomprise." -#: ../../mod/settings.php:789 -msgid "IMAP server name:" -msgstr "Nom du serveur IMAP:" +#: ../../mod/dfrn_confirm.php:249 ../../mod/dfrn_confirm.php:254 +msgid "Unexpected response from remote site: " +msgstr "Réponse inattendue du site distant: " -#: ../../mod/settings.php:790 -msgid "IMAP port:" -msgstr "Port IMAP:" +#: ../../mod/dfrn_confirm.php:263 +msgid "Confirmation completed successfully." +msgstr "Confirmation achevée avec succès." -#: ../../mod/settings.php:791 -msgid "Security:" -msgstr "Sécurité:" +#: ../../mod/dfrn_confirm.php:265 ../../mod/dfrn_confirm.php:279 +#: ../../mod/dfrn_confirm.php:286 +msgid "Remote site reported: " +msgstr "Alerte du site distant: " -#: ../../mod/settings.php:791 ../../mod/settings.php:796 -msgid "None" -msgstr "Aucun(e)" +#: ../../mod/dfrn_confirm.php:277 +msgid "Temporary failure. Please wait and try again." +msgstr "Échec temporaire. Merci de recommencer ultérieurement." -#: ../../mod/settings.php:792 -msgid "Email login name:" -msgstr "Nom de connexion:" +#: ../../mod/dfrn_confirm.php:284 +msgid "Introduction failed or was revoked." +msgstr "Introduction échouée ou annulée." -#: ../../mod/settings.php:793 -msgid "Email password:" -msgstr "Mot de passe:" +#: ../../mod/dfrn_confirm.php:429 +msgid "Unable to set contact photo." +msgstr "Impossible de définir la photo du contact." -#: ../../mod/settings.php:794 -msgid "Reply-to address:" -msgstr "Adresse de réponse:" - -#: ../../mod/settings.php:795 -msgid "Send public posts to all email contacts:" -msgstr "Envoyer les publications publiques à tous les contacts courriels:" - -#: ../../mod/settings.php:796 -msgid "Action after import:" -msgstr "Action après import:" - -#: ../../mod/settings.php:796 -msgid "Mark as seen" -msgstr "Marquer comme vu" - -#: ../../mod/settings.php:796 -msgid "Move to folder" -msgstr "Déplacer vers" - -#: ../../mod/settings.php:797 -msgid "Move to folder:" -msgstr "Déplacer vers:" - -#: ../../mod/settings.php:878 -msgid "Display Settings" -msgstr "Affichage" - -#: ../../mod/settings.php:884 ../../mod/settings.php:899 -msgid "Display Theme:" -msgstr "Thème d'affichage:" - -#: ../../mod/settings.php:885 -msgid "Mobile Theme:" -msgstr "Thème mobile:" - -#: ../../mod/settings.php:886 -msgid "Update browser every xx seconds" -msgstr "Mettre-à-jour l'affichage toutes les xx secondes" - -#: ../../mod/settings.php:886 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Délai minimum de 10 secondes, pas de maximum" - -#: ../../mod/settings.php:887 -msgid "Number of items to display per page:" -msgstr "Nombre d’éléments par page:" - -#: ../../mod/settings.php:887 ../../mod/settings.php:888 -msgid "Maximum of 100 items" -msgstr "Maximum de 100 éléments" - -#: ../../mod/settings.php:888 -msgid "Number of items to display per page when viewed from mobile device:" -msgstr "Nombre d'éléments a afficher par page pour un appareil mobile" - -#: ../../mod/settings.php:889 -msgid "Don't show emoticons" -msgstr "Ne pas afficher les émoticônes (smileys grahiques)" - -#: ../../mod/settings.php:890 -msgid "Don't show notices" -msgstr "Ne plus afficher les avis" - -#: ../../mod/settings.php:891 -msgid "Infinite scroll" -msgstr "Défilement infini" - -#: ../../mod/settings.php:892 -msgid "Automatic updates only at the top of the network page" -msgstr "" - -#: ../../mod/settings.php:969 -msgid "User Types" -msgstr "Types d'utilisateurs" - -#: ../../mod/settings.php:970 -msgid "Community Types" -msgstr "Genre de communautés" - -#: ../../mod/settings.php:971 -msgid "Normal Account Page" -msgstr "Compte normal" - -#: ../../mod/settings.php:972 -msgid "This account is a normal personal profile" -msgstr "Ce compte correspond à un profil normal, pour une seule personne (physique, généralement)" - -#: ../../mod/settings.php:975 -msgid "Soapbox Page" -msgstr "Compte \"boîte à savon\"" - -#: ../../mod/settings.php:976 -msgid "Automatically approve all connection/friend requests as read-only fans" -msgstr "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des fans 'en lecture seule'" - -#: ../../mod/settings.php:979 -msgid "Community Forum/Celebrity Account" -msgstr "Compte de communauté/célébrité" - -#: ../../mod/settings.php:980 -msgid "" -"Automatically approve all connection/friend requests as read-write fans" -msgstr "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des fans en 'lecture/écriture'" - -#: ../../mod/settings.php:983 -msgid "Automatic Friend Page" -msgstr "Compte d'\"amitié automatique\"" - -#: ../../mod/settings.php:984 -msgid "Automatically approve all connection/friend requests as friends" -msgstr "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des amis" - -#: ../../mod/settings.php:987 -msgid "Private Forum [Experimental]" -msgstr "Forum privé [expérimental]" - -#: ../../mod/settings.php:988 -msgid "Private forum - approved members only" -msgstr "Forum privé - modéré en inscription" - -#: ../../mod/settings.php:1000 -msgid "OpenID:" -msgstr "OpenID:" - -#: ../../mod/settings.php:1000 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "&nbsp;(Facultatif) Autoriser cet OpenID à se connecter à ce compte." - -#: ../../mod/settings.php:1010 -msgid "Publish your default profile in your local site directory?" -msgstr "Publier votre profil par défaut sur l'annuaire local de ce site?" - -#: ../../mod/settings.php:1010 ../../mod/settings.php:1016 -#: ../../mod/settings.php:1024 ../../mod/settings.php:1028 -#: ../../mod/settings.php:1033 ../../mod/settings.php:1039 -#: ../../mod/settings.php:1045 ../../mod/settings.php:1051 -#: ../../mod/settings.php:1081 ../../mod/settings.php:1082 -#: ../../mod/settings.php:1083 ../../mod/settings.php:1084 -#: ../../mod/settings.php:1085 ../../mod/dfrn_request.php:830 -#: ../../mod/register.php:234 ../../mod/profiles.php:661 -#: ../../mod/profiles.php:665 ../../mod/api.php:106 -msgid "No" -msgstr "Non" - -#: ../../mod/settings.php:1016 -msgid "Publish your default profile in the global social directory?" -msgstr "Publier votre profil par défaut sur l'annuaire social global?" - -#: ../../mod/settings.php:1024 -msgid "Hide your contact/friend list from viewers of your default profile?" -msgstr "Cacher votre liste de contacts/amis des visiteurs de votre profil par défaut?" - -#: ../../mod/settings.php:1028 ../../include/conversation.php:1057 -msgid "Hide your profile details from unknown viewers?" -msgstr "Cacher les détails du profil aux visiteurs inconnus?" - -#: ../../mod/settings.php:1028 -msgid "" -"If enabled, posting public messages to Diaspora and other networks isn't " -"possible." -msgstr "" - -#: ../../mod/settings.php:1033 -msgid "Allow friends to post to your profile page?" -msgstr "Autoriser vos amis à publier sur votre profil?" - -#: ../../mod/settings.php:1039 -msgid "Allow friends to tag your posts?" -msgstr "Autoriser vos amis à étiqueter vos publications?" - -#: ../../mod/settings.php:1045 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "Autoriser les suggestions d'amis potentiels aux nouveaux arrivants?" - -#: ../../mod/settings.php:1051 -msgid "Permit unknown people to send you private mail?" -msgstr "Autoriser les messages privés d'inconnus?" - -#: ../../mod/settings.php:1059 -msgid "Profile is not published." -msgstr "Ce profil n'est pas publié." - -#: ../../mod/settings.php:1067 -msgid "Your Identity Address is" -msgstr "L'adresse de votre identité est" - -#: ../../mod/settings.php:1078 -msgid "Automatically expire posts after this many days:" -msgstr "Les publications expirent automatiquement après (en jours) :" - -#: ../../mod/settings.php:1078 -msgid "If empty, posts will not expire. Expired posts will be deleted" -msgstr "Si ce champ est vide, les publications n'expireront pas. Les publications expirées seront supprimées" - -#: ../../mod/settings.php:1079 -msgid "Advanced expiration settings" -msgstr "Réglages avancés de l'expiration" - -#: ../../mod/settings.php:1080 -msgid "Advanced Expiration" -msgstr "Expiration (avancé)" - -#: ../../mod/settings.php:1081 -msgid "Expire posts:" -msgstr "Faire expirer les publications:" - -#: ../../mod/settings.php:1082 -msgid "Expire personal notes:" -msgstr "Faire expirer les notes personnelles:" - -#: ../../mod/settings.php:1083 -msgid "Expire starred posts:" -msgstr "Faire expirer les publications marqués:" - -#: ../../mod/settings.php:1084 -msgid "Expire photos:" -msgstr "Faire expirer les photos:" - -#: ../../mod/settings.php:1085 -msgid "Only expire posts by others:" -msgstr "Faire expirer seulement les publications des autres:" - -#: ../../mod/settings.php:1111 -msgid "Account Settings" -msgstr "Compte" - -#: ../../mod/settings.php:1119 -msgid "Password Settings" -msgstr "Réglages de mot de passe" - -#: ../../mod/settings.php:1120 -msgid "New Password:" -msgstr "Nouveau mot de passe:" - -#: ../../mod/settings.php:1121 -msgid "Confirm:" -msgstr "Confirmer:" - -#: ../../mod/settings.php:1121 -msgid "Leave password fields blank unless changing" -msgstr "Laissez les champs de mot de passe vierges, sauf si vous désirez les changer" - -#: ../../mod/settings.php:1122 -msgid "Current Password:" -msgstr "Mot de passe actuel:" - -#: ../../mod/settings.php:1122 ../../mod/settings.php:1123 -msgid "Your current password to confirm the changes" -msgstr "Votre mot de passe actuel pour confirmer les modifications" - -#: ../../mod/settings.php:1123 -msgid "Password:" -msgstr "Mot de passe:" - -#: ../../mod/settings.php:1127 -msgid "Basic Settings" -msgstr "Réglages basiques" - -#: ../../mod/settings.php:1128 ../../include/profile_advanced.php:15 -msgid "Full Name:" -msgstr "Nom complet:" - -#: ../../mod/settings.php:1129 -msgid "Email Address:" -msgstr "Adresse courriel:" - -#: ../../mod/settings.php:1130 -msgid "Your Timezone:" -msgstr "Votre fuseau horaire:" - -#: ../../mod/settings.php:1131 -msgid "Default Post Location:" -msgstr "Emplacement de publication par défaut:" - -#: ../../mod/settings.php:1132 -msgid "Use Browser Location:" -msgstr "Utiliser la localisation géographique du navigateur:" - -#: ../../mod/settings.php:1135 -msgid "Security and Privacy Settings" -msgstr "Réglages de sécurité et vie privée" - -#: ../../mod/settings.php:1137 -msgid "Maximum Friend Requests/Day:" -msgstr "Nombre maximal de requêtes d'amitié/jour:" - -#: ../../mod/settings.php:1137 ../../mod/settings.php:1167 -msgid "(to prevent spam abuse)" -msgstr "(pour limiter l'impact du spam)" - -#: ../../mod/settings.php:1138 -msgid "Default Post Permissions" -msgstr "Permissions de publication par défaut" - -#: ../../mod/settings.php:1139 -msgid "(click to open/close)" -msgstr "(cliquer pour ouvrir/fermer)" - -#: ../../mod/settings.php:1148 ../../mod/photos.php:1146 -#: ../../mod/photos.php:1519 -msgid "Show to Groups" -msgstr "Montrer aux groupes" - -#: ../../mod/settings.php:1149 ../../mod/photos.php:1147 -#: ../../mod/photos.php:1520 -msgid "Show to Contacts" -msgstr "Montrer aux Contacts" - -#: ../../mod/settings.php:1150 -msgid "Default Private Post" -msgstr "Message privé par défaut" - -#: ../../mod/settings.php:1151 -msgid "Default Public Post" -msgstr "Message publique par défaut" - -#: ../../mod/settings.php:1155 -msgid "Default Permissions for New Posts" -msgstr "Permissions par défaut pour les nouvelles publications" - -#: ../../mod/settings.php:1167 -msgid "Maximum private messages per day from unknown people:" -msgstr "Maximum de messages privés d'inconnus par jour:" - -#: ../../mod/settings.php:1170 -msgid "Notification Settings" -msgstr "Réglages de notification" - -#: ../../mod/settings.php:1171 -msgid "By default post a status message when:" -msgstr "Par défaut, poster un statut quand:" - -#: ../../mod/settings.php:1172 -msgid "accepting a friend request" -msgstr "j'accepte un ami" - -#: ../../mod/settings.php:1173 -msgid "joining a forum/community" -msgstr "joignant un forum/une communauté" - -#: ../../mod/settings.php:1174 -msgid "making an interesting profile change" -msgstr "je fais une modification intéressante de mon profil" - -#: ../../mod/settings.php:1175 -msgid "Send a notification email when:" -msgstr "Envoyer un courriel de notification quand:" - -#: ../../mod/settings.php:1176 -msgid "You receive an introduction" -msgstr "Vous recevez une introduction" - -#: ../../mod/settings.php:1177 -msgid "Your introductions are confirmed" -msgstr "Vos introductions sont confirmées" - -#: ../../mod/settings.php:1178 -msgid "Someone writes on your profile wall" -msgstr "Quelqu'un écrit sur votre mur" - -#: ../../mod/settings.php:1179 -msgid "Someone writes a followup comment" -msgstr "Quelqu'un vous commente" - -#: ../../mod/settings.php:1180 -msgid "You receive a private message" -msgstr "Vous recevez un message privé" - -#: ../../mod/settings.php:1181 -msgid "You receive a friend suggestion" -msgstr "Vous avez reçu une suggestion d'ami" - -#: ../../mod/settings.php:1182 -msgid "You are tagged in a post" -msgstr "Vous avez été étiquetté dans une publication" - -#: ../../mod/settings.php:1183 -msgid "You are poked/prodded/etc. in a post" -msgstr "Vous avez été sollicité dans une publication" - -#: ../../mod/settings.php:1185 -msgid "Text-only notification emails" -msgstr "" - -#: ../../mod/settings.php:1187 -msgid "Send text only notification emails, without the html part" -msgstr "" - -#: ../../mod/settings.php:1189 -msgid "Advanced Account/Page Type Settings" -msgstr "Paramètres avancés de compte/page" - -#: ../../mod/settings.php:1190 -msgid "Change the behaviour of this account for special situations" -msgstr "Modifier le comportement de ce compte dans certaines situations" - -#: ../../mod/settings.php:1193 -msgid "Relocate" -msgstr "Relocaliser" - -#: ../../mod/settings.php:1194 -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 "Si vous avez migré ce profil depuis un autre serveur et que vos contacts ne reçoivent plus vos mises à jour, essayez ce bouton." - -#: ../../mod/settings.php:1195 -msgid "Resend relocate message to contacts" -msgstr "Renvoyer un message de relocalisation aux contacts." - -#: ../../mod/dfrn_request.php:95 -msgid "This introduction has already been accepted." -msgstr "Cette introduction a déjà été acceptée." - -#: ../../mod/dfrn_request.php:120 ../../mod/dfrn_request.php:518 -msgid "Profile location is not valid or does not contain profile information." -msgstr "L'emplacement du profil est invalide ou ne contient pas de profil valide." - -#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:523 -msgid "Warning: profile location has no identifiable owner name." -msgstr "Attention: l'emplacement du profil n'a pas de nom identifiable." - -#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:525 -msgid "Warning: profile location has no profile photo." -msgstr "Attention: l'emplacement du profil n'a pas de photo de profil." - -#: ../../mod/dfrn_request.php:130 ../../mod/dfrn_request.php:528 +#: ../../mod/dfrn_confirm.php:571 #, 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 paramètre requis n'a pas été trouvé à l'endroit indiqué" -msgstr[1] "%d paramètres requis n'ont pas été trouvés à l'endroit indiqué" +msgid "No user record found for '%s' " +msgstr "Pas d'utilisateur trouvé pour '%s' " -#: ../../mod/dfrn_request.php:172 -msgid "Introduction complete." -msgstr "Phase d'introduction achevée." +#: ../../mod/dfrn_confirm.php:581 +msgid "Our site encryption key is apparently messed up." +msgstr "Notre clé de chiffrement de site est apparemment corrompue." -#: ../../mod/dfrn_request.php:214 -msgid "Unrecoverable protocol error." -msgstr "Erreur de protocole non-récupérable." +#: ../../mod/dfrn_confirm.php:592 +msgid "Empty site URL was provided or URL could not be decrypted by us." +msgstr "URL de site absente ou indéchiffrable." -#: ../../mod/dfrn_request.php:242 -msgid "Profile unavailable." -msgstr "Profil indisponible." +#: ../../mod/dfrn_confirm.php:613 +msgid "Contact record was not found for you on our site." +msgstr "Pas d'entrée pour ce contact sur notre site." -#: ../../mod/dfrn_request.php:267 +#: ../../mod/dfrn_confirm.php:627 #, php-format -msgid "%s has received too many connection requests today." -msgstr "%s a reçu trop de demandes d'introduction aujourd'hui." +msgid "Site public key not available in contact record for URL %s." +msgstr "La clé publique du site ne se trouve pas dans l'enregistrement du contact pour l'URL %s." -#: ../../mod/dfrn_request.php:268 -msgid "Spam protection measures have been invoked." -msgstr "Des mesures de protection contre le spam ont été déclenchées." - -#: ../../mod/dfrn_request.php:269 -msgid "Friends are advised to please try again in 24 hours." -msgstr "Les relations sont encouragées à attendre 24 heures pour recommencer." - -#: ../../mod/dfrn_request.php:331 -msgid "Invalid locator" -msgstr "Localisateur invalide" - -#: ../../mod/dfrn_request.php:340 -msgid "Invalid email address." -msgstr "Adresse courriel invalide." - -#: ../../mod/dfrn_request.php:367 -msgid "This account has not been configured for email. Request failed." -msgstr "Ce compte n'a pas été configuré pour les échanges de courriel. Requête avortée." - -#: ../../mod/dfrn_request.php:463 -msgid "Unable to resolve your name at the provided location." -msgstr "Impossible de résoudre votre nom à l'emplacement fourni." - -#: ../../mod/dfrn_request.php:476 -msgid "You have already introduced yourself here." -msgstr "Vous vous êtes déjà présenté ici." - -#: ../../mod/dfrn_request.php:480 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Il semblerait que vous soyez déjà ami avec %s." - -#: ../../mod/dfrn_request.php:501 -msgid "Invalid profile URL." -msgstr "URL de profil invalide." - -#: ../../mod/dfrn_request.php:507 ../../include/follow.php:27 -msgid "Disallowed profile URL." -msgstr "URL de profil interdite." - -#: ../../mod/dfrn_request.php:597 -msgid "Your introduction has been sent." -msgstr "Votre introduction a été envoyée." - -#: ../../mod/dfrn_request.php:650 -msgid "Please login to confirm introduction." -msgstr "Connectez-vous pour confirmer l'introduction." - -#: ../../mod/dfrn_request.php:660 +#: ../../mod/dfrn_confirm.php:647 msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "Identité incorrecte actuellement connectée. Merci de vous connecter à ce profil." +"The ID provided by your system is a duplicate on our system. It should work " +"if you try again." +msgstr "L'identifiant fourni par votre système fait doublon sur le notre. Cela peut fonctionner si vous réessayez." -#: ../../mod/dfrn_request.php:671 -msgid "Hide this contact" -msgstr "Cacher ce contact" +#: ../../mod/dfrn_confirm.php:658 +msgid "Unable to set your contact credentials on our system." +msgstr "Impossible de vous définir des permissions sur notre système." -#: ../../mod/dfrn_request.php:674 +#: ../../mod/dfrn_confirm.php:725 +msgid "Unable to update your contact profile details on our system" +msgstr "Impossible de mettre les détails de votre profil à jour sur notre système" + +#: ../../mod/dfrn_confirm.php:797 #, php-format -msgid "Welcome home %s." -msgstr "Bienvenue chez vous, %s." +msgid "%1$s has joined %2$s" +msgstr "%1$s a rejoint %2$s" -#: ../../mod/dfrn_request.php:675 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Merci de confirmer votre demande d'introduction auprès de %s." +#: ../../mod/item.php:114 +msgid "Unable to locate original post." +msgstr "Impossible de localiser la publication originale." -#: ../../mod/dfrn_request.php:676 -msgid "Confirm" -msgstr "Confirmer" +#: ../../mod/item.php:346 +msgid "Empty post discarded." +msgstr "Publication vide rejetée." -#: ../../mod/dfrn_request.php:804 -msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"communications networks:" -msgstr "Merci d'entrer votre \"adresse d'identité\" de l'un des réseaux de communication suivant:" +#: ../../mod/item.php:839 +msgid "System error. Post not saved." +msgstr "Erreur système. Publication non sauvée." -#: ../../mod/dfrn_request.php:824 -msgid "" -"If you are not yet a member of the free social web, follow this link to find a public" -" Friendica site and join us today." -msgstr "Si vous n'êtes pas encore membre du web social libre, suivez ce lien pour trouver un site Friendica ouvert au public et nous rejoindre dès aujourd'hui." - -#: ../../mod/dfrn_request.php:827 -msgid "Friend/Connection Request" -msgstr "Requête de relation/amitié" - -#: ../../mod/dfrn_request.php:828 -msgid "" -"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " -"testuser@identi.ca" -msgstr "Exemples : jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" - -#: ../../mod/dfrn_request.php:829 -msgid "Please answer the following:" -msgstr "Merci de répondre à ce qui suit:" - -#: ../../mod/dfrn_request.php:830 -#, php-format -msgid "Does %s know you?" -msgstr "Est-ce que %s vous connaît?" - -#: ../../mod/dfrn_request.php:834 -msgid "Add a personal note:" -msgstr "Ajouter une note personnelle:" - -#: ../../mod/dfrn_request.php:836 ../../include/contact_selectors.php:76 -msgid "Friendica" -msgstr "Friendica" - -#: ../../mod/dfrn_request.php:837 -msgid "StatusNet/Federated Social Web" -msgstr "StatusNet/Federated Social Web" - -#: ../../mod/dfrn_request.php:839 +#: ../../mod/item.php:965 #, php-format msgid "" -" - please do not use this form. Instead, enter %s into your Diaspora search" -" bar." -msgstr " - merci de ne pas utiliser ce formulaire. Entrez plutôt %s dans votre barre de recherche Diaspora." +"This message was sent to you by %s, a member of the Friendica social " +"network." +msgstr "Ce message vous a été envoyé par %s, membre du réseau social Friendica." -#: ../../mod/dfrn_request.php:840 -msgid "Your Identity Address:" -msgstr "Votre adresse d'identité:" - -#: ../../mod/dfrn_request.php:843 -msgid "Submit Request" -msgstr "Envoyer la requête" - -#: ../../mod/register.php:90 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "Inscription réussie. Vérifiez vos emails pour la suite des instructions." - -#: ../../mod/register.php:96 +#: ../../mod/item.php:967 #, php-format +msgid "You may visit them online at %s" +msgstr "Vous pouvez leur rendre visite sur %s" + +#: ../../mod/item.php:968 msgid "" -"Failed to send email message. Here your accout details:
login: %s
" -"password: %s

You can change your password after login." -msgstr "Impossible d’envoyer le courriel de confirmation. Voici vos informations de connexion:
identifiant : %s
mot de passe : %s

Vous pourrez changer votre mot de passe une fois connecté." +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." +msgstr "Merci de contacter l’émetteur en répondant à cette publication si vous ne souhaitez pas recevoir ces messages." -#: ../../mod/register.php:105 -msgid "Your registration can not be processed." -msgstr "Votre inscription ne peut être traitée." +#: ../../mod/item.php:972 +#, php-format +msgid "%s posted an update." +msgstr "%s a publié une mise à jour." -#: ../../mod/register.php:148 -msgid "Your registration is pending approval by the site owner." -msgstr "Votre inscription attend une validation du propriétaire du site." +#: ../../mod/profile_photo.php:44 +msgid "Image uploaded but image cropping failed." +msgstr "Image envoyée, mais impossible de la retailler." -#: ../../mod/register.php:186 ../../mod/uimport.php:50 +#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84 +#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "Réduction de la taille de l'image [%s] échouée." + +#: ../../mod/profile_photo.php:118 msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Le nombre d'inscriptions quotidiennes pour ce site a été dépassé. Merci de réessayer demain." +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Rechargez la page avec la touche Maj pressée, ou bien effacez le cache du navigateur, si d'aventure la nouvelle photo n'apparaissait pas immédiatement." -#: ../../mod/register.php:214 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking 'Register'." -msgstr "Vous pouvez (si vous le souhaitez) remplir ce formulaire via OpenID. Fournissez votre OpenID et cliquez \"S'inscrire\"." +#: ../../mod/profile_photo.php:128 +msgid "Unable to process image" +msgstr "Impossible de traiter l'image" -#: ../../mod/register.php:215 -msgid "" -"If you are not familiar with OpenID, please leave that field blank and fill " -"in the rest of the items." -msgstr "Si vous n'êtes pas familier avec OpenID, laissez ce champ vide et remplissez le reste." +#: ../../mod/profile_photo.php:242 +msgid "Upload File:" +msgstr "Fichier à téléverser:" -#: ../../mod/register.php:216 -msgid "Your OpenID (optional): " -msgstr "Votre OpenID (facultatif): " +#: ../../mod/profile_photo.php:243 +msgid "Select a profile:" +msgstr "Choisir un profil:" -#: ../../mod/register.php:230 -msgid "Include your profile in member directory?" -msgstr "Inclure votre profil dans l'annuaire des membres?" +#: ../../mod/profile_photo.php:245 +msgid "Upload" +msgstr "Téléverser" -#: ../../mod/register.php:251 -msgid "Membership on this site is by invitation only." -msgstr "L'inscription à ce site se fait uniquement sur invitation." +#: ../../mod/profile_photo.php:248 +msgid "skip this step" +msgstr "ignorer cette étape" -#: ../../mod/register.php:252 -msgid "Your invitation ID: " -msgstr "Votre ID d'invitation: " +#: ../../mod/profile_photo.php:248 +msgid "select a photo from your photo albums" +msgstr "choisissez une photo depuis vos albums" -#: ../../mod/register.php:263 -msgid "Your Full Name (e.g. Joe Smith): " -msgstr "Votre nom complet (p.ex. Michel Dupont): " +#: ../../mod/profile_photo.php:262 +msgid "Crop Image" +msgstr "(Re)cadrer l'image" -#: ../../mod/register.php:264 -msgid "Your Email Address: " -msgstr "Votre adresse courriel: " +#: ../../mod/profile_photo.php:263 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Ajustez le cadre de l'image pour une visualisation optimale." -#: ../../mod/register.php:265 -msgid "" -"Choose a profile nickname. This must begin with a text character. Your " -"profile address on this site will then be " -"'nickname@$sitename'." -msgstr "Choisissez un pseudo. Celui devra commencer par une lettre. L'adresse de votre profil en découlera sous la forme '<strong>pseudo@$sitename</strong>'." +#: ../../mod/profile_photo.php:265 +msgid "Done Editing" +msgstr "Édition terminée" -#: ../../mod/register.php:266 -msgid "Choose a nickname: " -msgstr "Choisir un pseudo: " +#: ../../mod/profile_photo.php:299 +msgid "Image uploaded successfully." +msgstr "Image téléversée avec succès." -#: ../../mod/register.php:269 ../../boot.php:1241 ../../include/nav.php:109 -msgid "Register" -msgstr "S'inscrire" +#: ../../mod/allfriends.php:34 +#, php-format +msgid "Friends of %s" +msgstr "Amis de %s" -#: ../../mod/register.php:275 ../../mod/uimport.php:64 -msgid "Import" -msgstr "Importer" - -#: ../../mod/register.php:276 -msgid "Import your profile to this friendica instance" -msgstr "Importer votre profile dans cette instance de friendica" - -#: ../../mod/maintenance.php:5 -msgid "System down for maintenance" -msgstr "Système indisponible pour cause de maintenance" - -#: ../../mod/search.php:99 ../../include/text.php:953 -#: ../../include/text.php:954 ../../include/nav.php:119 -msgid "Search" -msgstr "Recherche" - -#: ../../mod/directory.php:51 ../../view/theme/diabook/theme.php:525 -msgid "Global Directory" -msgstr "Annuaire global" +#: ../../mod/allfriends.php:40 +msgid "No friends to display." +msgstr "Pas d'amis à afficher." #: ../../mod/directory.php:59 msgid "Find on this site" @@ -4551,607 +7896,14 @@ msgstr "Trouver sur ce site" msgid "Site Directory" msgstr "Annuaire local" -#: ../../mod/directory.php:113 ../../mod/profiles.php:750 -msgid "Age: " -msgstr "Age: " - #: ../../mod/directory.php:116 msgid "Gender: " msgstr "Genre: " -#: ../../mod/directory.php:138 ../../boot.php:1650 -#: ../../include/profile_advanced.php:17 -msgid "Gender:" -msgstr "Genre:" - -#: ../../mod/directory.php:140 ../../boot.php:1653 -#: ../../include/profile_advanced.php:37 -msgid "Status:" -msgstr "Statut:" - -#: ../../mod/directory.php:142 ../../boot.php:1655 -#: ../../include/profile_advanced.php:48 -msgid "Homepage:" -msgstr "Page personnelle:" - -#: ../../mod/directory.php:144 ../../boot.php:1657 -#: ../../include/profile_advanced.php:58 -msgid "About:" -msgstr "À propos:" - #: ../../mod/directory.php:189 msgid "No entries (some entries may be hidden)." msgstr "Aucune entrée (certaines peuvent être cachées)." -#: ../../mod/delegate.php:101 -msgid "No potential page delegates located." -msgstr "Pas de délégataire potentiel." - -#: ../../mod/delegate.php:130 ../../include/nav.php:170 -msgid "Delegate Page Management" -msgstr "Déléguer la gestion de la page" - -#: ../../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 "Les délégataires seront capables de gérer tous les aspects de ce compte ou de cette page, à l'exception des réglages de compte. Merci de ne pas déléguer votre compte principal à quelqu'un en qui vous n'avez pas une confiance absolue." - -#: ../../mod/delegate.php:133 -msgid "Existing Page Managers" -msgstr "Gestionnaires existants" - -#: ../../mod/delegate.php:135 -msgid "Existing Page Delegates" -msgstr "Délégataires existants" - -#: ../../mod/delegate.php:137 -msgid "Potential Delegates" -msgstr "Délégataires potentiels" - -#: ../../mod/delegate.php:140 -msgid "Add" -msgstr "Ajouter" - -#: ../../mod/delegate.php:141 -msgid "No entries." -msgstr "Aucune entrée." - -#: ../../mod/common.php:42 -msgid "Common Friends" -msgstr "Amis communs" - -#: ../../mod/common.php:78 -msgid "No contacts in common." -msgstr "Pas de contacts en commun." - -#: ../../mod/uexport.php:77 -msgid "Export account" -msgstr "Exporter le compte" - -#: ../../mod/uexport.php:77 -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 "Exportez votre compte, vos infos et vos contacts. Vous pourrez utiliser le résultat comme sauvegarde et/ou pour le ré-importer sur un autre serveur." - -#: ../../mod/uexport.php:78 -msgid "Export all" -msgstr "Tout exporter" - -#: ../../mod/uexport.php:78 -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 "Exportez votre compte, vos infos, vos contacts et toutes vos publications (en JSON). Le fichier résultant peut être extrêmement volumineux, et sa production peut durer longtemps. Vous pourrez l'utiliser pour faire une sauvegarde complète (à part les photos)." - -#: ../../mod/mood.php:62 ../../include/conversation.php:227 -#, php-format -msgid "%1$s is currently %2$s" -msgstr "%1$s est d'humeur %2$s" - -#: ../../mod/mood.php:133 -msgid "Mood" -msgstr "Humeur" - -#: ../../mod/mood.php:134 -msgid "Set your current mood and tell your friends" -msgstr "Spécifiez votre humeur du moment, et informez vos amis" - -#: ../../mod/suggest.php:27 -msgid "Do you really want to delete this suggestion?" -msgstr "Voulez-vous vraiment supprimer cette suggestion ?" - -#: ../../mod/suggest.php:68 ../../include/contact_widgets.php:35 -#: ../../view/theme/diabook/theme.php:527 -msgid "Friend Suggestions" -msgstr "Suggestions d'amitiés/contacts" - -#: ../../mod/suggest.php:74 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Aucune suggestion. Si ce site est récent, merci de recommencer dans 24h." - -#: ../../mod/suggest.php:92 -msgid "Ignore/Hide" -msgstr "Ignorer/cacher" - -#: ../../mod/profiles.php:37 -msgid "Profile deleted." -msgstr "Profil supprimé." - -#: ../../mod/profiles.php:55 ../../mod/profiles.php:89 -msgid "Profile-" -msgstr "Profil-" - -#: ../../mod/profiles.php:74 ../../mod/profiles.php:117 -msgid "New profile created." -msgstr "Nouveau profil créé." - -#: ../../mod/profiles.php:95 -msgid "Profile unavailable to clone." -msgstr "Ce profil ne peut être cloné." - -#: ../../mod/profiles.php:189 -msgid "Profile Name is required." -msgstr "Le nom du profil est requis." - -#: ../../mod/profiles.php:340 -msgid "Marital Status" -msgstr "Statut marital" - -#: ../../mod/profiles.php:344 -msgid "Romantic Partner" -msgstr "Partenaire/conjoint" - -#: ../../mod/profiles.php:348 -msgid "Likes" -msgstr "Derniers \"J'aime\"" - -#: ../../mod/profiles.php:352 -msgid "Dislikes" -msgstr "Derniers \"Je n'aime pas\"" - -#: ../../mod/profiles.php:356 -msgid "Work/Employment" -msgstr "Travail/Occupation" - -#: ../../mod/profiles.php:359 -msgid "Religion" -msgstr "Religion" - -#: ../../mod/profiles.php:363 -msgid "Political Views" -msgstr "Tendance politique" - -#: ../../mod/profiles.php:367 -msgid "Gender" -msgstr "Sexe" - -#: ../../mod/profiles.php:371 -msgid "Sexual Preference" -msgstr "Préférence sexuelle" - -#: ../../mod/profiles.php:375 -msgid "Homepage" -msgstr "Site internet" - -#: ../../mod/profiles.php:379 ../../mod/profiles.php:698 -msgid "Interests" -msgstr "Centres d'intérêt" - -#: ../../mod/profiles.php:383 -msgid "Address" -msgstr "Adresse" - -#: ../../mod/profiles.php:390 ../../mod/profiles.php:694 -msgid "Location" -msgstr "Localisation" - -#: ../../mod/profiles.php:473 -msgid "Profile updated." -msgstr "Profil mis à jour." - -#: ../../mod/profiles.php:568 -msgid " and " -msgstr " et " - -#: ../../mod/profiles.php:576 -msgid "public profile" -msgstr "profil public" - -#: ../../mod/profiles.php:579 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s a changé %2$s en “%3$s”" - -#: ../../mod/profiles.php:580 -#, php-format -msgid " - Visit %1$s's %2$s" -msgstr "Visiter le %2$s de %1$s" - -#: ../../mod/profiles.php:583 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s a mis à jour son %2$s, en modifiant %3$s." - -#: ../../mod/profiles.php:658 -msgid "Hide contacts and friends:" -msgstr "Cacher mes contacts et amis:" - -#: ../../mod/profiles.php:663 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "Cacher ma liste d'amis/contacts des visiteurs de ce profil?" - -#: ../../mod/profiles.php:685 -msgid "Edit Profile Details" -msgstr "Éditer les détails du profil" - -#: ../../mod/profiles.php:687 -msgid "Change Profile Photo" -msgstr "Changer la photo du profil" - -#: ../../mod/profiles.php:688 -msgid "View this profile" -msgstr "Voir ce profil" - -#: ../../mod/profiles.php:689 -msgid "Create a new profile using these settings" -msgstr "Créer un nouveau profil en utilisant ces réglages" - -#: ../../mod/profiles.php:690 -msgid "Clone this profile" -msgstr "Cloner ce profil" - -#: ../../mod/profiles.php:691 -msgid "Delete this profile" -msgstr "Supprimer ce profil" - -#: ../../mod/profiles.php:692 -msgid "Basic information" -msgstr "Information de base" - -#: ../../mod/profiles.php:693 -msgid "Profile picture" -msgstr "Image de profil" - -#: ../../mod/profiles.php:695 -msgid "Preferences" -msgstr "Préférences" - -#: ../../mod/profiles.php:696 -msgid "Status information" -msgstr "Information sur le statut" - -#: ../../mod/profiles.php:697 -msgid "Additional information" -msgstr "Information additionnelle" - -#: ../../mod/profiles.php:700 -msgid "Profile Name:" -msgstr "Nom du profil:" - -#: ../../mod/profiles.php:701 -msgid "Your Full Name:" -msgstr "Votre nom complet:" - -#: ../../mod/profiles.php:702 -msgid "Title/Description:" -msgstr "Titre/Description:" - -#: ../../mod/profiles.php:703 -msgid "Your Gender:" -msgstr "Votre genre:" - -#: ../../mod/profiles.php:704 -#, php-format -msgid "Birthday (%s):" -msgstr "Anniversaire (%s):" - -#: ../../mod/profiles.php:705 -msgid "Street Address:" -msgstr "Adresse postale:" - -#: ../../mod/profiles.php:706 -msgid "Locality/City:" -msgstr "Ville/Localité:" - -#: ../../mod/profiles.php:707 -msgid "Postal/Zip Code:" -msgstr "Code postal:" - -#: ../../mod/profiles.php:708 -msgid "Country:" -msgstr "Pays:" - -#: ../../mod/profiles.php:709 -msgid "Region/State:" -msgstr "Région/État:" - -#: ../../mod/profiles.php:710 -msgid " Marital Status:" -msgstr " Statut marital:" - -#: ../../mod/profiles.php:711 -msgid "Who: (if applicable)" -msgstr "Qui: (si pertinent)" - -#: ../../mod/profiles.php:712 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Exemples: cathy123, Cathy Williams, cathy@example.com" - -#: ../../mod/profiles.php:713 -msgid "Since [date]:" -msgstr "Depuis [date] :" - -#: ../../mod/profiles.php:714 ../../include/profile_advanced.php:46 -msgid "Sexual Preference:" -msgstr "Préférence sexuelle:" - -#: ../../mod/profiles.php:715 -msgid "Homepage URL:" -msgstr "Page personnelle:" - -#: ../../mod/profiles.php:716 ../../include/profile_advanced.php:50 -msgid "Hometown:" -msgstr " Ville d'origine:" - -#: ../../mod/profiles.php:717 ../../include/profile_advanced.php:54 -msgid "Political Views:" -msgstr "Opinions politiques:" - -#: ../../mod/profiles.php:718 -msgid "Religious Views:" -msgstr "Opinions religieuses:" - -#: ../../mod/profiles.php:719 -msgid "Public Keywords:" -msgstr "Mots-clés publics:" - -#: ../../mod/profiles.php:720 -msgid "Private Keywords:" -msgstr "Mots-clés privés:" - -#: ../../mod/profiles.php:721 ../../include/profile_advanced.php:62 -msgid "Likes:" -msgstr "J'aime :" - -#: ../../mod/profiles.php:722 ../../include/profile_advanced.php:64 -msgid "Dislikes:" -msgstr "Je n'aime pas :" - -#: ../../mod/profiles.php:723 -msgid "Example: fishing photography software" -msgstr "Exemple: football dessin programmation" - -#: ../../mod/profiles.php:724 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "(Utilisés pour vous suggérer des amis potentiels, peuvent être vus par autrui)" - -#: ../../mod/profiles.php:725 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(Utilisés pour rechercher dans les profils, ne seront jamais montrés à autrui)" - -#: ../../mod/profiles.php:726 -msgid "Tell us about yourself..." -msgstr "Parlez-nous de vous..." - -#: ../../mod/profiles.php:727 -msgid "Hobbies/Interests" -msgstr "Passe-temps/Centres d'intérêt" - -#: ../../mod/profiles.php:728 -msgid "Contact information and Social Networks" -msgstr "Coordonnées/Réseaux sociaux" - -#: ../../mod/profiles.php:729 -msgid "Musical interests" -msgstr "Goûts musicaux" - -#: ../../mod/profiles.php:730 -msgid "Books, literature" -msgstr "Lectures" - -#: ../../mod/profiles.php:731 -msgid "Television" -msgstr "Télévision" - -#: ../../mod/profiles.php:732 -msgid "Film/dance/culture/entertainment" -msgstr "Cinéma/Danse/Culture/Divertissement" - -#: ../../mod/profiles.php:733 -msgid "Love/romance" -msgstr "Amour/Romance" - -#: ../../mod/profiles.php:734 -msgid "Work/employment" -msgstr "Activité professionnelle/Occupation" - -#: ../../mod/profiles.php:735 -msgid "School/education" -msgstr "Études/Formation" - -#: ../../mod/profiles.php:740 -msgid "" -"This is your public profile.
It may " -"be visible to anybody using the internet." -msgstr "Ceci est votre profil public.
Il peut être visible par n'importe quel utilisateur d'Internet." - -#: ../../mod/profiles.php:803 -msgid "Edit/Manage Profiles" -msgstr "Editer/gérer les profils" - -#: ../../mod/profiles.php:804 ../../boot.php:1611 ../../boot.php:1637 -msgid "Change profile photo" -msgstr "Changer de photo de profil" - -#: ../../mod/profiles.php:805 ../../boot.php:1612 -msgid "Create New Profile" -msgstr "Créer un nouveau profil" - -#: ../../mod/profiles.php:816 ../../boot.php:1622 -msgid "Profile Image" -msgstr "Image du profil" - -#: ../../mod/profiles.php:818 ../../boot.php:1625 -msgid "visible to everybody" -msgstr "visible par tous" - -#: ../../mod/profiles.php:819 ../../boot.php:1626 -msgid "Edit visibility" -msgstr "Changer la visibilité" - -#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 -msgid "Item not found" -msgstr "Élément introuvable" - -#: ../../mod/editpost.php:39 -msgid "Edit post" -msgstr "Éditer la publication" - -#: ../../mod/editpost.php:111 ../../include/conversation.php:1092 -msgid "upload photo" -msgstr "envoi image" - -#: ../../mod/editpost.php:112 ../../include/conversation.php:1093 -msgid "Attach file" -msgstr "Joindre fichier" - -#: ../../mod/editpost.php:113 ../../include/conversation.php:1094 -msgid "attach file" -msgstr "ajout fichier" - -#: ../../mod/editpost.php:115 ../../include/conversation.php:1096 -msgid "web link" -msgstr "lien web" - -#: ../../mod/editpost.php:116 ../../include/conversation.php:1097 -msgid "Insert video link" -msgstr "Insérer un lien video" - -#: ../../mod/editpost.php:117 ../../include/conversation.php:1098 -msgid "video link" -msgstr "lien vidéo" - -#: ../../mod/editpost.php:118 ../../include/conversation.php:1099 -msgid "Insert audio link" -msgstr "Insérer un lien audio" - -#: ../../mod/editpost.php:119 ../../include/conversation.php:1100 -msgid "audio link" -msgstr "lien audio" - -#: ../../mod/editpost.php:120 ../../include/conversation.php:1101 -msgid "Set your location" -msgstr "Définir votre localisation" - -#: ../../mod/editpost.php:121 ../../include/conversation.php:1102 -msgid "set location" -msgstr "spéc. localisation" - -#: ../../mod/editpost.php:122 ../../include/conversation.php:1103 -msgid "Clear browser location" -msgstr "Effacer la localisation du navigateur" - -#: ../../mod/editpost.php:123 ../../include/conversation.php:1104 -msgid "clear location" -msgstr "supp. localisation" - -#: ../../mod/editpost.php:125 ../../include/conversation.php:1110 -msgid "Permission settings" -msgstr "Réglages des permissions" - -#: ../../mod/editpost.php:133 ../../include/conversation.php:1119 -msgid "CC: email addresses" -msgstr "CC: adresses de courriel" - -#: ../../mod/editpost.php:134 ../../include/conversation.php:1120 -msgid "Public post" -msgstr "Publication publique" - -#: ../../mod/editpost.php:137 ../../include/conversation.php:1106 -msgid "Set title" -msgstr "Définir un titre" - -#: ../../mod/editpost.php:139 ../../include/conversation.php:1108 -msgid "Categories (comma-separated list)" -msgstr "Catégories (séparées par des virgules)" - -#: ../../mod/editpost.php:140 ../../include/conversation.php:1122 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Exemple: bob@exemple.com, mary@exemple.com" - -#: ../../mod/friendica.php:59 -msgid "This is Friendica, version" -msgstr "Motorisé par Friendica version" - -#: ../../mod/friendica.php:60 -msgid "running at web location" -msgstr "hébergé sur" - -#: ../../mod/friendica.php:62 -msgid "" -"Please visit Friendica.com to learn " -"more about the Friendica project." -msgstr "Merci de vous rendre sur Friendica.com si vous souhaitez en savoir plus sur le projet Friendica." - -#: ../../mod/friendica.php:64 -msgid "Bug reports and issues: please visit" -msgstr "Pour les rapports de bugs: rendez vous sur" - -#: ../../mod/friendica.php:65 -msgid "" -"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " -"dot com" -msgstr "Suggestions, remerciements, donations, etc. - écrivez à \"Info\" arob. Friendica - point com" - -#: ../../mod/friendica.php:79 -msgid "Installed plugins/addons/apps:" -msgstr "Extensions/greffons/applications installées:" - -#: ../../mod/friendica.php:92 -msgid "No installed plugins/addons/apps" -msgstr "Extensions/greffons/applications non installées:" - -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" -msgstr "Autoriser l'application à se connecter" - -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "Retournez à votre application et saisissez ce Code de Sécurité : " - -#: ../../mod/api.php:89 -msgid "Please login to continue." -msgstr "Merci de vous connecter pour continuer." - -#: ../../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 "Voulez-vous autoriser cette application à accéder à vos publications et contacts, et/ou à créer des billets à votre place?" - -#: ../../mod/lockview.php:31 ../../mod/lockview.php:39 -msgid "Remote privacy information not available." -msgstr "Informations de confidentialité indisponibles." - -#: ../../mod/lockview.php:48 -msgid "Visible to:" -msgstr "Visible par:" - -#: ../../mod/notes.php:44 ../../boot.php:2150 -msgid "Personal Notes" -msgstr "Notes personnelles" - -#: ../../mod/localtime.php:12 ../../include/bb2diaspora.php:148 -#: ../../include/event.php:11 -msgid "l F d, Y \\@ g:i A" -msgstr "l F d, Y \\@ g:i A" - #: ../../mod/localtime.php:24 msgid "Time Conversion" msgstr "Conversion temporelle" @@ -5180,2703 +7932,3 @@ msgstr "Temps local converti : %s" #: ../../mod/localtime.php:41 msgid "Please select your timezone:" msgstr "Sélectionner votre zone :" - -#: ../../mod/poke.php:192 -msgid "Poke/Prod" -msgstr "Solliciter" - -#: ../../mod/poke.php:193 -msgid "poke, prod or do other things to somebody" -msgstr "solliciter (poke/...) quelqu'un" - -#: ../../mod/poke.php:194 -msgid "Recipient" -msgstr "Destinataire" - -#: ../../mod/poke.php:195 -msgid "Choose what you wish to do to recipient" -msgstr "Choisissez ce que vous voulez faire au destinataire" - -#: ../../mod/poke.php:198 -msgid "Make this post private" -msgstr "Rendez ce message privé" - -#: ../../mod/invite.php:27 -msgid "Total invitation limit exceeded." -msgstr "La limite d'invitation totale est éxédée." - -#: ../../mod/invite.php:49 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s : Adresse de courriel invalide." - -#: ../../mod/invite.php:73 -msgid "Please join us on Friendica" -msgstr "Rejoignez-nous sur Friendica" - -#: ../../mod/invite.php:84 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Limite d'invitation exédée. Veuillez contacter l'administrateur de votre site." - -#: ../../mod/invite.php:89 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : L'envoi du message a échoué." - -#: ../../mod/invite.php:93 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d message envoyé." -msgstr[1] "%d messages envoyés." - -#: ../../mod/invite.php:112 -msgid "You have no more invitations available" -msgstr "Vous n'avez plus d'invitations disponibles" - -#: ../../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 "Visitez %s pour une liste des sites publics que vous pouvez rejoindre. Les membres de Friendica appartenant à d'autres sites peuvent s'interconnecter, ainsi qu'avec les membres de plusieurs autres réseaux sociaux." - -#: ../../mod/invite.php:122 -#, php-format -msgid "" -"To accept this invitation, please visit and register at %s or any other " -"public Friendica website." -msgstr "Pour accepter cette invitation, merci d'aller vous inscrire sur %s, ou n'importe quel autre site Friendica public." - -#: ../../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 "Les sites Friendica sont tous interconnectés pour créer un immense réseau social respectueux de la vie privée, possédé et contrôllé par ses membres. Ils peuvent également interagir avec plusieurs réseaux sociaux traditionnels. Voir %s pour une liste d'autres sites Friendica que vous pourriez rejoindre." - -#: ../../mod/invite.php:126 -msgid "" -"Our apologies. This system is not currently configured to connect with other" -" public sites or invite members." -msgstr "Toutes nos excuses. Ce système n'est pas configuré pour se connecter à d'autres sites publics ou inviter de nouveaux membres." - -#: ../../mod/invite.php:132 -msgid "Send invitations" -msgstr "Envoyer des invitations" - -#: ../../mod/invite.php:133 -msgid "Enter email addresses, one per line:" -msgstr "Entrez les adresses email, une par ligne:" - -#: ../../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 "Vous êtes cordialement invité à me rejoindre sur Friendica, et nous aider ainsi à créer un meilleur web social." - -#: ../../mod/invite.php:137 -msgid "You will need to supply this invitation code: $invite_code" -msgstr "Vous devrez fournir ce code d'invitation: $invite_code" - -#: ../../mod/invite.php:137 -msgid "" -"Once you have registered, please connect with me via my profile page at:" -msgstr "Une fois inscrit, connectez-vous à la page de mon profil sur:" - -#: ../../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 "Pour plus d'information sur le projet Friendica, et pourquoi nous croyons qu'il est important, merci de visiter http://friendica.com" - -#: ../../mod/photos.php:52 ../../boot.php:2129 -msgid "Photo Albums" -msgstr "Albums photo" - -#: ../../mod/photos.php:60 ../../mod/photos.php:155 ../../mod/photos.php:1064 -#: ../../mod/photos.php:1187 ../../mod/photos.php:1210 -#: ../../mod/photos.php:1760 ../../mod/photos.php:1772 -#: ../../view/theme/diabook/theme.php:499 -msgid "Contact Photos" -msgstr "Photos du contact" - -#: ../../mod/photos.php:67 ../../mod/photos.php:1262 ../../mod/photos.php:1819 -msgid "Upload New Photos" -msgstr "Téléverser de nouvelles photos" - -#: ../../mod/photos.php:144 -msgid "Contact information unavailable" -msgstr "Informations de contact indisponibles" - -#: ../../mod/photos.php:165 -msgid "Album not found." -msgstr "Album introuvable." - -#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204 -msgid "Delete Album" -msgstr "Effacer l'album" - -#: ../../mod/photos.php:198 -msgid "Do you really want to delete this photo album and all its photos?" -msgstr "Voulez-vous vraiment supprimer cet album photo et toutes ses photos ?" - -#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1515 -msgid "Delete Photo" -msgstr "Effacer la photo" - -#: ../../mod/photos.php:287 -msgid "Do you really want to delete this photo?" -msgstr "Voulez-vous vraiment supprimer cette photo ?" - -#: ../../mod/photos.php:662 -#, php-format -msgid "%1$s was tagged in %2$s by %3$s" -msgstr "%1$s a été étiqueté dans %2$s par %3$s" - -#: ../../mod/photos.php:662 -msgid "a photo" -msgstr "une photo" - -#: ../../mod/photos.php:767 -msgid "Image exceeds size limit of " -msgstr "L'image dépasse la taille maximale de " - -#: ../../mod/photos.php:775 -msgid "Image file is empty." -msgstr "Fichier image vide." - -#: ../../mod/photos.php:930 -msgid "No photos selected" -msgstr "Aucune photo sélectionnée" - -#: ../../mod/photos.php:1094 -#, php-format -msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." -msgstr "Vous avez utilisé %1$.2f Mo sur %2$.2f d'espace de stockage pour les photos." - -#: ../../mod/photos.php:1129 -msgid "Upload Photos" -msgstr "Téléverser des photos" - -#: ../../mod/photos.php:1133 ../../mod/photos.php:1199 -msgid "New album name: " -msgstr "Nom du nouvel album: " - -#: ../../mod/photos.php:1134 -msgid "or existing album name: " -msgstr "ou nom d'un album existant: " - -#: ../../mod/photos.php:1135 -msgid "Do not show a status post for this upload" -msgstr "Ne pas publier de notice de statut pour cet envoi" - -#: ../../mod/photos.php:1137 ../../mod/photos.php:1510 -msgid "Permissions" -msgstr "Permissions" - -#: ../../mod/photos.php:1148 -msgid "Private Photo" -msgstr "Photo privée" - -#: ../../mod/photos.php:1149 -msgid "Public Photo" -msgstr "Photo publique" - -#: ../../mod/photos.php:1212 -msgid "Edit Album" -msgstr "Éditer l'album" - -#: ../../mod/photos.php:1218 -msgid "Show Newest First" -msgstr "Plus récent d'abord" - -#: ../../mod/photos.php:1220 -msgid "Show Oldest First" -msgstr "Plus ancien d'abord" - -#: ../../mod/photos.php:1248 ../../mod/photos.php:1802 -msgid "View Photo" -msgstr "Voir la photo" - -#: ../../mod/photos.php:1294 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Interdit. L'accès à cet élément peut avoir été restreint." - -#: ../../mod/photos.php:1296 -msgid "Photo not available" -msgstr "Photo indisponible" - -#: ../../mod/photos.php:1352 -msgid "View photo" -msgstr "Voir photo" - -#: ../../mod/photos.php:1352 -msgid "Edit photo" -msgstr "Éditer la photo" - -#: ../../mod/photos.php:1353 -msgid "Use as profile photo" -msgstr "Utiliser comme photo de profil" - -#: ../../mod/photos.php:1378 -msgid "View Full Size" -msgstr "Voir en taille réelle" - -#: ../../mod/photos.php:1457 -msgid "Tags: " -msgstr "Étiquettes:" - -#: ../../mod/photos.php:1460 -msgid "[Remove any tag]" -msgstr "[Retirer toutes les étiquettes]" - -#: ../../mod/photos.php:1500 -msgid "Rotate CW (right)" -msgstr "Tourner dans le sens des aiguilles d'une montre (vers la droite)" - -#: ../../mod/photos.php:1501 -msgid "Rotate CCW (left)" -msgstr "Tourner dans le sens contraire des aiguilles d'une montre (vers la gauche)" - -#: ../../mod/photos.php:1503 -msgid "New album name" -msgstr "Nom du nouvel album" - -#: ../../mod/photos.php:1506 -msgid "Caption" -msgstr "Titre" - -#: ../../mod/photos.php:1508 -msgid "Add a Tag" -msgstr "Ajouter une étiquette" - -#: ../../mod/photos.php:1512 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Exemples: @bob, @Barbara_Jensen, @jim@example.com, #Californie, #vacances" - -#: ../../mod/photos.php:1521 -msgid "Private photo" -msgstr "Photo privée" - -#: ../../mod/photos.php:1522 -msgid "Public photo" -msgstr "Photo publique" - -#: ../../mod/photos.php:1544 ../../include/conversation.php:1090 -msgid "Share" -msgstr "Partager" - -#: ../../mod/photos.php:1817 -msgid "Recent Photos" -msgstr "Photos récentes" - -#: ../../mod/regmod.php:55 -msgid "Account approved." -msgstr "Inscription validée." - -#: ../../mod/regmod.php:92 -#, php-format -msgid "Registration revoked for %s" -msgstr "Inscription révoquée pour %s" - -#: ../../mod/regmod.php:104 -msgid "Please login." -msgstr "Merci de vous connecter." - -#: ../../mod/uimport.php:66 -msgid "Move account" -msgstr "Migrer le compte" - -#: ../../mod/uimport.php:67 -msgid "You can import an account from another Friendica server." -msgstr "Vous pouvez importer un compte d'un autre serveur Friendica." - -#: ../../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 "Vous devez exporter votre compte à partir de l'ancien serveur et le téléverser ici. Nous recréerons votre ancien compte ici avec tous vos contacts. Nous tenterons également d'informer vos amis que vous avez déménagé ici." - -#: ../../mod/uimport.php:69 -msgid "" -"This feature is experimental. We can't import contacts from the OStatus " -"network (statusnet/identi.ca) or from Diaspora" -msgstr "Cette fonctionnalité est expérimentale. Nous ne pouvons importer les contacts des réseaux OStatus (statusnet/identi.ca) ou Diaspora" - -#: ../../mod/uimport.php:70 -msgid "Account file" -msgstr "Fichier du compte" - -#: ../../mod/uimport.php:70 -msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" -msgstr "Pour exporter votre compte, allez dans \"Paramètres> Exporter vos données personnelles\" et sélectionnez \"exportation de compte\"" - -#: ../../mod/attach.php:8 -msgid "Item not available." -msgstr "Elément non disponible." - -#: ../../mod/attach.php:20 -msgid "Item was not found." -msgstr "Element introuvable." - -#: ../../boot.php:749 -msgid "Delete this item?" -msgstr "Effacer cet élément?" - -#: ../../boot.php:752 -msgid "show fewer" -msgstr "montrer moins" - -#: ../../boot.php:1122 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "Mise-à-jour %s échouée. Voir les journaux d'erreur." - -#: ../../boot.php:1240 -msgid "Create a New Account" -msgstr "Créer un nouveau compte" - -#: ../../boot.php:1265 ../../include/nav.php:73 -msgid "Logout" -msgstr "Se déconnecter" - -#: ../../boot.php:1268 -msgid "Nickname or Email address: " -msgstr "Pseudo ou courriel: " - -#: ../../boot.php:1269 -msgid "Password: " -msgstr "Mot de passe: " - -#: ../../boot.php:1270 -msgid "Remember me" -msgstr "Se souvenir de moi" - -#: ../../boot.php:1273 -msgid "Or login using OpenID: " -msgstr "Ou connectez-vous via OpenID: " - -#: ../../boot.php:1279 -msgid "Forgot your password?" -msgstr "Mot de passe oublié?" - -#: ../../boot.php:1282 -msgid "Website Terms of Service" -msgstr "Conditions d'utilisation du site internet" - -#: ../../boot.php:1283 -msgid "terms of service" -msgstr "conditions d'utilisation" - -#: ../../boot.php:1285 -msgid "Website Privacy Policy" -msgstr "Politique de confidentialité du site internet" - -#: ../../boot.php:1286 -msgid "privacy policy" -msgstr "politique de confidentialité" - -#: ../../boot.php:1419 -msgid "Requested account is not available." -msgstr "Le compte demandé n'est pas disponible." - -#: ../../boot.php:1501 ../../boot.php:1635 -#: ../../include/profile_advanced.php:84 -msgid "Edit profile" -msgstr "Editer le profil" - -#: ../../boot.php:1600 -msgid "Message" -msgstr "Message" - -#: ../../boot.php:1606 ../../include/nav.php:175 -msgid "Profiles" -msgstr "Profils" - -#: ../../boot.php:1606 -msgid "Manage/edit profiles" -msgstr "Gérer/éditer les profils" - -#: ../../boot.php:1706 -msgid "Network:" -msgstr "Réseau" - -#: ../../boot.php:1736 ../../boot.php:1822 -msgid "g A l F d" -msgstr "g A | F d" - -#: ../../boot.php:1737 ../../boot.php:1823 -msgid "F d" -msgstr "F d" - -#: ../../boot.php:1782 ../../boot.php:1863 -msgid "[today]" -msgstr "[aujourd'hui]" - -#: ../../boot.php:1794 -msgid "Birthday Reminders" -msgstr "Rappels d'anniversaires" - -#: ../../boot.php:1795 -msgid "Birthdays this week:" -msgstr "Anniversaires cette semaine:" - -#: ../../boot.php:1856 -msgid "[No description]" -msgstr "[Sans description]" - -#: ../../boot.php:1874 -msgid "Event Reminders" -msgstr "Rappels d'événements" - -#: ../../boot.php:1875 -msgid "Events this week:" -msgstr "Evénements cette semaine:" - -#: ../../boot.php:2112 ../../include/nav.php:76 -msgid "Status" -msgstr "Statut" - -#: ../../boot.php:2115 -msgid "Status Messages and Posts" -msgstr "Messages d'état et publications" - -#: ../../boot.php:2122 -msgid "Profile Details" -msgstr "Détails du profil" - -#: ../../boot.php:2133 ../../boot.php:2136 ../../include/nav.php:79 -msgid "Videos" -msgstr "Vidéos" - -#: ../../boot.php:2146 -msgid "Events and Calendar" -msgstr "Événements et agenda" - -#: ../../boot.php:2153 -msgid "Only You Can See This" -msgstr "Vous seul pouvez voir ça" - -#: ../../object/Item.php:94 -msgid "This entry was edited" -msgstr "Cette entrée à été édité" - -#: ../../object/Item.php:208 -msgid "ignore thread" -msgstr "ignorer le fil" - -#: ../../object/Item.php:209 -msgid "unignore thread" -msgstr "Ne plus ignorer le fil" - -#: ../../object/Item.php:210 -msgid "toggle ignore status" -msgstr "Ignorer le statut" - -#: ../../object/Item.php:213 -msgid "ignored" -msgstr "ignoré" - -#: ../../object/Item.php:316 ../../include/conversation.php:666 -msgid "Categories:" -msgstr "Catégories:" - -#: ../../object/Item.php:317 ../../include/conversation.php:667 -msgid "Filed under:" -msgstr "Rangé sous:" - -#: ../../object/Item.php:329 -msgid "via" -msgstr "via" - -#: ../../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 "\nLes développeurs de Friendica ont récemment publié la mise à jour %s, mais en tentant de l’installer, quelque chose s’est terriblement mal passé. Une réparation s’impose et je ne peux pas la faire tout seul. Contactez un développeur Friendica si vous ne pouvez pas corriger le problème vous-même. Il est possible que ma base de données soit corrompue." - -#: ../../include/dbstructure.php:31 -#, php-format -msgid "" -"The error message is\n" -"[pre]%s[/pre]" -msgstr "Le message d’erreur est\n[pre]%s[/pre]" - -#: ../../include/dbstructure.php:162 -msgid "Errors encountered creating database tables." -msgstr "Des erreurs ont été signalées lors de la création des tables." - -#: ../../include/dbstructure.php:220 -msgid "Errors encountered performing database changes." -msgstr "Des erreurs sont survenues lors de la mise à jour de la base de données." - -#: ../../include/auth.php:38 -msgid "Logged out." -msgstr "Déconnecté." - -#: ../../include/auth.php:128 ../../include/user.php:67 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Nous avons eu un souci avec l'OpenID que vous avez fourni. merci de vérifier l'orthographe correcte de ce dernier." - -#: ../../include/auth.php:128 ../../include/user.php:67 -msgid "The error message was:" -msgstr "Le message d'erreur était :" - -#: ../../include/contact_widgets.php:6 -msgid "Add New Contact" -msgstr "Ajouter un nouveau contact" - -#: ../../include/contact_widgets.php:7 -msgid "Enter address or web location" -msgstr "Entrez son adresse ou sa localisation web" - -#: ../../include/contact_widgets.php:8 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Exemple: bob@example.com, http://example.com/barbara" - -#: ../../include/contact_widgets.php:24 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d invitation disponible" -msgstr[1] "%d invitations disponibles" - -#: ../../include/contact_widgets.php:30 -msgid "Find People" -msgstr "Trouver des personnes" - -#: ../../include/contact_widgets.php:31 -msgid "Enter name or interest" -msgstr "Entrez un nom ou un centre d'intérêt" - -#: ../../include/contact_widgets.php:32 -msgid "Connect/Follow" -msgstr "Connecter/Suivre" - -#: ../../include/contact_widgets.php:33 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Exemples: Robert Morgenstein, Pêche" - -#: ../../include/contact_widgets.php:36 ../../view/theme/diabook/theme.php:526 -msgid "Similar Interests" -msgstr "Intérêts similaires" - -#: ../../include/contact_widgets.php:37 -msgid "Random Profile" -msgstr "Profil au hasard" - -#: ../../include/contact_widgets.php:38 ../../view/theme/diabook/theme.php:528 -msgid "Invite Friends" -msgstr "Inviter des amis" - -#: ../../include/contact_widgets.php:71 -msgid "Networks" -msgstr "Réseaux" - -#: ../../include/contact_widgets.php:74 -msgid "All Networks" -msgstr "Tous réseaux" - -#: ../../include/contact_widgets.php:104 ../../include/features.php:60 -msgid "Saved Folders" -msgstr "Dossiers sauvegardés" - -#: ../../include/contact_widgets.php:107 ../../include/contact_widgets.php:139 -msgid "Everything" -msgstr "Tout" - -#: ../../include/contact_widgets.php:136 -msgid "Categories" -msgstr "Catégories" - -#: ../../include/features.php:23 -msgid "General Features" -msgstr "Fonctions générales" - -#: ../../include/features.php:25 -msgid "Multiple Profiles" -msgstr "Profils multiples" - -#: ../../include/features.php:25 -msgid "Ability to create multiple profiles" -msgstr "Possibilité de créer plusieurs profils" - -#: ../../include/features.php:30 -msgid "Post Composition Features" -msgstr "Caractéristiques de composition de publication" - -#: ../../include/features.php:31 -msgid "Richtext Editor" -msgstr "Éditeur de texte enrichi" - -#: ../../include/features.php:31 -msgid "Enable richtext editor" -msgstr "Activer l'éditeur de texte enrichi" - -#: ../../include/features.php:32 -msgid "Post Preview" -msgstr "Aperçu de la publication" - -#: ../../include/features.php:32 -msgid "Allow previewing posts and comments before publishing them" -msgstr "Permet la prévisualisation des publications et commentaires avant de les publier" - -#: ../../include/features.php:33 -msgid "Auto-mention Forums" -msgstr "" - -#: ../../include/features.php:33 -msgid "" -"Add/remove mention when a fourm page is selected/deselected in ACL window." -msgstr "" - -#: ../../include/features.php:38 -msgid "Network Sidebar Widgets" -msgstr "Widgets réseau pour barre latérale" - -#: ../../include/features.php:39 -msgid "Search by Date" -msgstr "Rechercher par Date" - -#: ../../include/features.php:39 -msgid "Ability to select posts by date ranges" -msgstr "Capacité de sélectionner les publications par intervalles de dates" - -#: ../../include/features.php:40 -msgid "Group Filter" -msgstr "Filtre de groupe" - -#: ../../include/features.php:40 -msgid "Enable widget to display Network posts only from selected group" -msgstr "Activer le widget d’affichage des publications du réseau seulement pour le groupe sélectionné" - -#: ../../include/features.php:41 -msgid "Network Filter" -msgstr "Filtre de réseau" - -#: ../../include/features.php:41 -msgid "Enable widget to display Network posts only from selected network" -msgstr "Activer le widget d’affichage des publications du réseau seulement pour le réseau sélectionné" - -#: ../../include/features.php:42 -msgid "Save search terms for re-use" -msgstr "Sauvegarder la recherche pour une utilisation ultérieure" - -#: ../../include/features.php:47 -msgid "Network Tabs" -msgstr "Onglets Réseau" - -#: ../../include/features.php:48 -msgid "Network Personal Tab" -msgstr "Onglet Réseau Personnel" - -#: ../../include/features.php:48 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "Activer l'onglet pour afficher seulement les publications du réseau où vous avez interagit" - -#: ../../include/features.php:49 -msgid "Network New Tab" -msgstr "Nouvel onglet réseaux" - -#: ../../include/features.php:49 -msgid "Enable tab to display only new Network posts (from the last 12 hours)" -msgstr "Activer l'onglet pour afficher seulement les publications du réseau (dans les 12 dernières heures)" - -#: ../../include/features.php:50 -msgid "Network Shared Links Tab" -msgstr "Onglet réseau partagé" - -#: ../../include/features.php:50 -msgid "Enable tab to display only Network posts with links in them" -msgstr "Activer l'onglet pour afficher seulement les publications du réseau contenant des liens" - -#: ../../include/features.php:55 -msgid "Post/Comment Tools" -msgstr "outils de publication/commentaire" - -#: ../../include/features.php:56 -msgid "Multiple Deletion" -msgstr "Suppression multiple" - -#: ../../include/features.php:56 -msgid "Select and delete multiple posts/comments at once" -msgstr "Sélectionner et supprimer plusieurs publications/commentaires à la fois" - -#: ../../include/features.php:57 -msgid "Edit Sent Posts" -msgstr "Éditer les publications envoyées" - -#: ../../include/features.php:57 -msgid "Edit and correct posts and comments after sending" -msgstr "Éditer et corriger les publications et commentaires après l'envoi" - -#: ../../include/features.php:58 -msgid "Tagging" -msgstr "Étiquettage" - -#: ../../include/features.php:58 -msgid "Ability to tag existing posts" -msgstr "Possibilité d'étiqueter les publications existantes" - -#: ../../include/features.php:59 -msgid "Post Categories" -msgstr "Catégories des publications" - -#: ../../include/features.php:59 -msgid "Add categories to your posts" -msgstr "Ajouter des catégories à vos publications" - -#: ../../include/features.php:60 -msgid "Ability to file posts under folders" -msgstr "Possibilité d'afficher les publications sous les répertoires" - -#: ../../include/features.php:61 -msgid "Dislike Posts" -msgstr "Publications non aimées" - -#: ../../include/features.php:61 -msgid "Ability to dislike posts/comments" -msgstr "Possibilité de ne pas aimer les publications/commentaires" - -#: ../../include/features.php:62 -msgid "Star Posts" -msgstr "Publications spéciales" - -#: ../../include/features.php:62 -msgid "Ability to mark special posts with a star indicator" -msgstr "Possibilité de marquer les publications spéciales d'une étoile" - -#: ../../include/features.php:63 -msgid "Mute Post Notifications" -msgstr "" - -#: ../../include/features.php:63 -msgid "Ability to mute notifications for a thread" -msgstr "" - -#: ../../include/follow.php:32 -msgid "Connect URL missing." -msgstr "URL de connexion manquante." - -#: ../../include/follow.php:59 -msgid "" -"This site is not configured to allow communications with other networks." -msgstr "Ce site n'est pas configuré pour dialoguer avec d'autres réseaux." - -#: ../../include/follow.php:60 ../../include/follow.php:80 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "Aucun protocole de communication ni aucun flux n'a pu être découvert." - -#: ../../include/follow.php:78 -msgid "The profile address specified does not provide adequate information." -msgstr "L'adresse de profil indiquée ne fournit par les informations adéquates." - -#: ../../include/follow.php:82 -msgid "An author or name was not found." -msgstr "Aucun auteur ou nom d'auteur n'a pu être trouvé." - -#: ../../include/follow.php:84 -msgid "No browser URL could be matched to this address." -msgstr "Aucune URL de navigation ne correspond à cette adresse." - -#: ../../include/follow.php:86 -msgid "" -"Unable to match @-style Identity Address with a known protocol or email " -"contact." -msgstr "Impossible de faire correspondre l'adresse d'identité en \"@\" avec un protocole connu ou un contact courriel." - -#: ../../include/follow.php:87 -msgid "Use mailto: in front of address to force email check." -msgstr "Utilisez mailto: en face d'une adresse pour l'obliger à être reconnue comme courriel." - -#: ../../include/follow.php:93 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "L'adresse de profil spécifiée correspond à un réseau qui a été désactivé sur ce site." - -#: ../../include/follow.php:103 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "Profil limité. Cette personne ne sera pas capable de recevoir des notifications directes/personnelles de votre part." - -#: ../../include/follow.php:205 -msgid "Unable to retrieve contact information." -msgstr "Impossible de récupérer les informations du contact." - -#: ../../include/follow.php:258 -msgid "following" -msgstr "following" - -#: ../../include/group.php:25 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "Un groupe supprimé a été recréé. Les permissions existantes pourraient s'appliquer à ce groupe et aux futurs membres. Si ce n'est pas le comportement attendu, merci de re-créer un autre groupe sous un autre nom." - -#: ../../include/group.php:207 -msgid "Default privacy group for new contacts" -msgstr "Paramètres de confidentialité par défaut pour les nouveaux contacts" - -#: ../../include/group.php:226 -msgid "Everybody" -msgstr "Tout le monde" - -#: ../../include/group.php:249 -msgid "edit" -msgstr "éditer" - -#: ../../include/group.php:271 -msgid "Edit group" -msgstr "Editer groupe" - -#: ../../include/group.php:272 -msgid "Create a new group" -msgstr "Créer un nouveau groupe" - -#: ../../include/group.php:273 -msgid "Contacts not in any group" -msgstr "Contacts n'appartenant à aucun groupe" - -#: ../../include/datetime.php:43 ../../include/datetime.php:45 -msgid "Miscellaneous" -msgstr "Divers" - -#: ../../include/datetime.php:153 ../../include/datetime.php:290 -msgid "year" -msgstr "an" - -#: ../../include/datetime.php:158 ../../include/datetime.php:291 -msgid "month" -msgstr "mois" - -#: ../../include/datetime.php:163 ../../include/datetime.php:293 -msgid "day" -msgstr "jour" - -#: ../../include/datetime.php:276 -msgid "never" -msgstr "jamais" - -#: ../../include/datetime.php:282 -msgid "less than a second ago" -msgstr "il y a moins d'une seconde" - -#: ../../include/datetime.php:290 -msgid "years" -msgstr "ans" - -#: ../../include/datetime.php:291 -msgid "months" -msgstr "mois" - -#: ../../include/datetime.php:292 -msgid "week" -msgstr "semaine" - -#: ../../include/datetime.php:292 -msgid "weeks" -msgstr "semaines" - -#: ../../include/datetime.php:293 -msgid "days" -msgstr "jours" - -#: ../../include/datetime.php:294 -msgid "hour" -msgstr "heure" - -#: ../../include/datetime.php:294 -msgid "hours" -msgstr "heures" - -#: ../../include/datetime.php:295 -msgid "minute" -msgstr "minute" - -#: ../../include/datetime.php:295 -msgid "minutes" -msgstr "minutes" - -#: ../../include/datetime.php:296 -msgid "second" -msgstr "seconde" - -#: ../../include/datetime.php:296 -msgid "seconds" -msgstr "secondes" - -#: ../../include/datetime.php:305 -#, php-format -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s auparavant" - -#: ../../include/datetime.php:477 ../../include/items.php:2211 -#, php-format -msgid "%s's birthday" -msgstr "Anniversaire de %s's" - -#: ../../include/datetime.php:478 ../../include/items.php:2212 -#, php-format -msgid "Happy Birthday %s" -msgstr "Joyeux anniversaire, %s !" - -#: ../../include/acl_selectors.php:333 -msgid "Visible to everybody" -msgstr "Visible par tout le monde" - -#: ../../include/acl_selectors.php:334 ../../view/theme/diabook/config.php:142 -#: ../../view/theme/diabook/theme.php:621 -msgid "show" -msgstr "montrer" - -#: ../../include/acl_selectors.php:335 ../../view/theme/diabook/config.php:142 -#: ../../view/theme/diabook/theme.php:621 -msgid "don't show" -msgstr "cacher" - -#: ../../include/message.php:15 ../../include/message.php:172 -msgid "[no subject]" -msgstr "[pas de sujet]" - -#: ../../include/Contact.php:115 -msgid "stopped following" -msgstr "retiré de la liste de suivi" - -#: ../../include/Contact.php:228 ../../include/conversation.php:882 -msgid "Poke" -msgstr "Sollicitations (pokes)" - -#: ../../include/Contact.php:229 ../../include/conversation.php:876 -msgid "View Status" -msgstr "Voir les statuts" - -#: ../../include/Contact.php:230 ../../include/conversation.php:877 -msgid "View Profile" -msgstr "Voir le profil" - -#: ../../include/Contact.php:231 ../../include/conversation.php:878 -msgid "View Photos" -msgstr "Voir les photos" - -#: ../../include/Contact.php:232 ../../include/Contact.php:255 -#: ../../include/conversation.php:879 -msgid "Network Posts" -msgstr "Publications du réseau" - -#: ../../include/Contact.php:233 ../../include/Contact.php:255 -#: ../../include/conversation.php:880 -msgid "Edit Contact" -msgstr "Éditer le contact" - -#: ../../include/Contact.php:234 -msgid "Drop Contact" -msgstr "Supprimer le contact" - -#: ../../include/Contact.php:235 ../../include/Contact.php:255 -#: ../../include/conversation.php:881 -msgid "Send PM" -msgstr "Message privé" - -#: ../../include/security.php:22 -msgid "Welcome " -msgstr "Bienvenue " - -#: ../../include/security.php:23 -msgid "Please upload a profile photo." -msgstr "Merci d'illustrer votre profil d'une image." - -#: ../../include/security.php:26 -msgid "Welcome back " -msgstr "Bienvenue à nouveau, " - -#: ../../include/security.php:366 -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 "Le jeton de sécurité du formulaire n'est pas correct. Ceci veut probablement dire que le formulaire est resté ouvert trop longtemps (plus de 3 heures) avant d'être validé." - -#: ../../include/conversation.php:118 ../../include/conversation.php:246 -#: ../../include/text.php:1966 ../../view/theme/diabook/theme.php:463 -msgid "event" -msgstr "évènement" - -#: ../../include/conversation.php:207 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s a sollicité %2$s" - -#: ../../include/conversation.php:211 ../../include/text.php:1005 -msgid "poked" -msgstr "a titillé" - -#: ../../include/conversation.php:291 -msgid "post/item" -msgstr "publication/élément" - -#: ../../include/conversation.php:292 -#, php-format -msgid "%1$s marked %2$s's %3$s as favorite" -msgstr "%1$s a marqué le %3$s de %2$s comme favori" - -#: ../../include/conversation.php:772 -msgid "remove" -msgstr "enlever" - -#: ../../include/conversation.php:776 -msgid "Delete Selected Items" -msgstr "Supprimer les éléments sélectionnés" - -#: ../../include/conversation.php:875 -msgid "Follow Thread" -msgstr "Suivre le fil" - -#: ../../include/conversation.php:944 -#, php-format -msgid "%s likes this." -msgstr "%s aime ça." - -#: ../../include/conversation.php:944 -#, php-format -msgid "%s doesn't like this." -msgstr "%s n'aime pas ça." - -#: ../../include/conversation.php:949 -#, php-format -msgid "%2$d people like this" -msgstr "%2$d personnes aiment ça" - -#: ../../include/conversation.php:952 -#, php-format -msgid "%2$d people don't like this" -msgstr "%2$d personnes n'aiment pas ça" - -#: ../../include/conversation.php:966 -msgid "and" -msgstr "et" - -#: ../../include/conversation.php:972 -#, php-format -msgid ", and %d other people" -msgstr ", et %d autres personnes" - -#: ../../include/conversation.php:974 -#, php-format -msgid "%s like this." -msgstr "%s aiment ça." - -#: ../../include/conversation.php:974 -#, php-format -msgid "%s don't like this." -msgstr "%s n'aiment pas ça." - -#: ../../include/conversation.php:1001 ../../include/conversation.php:1019 -msgid "Visible to everybody" -msgstr "Visible par tout le monde" - -#: ../../include/conversation.php:1003 ../../include/conversation.php:1021 -msgid "Please enter a video link/URL:" -msgstr "Entrez un lien/URL video :" - -#: ../../include/conversation.php:1004 ../../include/conversation.php:1022 -msgid "Please enter an audio link/URL:" -msgstr "Entrez un lien/URL audio :" - -#: ../../include/conversation.php:1005 ../../include/conversation.php:1023 -msgid "Tag term:" -msgstr "Terme d'étiquette:" - -#: ../../include/conversation.php:1007 ../../include/conversation.php:1025 -msgid "Where are you right now?" -msgstr "Où êtes-vous présentemment?" - -#: ../../include/conversation.php:1008 -msgid "Delete item(s)?" -msgstr "Supprimer les élément(s) ?" - -#: ../../include/conversation.php:1051 -msgid "Post to Email" -msgstr "Publier aux courriels" - -#: ../../include/conversation.php:1056 -#, php-format -msgid "Connectors disabled, since \"%s\" is enabled." -msgstr "" - -#: ../../include/conversation.php:1111 -msgid "permissions" -msgstr "permissions" - -#: ../../include/conversation.php:1135 -msgid "Post to Groups" -msgstr "Publier aux groupes" - -#: ../../include/conversation.php:1136 -msgid "Post to Contacts" -msgstr "Publier aux contacts" - -#: ../../include/conversation.php:1137 -msgid "Private post" -msgstr "Message privé" - -#: ../../include/network.php:895 -msgid "view full size" -msgstr "voir en pleine taille" - -#: ../../include/text.php:297 -msgid "newer" -msgstr "Plus récent" - -#: ../../include/text.php:299 -msgid "older" -msgstr "Plus ancien" - -#: ../../include/text.php:304 -msgid "prev" -msgstr "précédent" - -#: ../../include/text.php:306 -msgid "first" -msgstr "premier" - -#: ../../include/text.php:338 -msgid "last" -msgstr "dernier" - -#: ../../include/text.php:341 -msgid "next" -msgstr "suivant" - -#: ../../include/text.php:855 -msgid "No contacts" -msgstr "Aucun contact" - -#: ../../include/text.php:864 -#, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" -msgstr[0] "%d contact" -msgstr[1] "%d contacts" - -#: ../../include/text.php:1005 -msgid "poke" -msgstr "titiller" - -#: ../../include/text.php:1006 -msgid "ping" -msgstr "attirer l'attention" - -#: ../../include/text.php:1006 -msgid "pinged" -msgstr "a attiré l'attention de" - -#: ../../include/text.php:1007 -msgid "prod" -msgstr "aiguillonner" - -#: ../../include/text.php:1007 -msgid "prodded" -msgstr "a aiguillonné" - -#: ../../include/text.php:1008 -msgid "slap" -msgstr "gifler" - -#: ../../include/text.php:1008 -msgid "slapped" -msgstr "a giflé" - -#: ../../include/text.php:1009 -msgid "finger" -msgstr "tripoter" - -#: ../../include/text.php:1009 -msgid "fingered" -msgstr "a tripoté" - -#: ../../include/text.php:1010 -msgid "rebuff" -msgstr "rabrouer" - -#: ../../include/text.php:1010 -msgid "rebuffed" -msgstr "a rabroué" - -#: ../../include/text.php:1024 -msgid "happy" -msgstr "heureuse" - -#: ../../include/text.php:1025 -msgid "sad" -msgstr "triste" - -#: ../../include/text.php:1026 -msgid "mellow" -msgstr "suave" - -#: ../../include/text.php:1027 -msgid "tired" -msgstr "fatiguée" - -#: ../../include/text.php:1028 -msgid "perky" -msgstr "guillerette" - -#: ../../include/text.php:1029 -msgid "angry" -msgstr "colérique" - -#: ../../include/text.php:1030 -msgid "stupified" -msgstr "stupéfaite" - -#: ../../include/text.php:1031 -msgid "puzzled" -msgstr "perplexe" - -#: ../../include/text.php:1032 -msgid "interested" -msgstr "intéressée" - -#: ../../include/text.php:1033 -msgid "bitter" -msgstr "amère" - -#: ../../include/text.php:1034 -msgid "cheerful" -msgstr "entraînante" - -#: ../../include/text.php:1035 -msgid "alive" -msgstr "vivante" - -#: ../../include/text.php:1036 -msgid "annoyed" -msgstr "ennuyée" - -#: ../../include/text.php:1037 -msgid "anxious" -msgstr "anxieuse" - -#: ../../include/text.php:1038 -msgid "cranky" -msgstr "excentrique" - -#: ../../include/text.php:1039 -msgid "disturbed" -msgstr "dérangée" - -#: ../../include/text.php:1040 -msgid "frustrated" -msgstr "frustrée" - -#: ../../include/text.php:1041 -msgid "motivated" -msgstr "motivée" - -#: ../../include/text.php:1042 -msgid "relaxed" -msgstr "détendue" - -#: ../../include/text.php:1043 -msgid "surprised" -msgstr "surprise" - -#: ../../include/text.php:1213 -msgid "Monday" -msgstr "Lundi" - -#: ../../include/text.php:1213 -msgid "Tuesday" -msgstr "Mardi" - -#: ../../include/text.php:1213 -msgid "Wednesday" -msgstr "Mercredi" - -#: ../../include/text.php:1213 -msgid "Thursday" -msgstr "Jeudi" - -#: ../../include/text.php:1213 -msgid "Friday" -msgstr "Vendredi" - -#: ../../include/text.php:1213 -msgid "Saturday" -msgstr "Samedi" - -#: ../../include/text.php:1213 -msgid "Sunday" -msgstr "Dimanche" - -#: ../../include/text.php:1217 -msgid "January" -msgstr "Janvier" - -#: ../../include/text.php:1217 -msgid "February" -msgstr "Février" - -#: ../../include/text.php:1217 -msgid "March" -msgstr "Mars" - -#: ../../include/text.php:1217 -msgid "April" -msgstr "Avril" - -#: ../../include/text.php:1217 -msgid "May" -msgstr "Mai" - -#: ../../include/text.php:1217 -msgid "June" -msgstr "Juin" - -#: ../../include/text.php:1217 -msgid "July" -msgstr "Juillet" - -#: ../../include/text.php:1217 -msgid "August" -msgstr "Août" - -#: ../../include/text.php:1217 -msgid "September" -msgstr "Septembre" - -#: ../../include/text.php:1217 -msgid "October" -msgstr "Octobre" - -#: ../../include/text.php:1217 -msgid "November" -msgstr "Novembre" - -#: ../../include/text.php:1217 -msgid "December" -msgstr "Décembre" - -#: ../../include/text.php:1437 -msgid "bytes" -msgstr "octets" - -#: ../../include/text.php:1461 ../../include/text.php:1473 -msgid "Click to open/close" -msgstr "Cliquer pour ouvrir/fermer" - -#: ../../include/text.php:1702 ../../include/user.php:247 -#: ../../view/theme/duepuntozero/config.php:44 -msgid "default" -msgstr "défaut" - -#: ../../include/text.php:1714 -msgid "Select an alternate language" -msgstr "Choisir une langue alternative" - -#: ../../include/text.php:1970 -msgid "activity" -msgstr "activité" - -#: ../../include/text.php:1973 -msgid "post" -msgstr "publication" - -#: ../../include/text.php:2141 -msgid "Item filed" -msgstr "Élément classé" - -#: ../../include/bbcode.php:428 ../../include/bbcode.php:1047 -#: ../../include/bbcode.php:1048 -msgid "Image/photo" -msgstr "Image/photo" - -#: ../../include/bbcode.php:528 -#, php-format -msgid "%2$s %3$s" -msgstr "" - -#: ../../include/bbcode.php:562 -#, php-format -msgid "" -"%s wrote the following post" -msgstr "" - -#: ../../include/bbcode.php:1011 ../../include/bbcode.php:1031 -msgid "$1 wrote:" -msgstr "$1 a écrit:" - -#: ../../include/bbcode.php:1056 ../../include/bbcode.php:1057 -msgid "Encrypted content" -msgstr "Contenu chiffré" - -#: ../../include/notifier.php:786 ../../include/delivery.php:456 -msgid "(no subject)" -msgstr "(sans titre)" - -#: ../../include/notifier.php:796 ../../include/delivery.php:467 -#: ../../include/enotify.php:33 -msgid "noreply" -msgstr "noreply" - -#: ../../include/dba_pdo.php:72 ../../include/dba.php:56 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Impossible de localiser les informations DNS pour le serveur de base de données '%s'" - -#: ../../include/contact_selectors.php:32 -msgid "Unknown | Not categorised" -msgstr "Inconnu | Non-classé" - -#: ../../include/contact_selectors.php:33 -msgid "Block immediately" -msgstr "Bloquer immédiatement" - -#: ../../include/contact_selectors.php:34 -msgid "Shady, spammer, self-marketer" -msgstr "Douteux, spammeur, accro à l'auto-promotion" - -#: ../../include/contact_selectors.php:35 -msgid "Known to me, but no opinion" -msgstr "Connu de moi, mais sans opinion" - -#: ../../include/contact_selectors.php:36 -msgid "OK, probably harmless" -msgstr "OK, probablement inoffensif" - -#: ../../include/contact_selectors.php:37 -msgid "Reputable, has my trust" -msgstr "Réputé, a toute ma confiance" - -#: ../../include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Chaque semaine" - -#: ../../include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Chaque mois" - -#: ../../include/contact_selectors.php:77 -msgid "OStatus" -msgstr "OStatus" - -#: ../../include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: ../../include/contact_selectors.php:82 -msgid "Zot!" -msgstr "Zot!" - -#: ../../include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: ../../include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: ../../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 "Connecteur Diaspora" - -#: ../../include/contact_selectors.php:91 -msgid "Statusnet" -msgstr "Statusnet" - -#: ../../include/contact_selectors.php:92 -msgid "App.net" -msgstr "App.net" - -#: ../../include/Scrape.php:614 -msgid " on Last.fm" -msgstr "sur Last.fm" - -#: ../../include/bb2diaspora.php:154 ../../include/event.php:20 -msgid "Starts:" -msgstr "Débute:" - -#: ../../include/bb2diaspora.php:162 ../../include/event.php:30 -msgid "Finishes:" -msgstr "Finit:" - -#: ../../include/profile_advanced.php:22 -msgid "j F, Y" -msgstr "j F, Y" - -#: ../../include/profile_advanced.php:23 -msgid "j F" -msgstr "j F" - -#: ../../include/profile_advanced.php:30 -msgid "Birthday:" -msgstr "Anniversaire:" - -#: ../../include/profile_advanced.php:34 -msgid "Age:" -msgstr "Age:" - -#: ../../include/profile_advanced.php:43 -#, php-format -msgid "for %1$d %2$s" -msgstr "depuis %1$d %2$s" - -#: ../../include/profile_advanced.php:52 -msgid "Tags:" -msgstr "Étiquette:" - -#: ../../include/profile_advanced.php:56 -msgid "Religion:" -msgstr "Religion:" - -#: ../../include/profile_advanced.php:60 -msgid "Hobbies/Interests:" -msgstr "Passe-temps/Centres d'intérêt:" - -#: ../../include/profile_advanced.php:67 -msgid "Contact information and Social Networks:" -msgstr "Coordonnées/Réseaux sociaux:" - -#: ../../include/profile_advanced.php:69 -msgid "Musical interests:" -msgstr "Goûts musicaux:" - -#: ../../include/profile_advanced.php:71 -msgid "Books, literature:" -msgstr "Lectures:" - -#: ../../include/profile_advanced.php:73 -msgid "Television:" -msgstr "Télévision:" - -#: ../../include/profile_advanced.php:75 -msgid "Film/dance/culture/entertainment:" -msgstr "Cinéma/Danse/Culture/Divertissement:" - -#: ../../include/profile_advanced.php:77 -msgid "Love/Romance:" -msgstr "Amour/Romance:" - -#: ../../include/profile_advanced.php:79 -msgid "Work/employment:" -msgstr "Activité professionnelle/Occupation:" - -#: ../../include/profile_advanced.php:81 -msgid "School/education:" -msgstr "Études/Formation:" - -#: ../../include/plugin.php:455 ../../include/plugin.php:457 -msgid "Click here to upgrade." -msgstr "Cliquez ici pour mettre à jour." - -#: ../../include/plugin.php:463 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Cette action dépasse les limites définies par votre abonnement." - -#: ../../include/plugin.php:468 -msgid "This action is not available under your subscription plan." -msgstr "Cette action n'est pas disponible avec votre abonnement." - -#: ../../include/nav.php:73 -msgid "End this session" -msgstr "Mettre fin à cette session" - -#: ../../include/nav.php:76 ../../include/nav.php:148 -#: ../../view/theme/diabook/theme.php:123 -msgid "Your posts and conversations" -msgstr "Vos publications et conversations" - -#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:124 -msgid "Your profile page" -msgstr "Votre page de profil" - -#: ../../include/nav.php:78 ../../view/theme/diabook/theme.php:126 -msgid "Your photos" -msgstr "Vos photos" - -#: ../../include/nav.php:79 -msgid "Your videos" -msgstr "Vos vidéos" - -#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:127 -msgid "Your events" -msgstr "Vos événements" - -#: ../../include/nav.php:81 ../../view/theme/diabook/theme.php:128 -msgid "Personal notes" -msgstr "Notes personnelles" - -#: ../../include/nav.php:81 -msgid "Your personal notes" -msgstr "Vos notes personnelles" - -#: ../../include/nav.php:92 -msgid "Sign in" -msgstr "Se connecter" - -#: ../../include/nav.php:105 -msgid "Home Page" -msgstr "Page d'accueil" - -#: ../../include/nav.php:109 -msgid "Create an account" -msgstr "Créer un compte" - -#: ../../include/nav.php:114 -msgid "Help and documentation" -msgstr "Aide et documentation" - -#: ../../include/nav.php:117 -msgid "Apps" -msgstr "Applications" - -#: ../../include/nav.php:117 -msgid "Addon applications, utilities, games" -msgstr "Applications supplémentaires, utilitaires, jeux" - -#: ../../include/nav.php:119 -msgid "Search site content" -msgstr "Rechercher dans le contenu du site" - -#: ../../include/nav.php:129 -msgid "Conversations on this site" -msgstr "Conversations ayant cours sur ce site" - -#: ../../include/nav.php:131 -msgid "Conversations on the network" -msgstr "" - -#: ../../include/nav.php:133 -msgid "Directory" -msgstr "Annuaire" - -#: ../../include/nav.php:133 -msgid "People directory" -msgstr "Annuaire des utilisateurs" - -#: ../../include/nav.php:135 -msgid "Information" -msgstr "Information" - -#: ../../include/nav.php:135 -msgid "Information about this friendica instance" -msgstr "Information au sujet de cette instance de friendica" - -#: ../../include/nav.php:145 -msgid "Conversations from your friends" -msgstr "Conversations de vos amis" - -#: ../../include/nav.php:146 -msgid "Network Reset" -msgstr "Réinitialiser le réseau" - -#: ../../include/nav.php:146 -msgid "Load Network page with no filters" -msgstr "Chargement des pages du réseau sans filtre" - -#: ../../include/nav.php:154 -msgid "Friend Requests" -msgstr "Demande d'amitié" - -#: ../../include/nav.php:156 -msgid "See all notifications" -msgstr "Voir toute notification" - -#: ../../include/nav.php:157 -msgid "Mark all system notifications seen" -msgstr "Marquer toutes les notifications système comme 'vues'" - -#: ../../include/nav.php:161 -msgid "Private mail" -msgstr "Messages privés" - -#: ../../include/nav.php:162 -msgid "Inbox" -msgstr "Messages entrants" - -#: ../../include/nav.php:163 -msgid "Outbox" -msgstr "Messages sortants" - -#: ../../include/nav.php:167 -msgid "Manage" -msgstr "Gérer" - -#: ../../include/nav.php:167 -msgid "Manage other pages" -msgstr "Gérer les autres pages" - -#: ../../include/nav.php:172 -msgid "Account settings" -msgstr "Compte" - -#: ../../include/nav.php:175 -msgid "Manage/Edit Profiles" -msgstr "Gérer/Éditer les profiles" - -#: ../../include/nav.php:177 -msgid "Manage/edit friends and contacts" -msgstr "Gérer/éditer les amitiés et contacts" - -#: ../../include/nav.php:184 -msgid "Site setup and configuration" -msgstr "Démarrage et configuration du site" - -#: ../../include/nav.php:188 -msgid "Navigation" -msgstr "Navigation" - -#: ../../include/nav.php:188 -msgid "Site map" -msgstr "Carte du site" - -#: ../../include/api.php:304 ../../include/api.php:315 -#: ../../include/api.php:416 ../../include/api.php:1063 -#: ../../include/api.php:1065 -msgid "User not found." -msgstr "Utilisateur non trouvé" - -#: ../../include/api.php:771 -#, php-format -msgid "Daily posting limit of %d posts reached. The post was rejected." -msgstr "Le quota journalier de %d publications a été atteint. La publication a été rejetée." - -#: ../../include/api.php:790 -#, php-format -msgid "Weekly posting limit of %d posts reached. The post was rejected." -msgstr "Le quota hebdomadaire de %d publications a été atteint. La publication a été rejetée." - -#: ../../include/api.php:809 -#, php-format -msgid "Monthly posting limit of %d posts reached. The post was rejected." -msgstr "Le quota mensuel de %d publications a été atteint. La publication a été rejetée." - -#: ../../include/api.php:1272 -msgid "There is no status with this id." -msgstr "Il n'y a pas de statut avec cet id." - -#: ../../include/api.php:1342 -msgid "There is no conversation with this id." -msgstr "Il n'y a pas de conversation avec cet id." - -#: ../../include/api.php:1614 -msgid "Invalid request." -msgstr "Requête invalide." - -#: ../../include/api.php:1625 -msgid "Invalid item." -msgstr "Item invalide." - -#: ../../include/api.php:1635 -msgid "Invalid action. " -msgstr "Action invalide." - -#: ../../include/api.php:1643 -msgid "DB error" -msgstr "" - -#: ../../include/user.php:40 -msgid "An invitation is required." -msgstr "Une invitation est requise." - -#: ../../include/user.php:45 -msgid "Invitation could not be verified." -msgstr "L'invitation fournie n'a pu être validée." - -#: ../../include/user.php:53 -msgid "Invalid OpenID url" -msgstr "Adresse OpenID invalide" - -#: ../../include/user.php:74 -msgid "Please enter the required information." -msgstr "Entrez les informations requises." - -#: ../../include/user.php:88 -msgid "Please use a shorter name." -msgstr "Utilisez un nom plus court." - -#: ../../include/user.php:90 -msgid "Name too short." -msgstr "Nom trop court." - -#: ../../include/user.php:105 -msgid "That doesn't appear to be your full (First Last) name." -msgstr "Ceci ne semble pas être votre nom complet (Prénom Nom)." - -#: ../../include/user.php:110 -msgid "Your email domain is not among those allowed on this site." -msgstr "Votre domaine de courriel n'est pas autorisé sur ce site." - -#: ../../include/user.php:113 -msgid "Not a valid email address." -msgstr "Ceci n'est pas une adresse courriel valide." - -#: ../../include/user.php:126 -msgid "Cannot use that email." -msgstr "Impossible d'utiliser ce courriel." - -#: ../../include/user.php:132 -msgid "" -"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " -"must also begin with a letter." -msgstr "Votre \"pseudo\" peut seulement contenir les caractères \"a-z\", \"0-9\", \"-\", and \"_\", et doit commencer par une lettre." - -#: ../../include/user.php:138 ../../include/user.php:236 -msgid "Nickname is already registered. Please choose another." -msgstr "Pseudo déjà utilisé. Merci d'en choisir un autre." - -#: ../../include/user.php:148 -msgid "" -"Nickname was once registered here and may not be re-used. Please choose " -"another." -msgstr "Ce surnom a déjà été utilisé ici, et ne peut re-servir. Merci d'en choisir un autre." - -#: ../../include/user.php:164 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "ERREUR SÉRIEUSE: La génération des clés de sécurité a échoué." - -#: ../../include/user.php:222 -msgid "An error occurred during registration. Please try again." -msgstr "Une erreur est survenue lors de l'inscription. Merci de recommencer." - -#: ../../include/user.php:257 -msgid "An error occurred creating your default profile. Please try again." -msgstr "Une erreur est survenue lors de la création de votre profil par défaut. Merci de recommencer." - -#: ../../include/user.php:289 ../../include/user.php:293 -#: ../../include/profile_selectors.php:42 -msgid "Friends" -msgstr "Amis" - -#: ../../include/user.php:377 -#, php-format -msgid "" -"\n" -"\t\tDear %1$s,\n" -"\t\t\tThank you for registering at %2$s. Your account has been created.\n" -"\t" -msgstr "\n\t\tChère/Cher %1$s,\n\t\t\tMerci de vous être inscrit sur %2$s. Votre compte a bien été créé.\n\t" - -#: ../../include/user.php:381 -#, php-format -msgid "" -"\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." -msgstr "\n\t\tVoici vos informations de connexion :\n\t\t\tAdresse :\t%3$s\n\t\t\tIdentifiant :\t%1$s\n\t\t\tMot de passe :\t%5$s\n\n\t\tVous pourrez changer votre mot de passe dans les paramètres de votre compte une fois connecté.\n\n\t\tProfitez-en pour prendre le temps de passer en revue les autres paramètres de votre compte.\n\n\t\tVous pourrez aussi ajouter quelques informations élémentaires à votre profil par défaut (sur la page « Profils ») pour permettre à d’autres personnes de vous trouver facilement.\n\n\t\tNous recommandons de préciser votre nom complet, d’ajouter une photo et quelques mots-clefs (c’est très utile pour découvrir de nouveaux amis), et peut-être aussi d’indiquer au moins le pays dans lequel vous vivez, à défaut d’être plus précis.\n\n\t\tNous respectons pleinement votre droit à une vie privée, et vous n’avez aucune obligation de donner toutes ces informations. Mais si vous êtes nouveau et ne connaissez encore personne ici, cela peut vous aider à vous faire de nouveaux amis intéressants.\n\n\n\t\tMerci et bienvenu sur %2$s." - -#: ../../include/diaspora.php:703 -msgid "Sharing notification from Diaspora network" -msgstr "Notification de partage du réseau Diaspora" - -#: ../../include/diaspora.php:2520 -msgid "Attachments:" -msgstr "Pièces jointes : " - -#: ../../include/items.php:4555 -msgid "Do you really want to delete this item?" -msgstr "Voulez-vous vraiment supprimer cet élément ?" - -#: ../../include/items.php:4778 -msgid "Archives" -msgstr "Archives" - -#: ../../include/profile_selectors.php:6 -msgid "Male" -msgstr "Masculin" - -#: ../../include/profile_selectors.php:6 -msgid "Female" -msgstr "Féminin" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Male" -msgstr "Actuellement masculin" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Female" -msgstr "Actuellement féminin" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Male" -msgstr "Principalement masculin" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Female" -msgstr "Principalement féminin" - -#: ../../include/profile_selectors.php:6 -msgid "Transgender" -msgstr "Transgenre" - -#: ../../include/profile_selectors.php:6 -msgid "Intersex" -msgstr "Inter-sexe" - -#: ../../include/profile_selectors.php:6 -msgid "Transsexual" -msgstr "Transsexuel" - -#: ../../include/profile_selectors.php:6 -msgid "Hermaphrodite" -msgstr "Hermaphrodite" - -#: ../../include/profile_selectors.php:6 -msgid "Neuter" -msgstr "Neutre" - -#: ../../include/profile_selectors.php:6 -msgid "Non-specific" -msgstr "Non-spécifique" - -#: ../../include/profile_selectors.php:6 -msgid "Other" -msgstr "Autre" - -#: ../../include/profile_selectors.php:6 -msgid "Undecided" -msgstr "Indécis" - -#: ../../include/profile_selectors.php:23 -msgid "Males" -msgstr "Hommes" - -#: ../../include/profile_selectors.php:23 -msgid "Females" -msgstr "Femmes" - -#: ../../include/profile_selectors.php:23 -msgid "Gay" -msgstr "Gay" - -#: ../../include/profile_selectors.php:23 -msgid "Lesbian" -msgstr "Lesbienne" - -#: ../../include/profile_selectors.php:23 -msgid "No Preference" -msgstr "Sans préférence" - -#: ../../include/profile_selectors.php:23 -msgid "Bisexual" -msgstr "Bisexuel" - -#: ../../include/profile_selectors.php:23 -msgid "Autosexual" -msgstr "Auto-sexuel" - -#: ../../include/profile_selectors.php:23 -msgid "Abstinent" -msgstr "Abstinent" - -#: ../../include/profile_selectors.php:23 -msgid "Virgin" -msgstr "Vierge" - -#: ../../include/profile_selectors.php:23 -msgid "Deviant" -msgstr "Déviant" - -#: ../../include/profile_selectors.php:23 -msgid "Fetish" -msgstr "Fétichiste" - -#: ../../include/profile_selectors.php:23 -msgid "Oodles" -msgstr "Oodles" - -#: ../../include/profile_selectors.php:23 -msgid "Nonsexual" -msgstr "Non-sexuel" - -#: ../../include/profile_selectors.php:42 -msgid "Single" -msgstr "Célibataire" - -#: ../../include/profile_selectors.php:42 -msgid "Lonely" -msgstr "Esseulé" - -#: ../../include/profile_selectors.php:42 -msgid "Available" -msgstr "Disponible" - -#: ../../include/profile_selectors.php:42 -msgid "Unavailable" -msgstr "Indisponible" - -#: ../../include/profile_selectors.php:42 -msgid "Has crush" -msgstr "Attiré par quelqu'un" - -#: ../../include/profile_selectors.php:42 -msgid "Infatuated" -msgstr "Entiché" - -#: ../../include/profile_selectors.php:42 -msgid "Dating" -msgstr "Dans une relation" - -#: ../../include/profile_selectors.php:42 -msgid "Unfaithful" -msgstr "Infidèle" - -#: ../../include/profile_selectors.php:42 -msgid "Sex Addict" -msgstr "Accro au sexe" - -#: ../../include/profile_selectors.php:42 -msgid "Friends/Benefits" -msgstr "Amis par intérêt" - -#: ../../include/profile_selectors.php:42 -msgid "Casual" -msgstr "Casual" - -#: ../../include/profile_selectors.php:42 -msgid "Engaged" -msgstr "Fiancé" - -#: ../../include/profile_selectors.php:42 -msgid "Married" -msgstr "Marié" - -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily married" -msgstr "Se croit marié" - -#: ../../include/profile_selectors.php:42 -msgid "Partners" -msgstr "Partenaire" - -#: ../../include/profile_selectors.php:42 -msgid "Cohabiting" -msgstr "En cohabitation" - -#: ../../include/profile_selectors.php:42 -msgid "Common law" -msgstr "Marié \"de fait\"/\"sui juris\" (concubin)" - -#: ../../include/profile_selectors.php:42 -msgid "Happy" -msgstr "Heureux" - -#: ../../include/profile_selectors.php:42 -msgid "Not looking" -msgstr "Pas intéressé" - -#: ../../include/profile_selectors.php:42 -msgid "Swinger" -msgstr "Échangiste" - -#: ../../include/profile_selectors.php:42 -msgid "Betrayed" -msgstr "Trahi(e)" - -#: ../../include/profile_selectors.php:42 -msgid "Separated" -msgstr "Séparé" - -#: ../../include/profile_selectors.php:42 -msgid "Unstable" -msgstr "Instable" - -#: ../../include/profile_selectors.php:42 -msgid "Divorced" -msgstr "Divorcé" - -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily divorced" -msgstr "Se croit divorcé" - -#: ../../include/profile_selectors.php:42 -msgid "Widowed" -msgstr "Veuf/Veuve" - -#: ../../include/profile_selectors.php:42 -msgid "Uncertain" -msgstr "Incertain" - -#: ../../include/profile_selectors.php:42 -msgid "It's complicated" -msgstr "C'est compliqué" - -#: ../../include/profile_selectors.php:42 -msgid "Don't care" -msgstr "S'en désintéresse" - -#: ../../include/profile_selectors.php:42 -msgid "Ask me" -msgstr "Me demander" - -#: ../../include/enotify.php:18 -msgid "Friendica Notification" -msgstr "Notification Friendica" - -#: ../../include/enotify.php:21 -msgid "Thank You," -msgstr "Merci, " - -#: ../../include/enotify.php:23 -#, php-format -msgid "%s Administrator" -msgstr "L'administrateur de %s" - -#: ../../include/enotify.php:64 -#, php-format -msgid "%s " -msgstr "%s " - -#: ../../include/enotify.php:68 -#, php-format -msgid "[Friendica:Notify] New mail received at %s" -msgstr "[Friendica:Notification] Nouveau courriel reçu sur %s" - -#: ../../include/enotify.php:70 -#, php-format -msgid "%1$s sent you a new private message at %2$s." -msgstr "%1$s vous a envoyé un nouveau message privé sur %2$s." - -#: ../../include/enotify.php:71 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s vous a envoyé %2$s." - -#: ../../include/enotify.php:71 -msgid "a private message" -msgstr "un message privé" - -#: ../../include/enotify.php:72 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Merci de visiter %s pour voir vos messages privés et/ou y répondre." - -#: ../../include/enotify.php:124 -#, php-format -msgid "%1$s commented on [url=%2$s]a %3$s[/url]" -msgstr "%1$s a commenté sur [url=%2$s]un %3$s[/url]" - -#: ../../include/enotify.php:131 -#, php-format -msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" -msgstr "%1$s a commenté sur [url=%2$s]le %4$s de %3$s[/url]" - -#: ../../include/enotify.php:139 -#, php-format -msgid "%1$s commented on [url=%2$s]your %3$s[/url]" -msgstr "%1$s commented on [url=%2$s]your %3$s[/url]" - -#: ../../include/enotify.php:149 -#, php-format -msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[Friendica:Notification] Commentaire de %2$s sur la conversation #%1$d" - -#: ../../include/enotify.php:150 -#, php-format -msgid "%s commented on an item/conversation you have been following." -msgstr "%s a commenté un élément que vous suivez." - -#: ../../include/enotify.php:153 ../../include/enotify.php:168 -#: ../../include/enotify.php:181 ../../include/enotify.php:194 -#: ../../include/enotify.php:212 ../../include/enotify.php:225 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Merci de visiter %s pour voir la conversation et/ou y répondre." - -#: ../../include/enotify.php:160 -#, php-format -msgid "[Friendica:Notify] %s posted to your profile wall" -msgstr "[Friendica:Notification] %s a posté sur votre mur de profil" - -#: ../../include/enotify.php:162 -#, php-format -msgid "%1$s posted to your profile wall at %2$s" -msgstr "%1$s a publié sur votre mur à %2$s" - -#: ../../include/enotify.php:164 -#, php-format -msgid "%1$s posted to [url=%2$s]your wall[/url]" -msgstr "%1$s a posté sur [url=%2$s]votre mur[/url]" - -#: ../../include/enotify.php:175 -#, php-format -msgid "[Friendica:Notify] %s tagged you" -msgstr "[Friendica:Notification] %s vous a étiqueté" - -#: ../../include/enotify.php:176 -#, php-format -msgid "%1$s tagged you at %2$s" -msgstr "%1$s vous a étiqueté sur %2$s" - -#: ../../include/enotify.php:177 -#, php-format -msgid "%1$s [url=%2$s]tagged you[/url]." -msgstr "%1$s [url=%2$s]vous a étiqueté[/url]." - -#: ../../include/enotify.php:188 -#, php-format -msgid "[Friendica:Notify] %s shared a new post" -msgstr "[Friendica:Notification] %s partage une nouvelle publication" - -#: ../../include/enotify.php:189 -#, php-format -msgid "%1$s shared a new post at %2$s" -msgstr "%1$s a partagé une nouvelle publication sur %2$s" - -#: ../../include/enotify.php:190 -#, php-format -msgid "%1$s [url=%2$s]shared a post[/url]." -msgstr "%1$s [url=%2$s]partage une publication[/url]." - -#: ../../include/enotify.php:202 -#, php-format -msgid "[Friendica:Notify] %1$s poked you" -msgstr "[Friendica:Notify] %1$s vous a sollicité" - -#: ../../include/enotify.php:203 -#, php-format -msgid "%1$s poked you at %2$s" -msgstr "%1$s vous a sollicité via %2$s" - -#: ../../include/enotify.php:204 -#, php-format -msgid "%1$s [url=%2$s]poked you[/url]." -msgstr "%1$s vous a [url=%2$s]sollicité[/url]." - -#: ../../include/enotify.php:219 -#, php-format -msgid "[Friendica:Notify] %s tagged your post" -msgstr "[Friendica:Notification] %s a étiqueté votre publication" - -#: ../../include/enotify.php:220 -#, php-format -msgid "%1$s tagged your post at %2$s" -msgstr "%1$s a étiqueté votre publication sur %2$s" - -#: ../../include/enotify.php:221 -#, php-format -msgid "%1$s tagged [url=%2$s]your post[/url]" -msgstr "%1$s a étiqueté [url=%2$s]votre publication[/url]" - -#: ../../include/enotify.php:232 -msgid "[Friendica:Notify] Introduction received" -msgstr "[Friendica:Notification] Introduction reçue" - -#: ../../include/enotify.php:233 -#, php-format -msgid "You've received an introduction from '%1$s' at %2$s" -msgstr "Vous avez reçu une introduction de '%1$s' sur %2$s" - -#: ../../include/enotify.php:234 -#, php-format -msgid "You've received [url=%1$s]an introduction[/url] from %2$s." -msgstr "Vous avez reçu [url=%1$s]une introduction[/url] de %2$s." - -#: ../../include/enotify.php:237 ../../include/enotify.php:279 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Vous pouvez visiter son profil sur %s" - -#: ../../include/enotify.php:239 -#, php-format -msgid "Please visit %s to approve or reject the introduction." -msgstr "Merci de visiter %s pour approuver ou rejeter l'introduction." - -#: ../../include/enotify.php:247 -msgid "[Friendica:Notify] A new person is sharing with you" -msgstr "" - -#: ../../include/enotify.php:248 ../../include/enotify.php:249 -#, php-format -msgid "%1$s is sharing with you at %2$s" -msgstr "" - -#: ../../include/enotify.php:255 -msgid "[Friendica:Notify] You have a new follower" -msgstr "" - -#: ../../include/enotify.php:256 ../../include/enotify.php:257 -#, php-format -msgid "You have a new follower at %2$s : %1$s" -msgstr "" - -#: ../../include/enotify.php:270 -msgid "[Friendica:Notify] Friend suggestion received" -msgstr "[Friendica:Notification] Nouvelle suggestion d'amitié" - -#: ../../include/enotify.php:271 -#, php-format -msgid "You've received a friend suggestion from '%1$s' at %2$s" -msgstr "Vous avez reçu une suggestion de '%1$s' sur %2$s" - -#: ../../include/enotify.php:272 -#, php-format -msgid "" -"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." -msgstr "Vous avez reçu [url=%1$s]une suggestion[/url] de %3$s pour %2$s." - -#: ../../include/enotify.php:277 -msgid "Name:" -msgstr "Nom :" - -#: ../../include/enotify.php:278 -msgid "Photo:" -msgstr "Photo :" - -#: ../../include/enotify.php:281 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Merci de visiter %s pour approuver ou rejeter la suggestion." - -#: ../../include/enotify.php:289 ../../include/enotify.php:302 -msgid "[Friendica:Notify] Connection accepted" -msgstr "" - -#: ../../include/enotify.php:290 ../../include/enotify.php:303 -#, php-format -msgid "'%1$s' has acepted your connection request at %2$s" -msgstr "" - -#: ../../include/enotify.php:291 ../../include/enotify.php:304 -#, php-format -msgid "%2$s has accepted your [url=%1$s]connection request[/url]." -msgstr "" - -#: ../../include/enotify.php:294 -msgid "" -"You are now mutual friends and may exchange status updates, photos, and email\n" -"\twithout restriction." -msgstr "" - -#: ../../include/enotify.php:297 ../../include/enotify.php:311 -#, php-format -msgid "Please visit %s if you wish to make any changes to this relationship." -msgstr "" - -#: ../../include/enotify.php:307 -#, php-format -msgid "" -"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of " -"communication - such as private messaging and some profile interactions. If " -"this is a celebrity or community page, these settings were applied " -"automatically." -msgstr "" - -#: ../../include/enotify.php:309 -#, php-format -msgid "" -"'%1$s' may choose to extend this into a two-way or more permissive " -"relationship in the future. " -msgstr "" - -#: ../../include/enotify.php:322 -msgid "[Friendica System:Notify] registration request" -msgstr "" - -#: ../../include/enotify.php:323 -#, php-format -msgid "You've received a registration request from '%1$s' at %2$s" -msgstr "" - -#: ../../include/enotify.php:324 -#, php-format -msgid "You've received a [url=%1$s]registration request[/url] from %2$s." -msgstr "Vous avez reçu une [url=%1$s]demande de création de compte[/url] de %2$s." - -#: ../../include/enotify.php:327 -#, php-format -msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" -msgstr "Nom complet :\t%1$s\\nAdresse :\t%2$s\\nIdentifiant :\t%3$s (%4$s)" - -#: ../../include/enotify.php:330 -#, php-format -msgid "Please visit %s to approve or reject the request." -msgstr "Veuillez visiter %s pour approuver ou rejeter la demande." - -#: ../../include/oembed.php:212 -msgid "Embedded content" -msgstr "Contenu incorporé" - -#: ../../include/oembed.php:221 -msgid "Embedding disabled" -msgstr "Incorporation désactivée" - -#: ../../include/uimport.php:94 -msgid "Error decoding account file" -msgstr "Une erreur a été détecté en décodant un fichier utilisateur" - -#: ../../include/uimport.php:100 -msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "Erreur ! Pas de ficher de version existant ! Êtes vous sur un compte Friendica ?" - -#: ../../include/uimport.php:116 ../../include/uimport.php:127 -msgid "Error! Cannot check nickname" -msgstr "Erreur! Pseudo invalide" - -#: ../../include/uimport.php:120 ../../include/uimport.php:131 -#, php-format -msgid "User '%s' already exists on this server!" -msgstr "L'utilisateur '%s' existe déjà sur ce serveur!" - -#: ../../include/uimport.php:153 -msgid "User creation error" -msgstr "Erreur de création d'utilisateur" - -#: ../../include/uimport.php:171 -msgid "User profile creation error" -msgstr "Erreur de création du profil utilisateur" - -#: ../../include/uimport.php:220 -#, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "%d contacts non importés" -msgstr[1] "%d contacts non importés" - -#: ../../include/uimport.php:290 -msgid "Done. You can now login with your username and password" -msgstr "Action réalisé. Vous pouvez désormais vous connecter avec votre nom d'utilisateur et votre mot de passe" - -#: ../../index.php:428 -msgid "toggle mobile" -msgstr "activ. mobile" - -#: ../../view/theme/cleanzero/config.php:82 -#: ../../view/theme/dispy/config.php:72 ../../view/theme/quattro/config.php:66 -#: ../../view/theme/diabook/config.php:150 ../../view/theme/vier/config.php:55 -#: ../../view/theme/duepuntozero/config.php:61 -msgid "Theme settings" -msgstr "Réglages du thème graphique" - -#: ../../view/theme/cleanzero/config.php:83 -msgid "Set resize level for images in posts and comments (width and height)" -msgstr "Choisir une taille pour les images dans les publications et commentaires (largeur et hauteur)" - -#: ../../view/theme/cleanzero/config.php:84 -#: ../../view/theme/dispy/config.php:73 -#: ../../view/theme/diabook/config.php:151 -msgid "Set font-size for posts and comments" -msgstr "Réglez 'font-size' (taille de police) pour publications et commentaires" - -#: ../../view/theme/cleanzero/config.php:85 -msgid "Set theme width" -msgstr "Largeur du thème" - -#: ../../view/theme/cleanzero/config.php:86 -#: ../../view/theme/quattro/config.php:68 -msgid "Color scheme" -msgstr "Palette de couleurs" - -#: ../../view/theme/dispy/config.php:74 -#: ../../view/theme/diabook/config.php:152 -msgid "Set line-height for posts and comments" -msgstr "Réglez 'line-height' (hauteur de police) pour publications et commentaires" - -#: ../../view/theme/dispy/config.php:75 -msgid "Set colour scheme" -msgstr "Choisir le schéma de couleurs" - -#: ../../view/theme/quattro/config.php:67 -msgid "Alignment" -msgstr "Alignement" - -#: ../../view/theme/quattro/config.php:67 -msgid "Left" -msgstr "Gauche" - -#: ../../view/theme/quattro/config.php:67 -msgid "Center" -msgstr "Centre" - -#: ../../view/theme/quattro/config.php:69 -msgid "Posts font size" -msgstr "Taille de texte des publications" - -#: ../../view/theme/quattro/config.php:70 -msgid "Textareas font size" -msgstr "Taille de police des zones de texte" - -#: ../../view/theme/diabook/config.php:153 -msgid "Set resolution for middle column" -msgstr "Réglez la résolution de la colonne centrale" - -#: ../../view/theme/diabook/config.php:154 -msgid "Set color scheme" -msgstr "Choisir le schéma de couleurs" - -#: ../../view/theme/diabook/config.php:155 -msgid "Set zoomfactor for Earth Layer" -msgstr "Niveau de zoom" - -#: ../../view/theme/diabook/config.php:156 -#: ../../view/theme/diabook/theme.php:585 -msgid "Set longitude (X) for Earth Layers" -msgstr "Régler la longitude (X) pour la géolocalisation" - -#: ../../view/theme/diabook/config.php:157 -#: ../../view/theme/diabook/theme.php:586 -msgid "Set latitude (Y) for Earth Layers" -msgstr "Régler la latitude (Y) pour la géolocalisation" - -#: ../../view/theme/diabook/config.php:158 -#: ../../view/theme/diabook/theme.php:130 -#: ../../view/theme/diabook/theme.php:544 -#: ../../view/theme/diabook/theme.php:624 -msgid "Community Pages" -msgstr "Pages de Communauté" - -#: ../../view/theme/diabook/config.php:159 -#: ../../view/theme/diabook/theme.php:579 -#: ../../view/theme/diabook/theme.php:625 -msgid "Earth Layers" -msgstr "Géolocalisation" - -#: ../../view/theme/diabook/config.php:160 -#: ../../view/theme/diabook/theme.php:391 -#: ../../view/theme/diabook/theme.php:626 -msgid "Community Profiles" -msgstr "Profils communautaires" - -#: ../../view/theme/diabook/config.php:161 -#: ../../view/theme/diabook/theme.php:599 -#: ../../view/theme/diabook/theme.php:627 -msgid "Help or @NewHere ?" -msgstr "Aide ou @NewHere?" - -#: ../../view/theme/diabook/config.php:162 -#: ../../view/theme/diabook/theme.php:606 -#: ../../view/theme/diabook/theme.php:628 -msgid "Connect Services" -msgstr "Connecter des services" - -#: ../../view/theme/diabook/config.php:163 -#: ../../view/theme/diabook/theme.php:523 -#: ../../view/theme/diabook/theme.php:629 -msgid "Find Friends" -msgstr "Trouver des amis" - -#: ../../view/theme/diabook/config.php:164 -#: ../../view/theme/diabook/theme.php:412 -#: ../../view/theme/diabook/theme.php:630 -msgid "Last users" -msgstr "Derniers utilisateurs" - -#: ../../view/theme/diabook/config.php:165 -#: ../../view/theme/diabook/theme.php:486 -#: ../../view/theme/diabook/theme.php:631 -msgid "Last photos" -msgstr "Dernières photos" - -#: ../../view/theme/diabook/config.php:166 -#: ../../view/theme/diabook/theme.php:441 -#: ../../view/theme/diabook/theme.php:632 -msgid "Last likes" -msgstr "Dernièrement aimé" - -#: ../../view/theme/diabook/theme.php:125 -msgid "Your contacts" -msgstr "Vos contacts" - -#: ../../view/theme/diabook/theme.php:128 -msgid "Your personal photos" -msgstr "Vos photos personnelles" - -#: ../../view/theme/diabook/theme.php:524 -msgid "Local Directory" -msgstr "Annuaire local" - -#: ../../view/theme/diabook/theme.php:584 -msgid "Set zoomfactor for Earth Layers" -msgstr "Régler le niveau de zoom pour la géolocalisation" - -#: ../../view/theme/diabook/theme.php:622 -msgid "Show/hide boxes at right-hand column:" -msgstr "Montrer/cacher les boîtes dans la colonne de droite :" - -#: ../../view/theme/vier/config.php:56 -msgid "Set style" -msgstr "Définir le style" - -#: ../../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" -msgstr "" diff --git a/view/fr/strings.php b/view/fr/strings.php index ef4bca5dbf..229ac9b638 100644 --- a/view/fr/strings.php +++ b/view/fr/strings.php @@ -5,6 +5,956 @@ function string_plural_select_fr($n){ return ($n > 1);; }} ; +$a->strings["Submit"] = "Envoyer"; +$a->strings["Theme settings"] = "Réglages du thème graphique"; +$a->strings["Set resize level for images in posts and comments (width and height)"] = "Choisir une taille pour les images dans les publications et commentaires (largeur et hauteur)"; +$a->strings["Set font-size for posts and comments"] = "Réglez 'font-size' (taille de police) pour publications et commentaires"; +$a->strings["Set theme width"] = "Largeur du thème"; +$a->strings["Color scheme"] = "Palette de couleurs"; +$a->strings["Set style"] = "Définir le style"; +$a->strings["default"] = "défaut"; +$a->strings["greenzero"] = ""; +$a->strings["purplezero"] = ""; +$a->strings["easterbunny"] = ""; +$a->strings["darkzero"] = ""; +$a->strings["comix"] = ""; +$a->strings["slackr"] = ""; +$a->strings["Variations"] = "Variations"; +$a->strings["don't show"] = "cacher"; +$a->strings["show"] = "montrer"; +$a->strings["Set line-height for posts and comments"] = "Réglez 'line-height' (hauteur de police) pour publications et commentaires"; +$a->strings["Set resolution for middle column"] = "Réglez la résolution de la colonne centrale"; +$a->strings["Set color scheme"] = "Choisir le schéma de couleurs"; +$a->strings["Set zoomfactor for Earth Layer"] = "Niveau de zoom"; +$a->strings["Set longitude (X) for Earth Layers"] = "Régler la longitude (X) pour la géolocalisation"; +$a->strings["Set latitude (Y) for Earth Layers"] = "Régler la latitude (Y) pour la géolocalisation"; +$a->strings["Community Pages"] = "Pages de Communauté"; +$a->strings["Earth Layers"] = "Géolocalisation"; +$a->strings["Community Profiles"] = "Profils communautaires"; +$a->strings["Help or @NewHere ?"] = "Aide ou @NewHere?"; +$a->strings["Connect Services"] = "Connecter des services"; +$a->strings["Find Friends"] = "Trouver des amis"; +$a->strings["Last users"] = "Derniers utilisateurs"; +$a->strings["Last photos"] = "Dernières photos"; +$a->strings["Last likes"] = "Dernièrement aimé"; +$a->strings["Home"] = "Profil"; +$a->strings["Your posts and conversations"] = "Vos publications et conversations"; +$a->strings["Profile"] = "Profil"; +$a->strings["Your profile page"] = "Votre page de profil"; +$a->strings["Contacts"] = "Contacts"; +$a->strings["Your contacts"] = "Vos contacts"; +$a->strings["Photos"] = "Photos"; +$a->strings["Your photos"] = "Vos photos"; +$a->strings["Events"] = "Événements"; +$a->strings["Your events"] = "Vos événements"; +$a->strings["Personal notes"] = "Notes personnelles"; +$a->strings["Your personal photos"] = "Vos photos personnelles"; +$a->strings["Community"] = "Communauté"; +$a->strings["event"] = "évènement"; +$a->strings["status"] = "le statut"; +$a->strings["photo"] = "photo"; +$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s aime %3\$s de %2\$s"; +$a->strings["Contact Photos"] = "Photos du contact"; +$a->strings["Profile Photos"] = "Photos du profil"; +$a->strings["Local Directory"] = "Annuaire local"; +$a->strings["Global Directory"] = "Annuaire global"; +$a->strings["Similar Interests"] = "Intérêts similaires"; +$a->strings["Friend Suggestions"] = "Suggestions d'amitiés/contacts"; +$a->strings["Invite Friends"] = "Inviter des amis"; +$a->strings["Settings"] = "Réglages"; +$a->strings["Set zoomfactor for Earth Layers"] = "Régler le niveau de zoom pour la géolocalisation"; +$a->strings["Show/hide boxes at right-hand column:"] = "Montrer/cacher les boîtes dans la colonne de droite :"; +$a->strings["Alignment"] = "Alignement"; +$a->strings["Left"] = "Gauche"; +$a->strings["Center"] = "Centre"; +$a->strings["Posts font size"] = "Taille de texte des publications"; +$a->strings["Textareas font size"] = "Taille de police des zones de texte"; +$a->strings["Set colour scheme"] = "Choisir le schéma de couleurs"; +$a->strings["You must be logged in to use addons. "] = "Vous devez être connecté pour utiliser les greffons."; +$a->strings["Not Found"] = "Non trouvé"; +$a->strings["Page not found."] = "Page introuvable."; +$a->strings["Permission denied"] = "Permission refusée"; +$a->strings["Permission denied."] = "Permission refusée."; +$a->strings["toggle mobile"] = "activ. mobile"; +$a->strings["Do you wish to confirm your identity (%s) with %s"] = "Voulez-vous confirmer votre identité (%s) avec %s"; +$a->strings["Confirm"] = "Confirmer"; +$a->strings["Do not confirm"] = "Ne pas confirmer"; +$a->strings["Trust This Site"] = "Faire confiance à ce site"; +$a->strings["No Identifier Sent"] = "Aucun identifiant envoyé"; +$a->strings["Requested identity don't match logged in user."] = "La requête d'identité ne correspond pas à l'utilisateur connecté."; +$a->strings["Please wait; you are being redirected to <%s>"] = "Veuillez patienter, vous êtes redirigé vers <%s>"; +$a->strings["Delete this item?"] = "Effacer cet élément?"; +$a->strings["Comment"] = "Commenter"; +$a->strings["show more"] = "montrer plus"; +$a->strings["show fewer"] = "montrer moins"; +$a->strings["Update %s failed. See error logs."] = "Mise-à-jour %s échouée. Voir les journaux d'erreur."; +$a->strings["Create a New Account"] = "Créer un nouveau compte"; +$a->strings["Register"] = "S'inscrire"; +$a->strings["Logout"] = "Se déconnecter"; +$a->strings["Login"] = "Connexion"; +$a->strings["Nickname or Email address: "] = "Pseudo ou courriel: "; +$a->strings["Password: "] = "Mot de passe: "; +$a->strings["Remember me"] = "Se souvenir de moi"; +$a->strings["Or login using OpenID: "] = "Ou connectez-vous via OpenID: "; +$a->strings["Forgot your password?"] = "Mot de passe oublié?"; +$a->strings["Password Reset"] = "Réinitialiser le mot de passe"; +$a->strings["Website Terms of Service"] = "Conditions d'utilisation du site internet"; +$a->strings["terms of service"] = "conditions d'utilisation"; +$a->strings["Website Privacy Policy"] = "Politique de confidentialité du site internet"; +$a->strings["privacy policy"] = "politique de confidentialité"; +$a->strings["Requested account is not available."] = "Le compte demandé n'est pas disponible."; +$a->strings["Requested profile is not available."] = "Le profil demandé n'est pas disponible."; +$a->strings["Edit profile"] = "Editer le profil"; +$a->strings["Connect"] = "Relier"; +$a->strings["Message"] = "Message"; +$a->strings["Profiles"] = "Profils"; +$a->strings["Manage/edit profiles"] = "Gérer/éditer les profils"; +$a->strings["Change profile photo"] = "Changer de photo de profil"; +$a->strings["Create New Profile"] = "Créer un nouveau profil"; +$a->strings["Profile Image"] = "Image du profil"; +$a->strings["visible to everybody"] = "visible par tous"; +$a->strings["Edit visibility"] = "Changer la visibilité"; +$a->strings["Location:"] = "Localisation:"; +$a->strings["Gender:"] = "Genre:"; +$a->strings["Status:"] = "Statut:"; +$a->strings["Homepage:"] = "Page personnelle:"; +$a->strings["About:"] = "À propos:"; +$a->strings["Network:"] = "Réseau"; +$a->strings["g A l F d"] = "g A | F d"; +$a->strings["F d"] = "F d"; +$a->strings["[today]"] = "[aujourd'hui]"; +$a->strings["Birthday Reminders"] = "Rappels d'anniversaires"; +$a->strings["Birthdays this week:"] = "Anniversaires cette semaine:"; +$a->strings["[No description]"] = "[Sans description]"; +$a->strings["Event Reminders"] = "Rappels d'événements"; +$a->strings["Events this week:"] = "Evénements cette semaine:"; +$a->strings["Status"] = "Statut"; +$a->strings["Status Messages and Posts"] = "Messages d'état et publications"; +$a->strings["Profile Details"] = "Détails du profil"; +$a->strings["Photo Albums"] = "Albums photo"; +$a->strings["Videos"] = "Vidéos"; +$a->strings["Events and Calendar"] = "Événements et agenda"; +$a->strings["Personal Notes"] = "Notes personnelles"; +$a->strings["Only You Can See This"] = "Vous seul pouvez voir ça"; +$a->strings["General Features"] = "Fonctions générales"; +$a->strings["Multiple Profiles"] = "Profils multiples"; +$a->strings["Ability to create multiple profiles"] = "Possibilité de créer plusieurs profils"; +$a->strings["Post Composition Features"] = "Caractéristiques de composition de publication"; +$a->strings["Richtext Editor"] = "Éditeur de texte enrichi"; +$a->strings["Enable richtext editor"] = "Activer l'éditeur de texte enrichi"; +$a->strings["Post Preview"] = "Aperçu de la publication"; +$a->strings["Allow previewing posts and comments before publishing them"] = "Permet la prévisualisation des publications et commentaires avant de les publier"; +$a->strings["Auto-mention Forums"] = ""; +$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = ""; +$a->strings["Network Sidebar Widgets"] = "Widgets réseau pour barre latérale"; +$a->strings["Search by Date"] = "Rechercher par Date"; +$a->strings["Ability to select posts by date ranges"] = "Capacité de sélectionner les publications par intervalles de dates"; +$a->strings["Group Filter"] = "Filtre de groupe"; +$a->strings["Enable widget to display Network posts only from selected group"] = "Activer le widget d’affichage des publications du réseau seulement pour le groupe sélectionné"; +$a->strings["Network Filter"] = "Filtre de réseau"; +$a->strings["Enable widget to display Network posts only from selected network"] = "Activer le widget d’affichage des publications du réseau seulement pour le réseau sélectionné"; +$a->strings["Saved Searches"] = "Recherches"; +$a->strings["Save search terms for re-use"] = "Sauvegarder la recherche pour une utilisation ultérieure"; +$a->strings["Network Tabs"] = "Onglets Réseau"; +$a->strings["Network Personal Tab"] = "Onglet Réseau Personnel"; +$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Activer l'onglet pour afficher seulement les publications du réseau où vous avez interagit"; +$a->strings["Network New Tab"] = "Nouvel onglet réseaux"; +$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Activer l'onglet pour afficher seulement les publications du réseau (dans les 12 dernières heures)"; +$a->strings["Network Shared Links Tab"] = "Onglet réseau partagé"; +$a->strings["Enable tab to display only Network posts with links in them"] = "Activer l'onglet pour afficher seulement les publications du réseau contenant des liens"; +$a->strings["Post/Comment Tools"] = "outils de publication/commentaire"; +$a->strings["Multiple Deletion"] = "Suppression multiple"; +$a->strings["Select and delete multiple posts/comments at once"] = "Sélectionner et supprimer plusieurs publications/commentaires à la fois"; +$a->strings["Edit Sent Posts"] = "Éditer les publications envoyées"; +$a->strings["Edit and correct posts and comments after sending"] = "Éditer et corriger les publications et commentaires après l'envoi"; +$a->strings["Tagging"] = "Étiquettage"; +$a->strings["Ability to tag existing posts"] = "Possibilité d'étiqueter les publications existantes"; +$a->strings["Post Categories"] = "Catégories des publications"; +$a->strings["Add categories to your posts"] = "Ajouter des catégories à vos publications"; +$a->strings["Saved Folders"] = "Dossiers sauvegardés"; +$a->strings["Ability to file posts under folders"] = "Possibilité d'afficher les publications sous les répertoires"; +$a->strings["Dislike Posts"] = "Publications non aimées"; +$a->strings["Ability to dislike posts/comments"] = "Possibilité de ne pas aimer les publications/commentaires"; +$a->strings["Star Posts"] = "Publications spéciales"; +$a->strings["Ability to mark special posts with a star indicator"] = "Possibilité de marquer les publications spéciales d'une étoile"; +$a->strings["Mute Post Notifications"] = ""; +$a->strings["Ability to mute notifications for a thread"] = ""; +$a->strings["%s's birthday"] = "Anniversaire de %s's"; +$a->strings["Happy Birthday %s"] = "Joyeux anniversaire, %s !"; +$a->strings["[Name Withheld]"] = "[Nom non-publié]"; +$a->strings["Item not found."] = "Élément introuvable."; +$a->strings["Do you really want to delete this item?"] = "Voulez-vous vraiment supprimer cet élément ?"; +$a->strings["Yes"] = "Oui"; +$a->strings["Cancel"] = "Annuler"; +$a->strings["Archives"] = "Archives"; +$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un groupe supprimé a été recréé. Les permissions existantes pourraient s'appliquer à ce groupe et aux futurs membres. Si ce n'est pas le comportement attendu, merci de re-créer un autre groupe sous un autre nom."; +$a->strings["Default privacy group for new contacts"] = "Paramètres de confidentialité par défaut pour les nouveaux contacts"; +$a->strings["Everybody"] = "Tout le monde"; +$a->strings["edit"] = "éditer"; +$a->strings["Groups"] = "Groupes"; +$a->strings["Edit group"] = "Editer groupe"; +$a->strings["Create a new group"] = "Créer un nouveau groupe"; +$a->strings["Contacts not in any group"] = "Contacts n'appartenant à aucun groupe"; +$a->strings["add"] = "ajouter"; +$a->strings["Wall Photos"] = "Photos du mur"; +$a->strings["Cannot locate DNS info for database server '%s'"] = "Impossible de localiser les informations DNS pour le serveur de base de données '%s'"; +$a->strings["Add New Contact"] = "Ajouter un nouveau contact"; +$a->strings["Enter address or web location"] = "Entrez son adresse ou sa localisation web"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Exemple: bob@example.com, http://example.com/barbara"; +$a->strings["%d invitation available"] = array( + 0 => "%d invitation disponible", + 1 => "%d invitations disponibles", +); +$a->strings["Find People"] = "Trouver des personnes"; +$a->strings["Enter name or interest"] = "Entrez un nom ou un centre d'intérêt"; +$a->strings["Connect/Follow"] = "Connecter/Suivre"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "Exemples: Robert Morgenstein, Pêche"; +$a->strings["Find"] = "Trouver"; +$a->strings["Random Profile"] = "Profil au hasard"; +$a->strings["Networks"] = "Réseaux"; +$a->strings["All Networks"] = "Tous réseaux"; +$a->strings["Everything"] = "Tout"; +$a->strings["Categories"] = "Catégories"; +$a->strings["%d contact in common"] = array( + 0 => "%d contact en commun", + 1 => "%d contacts en commun", +); +$a->strings["Friendica Notification"] = "Notification Friendica"; +$a->strings["Thank You,"] = "Merci, "; +$a->strings["%s Administrator"] = "L'administrateur de %s"; +$a->strings["noreply"] = "noreply"; +$a->strings["%s "] = "%s "; +$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notification] Nouveau courriel reçu sur %s"; +$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s vous a envoyé un nouveau message privé sur %2\$s."; +$a->strings["%1\$s sent you %2\$s."] = "%1\$s vous a envoyé %2\$s."; +$a->strings["a private message"] = "un message privé"; +$a->strings["Please visit %s to view and/or reply to your private messages."] = "Merci de visiter %s pour voir vos messages privés et/ou y répondre."; +$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s a commenté sur [url=%2\$s]un %3\$s[/url]"; +$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s a commenté sur [url=%2\$s]le %4\$s de %3\$s[/url]"; +$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s commented on [url=%2\$s]your %3\$s[/url]"; +$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Notification] Commentaire de %2\$s sur la conversation #%1\$d"; +$a->strings["%s commented on an item/conversation you have been following."] = "%s a commenté un élément que vous suivez."; +$a->strings["Please visit %s to view and/or reply to the conversation."] = "Merci de visiter %s pour voir la conversation et/ou y répondre."; +$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notification] %s a posté sur votre mur de profil"; +$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s a publié sur votre mur à %2\$s"; +$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s a posté sur [url=%2\$s]votre mur[/url]"; +$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notification] %s vous a étiqueté"; +$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s vous a étiqueté sur %2\$s"; +$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]vous a étiqueté[/url]."; +$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Notification] %s partage une nouvelle publication"; +$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s a partagé une nouvelle publication sur %2\$s"; +$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]partage une publication[/url]."; +$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notify] %1\$s vous a sollicité"; +$a->strings["%1\$s poked you at %2\$s"] = "%1\$s vous a sollicité via %2\$s"; +$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s vous a [url=%2\$s]sollicité[/url]."; +$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notification] %s a étiqueté votre publication"; +$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s a étiqueté votre publication sur %2\$s"; +$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s a étiqueté [url=%2\$s]votre publication[/url]"; +$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notification] Introduction reçue"; +$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Vous avez reçu une introduction de '%1\$s' sur %2\$s"; +$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Vous avez reçu [url=%1\$s]une introduction[/url] de %2\$s."; +$a->strings["You may visit their profile at %s"] = "Vous pouvez visiter son profil sur %s"; +$a->strings["Please visit %s to approve or reject the introduction."] = "Merci de visiter %s pour approuver ou rejeter l'introduction."; +$a->strings["[Friendica:Notify] A new person is sharing with you"] = ""; +$a->strings["%1\$s is sharing with you at %2\$s"] = ""; +$a->strings["[Friendica:Notify] You have a new follower"] = ""; +$a->strings["You have a new follower at %2\$s : %1\$s"] = ""; +$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Notification] Nouvelle suggestion d'amitié"; +$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Vous avez reçu une suggestion de '%1\$s' sur %2\$s"; +$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Vous avez reçu [url=%1\$s]une suggestion[/url] de %3\$s pour %2\$s."; +$a->strings["Name:"] = "Nom :"; +$a->strings["Photo:"] = "Photo :"; +$a->strings["Please visit %s to approve or reject the suggestion."] = "Merci de visiter %s pour approuver ou rejeter la suggestion."; +$a->strings["[Friendica:Notify] Connection accepted"] = ""; +$a->strings["'%1\$s' has acepted your connection request at %2\$s"] = ""; +$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = ""; +$a->strings["You are now mutual friends and may exchange status updates, photos, and email\n\twithout restriction."] = ""; +$a->strings["Please visit %s if you wish to make any changes to this relationship."] = ""; +$a->strings["'%1\$s' has chosen to accept you a \"fan\", which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = ""; +$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future. "] = ""; +$a->strings["[Friendica System:Notify] registration request"] = ""; +$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = ""; +$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Vous avez reçu une [url=%1\$s]demande de création de compte[/url] de %2\$s."; +$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Nom complet :\t%1\$s\\nAdresse :\t%2\$s\\nIdentifiant :\t%3\$s (%4\$s)"; +$a->strings["Please visit %s to approve or reject the request."] = "Veuillez visiter %s pour approuver ou rejeter la demande."; +$a->strings["User not found."] = "Utilisateur non trouvé"; +$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "Le quota journalier de %d publications a été atteint. La publication a été rejetée."; +$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Le quota hebdomadaire de %d publications a été atteint. La publication a été rejetée."; +$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "Le quota mensuel de %d publications a été atteint. La publication a été rejetée."; +$a->strings["There is no status with this id."] = "Il n'y a pas de statut avec cet id."; +$a->strings["There is no conversation with this id."] = "Il n'y a pas de conversation avec cet id."; +$a->strings["Invalid request."] = "Requête invalide."; +$a->strings["Invalid item."] = "Item invalide."; +$a->strings["Invalid action. "] = "Action invalide."; +$a->strings["DB error"] = ""; +$a->strings["view full size"] = "voir en pleine taille"; +$a->strings[" on Last.fm"] = "sur Last.fm"; +$a->strings["Full Name:"] = "Nom complet:"; +$a->strings["j F, Y"] = "j F, Y"; +$a->strings["j F"] = "j F"; +$a->strings["Birthday:"] = "Anniversaire:"; +$a->strings["Age:"] = "Age:"; +$a->strings["for %1\$d %2\$s"] = "depuis %1\$d %2\$s"; +$a->strings["Sexual Preference:"] = "Préférence sexuelle:"; +$a->strings["Hometown:"] = " Ville d'origine:"; +$a->strings["Tags:"] = "Étiquette:"; +$a->strings["Political Views:"] = "Opinions politiques:"; +$a->strings["Religion:"] = "Religion:"; +$a->strings["Hobbies/Interests:"] = "Passe-temps/Centres d'intérêt:"; +$a->strings["Likes:"] = "J'aime :"; +$a->strings["Dislikes:"] = "Je n'aime pas :"; +$a->strings["Contact information and Social Networks:"] = "Coordonnées/Réseaux sociaux:"; +$a->strings["Musical interests:"] = "Goûts musicaux:"; +$a->strings["Books, literature:"] = "Lectures:"; +$a->strings["Television:"] = "Télévision:"; +$a->strings["Film/dance/culture/entertainment:"] = "Cinéma/Danse/Culture/Divertissement:"; +$a->strings["Love/Romance:"] = "Amour/Romance:"; +$a->strings["Work/employment:"] = "Activité professionnelle/Occupation:"; +$a->strings["School/education:"] = "Études/Formation:"; +$a->strings["Nothing new here"] = "Rien de neuf ici"; +$a->strings["Clear notifications"] = "Effacer les notifications"; +$a->strings["End this session"] = "Mettre fin à cette session"; +$a->strings["Your videos"] = "Vos vidéos"; +$a->strings["Your personal notes"] = "Vos notes personnelles"; +$a->strings["Sign in"] = "Se connecter"; +$a->strings["Home Page"] = "Page d'accueil"; +$a->strings["Create an account"] = "Créer un compte"; +$a->strings["Help"] = "Aide"; +$a->strings["Help and documentation"] = "Aide et documentation"; +$a->strings["Apps"] = "Applications"; +$a->strings["Addon applications, utilities, games"] = "Applications supplémentaires, utilitaires, jeux"; +$a->strings["Search"] = "Recherche"; +$a->strings["Search site content"] = "Rechercher dans le contenu du site"; +$a->strings["Conversations on this site"] = "Conversations ayant cours sur ce site"; +$a->strings["Conversations on the network"] = ""; +$a->strings["Directory"] = "Annuaire"; +$a->strings["People directory"] = "Annuaire des utilisateurs"; +$a->strings["Information"] = "Information"; +$a->strings["Information about this friendica instance"] = "Information au sujet de cette instance de friendica"; +$a->strings["Network"] = "Réseau"; +$a->strings["Conversations from your friends"] = "Conversations de vos amis"; +$a->strings["Network Reset"] = "Réinitialiser le réseau"; +$a->strings["Load Network page with no filters"] = "Chargement des pages du réseau sans filtre"; +$a->strings["Introductions"] = "Introductions"; +$a->strings["Friend Requests"] = "Demande d'amitié"; +$a->strings["Notifications"] = "Notifications"; +$a->strings["See all notifications"] = "Voir toute notification"; +$a->strings["Mark all system notifications seen"] = "Marquer toutes les notifications système comme 'vues'"; +$a->strings["Messages"] = "Messages"; +$a->strings["Private mail"] = "Messages privés"; +$a->strings["Inbox"] = "Messages entrants"; +$a->strings["Outbox"] = "Messages sortants"; +$a->strings["New Message"] = "Nouveau message"; +$a->strings["Manage"] = "Gérer"; +$a->strings["Manage other pages"] = "Gérer les autres pages"; +$a->strings["Delegations"] = "Délégations"; +$a->strings["Delegate Page Management"] = "Déléguer la gestion de la page"; +$a->strings["Account settings"] = "Compte"; +$a->strings["Manage/Edit Profiles"] = "Gérer/Éditer les profiles"; +$a->strings["Manage/edit friends and contacts"] = "Gérer/éditer les amitiés et contacts"; +$a->strings["Admin"] = "Admin"; +$a->strings["Site setup and configuration"] = "Démarrage et configuration du site"; +$a->strings["Navigation"] = "Navigation"; +$a->strings["Site map"] = "Carte du site"; +$a->strings["Click here to upgrade."] = "Cliquez ici pour mettre à jour."; +$a->strings["This action exceeds the limits set by your subscription plan."] = "Cette action dépasse les limites définies par votre abonnement."; +$a->strings["This action is not available under your subscription plan."] = "Cette action n'est pas disponible avec votre abonnement."; +$a->strings["Disallowed profile URL."] = "URL de profil interdite."; +$a->strings["Connect URL missing."] = "URL de connexion manquante."; +$a->strings["This site is not configured to allow communications with other networks."] = "Ce site n'est pas configuré pour dialoguer avec d'autres réseaux."; +$a->strings["No compatible communication protocols or feeds were discovered."] = "Aucun protocole de communication ni aucun flux n'a pu être découvert."; +$a->strings["The profile address specified does not provide adequate information."] = "L'adresse de profil indiquée ne fournit par les informations adéquates."; +$a->strings["An author or name was not found."] = "Aucun auteur ou nom d'auteur n'a pu être trouvé."; +$a->strings["No browser URL could be matched to this address."] = "Aucune URL de navigation ne correspond à cette adresse."; +$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Impossible de faire correspondre l'adresse d'identité en \"@\" avec un protocole connu ou un contact courriel."; +$a->strings["Use mailto: in front of address to force email check."] = "Utilisez mailto: en face d'une adresse pour l'obliger à être reconnue comme courriel."; +$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "L'adresse de profil spécifiée correspond à un réseau qui a été désactivé sur ce site."; +$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Profil limité. Cette personne ne sera pas capable de recevoir des notifications directes/personnelles de votre part."; +$a->strings["Unable to retrieve contact information."] = "Impossible de récupérer les informations du contact."; +$a->strings["following"] = "following"; +$a->strings["Error decoding account file"] = "Une erreur a été détecté en décodant un fichier utilisateur"; +$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Erreur ! Pas de ficher de version existant ! Êtes vous sur un compte Friendica ?"; +$a->strings["Error! Cannot check nickname"] = "Erreur! Pseudo invalide"; +$a->strings["User '%s' already exists on this server!"] = "L'utilisateur '%s' existe déjà sur ce serveur!"; +$a->strings["User creation error"] = "Erreur de création d'utilisateur"; +$a->strings["User profile creation error"] = "Erreur de création du profil utilisateur"; +$a->strings["%d contact not imported"] = array( + 0 => "%d contacts non importés", + 1 => "%d contacts non importés", +); +$a->strings["Done. You can now login with your username and password"] = "Action réalisé. Vous pouvez désormais vous connecter avec votre nom d'utilisateur et votre mot de passe"; +$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; +$a->strings["Starts:"] = "Débute:"; +$a->strings["Finishes:"] = "Finit:"; +$a->strings["stopped following"] = "retiré de la liste de suivi"; +$a->strings["Poke"] = "Sollicitations (pokes)"; +$a->strings["View Status"] = "Voir les statuts"; +$a->strings["View Profile"] = "Voir le profil"; +$a->strings["View Photos"] = "Voir les photos"; +$a->strings["Network Posts"] = "Publications du réseau"; +$a->strings["Edit Contact"] = "Éditer le contact"; +$a->strings["Drop Contact"] = "Supprimer le contact"; +$a->strings["Send PM"] = "Message privé"; +$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."] = "\nLes développeurs de Friendica ont récemment publié la mise à jour %s, mais en tentant de l’installer, quelque chose s’est terriblement mal passé. Une réparation s’impose et je ne peux pas la faire tout seul. Contactez un développeur Friendica si vous ne pouvez pas corriger le problème vous-même. Il est possible que ma base de données soit corrompue."; +$a->strings["The error message is\n[pre]%s[/pre]"] = "Le message d’erreur est\n[pre]%s[/pre]"; +$a->strings["Errors encountered creating database tables."] = "Des erreurs ont été signalées lors de la création des tables."; +$a->strings["Errors encountered performing database changes."] = "Des erreurs sont survenues lors de la mise à jour de la base de données."; +$a->strings["Miscellaneous"] = "Divers"; +$a->strings["year"] = "an"; +$a->strings["month"] = "mois"; +$a->strings["day"] = "jour"; +$a->strings["never"] = "jamais"; +$a->strings["less than a second ago"] = "il y a moins d'une seconde"; +$a->strings["years"] = "ans"; +$a->strings["months"] = "mois"; +$a->strings["week"] = "semaine"; +$a->strings["weeks"] = "semaines"; +$a->strings["days"] = "jours"; +$a->strings["hour"] = "heure"; +$a->strings["hours"] = "heures"; +$a->strings["minute"] = "minute"; +$a->strings["minutes"] = "minutes"; +$a->strings["second"] = "seconde"; +$a->strings["seconds"] = "secondes"; +$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s auparavant"; +$a->strings["[no subject]"] = "[pas de sujet]"; +$a->strings["(no subject)"] = "(sans titre)"; +$a->strings["Unknown | Not categorised"] = "Inconnu | Non-classé"; +$a->strings["Block immediately"] = "Bloquer immédiatement"; +$a->strings["Shady, spammer, self-marketer"] = "Douteux, spammeur, accro à l'auto-promotion"; +$a->strings["Known to me, but no opinion"] = "Connu de moi, mais sans opinion"; +$a->strings["OK, probably harmless"] = "OK, probablement inoffensif"; +$a->strings["Reputable, has my trust"] = "Réputé, a toute ma confiance"; +$a->strings["Frequently"] = "Fréquemment"; +$a->strings["Hourly"] = "Toutes les heures"; +$a->strings["Twice daily"] = "Deux fois par jour"; +$a->strings["Daily"] = "Chaque jour"; +$a->strings["Weekly"] = "Chaque semaine"; +$a->strings["Monthly"] = "Chaque mois"; +$a->strings["Friendica"] = "Friendica"; +$a->strings["OStatus"] = "OStatus"; +$a->strings["RSS/Atom"] = "RSS/Atom"; +$a->strings["Email"] = "Courriel"; +$a->strings["Diaspora"] = "Diaspora"; +$a->strings["Facebook"] = "Facebook"; +$a->strings["Zot!"] = "Zot!"; +$a->strings["LinkedIn"] = "LinkedIn"; +$a->strings["XMPP/IM"] = "XMPP/IM"; +$a->strings["MySpace"] = "MySpace"; +$a->strings["Google+"] = "Google+"; +$a->strings["pump.io"] = "pump.io"; +$a->strings["Twitter"] = "Twitter"; +$a->strings["Diaspora Connector"] = "Connecteur Diaspora"; +$a->strings["Statusnet"] = "Statusnet"; +$a->strings["App.net"] = "App.net"; +$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s est désormais lié à %2\$s"; +$a->strings["Sharing notification from Diaspora network"] = "Notification de partage du réseau Diaspora"; +$a->strings["Attachments:"] = "Pièces jointes : "; +$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s n'aime pas %3\$s de %2\$s"; +$a->strings["%1\$s poked %2\$s"] = "%1\$s a sollicité %2\$s"; +$a->strings["%1\$s is currently %2\$s"] = "%1\$s est d'humeur %2\$s"; +$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s a étiqueté %3\$s de %2\$s avec %4\$s"; +$a->strings["post/item"] = "publication/élément"; +$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s a marqué le %3\$s de %2\$s comme favori"; +$a->strings["Select"] = "Sélectionner"; +$a->strings["Delete"] = "Supprimer"; +$a->strings["View %s's profile @ %s"] = "Voir le profil de %s @ %s"; +$a->strings["Categories:"] = "Catégories:"; +$a->strings["Filed under:"] = "Rangé sous:"; +$a->strings["%s from %s"] = "%s de %s"; +$a->strings["View in context"] = "Voir dans le contexte"; +$a->strings["Please wait"] = "Patientez"; +$a->strings["remove"] = "enlever"; +$a->strings["Delete Selected Items"] = "Supprimer les éléments sélectionnés"; +$a->strings["Follow Thread"] = "Suivre le fil"; +$a->strings["%s likes this."] = "%s aime ça."; +$a->strings["%s doesn't like this."] = "%s n'aime pas ça."; +$a->strings["%2\$d people like this"] = "%2\$d personnes aiment ça"; +$a->strings["%2\$d people don't like this"] = "%2\$d personnes n'aiment pas ça"; +$a->strings["and"] = "et"; +$a->strings[", and %d other people"] = ", et %d autres personnes"; +$a->strings["%s like this."] = "%s aiment ça."; +$a->strings["%s don't like this."] = "%s n'aiment pas ça."; +$a->strings["Visible to everybody"] = "Visible par tout le monde"; +$a->strings["Please enter a link URL:"] = "Entrez un lien web:"; +$a->strings["Please enter a video link/URL:"] = "Entrez un lien/URL video :"; +$a->strings["Please enter an audio link/URL:"] = "Entrez un lien/URL audio :"; +$a->strings["Tag term:"] = "Terme d'étiquette:"; +$a->strings["Save to Folder:"] = "Sauver dans le Dossier:"; +$a->strings["Where are you right now?"] = "Où êtes-vous présentemment?"; +$a->strings["Delete item(s)?"] = "Supprimer les élément(s) ?"; +$a->strings["Post to Email"] = "Publier aux courriels"; +$a->strings["Connectors disabled, since \"%s\" is enabled."] = ""; +$a->strings["Hide your profile details from unknown viewers?"] = "Cacher les détails du profil aux visiteurs inconnus?"; +$a->strings["Share"] = "Partager"; +$a->strings["Upload photo"] = "Joindre photo"; +$a->strings["upload photo"] = "envoi image"; +$a->strings["Attach file"] = "Joindre fichier"; +$a->strings["attach file"] = "ajout fichier"; +$a->strings["Insert web link"] = "Insérer lien web"; +$a->strings["web link"] = "lien web"; +$a->strings["Insert video link"] = "Insérer un lien video"; +$a->strings["video link"] = "lien vidéo"; +$a->strings["Insert audio link"] = "Insérer un lien audio"; +$a->strings["audio link"] = "lien audio"; +$a->strings["Set your location"] = "Définir votre localisation"; +$a->strings["set location"] = "spéc. localisation"; +$a->strings["Clear browser location"] = "Effacer la localisation du navigateur"; +$a->strings["clear location"] = "supp. localisation"; +$a->strings["Set title"] = "Définir un titre"; +$a->strings["Categories (comma-separated list)"] = "Catégories (séparées par des virgules)"; +$a->strings["Permission settings"] = "Réglages des permissions"; +$a->strings["permissions"] = "permissions"; +$a->strings["CC: email addresses"] = "CC: adresses de courriel"; +$a->strings["Public post"] = "Publication publique"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Exemple: bob@exemple.com, mary@exemple.com"; +$a->strings["Preview"] = "Aperçu"; +$a->strings["Post to Groups"] = "Publier aux groupes"; +$a->strings["Post to Contacts"] = "Publier aux contacts"; +$a->strings["Private post"] = "Message privé"; +$a->strings["newer"] = "Plus récent"; +$a->strings["older"] = "Plus ancien"; +$a->strings["prev"] = "précédent"; +$a->strings["first"] = "premier"; +$a->strings["last"] = "dernier"; +$a->strings["next"] = "suivant"; +$a->strings["Loading more entries..."] = ""; +$a->strings["The end"] = ""; +$a->strings["No contacts"] = "Aucun contact"; +$a->strings["%d Contact"] = array( + 0 => "%d contact", + 1 => "%d contacts", +); +$a->strings["View Contacts"] = "Voir les contacts"; +$a->strings["Save"] = "Sauver"; +$a->strings["poke"] = "titiller"; +$a->strings["poked"] = "a titillé"; +$a->strings["ping"] = "attirer l'attention"; +$a->strings["pinged"] = "a attiré l'attention de"; +$a->strings["prod"] = "aiguillonner"; +$a->strings["prodded"] = "a aiguillonné"; +$a->strings["slap"] = "gifler"; +$a->strings["slapped"] = "a giflé"; +$a->strings["finger"] = "tripoter"; +$a->strings["fingered"] = "a tripoté"; +$a->strings["rebuff"] = "rabrouer"; +$a->strings["rebuffed"] = "a rabroué"; +$a->strings["happy"] = "heureuse"; +$a->strings["sad"] = "triste"; +$a->strings["mellow"] = "suave"; +$a->strings["tired"] = "fatiguée"; +$a->strings["perky"] = "guillerette"; +$a->strings["angry"] = "colérique"; +$a->strings["stupified"] = "stupéfaite"; +$a->strings["puzzled"] = "perplexe"; +$a->strings["interested"] = "intéressée"; +$a->strings["bitter"] = "amère"; +$a->strings["cheerful"] = "entraînante"; +$a->strings["alive"] = "vivante"; +$a->strings["annoyed"] = "ennuyée"; +$a->strings["anxious"] = "anxieuse"; +$a->strings["cranky"] = "excentrique"; +$a->strings["disturbed"] = "dérangée"; +$a->strings["frustrated"] = "frustrée"; +$a->strings["motivated"] = "motivée"; +$a->strings["relaxed"] = "détendue"; +$a->strings["surprised"] = "surprise"; +$a->strings["Monday"] = "Lundi"; +$a->strings["Tuesday"] = "Mardi"; +$a->strings["Wednesday"] = "Mercredi"; +$a->strings["Thursday"] = "Jeudi"; +$a->strings["Friday"] = "Vendredi"; +$a->strings["Saturday"] = "Samedi"; +$a->strings["Sunday"] = "Dimanche"; +$a->strings["January"] = "Janvier"; +$a->strings["February"] = "Février"; +$a->strings["March"] = "Mars"; +$a->strings["April"] = "Avril"; +$a->strings["May"] = "Mai"; +$a->strings["June"] = "Juin"; +$a->strings["July"] = "Juillet"; +$a->strings["August"] = "Août"; +$a->strings["September"] = "Septembre"; +$a->strings["October"] = "Octobre"; +$a->strings["November"] = "Novembre"; +$a->strings["December"] = "Décembre"; +$a->strings["View Video"] = "Regarder la vidéo"; +$a->strings["bytes"] = "octets"; +$a->strings["Click to open/close"] = "Cliquer pour ouvrir/fermer"; +$a->strings["link to source"] = "lien original"; +$a->strings["Select an alternate language"] = "Choisir une langue alternative"; +$a->strings["activity"] = "activité"; +$a->strings["comment"] = array( + 0 => "", + 1 => "commentaire", +); +$a->strings["post"] = "publication"; +$a->strings["Item filed"] = "Élément classé"; +$a->strings["Logged out."] = "Déconnecté."; +$a->strings["Login failed."] = "Échec de connexion."; +$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Nous avons eu un souci avec l'OpenID que vous avez fourni. merci de vérifier l'orthographe correcte de ce dernier."; +$a->strings["The error message was:"] = "Le message d'erreur était :"; +$a->strings["Image/photo"] = "Image/photo"; +$a->strings["%2\$s %3\$s"] = ""; +$a->strings["%s wrote the following post"] = ""; +$a->strings["$1 wrote:"] = "$1 a écrit:"; +$a->strings["Encrypted content"] = "Contenu chiffré"; +$a->strings["Welcome "] = "Bienvenue "; +$a->strings["Please upload a profile photo."] = "Merci d'illustrer votre profil d'une image."; +$a->strings["Welcome back "] = "Bienvenue à nouveau, "; +$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."] = "Le jeton de sécurité du formulaire n'est pas correct. Ceci veut probablement dire que le formulaire est resté ouvert trop longtemps (plus de 3 heures) avant d'être validé."; +$a->strings["Embedded content"] = "Contenu incorporé"; +$a->strings["Embedding disabled"] = "Incorporation désactivée"; +$a->strings["Male"] = "Masculin"; +$a->strings["Female"] = "Féminin"; +$a->strings["Currently Male"] = "Actuellement masculin"; +$a->strings["Currently Female"] = "Actuellement féminin"; +$a->strings["Mostly Male"] = "Principalement masculin"; +$a->strings["Mostly Female"] = "Principalement féminin"; +$a->strings["Transgender"] = "Transgenre"; +$a->strings["Intersex"] = "Inter-sexe"; +$a->strings["Transsexual"] = "Transsexuel"; +$a->strings["Hermaphrodite"] = "Hermaphrodite"; +$a->strings["Neuter"] = "Neutre"; +$a->strings["Non-specific"] = "Non-spécifique"; +$a->strings["Other"] = "Autre"; +$a->strings["Undecided"] = "Indécis"; +$a->strings["Males"] = "Hommes"; +$a->strings["Females"] = "Femmes"; +$a->strings["Gay"] = "Gay"; +$a->strings["Lesbian"] = "Lesbienne"; +$a->strings["No Preference"] = "Sans préférence"; +$a->strings["Bisexual"] = "Bisexuel"; +$a->strings["Autosexual"] = "Auto-sexuel"; +$a->strings["Abstinent"] = "Abstinent"; +$a->strings["Virgin"] = "Vierge"; +$a->strings["Deviant"] = "Déviant"; +$a->strings["Fetish"] = "Fétichiste"; +$a->strings["Oodles"] = "Oodles"; +$a->strings["Nonsexual"] = "Non-sexuel"; +$a->strings["Single"] = "Célibataire"; +$a->strings["Lonely"] = "Esseulé"; +$a->strings["Available"] = "Disponible"; +$a->strings["Unavailable"] = "Indisponible"; +$a->strings["Has crush"] = "Attiré par quelqu'un"; +$a->strings["Infatuated"] = "Entiché"; +$a->strings["Dating"] = "Dans une relation"; +$a->strings["Unfaithful"] = "Infidèle"; +$a->strings["Sex Addict"] = "Accro au sexe"; +$a->strings["Friends"] = "Amis"; +$a->strings["Friends/Benefits"] = "Amis par intérêt"; +$a->strings["Casual"] = "Casual"; +$a->strings["Engaged"] = "Fiancé"; +$a->strings["Married"] = "Marié"; +$a->strings["Imaginarily married"] = "Se croit marié"; +$a->strings["Partners"] = "Partenaire"; +$a->strings["Cohabiting"] = "En cohabitation"; +$a->strings["Common law"] = "Marié \"de fait\"/\"sui juris\" (concubin)"; +$a->strings["Happy"] = "Heureux"; +$a->strings["Not looking"] = "Pas intéressé"; +$a->strings["Swinger"] = "Échangiste"; +$a->strings["Betrayed"] = "Trahi(e)"; +$a->strings["Separated"] = "Séparé"; +$a->strings["Unstable"] = "Instable"; +$a->strings["Divorced"] = "Divorcé"; +$a->strings["Imaginarily divorced"] = "Se croit divorcé"; +$a->strings["Widowed"] = "Veuf/Veuve"; +$a->strings["Uncertain"] = "Incertain"; +$a->strings["It's complicated"] = "C'est compliqué"; +$a->strings["Don't care"] = "S'en désintéresse"; +$a->strings["Ask me"] = "Me demander"; +$a->strings["An invitation is required."] = "Une invitation est requise."; +$a->strings["Invitation could not be verified."] = "L'invitation fournie n'a pu être validée."; +$a->strings["Invalid OpenID url"] = "Adresse OpenID invalide"; +$a->strings["Please enter the required information."] = "Entrez les informations requises."; +$a->strings["Please use a shorter name."] = "Utilisez un nom plus court."; +$a->strings["Name too short."] = "Nom trop court."; +$a->strings["That doesn't appear to be your full (First Last) name."] = "Ceci ne semble pas être votre nom complet (Prénom Nom)."; +$a->strings["Your email domain is not among those allowed on this site."] = "Votre domaine de courriel n'est pas autorisé sur ce site."; +$a->strings["Not a valid email address."] = "Ceci n'est pas une adresse courriel valide."; +$a->strings["Cannot use that email."] = "Impossible d'utiliser ce courriel."; +$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Votre \"pseudo\" peut seulement contenir les caractères \"a-z\", \"0-9\", \"-\", and \"_\", et doit commencer par une lettre."; +$a->strings["Nickname is already registered. Please choose another."] = "Pseudo déjà utilisé. Merci d'en choisir un autre."; +$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Ce surnom a déjà été utilisé ici, et ne peut re-servir. Merci d'en choisir un autre."; +$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERREUR SÉRIEUSE: La génération des clés de sécurité a échoué."; +$a->strings["An error occurred during registration. Please try again."] = "Une erreur est survenue lors de l'inscription. Merci de recommencer."; +$a->strings["An error occurred creating your default profile. Please try again."] = "Une erreur est survenue lors de la création de votre profil par défaut. Merci de recommencer."; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\n\t\tChère/Cher %1\$s,\n\t\t\tMerci de vous être inscrit sur %2\$s. Votre compte a bien été créé.\n\t"; +$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."] = "\n\t\tVoici vos informations de connexion :\n\t\t\tAdresse :\t%3\$s\n\t\t\tIdentifiant :\t%1\$s\n\t\t\tMot de passe :\t%5\$s\n\n\t\tVous pourrez changer votre mot de passe dans les paramètres de votre compte une fois connecté.\n\n\t\tProfitez-en pour prendre le temps de passer en revue les autres paramètres de votre compte.\n\n\t\tVous pourrez aussi ajouter quelques informations élémentaires à votre profil par défaut (sur la page « Profils ») pour permettre à d’autres personnes de vous trouver facilement.\n\n\t\tNous recommandons de préciser votre nom complet, d’ajouter une photo et quelques mots-clefs (c’est très utile pour découvrir de nouveaux amis), et peut-être aussi d’indiquer au moins le pays dans lequel vous vivez, à défaut d’être plus précis.\n\n\t\tNous respectons pleinement votre droit à une vie privée, et vous n’avez aucune obligation de donner toutes ces informations. Mais si vous êtes nouveau et ne connaissez encore personne ici, cela peut vous aider à vous faire de nouveaux amis intéressants.\n\n\n\t\tMerci et bienvenu sur %2\$s."; +$a->strings["Registration details for %s"] = "Détails d'inscription pour %s"; +$a->strings["Visible to everybody"] = "Visible par tout le monde"; +$a->strings["This entry was edited"] = "Cette entrée à été édité"; +$a->strings["Private Message"] = "Message privé"; +$a->strings["Edit"] = "Éditer"; +$a->strings["save to folder"] = "sauver vers dossier"; +$a->strings["add star"] = "mett en avant"; +$a->strings["remove star"] = "ne plus mettre en avant"; +$a->strings["toggle star status"] = "mettre en avant"; +$a->strings["starred"] = "mis en avant"; +$a->strings["ignore thread"] = "ignorer le fil"; +$a->strings["unignore thread"] = "Ne plus ignorer le fil"; +$a->strings["toggle ignore status"] = "Ignorer le statut"; +$a->strings["ignored"] = "ignoré"; +$a->strings["add tag"] = "ajouter une étiquette"; +$a->strings["I like this (toggle)"] = "J'aime (bascule)"; +$a->strings["like"] = "aime"; +$a->strings["I don't like this (toggle)"] = "Je n'aime pas (bascule)"; +$a->strings["dislike"] = "n'aime pas"; +$a->strings["Share this"] = "Partager"; +$a->strings["share"] = "partager"; +$a->strings["to"] = "à"; +$a->strings["via"] = "via"; +$a->strings["Wall-to-Wall"] = "Inter-mur"; +$a->strings["via Wall-To-Wall:"] = "en Inter-mur:"; +$a->strings["%d comment"] = array( + 0 => "%d commentaire", + 1 => "%d commentaires", +); +$a->strings["This is you"] = "C'est vous"; +$a->strings["Bold"] = "Gras"; +$a->strings["Italic"] = "Italique"; +$a->strings["Underline"] = "Souligné"; +$a->strings["Quote"] = "Citation"; +$a->strings["Code"] = "Code"; +$a->strings["Image"] = "Image"; +$a->strings["Link"] = "Lien"; +$a->strings["Video"] = "Vidéo"; +$a->strings["Item not available."] = "Elément non disponible."; +$a->strings["Item was not found."] = "Element introuvable."; +$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Nombre de messages de mur quotidiens pour %s dépassé. Échec du message."; +$a->strings["No recipient selected."] = "Pas de destinataire sélectionné."; +$a->strings["Unable to check your home location."] = "Impossible de vérifier votre localisation."; +$a->strings["Message could not be sent."] = "Impossible d'envoyer le message."; +$a->strings["Message collection failure."] = "Récupération des messages infructueuse."; +$a->strings["Message sent."] = "Message envoyé."; +$a->strings["No recipient."] = "Pas de destinataire."; +$a->strings["Send Private Message"] = "Envoyer un message privé"; +$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Si vous souhaitez que %s réponde, merci de vérifier vos réglages pour autoriser les messages privés venant d'inconnus."; +$a->strings["To:"] = "À:"; +$a->strings["Subject:"] = "Sujet:"; +$a->strings["Your message:"] = "Votre message:"; +$a->strings["Group created."] = "Groupe créé."; +$a->strings["Could not create group."] = "Impossible de créer le groupe."; +$a->strings["Group not found."] = "Groupe introuvable."; +$a->strings["Group name changed."] = "Groupe renommé."; +$a->strings["Save Group"] = "Sauvegarder le groupe"; +$a->strings["Create a group of contacts/friends."] = "Créez un groupe de contacts/amis."; +$a->strings["Group Name: "] = "Nom du groupe: "; +$a->strings["Group removed."] = "Groupe enlevé."; +$a->strings["Unable to remove group."] = "Impossible d'enlever le groupe."; +$a->strings["Group Editor"] = "Éditeur de groupe"; +$a->strings["Members"] = "Membres"; +$a->strings["All Contacts"] = "Tous les contacts"; +$a->strings["Click on a contact to add or remove."] = "Cliquez sur un contact pour l'ajouter ou le supprimer."; +$a->strings["No potential page delegates located."] = "Pas de délégataire potentiel."; +$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."] = "Les délégataires seront capables de gérer tous les aspects de ce compte ou de cette page, à l'exception des réglages de compte. Merci de ne pas déléguer votre compte principal à quelqu'un en qui vous n'avez pas une confiance absolue."; +$a->strings["Existing Page Managers"] = "Gestionnaires existants"; +$a->strings["Existing Page Delegates"] = "Délégataires existants"; +$a->strings["Potential Delegates"] = "Délégataires potentiels"; +$a->strings["Remove"] = "Utiliser comme photo de profil"; +$a->strings["Add"] = "Ajouter"; +$a->strings["No entries."] = "Aucune entrée."; +$a->strings["Invalid request identifier."] = "Identifiant de demande invalide."; +$a->strings["Discard"] = "Rejeter"; +$a->strings["Ignore"] = "Ignorer"; +$a->strings["System"] = "Système"; +$a->strings["Personal"] = "Personnel"; +$a->strings["Show Ignored Requests"] = "Voir les demandes ignorées"; +$a->strings["Hide Ignored Requests"] = "Cacher les demandes ignorées"; +$a->strings["Notification type: "] = "Type de notification: "; +$a->strings["Friend Suggestion"] = "Suggestion d'amitié/contact"; +$a->strings["suggested by %s"] = "suggéré(e) par %s"; +$a->strings["Hide this contact from others"] = "Cacher ce contact aux autres"; +$a->strings["Post a new friend activity"] = "Poster une nouvelle avtivité d'ami"; +$a->strings["if applicable"] = "si possible"; +$a->strings["Approve"] = "Approuver"; +$a->strings["Claims to be known to you: "] = "Prétend que vous le connaissez: "; +$a->strings["yes"] = "oui"; +$a->strings["no"] = "non"; +$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: "] = ""; +$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: "] = ""; +$a->strings["Friend"] = "Ami"; +$a->strings["Sharer"] = "Initiateur du partage"; +$a->strings["Fan/Admirer"] = "Fan/Admirateur"; +$a->strings["Friend/Connect Request"] = "Demande de connexion/relation"; +$a->strings["New Follower"] = "Nouvel abonné"; +$a->strings["No introductions."] = "Aucune demande d'introduction."; +$a->strings["%s liked %s's post"] = "%s a aimé la publication de %s"; +$a->strings["%s disliked %s's post"] = "%s n'a pas aimé la publication de %s"; +$a->strings["%s is now friends with %s"] = "%s est désormais ami(e) avec %s"; +$a->strings["%s created a new post"] = "%s a créé une nouvelle publication"; +$a->strings["%s commented on %s's post"] = "%s a commenté la publication de %s"; +$a->strings["No more network notifications."] = "Aucune notification du réseau."; +$a->strings["Network Notifications"] = "Notifications du réseau"; +$a->strings["No more system notifications."] = "Pas plus de notifications système."; +$a->strings["System Notifications"] = "Notifications du système"; +$a->strings["No more personal notifications."] = "Aucun notification personnelle."; +$a->strings["Personal Notifications"] = "Notifications personnelles"; +$a->strings["No more home notifications."] = "Aucune notification de la page d'accueil."; +$a->strings["Home Notifications"] = "Notifications de page d'accueil"; +$a->strings["No profile"] = "Aucun profil"; +$a->strings["everybody"] = "tout le monde"; +$a->strings["Account"] = "Compte"; +$a->strings["Additional features"] = "Fonctions supplémentaires"; +$a->strings["Display"] = "Afficher"; +$a->strings["Social Networks"] = "Réseaux sociaux"; +$a->strings["Plugins"] = "Extensions"; +$a->strings["Connected apps"] = "Applications connectées"; +$a->strings["Export personal data"] = "Exporter"; +$a->strings["Remove account"] = "Supprimer le compte"; +$a->strings["Missing some important data!"] = "Il manque certaines informations importantes!"; +$a->strings["Update"] = "Mises-à-jour"; +$a->strings["Failed to connect with email account using the settings provided."] = "Impossible de se connecter au compte courriel configuré."; +$a->strings["Email settings updated."] = "Réglages de courriel mis-à-jour."; +$a->strings["Features updated"] = "Fonctionnalités mises à jour"; +$a->strings["Relocate message has been send to your contacts"] = "Un message de relocalisation a été envoyé à vos contacts."; +$a->strings["Passwords do not match. Password unchanged."] = "Les mots de passe ne correspondent pas. Aucun changement appliqué."; +$a->strings["Empty passwords are not allowed. Password unchanged."] = "Les mots de passe vides sont interdits. Aucun changement appliqué."; +$a->strings["Wrong password."] = "Mauvais mot de passe."; +$a->strings["Password changed."] = "Mots de passe changés."; +$a->strings["Password update failed. Please try again."] = "Le changement de mot de passe a échoué. Merci de recommencer."; +$a->strings[" Please use a shorter name."] = " Merci d'utiliser un nom plus court."; +$a->strings[" Name too short."] = " Nom trop court."; +$a->strings["Wrong Password"] = "Mauvais mot de passe"; +$a->strings[" Not valid email."] = " Email invalide."; +$a->strings[" Cannot change to that email."] = " Impossible de changer pour cet email."; +$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Ce forum privé n'a pas de paramètres de vie privée. Utilisation des paramètres de confidentialité par défaut."; +$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Ce forum privé n'a pas de paramètres de vie privée ni de paramètres de confidentialité par défaut."; +$a->strings["Settings updated."] = "Réglages mis à jour."; +$a->strings["Add application"] = "Ajouter une application"; +$a->strings["Save Settings"] = "Sauvegarder les paramétres"; +$a->strings["Name"] = "Nom"; +$a->strings["Consumer Key"] = "Clé utilisateur"; +$a->strings["Consumer Secret"] = "Secret utilisateur"; +$a->strings["Redirect"] = "Rediriger"; +$a->strings["Icon url"] = "URL de l'icône"; +$a->strings["You can't edit this application."] = "Vous ne pouvez pas éditer cette application."; +$a->strings["Connected Apps"] = "Applications connectées"; +$a->strings["Client key starts with"] = "La clé cliente commence par"; +$a->strings["No name"] = "Sans nom"; +$a->strings["Remove authorization"] = "Révoquer l'autorisation"; +$a->strings["No Plugin settings configured"] = "Pas de réglages d'extensions configurés"; +$a->strings["Plugin Settings"] = "Extensions"; +$a->strings["Off"] = "Éteint"; +$a->strings["On"] = "Allumé"; +$a->strings["Additional Features"] = "Fonctions supplémentaires"; +$a->strings["Built-in support for %s connectivity is %s"] = "Le support natif pour la connectivité %s est %s"; +$a->strings["enabled"] = "activé"; +$a->strings["disabled"] = "désactivé"; +$a->strings["StatusNet"] = "StatusNet"; +$a->strings["Email access is disabled on this site."] = "L'accès courriel est désactivé sur ce site."; +$a->strings["Email/Mailbox Setup"] = "Réglages de courriel/boîte à lettre"; +$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Si vous souhaitez communiquer avec vos contacts \"courriel\" (facultatif), merci de nous indiquer comment vous connecter à votre boîte."; +$a->strings["Last successful email check:"] = "Dernière vérification réussie des courriels:"; +$a->strings["IMAP server name:"] = "Nom du serveur IMAP:"; +$a->strings["IMAP port:"] = "Port IMAP:"; +$a->strings["Security:"] = "Sécurité:"; +$a->strings["None"] = "Aucun(e)"; +$a->strings["Email login name:"] = "Nom de connexion:"; +$a->strings["Email password:"] = "Mot de passe:"; +$a->strings["Reply-to address:"] = "Adresse de réponse:"; +$a->strings["Send public posts to all email contacts:"] = "Envoyer les publications publiques à tous les contacts courriels:"; +$a->strings["Action after import:"] = "Action après import:"; +$a->strings["Mark as seen"] = "Marquer comme vu"; +$a->strings["Move to folder"] = "Déplacer vers"; +$a->strings["Move to folder:"] = "Déplacer vers:"; +$a->strings["No special theme for mobile devices"] = "Pas de thème particulier pour les terminaux mobiles"; +$a->strings["Display Settings"] = "Affichage"; +$a->strings["Display Theme:"] = "Thème d'affichage:"; +$a->strings["Mobile Theme:"] = "Thème mobile:"; +$a->strings["Update browser every xx seconds"] = "Mettre-à-jour l'affichage toutes les xx secondes"; +$a->strings["Minimum of 10 seconds, no maximum"] = "Délai minimum de 10 secondes, pas de maximum"; +$a->strings["Number of items to display per page:"] = "Nombre d’éléments par page:"; +$a->strings["Maximum of 100 items"] = "Maximum de 100 éléments"; +$a->strings["Number of items to display per page when viewed from mobile device:"] = "Nombre d'éléments a afficher par page pour un appareil mobile"; +$a->strings["Don't show emoticons"] = "Ne pas afficher les émoticônes (smileys grahiques)"; +$a->strings["Don't show notices"] = "Ne plus afficher les avis"; +$a->strings["Infinite scroll"] = "Défilement infini"; +$a->strings["Automatic updates only at the top of the network page"] = ""; +$a->strings["User Types"] = "Types d'utilisateurs"; +$a->strings["Community Types"] = "Genre de communautés"; +$a->strings["Normal Account Page"] = "Compte normal"; +$a->strings["This account is a normal personal profile"] = "Ce compte correspond à un profil normal, pour une seule personne (physique, généralement)"; +$a->strings["Soapbox Page"] = "Compte \"boîte à savon\""; +$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des fans 'en lecture seule'"; +$a->strings["Community Forum/Celebrity Account"] = "Compte de communauté/célébrité"; +$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des fans en 'lecture/écriture'"; +$a->strings["Automatic Friend Page"] = "Compte d'\"amitié automatique\""; +$a->strings["Automatically approve all connection/friend requests as friends"] = "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des amis"; +$a->strings["Private Forum [Experimental]"] = "Forum privé [expérimental]"; +$a->strings["Private forum - approved members only"] = "Forum privé - modéré en inscription"; +$a->strings["OpenID:"] = "OpenID:"; +$a->strings["(Optional) Allow this OpenID to login to this account."] = "&nbsp;(Facultatif) Autoriser cet OpenID à se connecter à ce compte."; +$a->strings["Publish your default profile in your local site directory?"] = "Publier votre profil par défaut sur l'annuaire local de ce site?"; +$a->strings["No"] = "Non"; +$a->strings["Publish your default profile in the global social directory?"] = "Publier votre profil par défaut sur l'annuaire social global?"; +$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Cacher votre liste de contacts/amis des visiteurs de votre profil par défaut?"; +$a->strings["If enabled, posting public messages to Diaspora and other networks isn't possible."] = ""; +$a->strings["Allow friends to post to your profile page?"] = "Autoriser vos amis à publier sur votre profil?"; +$a->strings["Allow friends to tag your posts?"] = "Autoriser vos amis à étiqueter vos publications?"; +$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Autoriser les suggestions d'amis potentiels aux nouveaux arrivants?"; +$a->strings["Permit unknown people to send you private mail?"] = "Autoriser les messages privés d'inconnus?"; +$a->strings["Profile is not published."] = "Ce profil n'est pas publié."; +$a->strings["or"] = "ou"; +$a->strings["Your Identity Address is"] = "L'adresse de votre identité est"; +$a->strings["Automatically expire posts after this many days:"] = "Les publications expirent automatiquement après (en jours) :"; +$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Si ce champ est vide, les publications n'expireront pas. Les publications expirées seront supprimées"; +$a->strings["Advanced expiration settings"] = "Réglages avancés de l'expiration"; +$a->strings["Advanced Expiration"] = "Expiration (avancé)"; +$a->strings["Expire posts:"] = "Faire expirer les publications:"; +$a->strings["Expire personal notes:"] = "Faire expirer les notes personnelles:"; +$a->strings["Expire starred posts:"] = "Faire expirer les publications marqués:"; +$a->strings["Expire photos:"] = "Faire expirer les photos:"; +$a->strings["Only expire posts by others:"] = "Faire expirer seulement les publications des autres:"; +$a->strings["Account Settings"] = "Compte"; +$a->strings["Password Settings"] = "Réglages de mot de passe"; +$a->strings["New Password:"] = "Nouveau mot de passe:"; +$a->strings["Confirm:"] = "Confirmer:"; +$a->strings["Leave password fields blank unless changing"] = "Laissez les champs de mot de passe vierges, sauf si vous désirez les changer"; +$a->strings["Current Password:"] = "Mot de passe actuel:"; +$a->strings["Your current password to confirm the changes"] = "Votre mot de passe actuel pour confirmer les modifications"; +$a->strings["Password:"] = "Mot de passe:"; +$a->strings["Basic Settings"] = "Réglages basiques"; +$a->strings["Email Address:"] = "Adresse courriel:"; +$a->strings["Your Timezone:"] = "Votre fuseau horaire:"; +$a->strings["Default Post Location:"] = "Emplacement de publication par défaut:"; +$a->strings["Use Browser Location:"] = "Utiliser la localisation géographique du navigateur:"; +$a->strings["Security and Privacy Settings"] = "Réglages de sécurité et vie privée"; +$a->strings["Maximum Friend Requests/Day:"] = "Nombre maximal de requêtes d'amitié/jour:"; +$a->strings["(to prevent spam abuse)"] = "(pour limiter l'impact du spam)"; +$a->strings["Default Post Permissions"] = "Permissions de publication par défaut"; +$a->strings["(click to open/close)"] = "(cliquer pour ouvrir/fermer)"; +$a->strings["Show to Groups"] = "Montrer aux groupes"; +$a->strings["Show to Contacts"] = "Montrer aux Contacts"; +$a->strings["Default Private Post"] = "Message privé par défaut"; +$a->strings["Default Public Post"] = "Message publique par défaut"; +$a->strings["Default Permissions for New Posts"] = "Permissions par défaut pour les nouvelles publications"; +$a->strings["Maximum private messages per day from unknown people:"] = "Maximum de messages privés d'inconnus par jour:"; +$a->strings["Notification Settings"] = "Réglages de notification"; +$a->strings["By default post a status message when:"] = "Par défaut, poster un statut quand:"; +$a->strings["accepting a friend request"] = "j'accepte un ami"; +$a->strings["joining a forum/community"] = "joignant un forum/une communauté"; +$a->strings["making an interesting profile change"] = "je fais une modification intéressante de mon profil"; +$a->strings["Send a notification email when:"] = "Envoyer un courriel de notification quand:"; +$a->strings["You receive an introduction"] = "Vous recevez une introduction"; +$a->strings["Your introductions are confirmed"] = "Vos introductions sont confirmées"; +$a->strings["Someone writes on your profile wall"] = "Quelqu'un écrit sur votre mur"; +$a->strings["Someone writes a followup comment"] = "Quelqu'un vous commente"; +$a->strings["You receive a private message"] = "Vous recevez un message privé"; +$a->strings["You receive a friend suggestion"] = "Vous avez reçu une suggestion d'ami"; +$a->strings["You are tagged in a post"] = "Vous avez été étiquetté dans une publication"; +$a->strings["You are poked/prodded/etc. in a post"] = "Vous avez été sollicité dans une publication"; +$a->strings["Text-only notification emails"] = ""; +$a->strings["Send text only notification emails, without the html part"] = ""; +$a->strings["Advanced Account/Page Type Settings"] = "Paramètres avancés de compte/page"; +$a->strings["Change the behaviour of this account for special situations"] = "Modifier le comportement de ce compte dans certaines situations"; +$a->strings["Relocate"] = "Relocaliser"; +$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."] = "Si vous avez migré ce profil depuis un autre serveur et que vos contacts ne reçoivent plus vos mises à jour, essayez ce bouton."; +$a->strings["Resend relocate message to contacts"] = "Renvoyer un message de relocalisation aux contacts."; +$a->strings["Common Friends"] = "Amis communs"; +$a->strings["No contacts in common."] = "Pas de contacts en commun."; +$a->strings["Remote privacy information not available."] = "Informations de confidentialité indisponibles."; +$a->strings["Visible to:"] = "Visible par:"; $a->strings["%d contact edited."] = array( 0 => "%d contact édité", 1 => "%d contacts édités.", @@ -13,7 +963,6 @@ $a->strings["Could not access contact record."] = "Impossible d'accéder à l'en $a->strings["Could not locate selected profile."] = "Impossible de localiser le profil séléctionné."; $a->strings["Contact updated."] = "Contact mis-à-jour."; $a->strings["Failed to update contact record."] = "Échec de mise-à-jour du contact."; -$a->strings["Permission denied."] = "Permission refusée."; $a->strings["Contact has been blocked"] = "Le contact a été bloqué"; $a->strings["Contact has been unblocked"] = "Le contact n'est plus bloqué"; $a->strings["Contact has been ignored"] = "Le contact a été ignoré"; @@ -21,8 +970,6 @@ $a->strings["Contact has been unignored"] = "Le contact n'est plus ignoré"; $a->strings["Contact has been archived"] = "Contact archivé"; $a->strings["Contact has been unarchived"] = "Contact désarchivé"; $a->strings["Do you really want to delete this contact?"] = "Voulez-vous vraiment supprimer ce contact?"; -$a->strings["Yes"] = "Oui"; -$a->strings["Cancel"] = "Annuler"; $a->strings["Contact has been removed."] = "Ce contact a été retiré."; $a->strings["You are mutual friends with %s"] = "Vous êtes ami (et réciproquement) avec %s"; $a->strings["You are sharing with %s"] = "Vous partagez avec %s"; @@ -33,16 +980,11 @@ $a->strings["(Update was successful)"] = "(Mise à jour effectuée avec succès) $a->strings["(Update was not successful)"] = "(Mise à jour échouée)"; $a->strings["Suggest friends"] = "Suggérer amitié/contact"; $a->strings["Network type: %s"] = "Type de réseau %s"; -$a->strings["%d contact in common"] = array( - 0 => "%d contact en commun", - 1 => "%d contacts en commun", -); $a->strings["View all contacts"] = "Voir tous les contacts"; $a->strings["Unblock"] = "Débloquer"; $a->strings["Block"] = "Bloquer"; $a->strings["Toggle Blocked status"] = "(dés)activer l'état \"bloqué\""; $a->strings["Unignore"] = "Ne plus ignorer"; -$a->strings["Ignore"] = "Ignorer"; $a->strings["Toggle Ignored status"] = "(dés)activer l'état \"ignoré\""; $a->strings["Unarchive"] = "Désarchiver"; $a->strings["Archive"] = "Archiver"; @@ -50,8 +992,11 @@ $a->strings["Toggle Archive status"] = "(dés)activer l'état \"archivé\""; $a->strings["Repair"] = "Réparer"; $a->strings["Advanced Contact Settings"] = "Réglages avancés du contact"; $a->strings["Communications lost with this contact!"] = "Communications perdues avec ce contact !"; +$a->strings["Fetch further information for feeds"] = "Chercher plus d'informations pour les flux"; +$a->strings["Disabled"] = "Désactivé"; +$a->strings["Fetch information"] = "Récupérer informations"; +$a->strings["Fetch information and keywords"] = "Récupérer informations"; $a->strings["Contact Editor"] = "Éditeur de contact"; -$a->strings["Submit"] = "Envoyer"; $a->strings["Profile Visibility"] = "Visibilité du profil"; $a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Merci de choisir le profil que vous souhaitez montrer à %s lorsqu'il vous rend visite de manière sécurisée."; $a->strings["Contact Information / Notes"] = "Informations de contact / Notes"; @@ -68,19 +1013,13 @@ $a->strings["Update now"] = "Mettre à jour"; $a->strings["Currently blocked"] = "Actuellement bloqué"; $a->strings["Currently ignored"] = "Actuellement ignoré"; $a->strings["Currently archived"] = "Actuellement archivé"; -$a->strings["Hide this contact from others"] = "Cacher ce contact aux autres"; $a->strings["Replies/likes to your public posts may still be visible"] = "Les réponses et \"j'aime\" à vos publications publiques peuvent être toujours visibles"; $a->strings["Notification for new posts"] = "Notification des nouvelles publications"; $a->strings["Send a notification of every new post of this contact"] = "Envoyer une notification de chaque nouveau message en provenance de ce contact"; -$a->strings["Fetch further information for feeds"] = "Chercher plus d'informations pour les flux"; -$a->strings["Disabled"] = "Désactivé"; -$a->strings["Fetch information"] = "Récupérer informations"; -$a->strings["Fetch information and keywords"] = "Récupérer informations"; $a->strings["Blacklisted keywords"] = "Mots-clés sur la liste noire"; $a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Liste de mots-clés separés par des virgules qui ne doivent pas être converti en mots-dièse quand « Récupérer informations et mots-clés » est sélectionné."; $a->strings["Suggestions"] = "Suggestions"; $a->strings["Suggest potential friends"] = "Suggérer des amis potentiels"; -$a->strings["All Contacts"] = "Tous les contacts"; $a->strings["Show all contacts"] = "Montrer tous les contacts"; $a->strings["Unblocked"] = "Non-bloqués"; $a->strings["Only show unblocked contacts"] = "Ne montrer que les contacts non-bloqués"; @@ -96,309 +1035,116 @@ $a->strings["Mutual Friendship"] = "Relation réciproque"; $a->strings["is a fan of yours"] = "Vous suit"; $a->strings["you are a fan of"] = "Vous le/la suivez"; $a->strings["Edit contact"] = "Éditer le contact"; -$a->strings["Contacts"] = "Contacts"; $a->strings["Search your contacts"] = "Rechercher dans vos contacts"; $a->strings["Finding: "] = "Trouvé: "; -$a->strings["Find"] = "Trouver"; -$a->strings["Update"] = "Mises-à-jour"; -$a->strings["Delete"] = "Supprimer"; -$a->strings["No profile"] = "Aucun profil"; -$a->strings["Manage Identities and/or Pages"] = "Gérer les identités et/ou les pages"; -$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Basculez entre les différentes identités ou pages (groupes/communautés) qui se partagent votre compte ou que vous avez été autorisé à gérer."; -$a->strings["Select an identity to manage: "] = "Choisir une identité à gérer: "; +$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Désolé, il semble que votre fichier est plus important que ce que la configuration de PHP autorise"; +$a->strings["Or - did you try to upload an empty file?"] = "Ou — auriez-vous essayé de télécharger un fichier vide ?"; +$a->strings["File exceeds size limit of %d"] = "La taille du fichier dépasse la limite de %d"; +$a->strings["File upload failed."] = "Le téléversement a échoué."; +$a->strings["[Embedded content - reload page to view]"] = "[contenu incorporé - rechargez la page pour le voir]"; +$a->strings["Export account"] = "Exporter le compte"; +$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."] = "Exportez votre compte, vos infos et vos contacts. Vous pourrez utiliser le résultat comme sauvegarde et/ou pour le ré-importer sur un autre serveur."; +$a->strings["Export all"] = "Tout exporter"; +$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)"] = "Exportez votre compte, vos infos, vos contacts et toutes vos publications (en JSON). Le fichier résultant peut être extrêmement volumineux, et sa production peut durer longtemps. Vous pourrez l'utiliser pour faire une sauvegarde complète (à part les photos)."; +$a->strings["Registration successful. Please check your email for further instructions."] = "Inscription réussie. Vérifiez vos emails pour la suite des instructions."; +$a->strings["Failed to send email message. Here your accout details:
login: %s
password: %s

You can change your password after login."] = "Impossible d’envoyer le courriel de confirmation. Voici vos informations de connexion:
identifiant : %s
mot de passe : %s

Vous pourrez changer votre mot de passe une fois connecté."; +$a->strings["Your registration can not be processed."] = "Votre inscription ne peut être traitée."; +$a->strings["Your registration is pending approval by the site owner."] = "Votre inscription attend une validation du propriétaire du site."; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Le nombre d'inscriptions quotidiennes pour ce site a été dépassé. Merci de réessayer demain."; +$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Vous pouvez (si vous le souhaitez) remplir ce formulaire via OpenID. Fournissez votre OpenID et cliquez \"S'inscrire\"."; +$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Si vous n'êtes pas familier avec OpenID, laissez ce champ vide et remplissez le reste."; +$a->strings["Your OpenID (optional): "] = "Votre OpenID (facultatif): "; +$a->strings["Include your profile in member directory?"] = "Inclure votre profil dans l'annuaire des membres?"; +$a->strings["Membership on this site is by invitation only."] = "L'inscription à ce site se fait uniquement sur invitation."; +$a->strings["Your invitation ID: "] = "Votre ID d'invitation: "; +$a->strings["Registration"] = "Inscription"; +$a->strings["Your Full Name (e.g. Joe Smith): "] = "Votre nom complet (p.ex. Michel Dupont): "; +$a->strings["Your Email Address: "] = "Votre adresse courriel: "; +$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Choisissez un pseudo. Celui devra commencer par une lettre. L'adresse de votre profil en découlera sous la forme '<strong>pseudo@\$sitename</strong>'."; +$a->strings["Choose a nickname: "] = "Choisir un pseudo: "; +$a->strings["Import"] = "Importer"; +$a->strings["Import your profile to this friendica instance"] = "Importer votre profile dans cette instance de friendica"; $a->strings["Post successful."] = "Publication réussie."; -$a->strings["Permission denied"] = "Permission refusée"; -$a->strings["Invalid profile identifier."] = "Identifiant de profil invalide."; -$a->strings["Profile Visibility Editor"] = "Éditer la visibilité du profil"; -$a->strings["Profile"] = "Profil"; -$a->strings["Click on a contact to add or remove."] = "Cliquez sur un contact pour l'ajouter ou le supprimer."; -$a->strings["Visible To"] = "Visible par"; -$a->strings["All Contacts (with secure profile access)"] = "Tous les contacts (ayant un accès sécurisé)"; -$a->strings["Item not found."] = "Élément introuvable."; -$a->strings["Public access denied."] = "Accès public refusé."; +$a->strings["System down for maintenance"] = "Système indisponible pour cause de maintenance"; $a->strings["Access to this profile has been restricted."] = "L'accès au profil a été restreint."; -$a->strings["Item has been removed."] = "Cet élément a été enlevé."; -$a->strings["Welcome to Friendica"] = "Bienvenue sur Friendica"; -$a->strings["New Member Checklist"] = "Checklist du nouvel utilisateur"; -$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."] = "Nous souhaiterions vous donner quelques astuces et ressources pour rendre votre expérience la plus agréable possible. Cliquez sur n'importe lequel de ces éléments pour visiter la page correspondante. Un lien vers cette page restera visible sur votre page d'accueil pendant les deux semaines qui suivent votre inscription initiale, puis disparaîtra silencieusement."; -$a->strings["Getting Started"] = "Bien démarrer"; -$a->strings["Friendica Walk-Through"] = "Friendica pas-à-pas"; -$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Sur votre page d'accueil, dans Conseils aux nouveaux venus - vous trouverez une rapide introduction aux onglets Profil et Réseau, pourrez vous connecter à Facebook, établir de nouvelles relations, et choisir des groupes à rejoindre."; -$a->strings["Settings"] = "Réglages"; -$a->strings["Go to Your Settings"] = "Éditer vos Réglages"; -$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Sur la page des Réglages - changez votre mot de passe initial. Notez bien votre Identité. Elle ressemble à une adresse de courriel - et vous sera utile pour vous faire des amis dans le web social libre."; -$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Vérifiez les autres réglages, tout particulièrement ceux liés à la vie privée. Un profil non listé, c'est un peu comme un numéro sur liste rouge. En général, vous devriez probablement publier votre profil - à moins que tous vos amis (potentiels) sachent déjà comment vous trouver."; -$a->strings["Upload Profile Photo"] = "Téléverser une photo de profil"; -$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Téléversez (envoyez) une photo de profil si vous n'en avez pas déjà une. Les études montrent que les gens qui affichent de vraies photos d'eux sont dix fois plus susceptibles de se faire des amis."; -$a->strings["Edit Your Profile"] = "Éditer votre Profil"; -$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Éditez votre profil par défaut à votre convenance. Vérifiez les réglages concernant la visibilité de votre liste d'amis par les visiteurs inconnus."; -$a->strings["Profile Keywords"] = "Mots-clés du profil"; -$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Choisissez quelques mots-clé publics pour votre profil par défaut. Ils pourront ainsi décrire vos centres d'intérêt, et nous pourrons vous proposer des contacts qui les partagent."; -$a->strings["Connecting"] = "Connexions"; -$a->strings["Facebook"] = "Facebook"; -$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Activez et paramétrez le connecteur Facebook si vous avez un compte Facebook et nous pourrons (de manière facultative) importer tous vos amis et conversations Facebook."; -$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Si ceci est votre propre serveur, installer le connecteur Facebook peut adoucir votre transition vers le web social libre."; -$a->strings["Importing Emails"] = "Importer courriels"; -$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Entrez vos paramètres de courriel dans les Réglages des connecteurs si vous souhaitez importer et interagir avec des amis ou des listes venant de votre Boîte de Réception."; -$a->strings["Go to Your Contacts Page"] = "Consulter vos Contacts"; -$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = "Votre page Contacts est le point d'entrée vers la gestion de vos amitiés/relations et la connexion à des amis venant d'autres réseaux. Typiquement, vous pourrez y rentrer leur adresse d'Identité ou l'URL de leur site dans le formulaire Ajouter un nouveau contact."; -$a->strings["Go to Your Site's Directory"] = "Consulter l'Annuaire de votre Site"; -$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "La page Annuaire vous permet de trouver d'autres personnes au sein de ce réseaux ou parmi d'autres sites fédérés. Cherchez un lien Relier ou Suivre sur leur profil. Vous pourrez avoir besoin d'indiquer votre adresse d'identité."; -$a->strings["Finding New People"] = "Trouver de nouvelles personnes"; -$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Sur le panneau latéral de la page Contacts, il y a plusieurs moyens de trouver de nouveaux amis. Nous pouvons mettre les gens en relation selon leurs intérêts, rechercher des amis par nom ou intérêt, et fournir des suggestions en fonction de la topologie du réseau. Sur un site tout neuf, les suggestions d'amitié devraient commencer à apparaître au bout de 24 heures."; -$a->strings["Groups"] = "Groupes"; -$a->strings["Group Your Contacts"] = "Grouper vos contacts"; -$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Une fois que vous avez trouvé quelques amis, organisez-les en groupes de conversation privés depuis le panneau latéral de la page Contacts. Vous pourrez ensuite interagir avec chaque groupe de manière privée depuis la page Réseau."; -$a->strings["Why Aren't My Posts Public?"] = "Pourquoi mes éléments ne sont pas publics?"; -$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respecte votre vie privée. Par défaut, toutes vos publications seront seulement montrés à vos amis. Pour plus d'information, consultez la section \"aide\" du lien ci-dessus."; -$a->strings["Getting Help"] = "Obtenir de l'aide"; -$a->strings["Go to the Help Section"] = "Aller à la section Aide"; -$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Nos pages d'aide peuvent être consultées pour davantage de détails sur les fonctionnalités ou les ressources."; -$a->strings["OpenID protocol error. No ID returned."] = "Erreur de protocole OpenID. Pas d'ID en retour."; -$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Compte introuvable, et l'inscription OpenID n'est pas autorisée sur ce site."; -$a->strings["Login failed."] = "Échec de connexion."; -$a->strings["Image uploaded but image cropping failed."] = "Image envoyée, mais impossible de la retailler."; -$a->strings["Profile Photos"] = "Photos du profil"; -$a->strings["Image size reduction [%s] failed."] = "Réduction de la taille de l'image [%s] échouée."; -$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Rechargez la page avec la touche Maj pressée, ou bien effacez le cache du navigateur, si d'aventure la nouvelle photo n'apparaissait pas immédiatement."; -$a->strings["Unable to process image"] = "Impossible de traiter l'image"; -$a->strings["Image exceeds size limit of %d"] = "L'image dépasse la taille limite de %d"; -$a->strings["Unable to process image."] = "Impossible de traiter l'image."; -$a->strings["Upload File:"] = "Fichier à téléverser:"; -$a->strings["Select a profile:"] = "Choisir un profil:"; -$a->strings["Upload"] = "Téléverser"; -$a->strings["or"] = "ou"; -$a->strings["skip this step"] = "ignorer cette étape"; -$a->strings["select a photo from your photo albums"] = "choisissez une photo depuis vos albums"; -$a->strings["Crop Image"] = "(Re)cadrer l'image"; -$a->strings["Please adjust the image cropping for optimum viewing."] = "Ajustez le cadre de l'image pour une visualisation optimale."; -$a->strings["Done Editing"] = "Édition terminée"; -$a->strings["Image uploaded successfully."] = "Image téléversée avec succès."; -$a->strings["Image upload failed."] = "Le téléversement de l'image a échoué."; -$a->strings["photo"] = "photo"; -$a->strings["status"] = "le statut"; -$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s suit les %3\$s de %2\$s"; -$a->strings["Tag removed"] = "Étiquette supprimée"; -$a->strings["Remove Item Tag"] = "Enlever l'étiquette de l'élément"; -$a->strings["Select a tag to remove: "] = "Sélectionner une étiquette à supprimer: "; -$a->strings["Remove"] = "Utiliser comme photo de profil"; -$a->strings["Save to Folder:"] = "Sauver dans le Dossier:"; -$a->strings["- select -"] = "- choisir -"; -$a->strings["Save"] = "Sauver"; -$a->strings["Contact added"] = "Contact ajouté"; -$a->strings["Unable to locate original post."] = "Impossible de localiser la publication originale."; -$a->strings["Empty post discarded."] = "Publication vide rejetée."; -$a->strings["Wall Photos"] = "Photos du mur"; -$a->strings["System error. Post not saved."] = "Erreur système. Publication non sauvée."; -$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Ce message vous a été envoyé par %s, membre du réseau social Friendica."; -$a->strings["You may visit them online at %s"] = "Vous pouvez leur rendre visite sur %s"; -$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Merci de contacter l’émetteur en répondant à cette publication si vous ne souhaitez pas recevoir ces messages."; -$a->strings["%s posted an update."] = "%s a publié une mise à jour."; -$a->strings["Group created."] = "Groupe créé."; -$a->strings["Could not create group."] = "Impossible de créer le groupe."; -$a->strings["Group not found."] = "Groupe introuvable."; -$a->strings["Group name changed."] = "Groupe renommé."; -$a->strings["Save Group"] = "Sauvegarder le groupe"; -$a->strings["Create a group of contacts/friends."] = "Créez un groupe de contacts/amis."; -$a->strings["Group Name: "] = "Nom du groupe: "; -$a->strings["Group removed."] = "Groupe enlevé."; -$a->strings["Unable to remove group."] = "Impossible d'enlever le groupe."; -$a->strings["Group Editor"] = "Éditeur de groupe"; -$a->strings["Members"] = "Membres"; -$a->strings["You must be logged in to use addons. "] = "Vous devez être connecté pour utiliser les greffons."; -$a->strings["Applications"] = "Applications"; -$a->strings["No installed applications."] = "Pas d'application installée."; -$a->strings["Profile not found."] = "Profil introuvable."; -$a->strings["Contact not found."] = "Contact introuvable."; -$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Ceci peut se produire lorsque le contact a été requis par les deux personnes et a déjà été approuvé."; -$a->strings["Response from remote site was not understood."] = "Réponse du site distant incomprise."; -$a->strings["Unexpected response from remote site: "] = "Réponse inattendue du site distant: "; -$a->strings["Confirmation completed successfully."] = "Confirmation achevée avec succès."; -$a->strings["Remote site reported: "] = "Alerte du site distant: "; -$a->strings["Temporary failure. Please wait and try again."] = "Échec temporaire. Merci de recommencer ultérieurement."; -$a->strings["Introduction failed or was revoked."] = "Introduction échouée ou annulée."; -$a->strings["Unable to set contact photo."] = "Impossible de définir la photo du contact."; -$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s est désormais lié à %2\$s"; -$a->strings["No user record found for '%s' "] = "Pas d'utilisateur trouvé pour '%s' "; -$a->strings["Our site encryption key is apparently messed up."] = "Notre clé de chiffrement de site est apparemment corrompue."; -$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "URL de site absente ou indéchiffrable."; -$a->strings["Contact record was not found for you on our site."] = "Pas d'entrée pour ce contact sur notre site."; -$a->strings["Site public key not available in contact record for URL %s."] = "La clé publique du site ne se trouve pas dans l'enregistrement du contact pour l'URL %s."; -$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "L'identifiant fourni par votre système fait doublon sur le notre. Cela peut fonctionner si vous réessayez."; -$a->strings["Unable to set your contact credentials on our system."] = "Impossible de vous définir des permissions sur notre système."; -$a->strings["Unable to update your contact profile details on our system"] = "Impossible de mettre les détails de votre profil à jour sur notre système"; -$a->strings["[Name Withheld]"] = "[Nom non-publié]"; -$a->strings["%1\$s has joined %2\$s"] = "%1\$s a rejoint %2\$s"; -$a->strings["Requested profile is not available."] = "Le profil demandé n'est pas disponible."; $a->strings["Tips for New Members"] = "Conseils aux nouveaux venus"; +$a->strings["Public access denied."] = "Accès public refusé."; $a->strings["No videos selected"] = "Pas de vidéo sélectionné"; $a->strings["Access to this item is restricted."] = "Accès restreint à cet élément."; -$a->strings["View Video"] = "Regarder la vidéo"; $a->strings["View Album"] = "Voir l'album"; $a->strings["Recent Videos"] = "Vidéos récente"; $a->strings["Upload New Videos"] = "Téléversé une nouvelle vidéo"; -$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s a étiqueté %3\$s de %2\$s avec %4\$s"; +$a->strings["Manage Identities and/or Pages"] = "Gérer les identités et/ou les pages"; +$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Basculez entre les différentes identités ou pages (groupes/communautés) qui se partagent votre compte ou que vous avez été autorisé à gérer."; +$a->strings["Select an identity to manage: "] = "Choisir une identité à gérer: "; +$a->strings["Item not found"] = "Élément introuvable"; +$a->strings["Edit post"] = "Éditer la publication"; +$a->strings["People Search"] = "Recherche de personnes"; +$a->strings["No matches"] = "Aucune correspondance"; +$a->strings["Account approved."] = "Inscription validée."; +$a->strings["Registration revoked for %s"] = "Inscription révoquée pour %s"; +$a->strings["Please login."] = "Merci de vous connecter."; +$a->strings["This introduction has already been accepted."] = "Cette introduction a déjà été acceptée."; +$a->strings["Profile location is not valid or does not contain profile information."] = "L'emplacement du profil est invalide ou ne contient pas de profil valide."; +$a->strings["Warning: profile location has no identifiable owner name."] = "Attention: l'emplacement du profil n'a pas de nom identifiable."; +$a->strings["Warning: profile location has no profile photo."] = "Attention: l'emplacement du profil n'a pas de photo de profil."; +$a->strings["%d required parameter was not found at the given location"] = array( + 0 => "%d paramètre requis n'a pas été trouvé à l'endroit indiqué", + 1 => "%d paramètres requis n'ont pas été trouvés à l'endroit indiqué", +); +$a->strings["Introduction complete."] = "Phase d'introduction achevée."; +$a->strings["Unrecoverable protocol error."] = "Erreur de protocole non-récupérable."; +$a->strings["Profile unavailable."] = "Profil indisponible."; +$a->strings["%s has received too many connection requests today."] = "%s a reçu trop de demandes d'introduction aujourd'hui."; +$a->strings["Spam protection measures have been invoked."] = "Des mesures de protection contre le spam ont été déclenchées."; +$a->strings["Friends are advised to please try again in 24 hours."] = "Les relations sont encouragées à attendre 24 heures pour recommencer."; +$a->strings["Invalid locator"] = "Localisateur invalide"; +$a->strings["Invalid email address."] = "Adresse courriel invalide."; +$a->strings["This account has not been configured for email. Request failed."] = "Ce compte n'a pas été configuré pour les échanges de courriel. Requête avortée."; +$a->strings["Unable to resolve your name at the provided location."] = "Impossible de résoudre votre nom à l'emplacement fourni."; +$a->strings["You have already introduced yourself here."] = "Vous vous êtes déjà présenté ici."; +$a->strings["Apparently you are already friends with %s."] = "Il semblerait que vous soyez déjà ami avec %s."; +$a->strings["Invalid profile URL."] = "URL de profil invalide."; +$a->strings["Your introduction has been sent."] = "Votre introduction a été envoyée."; +$a->strings["Please login to confirm introduction."] = "Connectez-vous pour confirmer l'introduction."; +$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Identité incorrecte actuellement connectée. Merci de vous connecter à ce profil."; +$a->strings["Hide this contact"] = "Cacher ce contact"; +$a->strings["Welcome home %s."] = "Bienvenue chez vous, %s."; +$a->strings["Please confirm your introduction/connection request to %s."] = "Merci de confirmer votre demande d'introduction auprès de %s."; +$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Merci d'entrer votre \"adresse d'identité\" de l'un des réseaux de communication suivant:"; +$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = "Si vous n'êtes pas encore membre du web social libre, suivez ce lien pour trouver un site Friendica ouvert au public et nous rejoindre dès aujourd'hui."; +$a->strings["Friend/Connection Request"] = "Requête de relation/amitié"; +$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Exemples : jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; +$a->strings["Please answer the following:"] = "Merci de répondre à ce qui suit:"; +$a->strings["Does %s know you?"] = "Est-ce que %s vous connaît?"; +$a->strings["Add a personal note:"] = "Ajouter une note personnelle:"; +$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."] = " - merci de ne pas utiliser ce formulaire. Entrez plutôt %s dans votre barre de recherche Diaspora."; +$a->strings["Your Identity Address:"] = "Votre adresse d'identité:"; +$a->strings["Submit Request"] = "Envoyer la requête"; +$a->strings["Files"] = "Fichiers"; +$a->strings["Authorize application connection"] = "Autoriser l'application à se connecter"; +$a->strings["Return to your app and insert this Securty Code:"] = "Retournez à votre application et saisissez ce Code de Sécurité : "; +$a->strings["Please login to continue."] = "Merci de vous connecter pour continuer."; +$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Voulez-vous autoriser cette application à accéder à vos publications et contacts, et/ou à créer des billets à votre place?"; +$a->strings["Do you really want to delete this suggestion?"] = "Voulez-vous vraiment supprimer cette suggestion ?"; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Aucune suggestion. Si ce site est récent, merci de recommencer dans 24h."; +$a->strings["Ignore/Hide"] = "Ignorer/cacher"; +$a->strings["Contacts who are not members of a group"] = "Contacts qui n’appartiennent à aucun groupe"; +$a->strings["Contact not found."] = "Contact introuvable."; $a->strings["Friend suggestion sent."] = "Suggestion d'amitié/contact envoyée."; $a->strings["Suggest Friends"] = "Suggérer des amis/contacts"; $a->strings["Suggest a friend for %s"] = "Suggérer un ami/contact pour %s"; -$a->strings["No valid account found."] = "Impossible de trouver un compte valide."; -$a->strings["Password reset request issued. Check your email."] = "Réinitialisation du mot de passe en cours. Vérifiez votre courriel."; -$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."] = "\n\t\tChère/Cher %1\$s,\n\t\t\tNous avons reçu une demande de ré-initialisation du mot de passe de votre compte sur \"%2\$s\". Pour confirmer cette demande, veuillez cliquer sur le lien de vérification ci-dessous ou le coller dans la barre d’adresse de votre navigateur.\n\n\t\tSi vous n’êtes PAS à l’origine de cette demande, NE suivez PAS le lien—ignorez et/ou supprimez ce message.\n\n\t\tVotre mot de passe ne sera pas modifié si nous n’avons pas de confirmation que la demande émane de vous."; -$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"] = "\n\t\tSuivez ce lien pour confirmer votre identité :\n\n\t\t%1\$s\n\n\t\tVous recevrez alors a message contenant votre nouveau mot de passe.\n\t\tVous pourrez changer ce mot de passe depuis les paramètres de votre compte une fois connecté.\n\n\t\tInformations de connexion :\n\n\t\tAdresse :\t%2\$s\n\t\tIdentifiant :\t%3\$s"; -$a->strings["Password reset requested at %s"] = "Requête de réinitialisation de mot de passe à %s"; -$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Impossible d'honorer cette demande. (Vous l'avez peut-être déjà utilisée par le passé.) La réinitialisation a échoué."; -$a->strings["Password Reset"] = "Réinitialiser le mot de passe"; -$a->strings["Your password has been reset as requested."] = "Votre mot de passe a bien été réinitialisé."; -$a->strings["Your new password is"] = "Votre nouveau mot de passe est "; -$a->strings["Save or copy your new password - and then"] = "Sauvez ou copiez ce nouveau mot de passe - puis"; -$a->strings["click here to login"] = "cliquez ici pour vous connecter"; -$a->strings["Your password may be changed from the Settings page after successful login."] = "Votre mot de passe peut être changé depuis la page <em>Réglages</em>, une fois que vous serez connecté."; -$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"] = "\n\t\t\t\tChère/Cher %1\$s,\n\t\t\t\t\tVotre mot de passe a été changé ainsi que vous l’avez demandé. Veuillez conserver cette informations dans vos archives (ou changer immédiatement votre mot de passe pour un autre dont vous vous souviendrez).\n\t\t\t"; -$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"] = "\n\t\t\t\tVoici vos informations de connexion :\n\n\t\t\t\tAdresse :\t%1\$s\n\t\t\t\tIdentifiant :\t%2\$s\n\t\t\t\tMot de passe :\t%3\$s\n\n\t\t\t\tVous pourrez changer votre mot de passe dans les paramètres de votre compte une fois connecté.\n\t\t\t"; -$a->strings["Your password has been changed at %s"] = "Votre mot de passe a été modifié à %s"; -$a->strings["Forgot your Password?"] = "Mot de passe oublié?"; -$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Entrez votre adresse de courriel et validez pour réinitialiser votre mot de passe. Vous recevrez la suite des instructions par courriel."; -$a->strings["Nickname or Email: "] = "Pseudo ou Courriel: "; -$a->strings["Reset"] = "Réinitialiser"; -$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s aime %3\$s de %2\$s"; -$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s n'aime pas %3\$s de %2\$s"; -$a->strings["{0} wants to be your friend"] = "{0} souhaite être votre ami(e)"; -$a->strings["{0} sent you a message"] = "{0} vous a envoyé un message"; -$a->strings["{0} requested registration"] = "{0} a demandé à s'inscrire"; -$a->strings["{0} commented %s's post"] = "{0} a commenté la publication de %s"; -$a->strings["{0} liked %s's post"] = "{0} a aimé la publication de %s"; -$a->strings["{0} disliked %s's post"] = "{0} n'a pas aimé la publication de %s"; -$a->strings["{0} is now friends with %s"] = "{0} est désormais ami(e) avec %s"; -$a->strings["{0} posted"] = "{0} a publié"; -$a->strings["{0} tagged %s's post with #%s"] = "{0} a étiqueté la publication de %s avec #%s"; -$a->strings["{0} mentioned you in a post"] = "{0} vous a mentionné dans une publication"; +$a->strings["link"] = "lien"; $a->strings["No contacts."] = "Aucun contact."; -$a->strings["View Contacts"] = "Voir les contacts"; -$a->strings["Invalid request identifier."] = "Identifiant de demande invalide."; -$a->strings["Discard"] = "Rejeter"; -$a->strings["System"] = "Système"; -$a->strings["Network"] = "Réseau"; -$a->strings["Personal"] = "Personnel"; -$a->strings["Home"] = "Profil"; -$a->strings["Introductions"] = "Introductions"; -$a->strings["Show Ignored Requests"] = "Voir les demandes ignorées"; -$a->strings["Hide Ignored Requests"] = "Cacher les demandes ignorées"; -$a->strings["Notification type: "] = "Type de notification: "; -$a->strings["Friend Suggestion"] = "Suggestion d'amitié/contact"; -$a->strings["suggested by %s"] = "suggéré(e) par %s"; -$a->strings["Post a new friend activity"] = "Poster une nouvelle avtivité d'ami"; -$a->strings["if applicable"] = "si possible"; -$a->strings["Approve"] = "Approuver"; -$a->strings["Claims to be known to you: "] = "Prétend que vous le connaissez: "; -$a->strings["yes"] = "oui"; -$a->strings["no"] = "non"; -$a->strings["Approve as: "] = "Approuver en tant que: "; -$a->strings["Friend"] = "Ami"; -$a->strings["Sharer"] = "Initiateur du partage"; -$a->strings["Fan/Admirer"] = "Fan/Admirateur"; -$a->strings["Friend/Connect Request"] = "Demande de connexion/relation"; -$a->strings["New Follower"] = "Nouvel abonné"; -$a->strings["No introductions."] = "Aucune demande d'introduction."; -$a->strings["Notifications"] = "Notifications"; -$a->strings["%s liked %s's post"] = "%s a aimé la publication de %s"; -$a->strings["%s disliked %s's post"] = "%s n'a pas aimé la publication de %s"; -$a->strings["%s is now friends with %s"] = "%s est désormais ami(e) avec %s"; -$a->strings["%s created a new post"] = "%s a créé une nouvelle publication"; -$a->strings["%s commented on %s's post"] = "%s a commenté la publication de %s"; -$a->strings["No more network notifications."] = "Aucune notification du réseau."; -$a->strings["Network Notifications"] = "Notifications du réseau"; -$a->strings["No more system notifications."] = "Pas plus de notifications système."; -$a->strings["System Notifications"] = "Notifications du système"; -$a->strings["No more personal notifications."] = "Aucun notification personnelle."; -$a->strings["Personal Notifications"] = "Notifications personnelles"; -$a->strings["No more home notifications."] = "Aucune notification de la page d'accueil."; -$a->strings["Home Notifications"] = "Notifications de page d'accueil"; -$a->strings["Source (bbcode) text:"] = "Texte source (bbcode) :"; -$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Texte source (Diaspora) à convertir en BBcode :"; -$a->strings["Source input: "] = "Source input: "; -$a->strings["bb2html (raw HTML): "] = "bb2html (HTML brut)"; -$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): "] = "Texte source (format Diaspora) :"; -$a->strings["diaspora2bb: "] = "diaspora2bb :"; -$a->strings["Nothing new here"] = "Rien de neuf ici"; -$a->strings["Clear notifications"] = "Effacer les notifications"; -$a->strings["New Message"] = "Nouveau message"; -$a->strings["No recipient selected."] = "Pas de destinataire sélectionné."; -$a->strings["Unable to locate contact information."] = "Impossible de localiser les informations du contact."; -$a->strings["Message could not be sent."] = "Impossible d'envoyer le message."; -$a->strings["Message collection failure."] = "Récupération des messages infructueuse."; -$a->strings["Message sent."] = "Message envoyé."; -$a->strings["Messages"] = "Messages"; -$a->strings["Do you really want to delete this message?"] = "Voulez-vous vraiment supprimer ce message ?"; -$a->strings["Message deleted."] = "Message supprimé."; -$a->strings["Conversation removed."] = "Conversation supprimée."; -$a->strings["Please enter a link URL:"] = "Entrez un lien web:"; -$a->strings["Send Private Message"] = "Envoyer un message privé"; -$a->strings["To:"] = "À:"; -$a->strings["Subject:"] = "Sujet:"; -$a->strings["Your message:"] = "Votre message:"; -$a->strings["Upload photo"] = "Joindre photo"; -$a->strings["Insert web link"] = "Insérer lien web"; -$a->strings["Please wait"] = "Patientez"; -$a->strings["No messages."] = "Aucun message."; -$a->strings["Unknown sender - %s"] = "Émetteur inconnu - %s"; -$a->strings["You and %s"] = "Vous et %s"; -$a->strings["%s and You"] = "%s et vous"; -$a->strings["Delete conversation"] = "Effacer conversation"; -$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; -$a->strings["%d message"] = array( - 0 => "%d message", - 1 => "%d messages", -); -$a->strings["Message not available."] = "Message indisponible."; -$a->strings["Delete message"] = "Effacer message"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Pas de communications sécurisées possibles. Vous serez peut-être en mesure de répondre depuis la page de profil de l'émetteur."; -$a->strings["Send Reply"] = "Répondre"; -$a->strings["[Embedded content - reload page to view]"] = "[contenu incorporé - rechargez la page pour le voir]"; -$a->strings["Contact settings applied."] = "Réglages du contact appliqués."; -$a->strings["Contact update failed."] = "Impossible d'appliquer les réglages."; -$a->strings["Repair Contact Settings"] = "Réglages de réparation des contacts"; -$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ATTENTION: Manipulation réservée aux experts, toute information incorrecte pourrait empêcher la communication avec ce contact."; -$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "une photo"; -$a->strings["Return to contact editor"] = "Retour à l'éditeur de contact"; -$a->strings["No mirroring"] = ""; -$a->strings["Mirror as forwarded posting"] = ""; -$a->strings["Mirror as my own posting"] = ""; -$a->strings["Name"] = "Nom"; -$a->strings["Account Nickname"] = "Pseudo du compte"; -$a->strings["@Tagname - overrides Name/Nickname"] = "@NomEtiquette - prend le pas sur Nom/Pseudo"; -$a->strings["Account URL"] = "URL du compte"; -$a->strings["Friend Request URL"] = "Echec du téléversement de l'image."; -$a->strings["Friend Confirm URL"] = "Accès public refusé."; -$a->strings["Notification Endpoint URL"] = "Aucune photo sélectionnée"; -$a->strings["Poll/Feed URL"] = "Téléverser des photos"; -$a->strings["New photo from this URL"] = "Nouvelle photo depuis cette URL"; -$a->strings["Remote Self"] = ""; -$a->strings["Mirror postings from this contact"] = ""; -$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = ""; -$a->strings["Login"] = "Connexion"; -$a->strings["The post was created"] = ""; -$a->strings["Access denied."] = "Accès refusé."; -$a->strings["People Search"] = "Recherche de personnes"; -$a->strings["No matches"] = "Aucune correspondance"; -$a->strings["Photos"] = "Photos"; -$a->strings["Files"] = "Fichiers"; -$a->strings["Contacts who are not members of a group"] = "Contacts qui n’appartiennent à aucun groupe"; $a->strings["Theme settings updated."] = "Réglages du thème sauvés."; $a->strings["Site"] = "Site"; $a->strings["Users"] = "Utilisateurs"; -$a->strings["Plugins"] = "Extensions"; $a->strings["Themes"] = "Thèmes"; $a->strings["DB updates"] = "Mise-à-jour de la base"; $a->strings["Logs"] = "Journaux"; $a->strings["probe address"] = ""; $a->strings["check webfinger"] = ""; -$a->strings["Admin"] = "Admin"; $a->strings["Plugin Features"] = "Propriétés des extensions"; $a->strings["diagnostics"] = ""; $a->strings["User registrations waiting for confirmation"] = "Inscriptions en attente de confirmation"; @@ -417,15 +1163,10 @@ $a->strings["Version"] = "Versio"; $a->strings["Active plugins"] = "Extensions activés"; $a->strings["Can not parse base url. Must have at least ://"] = "Impossible d'analyser l'URL de base. Doit contenir au moins ://"; $a->strings["Site settings updated."] = "Réglages du site mis-à-jour."; -$a->strings["No special theme for mobile devices"] = "Pas de thème particulier pour les terminaux mobiles"; $a->strings["No community page"] = ""; $a->strings["Public postings from users of this site"] = ""; $a->strings["Global community page"] = ""; $a->strings["At post arrival"] = "A l'arrivé d'une publication"; -$a->strings["Frequently"] = "Fréquemment"; -$a->strings["Hourly"] = "Toutes les heures"; -$a->strings["Twice daily"] = "Deux fois par jour"; -$a->strings["Daily"] = "Chaque jour"; $a->strings["Multi user instance"] = "Instance multi-utilisateurs"; $a->strings["Closed"] = "Fermé"; $a->strings["Requires approval"] = "Demande une apptrobation"; @@ -433,8 +1174,6 @@ $a->strings["Open"] = "Ouvert"; $a->strings["No SSL policy, links will track page SSL state"] = "Pas de politique SSL, le liens conserveront l'état SSL de la page"; $a->strings["Force all links to use SSL"] = "Forcer tous les liens à utiliser SSL"; $a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Certificat auto-signé, n'utiliser SSL que pour les liens locaux (non recommandé)"; -$a->strings["Save Settings"] = "Sauvegarder les paramétres"; -$a->strings["Registration"] = "Inscription"; $a->strings["File upload"] = "Téléversement de fichier"; $a->strings["Policies"] = "Politiques"; $a->strings["Advanced"] = "Avancé"; @@ -566,7 +1305,6 @@ $a->strings["Mark success (if update was manually applied)"] = "Marquer comme 'r $a->strings["Attempt to execute this update step automatically"] = "Tenter d'éxecuter cette étape automatiquement"; $a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tthe administrator of %2\$s has set up an account for you."] = "\n\t\t\tChère/Cher %1\$s,\n\t\t\t\tL’administrateur de %2\$s vous a ouvert un compte."; $a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t\t%2\$s\n\t\t\tPassword:\t\t%3\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tThank you and welcome to %4\$s."] = "\n\t\t\tVoici vos informations de connexion :\n\n\t\t\tAdresse :\t%1\$s\n\t\t\tIdentifiant :\t\t%2\$s\n\t\t\tMot de passe :\t\t%3\$s\n\n\t\t\tVous pourrez changer votre mot de passe dans les paramètres de votre compte une fois connecté.\n\n\t\t\tProfitez-en pour prendre le temps de passer en revue les autres paramètres de votre compte.\n\n\t\t\tVous pourrez aussi ajouter quelques informations élémentaires à votre profil par défaut (sur la page « Profils ») pour permettre à d’autres personnes de vous trouver facilement.\n\n\t\t\tNous recommandons de préciser votre nom complet, d’ajouter une photo et quelques mots-clefs (c’est très utile pour découvrir de nouveaux amis), et peut-être aussi d’indiquer au moins le pays dans lequel vous vivez, à défaut d’être plus précis.\n\n\t\t\tNous respectons pleinement votre droit à une vie privée, et vous n’avez aucune obligation de donner toutes ces informations. Mais si vous êtes nouveau et ne connaissez encore personne ici, cela peut vous aider à vous faire de nouveaux amis intéressants.\n\n\t\t\tMerci et bienvenu sur %4\$s."; -$a->strings["Registration details for %s"] = "Détails d'inscription pour %s"; $a->strings["%s user blocked/unblocked"] = array( 0 => "%s utilisateur a (dé)bloqué", 1 => "%s utilisateurs ont (dé)bloqué", @@ -583,7 +1321,6 @@ $a->strings["select all"] = "tout sélectionner"; $a->strings["User registrations waiting for confirm"] = "Inscriptions d'utilisateurs en attente de confirmation"; $a->strings["User waiting for permanent deletion"] = "Utilisateur en attente de suppression définitive"; $a->strings["Request date"] = "Date de la demande"; -$a->strings["Email"] = "Courriel"; $a->strings["No registrations."] = "Pas d'inscriptions."; $a->strings["Deny"] = "Rejetter"; $a->strings["Site admin"] = "Administration du Site"; @@ -593,7 +1330,6 @@ $a->strings["Register date"] = "Date d'inscription"; $a->strings["Last login"] = "Dernière connexion"; $a->strings["Last item"] = "Dernier élément"; $a->strings["Deleted since"] = "Supprimé depuis"; -$a->strings["Account"] = "Compte"; $a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Les utilisateurs sélectionnés vont être supprimés!\\n\\nTout ce qu'ils ont posté sur ce site sera définitivement effacé!\\n\\nÊtes-vous certain?"; $a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "L'utilisateur {0} va être supprimé!\\n\\nTout ce qu'il a posté sur ce site sera définitivement perdu!\\n\\nÊtes-vous certain?"; $a->strings["Name of the new user."] = "Nom du nouvel utilisateur."; @@ -622,10 +1358,14 @@ $a->strings["FTP Host"] = "Hôte FTP"; $a->strings["FTP Path"] = "Chemin FTP"; $a->strings["FTP User"] = "Utilisateur FTP"; $a->strings["FTP Password"] = "Mot de passe FTP"; +$a->strings["Image exceeds size limit of %d"] = "L'image dépasse la taille limite de %d"; +$a->strings["Unable to process image."] = "Impossible de traiter l'image."; +$a->strings["Image upload failed."] = "Le téléversement de l'image a échoué."; +$a->strings["Welcome to %s"] = "Bienvenue sur %s"; +$a->strings["OpenID protocol error. No ID returned."] = "Erreur de protocole OpenID. Pas d'ID en retour."; +$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Compte introuvable, et l'inscription OpenID n'est pas autorisée sur ce site."; $a->strings["Search Results For:"] = "Résultats pour:"; $a->strings["Remove term"] = "Retirer le terme"; -$a->strings["Saved Searches"] = "Recherches"; -$a->strings["add"] = "ajouter"; $a->strings["Commented Order"] = "Tri par commentaires"; $a->strings["Sort by Comment Date"] = "Trier par date de commentaire"; $a->strings["Posted Order"] = "Tri des publications"; @@ -648,13 +1388,132 @@ $a->strings["Group: "] = "Groupe: "; $a->strings["Contact: "] = "Contact: "; $a->strings["Private messages to this person are at risk of public disclosure."] = "Les messages privés envoyés à ce contact s'exposent à une diffusion incontrôlée."; $a->strings["Invalid contact."] = "Contact invalide."; -$a->strings["Friends of %s"] = "Amis de %s"; -$a->strings["No friends to display."] = "Pas d'amis à afficher."; +$a->strings["- select -"] = "- choisir -"; +$a->strings["This is Friendica, version"] = "Motorisé par Friendica version"; +$a->strings["running at web location"] = "hébergé sur"; +$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Merci de vous rendre sur Friendica.com si vous souhaitez en savoir plus sur le projet Friendica."; +$a->strings["Bug reports and issues: please visit"] = "Pour les rapports de bugs: rendez vous sur"; +$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Suggestions, remerciements, donations, etc. - écrivez à \"Info\" arob. Friendica - point com"; +$a->strings["Installed plugins/addons/apps:"] = "Extensions/greffons/applications installées:"; +$a->strings["No installed plugins/addons/apps"] = "Extensions/greffons/applications non installées:"; +$a->strings["Applications"] = "Applications"; +$a->strings["No installed applications."] = "Pas d'application installée."; +$a->strings["Upload New Photos"] = "Téléverser de nouvelles photos"; +$a->strings["Contact information unavailable"] = "Informations de contact indisponibles"; +$a->strings["Album not found."] = "Album introuvable."; +$a->strings["Delete Album"] = "Effacer l'album"; +$a->strings["Do you really want to delete this photo album and all its photos?"] = "Voulez-vous vraiment supprimer cet album photo et toutes ses photos ?"; +$a->strings["Delete Photo"] = "Effacer la photo"; +$a->strings["Do you really want to delete this photo?"] = "Voulez-vous vraiment supprimer cette photo ?"; +$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s a été étiqueté dans %2\$s par %3\$s"; +$a->strings["a photo"] = "une photo"; +$a->strings["Image exceeds size limit of "] = "L'image dépasse la taille maximale de "; +$a->strings["Image file is empty."] = "Fichier image vide."; +$a->strings["No photos selected"] = "Aucune photo sélectionnée"; +$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Vous avez utilisé %1$.2f Mo sur %2$.2f d'espace de stockage pour les photos."; +$a->strings["Upload Photos"] = "Téléverser des photos"; +$a->strings["New album name: "] = "Nom du nouvel album: "; +$a->strings["or existing album name: "] = "ou nom d'un album existant: "; +$a->strings["Do not show a status post for this upload"] = "Ne pas publier de notice de statut pour cet envoi"; +$a->strings["Permissions"] = "Permissions"; +$a->strings["Private Photo"] = "Photo privée"; +$a->strings["Public Photo"] = "Photo publique"; +$a->strings["Edit Album"] = "Éditer l'album"; +$a->strings["Show Newest First"] = "Plus récent d'abord"; +$a->strings["Show Oldest First"] = "Plus ancien d'abord"; +$a->strings["View Photo"] = "Voir la photo"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Interdit. L'accès à cet élément peut avoir été restreint."; +$a->strings["Photo not available"] = "Photo indisponible"; +$a->strings["View photo"] = "Voir photo"; +$a->strings["Edit photo"] = "Éditer la photo"; +$a->strings["Use as profile photo"] = "Utiliser comme photo de profil"; +$a->strings["View Full Size"] = "Voir en taille réelle"; +$a->strings["Tags: "] = "Étiquettes:"; +$a->strings["[Remove any tag]"] = "[Retirer toutes les étiquettes]"; +$a->strings["Rotate CW (right)"] = "Tourner dans le sens des aiguilles d'une montre (vers la droite)"; +$a->strings["Rotate CCW (left)"] = "Tourner dans le sens contraire des aiguilles d'une montre (vers la gauche)"; +$a->strings["New album name"] = "Nom du nouvel album"; +$a->strings["Caption"] = "Titre"; +$a->strings["Add a Tag"] = "Ajouter une étiquette"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Exemples: @bob, @Barbara_Jensen, @jim@example.com, #Californie, #vacances"; +$a->strings["Private photo"] = "Photo privée"; +$a->strings["Public photo"] = "Photo publique"; +$a->strings["Recent Photos"] = "Photos récentes"; +$a->strings["The post was created"] = ""; +$a->strings["Contact added"] = "Contact ajouté"; +$a->strings["Move account"] = "Migrer le compte"; +$a->strings["You can import an account from another Friendica server."] = "Vous pouvez importer un compte d'un autre serveur Friendica."; +$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."] = "Vous devez exporter votre compte à partir de l'ancien serveur et le téléverser ici. Nous recréerons votre ancien compte ici avec tous vos contacts. Nous tenterons également d'informer vos amis que vous avez déménagé ici."; +$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Cette fonctionnalité est expérimentale. Nous ne pouvons importer les contacts des réseaux OStatus (statusnet/identi.ca) ou Diaspora"; +$a->strings["Account file"] = "Fichier du compte"; +$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Pour exporter votre compte, allez dans \"Paramètres> Exporter vos données personnelles\" et sélectionnez \"exportation de compte\""; +$a->strings["Total invitation limit exceeded."] = "La limite d'invitation totale est éxédée."; +$a->strings["%s : Not a valid email address."] = "%s : Adresse de courriel invalide."; +$a->strings["Please join us on Friendica"] = "Rejoignez-nous sur Friendica"; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limite d'invitation exédée. Veuillez contacter l'administrateur de votre site."; +$a->strings["%s : Message delivery failed."] = "%s : L'envoi du message a échoué."; +$a->strings["%d message sent."] = array( + 0 => "%d message envoyé.", + 1 => "%d messages envoyés.", +); +$a->strings["You have no more invitations available"] = "Vous n'avez plus d'invitations disponibles"; +$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Visitez %s pour une liste des sites publics que vous pouvez rejoindre. Les membres de Friendica appartenant à d'autres sites peuvent s'interconnecter, ainsi qu'avec les membres de plusieurs autres réseaux sociaux."; +$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Pour accepter cette invitation, merci d'aller vous inscrire sur %s, ou n'importe quel autre site Friendica public."; +$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Les sites Friendica sont tous interconnectés pour créer un immense réseau social respectueux de la vie privée, possédé et contrôllé par ses membres. Ils peuvent également interagir avec plusieurs réseaux sociaux traditionnels. Voir %s pour une liste d'autres sites Friendica que vous pourriez rejoindre."; +$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Toutes nos excuses. Ce système n'est pas configuré pour se connecter à d'autres sites publics ou inviter de nouveaux membres."; +$a->strings["Send invitations"] = "Envoyer des invitations"; +$a->strings["Enter email addresses, one per line:"] = "Entrez les adresses email, une par ligne:"; +$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Vous êtes cordialement invité à me rejoindre sur Friendica, et nous aider ainsi à créer un meilleur web social."; +$a->strings["You will need to supply this invitation code: \$invite_code"] = "Vous devrez fournir ce code d'invitation: \$invite_code"; +$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Une fois inscrit, connectez-vous à la page de mon profil sur:"; +$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Pour plus d'information sur le projet Friendica, et pourquoi nous croyons qu'il est important, merci de visiter http://friendica.com"; +$a->strings["Access denied."] = "Accès refusé."; +$a->strings["No valid account found."] = "Impossible de trouver un compte valide."; +$a->strings["Password reset request issued. Check your email."] = "Réinitialisation du mot de passe en cours. Vérifiez votre courriel."; +$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."] = "\n\t\tChère/Cher %1\$s,\n\t\t\tNous avons reçu une demande de ré-initialisation du mot de passe de votre compte sur \"%2\$s\". Pour confirmer cette demande, veuillez cliquer sur le lien de vérification ci-dessous ou le coller dans la barre d’adresse de votre navigateur.\n\n\t\tSi vous n’êtes PAS à l’origine de cette demande, NE suivez PAS le lien—ignorez et/ou supprimez ce message.\n\n\t\tVotre mot de passe ne sera pas modifié si nous n’avons pas de confirmation que la demande émane de vous."; +$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"] = "\n\t\tSuivez ce lien pour confirmer votre identité :\n\n\t\t%1\$s\n\n\t\tVous recevrez alors a message contenant votre nouveau mot de passe.\n\t\tVous pourrez changer ce mot de passe depuis les paramètres de votre compte une fois connecté.\n\n\t\tInformations de connexion :\n\n\t\tAdresse :\t%2\$s\n\t\tIdentifiant :\t%3\$s"; +$a->strings["Password reset requested at %s"] = "Requête de réinitialisation de mot de passe à %s"; +$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Impossible d'honorer cette demande. (Vous l'avez peut-être déjà utilisée par le passé.) La réinitialisation a échoué."; +$a->strings["Your password has been reset as requested."] = "Votre mot de passe a bien été réinitialisé."; +$a->strings["Your new password is"] = "Votre nouveau mot de passe est "; +$a->strings["Save or copy your new password - and then"] = "Sauvez ou copiez ce nouveau mot de passe - puis"; +$a->strings["click here to login"] = "cliquez ici pour vous connecter"; +$a->strings["Your password may be changed from the Settings page after successful login."] = "Votre mot de passe peut être changé depuis la page <em>Réglages</em>, une fois que vous serez connecté."; +$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"] = "\n\t\t\t\tChère/Cher %1\$s,\n\t\t\t\t\tVotre mot de passe a été changé ainsi que vous l’avez demandé. Veuillez conserver cette informations dans vos archives (ou changer immédiatement votre mot de passe pour un autre dont vous vous souviendrez).\n\t\t\t"; +$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"] = "\n\t\t\t\tVoici vos informations de connexion :\n\n\t\t\t\tAdresse :\t%1\$s\n\t\t\t\tIdentifiant :\t%2\$s\n\t\t\t\tMot de passe :\t%3\$s\n\n\t\t\t\tVous pourrez changer votre mot de passe dans les paramètres de votre compte une fois connecté.\n\t\t\t"; +$a->strings["Your password has been changed at %s"] = "Votre mot de passe a été modifié à %s"; +$a->strings["Forgot your Password?"] = "Mot de passe oublié?"; +$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Entrez votre adresse de courriel et validez pour réinitialiser votre mot de passe. Vous recevrez la suite des instructions par courriel."; +$a->strings["Nickname or Email: "] = "Pseudo ou Courriel: "; +$a->strings["Reset"] = "Réinitialiser"; +$a->strings["Source (bbcode) text:"] = "Texte source (bbcode) :"; +$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Texte source (Diaspora) à convertir en BBcode :"; +$a->strings["Source input: "] = "Source input: "; +$a->strings["bb2html (raw HTML): "] = "bb2html (HTML brut)"; +$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): "] = "Texte source (format Diaspora) :"; +$a->strings["diaspora2bb: "] = "diaspora2bb :"; +$a->strings["Tag removed"] = "Étiquette supprimée"; +$a->strings["Remove Item Tag"] = "Enlever l'étiquette de l'élément"; +$a->strings["Select a tag to remove: "] = "Sélectionner une étiquette à supprimer: "; +$a->strings["Remove My Account"] = "Supprimer mon compte"; +$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Ceci supprimera totalement votre compte. Cette opération est irréversible."; +$a->strings["Please enter your password for verification:"] = "Merci de saisir votre mot de passe pour vérification:"; +$a->strings["Invalid profile identifier."] = "Identifiant de profil invalide."; +$a->strings["Profile Visibility Editor"] = "Éditer la visibilité du profil"; +$a->strings["Visible To"] = "Visible par"; +$a->strings["All Contacts (with secure profile access)"] = "Tous les contacts (ayant un accès sécurisé)"; +$a->strings["Profile Match"] = "Correpondance de profils"; +$a->strings["No keywords to match. Please add keywords to your default profile."] = "Aucun mot-clé en correspondance. Merci d'ajouter des mots-clés à votre profil par défaut."; +$a->strings["is interested in:"] = "s'intéresse à:"; $a->strings["Event title and start time are required."] = "Vous devez donner un nom et un horaire de début à l'événement."; $a->strings["l, F j"] = "l, F j"; $a->strings["Edit event"] = "Editer l'événement"; -$a->strings["link to source"] = "lien original"; -$a->strings["Events"] = "Événements"; $a->strings["Create New Event"] = "Créer un nouvel événement"; $a->strings["Previous"] = "Précédent"; $a->strings["Next"] = "Suivant"; @@ -667,53 +1526,113 @@ $a->strings["Finish date/time is not known or not relevant"] = "Date/heure de fi $a->strings["Event Finishes:"] = "Fin de l'événement:"; $a->strings["Adjust for viewer timezone"] = "Ajuster à la zone horaire du visiteur"; $a->strings["Description:"] = "Description:"; -$a->strings["Location:"] = "Localisation:"; $a->strings["Title:"] = "Titre :"; $a->strings["Share this event"] = "Partager cet événement"; -$a->strings["Select"] = "Sélectionner"; -$a->strings["View %s's profile @ %s"] = "Voir le profil de %s @ %s"; -$a->strings["%s from %s"] = "%s de %s"; -$a->strings["View in context"] = "Voir dans le contexte"; -$a->strings["%d comment"] = array( - 0 => "%d commentaire", - 1 => "%d commentaires", +$a->strings["{0} wants to be your friend"] = "{0} souhaite être votre ami(e)"; +$a->strings["{0} sent you a message"] = "{0} vous a envoyé un message"; +$a->strings["{0} requested registration"] = "{0} a demandé à s'inscrire"; +$a->strings["{0} commented %s's post"] = "{0} a commenté la publication de %s"; +$a->strings["{0} liked %s's post"] = "{0} a aimé la publication de %s"; +$a->strings["{0} disliked %s's post"] = "{0} n'a pas aimé la publication de %s"; +$a->strings["{0} is now friends with %s"] = "{0} est désormais ami(e) avec %s"; +$a->strings["{0} posted"] = "{0} a publié"; +$a->strings["{0} tagged %s's post with #%s"] = "{0} a étiqueté la publication de %s avec #%s"; +$a->strings["{0} mentioned you in a post"] = "{0} vous a mentionné dans une publication"; +$a->strings["Mood"] = "Humeur"; +$a->strings["Set your current mood and tell your friends"] = "Spécifiez votre humeur du moment, et informez vos amis"; +$a->strings["No results."] = "Aucun résultat."; +$a->strings["Unable to locate contact information."] = "Impossible de localiser les informations du contact."; +$a->strings["Do you really want to delete this message?"] = "Voulez-vous vraiment supprimer ce message ?"; +$a->strings["Message deleted."] = "Message supprimé."; +$a->strings["Conversation removed."] = "Conversation supprimée."; +$a->strings["No messages."] = "Aucun message."; +$a->strings["Unknown sender - %s"] = "Émetteur inconnu - %s"; +$a->strings["You and %s"] = "Vous et %s"; +$a->strings["%s and You"] = "%s et vous"; +$a->strings["Delete conversation"] = "Effacer conversation"; +$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; +$a->strings["%d message"] = array( + 0 => "%d message", + 1 => "%d messages", ); -$a->strings["comment"] = array( - 0 => "", - 1 => "commentaire", -); -$a->strings["show more"] = "montrer plus"; -$a->strings["Private Message"] = "Message privé"; -$a->strings["I like this (toggle)"] = "J'aime (bascule)"; -$a->strings["like"] = "aime"; -$a->strings["I don't like this (toggle)"] = "Je n'aime pas (bascule)"; -$a->strings["dislike"] = "n'aime pas"; -$a->strings["Share this"] = "Partager"; -$a->strings["share"] = "partager"; -$a->strings["This is you"] = "C'est vous"; -$a->strings["Comment"] = "Commenter"; -$a->strings["Bold"] = "Gras"; -$a->strings["Italic"] = "Italique"; -$a->strings["Underline"] = "Souligné"; -$a->strings["Quote"] = "Citation"; -$a->strings["Code"] = "Code"; -$a->strings["Image"] = "Image"; -$a->strings["Link"] = "Lien"; -$a->strings["Video"] = "Vidéo"; -$a->strings["Preview"] = "Aperçu"; -$a->strings["Edit"] = "Éditer"; -$a->strings["add star"] = "mett en avant"; -$a->strings["remove star"] = "ne plus mettre en avant"; -$a->strings["toggle star status"] = "mettre en avant"; -$a->strings["starred"] = "mis en avant"; -$a->strings["add tag"] = "ajouter une étiquette"; -$a->strings["save to folder"] = "sauver vers dossier"; -$a->strings["to"] = "à"; -$a->strings["Wall-to-Wall"] = "Inter-mur"; -$a->strings["via Wall-To-Wall:"] = "en Inter-mur:"; -$a->strings["Remove My Account"] = "Supprimer mon compte"; -$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Ceci supprimera totalement votre compte. Cette opération est irréversible."; -$a->strings["Please enter your password for verification:"] = "Merci de saisir votre mot de passe pour vérification:"; +$a->strings["Message not available."] = "Message indisponible."; +$a->strings["Delete message"] = "Effacer message"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Pas de communications sécurisées possibles. Vous serez peut-être en mesure de répondre depuis la page de profil de l'émetteur."; +$a->strings["Send Reply"] = "Répondre"; +$a->strings["Not available."] = "Indisponible."; +$a->strings["Profile not found."] = "Profil introuvable."; +$a->strings["Profile deleted."] = "Profil supprimé."; +$a->strings["Profile-"] = "Profil-"; +$a->strings["New profile created."] = "Nouveau profil créé."; +$a->strings["Profile unavailable to clone."] = "Ce profil ne peut être cloné."; +$a->strings["Profile Name is required."] = "Le nom du profil est requis."; +$a->strings["Marital Status"] = "Statut marital"; +$a->strings["Romantic Partner"] = "Partenaire/conjoint"; +$a->strings["Likes"] = "Derniers \"J'aime\""; +$a->strings["Dislikes"] = "Derniers \"Je n'aime pas\""; +$a->strings["Work/Employment"] = "Travail/Occupation"; +$a->strings["Religion"] = "Religion"; +$a->strings["Political Views"] = "Tendance politique"; +$a->strings["Gender"] = "Sexe"; +$a->strings["Sexual Preference"] = "Préférence sexuelle"; +$a->strings["Homepage"] = "Site internet"; +$a->strings["Interests"] = "Centres d'intérêt"; +$a->strings["Address"] = "Adresse"; +$a->strings["Location"] = "Localisation"; +$a->strings["Profile updated."] = "Profil mis à jour."; +$a->strings[" and "] = " et "; +$a->strings["public profile"] = "profil public"; +$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s a changé %2\$s en “%3\$s”"; +$a->strings[" - Visit %1\$s's %2\$s"] = "Visiter le %2\$s de %1\$s"; +$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s a mis à jour son %2\$s, en modifiant %3\$s."; +$a->strings["Hide contacts and friends:"] = "Cacher mes contacts et amis:"; +$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Cacher ma liste d'amis/contacts des visiteurs de ce profil?"; +$a->strings["Edit Profile Details"] = "Éditer les détails du profil"; +$a->strings["Change Profile Photo"] = "Changer la photo du profil"; +$a->strings["View this profile"] = "Voir ce profil"; +$a->strings["Create a new profile using these settings"] = "Créer un nouveau profil en utilisant ces réglages"; +$a->strings["Clone this profile"] = "Cloner ce profil"; +$a->strings["Delete this profile"] = "Supprimer ce profil"; +$a->strings["Basic information"] = "Information de base"; +$a->strings["Profile picture"] = "Image de profil"; +$a->strings["Preferences"] = "Préférences"; +$a->strings["Status information"] = "Information sur le statut"; +$a->strings["Additional information"] = "Information additionnelle"; +$a->strings["Upload Profile Photo"] = "Téléverser une photo de profil"; +$a->strings["Profile Name:"] = "Nom du profil:"; +$a->strings["Your Full Name:"] = "Votre nom complet:"; +$a->strings["Title/Description:"] = "Titre/Description:"; +$a->strings["Your Gender:"] = "Votre genre:"; +$a->strings["Birthday (%s):"] = "Anniversaire (%s):"; +$a->strings["Street Address:"] = "Adresse postale:"; +$a->strings["Locality/City:"] = "Ville/Localité:"; +$a->strings["Postal/Zip Code:"] = "Code postal:"; +$a->strings["Country:"] = "Pays:"; +$a->strings["Region/State:"] = "Région/État:"; +$a->strings[" Marital Status:"] = " Statut marital:"; +$a->strings["Who: (if applicable)"] = "Qui: (si pertinent)"; +$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Exemples: cathy123, Cathy Williams, cathy@example.com"; +$a->strings["Since [date]:"] = "Depuis [date] :"; +$a->strings["Homepage URL:"] = "Page personnelle:"; +$a->strings["Religious Views:"] = "Opinions religieuses:"; +$a->strings["Public Keywords:"] = "Mots-clés publics:"; +$a->strings["Private Keywords:"] = "Mots-clés privés:"; +$a->strings["Example: fishing photography software"] = "Exemple: football dessin programmation"; +$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Utilisés pour vous suggérer des amis potentiels, peuvent être vus par autrui)"; +$a->strings["(Used for searching profiles, never shown to others)"] = "(Utilisés pour rechercher dans les profils, ne seront jamais montrés à autrui)"; +$a->strings["Tell us about yourself..."] = "Parlez-nous de vous..."; +$a->strings["Hobbies/Interests"] = "Passe-temps/Centres d'intérêt"; +$a->strings["Contact information and Social Networks"] = "Coordonnées/Réseaux sociaux"; +$a->strings["Musical interests"] = "Goûts musicaux"; +$a->strings["Books, literature"] = "Lectures"; +$a->strings["Television"] = "Télévision"; +$a->strings["Film/dance/culture/entertainment"] = "Cinéma/Danse/Culture/Divertissement"; +$a->strings["Love/romance"] = "Amour/Romance"; +$a->strings["Work/employment"] = "Activité professionnelle/Occupation"; +$a->strings["School/education"] = "Études/Formation"; +$a->strings["This is your public profile.
It may be visible to anybody using the internet."] = "Ceci est votre profil public.
Il peut être visible par n'importe quel utilisateur d'Internet."; +$a->strings["Age: "] = "Age: "; +$a->strings["Edit/Manage Profiles"] = "Editer/gérer les profils"; $a->strings["Friendica Communications Server - Setup"] = "Serveur de communications Friendica - Configuration"; $a->strings["Could not connect to database."] = "Impossible de se connecter à la base."; $a->strings["Could not create table."] = "Impossible de créer une table."; @@ -775,1023 +1694,113 @@ $a->strings["Url rewrite is working"] = "La réécriture d'URL fonctionne."; $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."] = "Le fichier de configuration de la base (\".htconfig.php\") ne peut être créé. Merci d'utiliser le texte ci-joint pour créer ce fichier à la racine de votre hébergement."; $a->strings["

What next

"] = "

Ensuite

"; $a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANT: Vous devez configurer [manuellement] une tâche programmée pour le 'poller'."; -$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Nombre de messages de mur quotidiens pour %s dépassé. Échec du message."; -$a->strings["Unable to check your home location."] = "Impossible de vérifier votre localisation."; -$a->strings["No recipient."] = "Pas de destinataire."; -$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Si vous souhaitez que %s réponde, merci de vérifier vos réglages pour autoriser les messages privés venant d'inconnus."; $a->strings["Help:"] = "Aide:"; -$a->strings["Help"] = "Aide"; -$a->strings["Not Found"] = "Non trouvé"; -$a->strings["Page not found."] = "Page introuvable."; +$a->strings["Contact settings applied."] = "Réglages du contact appliqués."; +$a->strings["Contact update failed."] = "Impossible d'appliquer les réglages."; +$a->strings["Repair Contact Settings"] = "Réglages de réparation des contacts"; +$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ATTENTION: Manipulation réservée aux experts, toute information incorrecte pourrait empêcher la communication avec ce contact."; +$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "une photo"; +$a->strings["Return to contact editor"] = "Retour à l'éditeur de contact"; +$a->strings["No mirroring"] = ""; +$a->strings["Mirror as forwarded posting"] = ""; +$a->strings["Mirror as my own posting"] = ""; +$a->strings["Account Nickname"] = "Pseudo du compte"; +$a->strings["@Tagname - overrides Name/Nickname"] = "@NomEtiquette - prend le pas sur Nom/Pseudo"; +$a->strings["Account URL"] = "URL du compte"; +$a->strings["Friend Request URL"] = "Echec du téléversement de l'image."; +$a->strings["Friend Confirm URL"] = "Accès public refusé."; +$a->strings["Notification Endpoint URL"] = "Aucune photo sélectionnée"; +$a->strings["Poll/Feed URL"] = "Téléverser des photos"; +$a->strings["New photo from this URL"] = "Nouvelle photo depuis cette URL"; +$a->strings["Remote Self"] = ""; +$a->strings["Mirror postings from this contact"] = ""; +$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = ""; +$a->strings["Welcome to Friendica"] = "Bienvenue sur Friendica"; +$a->strings["New Member Checklist"] = "Checklist du nouvel utilisateur"; +$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."] = "Nous souhaiterions vous donner quelques astuces et ressources pour rendre votre expérience la plus agréable possible. Cliquez sur n'importe lequel de ces éléments pour visiter la page correspondante. Un lien vers cette page restera visible sur votre page d'accueil pendant les deux semaines qui suivent votre inscription initiale, puis disparaîtra silencieusement."; +$a->strings["Getting Started"] = "Bien démarrer"; +$a->strings["Friendica Walk-Through"] = "Friendica pas-à-pas"; +$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Sur votre page d'accueil, dans Conseils aux nouveaux venus - vous trouverez une rapide introduction aux onglets Profil et Réseau, pourrez vous connecter à Facebook, établir de nouvelles relations, et choisir des groupes à rejoindre."; +$a->strings["Go to Your Settings"] = "Éditer vos Réglages"; +$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Sur la page des Réglages - changez votre mot de passe initial. Notez bien votre Identité. Elle ressemble à une adresse de courriel - et vous sera utile pour vous faire des amis dans le web social libre."; +$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Vérifiez les autres réglages, tout particulièrement ceux liés à la vie privée. Un profil non listé, c'est un peu comme un numéro sur liste rouge. En général, vous devriez probablement publier votre profil - à moins que tous vos amis (potentiels) sachent déjà comment vous trouver."; +$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Téléversez (envoyez) une photo de profil si vous n'en avez pas déjà une. Les études montrent que les gens qui affichent de vraies photos d'eux sont dix fois plus susceptibles de se faire des amis."; +$a->strings["Edit Your Profile"] = "Éditer votre Profil"; +$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Éditez votre profil par défaut à votre convenance. Vérifiez les réglages concernant la visibilité de votre liste d'amis par les visiteurs inconnus."; +$a->strings["Profile Keywords"] = "Mots-clés du profil"; +$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Choisissez quelques mots-clé publics pour votre profil par défaut. Ils pourront ainsi décrire vos centres d'intérêt, et nous pourrons vous proposer des contacts qui les partagent."; +$a->strings["Connecting"] = "Connexions"; +$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Activez et paramétrez le connecteur Facebook si vous avez un compte Facebook et nous pourrons (de manière facultative) importer tous vos amis et conversations Facebook."; +$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Si ceci est votre propre serveur, installer le connecteur Facebook peut adoucir votre transition vers le web social libre."; +$a->strings["Importing Emails"] = "Importer courriels"; +$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Entrez vos paramètres de courriel dans les Réglages des connecteurs si vous souhaitez importer et interagir avec des amis ou des listes venant de votre Boîte de Réception."; +$a->strings["Go to Your Contacts Page"] = "Consulter vos Contacts"; +$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = "Votre page Contacts est le point d'entrée vers la gestion de vos amitiés/relations et la connexion à des amis venant d'autres réseaux. Typiquement, vous pourrez y rentrer leur adresse d'Identité ou l'URL de leur site dans le formulaire Ajouter un nouveau contact."; +$a->strings["Go to Your Site's Directory"] = "Consulter l'Annuaire de votre Site"; +$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "La page Annuaire vous permet de trouver d'autres personnes au sein de ce réseaux ou parmi d'autres sites fédérés. Cherchez un lien Relier ou Suivre sur leur profil. Vous pourrez avoir besoin d'indiquer votre adresse d'identité."; +$a->strings["Finding New People"] = "Trouver de nouvelles personnes"; +$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Sur le panneau latéral de la page Contacts, il y a plusieurs moyens de trouver de nouveaux amis. Nous pouvons mettre les gens en relation selon leurs intérêts, rechercher des amis par nom ou intérêt, et fournir des suggestions en fonction de la topologie du réseau. Sur un site tout neuf, les suggestions d'amitié devraient commencer à apparaître au bout de 24 heures."; +$a->strings["Group Your Contacts"] = "Grouper vos contacts"; +$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Une fois que vous avez trouvé quelques amis, organisez-les en groupes de conversation privés depuis le panneau latéral de la page Contacts. Vous pourrez ensuite interagir avec chaque groupe de manière privée depuis la page Réseau."; +$a->strings["Why Aren't My Posts Public?"] = "Pourquoi mes éléments ne sont pas publics?"; +$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respecte votre vie privée. Par défaut, toutes vos publications seront seulement montrés à vos amis. Pour plus d'information, consultez la section \"aide\" du lien ci-dessus."; +$a->strings["Getting Help"] = "Obtenir de l'aide"; +$a->strings["Go to the Help Section"] = "Aller à la section Aide"; +$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Nos pages d'aide peuvent être consultées pour davantage de détails sur les fonctionnalités ou les ressources."; +$a->strings["Poke/Prod"] = "Solliciter"; +$a->strings["poke, prod or do other things to somebody"] = "solliciter (poke/...) quelqu'un"; +$a->strings["Recipient"] = "Destinataire"; +$a->strings["Choose what you wish to do to recipient"] = "Choisissez ce que vous voulez faire au destinataire"; +$a->strings["Make this post private"] = "Rendez ce message privé"; +$a->strings["Item has been removed."] = "Cet élément a été enlevé."; +$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s suit les %3\$s de %2\$s"; $a->strings["%1\$s welcomes %2\$s"] = "%1\$s accueille %2\$s"; -$a->strings["Welcome to %s"] = "Bienvenue sur %s"; -$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Désolé, il semble que votre fichier est plus important que ce que la configuration de PHP autorise"; -$a->strings["Or - did you try to upload an empty file?"] = "Ou — auriez-vous essayé de télécharger un fichier vide ?"; -$a->strings["File exceeds size limit of %d"] = "La taille du fichier dépasse la limite de %d"; -$a->strings["File upload failed."] = "Le téléversement a échoué."; -$a->strings["Profile Match"] = "Correpondance de profils"; -$a->strings["No keywords to match. Please add keywords to your default profile."] = "Aucun mot-clé en correspondance. Merci d'ajouter des mots-clés à votre profil par défaut."; -$a->strings["is interested in:"] = "s'intéresse à:"; -$a->strings["Connect"] = "Relier"; -$a->strings["link"] = "lien"; -$a->strings["Not available."] = "Indisponible."; -$a->strings["Community"] = "Communauté"; -$a->strings["No results."] = "Aucun résultat."; -$a->strings["everybody"] = "tout le monde"; -$a->strings["Additional features"] = "Fonctions supplémentaires"; -$a->strings["Display"] = "Afficher"; -$a->strings["Social Networks"] = "Réseaux sociaux"; -$a->strings["Delegations"] = "Délégations"; -$a->strings["Connected apps"] = "Applications connectées"; -$a->strings["Export personal data"] = "Exporter"; -$a->strings["Remove account"] = "Supprimer le compte"; -$a->strings["Missing some important data!"] = "Il manque certaines informations importantes!"; -$a->strings["Failed to connect with email account using the settings provided."] = "Impossible de se connecter au compte courriel configuré."; -$a->strings["Email settings updated."] = "Réglages de courriel mis-à-jour."; -$a->strings["Features updated"] = "Fonctionnalités mises à jour"; -$a->strings["Relocate message has been send to your contacts"] = "Un message de relocalisation a été envoyé à vos contacts."; -$a->strings["Passwords do not match. Password unchanged."] = "Les mots de passe ne correspondent pas. Aucun changement appliqué."; -$a->strings["Empty passwords are not allowed. Password unchanged."] = "Les mots de passe vides sont interdits. Aucun changement appliqué."; -$a->strings["Wrong password."] = "Mauvais mot de passe."; -$a->strings["Password changed."] = "Mots de passe changés."; -$a->strings["Password update failed. Please try again."] = "Le changement de mot de passe a échoué. Merci de recommencer."; -$a->strings[" Please use a shorter name."] = " Merci d'utiliser un nom plus court."; -$a->strings[" Name too short."] = " Nom trop court."; -$a->strings["Wrong Password"] = "Mauvais mot de passe"; -$a->strings[" Not valid email."] = " Email invalide."; -$a->strings[" Cannot change to that email."] = " Impossible de changer pour cet email."; -$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Ce forum privé n'a pas de paramètres de vie privée. Utilisation des paramètres de confidentialité par défaut."; -$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Ce forum privé n'a pas de paramètres de vie privée ni de paramètres de confidentialité par défaut."; -$a->strings["Settings updated."] = "Réglages mis à jour."; -$a->strings["Add application"] = "Ajouter une application"; -$a->strings["Consumer Key"] = "Clé utilisateur"; -$a->strings["Consumer Secret"] = "Secret utilisateur"; -$a->strings["Redirect"] = "Rediriger"; -$a->strings["Icon url"] = "URL de l'icône"; -$a->strings["You can't edit this application."] = "Vous ne pouvez pas éditer cette application."; -$a->strings["Connected Apps"] = "Applications connectées"; -$a->strings["Client key starts with"] = "La clé cliente commence par"; -$a->strings["No name"] = "Sans nom"; -$a->strings["Remove authorization"] = "Révoquer l'autorisation"; -$a->strings["No Plugin settings configured"] = "Pas de réglages d'extensions configurés"; -$a->strings["Plugin Settings"] = "Extensions"; -$a->strings["Off"] = "Éteint"; -$a->strings["On"] = "Allumé"; -$a->strings["Additional Features"] = "Fonctions supplémentaires"; -$a->strings["Built-in support for %s connectivity is %s"] = "Le support natif pour la connectivité %s est %s"; -$a->strings["Diaspora"] = "Diaspora"; -$a->strings["enabled"] = "activé"; -$a->strings["disabled"] = "désactivé"; -$a->strings["StatusNet"] = "StatusNet"; -$a->strings["Email access is disabled on this site."] = "L'accès courriel est désactivé sur ce site."; -$a->strings["Email/Mailbox Setup"] = "Réglages de courriel/boîte à lettre"; -$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Si vous souhaitez communiquer avec vos contacts \"courriel\" (facultatif), merci de nous indiquer comment vous connecter à votre boîte."; -$a->strings["Last successful email check:"] = "Dernière vérification réussie des courriels:"; -$a->strings["IMAP server name:"] = "Nom du serveur IMAP:"; -$a->strings["IMAP port:"] = "Port IMAP:"; -$a->strings["Security:"] = "Sécurité:"; -$a->strings["None"] = "Aucun(e)"; -$a->strings["Email login name:"] = "Nom de connexion:"; -$a->strings["Email password:"] = "Mot de passe:"; -$a->strings["Reply-to address:"] = "Adresse de réponse:"; -$a->strings["Send public posts to all email contacts:"] = "Envoyer les publications publiques à tous les contacts courriels:"; -$a->strings["Action after import:"] = "Action après import:"; -$a->strings["Mark as seen"] = "Marquer comme vu"; -$a->strings["Move to folder"] = "Déplacer vers"; -$a->strings["Move to folder:"] = "Déplacer vers:"; -$a->strings["Display Settings"] = "Affichage"; -$a->strings["Display Theme:"] = "Thème d'affichage:"; -$a->strings["Mobile Theme:"] = "Thème mobile:"; -$a->strings["Update browser every xx seconds"] = "Mettre-à-jour l'affichage toutes les xx secondes"; -$a->strings["Minimum of 10 seconds, no maximum"] = "Délai minimum de 10 secondes, pas de maximum"; -$a->strings["Number of items to display per page:"] = "Nombre d’éléments par page:"; -$a->strings["Maximum of 100 items"] = "Maximum de 100 éléments"; -$a->strings["Number of items to display per page when viewed from mobile device:"] = "Nombre d'éléments a afficher par page pour un appareil mobile"; -$a->strings["Don't show emoticons"] = "Ne pas afficher les émoticônes (smileys grahiques)"; -$a->strings["Don't show notices"] = "Ne plus afficher les avis"; -$a->strings["Infinite scroll"] = "Défilement infini"; -$a->strings["Automatic updates only at the top of the network page"] = ""; -$a->strings["User Types"] = "Types d'utilisateurs"; -$a->strings["Community Types"] = "Genre de communautés"; -$a->strings["Normal Account Page"] = "Compte normal"; -$a->strings["This account is a normal personal profile"] = "Ce compte correspond à un profil normal, pour une seule personne (physique, généralement)"; -$a->strings["Soapbox Page"] = "Compte \"boîte à savon\""; -$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des fans 'en lecture seule'"; -$a->strings["Community Forum/Celebrity Account"] = "Compte de communauté/célébrité"; -$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des fans en 'lecture/écriture'"; -$a->strings["Automatic Friend Page"] = "Compte d'\"amitié automatique\""; -$a->strings["Automatically approve all connection/friend requests as friends"] = "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des amis"; -$a->strings["Private Forum [Experimental]"] = "Forum privé [expérimental]"; -$a->strings["Private forum - approved members only"] = "Forum privé - modéré en inscription"; -$a->strings["OpenID:"] = "OpenID:"; -$a->strings["(Optional) Allow this OpenID to login to this account."] = "&nbsp;(Facultatif) Autoriser cet OpenID à se connecter à ce compte."; -$a->strings["Publish your default profile in your local site directory?"] = "Publier votre profil par défaut sur l'annuaire local de ce site?"; -$a->strings["No"] = "Non"; -$a->strings["Publish your default profile in the global social directory?"] = "Publier votre profil par défaut sur l'annuaire social global?"; -$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Cacher votre liste de contacts/amis des visiteurs de votre profil par défaut?"; -$a->strings["Hide your profile details from unknown viewers?"] = "Cacher les détails du profil aux visiteurs inconnus?"; -$a->strings["If enabled, posting public messages to Diaspora and other networks isn't possible."] = ""; -$a->strings["Allow friends to post to your profile page?"] = "Autoriser vos amis à publier sur votre profil?"; -$a->strings["Allow friends to tag your posts?"] = "Autoriser vos amis à étiqueter vos publications?"; -$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Autoriser les suggestions d'amis potentiels aux nouveaux arrivants?"; -$a->strings["Permit unknown people to send you private mail?"] = "Autoriser les messages privés d'inconnus?"; -$a->strings["Profile is not published."] = "Ce profil n'est pas publié."; -$a->strings["Your Identity Address is"] = "L'adresse de votre identité est"; -$a->strings["Automatically expire posts after this many days:"] = "Les publications expirent automatiquement après (en jours) :"; -$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Si ce champ est vide, les publications n'expireront pas. Les publications expirées seront supprimées"; -$a->strings["Advanced expiration settings"] = "Réglages avancés de l'expiration"; -$a->strings["Advanced Expiration"] = "Expiration (avancé)"; -$a->strings["Expire posts:"] = "Faire expirer les publications:"; -$a->strings["Expire personal notes:"] = "Faire expirer les notes personnelles:"; -$a->strings["Expire starred posts:"] = "Faire expirer les publications marqués:"; -$a->strings["Expire photos:"] = "Faire expirer les photos:"; -$a->strings["Only expire posts by others:"] = "Faire expirer seulement les publications des autres:"; -$a->strings["Account Settings"] = "Compte"; -$a->strings["Password Settings"] = "Réglages de mot de passe"; -$a->strings["New Password:"] = "Nouveau mot de passe:"; -$a->strings["Confirm:"] = "Confirmer:"; -$a->strings["Leave password fields blank unless changing"] = "Laissez les champs de mot de passe vierges, sauf si vous désirez les changer"; -$a->strings["Current Password:"] = "Mot de passe actuel:"; -$a->strings["Your current password to confirm the changes"] = "Votre mot de passe actuel pour confirmer les modifications"; -$a->strings["Password:"] = "Mot de passe:"; -$a->strings["Basic Settings"] = "Réglages basiques"; -$a->strings["Full Name:"] = "Nom complet:"; -$a->strings["Email Address:"] = "Adresse courriel:"; -$a->strings["Your Timezone:"] = "Votre fuseau horaire:"; -$a->strings["Default Post Location:"] = "Emplacement de publication par défaut:"; -$a->strings["Use Browser Location:"] = "Utiliser la localisation géographique du navigateur:"; -$a->strings["Security and Privacy Settings"] = "Réglages de sécurité et vie privée"; -$a->strings["Maximum Friend Requests/Day:"] = "Nombre maximal de requêtes d'amitié/jour:"; -$a->strings["(to prevent spam abuse)"] = "(pour limiter l'impact du spam)"; -$a->strings["Default Post Permissions"] = "Permissions de publication par défaut"; -$a->strings["(click to open/close)"] = "(cliquer pour ouvrir/fermer)"; -$a->strings["Show to Groups"] = "Montrer aux groupes"; -$a->strings["Show to Contacts"] = "Montrer aux Contacts"; -$a->strings["Default Private Post"] = "Message privé par défaut"; -$a->strings["Default Public Post"] = "Message publique par défaut"; -$a->strings["Default Permissions for New Posts"] = "Permissions par défaut pour les nouvelles publications"; -$a->strings["Maximum private messages per day from unknown people:"] = "Maximum de messages privés d'inconnus par jour:"; -$a->strings["Notification Settings"] = "Réglages de notification"; -$a->strings["By default post a status message when:"] = "Par défaut, poster un statut quand:"; -$a->strings["accepting a friend request"] = "j'accepte un ami"; -$a->strings["joining a forum/community"] = "joignant un forum/une communauté"; -$a->strings["making an interesting profile change"] = "je fais une modification intéressante de mon profil"; -$a->strings["Send a notification email when:"] = "Envoyer un courriel de notification quand:"; -$a->strings["You receive an introduction"] = "Vous recevez une introduction"; -$a->strings["Your introductions are confirmed"] = "Vos introductions sont confirmées"; -$a->strings["Someone writes on your profile wall"] = "Quelqu'un écrit sur votre mur"; -$a->strings["Someone writes a followup comment"] = "Quelqu'un vous commente"; -$a->strings["You receive a private message"] = "Vous recevez un message privé"; -$a->strings["You receive a friend suggestion"] = "Vous avez reçu une suggestion d'ami"; -$a->strings["You are tagged in a post"] = "Vous avez été étiquetté dans une publication"; -$a->strings["You are poked/prodded/etc. in a post"] = "Vous avez été sollicité dans une publication"; -$a->strings["Text-only notification emails"] = ""; -$a->strings["Send text only notification emails, without the html part"] = ""; -$a->strings["Advanced Account/Page Type Settings"] = "Paramètres avancés de compte/page"; -$a->strings["Change the behaviour of this account for special situations"] = "Modifier le comportement de ce compte dans certaines situations"; -$a->strings["Relocate"] = "Relocaliser"; -$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."] = "Si vous avez migré ce profil depuis un autre serveur et que vos contacts ne reçoivent plus vos mises à jour, essayez ce bouton."; -$a->strings["Resend relocate message to contacts"] = "Renvoyer un message de relocalisation aux contacts."; -$a->strings["This introduction has already been accepted."] = "Cette introduction a déjà été acceptée."; -$a->strings["Profile location is not valid or does not contain profile information."] = "L'emplacement du profil est invalide ou ne contient pas de profil valide."; -$a->strings["Warning: profile location has no identifiable owner name."] = "Attention: l'emplacement du profil n'a pas de nom identifiable."; -$a->strings["Warning: profile location has no profile photo."] = "Attention: l'emplacement du profil n'a pas de photo de profil."; -$a->strings["%d required parameter was not found at the given location"] = array( - 0 => "%d paramètre requis n'a pas été trouvé à l'endroit indiqué", - 1 => "%d paramètres requis n'ont pas été trouvés à l'endroit indiqué", -); -$a->strings["Introduction complete."] = "Phase d'introduction achevée."; -$a->strings["Unrecoverable protocol error."] = "Erreur de protocole non-récupérable."; -$a->strings["Profile unavailable."] = "Profil indisponible."; -$a->strings["%s has received too many connection requests today."] = "%s a reçu trop de demandes d'introduction aujourd'hui."; -$a->strings["Spam protection measures have been invoked."] = "Des mesures de protection contre le spam ont été déclenchées."; -$a->strings["Friends are advised to please try again in 24 hours."] = "Les relations sont encouragées à attendre 24 heures pour recommencer."; -$a->strings["Invalid locator"] = "Localisateur invalide"; -$a->strings["Invalid email address."] = "Adresse courriel invalide."; -$a->strings["This account has not been configured for email. Request failed."] = "Ce compte n'a pas été configuré pour les échanges de courriel. Requête avortée."; -$a->strings["Unable to resolve your name at the provided location."] = "Impossible de résoudre votre nom à l'emplacement fourni."; -$a->strings["You have already introduced yourself here."] = "Vous vous êtes déjà présenté ici."; -$a->strings["Apparently you are already friends with %s."] = "Il semblerait que vous soyez déjà ami avec %s."; -$a->strings["Invalid profile URL."] = "URL de profil invalide."; -$a->strings["Disallowed profile URL."] = "URL de profil interdite."; -$a->strings["Your introduction has been sent."] = "Votre introduction a été envoyée."; -$a->strings["Please login to confirm introduction."] = "Connectez-vous pour confirmer l'introduction."; -$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Identité incorrecte actuellement connectée. Merci de vous connecter à ce profil."; -$a->strings["Hide this contact"] = "Cacher ce contact"; -$a->strings["Welcome home %s."] = "Bienvenue chez vous, %s."; -$a->strings["Please confirm your introduction/connection request to %s."] = "Merci de confirmer votre demande d'introduction auprès de %s."; -$a->strings["Confirm"] = "Confirmer"; -$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Merci d'entrer votre \"adresse d'identité\" de l'un des réseaux de communication suivant:"; -$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = "Si vous n'êtes pas encore membre du web social libre, suivez ce lien pour trouver un site Friendica ouvert au public et nous rejoindre dès aujourd'hui."; -$a->strings["Friend/Connection Request"] = "Requête de relation/amitié"; -$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Exemples : jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; -$a->strings["Please answer the following:"] = "Merci de répondre à ce qui suit:"; -$a->strings["Does %s know you?"] = "Est-ce que %s vous connaît?"; -$a->strings["Add a personal note:"] = "Ajouter une note personnelle:"; -$a->strings["Friendica"] = "Friendica"; -$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."] = " - merci de ne pas utiliser ce formulaire. Entrez plutôt %s dans votre barre de recherche Diaspora."; -$a->strings["Your Identity Address:"] = "Votre adresse d'identité:"; -$a->strings["Submit Request"] = "Envoyer la requête"; -$a->strings["Registration successful. Please check your email for further instructions."] = "Inscription réussie. Vérifiez vos emails pour la suite des instructions."; -$a->strings["Failed to send email message. Here your accout details:
login: %s
password: %s

You can change your password after login."] = "Impossible d’envoyer le courriel de confirmation. Voici vos informations de connexion:
identifiant : %s
mot de passe : %s

Vous pourrez changer votre mot de passe une fois connecté."; -$a->strings["Your registration can not be processed."] = "Votre inscription ne peut être traitée."; -$a->strings["Your registration is pending approval by the site owner."] = "Votre inscription attend une validation du propriétaire du site."; -$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Le nombre d'inscriptions quotidiennes pour ce site a été dépassé. Merci de réessayer demain."; -$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Vous pouvez (si vous le souhaitez) remplir ce formulaire via OpenID. Fournissez votre OpenID et cliquez \"S'inscrire\"."; -$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Si vous n'êtes pas familier avec OpenID, laissez ce champ vide et remplissez le reste."; -$a->strings["Your OpenID (optional): "] = "Votre OpenID (facultatif): "; -$a->strings["Include your profile in member directory?"] = "Inclure votre profil dans l'annuaire des membres?"; -$a->strings["Membership on this site is by invitation only."] = "L'inscription à ce site se fait uniquement sur invitation."; -$a->strings["Your invitation ID: "] = "Votre ID d'invitation: "; -$a->strings["Your Full Name (e.g. Joe Smith): "] = "Votre nom complet (p.ex. Michel Dupont): "; -$a->strings["Your Email Address: "] = "Votre adresse courriel: "; -$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Choisissez un pseudo. Celui devra commencer par une lettre. L'adresse de votre profil en découlera sous la forme '<strong>pseudo@\$sitename</strong>'."; -$a->strings["Choose a nickname: "] = "Choisir un pseudo: "; -$a->strings["Register"] = "S'inscrire"; -$a->strings["Import"] = "Importer"; -$a->strings["Import your profile to this friendica instance"] = "Importer votre profile dans cette instance de friendica"; -$a->strings["System down for maintenance"] = "Système indisponible pour cause de maintenance"; -$a->strings["Search"] = "Recherche"; -$a->strings["Global Directory"] = "Annuaire global"; +$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Ceci peut se produire lorsque le contact a été requis par les deux personnes et a déjà été approuvé."; +$a->strings["Response from remote site was not understood."] = "Réponse du site distant incomprise."; +$a->strings["Unexpected response from remote site: "] = "Réponse inattendue du site distant: "; +$a->strings["Confirmation completed successfully."] = "Confirmation achevée avec succès."; +$a->strings["Remote site reported: "] = "Alerte du site distant: "; +$a->strings["Temporary failure. Please wait and try again."] = "Échec temporaire. Merci de recommencer ultérieurement."; +$a->strings["Introduction failed or was revoked."] = "Introduction échouée ou annulée."; +$a->strings["Unable to set contact photo."] = "Impossible de définir la photo du contact."; +$a->strings["No user record found for '%s' "] = "Pas d'utilisateur trouvé pour '%s' "; +$a->strings["Our site encryption key is apparently messed up."] = "Notre clé de chiffrement de site est apparemment corrompue."; +$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "URL de site absente ou indéchiffrable."; +$a->strings["Contact record was not found for you on our site."] = "Pas d'entrée pour ce contact sur notre site."; +$a->strings["Site public key not available in contact record for URL %s."] = "La clé publique du site ne se trouve pas dans l'enregistrement du contact pour l'URL %s."; +$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "L'identifiant fourni par votre système fait doublon sur le notre. Cela peut fonctionner si vous réessayez."; +$a->strings["Unable to set your contact credentials on our system."] = "Impossible de vous définir des permissions sur notre système."; +$a->strings["Unable to update your contact profile details on our system"] = "Impossible de mettre les détails de votre profil à jour sur notre système"; +$a->strings["%1\$s has joined %2\$s"] = "%1\$s a rejoint %2\$s"; +$a->strings["Unable to locate original post."] = "Impossible de localiser la publication originale."; +$a->strings["Empty post discarded."] = "Publication vide rejetée."; +$a->strings["System error. Post not saved."] = "Erreur système. Publication non sauvée."; +$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Ce message vous a été envoyé par %s, membre du réseau social Friendica."; +$a->strings["You may visit them online at %s"] = "Vous pouvez leur rendre visite sur %s"; +$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Merci de contacter l’émetteur en répondant à cette publication si vous ne souhaitez pas recevoir ces messages."; +$a->strings["%s posted an update."] = "%s a publié une mise à jour."; +$a->strings["Image uploaded but image cropping failed."] = "Image envoyée, mais impossible de la retailler."; +$a->strings["Image size reduction [%s] failed."] = "Réduction de la taille de l'image [%s] échouée."; +$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Rechargez la page avec la touche Maj pressée, ou bien effacez le cache du navigateur, si d'aventure la nouvelle photo n'apparaissait pas immédiatement."; +$a->strings["Unable to process image"] = "Impossible de traiter l'image"; +$a->strings["Upload File:"] = "Fichier à téléverser:"; +$a->strings["Select a profile:"] = "Choisir un profil:"; +$a->strings["Upload"] = "Téléverser"; +$a->strings["skip this step"] = "ignorer cette étape"; +$a->strings["select a photo from your photo albums"] = "choisissez une photo depuis vos albums"; +$a->strings["Crop Image"] = "(Re)cadrer l'image"; +$a->strings["Please adjust the image cropping for optimum viewing."] = "Ajustez le cadre de l'image pour une visualisation optimale."; +$a->strings["Done Editing"] = "Édition terminée"; +$a->strings["Image uploaded successfully."] = "Image téléversée avec succès."; +$a->strings["Friends of %s"] = "Amis de %s"; +$a->strings["No friends to display."] = "Pas d'amis à afficher."; $a->strings["Find on this site"] = "Trouver sur ce site"; $a->strings["Site Directory"] = "Annuaire local"; -$a->strings["Age: "] = "Age: "; $a->strings["Gender: "] = "Genre: "; -$a->strings["Gender:"] = "Genre:"; -$a->strings["Status:"] = "Statut:"; -$a->strings["Homepage:"] = "Page personnelle:"; -$a->strings["About:"] = "À propos:"; $a->strings["No entries (some entries may be hidden)."] = "Aucune entrée (certaines peuvent être cachées)."; -$a->strings["No potential page delegates located."] = "Pas de délégataire potentiel."; -$a->strings["Delegate Page Management"] = "Déléguer la gestion de la page"; -$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."] = "Les délégataires seront capables de gérer tous les aspects de ce compte ou de cette page, à l'exception des réglages de compte. Merci de ne pas déléguer votre compte principal à quelqu'un en qui vous n'avez pas une confiance absolue."; -$a->strings["Existing Page Managers"] = "Gestionnaires existants"; -$a->strings["Existing Page Delegates"] = "Délégataires existants"; -$a->strings["Potential Delegates"] = "Délégataires potentiels"; -$a->strings["Add"] = "Ajouter"; -$a->strings["No entries."] = "Aucune entrée."; -$a->strings["Common Friends"] = "Amis communs"; -$a->strings["No contacts in common."] = "Pas de contacts en commun."; -$a->strings["Export account"] = "Exporter le compte"; -$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."] = "Exportez votre compte, vos infos et vos contacts. Vous pourrez utiliser le résultat comme sauvegarde et/ou pour le ré-importer sur un autre serveur."; -$a->strings["Export all"] = "Tout exporter"; -$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)"] = "Exportez votre compte, vos infos, vos contacts et toutes vos publications (en JSON). Le fichier résultant peut être extrêmement volumineux, et sa production peut durer longtemps. Vous pourrez l'utiliser pour faire une sauvegarde complète (à part les photos)."; -$a->strings["%1\$s is currently %2\$s"] = "%1\$s est d'humeur %2\$s"; -$a->strings["Mood"] = "Humeur"; -$a->strings["Set your current mood and tell your friends"] = "Spécifiez votre humeur du moment, et informez vos amis"; -$a->strings["Do you really want to delete this suggestion?"] = "Voulez-vous vraiment supprimer cette suggestion ?"; -$a->strings["Friend Suggestions"] = "Suggestions d'amitiés/contacts"; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Aucune suggestion. Si ce site est récent, merci de recommencer dans 24h."; -$a->strings["Ignore/Hide"] = "Ignorer/cacher"; -$a->strings["Profile deleted."] = "Profil supprimé."; -$a->strings["Profile-"] = "Profil-"; -$a->strings["New profile created."] = "Nouveau profil créé."; -$a->strings["Profile unavailable to clone."] = "Ce profil ne peut être cloné."; -$a->strings["Profile Name is required."] = "Le nom du profil est requis."; -$a->strings["Marital Status"] = "Statut marital"; -$a->strings["Romantic Partner"] = "Partenaire/conjoint"; -$a->strings["Likes"] = "Derniers \"J'aime\""; -$a->strings["Dislikes"] = "Derniers \"Je n'aime pas\""; -$a->strings["Work/Employment"] = "Travail/Occupation"; -$a->strings["Religion"] = "Religion"; -$a->strings["Political Views"] = "Tendance politique"; -$a->strings["Gender"] = "Sexe"; -$a->strings["Sexual Preference"] = "Préférence sexuelle"; -$a->strings["Homepage"] = "Site internet"; -$a->strings["Interests"] = "Centres d'intérêt"; -$a->strings["Address"] = "Adresse"; -$a->strings["Location"] = "Localisation"; -$a->strings["Profile updated."] = "Profil mis à jour."; -$a->strings[" and "] = " et "; -$a->strings["public profile"] = "profil public"; -$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s a changé %2\$s en “%3\$s”"; -$a->strings[" - Visit %1\$s's %2\$s"] = "Visiter le %2\$s de %1\$s"; -$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s a mis à jour son %2\$s, en modifiant %3\$s."; -$a->strings["Hide contacts and friends:"] = "Cacher mes contacts et amis:"; -$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Cacher ma liste d'amis/contacts des visiteurs de ce profil?"; -$a->strings["Edit Profile Details"] = "Éditer les détails du profil"; -$a->strings["Change Profile Photo"] = "Changer la photo du profil"; -$a->strings["View this profile"] = "Voir ce profil"; -$a->strings["Create a new profile using these settings"] = "Créer un nouveau profil en utilisant ces réglages"; -$a->strings["Clone this profile"] = "Cloner ce profil"; -$a->strings["Delete this profile"] = "Supprimer ce profil"; -$a->strings["Basic information"] = "Information de base"; -$a->strings["Profile picture"] = "Image de profil"; -$a->strings["Preferences"] = "Préférences"; -$a->strings["Status information"] = "Information sur le statut"; -$a->strings["Additional information"] = "Information additionnelle"; -$a->strings["Profile Name:"] = "Nom du profil:"; -$a->strings["Your Full Name:"] = "Votre nom complet:"; -$a->strings["Title/Description:"] = "Titre/Description:"; -$a->strings["Your Gender:"] = "Votre genre:"; -$a->strings["Birthday (%s):"] = "Anniversaire (%s):"; -$a->strings["Street Address:"] = "Adresse postale:"; -$a->strings["Locality/City:"] = "Ville/Localité:"; -$a->strings["Postal/Zip Code:"] = "Code postal:"; -$a->strings["Country:"] = "Pays:"; -$a->strings["Region/State:"] = "Région/État:"; -$a->strings[" Marital Status:"] = " Statut marital:"; -$a->strings["Who: (if applicable)"] = "Qui: (si pertinent)"; -$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Exemples: cathy123, Cathy Williams, cathy@example.com"; -$a->strings["Since [date]:"] = "Depuis [date] :"; -$a->strings["Sexual Preference:"] = "Préférence sexuelle:"; -$a->strings["Homepage URL:"] = "Page personnelle:"; -$a->strings["Hometown:"] = " Ville d'origine:"; -$a->strings["Political Views:"] = "Opinions politiques:"; -$a->strings["Religious Views:"] = "Opinions religieuses:"; -$a->strings["Public Keywords:"] = "Mots-clés publics:"; -$a->strings["Private Keywords:"] = "Mots-clés privés:"; -$a->strings["Likes:"] = "J'aime :"; -$a->strings["Dislikes:"] = "Je n'aime pas :"; -$a->strings["Example: fishing photography software"] = "Exemple: football dessin programmation"; -$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Utilisés pour vous suggérer des amis potentiels, peuvent être vus par autrui)"; -$a->strings["(Used for searching profiles, never shown to others)"] = "(Utilisés pour rechercher dans les profils, ne seront jamais montrés à autrui)"; -$a->strings["Tell us about yourself..."] = "Parlez-nous de vous..."; -$a->strings["Hobbies/Interests"] = "Passe-temps/Centres d'intérêt"; -$a->strings["Contact information and Social Networks"] = "Coordonnées/Réseaux sociaux"; -$a->strings["Musical interests"] = "Goûts musicaux"; -$a->strings["Books, literature"] = "Lectures"; -$a->strings["Television"] = "Télévision"; -$a->strings["Film/dance/culture/entertainment"] = "Cinéma/Danse/Culture/Divertissement"; -$a->strings["Love/romance"] = "Amour/Romance"; -$a->strings["Work/employment"] = "Activité professionnelle/Occupation"; -$a->strings["School/education"] = "Études/Formation"; -$a->strings["This is your public profile.
It may be visible to anybody using the internet."] = "Ceci est votre profil public.
Il peut être visible par n'importe quel utilisateur d'Internet."; -$a->strings["Edit/Manage Profiles"] = "Editer/gérer les profils"; -$a->strings["Change profile photo"] = "Changer de photo de profil"; -$a->strings["Create New Profile"] = "Créer un nouveau profil"; -$a->strings["Profile Image"] = "Image du profil"; -$a->strings["visible to everybody"] = "visible par tous"; -$a->strings["Edit visibility"] = "Changer la visibilité"; -$a->strings["Item not found"] = "Élément introuvable"; -$a->strings["Edit post"] = "Éditer la publication"; -$a->strings["upload photo"] = "envoi image"; -$a->strings["Attach file"] = "Joindre fichier"; -$a->strings["attach file"] = "ajout fichier"; -$a->strings["web link"] = "lien web"; -$a->strings["Insert video link"] = "Insérer un lien video"; -$a->strings["video link"] = "lien vidéo"; -$a->strings["Insert audio link"] = "Insérer un lien audio"; -$a->strings["audio link"] = "lien audio"; -$a->strings["Set your location"] = "Définir votre localisation"; -$a->strings["set location"] = "spéc. localisation"; -$a->strings["Clear browser location"] = "Effacer la localisation du navigateur"; -$a->strings["clear location"] = "supp. localisation"; -$a->strings["Permission settings"] = "Réglages des permissions"; -$a->strings["CC: email addresses"] = "CC: adresses de courriel"; -$a->strings["Public post"] = "Publication publique"; -$a->strings["Set title"] = "Définir un titre"; -$a->strings["Categories (comma-separated list)"] = "Catégories (séparées par des virgules)"; -$a->strings["Example: bob@example.com, mary@example.com"] = "Exemple: bob@exemple.com, mary@exemple.com"; -$a->strings["This is Friendica, version"] = "Motorisé par Friendica version"; -$a->strings["running at web location"] = "hébergé sur"; -$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Merci de vous rendre sur Friendica.com si vous souhaitez en savoir plus sur le projet Friendica."; -$a->strings["Bug reports and issues: please visit"] = "Pour les rapports de bugs: rendez vous sur"; -$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Suggestions, remerciements, donations, etc. - écrivez à \"Info\" arob. Friendica - point com"; -$a->strings["Installed plugins/addons/apps:"] = "Extensions/greffons/applications installées:"; -$a->strings["No installed plugins/addons/apps"] = "Extensions/greffons/applications non installées:"; -$a->strings["Authorize application connection"] = "Autoriser l'application à se connecter"; -$a->strings["Return to your app and insert this Securty Code:"] = "Retournez à votre application et saisissez ce Code de Sécurité : "; -$a->strings["Please login to continue."] = "Merci de vous connecter pour continuer."; -$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Voulez-vous autoriser cette application à accéder à vos publications et contacts, et/ou à créer des billets à votre place?"; -$a->strings["Remote privacy information not available."] = "Informations de confidentialité indisponibles."; -$a->strings["Visible to:"] = "Visible par:"; -$a->strings["Personal Notes"] = "Notes personnelles"; -$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; $a->strings["Time Conversion"] = "Conversion temporelle"; $a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica fournit ce service pour partager des événements avec d'autres réseaux et amis indépendament de leur fuseau horaire."; $a->strings["UTC time: %s"] = "Temps UTC : %s"; $a->strings["Current timezone: %s"] = "Zone de temps courante : %s"; $a->strings["Converted localtime: %s"] = "Temps local converti : %s"; $a->strings["Please select your timezone:"] = "Sélectionner votre zone :"; -$a->strings["Poke/Prod"] = "Solliciter"; -$a->strings["poke, prod or do other things to somebody"] = "solliciter (poke/...) quelqu'un"; -$a->strings["Recipient"] = "Destinataire"; -$a->strings["Choose what you wish to do to recipient"] = "Choisissez ce que vous voulez faire au destinataire"; -$a->strings["Make this post private"] = "Rendez ce message privé"; -$a->strings["Total invitation limit exceeded."] = "La limite d'invitation totale est éxédée."; -$a->strings["%s : Not a valid email address."] = "%s : Adresse de courriel invalide."; -$a->strings["Please join us on Friendica"] = "Rejoignez-nous sur Friendica"; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limite d'invitation exédée. Veuillez contacter l'administrateur de votre site."; -$a->strings["%s : Message delivery failed."] = "%s : L'envoi du message a échoué."; -$a->strings["%d message sent."] = array( - 0 => "%d message envoyé.", - 1 => "%d messages envoyés.", -); -$a->strings["You have no more invitations available"] = "Vous n'avez plus d'invitations disponibles"; -$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Visitez %s pour une liste des sites publics que vous pouvez rejoindre. Les membres de Friendica appartenant à d'autres sites peuvent s'interconnecter, ainsi qu'avec les membres de plusieurs autres réseaux sociaux."; -$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Pour accepter cette invitation, merci d'aller vous inscrire sur %s, ou n'importe quel autre site Friendica public."; -$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Les sites Friendica sont tous interconnectés pour créer un immense réseau social respectueux de la vie privée, possédé et contrôllé par ses membres. Ils peuvent également interagir avec plusieurs réseaux sociaux traditionnels. Voir %s pour une liste d'autres sites Friendica que vous pourriez rejoindre."; -$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Toutes nos excuses. Ce système n'est pas configuré pour se connecter à d'autres sites publics ou inviter de nouveaux membres."; -$a->strings["Send invitations"] = "Envoyer des invitations"; -$a->strings["Enter email addresses, one per line:"] = "Entrez les adresses email, une par ligne:"; -$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Vous êtes cordialement invité à me rejoindre sur Friendica, et nous aider ainsi à créer un meilleur web social."; -$a->strings["You will need to supply this invitation code: \$invite_code"] = "Vous devrez fournir ce code d'invitation: \$invite_code"; -$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Une fois inscrit, connectez-vous à la page de mon profil sur:"; -$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Pour plus d'information sur le projet Friendica, et pourquoi nous croyons qu'il est important, merci de visiter http://friendica.com"; -$a->strings["Photo Albums"] = "Albums photo"; -$a->strings["Contact Photos"] = "Photos du contact"; -$a->strings["Upload New Photos"] = "Téléverser de nouvelles photos"; -$a->strings["Contact information unavailable"] = "Informations de contact indisponibles"; -$a->strings["Album not found."] = "Album introuvable."; -$a->strings["Delete Album"] = "Effacer l'album"; -$a->strings["Do you really want to delete this photo album and all its photos?"] = "Voulez-vous vraiment supprimer cet album photo et toutes ses photos ?"; -$a->strings["Delete Photo"] = "Effacer la photo"; -$a->strings["Do you really want to delete this photo?"] = "Voulez-vous vraiment supprimer cette photo ?"; -$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s a été étiqueté dans %2\$s par %3\$s"; -$a->strings["a photo"] = "une photo"; -$a->strings["Image exceeds size limit of "] = "L'image dépasse la taille maximale de "; -$a->strings["Image file is empty."] = "Fichier image vide."; -$a->strings["No photos selected"] = "Aucune photo sélectionnée"; -$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Vous avez utilisé %1$.2f Mo sur %2$.2f d'espace de stockage pour les photos."; -$a->strings["Upload Photos"] = "Téléverser des photos"; -$a->strings["New album name: "] = "Nom du nouvel album: "; -$a->strings["or existing album name: "] = "ou nom d'un album existant: "; -$a->strings["Do not show a status post for this upload"] = "Ne pas publier de notice de statut pour cet envoi"; -$a->strings["Permissions"] = "Permissions"; -$a->strings["Private Photo"] = "Photo privée"; -$a->strings["Public Photo"] = "Photo publique"; -$a->strings["Edit Album"] = "Éditer l'album"; -$a->strings["Show Newest First"] = "Plus récent d'abord"; -$a->strings["Show Oldest First"] = "Plus ancien d'abord"; -$a->strings["View Photo"] = "Voir la photo"; -$a->strings["Permission denied. Access to this item may be restricted."] = "Interdit. L'accès à cet élément peut avoir été restreint."; -$a->strings["Photo not available"] = "Photo indisponible"; -$a->strings["View photo"] = "Voir photo"; -$a->strings["Edit photo"] = "Éditer la photo"; -$a->strings["Use as profile photo"] = "Utiliser comme photo de profil"; -$a->strings["View Full Size"] = "Voir en taille réelle"; -$a->strings["Tags: "] = "Étiquettes:"; -$a->strings["[Remove any tag]"] = "[Retirer toutes les étiquettes]"; -$a->strings["Rotate CW (right)"] = "Tourner dans le sens des aiguilles d'une montre (vers la droite)"; -$a->strings["Rotate CCW (left)"] = "Tourner dans le sens contraire des aiguilles d'une montre (vers la gauche)"; -$a->strings["New album name"] = "Nom du nouvel album"; -$a->strings["Caption"] = "Titre"; -$a->strings["Add a Tag"] = "Ajouter une étiquette"; -$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Exemples: @bob, @Barbara_Jensen, @jim@example.com, #Californie, #vacances"; -$a->strings["Private photo"] = "Photo privée"; -$a->strings["Public photo"] = "Photo publique"; -$a->strings["Share"] = "Partager"; -$a->strings["Recent Photos"] = "Photos récentes"; -$a->strings["Account approved."] = "Inscription validée."; -$a->strings["Registration revoked for %s"] = "Inscription révoquée pour %s"; -$a->strings["Please login."] = "Merci de vous connecter."; -$a->strings["Move account"] = "Migrer le compte"; -$a->strings["You can import an account from another Friendica server."] = "Vous pouvez importer un compte d'un autre serveur Friendica."; -$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."] = "Vous devez exporter votre compte à partir de l'ancien serveur et le téléverser ici. Nous recréerons votre ancien compte ici avec tous vos contacts. Nous tenterons également d'informer vos amis que vous avez déménagé ici."; -$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Cette fonctionnalité est expérimentale. Nous ne pouvons importer les contacts des réseaux OStatus (statusnet/identi.ca) ou Diaspora"; -$a->strings["Account file"] = "Fichier du compte"; -$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Pour exporter votre compte, allez dans \"Paramètres> Exporter vos données personnelles\" et sélectionnez \"exportation de compte\""; -$a->strings["Item not available."] = "Elément non disponible."; -$a->strings["Item was not found."] = "Element introuvable."; -$a->strings["Delete this item?"] = "Effacer cet élément?"; -$a->strings["show fewer"] = "montrer moins"; -$a->strings["Update %s failed. See error logs."] = "Mise-à-jour %s échouée. Voir les journaux d'erreur."; -$a->strings["Create a New Account"] = "Créer un nouveau compte"; -$a->strings["Logout"] = "Se déconnecter"; -$a->strings["Nickname or Email address: "] = "Pseudo ou courriel: "; -$a->strings["Password: "] = "Mot de passe: "; -$a->strings["Remember me"] = "Se souvenir de moi"; -$a->strings["Or login using OpenID: "] = "Ou connectez-vous via OpenID: "; -$a->strings["Forgot your password?"] = "Mot de passe oublié?"; -$a->strings["Website Terms of Service"] = "Conditions d'utilisation du site internet"; -$a->strings["terms of service"] = "conditions d'utilisation"; -$a->strings["Website Privacy Policy"] = "Politique de confidentialité du site internet"; -$a->strings["privacy policy"] = "politique de confidentialité"; -$a->strings["Requested account is not available."] = "Le compte demandé n'est pas disponible."; -$a->strings["Edit profile"] = "Editer le profil"; -$a->strings["Message"] = "Message"; -$a->strings["Profiles"] = "Profils"; -$a->strings["Manage/edit profiles"] = "Gérer/éditer les profils"; -$a->strings["Network:"] = "Réseau"; -$a->strings["g A l F d"] = "g A | F d"; -$a->strings["F d"] = "F d"; -$a->strings["[today]"] = "[aujourd'hui]"; -$a->strings["Birthday Reminders"] = "Rappels d'anniversaires"; -$a->strings["Birthdays this week:"] = "Anniversaires cette semaine:"; -$a->strings["[No description]"] = "[Sans description]"; -$a->strings["Event Reminders"] = "Rappels d'événements"; -$a->strings["Events this week:"] = "Evénements cette semaine:"; -$a->strings["Status"] = "Statut"; -$a->strings["Status Messages and Posts"] = "Messages d'état et publications"; -$a->strings["Profile Details"] = "Détails du profil"; -$a->strings["Videos"] = "Vidéos"; -$a->strings["Events and Calendar"] = "Événements et agenda"; -$a->strings["Only You Can See This"] = "Vous seul pouvez voir ça"; -$a->strings["This entry was edited"] = "Cette entrée à été édité"; -$a->strings["ignore thread"] = "ignorer le fil"; -$a->strings["unignore thread"] = "Ne plus ignorer le fil"; -$a->strings["toggle ignore status"] = "Ignorer le statut"; -$a->strings["ignored"] = "ignoré"; -$a->strings["Categories:"] = "Catégories:"; -$a->strings["Filed under:"] = "Rangé sous:"; -$a->strings["via"] = "via"; -$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."] = "\nLes développeurs de Friendica ont récemment publié la mise à jour %s, mais en tentant de l’installer, quelque chose s’est terriblement mal passé. Une réparation s’impose et je ne peux pas la faire tout seul. Contactez un développeur Friendica si vous ne pouvez pas corriger le problème vous-même. Il est possible que ma base de données soit corrompue."; -$a->strings["The error message is\n[pre]%s[/pre]"] = "Le message d’erreur est\n[pre]%s[/pre]"; -$a->strings["Errors encountered creating database tables."] = "Des erreurs ont été signalées lors de la création des tables."; -$a->strings["Errors encountered performing database changes."] = "Des erreurs sont survenues lors de la mise à jour de la base de données."; -$a->strings["Logged out."] = "Déconnecté."; -$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Nous avons eu un souci avec l'OpenID que vous avez fourni. merci de vérifier l'orthographe correcte de ce dernier."; -$a->strings["The error message was:"] = "Le message d'erreur était :"; -$a->strings["Add New Contact"] = "Ajouter un nouveau contact"; -$a->strings["Enter address or web location"] = "Entrez son adresse ou sa localisation web"; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Exemple: bob@example.com, http://example.com/barbara"; -$a->strings["%d invitation available"] = array( - 0 => "%d invitation disponible", - 1 => "%d invitations disponibles", -); -$a->strings["Find People"] = "Trouver des personnes"; -$a->strings["Enter name or interest"] = "Entrez un nom ou un centre d'intérêt"; -$a->strings["Connect/Follow"] = "Connecter/Suivre"; -$a->strings["Examples: Robert Morgenstein, Fishing"] = "Exemples: Robert Morgenstein, Pêche"; -$a->strings["Similar Interests"] = "Intérêts similaires"; -$a->strings["Random Profile"] = "Profil au hasard"; -$a->strings["Invite Friends"] = "Inviter des amis"; -$a->strings["Networks"] = "Réseaux"; -$a->strings["All Networks"] = "Tous réseaux"; -$a->strings["Saved Folders"] = "Dossiers sauvegardés"; -$a->strings["Everything"] = "Tout"; -$a->strings["Categories"] = "Catégories"; -$a->strings["General Features"] = "Fonctions générales"; -$a->strings["Multiple Profiles"] = "Profils multiples"; -$a->strings["Ability to create multiple profiles"] = "Possibilité de créer plusieurs profils"; -$a->strings["Post Composition Features"] = "Caractéristiques de composition de publication"; -$a->strings["Richtext Editor"] = "Éditeur de texte enrichi"; -$a->strings["Enable richtext editor"] = "Activer l'éditeur de texte enrichi"; -$a->strings["Post Preview"] = "Aperçu de la publication"; -$a->strings["Allow previewing posts and comments before publishing them"] = "Permet la prévisualisation des publications et commentaires avant de les publier"; -$a->strings["Auto-mention Forums"] = ""; -$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = ""; -$a->strings["Network Sidebar Widgets"] = "Widgets réseau pour barre latérale"; -$a->strings["Search by Date"] = "Rechercher par Date"; -$a->strings["Ability to select posts by date ranges"] = "Capacité de sélectionner les publications par intervalles de dates"; -$a->strings["Group Filter"] = "Filtre de groupe"; -$a->strings["Enable widget to display Network posts only from selected group"] = "Activer le widget d’affichage des publications du réseau seulement pour le groupe sélectionné"; -$a->strings["Network Filter"] = "Filtre de réseau"; -$a->strings["Enable widget to display Network posts only from selected network"] = "Activer le widget d’affichage des publications du réseau seulement pour le réseau sélectionné"; -$a->strings["Save search terms for re-use"] = "Sauvegarder la recherche pour une utilisation ultérieure"; -$a->strings["Network Tabs"] = "Onglets Réseau"; -$a->strings["Network Personal Tab"] = "Onglet Réseau Personnel"; -$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Activer l'onglet pour afficher seulement les publications du réseau où vous avez interagit"; -$a->strings["Network New Tab"] = "Nouvel onglet réseaux"; -$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Activer l'onglet pour afficher seulement les publications du réseau (dans les 12 dernières heures)"; -$a->strings["Network Shared Links Tab"] = "Onglet réseau partagé"; -$a->strings["Enable tab to display only Network posts with links in them"] = "Activer l'onglet pour afficher seulement les publications du réseau contenant des liens"; -$a->strings["Post/Comment Tools"] = "outils de publication/commentaire"; -$a->strings["Multiple Deletion"] = "Suppression multiple"; -$a->strings["Select and delete multiple posts/comments at once"] = "Sélectionner et supprimer plusieurs publications/commentaires à la fois"; -$a->strings["Edit Sent Posts"] = "Éditer les publications envoyées"; -$a->strings["Edit and correct posts and comments after sending"] = "Éditer et corriger les publications et commentaires après l'envoi"; -$a->strings["Tagging"] = "Étiquettage"; -$a->strings["Ability to tag existing posts"] = "Possibilité d'étiqueter les publications existantes"; -$a->strings["Post Categories"] = "Catégories des publications"; -$a->strings["Add categories to your posts"] = "Ajouter des catégories à vos publications"; -$a->strings["Ability to file posts under folders"] = "Possibilité d'afficher les publications sous les répertoires"; -$a->strings["Dislike Posts"] = "Publications non aimées"; -$a->strings["Ability to dislike posts/comments"] = "Possibilité de ne pas aimer les publications/commentaires"; -$a->strings["Star Posts"] = "Publications spéciales"; -$a->strings["Ability to mark special posts with a star indicator"] = "Possibilité de marquer les publications spéciales d'une étoile"; -$a->strings["Mute Post Notifications"] = ""; -$a->strings["Ability to mute notifications for a thread"] = ""; -$a->strings["Connect URL missing."] = "URL de connexion manquante."; -$a->strings["This site is not configured to allow communications with other networks."] = "Ce site n'est pas configuré pour dialoguer avec d'autres réseaux."; -$a->strings["No compatible communication protocols or feeds were discovered."] = "Aucun protocole de communication ni aucun flux n'a pu être découvert."; -$a->strings["The profile address specified does not provide adequate information."] = "L'adresse de profil indiquée ne fournit par les informations adéquates."; -$a->strings["An author or name was not found."] = "Aucun auteur ou nom d'auteur n'a pu être trouvé."; -$a->strings["No browser URL could be matched to this address."] = "Aucune URL de navigation ne correspond à cette adresse."; -$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Impossible de faire correspondre l'adresse d'identité en \"@\" avec un protocole connu ou un contact courriel."; -$a->strings["Use mailto: in front of address to force email check."] = "Utilisez mailto: en face d'une adresse pour l'obliger à être reconnue comme courriel."; -$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "L'adresse de profil spécifiée correspond à un réseau qui a été désactivé sur ce site."; -$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Profil limité. Cette personne ne sera pas capable de recevoir des notifications directes/personnelles de votre part."; -$a->strings["Unable to retrieve contact information."] = "Impossible de récupérer les informations du contact."; -$a->strings["following"] = "following"; -$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un groupe supprimé a été recréé. Les permissions existantes pourraient s'appliquer à ce groupe et aux futurs membres. Si ce n'est pas le comportement attendu, merci de re-créer un autre groupe sous un autre nom."; -$a->strings["Default privacy group for new contacts"] = "Paramètres de confidentialité par défaut pour les nouveaux contacts"; -$a->strings["Everybody"] = "Tout le monde"; -$a->strings["edit"] = "éditer"; -$a->strings["Edit group"] = "Editer groupe"; -$a->strings["Create a new group"] = "Créer un nouveau groupe"; -$a->strings["Contacts not in any group"] = "Contacts n'appartenant à aucun groupe"; -$a->strings["Miscellaneous"] = "Divers"; -$a->strings["year"] = "an"; -$a->strings["month"] = "mois"; -$a->strings["day"] = "jour"; -$a->strings["never"] = "jamais"; -$a->strings["less than a second ago"] = "il y a moins d'une seconde"; -$a->strings["years"] = "ans"; -$a->strings["months"] = "mois"; -$a->strings["week"] = "semaine"; -$a->strings["weeks"] = "semaines"; -$a->strings["days"] = "jours"; -$a->strings["hour"] = "heure"; -$a->strings["hours"] = "heures"; -$a->strings["minute"] = "minute"; -$a->strings["minutes"] = "minutes"; -$a->strings["second"] = "seconde"; -$a->strings["seconds"] = "secondes"; -$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s auparavant"; -$a->strings["%s's birthday"] = "Anniversaire de %s's"; -$a->strings["Happy Birthday %s"] = "Joyeux anniversaire, %s !"; -$a->strings["Visible to everybody"] = "Visible par tout le monde"; -$a->strings["show"] = "montrer"; -$a->strings["don't show"] = "cacher"; -$a->strings["[no subject]"] = "[pas de sujet]"; -$a->strings["stopped following"] = "retiré de la liste de suivi"; -$a->strings["Poke"] = "Sollicitations (pokes)"; -$a->strings["View Status"] = "Voir les statuts"; -$a->strings["View Profile"] = "Voir le profil"; -$a->strings["View Photos"] = "Voir les photos"; -$a->strings["Network Posts"] = "Publications du réseau"; -$a->strings["Edit Contact"] = "Éditer le contact"; -$a->strings["Drop Contact"] = "Supprimer le contact"; -$a->strings["Send PM"] = "Message privé"; -$a->strings["Welcome "] = "Bienvenue "; -$a->strings["Please upload a profile photo."] = "Merci d'illustrer votre profil d'une image."; -$a->strings["Welcome back "] = "Bienvenue à nouveau, "; -$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."] = "Le jeton de sécurité du formulaire n'est pas correct. Ceci veut probablement dire que le formulaire est resté ouvert trop longtemps (plus de 3 heures) avant d'être validé."; -$a->strings["event"] = "évènement"; -$a->strings["%1\$s poked %2\$s"] = "%1\$s a sollicité %2\$s"; -$a->strings["poked"] = "a titillé"; -$a->strings["post/item"] = "publication/élément"; -$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s a marqué le %3\$s de %2\$s comme favori"; -$a->strings["remove"] = "enlever"; -$a->strings["Delete Selected Items"] = "Supprimer les éléments sélectionnés"; -$a->strings["Follow Thread"] = "Suivre le fil"; -$a->strings["%s likes this."] = "%s aime ça."; -$a->strings["%s doesn't like this."] = "%s n'aime pas ça."; -$a->strings["%2\$d people like this"] = "%2\$d personnes aiment ça"; -$a->strings["%2\$d people don't like this"] = "%2\$d personnes n'aiment pas ça"; -$a->strings["and"] = "et"; -$a->strings[", and %d other people"] = ", et %d autres personnes"; -$a->strings["%s like this."] = "%s aiment ça."; -$a->strings["%s don't like this."] = "%s n'aiment pas ça."; -$a->strings["Visible to everybody"] = "Visible par tout le monde"; -$a->strings["Please enter a video link/URL:"] = "Entrez un lien/URL video :"; -$a->strings["Please enter an audio link/URL:"] = "Entrez un lien/URL audio :"; -$a->strings["Tag term:"] = "Terme d'étiquette:"; -$a->strings["Where are you right now?"] = "Où êtes-vous présentemment?"; -$a->strings["Delete item(s)?"] = "Supprimer les élément(s) ?"; -$a->strings["Post to Email"] = "Publier aux courriels"; -$a->strings["Connectors disabled, since \"%s\" is enabled."] = ""; -$a->strings["permissions"] = "permissions"; -$a->strings["Post to Groups"] = "Publier aux groupes"; -$a->strings["Post to Contacts"] = "Publier aux contacts"; -$a->strings["Private post"] = "Message privé"; -$a->strings["view full size"] = "voir en pleine taille"; -$a->strings["newer"] = "Plus récent"; -$a->strings["older"] = "Plus ancien"; -$a->strings["prev"] = "précédent"; -$a->strings["first"] = "premier"; -$a->strings["last"] = "dernier"; -$a->strings["next"] = "suivant"; -$a->strings["No contacts"] = "Aucun contact"; -$a->strings["%d Contact"] = array( - 0 => "%d contact", - 1 => "%d contacts", -); -$a->strings["poke"] = "titiller"; -$a->strings["ping"] = "attirer l'attention"; -$a->strings["pinged"] = "a attiré l'attention de"; -$a->strings["prod"] = "aiguillonner"; -$a->strings["prodded"] = "a aiguillonné"; -$a->strings["slap"] = "gifler"; -$a->strings["slapped"] = "a giflé"; -$a->strings["finger"] = "tripoter"; -$a->strings["fingered"] = "a tripoté"; -$a->strings["rebuff"] = "rabrouer"; -$a->strings["rebuffed"] = "a rabroué"; -$a->strings["happy"] = "heureuse"; -$a->strings["sad"] = "triste"; -$a->strings["mellow"] = "suave"; -$a->strings["tired"] = "fatiguée"; -$a->strings["perky"] = "guillerette"; -$a->strings["angry"] = "colérique"; -$a->strings["stupified"] = "stupéfaite"; -$a->strings["puzzled"] = "perplexe"; -$a->strings["interested"] = "intéressée"; -$a->strings["bitter"] = "amère"; -$a->strings["cheerful"] = "entraînante"; -$a->strings["alive"] = "vivante"; -$a->strings["annoyed"] = "ennuyée"; -$a->strings["anxious"] = "anxieuse"; -$a->strings["cranky"] = "excentrique"; -$a->strings["disturbed"] = "dérangée"; -$a->strings["frustrated"] = "frustrée"; -$a->strings["motivated"] = "motivée"; -$a->strings["relaxed"] = "détendue"; -$a->strings["surprised"] = "surprise"; -$a->strings["Monday"] = "Lundi"; -$a->strings["Tuesday"] = "Mardi"; -$a->strings["Wednesday"] = "Mercredi"; -$a->strings["Thursday"] = "Jeudi"; -$a->strings["Friday"] = "Vendredi"; -$a->strings["Saturday"] = "Samedi"; -$a->strings["Sunday"] = "Dimanche"; -$a->strings["January"] = "Janvier"; -$a->strings["February"] = "Février"; -$a->strings["March"] = "Mars"; -$a->strings["April"] = "Avril"; -$a->strings["May"] = "Mai"; -$a->strings["June"] = "Juin"; -$a->strings["July"] = "Juillet"; -$a->strings["August"] = "Août"; -$a->strings["September"] = "Septembre"; -$a->strings["October"] = "Octobre"; -$a->strings["November"] = "Novembre"; -$a->strings["December"] = "Décembre"; -$a->strings["bytes"] = "octets"; -$a->strings["Click to open/close"] = "Cliquer pour ouvrir/fermer"; -$a->strings["default"] = "défaut"; -$a->strings["Select an alternate language"] = "Choisir une langue alternative"; -$a->strings["activity"] = "activité"; -$a->strings["post"] = "publication"; -$a->strings["Item filed"] = "Élément classé"; -$a->strings["Image/photo"] = "Image/photo"; -$a->strings["%2\$s %3\$s"] = ""; -$a->strings["%s wrote the following post"] = ""; -$a->strings["$1 wrote:"] = "$1 a écrit:"; -$a->strings["Encrypted content"] = "Contenu chiffré"; -$a->strings["(no subject)"] = "(sans titre)"; -$a->strings["noreply"] = "noreply"; -$a->strings["Cannot locate DNS info for database server '%s'"] = "Impossible de localiser les informations DNS pour le serveur de base de données '%s'"; -$a->strings["Unknown | Not categorised"] = "Inconnu | Non-classé"; -$a->strings["Block immediately"] = "Bloquer immédiatement"; -$a->strings["Shady, spammer, self-marketer"] = "Douteux, spammeur, accro à l'auto-promotion"; -$a->strings["Known to me, but no opinion"] = "Connu de moi, mais sans opinion"; -$a->strings["OK, probably harmless"] = "OK, probablement inoffensif"; -$a->strings["Reputable, has my trust"] = "Réputé, a toute ma confiance"; -$a->strings["Weekly"] = "Chaque semaine"; -$a->strings["Monthly"] = "Chaque mois"; -$a->strings["OStatus"] = "OStatus"; -$a->strings["RSS/Atom"] = "RSS/Atom"; -$a->strings["Zot!"] = "Zot!"; -$a->strings["LinkedIn"] = "LinkedIn"; -$a->strings["XMPP/IM"] = "XMPP/IM"; -$a->strings["MySpace"] = "MySpace"; -$a->strings["Google+"] = "Google+"; -$a->strings["pump.io"] = "pump.io"; -$a->strings["Twitter"] = "Twitter"; -$a->strings["Diaspora Connector"] = "Connecteur Diaspora"; -$a->strings["Statusnet"] = "Statusnet"; -$a->strings["App.net"] = "App.net"; -$a->strings[" on Last.fm"] = "sur Last.fm"; -$a->strings["Starts:"] = "Débute:"; -$a->strings["Finishes:"] = "Finit:"; -$a->strings["j F, Y"] = "j F, Y"; -$a->strings["j F"] = "j F"; -$a->strings["Birthday:"] = "Anniversaire:"; -$a->strings["Age:"] = "Age:"; -$a->strings["for %1\$d %2\$s"] = "depuis %1\$d %2\$s"; -$a->strings["Tags:"] = "Étiquette:"; -$a->strings["Religion:"] = "Religion:"; -$a->strings["Hobbies/Interests:"] = "Passe-temps/Centres d'intérêt:"; -$a->strings["Contact information and Social Networks:"] = "Coordonnées/Réseaux sociaux:"; -$a->strings["Musical interests:"] = "Goûts musicaux:"; -$a->strings["Books, literature:"] = "Lectures:"; -$a->strings["Television:"] = "Télévision:"; -$a->strings["Film/dance/culture/entertainment:"] = "Cinéma/Danse/Culture/Divertissement:"; -$a->strings["Love/Romance:"] = "Amour/Romance:"; -$a->strings["Work/employment:"] = "Activité professionnelle/Occupation:"; -$a->strings["School/education:"] = "Études/Formation:"; -$a->strings["Click here to upgrade."] = "Cliquez ici pour mettre à jour."; -$a->strings["This action exceeds the limits set by your subscription plan."] = "Cette action dépasse les limites définies par votre abonnement."; -$a->strings["This action is not available under your subscription plan."] = "Cette action n'est pas disponible avec votre abonnement."; -$a->strings["End this session"] = "Mettre fin à cette session"; -$a->strings["Your posts and conversations"] = "Vos publications et conversations"; -$a->strings["Your profile page"] = "Votre page de profil"; -$a->strings["Your photos"] = "Vos photos"; -$a->strings["Your videos"] = "Vos vidéos"; -$a->strings["Your events"] = "Vos événements"; -$a->strings["Personal notes"] = "Notes personnelles"; -$a->strings["Your personal notes"] = "Vos notes personnelles"; -$a->strings["Sign in"] = "Se connecter"; -$a->strings["Home Page"] = "Page d'accueil"; -$a->strings["Create an account"] = "Créer un compte"; -$a->strings["Help and documentation"] = "Aide et documentation"; -$a->strings["Apps"] = "Applications"; -$a->strings["Addon applications, utilities, games"] = "Applications supplémentaires, utilitaires, jeux"; -$a->strings["Search site content"] = "Rechercher dans le contenu du site"; -$a->strings["Conversations on this site"] = "Conversations ayant cours sur ce site"; -$a->strings["Conversations on the network"] = ""; -$a->strings["Directory"] = "Annuaire"; -$a->strings["People directory"] = "Annuaire des utilisateurs"; -$a->strings["Information"] = "Information"; -$a->strings["Information about this friendica instance"] = "Information au sujet de cette instance de friendica"; -$a->strings["Conversations from your friends"] = "Conversations de vos amis"; -$a->strings["Network Reset"] = "Réinitialiser le réseau"; -$a->strings["Load Network page with no filters"] = "Chargement des pages du réseau sans filtre"; -$a->strings["Friend Requests"] = "Demande d'amitié"; -$a->strings["See all notifications"] = "Voir toute notification"; -$a->strings["Mark all system notifications seen"] = "Marquer toutes les notifications système comme 'vues'"; -$a->strings["Private mail"] = "Messages privés"; -$a->strings["Inbox"] = "Messages entrants"; -$a->strings["Outbox"] = "Messages sortants"; -$a->strings["Manage"] = "Gérer"; -$a->strings["Manage other pages"] = "Gérer les autres pages"; -$a->strings["Account settings"] = "Compte"; -$a->strings["Manage/Edit Profiles"] = "Gérer/Éditer les profiles"; -$a->strings["Manage/edit friends and contacts"] = "Gérer/éditer les amitiés et contacts"; -$a->strings["Site setup and configuration"] = "Démarrage et configuration du site"; -$a->strings["Navigation"] = "Navigation"; -$a->strings["Site map"] = "Carte du site"; -$a->strings["User not found."] = "Utilisateur non trouvé"; -$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "Le quota journalier de %d publications a été atteint. La publication a été rejetée."; -$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Le quota hebdomadaire de %d publications a été atteint. La publication a été rejetée."; -$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "Le quota mensuel de %d publications a été atteint. La publication a été rejetée."; -$a->strings["There is no status with this id."] = "Il n'y a pas de statut avec cet id."; -$a->strings["There is no conversation with this id."] = "Il n'y a pas de conversation avec cet id."; -$a->strings["Invalid request."] = "Requête invalide."; -$a->strings["Invalid item."] = "Item invalide."; -$a->strings["Invalid action. "] = "Action invalide."; -$a->strings["DB error"] = ""; -$a->strings["An invitation is required."] = "Une invitation est requise."; -$a->strings["Invitation could not be verified."] = "L'invitation fournie n'a pu être validée."; -$a->strings["Invalid OpenID url"] = "Adresse OpenID invalide"; -$a->strings["Please enter the required information."] = "Entrez les informations requises."; -$a->strings["Please use a shorter name."] = "Utilisez un nom plus court."; -$a->strings["Name too short."] = "Nom trop court."; -$a->strings["That doesn't appear to be your full (First Last) name."] = "Ceci ne semble pas être votre nom complet (Prénom Nom)."; -$a->strings["Your email domain is not among those allowed on this site."] = "Votre domaine de courriel n'est pas autorisé sur ce site."; -$a->strings["Not a valid email address."] = "Ceci n'est pas une adresse courriel valide."; -$a->strings["Cannot use that email."] = "Impossible d'utiliser ce courriel."; -$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Votre \"pseudo\" peut seulement contenir les caractères \"a-z\", \"0-9\", \"-\", and \"_\", et doit commencer par une lettre."; -$a->strings["Nickname is already registered. Please choose another."] = "Pseudo déjà utilisé. Merci d'en choisir un autre."; -$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Ce surnom a déjà été utilisé ici, et ne peut re-servir. Merci d'en choisir un autre."; -$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERREUR SÉRIEUSE: La génération des clés de sécurité a échoué."; -$a->strings["An error occurred during registration. Please try again."] = "Une erreur est survenue lors de l'inscription. Merci de recommencer."; -$a->strings["An error occurred creating your default profile. Please try again."] = "Une erreur est survenue lors de la création de votre profil par défaut. Merci de recommencer."; -$a->strings["Friends"] = "Amis"; -$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\n\t\tChère/Cher %1\$s,\n\t\t\tMerci de vous être inscrit sur %2\$s. Votre compte a bien été créé.\n\t"; -$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."] = "\n\t\tVoici vos informations de connexion :\n\t\t\tAdresse :\t%3\$s\n\t\t\tIdentifiant :\t%1\$s\n\t\t\tMot de passe :\t%5\$s\n\n\t\tVous pourrez changer votre mot de passe dans les paramètres de votre compte une fois connecté.\n\n\t\tProfitez-en pour prendre le temps de passer en revue les autres paramètres de votre compte.\n\n\t\tVous pourrez aussi ajouter quelques informations élémentaires à votre profil par défaut (sur la page « Profils ») pour permettre à d’autres personnes de vous trouver facilement.\n\n\t\tNous recommandons de préciser votre nom complet, d’ajouter une photo et quelques mots-clefs (c’est très utile pour découvrir de nouveaux amis), et peut-être aussi d’indiquer au moins le pays dans lequel vous vivez, à défaut d’être plus précis.\n\n\t\tNous respectons pleinement votre droit à une vie privée, et vous n’avez aucune obligation de donner toutes ces informations. Mais si vous êtes nouveau et ne connaissez encore personne ici, cela peut vous aider à vous faire de nouveaux amis intéressants.\n\n\n\t\tMerci et bienvenu sur %2\$s."; -$a->strings["Sharing notification from Diaspora network"] = "Notification de partage du réseau Diaspora"; -$a->strings["Attachments:"] = "Pièces jointes : "; -$a->strings["Do you really want to delete this item?"] = "Voulez-vous vraiment supprimer cet élément ?"; -$a->strings["Archives"] = "Archives"; -$a->strings["Male"] = "Masculin"; -$a->strings["Female"] = "Féminin"; -$a->strings["Currently Male"] = "Actuellement masculin"; -$a->strings["Currently Female"] = "Actuellement féminin"; -$a->strings["Mostly Male"] = "Principalement masculin"; -$a->strings["Mostly Female"] = "Principalement féminin"; -$a->strings["Transgender"] = "Transgenre"; -$a->strings["Intersex"] = "Inter-sexe"; -$a->strings["Transsexual"] = "Transsexuel"; -$a->strings["Hermaphrodite"] = "Hermaphrodite"; -$a->strings["Neuter"] = "Neutre"; -$a->strings["Non-specific"] = "Non-spécifique"; -$a->strings["Other"] = "Autre"; -$a->strings["Undecided"] = "Indécis"; -$a->strings["Males"] = "Hommes"; -$a->strings["Females"] = "Femmes"; -$a->strings["Gay"] = "Gay"; -$a->strings["Lesbian"] = "Lesbienne"; -$a->strings["No Preference"] = "Sans préférence"; -$a->strings["Bisexual"] = "Bisexuel"; -$a->strings["Autosexual"] = "Auto-sexuel"; -$a->strings["Abstinent"] = "Abstinent"; -$a->strings["Virgin"] = "Vierge"; -$a->strings["Deviant"] = "Déviant"; -$a->strings["Fetish"] = "Fétichiste"; -$a->strings["Oodles"] = "Oodles"; -$a->strings["Nonsexual"] = "Non-sexuel"; -$a->strings["Single"] = "Célibataire"; -$a->strings["Lonely"] = "Esseulé"; -$a->strings["Available"] = "Disponible"; -$a->strings["Unavailable"] = "Indisponible"; -$a->strings["Has crush"] = "Attiré par quelqu'un"; -$a->strings["Infatuated"] = "Entiché"; -$a->strings["Dating"] = "Dans une relation"; -$a->strings["Unfaithful"] = "Infidèle"; -$a->strings["Sex Addict"] = "Accro au sexe"; -$a->strings["Friends/Benefits"] = "Amis par intérêt"; -$a->strings["Casual"] = "Casual"; -$a->strings["Engaged"] = "Fiancé"; -$a->strings["Married"] = "Marié"; -$a->strings["Imaginarily married"] = "Se croit marié"; -$a->strings["Partners"] = "Partenaire"; -$a->strings["Cohabiting"] = "En cohabitation"; -$a->strings["Common law"] = "Marié \"de fait\"/\"sui juris\" (concubin)"; -$a->strings["Happy"] = "Heureux"; -$a->strings["Not looking"] = "Pas intéressé"; -$a->strings["Swinger"] = "Échangiste"; -$a->strings["Betrayed"] = "Trahi(e)"; -$a->strings["Separated"] = "Séparé"; -$a->strings["Unstable"] = "Instable"; -$a->strings["Divorced"] = "Divorcé"; -$a->strings["Imaginarily divorced"] = "Se croit divorcé"; -$a->strings["Widowed"] = "Veuf/Veuve"; -$a->strings["Uncertain"] = "Incertain"; -$a->strings["It's complicated"] = "C'est compliqué"; -$a->strings["Don't care"] = "S'en désintéresse"; -$a->strings["Ask me"] = "Me demander"; -$a->strings["Friendica Notification"] = "Notification Friendica"; -$a->strings["Thank You,"] = "Merci, "; -$a->strings["%s Administrator"] = "L'administrateur de %s"; -$a->strings["%s "] = "%s "; -$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notification] Nouveau courriel reçu sur %s"; -$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s vous a envoyé un nouveau message privé sur %2\$s."; -$a->strings["%1\$s sent you %2\$s."] = "%1\$s vous a envoyé %2\$s."; -$a->strings["a private message"] = "un message privé"; -$a->strings["Please visit %s to view and/or reply to your private messages."] = "Merci de visiter %s pour voir vos messages privés et/ou y répondre."; -$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s a commenté sur [url=%2\$s]un %3\$s[/url]"; -$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s a commenté sur [url=%2\$s]le %4\$s de %3\$s[/url]"; -$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s commented on [url=%2\$s]your %3\$s[/url]"; -$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Notification] Commentaire de %2\$s sur la conversation #%1\$d"; -$a->strings["%s commented on an item/conversation you have been following."] = "%s a commenté un élément que vous suivez."; -$a->strings["Please visit %s to view and/or reply to the conversation."] = "Merci de visiter %s pour voir la conversation et/ou y répondre."; -$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notification] %s a posté sur votre mur de profil"; -$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s a publié sur votre mur à %2\$s"; -$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s a posté sur [url=%2\$s]votre mur[/url]"; -$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notification] %s vous a étiqueté"; -$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s vous a étiqueté sur %2\$s"; -$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]vous a étiqueté[/url]."; -$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Notification] %s partage une nouvelle publication"; -$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s a partagé une nouvelle publication sur %2\$s"; -$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]partage une publication[/url]."; -$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notify] %1\$s vous a sollicité"; -$a->strings["%1\$s poked you at %2\$s"] = "%1\$s vous a sollicité via %2\$s"; -$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s vous a [url=%2\$s]sollicité[/url]."; -$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notification] %s a étiqueté votre publication"; -$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s a étiqueté votre publication sur %2\$s"; -$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s a étiqueté [url=%2\$s]votre publication[/url]"; -$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notification] Introduction reçue"; -$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Vous avez reçu une introduction de '%1\$s' sur %2\$s"; -$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Vous avez reçu [url=%1\$s]une introduction[/url] de %2\$s."; -$a->strings["You may visit their profile at %s"] = "Vous pouvez visiter son profil sur %s"; -$a->strings["Please visit %s to approve or reject the introduction."] = "Merci de visiter %s pour approuver ou rejeter l'introduction."; -$a->strings["[Friendica:Notify] A new person is sharing with you"] = ""; -$a->strings["%1\$s is sharing with you at %2\$s"] = ""; -$a->strings["[Friendica:Notify] You have a new follower"] = ""; -$a->strings["You have a new follower at %2\$s : %1\$s"] = ""; -$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Notification] Nouvelle suggestion d'amitié"; -$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Vous avez reçu une suggestion de '%1\$s' sur %2\$s"; -$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Vous avez reçu [url=%1\$s]une suggestion[/url] de %3\$s pour %2\$s."; -$a->strings["Name:"] = "Nom :"; -$a->strings["Photo:"] = "Photo :"; -$a->strings["Please visit %s to approve or reject the suggestion."] = "Merci de visiter %s pour approuver ou rejeter la suggestion."; -$a->strings["[Friendica:Notify] Connection accepted"] = ""; -$a->strings["'%1\$s' has acepted your connection request at %2\$s"] = ""; -$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = ""; -$a->strings["You are now mutual friends and may exchange status updates, photos, and email\n\twithout restriction."] = ""; -$a->strings["Please visit %s if you wish to make any changes to this relationship."] = ""; -$a->strings["'%1\$s' has chosen to accept you a \"fan\", which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = ""; -$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future. "] = ""; -$a->strings["[Friendica System:Notify] registration request"] = ""; -$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = ""; -$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Vous avez reçu une [url=%1\$s]demande de création de compte[/url] de %2\$s."; -$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Nom complet :\t%1\$s\\nAdresse :\t%2\$s\\nIdentifiant :\t%3\$s (%4\$s)"; -$a->strings["Please visit %s to approve or reject the request."] = "Veuillez visiter %s pour approuver ou rejeter la demande."; -$a->strings["Embedded content"] = "Contenu incorporé"; -$a->strings["Embedding disabled"] = "Incorporation désactivée"; -$a->strings["Error decoding account file"] = "Une erreur a été détecté en décodant un fichier utilisateur"; -$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Erreur ! Pas de ficher de version existant ! Êtes vous sur un compte Friendica ?"; -$a->strings["Error! Cannot check nickname"] = "Erreur! Pseudo invalide"; -$a->strings["User '%s' already exists on this server!"] = "L'utilisateur '%s' existe déjà sur ce serveur!"; -$a->strings["User creation error"] = "Erreur de création d'utilisateur"; -$a->strings["User profile creation error"] = "Erreur de création du profil utilisateur"; -$a->strings["%d contact not imported"] = array( - 0 => "%d contacts non importés", - 1 => "%d contacts non importés", -); -$a->strings["Done. You can now login with your username and password"] = "Action réalisé. Vous pouvez désormais vous connecter avec votre nom d'utilisateur et votre mot de passe"; -$a->strings["toggle mobile"] = "activ. mobile"; -$a->strings["Theme settings"] = "Réglages du thème graphique"; -$a->strings["Set resize level for images in posts and comments (width and height)"] = "Choisir une taille pour les images dans les publications et commentaires (largeur et hauteur)"; -$a->strings["Set font-size for posts and comments"] = "Réglez 'font-size' (taille de police) pour publications et commentaires"; -$a->strings["Set theme width"] = "Largeur du thème"; -$a->strings["Color scheme"] = "Palette de couleurs"; -$a->strings["Set line-height for posts and comments"] = "Réglez 'line-height' (hauteur de police) pour publications et commentaires"; -$a->strings["Set colour scheme"] = "Choisir le schéma de couleurs"; -$a->strings["Alignment"] = "Alignement"; -$a->strings["Left"] = "Gauche"; -$a->strings["Center"] = "Centre"; -$a->strings["Posts font size"] = "Taille de texte des publications"; -$a->strings["Textareas font size"] = "Taille de police des zones de texte"; -$a->strings["Set resolution for middle column"] = "Réglez la résolution de la colonne centrale"; -$a->strings["Set color scheme"] = "Choisir le schéma de couleurs"; -$a->strings["Set zoomfactor for Earth Layer"] = "Niveau de zoom"; -$a->strings["Set longitude (X) for Earth Layers"] = "Régler la longitude (X) pour la géolocalisation"; -$a->strings["Set latitude (Y) for Earth Layers"] = "Régler la latitude (Y) pour la géolocalisation"; -$a->strings["Community Pages"] = "Pages de Communauté"; -$a->strings["Earth Layers"] = "Géolocalisation"; -$a->strings["Community Profiles"] = "Profils communautaires"; -$a->strings["Help or @NewHere ?"] = "Aide ou @NewHere?"; -$a->strings["Connect Services"] = "Connecter des services"; -$a->strings["Find Friends"] = "Trouver des amis"; -$a->strings["Last users"] = "Derniers utilisateurs"; -$a->strings["Last photos"] = "Dernières photos"; -$a->strings["Last likes"] = "Dernièrement aimé"; -$a->strings["Your contacts"] = "Vos contacts"; -$a->strings["Your personal photos"] = "Vos photos personnelles"; -$a->strings["Local Directory"] = "Annuaire local"; -$a->strings["Set zoomfactor for Earth Layers"] = "Régler le niveau de zoom pour la géolocalisation"; -$a->strings["Show/hide boxes at right-hand column:"] = "Montrer/cacher les boîtes dans la colonne de droite :"; -$a->strings["Set style"] = "Définir le style"; -$a->strings["greenzero"] = ""; -$a->strings["purplezero"] = ""; -$a->strings["easterbunny"] = ""; -$a->strings["darkzero"] = ""; -$a->strings["comix"] = ""; -$a->strings["slackr"] = ""; -$a->strings["Variations"] = ""; From 107b49518318147bc78cefd35369f9126ea1fbba Mon Sep 17 00:00:00 2001 From: Johannes Schwab Date: Tue, 7 Apr 2015 13:26:09 +0200 Subject: [PATCH 020/306] fix infinite scrolling with frost-mobile --- view/theme/frost-mobile/templates/head.tpl | 1 + 1 file changed, 1 insertion(+) diff --git a/view/theme/frost-mobile/templates/head.tpl b/view/theme/frost-mobile/templates/head.tpl index abc4fa731e..8fbd15c303 100644 --- a/view/theme/frost-mobile/templates/head.tpl +++ b/view/theme/frost-mobile/templates/head.tpl @@ -4,6 +4,7 @@ + From 4ad52a417af4fb5981dcf9e4ec9bec01778d3c21 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Wed, 8 Apr 2015 12:06:05 +0200 Subject: [PATCH 021/306] DE update to the strings --- view/de/messages.po | 11822 +++++++++++++++++++++--------------------- view/de/strings.php | 2737 +++++----- 2 files changed, 7310 insertions(+), 7249 deletions(-) diff --git a/view/de/messages.po b/view/de/messages.po index 93914899f1..648f00a12e 100644 --- a/view/de/messages.po +++ b/view/de/messages.po @@ -30,9 +30,9 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-09 08:57+0100\n" -"PO-Revision-Date: 2015-04-02 18:48+0000\n" -"Last-Translator: Frank Dieckmann \n" +"POT-Creation-Date: 2015-04-04 17:54+0200\n" +"PO-Revision-Date: 2015-04-08 10:03+0000\n" +"Last-Translator: bavatar \n" "Language-Team: German (http://www.transifex.com/projects/p/friendica/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -40,919 +40,3207 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../../mod/contacts.php:108 +#: ../../view/theme/cleanzero/config.php:80 +#: ../../view/theme/vier/config.php:56 +#: ../../view/theme/duepuntozero/config.php:59 +#: ../../view/theme/diabook/config.php:148 +#: ../../view/theme/diabook/theme.php:633 +#: ../../view/theme/quattro/config.php:64 ../../view/theme/dispy/config.php:70 +#: ../../object/Item.php:678 ../../mod/contacts.php:492 +#: ../../mod/manage.php:110 ../../mod/fsuggest.php:107 +#: ../../mod/photos.php:1084 ../../mod/photos.php:1203 +#: ../../mod/photos.php:1514 ../../mod/photos.php:1565 +#: ../../mod/photos.php:1609 ../../mod/photos.php:1697 +#: ../../mod/invite.php:140 ../../mod/events.php:478 ../../mod/mood.php:137 +#: ../../mod/message.php:335 ../../mod/message.php:564 +#: ../../mod/profiles.php:686 ../../mod/install.php:248 +#: ../../mod/install.php:286 ../../mod/crepair.php:186 +#: ../../mod/content.php:710 ../../mod/poke.php:199 ../../mod/localtime.php:45 +msgid "Submit" +msgstr "Senden" + +#: ../../view/theme/cleanzero/config.php:82 +#: ../../view/theme/vier/config.php:58 +#: ../../view/theme/duepuntozero/config.php:61 +#: ../../view/theme/diabook/config.php:150 +#: ../../view/theme/quattro/config.php:66 ../../view/theme/dispy/config.php:72 +msgid "Theme settings" +msgstr "Themeneinstellungen" + +#: ../../view/theme/cleanzero/config.php:83 +msgid "Set resize level for images in posts and comments (width and height)" +msgstr "Wähle das Vergrößerungsmaß für Bilder in Beiträgen und Kommentaren (Höhe und Breite)" + +#: ../../view/theme/cleanzero/config.php:84 +#: ../../view/theme/diabook/config.php:151 +#: ../../view/theme/dispy/config.php:73 +msgid "Set font-size for posts and comments" +msgstr "Schriftgröße für Beiträge und Kommentare festlegen" + +#: ../../view/theme/cleanzero/config.php:85 +msgid "Set theme width" +msgstr "Theme Breite festlegen" + +#: ../../view/theme/cleanzero/config.php:86 +#: ../../view/theme/quattro/config.php:68 +msgid "Color scheme" +msgstr "Farbschema" + +#: ../../view/theme/vier/config.php:59 +msgid "Set style" +msgstr "Stil auswählen" + +#: ../../view/theme/duepuntozero/config.php:44 ../../include/text.php:1719 +#: ../../include/user.php:247 +msgid "default" +msgstr "Standard" + +#: ../../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" + +#: ../../view/theme/diabook/config.php:142 +#: ../../view/theme/diabook/theme.php:621 ../../include/acl_selectors.php:335 +msgid "don't show" +msgstr "nicht zeigen" + +#: ../../view/theme/diabook/config.php:142 +#: ../../view/theme/diabook/theme.php:621 ../../include/acl_selectors.php:334 +msgid "show" +msgstr "zeigen" + +#: ../../view/theme/diabook/config.php:152 +#: ../../view/theme/dispy/config.php:74 +msgid "Set line-height for posts and comments" +msgstr "Liniengröße für Beiträge und Kommantare festlegen" + +#: ../../view/theme/diabook/config.php:153 +msgid "Set resolution for middle column" +msgstr "Auflösung für die Mittelspalte setzen" + +#: ../../view/theme/diabook/config.php:154 +msgid "Set color scheme" +msgstr "Wähle Farbschema" + +#: ../../view/theme/diabook/config.php:155 +msgid "Set zoomfactor for Earth Layer" +msgstr "Zoomfaktor der Earth Layer" + +#: ../../view/theme/diabook/config.php:156 +#: ../../view/theme/diabook/theme.php:585 +msgid "Set longitude (X) for Earth Layers" +msgstr "Longitude (X) der Earth Layer" + +#: ../../view/theme/diabook/config.php:157 +#: ../../view/theme/diabook/theme.php:586 +msgid "Set latitude (Y) for Earth Layers" +msgstr "Latitude (Y) der Earth Layer" + +#: ../../view/theme/diabook/config.php:158 +#: ../../view/theme/diabook/theme.php:130 +#: ../../view/theme/diabook/theme.php:544 +#: ../../view/theme/diabook/theme.php:624 +msgid "Community Pages" +msgstr "Foren" + +#: ../../view/theme/diabook/config.php:159 +#: ../../view/theme/diabook/theme.php:579 +#: ../../view/theme/diabook/theme.php:625 +msgid "Earth Layers" +msgstr "Earth Layers" + +#: ../../view/theme/diabook/config.php:160 +#: ../../view/theme/diabook/theme.php:391 +#: ../../view/theme/diabook/theme.php:626 +msgid "Community Profiles" +msgstr "Community-Profile" + +#: ../../view/theme/diabook/config.php:161 +#: ../../view/theme/diabook/theme.php:599 +#: ../../view/theme/diabook/theme.php:627 +msgid "Help or @NewHere ?" +msgstr "Hilfe oder @NewHere" + +#: ../../view/theme/diabook/config.php:162 +#: ../../view/theme/diabook/theme.php:606 +#: ../../view/theme/diabook/theme.php:628 +msgid "Connect Services" +msgstr "Verbinde Dienste" + +#: ../../view/theme/diabook/config.php:163 +#: ../../view/theme/diabook/theme.php:523 +#: ../../view/theme/diabook/theme.php:629 +msgid "Find Friends" +msgstr "Freunde finden" + +#: ../../view/theme/diabook/config.php:164 +#: ../../view/theme/diabook/theme.php:412 +#: ../../view/theme/diabook/theme.php:630 +msgid "Last users" +msgstr "Letzte Nutzer" + +#: ../../view/theme/diabook/config.php:165 +#: ../../view/theme/diabook/theme.php:486 +#: ../../view/theme/diabook/theme.php:631 +msgid "Last photos" +msgstr "Letzte Fotos" + +#: ../../view/theme/diabook/config.php:166 +#: ../../view/theme/diabook/theme.php:441 +#: ../../view/theme/diabook/theme.php:632 +msgid "Last likes" +msgstr "Zuletzt gemocht" + +#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:105 +#: ../../include/nav.php:148 ../../mod/notifications.php:93 +msgid "Home" +msgstr "Pinnwand" + +#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76 +#: ../../include/nav.php:148 +msgid "Your posts and conversations" +msgstr "Deine Beiträge und Unterhaltungen" + +#: ../../view/theme/diabook/theme.php:124 ../../boot.php:2133 +#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:87 +#: ../../include/nav.php:77 ../../mod/profperm.php:103 +#: ../../mod/newmember.php:32 +msgid "Profile" +msgstr "Profil" + +#: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77 +msgid "Your profile page" +msgstr "Deine Profilseite" + +#: ../../view/theme/diabook/theme.php:125 ../../include/nav.php:177 +#: ../../mod/contacts.php:718 +msgid "Contacts" +msgstr "Kontakte" + +#: ../../view/theme/diabook/theme.php:125 +msgid "Your contacts" +msgstr "Deine Kontakte" + +#: ../../view/theme/diabook/theme.php:126 ../../boot.php:2140 +#: ../../include/nav.php:78 ../../mod/fbrowser.php:25 +msgid "Photos" +msgstr "Bilder" + +#: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:78 +msgid "Your photos" +msgstr "Deine Fotos" + +#: ../../view/theme/diabook/theme.php:127 ../../boot.php:2157 +#: ../../include/nav.php:80 ../../mod/events.php:370 +msgid "Events" +msgstr "Veranstaltungen" + +#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:80 +msgid "Your events" +msgstr "Deine Ereignisse" + +#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:81 +msgid "Personal notes" +msgstr "Persönliche Notizen" + +#: ../../view/theme/diabook/theme.php:128 +msgid "Your personal photos" +msgstr "Deine privaten Fotos" + +#: ../../view/theme/diabook/theme.php:129 ../../include/nav.php:129 +#: ../../include/nav.php:131 ../../mod/community.php:32 +msgid "Community" +msgstr "Gemeinschaft" + +#: ../../view/theme/diabook/theme.php:463 ../../include/conversation.php:118 +#: ../../include/conversation.php:245 ../../include/text.php:1983 +msgid "event" +msgstr "Veranstaltung" + +#: ../../view/theme/diabook/theme.php:466 +#: ../../view/theme/diabook/theme.php:475 ../../include/diaspora.php:2011 +#: ../../include/conversation.php:121 ../../include/conversation.php:130 +#: ../../include/conversation.php:248 ../../include/conversation.php:257 +#: ../../mod/like.php:149 ../../mod/like.php:319 ../../mod/subthread.php:87 +#: ../../mod/tagger.php:62 +msgid "status" +msgstr "Status" + +#: ../../view/theme/diabook/theme.php:471 ../../include/diaspora.php:2011 +#: ../../include/conversation.php:126 ../../include/conversation.php:253 +#: ../../include/text.php:1985 ../../mod/like.php:149 +#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 +msgid "photo" +msgstr "Foto" + +#: ../../view/theme/diabook/theme.php:480 ../../include/diaspora.php:2027 +#: ../../include/conversation.php:137 ../../mod/like.php:166 #, php-format -msgid "%d contact edited." -msgid_plural "%d contacts edited" -msgstr[0] "%d Kontakt bearbeitet." -msgstr[1] "%d Kontakte bearbeitet" +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s mag %2$ss %3$s" -#: ../../mod/contacts.php:139 ../../mod/contacts.php:272 -msgid "Could not access contact record." -msgstr "Konnte nicht auf die Kontaktdaten zugreifen." +#: ../../view/theme/diabook/theme.php:499 ../../mod/photos.php:60 +#: ../../mod/photos.php:155 ../../mod/photos.php:1064 +#: ../../mod/photos.php:1187 ../../mod/photos.php:1210 +#: ../../mod/photos.php:1760 ../../mod/photos.php:1772 +msgid "Contact Photos" +msgstr "Kontaktbilder" -#: ../../mod/contacts.php:153 -msgid "Could not locate selected profile." -msgstr "Konnte das ausgewählte Profil nicht finden." +#: ../../view/theme/diabook/theme.php:500 ../../include/user.php:335 +#: ../../include/user.php:342 ../../include/user.php:349 +#: ../../mod/photos.php:155 ../../mod/photos.php:731 ../../mod/photos.php:1187 +#: ../../mod/photos.php:1210 ../../mod/profile_photo.php:74 +#: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88 +#: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296 +#: ../../mod/profile_photo.php:305 +msgid "Profile Photos" +msgstr "Profilbilder" -#: ../../mod/contacts.php:186 -msgid "Contact updated." -msgstr "Kontakt aktualisiert." +#: ../../view/theme/diabook/theme.php:524 +msgid "Local Directory" +msgstr "Lokales Verzeichnis" -#: ../../mod/contacts.php:188 ../../mod/dfrn_request.php:576 -msgid "Failed to update contact record." -msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen." +#: ../../view/theme/diabook/theme.php:525 ../../mod/directory.php:51 +msgid "Global Directory" +msgstr "Weltweites Verzeichnis" -#: ../../mod/contacts.php:254 ../../mod/manage.php:96 -#: ../../mod/display.php:499 ../../mod/profile_photo.php:19 -#: ../../mod/profile_photo.php:169 ../../mod/profile_photo.php:180 -#: ../../mod/profile_photo.php:193 ../../mod/follow.php:9 -#: ../../mod/item.php:168 ../../mod/item.php:184 ../../mod/group.php:19 -#: ../../mod/dfrn_confirm.php:55 ../../mod/fsuggest.php:78 -#: ../../mod/wall_upload.php:66 ../../mod/viewcontacts.php:24 -#: ../../mod/notifications.php:66 ../../mod/message.php:38 -#: ../../mod/message.php:174 ../../mod/crepair.php:119 -#: ../../mod/nogroup.php:25 ../../mod/network.php:4 ../../mod/allfriends.php:9 -#: ../../mod/events.php:140 ../../mod/install.php:151 +#: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:36 +msgid "Similar Interests" +msgstr "Ähnliche Interessen" + +#: ../../view/theme/diabook/theme.php:527 ../../include/contact_widgets.php:35 +#: ../../mod/suggest.php:68 +msgid "Friend Suggestions" +msgstr "Kontaktvorschläge" + +#: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:38 +msgid "Invite Friends" +msgstr "Freunde einladen" + +#: ../../view/theme/diabook/theme.php:544 +#: ../../view/theme/diabook/theme.php:648 ../../include/nav.php:172 +#: ../../mod/settings.php:90 ../../mod/admin.php:1104 ../../mod/admin.php:1325 +#: ../../mod/newmember.php:22 +msgid "Settings" +msgstr "Einstellungen" + +#: ../../view/theme/diabook/theme.php:584 +msgid "Set zoomfactor for Earth Layers" +msgstr "Zoomfaktor der Earth Layer" + +#: ../../view/theme/diabook/theme.php:622 +msgid "Show/hide boxes at right-hand column:" +msgstr "Rahmen auf der rechten Seite anzeigen/verbergen" + +#: ../../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: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/dispy/config.php:75 +msgid "Set colour scheme" +msgstr "Farbschema wählen" + +#: ../../index.php:211 ../../mod/apps.php:7 +msgid "You must be logged in to use addons. " +msgstr "Sie müssen angemeldet sein um Addons benutzen zu können." + +#: ../../index.php:255 ../../mod/help.php:42 +msgid "Not Found" +msgstr "Nicht gefunden" + +#: ../../index.php:258 ../../mod/help.php:45 +msgid "Page not found." +msgstr "Seite nicht gefunden." + +#: ../../index.php:367 ../../mod/group.php:72 ../../mod/profperm.php:19 +msgid "Permission denied" +msgstr "Zugriff verweigert" + +#: ../../index.php:368 ../../include/items.php:4815 ../../mod/attach.php:33 #: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33 #: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103 -#: ../../mod/wall_attach.php:55 ../../mod/settings.php:102 -#: ../../mod/settings.php:596 ../../mod/settings.php:601 -#: ../../mod/register.php:42 ../../mod/delegate.php:12 ../../mod/mood.php:114 -#: ../../mod/suggest.php:58 ../../mod/profiles.php:165 -#: ../../mod/profiles.php:618 ../../mod/editpost.php:10 ../../mod/api.php:26 -#: ../../mod/api.php:31 ../../mod/notes.php:20 ../../mod/poke.php:135 -#: ../../mod/invite.php:15 ../../mod/invite.php:101 ../../mod/photos.php:134 -#: ../../mod/photos.php:1050 ../../mod/regmod.php:110 ../../mod/uimport.php:23 -#: ../../mod/attach.php:33 ../../include/items.php:4712 ../../index.php:369 +#: ../../mod/group.php:19 ../../mod/delegate.php:12 +#: ../../mod/notifications.php:66 ../../mod/settings.php:20 +#: ../../mod/settings.php:107 ../../mod/settings.php:606 +#: ../../mod/contacts.php:258 ../../mod/wall_attach.php:55 +#: ../../mod/register.php:42 ../../mod/manage.php:96 ../../mod/editpost.php:10 +#: ../../mod/regmod.php:110 ../../mod/api.php:26 ../../mod/api.php:31 +#: ../../mod/suggest.php:58 ../../mod/nogroup.php:25 ../../mod/fsuggest.php:78 +#: ../../mod/viewcontacts.php:24 ../../mod/wall_upload.php:66 +#: ../../mod/notes.php:20 ../../mod/network.php:4 ../../mod/photos.php:134 +#: ../../mod/photos.php:1050 ../../mod/follow.php:9 ../../mod/uimport.php:23 +#: ../../mod/invite.php:15 ../../mod/invite.php:101 ../../mod/events.php:140 +#: ../../mod/mood.php:114 ../../mod/message.php:38 ../../mod/message.php:174 +#: ../../mod/profiles.php:165 ../../mod/profiles.php:618 +#: ../../mod/install.php:151 ../../mod/crepair.php:119 ../../mod/poke.php:135 +#: ../../mod/display.php:499 ../../mod/dfrn_confirm.php:55 +#: ../../mod/item.php:169 ../../mod/item.php:185 +#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169 +#: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193 +#: ../../mod/allfriends.php:9 msgid "Permission denied." msgstr "Zugriff verweigert." -#: ../../mod/contacts.php:287 -msgid "Contact has been blocked" -msgstr "Kontakt wurde blockiert" +#: ../../index.php:427 +msgid "toggle mobile" +msgstr "auf/von Mobile Ansicht wechseln" -#: ../../mod/contacts.php:287 -msgid "Contact has been unblocked" -msgstr "Kontakt wurde wieder freigegeben" +#: ../../addon-wrk/openidserver/lib/render/trust.php:30 +#, php-format +msgid "Do you wish to confirm your identity (%s) with %s" +msgstr "Möchtest du deine Identität (%s mit %s bestätigen" -#: ../../mod/contacts.php:298 -msgid "Contact has been ignored" -msgstr "Kontakt wurde ignoriert" +#: ../../addon-wrk/openidserver/lib/render/trust.php:43 +#: ../../mod/dfrn_request.php:676 +msgid "Confirm" +msgstr "Bestätigen" -#: ../../mod/contacts.php:298 -msgid "Contact has been unignored" -msgstr "Kontakt wird nicht mehr ignoriert" +#: ../../addon-wrk/openidserver/lib/render/trust.php:44 +msgid "Do not confirm" +msgstr "Nicht bestätigen" -#: ../../mod/contacts.php:310 -msgid "Contact has been archived" -msgstr "Kontakt wurde archiviert" +#: ../../addon-wrk/openidserver/lib/render/trust.php:48 +msgid "Trust This Site" +msgstr "Dieser Seite vertrauen" -#: ../../mod/contacts.php:310 -msgid "Contact has been unarchived" -msgstr "Kontakt wurde aus dem Archiv geholt" +#: ../../addon-wrk/openidserver/lib/render/trust.php:53 +msgid "No Identifier Sent" +msgstr "Keine Identifikation gesendet" -#: ../../mod/contacts.php:335 ../../mod/contacts.php:711 -msgid "Do you really want to delete this contact?" -msgstr "Möchtest Du wirklich diesen Kontakt löschen?" +#: ../../addon-wrk/openidserver/lib/render/wronguser.php:5 +msgid "Requested identity don't match logged in user." +msgstr "Die angeforderte Identität stimmt nicht mit dem angemeldeten Nutzer überein." -#: ../../mod/contacts.php:337 ../../mod/message.php:209 -#: ../../mod/settings.php:1010 ../../mod/settings.php:1016 -#: ../../mod/settings.php:1024 ../../mod/settings.php:1028 -#: ../../mod/settings.php:1033 ../../mod/settings.php:1039 -#: ../../mod/settings.php:1045 ../../mod/settings.php:1051 -#: ../../mod/settings.php:1081 ../../mod/settings.php:1082 -#: ../../mod/settings.php:1083 ../../mod/settings.php:1084 -#: ../../mod/settings.php:1085 ../../mod/dfrn_request.php:830 -#: ../../mod/register.php:233 ../../mod/suggest.php:29 -#: ../../mod/profiles.php:661 ../../mod/profiles.php:664 ../../mod/api.php:105 -#: ../../include/items.php:4557 +#: ../../addon-wrk/openidserver/lib/render.php:27 +#, php-format +msgid "Please wait; you are being redirected to <%s>" +msgstr "Bitte warten, Du wirst nach <%s> umgeleitet." + +#: ../../boot.php:749 +msgid "Delete this item?" +msgstr "Diesen Beitrag löschen?" + +#: ../../boot.php:750 ../../object/Item.php:361 ../../object/Item.php:677 +#: ../../mod/photos.php:1564 ../../mod/photos.php:1608 +#: ../../mod/photos.php:1696 ../../mod/content.php:709 +msgid "Comment" +msgstr "Kommentar" + +#: ../../boot.php:751 ../../include/contact_widgets.php:205 +#: ../../object/Item.php:390 ../../mod/content.php:606 +msgid "show more" +msgstr "mehr anzeigen" + +#: ../../boot.php:752 +msgid "show fewer" +msgstr "weniger anzeigen" + +#: ../../boot.php:1122 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen." + +#: ../../boot.php:1229 +msgid "Create a New Account" +msgstr "Neues Konto erstellen" + +#: ../../boot.php:1230 ../../include/nav.php:109 ../../mod/register.php:269 +msgid "Register" +msgstr "Registrieren" + +#: ../../boot.php:1254 ../../include/nav.php:73 +msgid "Logout" +msgstr "Abmelden" + +#: ../../boot.php:1255 ../../include/nav.php:92 ../../mod/bookmarklet.php:12 +msgid "Login" +msgstr "Anmeldung" + +#: ../../boot.php:1257 +msgid "Nickname or Email address: " +msgstr "Spitzname oder E-Mail-Adresse: " + +#: ../../boot.php:1258 +msgid "Password: " +msgstr "Passwort: " + +#: ../../boot.php:1259 +msgid "Remember me" +msgstr "Anmeldedaten merken" + +#: ../../boot.php:1262 +msgid "Or login using OpenID: " +msgstr "Oder melde Dich mit Deiner OpenID an: " + +#: ../../boot.php:1268 +msgid "Forgot your password?" +msgstr "Passwort vergessen?" + +#: ../../boot.php:1269 ../../mod/lostpass.php:109 +msgid "Password Reset" +msgstr "Passwort zurücksetzen" + +#: ../../boot.php:1271 +msgid "Website Terms of Service" +msgstr "Website Nutzungsbedingungen" + +#: ../../boot.php:1272 +msgid "terms of service" +msgstr "Nutzungsbedingungen" + +#: ../../boot.php:1274 +msgid "Website Privacy Policy" +msgstr "Website Datenschutzerklärung" + +#: ../../boot.php:1275 +msgid "privacy policy" +msgstr "Datenschutzerklärung" + +#: ../../boot.php:1408 +msgid "Requested account is not available." +msgstr "Das angefragte Profil ist nicht vorhanden." + +#: ../../boot.php:1447 ../../mod/profile.php:21 +msgid "Requested profile is not available." +msgstr "Das angefragte Profil ist nicht vorhanden." + +#: ../../boot.php:1490 ../../boot.php:1624 +#: ../../include/profile_advanced.php:84 +msgid "Edit profile" +msgstr "Profil bearbeiten" + +#: ../../boot.php:1557 ../../include/contact_widgets.php:10 +#: ../../mod/suggest.php:90 ../../mod/match.php:58 +msgid "Connect" +msgstr "Verbinden" + +#: ../../boot.php:1589 +msgid "Message" +msgstr "Nachricht" + +#: ../../boot.php:1595 ../../include/nav.php:175 +msgid "Profiles" +msgstr "Profile" + +#: ../../boot.php:1595 +msgid "Manage/edit profiles" +msgstr "Profile verwalten/editieren" + +#: ../../boot.php:1600 ../../boot.php:1626 ../../mod/profiles.php:804 +msgid "Change profile photo" +msgstr "Profilbild ändern" + +#: ../../boot.php:1601 ../../mod/profiles.php:805 +msgid "Create New Profile" +msgstr "Neues Profil anlegen" + +#: ../../boot.php:1611 ../../mod/profiles.php:816 +msgid "Profile Image" +msgstr "Profilbild" + +#: ../../boot.php:1614 ../../mod/profiles.php:818 +msgid "visible to everybody" +msgstr "sichtbar für jeden" + +#: ../../boot.php:1615 ../../mod/profiles.php:819 +msgid "Edit visibility" +msgstr "Sichtbarkeit bearbeiten" + +#: ../../boot.php:1637 ../../include/event.php:40 +#: ../../include/bb2diaspora.php:155 ../../mod/events.php:471 +#: ../../mod/directory.php:136 +msgid "Location:" +msgstr "Ort:" + +#: ../../boot.php:1639 ../../include/profile_advanced.php:17 +#: ../../mod/directory.php:138 +msgid "Gender:" +msgstr "Geschlecht:" + +#: ../../boot.php:1642 ../../include/profile_advanced.php:37 +#: ../../mod/directory.php:140 +msgid "Status:" +msgstr "Status:" + +#: ../../boot.php:1644 ../../include/profile_advanced.php:48 +#: ../../mod/directory.php:142 +msgid "Homepage:" +msgstr "Homepage:" + +#: ../../boot.php:1646 ../../include/profile_advanced.php:58 +#: ../../mod/directory.php:144 +msgid "About:" +msgstr "Über:" + +#: ../../boot.php:1711 +msgid "Network:" +msgstr "Netzwerk" + +#: ../../boot.php:1743 ../../boot.php:1829 +msgid "g A l F d" +msgstr "l, d. F G \\U\\h\\r" + +#: ../../boot.php:1744 ../../boot.php:1830 +msgid "F d" +msgstr "d. F" + +#: ../../boot.php:1789 ../../boot.php:1877 +msgid "[today]" +msgstr "[heute]" + +#: ../../boot.php:1801 +msgid "Birthday Reminders" +msgstr "Geburtstagserinnerungen" + +#: ../../boot.php:1802 +msgid "Birthdays this week:" +msgstr "Geburtstage diese Woche:" + +#: ../../boot.php:1864 +msgid "[No description]" +msgstr "[keine Beschreibung]" + +#: ../../boot.php:1888 +msgid "Event Reminders" +msgstr "Veranstaltungserinnerungen" + +#: ../../boot.php:1889 +msgid "Events this week:" +msgstr "Veranstaltungen diese Woche" + +#: ../../boot.php:2126 ../../include/nav.php:76 +msgid "Status" +msgstr "Status" + +#: ../../boot.php:2129 +msgid "Status Messages and Posts" +msgstr "Statusnachrichten und Beiträge" + +#: ../../boot.php:2136 +msgid "Profile Details" +msgstr "Profildetails" + +#: ../../boot.php:2143 ../../mod/photos.php:52 +msgid "Photo Albums" +msgstr "Fotoalben" + +#: ../../boot.php:2147 ../../boot.php:2150 ../../include/nav.php:79 +msgid "Videos" +msgstr "Videos" + +#: ../../boot.php:2160 +msgid "Events and Calendar" +msgstr "Ereignisse und Kalender" + +#: ../../boot.php:2164 ../../mod/notes.php:44 +msgid "Personal Notes" +msgstr "Persönliche Notizen" + +#: ../../boot.php:2167 +msgid "Only You Can See This" +msgstr "Nur Du kannst das sehen" + +#: ../../include/features.php:23 +msgid "General Features" +msgstr "Allgemeine Features" + +#: ../../include/features.php:25 +msgid "Multiple Profiles" +msgstr "Mehrere Profile" + +#: ../../include/features.php:25 +msgid "Ability to create multiple profiles" +msgstr "Möglichkeit mehrere Profile zu erstellen" + +#: ../../include/features.php:30 +msgid "Post Composition Features" +msgstr "Beitragserstellung Features" + +#: ../../include/features.php:31 +msgid "Richtext Editor" +msgstr "Web-Editor" + +#: ../../include/features.php:31 +msgid "Enable richtext editor" +msgstr "Den Web-Editor für neue Beiträge aktivieren" + +#: ../../include/features.php:32 +msgid "Post Preview" +msgstr "Beitragsvorschau" + +#: ../../include/features.php:32 +msgid "Allow previewing posts and comments before publishing them" +msgstr "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben." + +#: ../../include/features.php:33 +msgid "Auto-mention Forums" +msgstr "Foren automatisch erwähnen" + +#: ../../include/features.php:33 +msgid "" +"Add/remove mention when a fourm 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:38 +msgid "Network Sidebar Widgets" +msgstr "Widgets für Netzwerk und Seitenleiste" + +#: ../../include/features.php:39 +msgid "Search by Date" +msgstr "Archiv" + +#: ../../include/features.php:39 +msgid "Ability to select posts by date ranges" +msgstr "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren" + +#: ../../include/features.php:40 +msgid "Group Filter" +msgstr "Gruppen Filter" + +#: ../../include/features.php:40 +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:41 +msgid "Network Filter" +msgstr "Netzwerk Filter" + +#: ../../include/features.php:41 +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:42 ../../mod/network.php:194 +#: ../../mod/search.php:30 +msgid "Saved Searches" +msgstr "Gespeicherte Suchen" + +#: ../../include/features.php:42 +msgid "Save search terms for re-use" +msgstr "Speichere Suchanfragen für spätere Wiederholung." + +#: ../../include/features.php:47 +msgid "Network Tabs" +msgstr "Netzwerk Reiter" + +#: ../../include/features.php:48 +msgid "Network Personal Tab" +msgstr "Netzwerk-Reiter: Persönlich" + +#: ../../include/features.php:48 +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:49 +msgid "Network New Tab" +msgstr "Netzwerk-Reiter: Neue" + +#: ../../include/features.php:49 +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:50 +msgid "Network Shared Links Tab" +msgstr "Netzwerk-Reiter: Geteilte Links" + +#: ../../include/features.php:50 +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:55 +msgid "Post/Comment Tools" +msgstr "Werkzeuge für Beiträge und Kommentare" + +#: ../../include/features.php:56 +msgid "Multiple Deletion" +msgstr "Mehrere Beiträge löschen" + +#: ../../include/features.php:56 +msgid "Select and delete multiple posts/comments at once" +msgstr "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen" + +#: ../../include/features.php:57 +msgid "Edit Sent Posts" +msgstr "Gesendete Beiträge editieren" + +#: ../../include/features.php:57 +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:58 +msgid "Tagging" +msgstr "Tagging" + +#: ../../include/features.php:58 +msgid "Ability to tag existing posts" +msgstr "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen." + +#: ../../include/features.php:59 +msgid "Post Categories" +msgstr "Beitragskategorien" + +#: ../../include/features.php:59 +msgid "Add categories to your posts" +msgstr "Eigene Beiträge mit Kategorien versehen" + +#: ../../include/features.php:60 ../../include/contact_widgets.php:104 +msgid "Saved Folders" +msgstr "Gespeicherte Ordner" + +#: ../../include/features.php:60 +msgid "Ability to file posts under folders" +msgstr "Beiträge in Ordnern speichern aktivieren" + +#: ../../include/features.php:61 +msgid "Dislike Posts" +msgstr "Beiträge 'nicht mögen'" + +#: ../../include/features.php:61 +msgid "Ability to dislike posts/comments" +msgstr "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'" + +#: ../../include/features.php:62 +msgid "Star Posts" +msgstr "Beiträge Markieren" + +#: ../../include/features.php:62 +msgid "Ability to mark special posts with a star indicator" +msgstr "Erlaubt es Beiträge mit einem Stern-Indikator zu markieren" + +#: ../../include/features.php:63 +msgid "Mute Post Notifications" +msgstr "Benachrichtigungen für Beiträge Stumm schalten" + +#: ../../include/features.php:63 +msgid "Ability to mute notifications for a thread" +msgstr "Möglichkeit Benachrichtigungen für einen Thread abbestellen zu können" + +#: ../../include/items.php:2307 ../../include/datetime.php:477 +#, php-format +msgid "%s's birthday" +msgstr "%ss Geburtstag" + +#: ../../include/items.php:2308 ../../include/datetime.php:478 +#, php-format +msgid "Happy Birthday %s" +msgstr "Herzlichen Glückwunsch %s" + +#: ../../include/items.php:4111 ../../mod/dfrn_request.php:717 +#: ../../mod/dfrn_confirm.php:752 +msgid "[Name Withheld]" +msgstr "[Name unterdrückt]" + +#: ../../include/items.php:4619 ../../mod/admin.php:169 +#: ../../mod/admin.php:1052 ../../mod/admin.php:1265 ../../mod/viewsrc.php:15 +#: ../../mod/notice.php:15 ../../mod/display.php:82 ../../mod/display.php:284 +#: ../../mod/display.php:503 +msgid "Item not found." +msgstr "Beitrag nicht gefunden." + +#: ../../include/items.php:4658 +msgid "Do you really want to delete this item?" +msgstr "Möchtest Du wirklich dieses Item löschen?" + +#: ../../include/items.php:4660 ../../mod/settings.php:1015 +#: ../../mod/settings.php:1021 ../../mod/settings.php:1029 +#: ../../mod/settings.php:1033 ../../mod/settings.php:1038 +#: ../../mod/settings.php:1044 ../../mod/settings.php:1050 +#: ../../mod/settings.php:1056 ../../mod/settings.php:1086 +#: ../../mod/settings.php:1087 ../../mod/settings.php:1088 +#: ../../mod/settings.php:1089 ../../mod/settings.php:1090 +#: ../../mod/contacts.php:341 ../../mod/register.php:233 +#: ../../mod/dfrn_request.php:830 ../../mod/api.php:105 +#: ../../mod/suggest.php:29 ../../mod/message.php:209 +#: ../../mod/profiles.php:661 ../../mod/profiles.php:664 msgid "Yes" msgstr "Ja" -#: ../../mod/contacts.php:340 ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 -#: ../../mod/message.php:212 ../../mod/fbrowser.php:81 -#: ../../mod/fbrowser.php:116 ../../mod/settings.php:615 -#: ../../mod/settings.php:641 ../../mod/dfrn_request.php:844 -#: ../../mod/suggest.php:32 ../../mod/editpost.php:148 -#: ../../mod/photos.php:203 ../../mod/photos.php:292 -#: ../../include/conversation.php:1129 ../../include/items.php:4560 +#: ../../include/items.php:4663 ../../include/conversation.php:1128 +#: ../../mod/settings.php:620 ../../mod/settings.php:646 +#: ../../mod/contacts.php:344 ../../mod/editpost.php:148 +#: ../../mod/dfrn_request.php:844 ../../mod/fbrowser.php:81 +#: ../../mod/fbrowser.php:116 ../../mod/suggest.php:32 +#: ../../mod/photos.php:203 ../../mod/photos.php:292 ../../mod/tagrm.php:11 +#: ../../mod/tagrm.php:94 ../../mod/message.php:212 msgid "Cancel" msgstr "Abbrechen" -#: ../../mod/contacts.php:352 -msgid "Contact has been removed." -msgstr "Kontakt wurde entfernt." +#: ../../include/items.php:4881 +msgid "Archives" +msgstr "Archiv" -#: ../../mod/contacts.php:390 +#: ../../include/group.php:25 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may 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 könnten 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/group.php:207 +msgid "Default privacy group for new contacts" +msgstr "Voreingestellte Gruppe für neue Kontakte" + +#: ../../include/group.php:226 +msgid "Everybody" +msgstr "Alle Kontakte" + +#: ../../include/group.php:249 +msgid "edit" +msgstr "bearbeiten" + +#: ../../include/group.php:270 ../../mod/newmember.php:66 +msgid "Groups" +msgstr "Gruppen" + +#: ../../include/group.php:271 +msgid "Edit group" +msgstr "Gruppe bearbeiten" + +#: ../../include/group.php:272 +msgid "Create a new group" +msgstr "Neue Gruppe erstellen" + +#: ../../include/group.php:273 +msgid "Contacts not in any group" +msgstr "Kontakte in keiner Gruppe" + +#: ../../include/group.php:275 ../../mod/network.php:195 +msgid "add" +msgstr "hinzufügen" + +#: ../../include/Photo_old.php:911 ../../include/Photo_old.php:926 +#: ../../include/Photo_old.php:933 ../../include/Photo_old.php:955 +#: ../../include/Photo.php:933 ../../include/Photo.php:948 +#: ../../include/Photo.php:955 ../../include/Photo.php:977 +#: ../../include/message.php:144 ../../mod/wall_upload.php:169 +#: ../../mod/wall_upload.php:178 ../../mod/wall_upload.php:185 +#: ../../mod/item.php:485 +msgid "Wall Photos" +msgstr "Pinnwand-Bilder" + +#: ../../include/dba.php:56 ../../include/dba_pdo.php:72 #, php-format -msgid "You are mutual friends with %s" -msgstr "Du hast mit %s eine beidseitige Freundschaft" +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln." -#: ../../mod/contacts.php:394 +#: ../../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:24 #, php-format -msgid "You are sharing with %s" -msgstr "Du teilst mit %s" +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d Einladung verfügbar" +msgstr[1] "%d Einladungen verfügbar" -#: ../../mod/contacts.php:399 -#, php-format -msgid "%s is sharing with you" -msgstr "%s teilt mit Dir" +#: ../../include/contact_widgets.php:30 +msgid "Find People" +msgstr "Leute finden" -#: ../../mod/contacts.php:416 -msgid "Private communications are not available for this contact." -msgstr "Private Kommunikation ist für diesen Kontakt nicht verfügbar." +#: ../../include/contact_widgets.php:31 +msgid "Enter name or interest" +msgstr "Name oder Interessen eingeben" -#: ../../mod/contacts.php:419 ../../mod/admin.php:569 -msgid "Never" -msgstr "Niemals" +#: ../../include/contact_widgets.php:32 +msgid "Connect/Follow" +msgstr "Verbinden/Folgen" -#: ../../mod/contacts.php:423 -msgid "(Update was successful)" -msgstr "(Aktualisierung war erfolgreich)" +#: ../../include/contact_widgets.php:33 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Beispiel: Robert Morgenstein, Angeln" -#: ../../mod/contacts.php:423 -msgid "(Update was not successful)" -msgstr "(Aktualisierung war nicht erfolgreich)" +#: ../../include/contact_widgets.php:34 ../../mod/contacts.php:724 +#: ../../mod/directory.php:63 +msgid "Find" +msgstr "Finde" -#: ../../mod/contacts.php:425 -msgid "Suggest friends" -msgstr "Kontakte vorschlagen" +#: ../../include/contact_widgets.php:37 +msgid "Random Profile" +msgstr "Zufälliges Profil" -#: ../../mod/contacts.php:429 -#, php-format -msgid "Network type: %s" -msgstr "Netzwerktyp: %s" +#: ../../include/contact_widgets.php:71 +msgid "Networks" +msgstr "Netzwerke" -#: ../../mod/contacts.php:432 ../../include/contact_widgets.php:200 +#: ../../include/contact_widgets.php:74 +msgid "All Networks" +msgstr "Alle Netzwerke" + +#: ../../include/contact_widgets.php:107 ../../include/contact_widgets.php:139 +msgid "Everything" +msgstr "Alles" + +#: ../../include/contact_widgets.php:136 +msgid "Categories" +msgstr "Kategorien" + +#: ../../include/contact_widgets.php:200 ../../mod/contacts.php:439 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" msgstr[0] "%d gemeinsamer Kontakt" msgstr[1] "%d gemeinsame Kontakte" -#: ../../mod/contacts.php:437 -msgid "View all contacts" -msgstr "Alle Kontakte anzeigen" +#: ../../include/enotify.php:18 +msgid "Friendica Notification" +msgstr "Friendica-Benachrichtigung" -#: ../../mod/contacts.php:442 ../../mod/contacts.php:501 -#: ../../mod/contacts.php:714 ../../mod/admin.php:1009 -msgid "Unblock" -msgstr "Entsperren" +#: ../../include/enotify.php:21 +msgid "Thank You," +msgstr "Danke," -#: ../../mod/contacts.php:442 ../../mod/contacts.php:501 -#: ../../mod/contacts.php:714 ../../mod/admin.php:1008 -msgid "Block" -msgstr "Sperren" +#: ../../include/enotify.php:23 +#, php-format +msgid "%s Administrator" +msgstr "der Administrator von %s" -#: ../../mod/contacts.php:445 -msgid "Toggle Blocked status" -msgstr "Geblockt-Status ein-/ausschalten" +#: ../../include/enotify.php:33 ../../include/delivery.php:467 +#: ../../include/notifier.php:796 +msgid "noreply" +msgstr "noreply" -#: ../../mod/contacts.php:448 ../../mod/contacts.php:502 -#: ../../mod/contacts.php:715 -msgid "Unignore" -msgstr "Ignorieren aufheben" +#: ../../include/enotify.php:64 +#, php-format +msgid "%s " +msgstr "%s " -#: ../../mod/contacts.php:448 ../../mod/contacts.php:502 -#: ../../mod/contacts.php:715 ../../mod/notifications.php:51 -#: ../../mod/notifications.php:164 ../../mod/notifications.php:210 -msgid "Ignore" -msgstr "Ignorieren" +#: ../../include/enotify.php:68 +#, php-format +msgid "[Friendica:Notify] New mail received at %s" +msgstr "[Friendica-Meldung] Neue Nachricht erhalten von %s" -#: ../../mod/contacts.php:451 -msgid "Toggle Ignored status" -msgstr "Ignoriert-Status ein-/ausschalten" +#: ../../include/enotify.php:70 +#, php-format +msgid "%1$s sent you a new private message at %2$s." +msgstr "%1$s hat Dir eine neue private Nachricht auf %2$s geschickt." -#: ../../mod/contacts.php:455 ../../mod/contacts.php:716 -msgid "Unarchive" -msgstr "Aus Archiv zurückholen" +#: ../../include/enotify.php:71 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s schickte Dir %2$s." -#: ../../mod/contacts.php:455 ../../mod/contacts.php:716 -msgid "Archive" -msgstr "Archivieren" +#: ../../include/enotify.php:71 +msgid "a private message" +msgstr "eine private Nachricht" -#: ../../mod/contacts.php:458 -msgid "Toggle Archive status" -msgstr "Archiviert-Status ein-/ausschalten" +#: ../../include/enotify.php:72 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Bitte besuche %s, um Deine privaten Nachrichten anzusehen und/oder zu beantworten." -#: ../../mod/contacts.php:461 -msgid "Repair" -msgstr "Reparieren" +#: ../../include/enotify.php:124 +#, php-format +msgid "%1$s commented on [url=%2$s]a %3$s[/url]" +msgstr "%1$s kommentierte [url=%2$s]a %3$s[/url]" -#: ../../mod/contacts.php:464 -msgid "Advanced Contact Settings" -msgstr "Fortgeschrittene Kontakteinstellungen" +#: ../../include/enotify.php:131 +#, php-format +msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" +msgstr "%1$s kommentierte [url=%2$s]%3$ss %4$s[/url]" -#: ../../mod/contacts.php:470 -msgid "Communications lost with this contact!" -msgstr "Verbindungen mit diesem Kontakt verloren!" +#: ../../include/enotify.php:139 +#, php-format +msgid "%1$s commented on [url=%2$s]your %3$s[/url]" +msgstr "%1$s kommentierte [url=%2$s]Deinen %3$s[/url]" -#: ../../mod/contacts.php:473 -msgid "Contact Editor" -msgstr "Kontakt Editor" +#: ../../include/enotify.php:149 +#, php-format +msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" +msgstr "[Friendica-Meldung] Kommentar zum Beitrag #%1$d von %2$s" -#: ../../mod/contacts.php:475 ../../mod/manage.php:110 -#: ../../mod/fsuggest.php:107 ../../mod/message.php:335 -#: ../../mod/message.php:564 ../../mod/crepair.php:186 -#: ../../mod/events.php:478 ../../mod/content.php:710 -#: ../../mod/install.php:248 ../../mod/install.php:286 ../../mod/mood.php:137 -#: ../../mod/profiles.php:686 ../../mod/localtime.php:45 -#: ../../mod/poke.php:199 ../../mod/invite.php:140 ../../mod/photos.php:1084 -#: ../../mod/photos.php:1203 ../../mod/photos.php:1514 -#: ../../mod/photos.php:1565 ../../mod/photos.php:1609 -#: ../../mod/photos.php:1697 ../../object/Item.php:678 -#: ../../view/theme/cleanzero/config.php:80 -#: ../../view/theme/dispy/config.php:70 ../../view/theme/quattro/config.php:64 -#: ../../view/theme/diabook/config.php:148 -#: ../../view/theme/diabook/theme.php:633 ../../view/theme/vier/config.php:53 -#: ../../view/theme/duepuntozero/config.php:59 -msgid "Submit" -msgstr "Senden" +#: ../../include/enotify.php:150 +#, php-format +msgid "%s commented on an item/conversation you have been following." +msgstr "%s hat einen Beitrag kommentiert, dem Du folgst." -#: ../../mod/contacts.php:476 -msgid "Profile Visibility" -msgstr "Profil-Sichtbarkeit" +#: ../../include/enotify.php:153 ../../include/enotify.php:168 +#: ../../include/enotify.php:181 ../../include/enotify.php:194 +#: ../../include/enotify.php:212 ../../include/enotify.php:225 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren." -#: ../../mod/contacts.php:477 +#: ../../include/enotify.php:160 +#, php-format +msgid "[Friendica:Notify] %s posted to your profile wall" +msgstr "[Friendica-Meldung] %s hat auf Deine Pinnwand geschrieben" + +#: ../../include/enotify.php:162 +#, php-format +msgid "%1$s posted to your profile wall at %2$s" +msgstr "%1$s schrieb auf %2$s auf Deine Pinnwand" + +#: ../../include/enotify.php:164 +#, php-format +msgid "%1$s posted to [url=%2$s]your wall[/url]" +msgstr "%1$s hat etwas auf [url=%2$s]Deiner Pinnwand[/url] gepostet" + +#: ../../include/enotify.php:175 +#, php-format +msgid "[Friendica:Notify] %s tagged you" +msgstr "[Friendica-Meldung] %s hat Dich erwähnt" + +#: ../../include/enotify.php:176 +#, php-format +msgid "%1$s tagged you at %2$s" +msgstr "%1$s erwähnte Dich auf %2$s" + +#: ../../include/enotify.php:177 +#, php-format +msgid "%1$s [url=%2$s]tagged you[/url]." +msgstr "%1$s [url=%2$s]erwähnte Dich[/url]." + +#: ../../include/enotify.php:188 +#, php-format +msgid "[Friendica:Notify] %s shared a new post" +msgstr "[Friendica Benachrichtigung] %s hat einen Beitrag geteilt" + +#: ../../include/enotify.php:189 +#, php-format +msgid "%1$s shared a new post at %2$s" +msgstr "%1$s hat einen neuen Beitrag auf %2$s geteilt" + +#: ../../include/enotify.php:190 +#, php-format +msgid "%1$s [url=%2$s]shared a post[/url]." +msgstr "%1$s [url=%2$s]hat einen Beitrag geteilt[/url]." + +#: ../../include/enotify.php:202 +#, php-format +msgid "[Friendica:Notify] %1$s poked you" +msgstr "[Friendica-Meldung] %1$s hat Dich angestupst" + +#: ../../include/enotify.php:203 +#, php-format +msgid "%1$s poked you at %2$s" +msgstr "%1$s hat Dich auf %2$s angestupst" + +#: ../../include/enotify.php:204 +#, php-format +msgid "%1$s [url=%2$s]poked you[/url]." +msgstr "%1$s [url=%2$s]hat Dich angestupst[/url]." + +#: ../../include/enotify.php:219 +#, php-format +msgid "[Friendica:Notify] %s tagged your post" +msgstr "[Friendica-Meldung] %s hat Deinen Beitrag getaggt" + +#: ../../include/enotify.php:220 +#, php-format +msgid "%1$s tagged your post at %2$s" +msgstr "%1$s erwähnte Deinen Beitrag auf %2$s" + +#: ../../include/enotify.php:221 +#, php-format +msgid "%1$s tagged [url=%2$s]your post[/url]" +msgstr "%1$s erwähnte [url=%2$s]Deinen Beitrag[/url]" + +#: ../../include/enotify.php:232 +msgid "[Friendica:Notify] Introduction received" +msgstr "[Friendica-Meldung] Kontaktanfrage erhalten" + +#: ../../include/enotify.php:233 +#, php-format +msgid "You've received an introduction from '%1$s' at %2$s" +msgstr "Du hast eine Kontaktanfrage von '%1$s' auf %2$s erhalten" + +#: ../../include/enotify.php:234 +#, php-format +msgid "You've received [url=%1$s]an introduction[/url] from %2$s." +msgstr "Du hast eine [url=%1$s]Kontaktanfrage[/url] von %2$s erhalten." + +#: ../../include/enotify.php:237 ../../include/enotify.php:279 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Hier kannst Du das Profil betrachten: %s" + +#: ../../include/enotify.php:239 +#, php-format +msgid "Please visit %s to approve or reject the introduction." +msgstr "Bitte besuche %s, um die Kontaktanfrage anzunehmen oder abzulehnen." + +#: ../../include/enotify.php:247 +msgid "[Friendica:Notify] A new person is sharing with you" +msgstr "[Friendica Benachrichtigung] Eine neue Person teilt mit Dir" + +#: ../../include/enotify.php:248 ../../include/enotify.php:249 +#, php-format +msgid "%1$s is sharing with you at %2$s" +msgstr "%1$s teilt mit Dir auf %2$s" + +#: ../../include/enotify.php:255 +msgid "[Friendica:Notify] You have a new follower" +msgstr "[Friendica Benachrichtigung] Du hast einen neuen Kontakt auf " + +#: ../../include/enotify.php:256 ../../include/enotify.php:257 +#, php-format +msgid "You have a new follower at %2$s : %1$s" +msgstr "Du hast einen neuen Kontakt auf %2$s: %1$s" + +#: ../../include/enotify.php:270 +msgid "[Friendica:Notify] Friend suggestion received" +msgstr "[Friendica-Meldung] Kontaktvorschlag erhalten" + +#: ../../include/enotify.php:271 +#, php-format +msgid "You've received a friend suggestion from '%1$s' at %2$s" +msgstr "Du hast einen Freunde-Vorschlag von '%1$s' auf %2$s erhalten" + +#: ../../include/enotify.php:272 #, 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." +"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." +msgstr "Du hast einen [url=%1$s]Freunde-Vorschlag[/url] %2$s von %3$s erhalten." -#: ../../mod/contacts.php:478 -msgid "Contact Information / Notes" -msgstr "Kontakt Informationen / Notizen" +#: ../../include/enotify.php:277 +msgid "Name:" +msgstr "Name:" -#: ../../mod/contacts.php:479 -msgid "Edit contact notes" -msgstr "Notizen zum Kontakt bearbeiten" +#: ../../include/enotify.php:278 +msgid "Photo:" +msgstr "Foto:" -#: ../../mod/contacts.php:484 ../../mod/contacts.php:679 -#: ../../mod/viewcontacts.php:64 ../../mod/nogroup.php:40 +#: ../../include/enotify.php:281 #, php-format -msgid "Visit %s's profile [%s]" -msgstr "Besuche %ss Profil [%s]" +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen." -#: ../../mod/contacts.php:485 -msgid "Block/Unblock contact" -msgstr "Kontakt blockieren/freischalten" +#: ../../include/enotify.php:289 ../../include/enotify.php:302 +msgid "[Friendica:Notify] Connection accepted" +msgstr "[Friendica-Benachrichtigung] Kontaktanfrage bestätigt" -#: ../../mod/contacts.php:486 -msgid "Ignore contact" -msgstr "Ignoriere den Kontakt" +#: ../../include/enotify.php:290 ../../include/enotify.php:303 +#, php-format +msgid "'%1$s' has acepted your connection request at %2$s" +msgstr "'%1$s' hat Deine Kontaktanfrage auf %2$s bestätigt" -#: ../../mod/contacts.php:487 -msgid "Repair URL settings" -msgstr "URL Einstellungen reparieren" +#: ../../include/enotify.php:291 ../../include/enotify.php:304 +#, php-format +msgid "%2$s has accepted your [url=%1$s]connection request[/url]." +msgstr "%2$s hat Deine [url=%1$s]Kontaktanfrage[/url] akzeptiert." -#: ../../mod/contacts.php:488 -msgid "View conversations" -msgstr "Unterhaltungen anzeigen" - -#: ../../mod/contacts.php:490 -msgid "Delete contact" -msgstr "Lösche den Kontakt" - -#: ../../mod/contacts.php:494 -msgid "Last update:" -msgstr "Letzte Aktualisierung: " - -#: ../../mod/contacts.php:496 -msgid "Update public posts" -msgstr "Öffentliche Beiträge aktualisieren" - -#: ../../mod/contacts.php:498 ../../mod/admin.php:1503 -msgid "Update now" -msgstr "Jetzt aktualisieren" - -#: ../../mod/contacts.php:505 -msgid "Currently blocked" -msgstr "Derzeit geblockt" - -#: ../../mod/contacts.php:506 -msgid "Currently ignored" -msgstr "Derzeit ignoriert" - -#: ../../mod/contacts.php:507 -msgid "Currently archived" -msgstr "Momentan archiviert" - -#: ../../mod/contacts.php:508 ../../mod/notifications.php:157 -#: ../../mod/notifications.php:204 -msgid "Hide this contact from others" -msgstr "Verbirg diesen Kontakt von anderen" - -#: ../../mod/contacts.php:508 +#: ../../include/enotify.php:294 msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "Antworten/Likes auf deine öffentlichen Beiträge könnten weiterhin sichtbar sein" +"You are now mutual friends and may exchange status updates, photos, and email\n" +"\twithout restriction." +msgstr "Ihr seit nun beidseitige Freunde und könnt Statusmitteilungen, Bilder und Emails ohne Einschränkungen austauschen." -#: ../../mod/contacts.php:509 -msgid "Notification for new posts" -msgstr "Benachrichtigung bei neuen Beiträgen" +#: ../../include/enotify.php:297 ../../include/enotify.php:311 +#, php-format +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr "Bitte besuche %s, wenn Du Änderungen an eurer Beziehung vornehmen willst." -#: ../../mod/contacts.php:509 -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:510 -msgid "Fetch further information for feeds" -msgstr "Weitere Informationen zu Feeds holen" - -#: ../../mod/contacts.php:511 -msgid "Disabled" -msgstr "Deaktiviert" - -#: ../../mod/contacts.php:511 -msgid "Fetch information" -msgstr "Beziehe Information" - -#: ../../mod/contacts.php:511 -msgid "Fetch information and keywords" -msgstr "Beziehe Information und Schlüsselworte" - -#: ../../mod/contacts.php:513 -msgid "Blacklisted keywords" -msgstr "Blacklistete Schlüsselworte " - -#: ../../mod/contacts.php:513 +#: ../../include/enotify.php:307 +#, php-format 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" +"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of " +"communication - such as private messaging and some profile interactions. If " +"this is a celebrity or community page, these settings were applied " +"automatically." +msgstr "'%1$s' hat sich entschieden Dich als \"Fan\" zu akzeptieren, dies schränkt einige Kommunikationswege - wie private Nachrichten und einige Interaktionsmöglichkeiten auf der Profilseite - ein. Wenn dies eine Berühmtheiten- oder Gemeinschaftsseite ist, werden diese Einstellungen automatisch vorgenommen." -#: ../../mod/contacts.php:564 -msgid "Suggestions" -msgstr "Kontaktvorschläge" +#: ../../include/enotify.php:309 +#, php-format +msgid "" +"'%1$s' may choose to extend this into a two-way or more permissive " +"relationship in the future. " +msgstr "'%1$s' kann den Kontaktstatus zu einem späteren Zeitpunkt erweitern und diese Einschränkungen aufheben. " -#: ../../mod/contacts.php:567 -msgid "Suggest potential friends" -msgstr "Freunde vorschlagen" +#: ../../include/enotify.php:322 +msgid "[Friendica System:Notify] registration request" +msgstr "[Friendica System:Benachrichtigung] Registrationsanfrage" -#: ../../mod/contacts.php:570 ../../mod/group.php:194 -msgid "All Contacts" -msgstr "Alle Kontakte" +#: ../../include/enotify.php:323 +#, php-format +msgid "You've received a registration request from '%1$s' at %2$s" +msgstr "Du hast eine Registrierungsanfrage von %2$s auf '%1$s' erhalten" -#: ../../mod/contacts.php:573 -msgid "Show all contacts" -msgstr "Alle Kontakte anzeigen" +#: ../../include/enotify.php:324 +#, php-format +msgid "You've received a [url=%1$s]registration request[/url] from %2$s." +msgstr "Du hast eine [url=%1$s]Registrierungsanfrage[/url] von %2$s erhalten." -#: ../../mod/contacts.php:576 -msgid "Unblocked" -msgstr "Ungeblockt" +#: ../../include/enotify.php:327 +#, php-format +msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" +msgstr "Kompletter Name:\t%1$s\\nURL der Seite:\t%2$s\\nLogin Name:\t%3$s (%4$s)" -#: ../../mod/contacts.php:579 -msgid "Only show unblocked contacts" -msgstr "Nur nicht-blockierte Kontakte anzeigen" +#: ../../include/enotify.php:330 +#, php-format +msgid "Please visit %s to approve or reject the request." +msgstr "Bitte besuche %s um die Anfrage zu bearbeiten." -#: ../../mod/contacts.php:583 -msgid "Blocked" -msgstr "Geblockt" +#: ../../include/api.php:304 ../../include/api.php:315 +#: ../../include/api.php:416 ../../include/api.php:1063 +#: ../../include/api.php:1065 +msgid "User not found." +msgstr "Nutzer nicht gefunden." -#: ../../mod/contacts.php:586 -msgid "Only show blocked contacts" -msgstr "Nur blockierte Kontakte anzeigen" +#: ../../include/api.php:770 +#, 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." -#: ../../mod/contacts.php:590 -msgid "Ignored" -msgstr "Ignoriert" +#: ../../include/api.php:789 +#, 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." -#: ../../mod/contacts.php:593 -msgid "Only show ignored contacts" -msgstr "Nur ignorierte Kontakte anzeigen" +#: ../../include/api.php:808 +#, 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." -#: ../../mod/contacts.php:597 -msgid "Archived" -msgstr "Archiviert" +#: ../../include/api.php:1271 +msgid "There is no status with this id." +msgstr "Es gibt keinen Status mit dieser ID." -#: ../../mod/contacts.php:600 -msgid "Only show archived contacts" -msgstr "Nur archivierte Kontakte anzeigen" +#: ../../include/api.php:1341 +msgid "There is no conversation with this id." +msgstr "Es existiert keine Unterhaltung mit dieser ID." -#: ../../mod/contacts.php:604 -msgid "Hidden" -msgstr "Verborgen" +#: ../../include/api.php:1613 +msgid "Invalid request." +msgstr "Ungültige Anfrage" -#: ../../mod/contacts.php:607 -msgid "Only show hidden contacts" -msgstr "Nur verborgene Kontakte anzeigen" +#: ../../include/api.php:1624 +msgid "Invalid item." +msgstr "Ungültiges Objekt" -#: ../../mod/contacts.php:655 -msgid "Mutual Friendship" -msgstr "Beidseitige Freundschaft" +#: ../../include/api.php:1634 +msgid "Invalid action. " +msgstr "Ungültige Aktion" -#: ../../mod/contacts.php:659 -msgid "is a fan of yours" -msgstr "ist ein Fan von dir" +#: ../../include/api.php:1642 +msgid "DB error" +msgstr "DB Error" -#: ../../mod/contacts.php:663 -msgid "you are a fan of" -msgstr "Du bist Fan von" +#: ../../include/network.php:890 +msgid "view full size" +msgstr "Volle Größe anzeigen" -#: ../../mod/contacts.php:680 ../../mod/nogroup.php:41 -msgid "Edit contact" +#: ../../include/Scrape.php:608 +msgid " on Last.fm" +msgstr " bei Last.fm" + +#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1133 +msgid "Full Name:" +msgstr "Kompletter Name:" + +#: ../../include/profile_advanced.php:22 +msgid "j F, Y" +msgstr "j F, Y" + +#: ../../include/profile_advanced.php:23 +msgid "j F" +msgstr "j F" + +#: ../../include/profile_advanced.php:30 +msgid "Birthday:" +msgstr "Geburtstag:" + +#: ../../include/profile_advanced.php:34 +msgid "Age:" +msgstr "Alter:" + +#: ../../include/profile_advanced.php:43 +#, php-format +msgid "for %1$d %2$s" +msgstr "für %1$d %2$s" + +#: ../../include/profile_advanced.php:46 ../../mod/profiles.php:714 +msgid "Sexual Preference:" +msgstr "Sexuelle Vorlieben:" + +#: ../../include/profile_advanced.php:50 ../../mod/profiles.php:716 +msgid "Hometown:" +msgstr "Heimatort:" + +#: ../../include/profile_advanced.php:52 +msgid "Tags:" +msgstr "Tags" + +#: ../../include/profile_advanced.php:54 ../../mod/profiles.php:717 +msgid "Political Views:" +msgstr "Politische Ansichten:" + +#: ../../include/profile_advanced.php:56 +msgid "Religion:" +msgstr "Religion:" + +#: ../../include/profile_advanced.php:60 +msgid "Hobbies/Interests:" +msgstr "Hobbies/Interessen:" + +#: ../../include/profile_advanced.php:62 ../../mod/profiles.php:721 +msgid "Likes:" +msgstr "Likes:" + +#: ../../include/profile_advanced.php:64 ../../mod/profiles.php:722 +msgid "Dislikes:" +msgstr "Dislikes:" + +#: ../../include/profile_advanced.php:67 +msgid "Contact information and Social Networks:" +msgstr "Kontaktinformationen und Soziale Netzwerke:" + +#: ../../include/profile_advanced.php:69 +msgid "Musical interests:" +msgstr "Musikalische Interessen:" + +#: ../../include/profile_advanced.php:71 +msgid "Books, literature:" +msgstr "Literatur/Bücher:" + +#: ../../include/profile_advanced.php:73 +msgid "Television:" +msgstr "Fernsehen:" + +#: ../../include/profile_advanced.php:75 +msgid "Film/dance/culture/entertainment:" +msgstr "Filme/Tänze/Kultur/Unterhaltung:" + +#: ../../include/profile_advanced.php:77 +msgid "Love/Romance:" +msgstr "Liebesleben:" + +#: ../../include/profile_advanced.php:79 +msgid "Work/employment:" +msgstr "Arbeit/Beschäftigung:" + +#: ../../include/profile_advanced.php:81 +msgid "School/education:" +msgstr "Schule/Ausbildung:" + +#: ../../include/nav.php:34 ../../mod/navigation.php:20 +msgid "Nothing new here" +msgstr "Keine Neuigkeiten" + +#: ../../include/nav.php:38 ../../mod/navigation.php:24 +msgid "Clear notifications" +msgstr "Bereinige Benachrichtigungen" + +#: ../../include/nav.php:73 +msgid "End this session" +msgstr "Diese Sitzung beenden" + +#: ../../include/nav.php:79 +msgid "Your videos" +msgstr "Deine Videos" + +#: ../../include/nav.php:81 +msgid "Your personal notes" +msgstr "Deine persönlichen Notizen" + +#: ../../include/nav.php:92 +msgid "Sign in" +msgstr "Anmelden" + +#: ../../include/nav.php:105 +msgid "Home Page" +msgstr "Homepage" + +#: ../../include/nav.php:109 +msgid "Create an account" +msgstr "Nutzerkonto erstellen" + +#: ../../include/nav.php:114 ../../mod/help.php:36 +msgid "Help" +msgstr "Hilfe" + +#: ../../include/nav.php:114 +msgid "Help and documentation" +msgstr "Hilfe und Dokumentation" + +#: ../../include/nav.php:117 +msgid "Apps" +msgstr "Apps" + +#: ../../include/nav.php:117 +msgid "Addon applications, utilities, games" +msgstr "Addon Anwendungen, Dienstprogramme, Spiele" + +#: ../../include/nav.php:119 ../../include/text.php:968 +#: ../../include/text.php:969 ../../mod/search.php:99 +msgid "Search" +msgstr "Suche" + +#: ../../include/nav.php:119 +msgid "Search site content" +msgstr "Inhalt der Seite durchsuchen" + +#: ../../include/nav.php:129 +msgid "Conversations on this site" +msgstr "Unterhaltungen auf dieser Seite" + +#: ../../include/nav.php:131 +msgid "Conversations on the network" +msgstr "Unterhaltungen im Netzwerk" + +#: ../../include/nav.php:133 +msgid "Directory" +msgstr "Verzeichnis" + +#: ../../include/nav.php:133 +msgid "People directory" +msgstr "Nutzerverzeichnis" + +#: ../../include/nav.php:135 +msgid "Information" +msgstr "Information" + +#: ../../include/nav.php:135 +msgid "Information about this friendica instance" +msgstr "Informationen zu dieser Friendica Instanz" + +#: ../../include/nav.php:145 ../../mod/notifications.php:83 +msgid "Network" +msgstr "Netzwerk" + +#: ../../include/nav.php:145 +msgid "Conversations from your friends" +msgstr "Unterhaltungen Deiner Kontakte" + +#: ../../include/nav.php:146 +msgid "Network Reset" +msgstr "Netzwerk zurücksetzen" + +#: ../../include/nav.php:146 +msgid "Load Network page with no filters" +msgstr "Netzwerk-Seite ohne Filter laden" + +#: ../../include/nav.php:154 ../../mod/notifications.php:98 +msgid "Introductions" +msgstr "Kontaktanfragen" + +#: ../../include/nav.php:154 +msgid "Friend Requests" +msgstr "Kontaktanfragen" + +#: ../../include/nav.php:155 ../../mod/notifications.php:224 +msgid "Notifications" +msgstr "Benachrichtigungen" + +#: ../../include/nav.php:156 +msgid "See all notifications" +msgstr "Alle Benachrichtigungen anzeigen" + +#: ../../include/nav.php:157 +msgid "Mark all system notifications seen" +msgstr "Markiere alle Systembenachrichtigungen als gelesen" + +#: ../../include/nav.php:161 ../../mod/message.php:182 +msgid "Messages" +msgstr "Nachrichten" + +#: ../../include/nav.php:161 +msgid "Private mail" +msgstr "Private E-Mail" + +#: ../../include/nav.php:162 +msgid "Inbox" +msgstr "Eingang" + +#: ../../include/nav.php:163 +msgid "Outbox" +msgstr "Ausgang" + +#: ../../include/nav.php:164 ../../mod/message.php:9 +msgid "New Message" +msgstr "Neue Nachricht" + +#: ../../include/nav.php:167 +msgid "Manage" +msgstr "Verwalten" + +#: ../../include/nav.php:167 +msgid "Manage other pages" +msgstr "Andere Seiten verwalten" + +#: ../../include/nav.php:170 ../../mod/settings.php:67 +msgid "Delegations" +msgstr "Delegationen" + +#: ../../include/nav.php:170 ../../mod/delegate.php:130 +msgid "Delegate Page Management" +msgstr "Delegiere das Management für die Seite" + +#: ../../include/nav.php:172 +msgid "Account settings" +msgstr "Kontoeinstellungen" + +#: ../../include/nav.php:175 +msgid "Manage/Edit Profiles" +msgstr "Profile Verwalten/Editieren" + +#: ../../include/nav.php:177 +msgid "Manage/edit friends and contacts" +msgstr "Freunde und Kontakte verwalten/editieren" + +#: ../../include/nav.php:184 ../../mod/admin.php:130 +msgid "Admin" +msgstr "Administration" + +#: ../../include/nav.php:184 +msgid "Site setup and configuration" +msgstr "Einstellungen der Seite und Konfiguration" + +#: ../../include/nav.php:188 +msgid "Navigation" +msgstr "Navigation" + +#: ../../include/nav.php:188 +msgid "Site map" +msgstr "Sitemap" + +#: ../../include/plugin.php:455 ../../include/plugin.php:457 +msgid "Click here to upgrade." +msgstr "Zum Upgraden hier klicken." + +#: ../../include/plugin.php:463 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Diese Aktion überschreitet die Obergrenze Deines Abonnements." + +#: ../../include/plugin.php:468 +msgid "This action is not available under your subscription plan." +msgstr "Diese Aktion ist in Deinem Abonnement nicht verfügbar." + +#: ../../include/follow.php:27 ../../mod/dfrn_request.php:507 +msgid "Disallowed profile URL." +msgstr "Nicht erlaubte Profil-URL." + +#: ../../include/follow.php:32 +msgid "Connect URL missing." +msgstr "Connect-URL fehlt" + +#: ../../include/follow.php:59 +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:60 ../../include/follow.php:80 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden." + +#: ../../include/follow.php:78 +msgid "The profile address specified does not provide adequate information." +msgstr "Die angegebene Profiladresse liefert unzureichende Informationen." + +#: ../../include/follow.php:82 +msgid "An author or name was not found." +msgstr "Es wurde kein Autor oder Name gefunden." + +#: ../../include/follow.php:84 +msgid "No browser URL could be matched to this address." +msgstr "Zu dieser Adresse konnte keine passende Browser URL gefunden werden." + +#: ../../include/follow.php:86 +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:87 +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:93 +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:103 +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:205 +msgid "Unable to retrieve contact information." +msgstr "Konnte die Kontaktinformationen nicht empfangen." + +#: ../../include/follow.php:258 +msgid "following" +msgstr "folgen" + +#: ../../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:171 +msgid "User profile creation error" +msgstr "Fehler beim Anlegen des Nutzerkontos" + +#: ../../include/uimport.php:220 +#, 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:290 +msgid "Done. You can now login with your username and password" +msgstr "Erledigt. Du kannst Dich jetzt mit Deinem Nutzernamen und Passwort anmelden" + +#: ../../include/event.php:11 ../../include/bb2diaspora.php:133 +#: ../../mod/localtime.php:12 +msgid "l F d, Y \\@ g:i A" +msgstr "l, d. F Y\\, H:i" + +#: ../../include/event.php:20 ../../include/bb2diaspora.php:139 +msgid "Starts:" +msgstr "Beginnt:" + +#: ../../include/event.php:30 ../../include/bb2diaspora.php:147 +msgid "Finishes:" +msgstr "Endet:" + +#: ../../include/Contact.php:119 +msgid "stopped following" +msgstr "wird nicht mehr gefolgt" + +#: ../../include/Contact.php:232 ../../include/conversation.php:881 +msgid "Poke" +msgstr "Anstupsen" + +#: ../../include/Contact.php:233 ../../include/conversation.php:875 +msgid "View Status" +msgstr "Pinnwand anschauen" + +#: ../../include/Contact.php:234 ../../include/conversation.php:876 +msgid "View Profile" +msgstr "Profil anschauen" + +#: ../../include/Contact.php:235 ../../include/conversation.php:877 +msgid "View Photos" +msgstr "Bilder anschauen" + +#: ../../include/Contact.php:236 ../../include/Contact.php:259 +#: ../../include/conversation.php:878 +msgid "Network Posts" +msgstr "Netzwerkbeiträge" + +#: ../../include/Contact.php:237 ../../include/Contact.php:259 +#: ../../include/conversation.php:879 +msgid "Edit Contact" msgstr "Kontakt bearbeiten" -#: ../../mod/contacts.php:702 ../../include/nav.php:177 -#: ../../view/theme/diabook/theme.php:125 -msgid "Contacts" -msgstr "Kontakte" +#: ../../include/Contact.php:238 +msgid "Drop Contact" +msgstr "Kontakt löschen" -#: ../../mod/contacts.php:706 -msgid "Search your contacts" -msgstr "Suche in deinen Kontakten" +#: ../../include/Contact.php:239 ../../include/Contact.php:259 +#: ../../include/conversation.php:880 +msgid "Send PM" +msgstr "Private Nachricht senden" -#: ../../mod/contacts.php:707 ../../mod/directory.php:61 -msgid "Finding: " -msgstr "Funde: " - -#: ../../mod/contacts.php:708 ../../mod/directory.php:63 -#: ../../include/contact_widgets.php:34 -msgid "Find" -msgstr "Finde" - -#: ../../mod/contacts.php:713 ../../mod/settings.php:132 -#: ../../mod/settings.php:640 -msgid "Update" -msgstr "Aktualisierungen" - -#: ../../mod/contacts.php:717 ../../mod/group.php:171 ../../mod/admin.php:1007 -#: ../../mod/content.php:438 ../../mod/content.php:741 -#: ../../mod/settings.php:677 ../../mod/photos.php:1654 -#: ../../object/Item.php:130 ../../include/conversation.php:614 -msgid "Delete" -msgstr "Löschen" - -#: ../../mod/hcard.php:10 -msgid "No profile" -msgstr "Kein Profil" - -#: ../../mod/manage.php:106 -msgid "Manage Identities and/or Pages" -msgstr "Verwalte Identitäten und/oder Seiten" - -#: ../../mod/manage.php:107 +#: ../../include/dbstructure.php:26 +#, php-format 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." +"\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." -#: ../../mod/manage.php:108 -msgid "Select an identity to manage: " -msgstr "Wähle eine Identität zum Verwalten aus: " - -#: ../../mod/oexchange.php:25 -msgid "Post successful." -msgstr "Beitrag erfolgreich veröffentlicht." - -#: ../../mod/profperm.php:19 ../../mod/group.php:72 ../../index.php:368 -msgid "Permission denied" -msgstr "Zugriff verweigert" - -#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 -msgid "Invalid profile identifier." -msgstr "Ungültiger Profil-Bezeichner." - -#: ../../mod/profperm.php:101 -msgid "Profile Visibility Editor" -msgstr "Editor für die Profil-Sichtbarkeit" - -#: ../../mod/profperm.php:103 ../../mod/newmember.php:32 ../../boot.php:2119 -#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:87 -#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:124 -msgid "Profile" -msgstr "Profil" - -#: ../../mod/profperm.php:105 ../../mod/group.php:224 -msgid "Click on a contact to add or remove." -msgstr "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen" - -#: ../../mod/profperm.php:114 -msgid "Visible To" -msgstr "Sichtbar für" - -#: ../../mod/profperm.php:130 -msgid "All Contacts (with secure profile access)" -msgstr "Alle Kontakte (mit gesichertem Profilzugriff)" - -#: ../../mod/display.php:82 ../../mod/display.php:284 -#: ../../mod/display.php:503 ../../mod/viewsrc.php:15 ../../mod/admin.php:169 -#: ../../mod/admin.php:1052 ../../mod/admin.php:1265 ../../mod/notice.php:15 -#: ../../include/items.php:4516 -msgid "Item not found." -msgstr "Beitrag nicht gefunden." - -#: ../../mod/display.php:212 ../../mod/videos.php:115 -#: ../../mod/viewcontacts.php:19 ../../mod/community.php:18 -#: ../../mod/dfrn_request.php:762 ../../mod/search.php:89 -#: ../../mod/directory.php:33 ../../mod/photos.php:920 -msgid "Public access denied." -msgstr "Öffentlicher Zugriff verweigert." - -#: ../../mod/display.php:332 ../../mod/profile.php:155 -msgid "Access to this profile has been restricted." -msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt." - -#: ../../mod/display.php:496 -msgid "Item has been removed." -msgstr "Eintrag wurde entfernt." - -#: ../../mod/newmember.php:6 -msgid "Welcome to Friendica" -msgstr "Willkommen bei Friendica" - -#: ../../mod/newmember.php:8 -msgid "New Member Checklist" -msgstr "Checkliste für neue Mitglieder" - -#: ../../mod/newmember.php:12 +#: ../../include/dbstructure.php:31 +#, php-format msgid "" -"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." -msgstr "Wir möchten Dir einige Tipps und Links anbieten, die Dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für Dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden." +"The error message is\n" +"[pre]%s[/pre]" +msgstr "Die Fehlermeldung lautet\n[pre]%s[/pre]" -#: ../../mod/newmember.php:14 -msgid "Getting Started" -msgstr "Einstieg" +#: ../../include/dbstructure.php:150 +msgid "Errors encountered creating database tables." +msgstr "Fehler aufgetreten während der Erzeugung der Datenbanktabellen." -#: ../../mod/newmember.php:18 -msgid "Friendica Walk-Through" -msgstr "Friendica Rundgang" +#: ../../include/dbstructure.php:208 +msgid "Errors encountered performing database changes." +msgstr "Es sind Fehler beim Bearbeiten der Datenbank aufgetreten." -#: ../../mod/newmember.php:18 -msgid "" -"On your Quick Start page - find a brief introduction to your " -"profile and network tabs, make some new connections, and find some groups to" -" join." -msgstr "Auf der Quick Start Seite findest Du eine kurze Einleitung in die einzelnen Funktionen Deines Profils und die Netzwerk-Reiter, wo Du interessante Foren findest und neue Kontakte knüpfst." +#: ../../include/datetime.php:43 ../../include/datetime.php:45 +msgid "Miscellaneous" +msgstr "Verschiedenes" -#: ../../mod/newmember.php:22 ../../mod/admin.php:1104 -#: ../../mod/admin.php:1325 ../../mod/settings.php:85 -#: ../../include/nav.php:172 ../../view/theme/diabook/theme.php:544 -#: ../../view/theme/diabook/theme.php:648 -msgid "Settings" -msgstr "Einstellungen" +#: ../../include/datetime.php:153 ../../include/datetime.php:290 +msgid "year" +msgstr "Jahr" -#: ../../mod/newmember.php:26 -msgid "Go to Your Settings" -msgstr "Gehe zu deinen Einstellungen" +#: ../../include/datetime.php:158 ../../include/datetime.php:291 +msgid "month" +msgstr "Monat" -#: ../../mod/newmember.php:26 -msgid "" -"On your Settings page - change your initial password. Also make a " -"note of your Identity Address. This looks just like an email address - and " -"will be useful in making friends on the free social web." -msgstr "Ändere bitte unter Einstellungen dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Freundschaften mit anderen im Friendica Netzwerk zu schliessen." +#: ../../include/datetime.php:163 ../../include/datetime.php:293 +msgid "day" +msgstr "Tag" -#: ../../mod/newmember.php:28 -msgid "" -"Review the other settings, particularly the privacy settings. An unpublished" -" directory listing is like having an unlisted phone number. In general, you " -"should probably publish your listing - unless all of your friends and " -"potential friends know exactly how to find you." -msgstr "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn Du Dein Profil nicht veröffentlichst, ist das als wenn Du Deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest Du es veröffentlichen - außer all Deine Freunde und potentiellen Freunde wissen genau, wie sie Dich finden können." +#: ../../include/datetime.php:276 +msgid "never" +msgstr "nie" -#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244 -#: ../../mod/profiles.php:699 -msgid "Upload Profile Photo" -msgstr "Profilbild hochladen" +#: ../../include/datetime.php:282 +msgid "less than a second ago" +msgstr "vor weniger als einer Sekunde" -#: ../../mod/newmember.php:36 -msgid "" -"Upload a profile photo if you have not done so already. Studies have shown " -"that people with real photos of themselves are ten times more likely to make" -" friends than people who do not." -msgstr "Lade ein Profilbild hoch, falls Du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Freunde zu finden, wenn Du ein Bild von Dir selbst verwendest, als wenn Du dies nicht tust." +#: ../../include/datetime.php:290 +msgid "years" +msgstr "Jahre" -#: ../../mod/newmember.php:38 -msgid "Edit Your Profile" -msgstr "Editiere dein Profil" +#: ../../include/datetime.php:291 +msgid "months" +msgstr "Monate" -#: ../../mod/newmember.php:38 -msgid "" -"Edit your default profile to your liking. Review the " -"settings for hiding your list of friends and hiding the profile from unknown" -" visitors." -msgstr "Editiere Dein Standard Profil nach Deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen Deiner Freundesliste vor unbekannten Betrachtern des Profils." +#: ../../include/datetime.php:292 +msgid "week" +msgstr "Woche" -#: ../../mod/newmember.php:40 -msgid "Profile Keywords" -msgstr "Profil Schlüsselbegriffe" +#: ../../include/datetime.php:292 +msgid "weeks" +msgstr "Wochen" -#: ../../mod/newmember.php:40 -msgid "" -"Set some public keywords for your default profile which describe your " -"interests. We may be able to find other people with similar interests and " -"suggest friendships." -msgstr "Trage ein paar öffentliche Stichwörter in Dein Standardprofil ein, die Deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die Deine Interessen teilen und können Dir dann Kontakte vorschlagen." +#: ../../include/datetime.php:293 +msgid "days" +msgstr "Tage" -#: ../../mod/newmember.php:44 -msgid "Connecting" -msgstr "Verbindungen knüpfen" +#: ../../include/datetime.php:294 +msgid "hour" +msgstr "Stunde" -#: ../../mod/newmember.php:49 ../../mod/newmember.php:51 -#: ../../include/contact_selectors.php:81 +#: ../../include/datetime.php:294 +msgid "hours" +msgstr "Stunden" + +#: ../../include/datetime.php:295 +msgid "minute" +msgstr "Minute" + +#: ../../include/datetime.php:295 +msgid "minutes" +msgstr "Minuten" + +#: ../../include/datetime.php:296 +msgid "second" +msgstr "Sekunde" + +#: ../../include/datetime.php:296 +msgid "seconds" +msgstr "Sekunden" + +#: ../../include/datetime.php:305 +#, php-format +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s her" + +#: ../../include/message.php:15 ../../include/message.php:172 +msgid "[no subject]" +msgstr "[kein Betreff]" + +#: ../../include/delivery.php:456 ../../include/notifier.php:786 +msgid "(no subject)" +msgstr "(kein Betreff)" + +#: ../../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:571 +msgid "Frequently" +msgstr "immer wieder" + +#: ../../include/contact_selectors.php:57 ../../mod/admin.php:572 +msgid "Hourly" +msgstr "Stündlich" + +#: ../../include/contact_selectors.php:58 ../../mod/admin.php:573 +msgid "Twice daily" +msgstr "Zweimal täglich" + +#: ../../include/contact_selectors.php:59 ../../mod/admin.php:574 +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:836 +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:1003 +#: ../../mod/admin.php:1015 ../../mod/admin.php:1016 ../../mod/admin.php:1031 +msgid "Email" +msgstr "E-Mail" + +#: ../../include/contact_selectors.php:80 ../../mod/settings.php:741 +#: ../../mod/dfrn_request.php:838 +msgid "Diaspora" +msgstr "Diaspora" + +#: ../../include/contact_selectors.php:81 ../../mod/newmember.php:49 +#: ../../mod/newmember.php:51 msgid "Facebook" msgstr "Facebook" -#: ../../mod/newmember.php:49 -msgid "" -"Authorise the Facebook Connector if you currently have a Facebook account " -"and we will (optionally) import all your Facebook friends and conversations." -msgstr "Richte die Verbindung zu Facebook ein, wenn Du im Augenblick ein Facebook-Konto hast und (optional) Deine Facebook-Freunde und -Unterhaltungen importieren willst." +#: ../../include/contact_selectors.php:82 +msgid "Zot!" +msgstr "Zott" -#: ../../mod/newmember.php:51 -msgid "" -"If this is your own personal server, installing the Facebook addon " -"may ease your transition to the free social web." -msgstr "Wenn dies Dein privater Server ist, könnte die Installation des Facebook Connectors Deinen Umzug ins freie soziale Netz angenehmer gestalten." +#: ../../include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "LinkedIn" -#: ../../mod/newmember.php:56 -msgid "Importing Emails" -msgstr "Emails Importieren" +#: ../../include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "XMPP/Chat" -#: ../../mod/newmember.php:56 -msgid "" -"Enter your email access information on your Connector Settings page if you " -"wish to import and interact with friends or mailing lists from your email " -"INBOX" -msgstr "Gib Deine E-Mail-Zugangsinformationen auf der Connector-Einstellungsseite ein, falls Du E-Mails aus Deinem Posteingang importieren und mit Freunden und Mailinglisten interagieren willst." +#: ../../include/contact_selectors.php:85 +msgid "MySpace" +msgstr "MySpace" -#: ../../mod/newmember.php:58 -msgid "Go to Your Contacts Page" -msgstr "Gehe zu deiner Kontakt-Seite" +#: ../../include/contact_selectors.php:87 +msgid "Google+" +msgstr "Google+" -#: ../../mod/newmember.php:58 -msgid "" -"Your Contacts page is your gateway to managing friendships and connecting " -"with friends on other networks. Typically you enter their address or site " -"URL in the Add New Contact dialog." -msgstr "Die Kontakte-Seite ist die Einstiegsseite, von der aus Du Kontakte verwalten und Dich mit Freunden in anderen Netzwerken verbinden kannst. Normalerweise gibst Du dazu einfach ihre Adresse oder die URL der Seite im Kasten Neuen Kontakt hinzufügen ein." +#: ../../include/contact_selectors.php:88 +msgid "pump.io" +msgstr "pump.io" -#: ../../mod/newmember.php:60 -msgid "Go to Your Site's Directory" -msgstr "Gehe zum Verzeichnis Deiner Friendica Instanz" +#: ../../include/contact_selectors.php:89 +msgid "Twitter" +msgstr "Twitter" -#: ../../mod/newmember.php:60 -msgid "" -"The Directory page lets you find other people in this network or other " -"federated sites. Look for a Connect or Follow link on " -"their profile page. Provide your own Identity Address if requested." -msgstr "Über die Verzeichnisseite kannst Du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem Verbinden oder Folgen Link auf deren Profilseiten Ausschau und gib Deine eigene Profiladresse an, falls Du danach gefragt wirst." +#: ../../include/contact_selectors.php:90 +msgid "Diaspora Connector" +msgstr "Diaspora" -#: ../../mod/newmember.php:62 -msgid "Finding New People" -msgstr "Neue Leute kennenlernen" +#: ../../include/contact_selectors.php:91 +msgid "Statusnet" +msgstr "StatusNet" -#: ../../mod/newmember.php:62 -msgid "" -"On the side panel of the Contacts page are several tools to find new " -"friends. We can match people by interest, look up people by name or " -"interest, and provide suggestions based on network relationships. On a brand" -" new site, friend suggestions will usually begin to be populated within 24 " -"hours." -msgstr "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Freunde zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Freunde vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden." +#: ../../include/contact_selectors.php:92 +msgid "App.net" +msgstr "App.net" -#: ../../mod/newmember.php:66 ../../include/group.php:270 -msgid "Groups" -msgstr "Gruppen" - -#: ../../mod/newmember.php:70 -msgid "Group Your Contacts" -msgstr "Gruppiere deine Kontakte" - -#: ../../mod/newmember.php:70 -msgid "" -"Once you have made some friends, organize them into private conversation " -"groups from the sidebar of your Contacts page and then you can interact with" -" each group privately on your Network page." -msgstr "Sobald Du einige Freunde gefunden hast, organisiere sie in Gruppen zur privaten Kommunikation im Seitenmenü der Kontakte-Seite. Du kannst dann mit jeder dieser Gruppen von der Netzwerkseite aus privat interagieren." - -#: ../../mod/newmember.php:73 -msgid "Why Aren't My Posts Public?" -msgstr "Warum sind meine Beiträge nicht öffentlich?" - -#: ../../mod/newmember.php:73 -msgid "" -"Friendica respects your privacy. By default, your posts will only show up to" -" people you've added as friends. For more information, see the help section " -"from the link above." -msgstr "Friendica respektiert Deine Privatsphäre. Mit der Grundeinstellung werden Deine Beiträge ausschließlich Deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies Dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch." - -#: ../../mod/newmember.php:78 -msgid "Getting Help" -msgstr "Hilfe bekommen" - -#: ../../mod/newmember.php:82 -msgid "Go to the Help Section" -msgstr "Zum Hilfe Abschnitt gehen" - -#: ../../mod/newmember.php:82 -msgid "" -"Our help pages may be consulted for detail on other program" -" features and resources." -msgstr "Unsere Hilfe Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten." - -#: ../../mod/openid.php:24 -msgid "OpenID protocol error. No ID returned." -msgstr "OpenID Protokollfehler. Keine ID zurückgegeben." - -#: ../../mod/openid.php:53 -msgid "" -"Account not found and OpenID registration is not permitted on this site." -msgstr "Nutzerkonto wurde nicht gefunden und OpenID-Registrierung ist auf diesem Server nicht gestattet." - -#: ../../mod/openid.php:93 ../../include/auth.php:112 -#: ../../include/auth.php:175 -msgid "Login failed." -msgstr "Anmeldung fehlgeschlagen." - -#: ../../mod/profile_photo.php:44 -msgid "Image uploaded but image cropping failed." -msgstr "Bild hochgeladen, aber das Zuschneiden schlug fehl." - -#: ../../mod/profile_photo.php:74 ../../mod/profile_photo.php:81 -#: ../../mod/profile_photo.php:88 ../../mod/profile_photo.php:204 -#: ../../mod/profile_photo.php:296 ../../mod/profile_photo.php:305 -#: ../../mod/photos.php:155 ../../mod/photos.php:731 ../../mod/photos.php:1187 -#: ../../mod/photos.php:1210 ../../include/user.php:335 -#: ../../include/user.php:342 ../../include/user.php:349 -#: ../../view/theme/diabook/theme.php:500 -msgid "Profile Photos" -msgstr "Profilbilder" - -#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84 -#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308 +#: ../../include/diaspora.php:621 ../../include/conversation.php:172 +#: ../../mod/dfrn_confirm.php:486 #, php-format -msgid "Image size reduction [%s] failed." -msgstr "Verkleinern der Bildgröße von [%s] scheiterte." +msgid "%1$s is now friends with %2$s" +msgstr "%1$s ist nun mit %2$s befreundet" -#: ../../mod/profile_photo.php:118 -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." +#: ../../include/diaspora.php:704 +msgid "Sharing notification from Diaspora network" +msgstr "Freigabe-Benachrichtigung von Diaspora" -#: ../../mod/profile_photo.php:128 -msgid "Unable to process image" -msgstr "Bild konnte nicht verarbeitet werden" +#: ../../include/diaspora.php:2444 +msgid "Attachments:" +msgstr "Anhänge:" -#: ../../mod/profile_photo.php:144 ../../mod/wall_upload.php:122 +#: ../../include/conversation.php:140 ../../mod/like.php:168 #, php-format -msgid "Image exceeds size limit of %d" -msgstr "Bildgröße überschreitet das Limit von %d" +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "%1$s mag %2$ss %3$s nicht" -#: ../../mod/profile_photo.php:153 ../../mod/wall_upload.php:144 -#: ../../mod/photos.php:807 -msgid "Unable to process image." -msgstr "Konnte das Bild nicht bearbeiten." - -#: ../../mod/profile_photo.php:242 -msgid "Upload File:" -msgstr "Datei hochladen:" - -#: ../../mod/profile_photo.php:243 -msgid "Select a profile:" -msgstr "Profil auswählen:" - -#: ../../mod/profile_photo.php:245 -msgid "Upload" -msgstr "Hochladen" - -#: ../../mod/profile_photo.php:248 ../../mod/settings.php:1062 -msgid "or" -msgstr "oder" - -#: ../../mod/profile_photo.php:248 -msgid "skip this step" -msgstr "diesen Schritt überspringen" - -#: ../../mod/profile_photo.php:248 -msgid "select a photo from your photo albums" -msgstr "wähle ein Foto aus deinen Fotoalben" - -#: ../../mod/profile_photo.php:262 -msgid "Crop Image" -msgstr "Bild zurechtschneiden" - -#: ../../mod/profile_photo.php:263 -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:265 -msgid "Done Editing" -msgstr "Bearbeitung abgeschlossen" - -#: ../../mod/profile_photo.php:299 -msgid "Image uploaded successfully." -msgstr "Bild erfolgreich hochgeladen." - -#: ../../mod/profile_photo.php:301 ../../mod/wall_upload.php:172 -#: ../../mod/photos.php:834 -msgid "Image upload failed." -msgstr "Hochladen des Bildes gescheitert." - -#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:149 -#: ../../include/conversation.php:126 ../../include/conversation.php:254 -#: ../../include/text.php:1968 ../../include/diaspora.php:2087 -#: ../../view/theme/diabook/theme.php:471 -msgid "photo" -msgstr "Foto" - -#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:149 -#: ../../mod/like.php:319 ../../include/conversation.php:121 -#: ../../include/conversation.php:130 ../../include/conversation.php:249 -#: ../../include/conversation.php:258 ../../include/diaspora.php:2087 -#: ../../view/theme/diabook/theme.php:466 -#: ../../view/theme/diabook/theme.php:475 -msgid "status" -msgstr "Status" - -#: ../../mod/subthread.php:103 +#: ../../include/conversation.php:206 #, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s folgt %2$s %3$s" +msgid "%1$s poked %2$s" +msgstr "%1$s stupste %2$s" -#: ../../mod/tagrm.php:41 -msgid "Tag removed" -msgstr "Tag entfernt" +#: ../../include/conversation.php:226 ../../mod/mood.php:62 +#, php-format +msgid "%1$s is currently %2$s" +msgstr "%1$s ist momentan %2$s" -#: ../../mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "Gegenstands-Tag entfernen" +#: ../../include/conversation.php:265 ../../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" -#: ../../mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "Wähle ein Tag zum Entfernen aus: " +#: ../../include/conversation.php:290 +msgid "post/item" +msgstr "Nachricht/Beitrag" -#: ../../mod/tagrm.php:93 ../../mod/delegate.php:139 -msgid "Remove" -msgstr "Entfernen" +#: ../../include/conversation.php:291 +#, 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" -#: ../../mod/filer.php:30 ../../include/conversation.php:1006 -#: ../../include/conversation.php:1024 +#: ../../include/conversation.php:612 ../../object/Item.php:129 +#: ../../mod/photos.php:1653 ../../mod/content.php:437 +#: ../../mod/content.php:740 +msgid "Select" +msgstr "Auswählen" + +#: ../../include/conversation.php:613 ../../object/Item.php:130 +#: ../../mod/group.php:171 ../../mod/settings.php:682 +#: ../../mod/contacts.php:733 ../../mod/admin.php:1007 +#: ../../mod/photos.php:1654 ../../mod/content.php:438 +#: ../../mod/content.php:741 +msgid "Delete" +msgstr "Löschen" + +#: ../../include/conversation.php:653 ../../object/Item.php:326 +#: ../../object/Item.php:327 ../../mod/content.php:471 +#: ../../mod/content.php:852 ../../mod/content.php:853 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Das Profil von %s auf %s betrachten." + +#: ../../include/conversation.php:665 ../../object/Item.php:316 +msgid "Categories:" +msgstr "Kategorien:" + +#: ../../include/conversation.php:666 ../../object/Item.php:317 +msgid "Filed under:" +msgstr "Abgelegt unter:" + +#: ../../include/conversation.php:673 ../../object/Item.php:340 +#: ../../mod/content.php:481 ../../mod/content.php:864 +#, php-format +msgid "%s from %s" +msgstr "%s von %s" + +#: ../../include/conversation.php:689 ../../mod/content.php:497 +msgid "View in context" +msgstr "Im Zusammenhang betrachten" + +#: ../../include/conversation.php:691 ../../include/conversation.php:1108 +#: ../../object/Item.php:364 ../../mod/wallmessage.php:156 +#: ../../mod/editpost.php:124 ../../mod/photos.php:1545 +#: ../../mod/message.php:334 ../../mod/message.php:565 +#: ../../mod/content.php:499 ../../mod/content.php:883 +msgid "Please wait" +msgstr "Bitte warten" + +#: ../../include/conversation.php:771 +msgid "remove" +msgstr "löschen" + +#: ../../include/conversation.php:775 +msgid "Delete Selected Items" +msgstr "Lösche die markierten Beiträge" + +#: ../../include/conversation.php:874 +msgid "Follow Thread" +msgstr "Folge der Unterhaltung" + +#: ../../include/conversation.php:943 +#, php-format +msgid "%s likes this." +msgstr "%s mag das." + +#: ../../include/conversation.php:943 +#, php-format +msgid "%s doesn't like this." +msgstr "%s mag das nicht." + +#: ../../include/conversation.php:948 +#, php-format +msgid "%2$d people like this" +msgstr "%2$d Personen mögen das" + +#: ../../include/conversation.php:951 +#, php-format +msgid "%2$d people don't like this" +msgstr "%2$d Personen mögen das nicht" + +#: ../../include/conversation.php:965 +msgid "and" +msgstr "und" + +#: ../../include/conversation.php:971 +#, php-format +msgid ", and %d other people" +msgstr " und %d andere" + +#: ../../include/conversation.php:973 +#, php-format +msgid "%s like this." +msgstr "%s mögen das." + +#: ../../include/conversation.php:973 +#, php-format +msgid "%s don't like this." +msgstr "%s mögen das nicht." + +#: ../../include/conversation.php:1000 ../../include/conversation.php:1018 +msgid "Visible to everybody" +msgstr "Für jedermann sichtbar" + +#: ../../include/conversation.php:1001 ../../include/conversation.php:1019 +#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135 +#: ../../mod/message.php:283 ../../mod/message.php:291 +#: ../../mod/message.php:466 ../../mod/message.php:474 +msgid "Please enter a link URL:" +msgstr "Bitte gib die URL des Links ein:" + +#: ../../include/conversation.php:1002 ../../include/conversation.php:1020 +msgid "Please enter a video link/URL:" +msgstr "Bitte Link/URL zum Video einfügen:" + +#: ../../include/conversation.php:1003 ../../include/conversation.php:1021 +msgid "Please enter an audio link/URL:" +msgstr "Bitte Link/URL zum Audio einfügen:" + +#: ../../include/conversation.php:1004 ../../include/conversation.php:1022 +msgid "Tag term:" +msgstr "Tag:" + +#: ../../include/conversation.php:1005 ../../include/conversation.php:1023 +#: ../../mod/filer.php:30 msgid "Save to Folder:" msgstr "In diesem Ordner speichern:" -#: ../../mod/filer.php:30 -msgid "- select -" -msgstr "- auswählen -" +#: ../../include/conversation.php:1006 ../../include/conversation.php:1024 +msgid "Where are you right now?" +msgstr "Wo hältst Du Dich jetzt gerade auf?" -#: ../../mod/filer.php:31 ../../mod/editpost.php:109 ../../mod/notes.php:63 -#: ../../include/text.php:956 +#: ../../include/conversation.php:1007 +msgid "Delete item(s)?" +msgstr "Einträge löschen?" + +#: ../../include/conversation.php:1050 +msgid "Post to Email" +msgstr "An E-Mail senden" + +#: ../../include/conversation.php:1055 +#, php-format +msgid "Connectors disabled, since \"%s\" is enabled." +msgstr "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist." + +#: ../../include/conversation.php:1056 ../../mod/settings.php:1033 +msgid "Hide your profile details from unknown viewers?" +msgstr "Profil-Details vor unbekannten Betrachtern verbergen?" + +#: ../../include/conversation.php:1089 ../../mod/photos.php:1544 +msgid "Share" +msgstr "Teilen" + +#: ../../include/conversation.php:1090 ../../mod/wallmessage.php:154 +#: ../../mod/editpost.php:110 ../../mod/message.php:332 +#: ../../mod/message.php:562 +msgid "Upload photo" +msgstr "Foto hochladen" + +#: ../../include/conversation.php:1091 ../../mod/editpost.php:111 +msgid "upload photo" +msgstr "Bild hochladen" + +#: ../../include/conversation.php:1092 ../../mod/editpost.php:112 +msgid "Attach file" +msgstr "Datei anhängen" + +#: ../../include/conversation.php:1093 ../../mod/editpost.php:113 +msgid "attach file" +msgstr "Datei anhängen" + +#: ../../include/conversation.php:1094 ../../mod/wallmessage.php:155 +#: ../../mod/editpost.php:114 ../../mod/message.php:333 +#: ../../mod/message.php:563 +msgid "Insert web link" +msgstr "Einen Link einfügen" + +#: ../../include/conversation.php:1095 ../../mod/editpost.php:115 +msgid "web link" +msgstr "Weblink" + +#: ../../include/conversation.php:1096 ../../mod/editpost.php:116 +msgid "Insert video link" +msgstr "Video-Adresse einfügen" + +#: ../../include/conversation.php:1097 ../../mod/editpost.php:117 +msgid "video link" +msgstr "Video-Link" + +#: ../../include/conversation.php:1098 ../../mod/editpost.php:118 +msgid "Insert audio link" +msgstr "Audio-Adresse einfügen" + +#: ../../include/conversation.php:1099 ../../mod/editpost.php:119 +msgid "audio link" +msgstr "Audio-Link" + +#: ../../include/conversation.php:1100 ../../mod/editpost.php:120 +msgid "Set your location" +msgstr "Deinen Standort festlegen" + +#: ../../include/conversation.php:1101 ../../mod/editpost.php:121 +msgid "set location" +msgstr "Ort setzen" + +#: ../../include/conversation.php:1102 ../../mod/editpost.php:122 +msgid "Clear browser location" +msgstr "Browser-Standort leeren" + +#: ../../include/conversation.php:1103 ../../mod/editpost.php:123 +msgid "clear location" +msgstr "Ort löschen" + +#: ../../include/conversation.php:1105 ../../mod/editpost.php:137 +msgid "Set title" +msgstr "Titel setzen" + +#: ../../include/conversation.php:1107 ../../mod/editpost.php:139 +msgid "Categories (comma-separated list)" +msgstr "Kategorien (kommasepariert)" + +#: ../../include/conversation.php:1109 ../../mod/editpost.php:125 +msgid "Permission settings" +msgstr "Berechtigungseinstellungen" + +#: ../../include/conversation.php:1110 +msgid "permissions" +msgstr "Zugriffsrechte" + +#: ../../include/conversation.php:1118 ../../mod/editpost.php:133 +msgid "CC: email addresses" +msgstr "Cc: E-Mail-Addressen" + +#: ../../include/conversation.php:1119 ../../mod/editpost.php:134 +msgid "Public post" +msgstr "Öffentlicher Beitrag" + +#: ../../include/conversation.php:1121 ../../mod/editpost.php:140 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Z.B.: bob@example.com, mary@example.com" + +#: ../../include/conversation.php:1125 ../../object/Item.php:687 +#: ../../mod/editpost.php:145 ../../mod/photos.php:1566 +#: ../../mod/photos.php:1610 ../../mod/photos.php:1698 +#: ../../mod/content.php:719 +msgid "Preview" +msgstr "Vorschau" + +#: ../../include/conversation.php:1134 +msgid "Post to Groups" +msgstr "Poste an Gruppe" + +#: ../../include/conversation.php:1135 +msgid "Post to Contacts" +msgstr "Poste an Kontakte" + +#: ../../include/conversation.php:1136 +msgid "Private post" +msgstr "Privater Beitrag" + +#: ../../include/text.php:297 +msgid "newer" +msgstr "neuer" + +#: ../../include/text.php:299 +msgid "older" +msgstr "älter" + +#: ../../include/text.php:304 +msgid "prev" +msgstr "vorige" + +#: ../../include/text.php:306 +msgid "first" +msgstr "erste" + +#: ../../include/text.php:338 +msgid "last" +msgstr "letzte" + +#: ../../include/text.php:341 +msgid "next" +msgstr "nächste" + +#: ../../include/text.php:396 +msgid "Loading more entries..." +msgstr "lade weitere Einträge..." + +#: ../../include/text.php:397 +msgid "The end" +msgstr "Das Ende" + +#: ../../include/text.php:870 +msgid "No contacts" +msgstr "Keine Kontakte" + +#: ../../include/text.php:879 +#, php-format +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "%d Kontakt" +msgstr[1] "%d Kontakte" + +#: ../../include/text.php:891 ../../mod/viewcontacts.php:78 +msgid "View Contacts" +msgstr "Kontakte anzeigen" + +#: ../../include/text.php:971 ../../mod/editpost.php:109 +#: ../../mod/notes.php:63 ../../mod/filer.php:31 msgid "Save" msgstr "Speichern" -#: ../../mod/follow.php:27 -msgid "Contact added" -msgstr "Kontakt hinzugefügt" +#: ../../include/text.php:1020 +msgid "poke" +msgstr "anstupsen" -#: ../../mod/item.php:113 -msgid "Unable to locate original post." -msgstr "Konnte den Originalbeitrag nicht finden." +#: ../../include/text.php:1020 +msgid "poked" +msgstr "stupste" -#: ../../mod/item.php:345 -msgid "Empty post discarded." -msgstr "Leerer Beitrag wurde verworfen." +#: ../../include/text.php:1021 +msgid "ping" +msgstr "anpingen" -#: ../../mod/item.php:484 ../../mod/wall_upload.php:169 -#: ../../mod/wall_upload.php:178 ../../mod/wall_upload.php:185 -#: ../../include/Photo.php:916 ../../include/Photo.php:931 -#: ../../include/Photo.php:938 ../../include/Photo.php:960 -#: ../../include/message.php:144 -msgid "Wall Photos" -msgstr "Pinnwand-Bilder" +#: ../../include/text.php:1021 +msgid "pinged" +msgstr "pingte" -#: ../../mod/item.php:938 -msgid "System error. Post not saved." -msgstr "Systemfehler. Beitrag konnte nicht gespeichert werden." +#: ../../include/text.php:1022 +msgid "prod" +msgstr "knuffen" -#: ../../mod/item.php:964 +#: ../../include/text.php:1022 +msgid "prodded" +msgstr "knuffte" + +#: ../../include/text.php:1023 +msgid "slap" +msgstr "ohrfeigen" + +#: ../../include/text.php:1023 +msgid "slapped" +msgstr "ohrfeigte" + +#: ../../include/text.php:1024 +msgid "finger" +msgstr "befummeln" + +#: ../../include/text.php:1024 +msgid "fingered" +msgstr "befummelte" + +#: ../../include/text.php:1025 +msgid "rebuff" +msgstr "eine Abfuhr erteilen" + +#: ../../include/text.php:1025 +msgid "rebuffed" +msgstr "abfuhrerteilte" + +#: ../../include/text.php:1039 +msgid "happy" +msgstr "glücklich" + +#: ../../include/text.php:1040 +msgid "sad" +msgstr "traurig" + +#: ../../include/text.php:1041 +msgid "mellow" +msgstr "sanft" + +#: ../../include/text.php:1042 +msgid "tired" +msgstr "müde" + +#: ../../include/text.php:1043 +msgid "perky" +msgstr "frech" + +#: ../../include/text.php:1044 +msgid "angry" +msgstr "sauer" + +#: ../../include/text.php:1045 +msgid "stupified" +msgstr "verblüfft" + +#: ../../include/text.php:1046 +msgid "puzzled" +msgstr "verwirrt" + +#: ../../include/text.php:1047 +msgid "interested" +msgstr "interessiert" + +#: ../../include/text.php:1048 +msgid "bitter" +msgstr "verbittert" + +#: ../../include/text.php:1049 +msgid "cheerful" +msgstr "fröhlich" + +#: ../../include/text.php:1050 +msgid "alive" +msgstr "lebendig" + +#: ../../include/text.php:1051 +msgid "annoyed" +msgstr "verärgert" + +#: ../../include/text.php:1052 +msgid "anxious" +msgstr "unruhig" + +#: ../../include/text.php:1053 +msgid "cranky" +msgstr "schrullig" + +#: ../../include/text.php:1054 +msgid "disturbed" +msgstr "verstört" + +#: ../../include/text.php:1055 +msgid "frustrated" +msgstr "frustriert" + +#: ../../include/text.php:1056 +msgid "motivated" +msgstr "motiviert" + +#: ../../include/text.php:1057 +msgid "relaxed" +msgstr "entspannt" + +#: ../../include/text.php:1058 +msgid "surprised" +msgstr "überrascht" + +#: ../../include/text.php:1228 +msgid "Monday" +msgstr "Montag" + +#: ../../include/text.php:1228 +msgid "Tuesday" +msgstr "Dienstag" + +#: ../../include/text.php:1228 +msgid "Wednesday" +msgstr "Mittwoch" + +#: ../../include/text.php:1228 +msgid "Thursday" +msgstr "Donnerstag" + +#: ../../include/text.php:1228 +msgid "Friday" +msgstr "Freitag" + +#: ../../include/text.php:1228 +msgid "Saturday" +msgstr "Samstag" + +#: ../../include/text.php:1228 +msgid "Sunday" +msgstr "Sonntag" + +#: ../../include/text.php:1232 +msgid "January" +msgstr "Januar" + +#: ../../include/text.php:1232 +msgid "February" +msgstr "Februar" + +#: ../../include/text.php:1232 +msgid "March" +msgstr "März" + +#: ../../include/text.php:1232 +msgid "April" +msgstr "April" + +#: ../../include/text.php:1232 +msgid "May" +msgstr "Mai" + +#: ../../include/text.php:1232 +msgid "June" +msgstr "Juni" + +#: ../../include/text.php:1232 +msgid "July" +msgstr "Juli" + +#: ../../include/text.php:1232 +msgid "August" +msgstr "August" + +#: ../../include/text.php:1232 +msgid "September" +msgstr "September" + +#: ../../include/text.php:1232 +msgid "October" +msgstr "Oktober" + +#: ../../include/text.php:1232 +msgid "November" +msgstr "November" + +#: ../../include/text.php:1232 +msgid "December" +msgstr "Dezember" + +#: ../../include/text.php:1422 ../../mod/videos.php:301 +msgid "View Video" +msgstr "Video ansehen" + +#: ../../include/text.php:1454 +msgid "bytes" +msgstr "Byte" + +#: ../../include/text.php:1478 ../../include/text.php:1490 +msgid "Click to open/close" +msgstr "Zum öffnen/schließen klicken" + +#: ../../include/text.php:1664 ../../include/text.php:1674 +#: ../../mod/events.php:335 +msgid "link to source" +msgstr "Link zum Originalbeitrag" + +#: ../../include/text.php:1731 +msgid "Select an alternate language" +msgstr "Alternative Sprache auswählen" + +#: ../../include/text.php:1987 +msgid "activity" +msgstr "Aktivität" + +#: ../../include/text.php:1989 ../../object/Item.php:389 +#: ../../object/Item.php:402 ../../mod/content.php:605 +msgid "comment" +msgid_plural "comments" +msgstr[0] "Kommentar" +msgstr[1] "Kommentare" + +#: ../../include/text.php:1990 +msgid "post" +msgstr "Beitrag" + +#: ../../include/text.php:2158 +msgid "Item filed" +msgstr "Beitrag abgelegt" + +#: ../../include/auth.php:38 +msgid "Logged out." +msgstr "Abgemeldet." + +#: ../../include/auth.php:112 ../../include/auth.php:175 +#: ../../mod/openid.php:93 +msgid "Login failed." +msgstr "Anmeldung fehlgeschlagen." + +#: ../../include/auth.php:128 ../../include/user.php:67 +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:128 ../../include/user.php:67 +msgid "The error message was:" +msgstr "Die Fehlermeldung lautete:" + +#: ../../include/bbcode.php:433 ../../include/bbcode.php:1066 +#: ../../include/bbcode.php:1067 +msgid "Image/photo" +msgstr "Bild/Foto" + +#: ../../include/bbcode.php:531 +#, php-format +msgid "%2$s %3$s" +msgstr "%2$s %3$s" + +#: ../../include/bbcode.php:565 #, 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." +"%s wrote the following post" +msgstr "%s schrieb den folgenden Beitrag" -#: ../../mod/item.php:966 -#, php-format -msgid "You may visit them online at %s" -msgstr "Du kannst sie online unter %s besuchen" +#: ../../include/bbcode.php:1030 ../../include/bbcode.php:1050 +msgid "$1 wrote:" +msgstr "$1 hat geschrieben:" -#: ../../mod/item.php:967 +#: ../../include/bbcode.php:1075 ../../include/bbcode.php:1076 +msgid "Encrypted content" +msgstr "Verschlüsselter Inhalt" + +#: ../../include/security.php:22 +msgid "Welcome " +msgstr "Willkommen " + +#: ../../include/security.php:23 +msgid "Please upload a profile photo." +msgstr "Bitte lade ein Profilbild hoch." + +#: ../../include/security.php:26 +msgid "Welcome back " +msgstr "Willkommen zurück " + +#: ../../include/security.php:366 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." +"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)." -#: ../../mod/item.php:971 +#: ../../include/oembed.php:213 +msgid "Embedded content" +msgstr "Eingebetteter Inhalt" + +#: ../../include/oembed.php:222 +msgid "Embedding disabled" +msgstr "Einbettungen deaktiviert" + +#: ../../include/profile_selectors.php:6 +msgid "Male" +msgstr "Männlich" + +#: ../../include/profile_selectors.php:6 +msgid "Female" +msgstr "Weiblich" + +#: ../../include/profile_selectors.php:6 +msgid "Currently Male" +msgstr "Momentan männlich" + +#: ../../include/profile_selectors.php:6 +msgid "Currently Female" +msgstr "Momentan weiblich" + +#: ../../include/profile_selectors.php:6 +msgid "Mostly Male" +msgstr "Hauptsächlich männlich" + +#: ../../include/profile_selectors.php:6 +msgid "Mostly Female" +msgstr "Hauptsächlich weiblich" + +#: ../../include/profile_selectors.php:6 +msgid "Transgender" +msgstr "Transgender" + +#: ../../include/profile_selectors.php:6 +msgid "Intersex" +msgstr "Intersex" + +#: ../../include/profile_selectors.php:6 +msgid "Transsexual" +msgstr "Transsexuell" + +#: ../../include/profile_selectors.php:6 +msgid "Hermaphrodite" +msgstr "Hermaphrodit" + +#: ../../include/profile_selectors.php:6 +msgid "Neuter" +msgstr "Neuter" + +#: ../../include/profile_selectors.php:6 +msgid "Non-specific" +msgstr "Nicht spezifiziert" + +#: ../../include/profile_selectors.php:6 +msgid "Other" +msgstr "Andere" + +#: ../../include/profile_selectors.php:6 +msgid "Undecided" +msgstr "Unentschieden" + +#: ../../include/profile_selectors.php:23 +msgid "Males" +msgstr "Männer" + +#: ../../include/profile_selectors.php:23 +msgid "Females" +msgstr "Frauen" + +#: ../../include/profile_selectors.php:23 +msgid "Gay" +msgstr "Schwul" + +#: ../../include/profile_selectors.php:23 +msgid "Lesbian" +msgstr "Lesbisch" + +#: ../../include/profile_selectors.php:23 +msgid "No Preference" +msgstr "Keine Vorlieben" + +#: ../../include/profile_selectors.php:23 +msgid "Bisexual" +msgstr "Bisexuell" + +#: ../../include/profile_selectors.php:23 +msgid "Autosexual" +msgstr "Autosexual" + +#: ../../include/profile_selectors.php:23 +msgid "Abstinent" +msgstr "Abstinent" + +#: ../../include/profile_selectors.php:23 +msgid "Virgin" +msgstr "Jungfrauen" + +#: ../../include/profile_selectors.php:23 +msgid "Deviant" +msgstr "Deviant" + +#: ../../include/profile_selectors.php:23 +msgid "Fetish" +msgstr "Fetish" + +#: ../../include/profile_selectors.php:23 +msgid "Oodles" +msgstr "Oodles" + +#: ../../include/profile_selectors.php:23 +msgid "Nonsexual" +msgstr "Nonsexual" + +#: ../../include/profile_selectors.php:42 +msgid "Single" +msgstr "Single" + +#: ../../include/profile_selectors.php:42 +msgid "Lonely" +msgstr "Einsam" + +#: ../../include/profile_selectors.php:42 +msgid "Available" +msgstr "Verfügbar" + +#: ../../include/profile_selectors.php:42 +msgid "Unavailable" +msgstr "Nicht verfügbar" + +#: ../../include/profile_selectors.php:42 +msgid "Has crush" +msgstr "verknallt" + +#: ../../include/profile_selectors.php:42 +msgid "Infatuated" +msgstr "verliebt" + +#: ../../include/profile_selectors.php:42 +msgid "Dating" +msgstr "Dating" + +#: ../../include/profile_selectors.php:42 +msgid "Unfaithful" +msgstr "Untreu" + +#: ../../include/profile_selectors.php:42 +msgid "Sex Addict" +msgstr "Sexbesessen" + +#: ../../include/profile_selectors.php:42 ../../include/user.php:289 +#: ../../include/user.php:293 +msgid "Friends" +msgstr "Freunde" + +#: ../../include/profile_selectors.php:42 +msgid "Friends/Benefits" +msgstr "Freunde/Zuwendungen" + +#: ../../include/profile_selectors.php:42 +msgid "Casual" +msgstr "Casual" + +#: ../../include/profile_selectors.php:42 +msgid "Engaged" +msgstr "Verlobt" + +#: ../../include/profile_selectors.php:42 +msgid "Married" +msgstr "Verheiratet" + +#: ../../include/profile_selectors.php:42 +msgid "Imaginarily married" +msgstr "imaginär verheiratet" + +#: ../../include/profile_selectors.php:42 +msgid "Partners" +msgstr "Partner" + +#: ../../include/profile_selectors.php:42 +msgid "Cohabiting" +msgstr "zusammenlebend" + +#: ../../include/profile_selectors.php:42 +msgid "Common law" +msgstr "wilde Ehe" + +#: ../../include/profile_selectors.php:42 +msgid "Happy" +msgstr "Glücklich" + +#: ../../include/profile_selectors.php:42 +msgid "Not looking" +msgstr "Nicht auf der Suche" + +#: ../../include/profile_selectors.php:42 +msgid "Swinger" +msgstr "Swinger" + +#: ../../include/profile_selectors.php:42 +msgid "Betrayed" +msgstr "Betrogen" + +#: ../../include/profile_selectors.php:42 +msgid "Separated" +msgstr "Getrennt" + +#: ../../include/profile_selectors.php:42 +msgid "Unstable" +msgstr "Unstabil" + +#: ../../include/profile_selectors.php:42 +msgid "Divorced" +msgstr "Geschieden" + +#: ../../include/profile_selectors.php:42 +msgid "Imaginarily divorced" +msgstr "imaginär geschieden" + +#: ../../include/profile_selectors.php:42 +msgid "Widowed" +msgstr "Verwitwet" + +#: ../../include/profile_selectors.php:42 +msgid "Uncertain" +msgstr "Unsicher" + +#: ../../include/profile_selectors.php:42 +msgid "It's complicated" +msgstr "Ist kompliziert" + +#: ../../include/profile_selectors.php:42 +msgid "Don't care" +msgstr "Ist mir nicht wichtig" + +#: ../../include/profile_selectors.php:42 +msgid "Ask me" +msgstr "Frag mich" + +#: ../../include/user.php:40 +msgid "An invitation is required." +msgstr "Du benötigst eine Einladung." + +#: ../../include/user.php:45 +msgid "Invitation could not be verified." +msgstr "Die Einladung konnte nicht überprüft werden." + +#: ../../include/user.php:53 +msgid "Invalid OpenID url" +msgstr "Ungültige OpenID URL" + +#: ../../include/user.php:74 +msgid "Please enter the required information." +msgstr "Bitte trage die erforderlichen Informationen ein." + +#: ../../include/user.php:88 +msgid "Please use a shorter name." +msgstr "Bitte verwende einen kürzeren Namen." + +#: ../../include/user.php:90 +msgid "Name too short." +msgstr "Der Name ist zu kurz." + +#: ../../include/user.php:105 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "Das scheint nicht Dein kompletter Name (Vor- und Nachname) zu sein." + +#: ../../include/user.php:110 +msgid "Your email domain is not among those allowed on this site." +msgstr "Die Domain Deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt." + +#: ../../include/user.php:113 +msgid "Not a valid email address." +msgstr "Keine gültige E-Mail-Adresse." + +#: ../../include/user.php:126 +msgid "Cannot use that email." +msgstr "Konnte diese E-Mail-Adresse nicht verwenden." + +#: ../../include/user.php:132 +msgid "" +"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " +"must also begin with a letter." +msgstr "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\", \"_\" und \"-\") bestehen, außerdem muss er mit einem Buchstaben beginnen." + +#: ../../include/user.php:138 ../../include/user.php:236 +msgid "Nickname is already registered. Please choose another." +msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen." + +#: ../../include/user.php:148 +msgid "" +"Nickname was once registered here and may not be re-used. Please choose " +"another." +msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen." + +#: ../../include/user.php:164 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden." + +#: ../../include/user.php:222 +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:257 +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:377 #, php-format -msgid "%s posted an update." -msgstr "%s hat ein Update veröffentlicht." +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tThank you for registering at %2$s. Your account has been created.\n" +"\t" +msgstr "\nHallo %1$s,\n\ndanke für Deine Registrierung auf %2$s. Dein Account wurde eingerichtet." + +#: ../../include/user.php:381 +#, php-format +msgid "" +"\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." +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:413 ../../mod/admin.php:838 +#, php-format +msgid "Registration details for %s" +msgstr "Details der Registration von %s" + +#: ../../include/acl_selectors.php:333 +msgid "Visible to everybody" +msgstr "Für jeden sichtbar" + +#: ../../object/Item.php:94 +msgid "This entry was edited" +msgstr "Dieser Beitrag wurde bearbeitet." + +#: ../../object/Item.php:116 ../../mod/photos.php:1359 +#: ../../mod/content.php:620 +msgid "Private Message" +msgstr "Private Nachricht" + +#: ../../object/Item.php:120 ../../mod/settings.php:681 +#: ../../mod/content.php:728 +msgid "Edit" +msgstr "Bearbeiten" + +#: ../../object/Item.php:133 ../../mod/content.php:763 +msgid "save to folder" +msgstr "In Ordner speichern" + +#: ../../object/Item.php:195 ../../mod/content.php:753 +msgid "add star" +msgstr "markieren" + +#: ../../object/Item.php:196 ../../mod/content.php:754 +msgid "remove star" +msgstr "Markierung entfernen" + +#: ../../object/Item.php:197 ../../mod/content.php:755 +msgid "toggle star status" +msgstr "Markierung umschalten" + +#: ../../object/Item.php:200 ../../mod/content.php:758 +msgid "starred" +msgstr "markiert" + +#: ../../object/Item.php:208 +msgid "ignore thread" +msgstr "Thread ignorieren" + +#: ../../object/Item.php:209 +msgid "unignore thread" +msgstr "Thread nicht mehr ignorieren" + +#: ../../object/Item.php:210 +msgid "toggle ignore status" +msgstr "Ignoriert-Status ein-/ausschalten" + +#: ../../object/Item.php:213 +msgid "ignored" +msgstr "Ignoriert" + +#: ../../object/Item.php:220 ../../mod/content.php:759 +msgid "add tag" +msgstr "Tag hinzufügen" + +#: ../../object/Item.php:231 ../../mod/photos.php:1542 +#: ../../mod/content.php:684 +msgid "I like this (toggle)" +msgstr "Ich mag das (toggle)" + +#: ../../object/Item.php:231 ../../mod/content.php:684 +msgid "like" +msgstr "mag ich" + +#: ../../object/Item.php:232 ../../mod/photos.php:1543 +#: ../../mod/content.php:685 +msgid "I don't like this (toggle)" +msgstr "Ich mag das nicht (toggle)" + +#: ../../object/Item.php:232 ../../mod/content.php:685 +msgid "dislike" +msgstr "mag ich nicht" + +#: ../../object/Item.php:234 ../../mod/content.php:687 +msgid "Share this" +msgstr "Weitersagen" + +#: ../../object/Item.php:234 ../../mod/content.php:687 +msgid "share" +msgstr "Teilen" + +#: ../../object/Item.php:328 ../../mod/content.php:854 +msgid "to" +msgstr "zu" + +#: ../../object/Item.php:329 +msgid "via" +msgstr "via" + +#: ../../object/Item.php:330 ../../mod/content.php:855 +msgid "Wall-to-Wall" +msgstr "Wall-to-Wall" + +#: ../../object/Item.php:331 ../../mod/content.php:856 +msgid "via Wall-To-Wall:" +msgstr "via Wall-To-Wall:" + +#: ../../object/Item.php:387 ../../mod/content.php:603 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d Kommentar" +msgstr[1] "%d Kommentare" + +#: ../../object/Item.php:675 ../../mod/photos.php:1562 +#: ../../mod/photos.php:1606 ../../mod/photos.php:1694 +#: ../../mod/content.php:707 +msgid "This is you" +msgstr "Das bist Du" + +#: ../../object/Item.php:679 ../../mod/content.php:711 +msgid "Bold" +msgstr "Fett" + +#: ../../object/Item.php:680 ../../mod/content.php:712 +msgid "Italic" +msgstr "Kursiv" + +#: ../../object/Item.php:681 ../../mod/content.php:713 +msgid "Underline" +msgstr "Unterstrichen" + +#: ../../object/Item.php:682 ../../mod/content.php:714 +msgid "Quote" +msgstr "Zitat" + +#: ../../object/Item.php:683 ../../mod/content.php:715 +msgid "Code" +msgstr "Code" + +#: ../../object/Item.php:684 ../../mod/content.php:716 +msgid "Image" +msgstr "Bild" + +#: ../../object/Item.php:685 ../../mod/content.php:717 +msgid "Link" +msgstr "Link" + +#: ../../object/Item.php:686 ../../mod/content.php:718 +msgid "Video" +msgstr "Video" + +#: ../../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/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:63 +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:70 +msgid "Message could not be sent." +msgstr "Nachricht konnte nicht gesendet werden." + +#: ../../mod/wallmessage.php:65 ../../mod/message.php:73 +msgid "Message collection failure." +msgstr "Konnte Nachrichten nicht abrufen." + +#: ../../mod/wallmessage.php:68 ../../mod/message.php:76 +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:319 +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:320 +#: ../../mod/message.php:553 +msgid "To:" +msgstr "An:" + +#: ../../mod/wallmessage.php:145 ../../mod/message.php:325 +#: ../../mod/message.php:555 +msgid "Subject:" +msgstr "Betreff:" + +#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134 +#: ../../mod/message.php:329 ../../mod/message.php:558 +msgid "Your message:" +msgstr "Deine Nachricht:" #: ../../mod/group.php:29 msgid "Group created." @@ -998,386 +3286,72 @@ msgstr "Gruppeneditor" msgid "Members" msgstr "Mitglieder" -#: ../../mod/apps.php:7 ../../index.php:212 -msgid "You must be logged in to use addons. " -msgstr "Sie müssen angemeldet sein um Addons benutzen zu können." +#: ../../mod/group.php:194 ../../mod/contacts.php:586 +msgid "All Contacts" +msgstr "Alle Kontakte" -#: ../../mod/apps.php:11 -msgid "Applications" -msgstr "Anwendungen" +#: ../../mod/group.php:224 ../../mod/profperm.php:105 +msgid "Click on a contact to add or remove." +msgstr "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen" -#: ../../mod/apps.php:14 -msgid "No installed applications." -msgstr "Keine Applikationen installiert." +#: ../../mod/delegate.php:101 +msgid "No potential page delegates located." +msgstr "Keine potentiellen Bevollmächtigten für die Seite gefunden." -#: ../../mod/dfrn_confirm.php:64 ../../mod/profiles.php:18 -#: ../../mod/profiles.php:133 ../../mod/profiles.php:179 -#: ../../mod/profiles.php:630 -msgid "Profile not found." -msgstr "Profil nicht gefunden." - -#: ../../mod/dfrn_confirm.php:120 ../../mod/fsuggest.php:20 -#: ../../mod/fsuggest.php:92 ../../mod/crepair.php:133 -msgid "Contact not found." -msgstr "Kontakt nicht gefunden." - -#: ../../mod/dfrn_confirm.php:121 +#: ../../mod/delegate.php:132 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." +"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/dfrn_confirm.php:240 -msgid "Response from remote site was not understood." -msgstr "Antwort der Gegenstelle unverständlich." +#: ../../mod/delegate.php:133 +msgid "Existing Page Managers" +msgstr "Vorhandene Seitenmanager" -#: ../../mod/dfrn_confirm.php:249 ../../mod/dfrn_confirm.php:254 -msgid "Unexpected response from remote site: " -msgstr "Unerwartete Antwort der Gegenstelle: " +#: ../../mod/delegate.php:135 +msgid "Existing Page Delegates" +msgstr "Vorhandene Bevollmächtigte für die Seite" -#: ../../mod/dfrn_confirm.php:263 -msgid "Confirmation completed successfully." -msgstr "Bestätigung erfolgreich abgeschlossen." +#: ../../mod/delegate.php:137 +msgid "Potential Delegates" +msgstr "Potentielle Bevollmächtigte" -#: ../../mod/dfrn_confirm.php:265 ../../mod/dfrn_confirm.php:279 -#: ../../mod/dfrn_confirm.php:286 -msgid "Remote site reported: " -msgstr "Gegenstelle meldet: " +#: ../../mod/delegate.php:139 ../../mod/tagrm.php:93 +msgid "Remove" +msgstr "Entfernen" -#: ../../mod/dfrn_confirm.php:277 -msgid "Temporary failure. Please wait and try again." -msgstr "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal." +#: ../../mod/delegate.php:140 +msgid "Add" +msgstr "Hinzufügen" -#: ../../mod/dfrn_confirm.php:284 -msgid "Introduction failed or was revoked." -msgstr "Kontaktanfrage schlug fehl oder wurde zurückgezogen." - -#: ../../mod/dfrn_confirm.php:429 -msgid "Unable to set contact photo." -msgstr "Konnte das Bild des Kontakts nicht speichern." - -#: ../../mod/dfrn_confirm.php:486 ../../include/conversation.php:172 -#: ../../include/diaspora.php:620 -#, php-format -msgid "%1$s is now friends with %2$s" -msgstr "%1$s ist nun mit %2$s befreundet" - -#: ../../mod/dfrn_confirm.php:571 -#, php-format -msgid "No user record found for '%s' " -msgstr "Für '%s' wurde kein Nutzer gefunden" - -#: ../../mod/dfrn_confirm.php:581 -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:592 -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:613 -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:627 -#, 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:647 -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:658 -msgid "Unable to set your contact credentials on our system." -msgstr "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden." - -#: ../../mod/dfrn_confirm.php:725 -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:752 ../../mod/dfrn_request.php:717 -#: ../../include/items.php:4008 -msgid "[Name Withheld]" -msgstr "[Name unterdrückt]" - -#: ../../mod/dfrn_confirm.php:797 -#, php-format -msgid "%1$s has joined %2$s" -msgstr "%1$s ist %2$s beigetreten" - -#: ../../mod/profile.php:21 ../../boot.php:1458 -msgid "Requested profile is not available." -msgstr "Das angefragte Profil ist nicht vorhanden." - -#: ../../mod/profile.php:180 -msgid "Tips for New Members" -msgstr "Tipps für neue Nutzer" - -#: ../../mod/videos.php:125 -msgid "No videos selected" -msgstr "Keine Videos ausgewählt" - -#: ../../mod/videos.php:226 ../../mod/photos.php:1031 -msgid "Access to this item is restricted." -msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt." - -#: ../../mod/videos.php:301 ../../include/text.php:1405 -msgid "View Video" -msgstr "Video ansehen" - -#: ../../mod/videos.php:308 ../../mod/photos.php:1808 -msgid "View Album" -msgstr "Album betrachten" - -#: ../../mod/videos.php:317 -msgid "Recent Videos" -msgstr "Neueste Videos" - -#: ../../mod/videos.php:319 -msgid "Upload New Videos" -msgstr "Neues Video hochladen" - -#: ../../mod/tagger.php:95 ../../include/conversation.php:266 -#, 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" - -#: ../../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/lostpass.php:19 -msgid "No valid account found." -msgstr "Kein gültiges Konto gefunden." - -#: ../../mod/lostpass.php:35 -msgid "Password reset request issued. Check your email." -msgstr "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe Deine E-Mail." - -#: ../../mod/lostpass.php:42 -#, php-format -msgid "" -"\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." -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 -#, php-format -msgid "" -"\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" -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 -#, php-format -msgid "Password reset requested at %s" -msgstr "Anfrage zum Zurücksetzen des Passworts auf %s erhalten" - -#: ../../mod/lostpass.php:92 -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:1280 -msgid "Password Reset" -msgstr "Passwort zurücksetzen" - -#: ../../mod/lostpass.php:110 -msgid "Your password has been reset as requested." -msgstr "Dein Passwort wurde wie gewünscht zurückgesetzt." - -#: ../../mod/lostpass.php:111 -msgid "Your new password is" -msgstr "Dein neues Passwort lautet" - -#: ../../mod/lostpass.php:112 -msgid "Save or copy your new password - and then" -msgstr "Speichere oder kopiere Dein neues Passwort - und dann" - -#: ../../mod/lostpass.php:113 -msgid "click here to login" -msgstr "hier klicken, um Dich anzumelden" - -#: ../../mod/lostpass.php:114 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Du kannst das Passwort in den Einstellungen ändern, sobald Du Dich erfolgreich angemeldet hast." - -#: ../../mod/lostpass.php:125 -#, php-format -msgid "" -"\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" -msgstr "\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)." - -#: ../../mod/lostpass.php:131 -#, php-format -msgid "" -"\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" -msgstr "\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." - -#: ../../mod/lostpass.php:147 -#, php-format -msgid "Your password has been changed at %s" -msgstr "Auf %s wurde Dein Passwort geändert" - -#: ../../mod/lostpass.php:159 -msgid "Forgot your Password?" -msgstr "Hast Du Dein Passwort vergessen?" - -#: ../../mod/lostpass.php:160 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"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 -msgid "Nickname or Email: " -msgstr "Spitzname oder E-Mail:" - -#: ../../mod/lostpass.php:162 -msgid "Reset" -msgstr "Zurücksetzen" - -#: ../../mod/like.php:166 ../../include/conversation.php:137 -#: ../../include/diaspora.php:2103 ../../view/theme/diabook/theme.php:480 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s mag %2$ss %3$s" - -#: ../../mod/like.php:168 ../../include/conversation.php:140 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s mag %2$ss %3$s nicht" - -#: ../../mod/ping.php:240 -msgid "{0} wants to be your friend" -msgstr "{0} möchte mit Dir in Kontakt treten" - -#: ../../mod/ping.php:245 -msgid "{0} sent you a message" -msgstr "{0} schickte Dir eine Nachricht" - -#: ../../mod/ping.php:250 -msgid "{0} requested registration" -msgstr "{0} möchte sich registrieren" - -#: ../../mod/ping.php:256 -#, php-format -msgid "{0} commented %s's post" -msgstr "{0} kommentierte einen Beitrag von %s" - -#: ../../mod/ping.php:261 -#, php-format -msgid "{0} liked %s's post" -msgstr "{0} mag %ss Beitrag" - -#: ../../mod/ping.php:266 -#, php-format -msgid "{0} disliked %s's post" -msgstr "{0} mag %ss Beitrag nicht" - -#: ../../mod/ping.php:271 -#, php-format -msgid "{0} is now friends with %s" -msgstr "{0} ist jetzt mit %s befreundet" - -#: ../../mod/ping.php:276 -msgid "{0} posted" -msgstr "{0} hat etwas veröffentlicht" - -#: ../../mod/ping.php:281 -#, php-format -msgid "{0} tagged %s's post with #%s" -msgstr "{0} hat %ss Beitrag mit dem Schlagwort #%s versehen" - -#: ../../mod/ping.php:287 -msgid "{0} mentioned you in a post" -msgstr "{0} hat Dich in einem Beitrag erwähnt" - -#: ../../mod/viewcontacts.php:41 -msgid "No contacts." -msgstr "Keine Kontakte." - -#: ../../mod/viewcontacts.php:78 ../../include/text.php:876 -msgid "View Contacts" -msgstr "Kontakte anzeigen" +#: ../../mod/delegate.php:141 +msgid "No entries." +msgstr "Keine Einträge." #: ../../mod/notifications.php:26 msgid "Invalid request identifier." msgstr "Invalid request identifier." #: ../../mod/notifications.php:35 ../../mod/notifications.php:165 -#: ../../mod/notifications.php:211 +#: ../../mod/notifications.php:215 msgid "Discard" msgstr "Verwerfen" +#: ../../mod/notifications.php:51 ../../mod/notifications.php:164 +#: ../../mod/notifications.php:214 ../../mod/contacts.php:455 +#: ../../mod/contacts.php:519 ../../mod/contacts.php:731 +msgid "Ignore" +msgstr "Ignorieren" + #: ../../mod/notifications.php:78 msgid "System" msgstr "System" -#: ../../mod/notifications.php:83 ../../include/nav.php:145 -msgid "Network" -msgstr "Netzwerk" - #: ../../mod/notifications.php:88 ../../mod/network.php:371 msgid "Personal" msgstr "Persönlich" -#: ../../mod/notifications.php:93 ../../include/nav.php:105 -#: ../../include/nav.php:148 ../../view/theme/diabook/theme.php:123 -msgid "Home" -msgstr "Pinnwand" - -#: ../../mod/notifications.php:98 ../../include/nav.php:154 -msgid "Introductions" -msgstr "Kontaktanfragen" - #: ../../mod/notifications.php:122 msgid "Show Ignored Requests" msgstr "Zeige ignorierte Anfragen" @@ -1386,7 +3360,7 @@ msgstr "Zeige ignorierte Anfragen" msgid "Hide Ignored Requests" msgstr "Verberge ignorierte Anfragen" -#: ../../mod/notifications.php:149 ../../mod/notifications.php:195 +#: ../../mod/notifications.php:149 ../../mod/notifications.php:199 msgid "Notification type: " msgstr "Benachrichtigungstyp: " @@ -1399,15 +3373,20 @@ msgstr "Kontaktvorschlag" msgid "suggested by %s" msgstr "vorgeschlagen von %s" -#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 +#: ../../mod/notifications.php:157 ../../mod/notifications.php:208 +#: ../../mod/contacts.php:525 +msgid "Hide this contact from others" +msgstr "Verbirg diesen Kontakt von anderen" + +#: ../../mod/notifications.php:158 ../../mod/notifications.php:209 msgid "Post a new friend activity" msgstr "Neue-Kontakt Nachricht senden" -#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 +#: ../../mod/notifications.php:158 ../../mod/notifications.php:209 msgid "if applicable" msgstr "falls anwendbar" -#: ../../mod/notifications.php:161 ../../mod/notifications.php:208 +#: ../../mod/notifications.php:161 ../../mod/notifications.php:212 #: ../../mod/admin.php:1005 msgid "Approve" msgstr "Genehmigen" @@ -1424,402 +3403,1310 @@ msgstr "ja" msgid "no" msgstr "nein" -#: ../../mod/notifications.php:188 -msgid "Approve as: " -msgstr "Genehmigen als: " +#: ../../mod/notifications.php:182 +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? \"Freund\" bedeutet, ihr gegenseitig die Beiträge des Anderen lesen dürft. \"Fan/Verehrer\", das du das lesen deiner Beiträge erlaubst aber nicht die Beiträge der anderen Seite lesen möchtest. Genehmigen als:" -#: ../../mod/notifications.php:189 +#: ../../mod/notifications.php:185 +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? \"Freund\" 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:" + +#: ../../mod/notifications.php:193 msgid "Friend" msgstr "Freund" -#: ../../mod/notifications.php:190 +#: ../../mod/notifications.php:194 msgid "Sharer" msgstr "Teilenden" -#: ../../mod/notifications.php:190 +#: ../../mod/notifications.php:194 msgid "Fan/Admirer" msgstr "Fan/Verehrer" -#: ../../mod/notifications.php:196 +#: ../../mod/notifications.php:200 msgid "Friend/Connect Request" msgstr "Kontakt-/Freundschaftsanfrage" -#: ../../mod/notifications.php:196 +#: ../../mod/notifications.php:200 msgid "New Follower" msgstr "Neuer Bewunderer" -#: ../../mod/notifications.php:217 +#: ../../mod/notifications.php:221 msgid "No introductions." msgstr "Keine Kontaktanfragen." -#: ../../mod/notifications.php:220 ../../include/nav.php:155 -msgid "Notifications" -msgstr "Benachrichtigungen" - -#: ../../mod/notifications.php:258 ../../mod/notifications.php:387 -#: ../../mod/notifications.php:478 +#: ../../mod/notifications.php:262 ../../mod/notifications.php:391 +#: ../../mod/notifications.php:482 #, php-format msgid "%s liked %s's post" msgstr "%s mag %ss Beitrag" -#: ../../mod/notifications.php:268 ../../mod/notifications.php:397 -#: ../../mod/notifications.php:488 +#: ../../mod/notifications.php:272 ../../mod/notifications.php:401 +#: ../../mod/notifications.php:492 #, php-format msgid "%s disliked %s's post" msgstr "%s mag %ss Beitrag nicht" -#: ../../mod/notifications.php:283 ../../mod/notifications.php:412 -#: ../../mod/notifications.php:503 +#: ../../mod/notifications.php:287 ../../mod/notifications.php:416 +#: ../../mod/notifications.php:507 #, php-format msgid "%s is now friends with %s" msgstr "%s ist jetzt mit %s befreundet" -#: ../../mod/notifications.php:290 ../../mod/notifications.php:419 +#: ../../mod/notifications.php:294 ../../mod/notifications.php:423 #, php-format msgid "%s created a new post" msgstr "%s hat einen neuen Beitrag erstellt" -#: ../../mod/notifications.php:291 ../../mod/notifications.php:420 -#: ../../mod/notifications.php:513 +#: ../../mod/notifications.php:295 ../../mod/notifications.php:424 +#: ../../mod/notifications.php:517 #, php-format msgid "%s commented on %s's post" msgstr "%s hat %ss Beitrag kommentiert" -#: ../../mod/notifications.php:306 +#: ../../mod/notifications.php:310 msgid "No more network notifications." msgstr "Keine weiteren Netzwerk-Benachrichtigungen." -#: ../../mod/notifications.php:310 +#: ../../mod/notifications.php:314 msgid "Network Notifications" msgstr "Netzwerk Benachrichtigungen" -#: ../../mod/notifications.php:336 ../../mod/notify.php:75 +#: ../../mod/notifications.php:340 ../../mod/notify.php:75 msgid "No more system notifications." msgstr "Keine weiteren Systembenachrichtigungen." -#: ../../mod/notifications.php:340 ../../mod/notify.php:79 +#: ../../mod/notifications.php:344 ../../mod/notify.php:79 msgid "System Notifications" msgstr "Systembenachrichtigungen" -#: ../../mod/notifications.php:435 +#: ../../mod/notifications.php:439 msgid "No more personal notifications." msgstr "Keine weiteren persönlichen Benachrichtigungen" -#: ../../mod/notifications.php:439 +#: ../../mod/notifications.php:443 msgid "Personal Notifications" msgstr "Persönliche Benachrichtigungen" -#: ../../mod/notifications.php:520 +#: ../../mod/notifications.php:524 msgid "No more home notifications." msgstr "Keine weiteren Pinnwand-Benachrichtigungen" -#: ../../mod/notifications.php:524 +#: ../../mod/notifications.php:528 msgid "Home Notifications" msgstr "Pinnwand Benachrichtigungen" -#: ../../mod/babel.php:17 -msgid "Source (bbcode) text:" -msgstr "Quelle (bbcode) Text:" +#: ../../mod/hcard.php:10 +msgid "No profile" +msgstr "Kein Profil" -#: ../../mod/babel.php:23 -msgid "Source (Diaspora) text to convert to BBcode:" -msgstr "Eingabe (Diaspora) nach BBCode zu konvertierender Text:" +#: ../../mod/settings.php:34 ../../mod/photos.php:80 +msgid "everybody" +msgstr "jeder" -#: ../../mod/babel.php:31 -msgid "Source input: " -msgstr "Originaltext:" +#: ../../mod/settings.php:41 ../../mod/admin.php:1016 +msgid "Account" +msgstr "Nutzerkonto" -#: ../../mod/babel.php:35 -msgid "bb2html (raw HTML): " -msgstr "bb2html (reines HTML): " +#: ../../mod/settings.php:46 +msgid "Additional features" +msgstr "Zusätzliche Features" -#: ../../mod/babel.php:39 -msgid "bb2html: " -msgstr "bb2html: " +#: ../../mod/settings.php:51 +msgid "Display" +msgstr "Anzeige" -#: ../../mod/babel.php:43 -msgid "bb2html2bb: " -msgstr "bb2html2bb: " +#: ../../mod/settings.php:57 ../../mod/settings.php:785 +msgid "Social Networks" +msgstr "Soziale Netzwerke" -#: ../../mod/babel.php:47 -msgid "bb2md: " -msgstr "bb2md: " +#: ../../mod/settings.php:62 ../../mod/admin.php:106 ../../mod/admin.php:1102 +#: ../../mod/admin.php:1155 +msgid "Plugins" +msgstr "Plugins" -#: ../../mod/babel.php:51 -msgid "bb2md2html: " -msgstr "bb2md2html: " +#: ../../mod/settings.php:72 +msgid "Connected apps" +msgstr "Verbundene Programme" -#: ../../mod/babel.php:55 -msgid "bb2dia2bb: " -msgstr "bb2dia2bb: " +#: ../../mod/settings.php:77 ../../mod/uexport.php:85 +msgid "Export personal data" +msgstr "Persönliche Daten exportieren" -#: ../../mod/babel.php:59 -msgid "bb2md2html2bb: " -msgstr "bb2md2html2bb: " +#: ../../mod/settings.php:82 +msgid "Remove account" +msgstr "Konto löschen" -#: ../../mod/babel.php:69 -msgid "Source input (Diaspora format): " -msgstr "Originaltext (Diaspora Format): " +#: ../../mod/settings.php:134 +msgid "Missing some important data!" +msgstr "Wichtige Daten fehlen!" -#: ../../mod/babel.php:74 -msgid "diaspora2bb: " -msgstr "diaspora2bb: " +#: ../../mod/settings.php:137 ../../mod/settings.php:645 +#: ../../mod/contacts.php:729 +msgid "Update" +msgstr "Aktualisierungen" -#: ../../mod/navigation.php:20 ../../include/nav.php:34 -msgid "Nothing new here" -msgstr "Keine Neuigkeiten" +#: ../../mod/settings.php:243 +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/navigation.php:24 ../../include/nav.php:38 -msgid "Clear notifications" -msgstr "Bereinige Benachrichtigungen" +#: ../../mod/settings.php:248 +msgid "Email settings updated." +msgstr "E-Mail Einstellungen bearbeitet." -#: ../../mod/message.php:9 ../../include/nav.php:164 -msgid "New Message" -msgstr "Neue Nachricht" +#: ../../mod/settings.php:263 +msgid "Features updated" +msgstr "Features aktualisiert" -#: ../../mod/message.php:63 ../../mod/wallmessage.php:56 -msgid "No recipient selected." -msgstr "Kein Empfänger gewählt." +#: ../../mod/settings.php:326 +msgid "Relocate message has been send to your contacts" +msgstr "Die Umzugsbenachrichtigung wurde an Deine Kontakte versendet." -#: ../../mod/message.php:67 -msgid "Unable to locate contact information." -msgstr "Konnte die Kontaktinformationen nicht finden." +#: ../../mod/settings.php:340 +msgid "Passwords do not match. Password unchanged." +msgstr "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert." -#: ../../mod/message.php:70 ../../mod/wallmessage.php:62 -msgid "Message could not be sent." -msgstr "Nachricht konnte nicht gesendet werden." +#: ../../mod/settings.php:345 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert." -#: ../../mod/message.php:73 ../../mod/wallmessage.php:65 -msgid "Message collection failure." -msgstr "Konnte Nachrichten nicht abrufen." +#: ../../mod/settings.php:353 +msgid "Wrong password." +msgstr "Falsches Passwort." -#: ../../mod/message.php:76 ../../mod/wallmessage.php:68 -msgid "Message sent." -msgstr "Nachricht gesendet." +#: ../../mod/settings.php:364 +msgid "Password changed." +msgstr "Passwort geändert." -#: ../../mod/message.php:182 ../../include/nav.php:161 -msgid "Messages" -msgstr "Nachrichten" +#: ../../mod/settings.php:366 +msgid "Password update failed. Please try again." +msgstr "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal." -#: ../../mod/message.php:207 -msgid "Do you really want to delete this message?" -msgstr "Möchtest Du wirklich diese Nachricht löschen?" +#: ../../mod/settings.php:433 +msgid " Please use a shorter name." +msgstr " Bitte verwende einen kürzeren Namen." -#: ../../mod/message.php:227 -msgid "Message deleted." -msgstr "Nachricht gelöscht." +#: ../../mod/settings.php:435 +msgid " Name too short." +msgstr " Name ist zu kurz." -#: ../../mod/message.php:258 -msgid "Conversation removed." -msgstr "Unterhaltung gelöscht." +#: ../../mod/settings.php:444 +msgid "Wrong Password" +msgstr "Falsches Passwort" -#: ../../mod/message.php:283 ../../mod/message.php:291 -#: ../../mod/message.php:466 ../../mod/message.php:474 -#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135 -#: ../../include/conversation.php:1002 ../../include/conversation.php:1020 -msgid "Please enter a link URL:" -msgstr "Bitte gib die URL des Links ein:" +#: ../../mod/settings.php:449 +msgid " Not valid email." +msgstr " Keine gültige E-Mail." -#: ../../mod/message.php:319 ../../mod/wallmessage.php:142 -msgid "Send Private Message" -msgstr "Private Nachricht senden" +#: ../../mod/settings.php:455 +msgid " Cannot change to that email." +msgstr "Ändern der E-Mail nicht möglich. " -#: ../../mod/message.php:320 ../../mod/message.php:553 -#: ../../mod/wallmessage.php:144 -msgid "To:" -msgstr "An:" +#: ../../mod/settings.php:511 +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/message.php:325 ../../mod/message.php:555 -#: ../../mod/wallmessage.php:145 -msgid "Subject:" -msgstr "Betreff:" +#: ../../mod/settings.php:515 +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/message.php:329 ../../mod/message.php:558 -#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134 -msgid "Your message:" -msgstr "Deine Nachricht:" +#: ../../mod/settings.php:545 +msgid "Settings updated." +msgstr "Einstellungen aktualisiert." -#: ../../mod/message.php:332 ../../mod/message.php:562 -#: ../../mod/wallmessage.php:154 ../../mod/editpost.php:110 -#: ../../include/conversation.php:1091 -msgid "Upload photo" -msgstr "Foto hochladen" +#: ../../mod/settings.php:618 ../../mod/settings.php:644 +#: ../../mod/settings.php:680 +msgid "Add application" +msgstr "Programm hinzufügen" -#: ../../mod/message.php:333 ../../mod/message.php:563 -#: ../../mod/wallmessage.php:155 ../../mod/editpost.php:114 -#: ../../include/conversation.php:1095 -msgid "Insert web link" -msgstr "Einen Link einfügen" +#: ../../mod/settings.php:619 ../../mod/settings.php:729 +#: ../../mod/settings.php:803 ../../mod/settings.php:885 +#: ../../mod/settings.php:1118 ../../mod/admin.php:620 +#: ../../mod/admin.php:1156 ../../mod/admin.php:1358 ../../mod/admin.php:1445 +msgid "Save Settings" +msgstr "Einstellungen speichern" -#: ../../mod/message.php:334 ../../mod/message.php:565 -#: ../../mod/content.php:499 ../../mod/content.php:883 -#: ../../mod/wallmessage.php:156 ../../mod/editpost.php:124 -#: ../../mod/photos.php:1545 ../../object/Item.php:364 -#: ../../include/conversation.php:692 ../../include/conversation.php:1109 -msgid "Please wait" -msgstr "Bitte warten" - -#: ../../mod/message.php:371 -msgid "No messages." -msgstr "Keine Nachrichten." - -#: ../../mod/message.php:378 -#, php-format -msgid "Unknown sender - %s" -msgstr "'Unbekannter Absender - %s" - -#: ../../mod/message.php:381 -#, php-format -msgid "You and %s" -msgstr "Du und %s" - -#: ../../mod/message.php:384 -#, php-format -msgid "%s and You" -msgstr "%s und Du" - -#: ../../mod/message.php:405 ../../mod/message.php:546 -msgid "Delete conversation" -msgstr "Unterhaltung löschen" - -#: ../../mod/message.php:408 -msgid "D, d M Y - g:i A" -msgstr "D, d. M Y - g:i A" - -#: ../../mod/message.php:411 -#, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "%d Nachricht" -msgstr[1] "%d Nachrichten" - -#: ../../mod/message.php:450 -msgid "Message not available." -msgstr "Nachricht nicht verfügbar." - -#: ../../mod/message.php:520 -msgid "Delete message" -msgstr "Nachricht löschen" - -#: ../../mod/message.php:548 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Sichere Kommunikation ist nicht verfügbar. Eventuell kannst Du auf der Profilseite des Absenders antworten." - -#: ../../mod/message.php:552 -msgid "Send Reply" -msgstr "Antwort senden" - -#: ../../mod/update_display.php:22 ../../mod/update_community.php:18 -#: ../../mod/update_notes.php:37 ../../mod/update_profile.php:41 -#: ../../mod/update_network.php:25 -msgid "[Embedded content - reload page to view]" -msgstr "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]" - -#: ../../mod/crepair.php:106 -msgid "Contact settings applied." -msgstr "Einstellungen zum Kontakt angewandt." - -#: ../../mod/crepair.php:108 -msgid "Contact update failed." -msgstr "Konnte den Kontakt nicht aktualisieren." - -#: ../../mod/crepair.php:139 -msgid "Repair Contact Settings" -msgstr "Kontakteinstellungen reparieren" - -#: ../../mod/crepair.php:141 -msgid "" -"WARNING: This is highly advanced and if you enter incorrect" -" information your communications with this contact may stop working." -msgstr "ACHTUNG: Das sind Experten-Einstellungen! Wenn Du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr." - -#: ../../mod/crepair.php:142 -msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." -msgstr "Bitte nutze den Zurück-Button Deines Browsers jetzt, wenn Du Dir unsicher bist, was Du tun willst." - -#: ../../mod/crepair.php:148 -msgid "Return to contact editor" -msgstr "Zurück zum Kontakteditor" - -#: ../../mod/crepair.php:159 ../../mod/crepair.php:161 -msgid "No mirroring" -msgstr "Kein Spiegeln" - -#: ../../mod/crepair.php:159 -msgid "Mirror as forwarded posting" -msgstr "Spiegeln als weitergeleitete Beiträge" - -#: ../../mod/crepair.php:159 ../../mod/crepair.php:161 -msgid "Mirror as my own posting" -msgstr "Spiegeln als meine eigenen Beiträge" - -#: ../../mod/crepair.php:165 ../../mod/admin.php:1003 ../../mod/admin.php:1015 -#: ../../mod/admin.php:1016 ../../mod/admin.php:1029 -#: ../../mod/settings.php:616 ../../mod/settings.php:642 +#: ../../mod/settings.php:621 ../../mod/settings.php:647 +#: ../../mod/admin.php:1003 ../../mod/admin.php:1015 ../../mod/admin.php:1016 +#: ../../mod/admin.php:1029 ../../mod/crepair.php:165 msgid "Name" msgstr "Name" -#: ../../mod/crepair.php:166 -msgid "Account Nickname" -msgstr "Konto-Spitzname" +#: ../../mod/settings.php:622 ../../mod/settings.php:648 +msgid "Consumer Key" +msgstr "Consumer Key" -#: ../../mod/crepair.php:167 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@Tagname - überschreibt Name/Spitzname" +#: ../../mod/settings.php:623 ../../mod/settings.php:649 +msgid "Consumer Secret" +msgstr "Consumer Secret" -#: ../../mod/crepair.php:168 -msgid "Account URL" -msgstr "Konto-URL" +#: ../../mod/settings.php:624 ../../mod/settings.php:650 +msgid "Redirect" +msgstr "Umleiten" -#: ../../mod/crepair.php:169 -msgid "Friend Request URL" -msgstr "URL für Freundschaftsanfragen" +#: ../../mod/settings.php:625 ../../mod/settings.php:651 +msgid "Icon url" +msgstr "Icon URL" -#: ../../mod/crepair.php:170 -msgid "Friend Confirm URL" -msgstr "URL für Bestätigungen von Freundschaftsanfragen" +#: ../../mod/settings.php:636 +msgid "You can't edit this application." +msgstr "Du kannst dieses Programm nicht bearbeiten." -#: ../../mod/crepair.php:171 -msgid "Notification Endpoint URL" -msgstr "URL-Endpunkt für Benachrichtigungen" +#: ../../mod/settings.php:679 +msgid "Connected Apps" +msgstr "Verbundene Programme" -#: ../../mod/crepair.php:172 -msgid "Poll/Feed URL" -msgstr "Pull/Feed-URL" +#: ../../mod/settings.php:683 +msgid "Client key starts with" +msgstr "Anwenderschlüssel beginnt mit" -#: ../../mod/crepair.php:173 -msgid "New photo from this URL" -msgstr "Neues Foto von dieser URL" +#: ../../mod/settings.php:684 +msgid "No name" +msgstr "Kein Name" -#: ../../mod/crepair.php:174 -msgid "Remote Self" -msgstr "Entfernte Konten" +#: ../../mod/settings.php:685 +msgid "Remove authorization" +msgstr "Autorisierung entziehen" -#: ../../mod/crepair.php:176 -msgid "Mirror postings from this contact" -msgstr "Spiegle Beiträge dieses Kontakts" +#: ../../mod/settings.php:697 +msgid "No Plugin settings configured" +msgstr "Keine Plugin-Einstellungen konfiguriert" -#: ../../mod/crepair.php:176 +#: ../../mod/settings.php:705 +msgid "Plugin Settings" +msgstr "Plugin-Einstellungen" + +#: ../../mod/settings.php:719 +msgid "Off" +msgstr "Aus" + +#: ../../mod/settings.php:719 +msgid "On" +msgstr "An" + +#: ../../mod/settings.php:727 +msgid "Additional Features" +msgstr "Zusätzliche Features" + +#: ../../mod/settings.php:741 ../../mod/settings.php:742 +#, 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:741 ../../mod/settings.php:742 +msgid "enabled" +msgstr "eingeschaltet" + +#: ../../mod/settings.php:741 ../../mod/settings.php:742 +msgid "disabled" +msgstr "ausgeschaltet" + +#: ../../mod/settings.php:742 +msgid "StatusNet" +msgstr "StatusNet" + +#: ../../mod/settings.php:778 +msgid "Email access is disabled on this site." +msgstr "Zugriff auf E-Mails für diese Seite deaktiviert." + +#: ../../mod/settings.php:790 +msgid "Email/Mailbox Setup" +msgstr "E-Mail/Postfach-Einstellungen" + +#: ../../mod/settings.php:791 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." +"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/bookmarklet.php:12 ../../boot.php:1266 ../../include/nav.php:92 -msgid "Login" -msgstr "Anmeldung" +#: ../../mod/settings.php:792 +msgid "Last successful email check:" +msgstr "Letzter erfolgreicher E-Mail Check" -#: ../../mod/bookmarklet.php:41 -msgid "The post was created" -msgstr "Der Beitrag wurde angelegt" +#: ../../mod/settings.php:794 +msgid "IMAP server name:" +msgstr "IMAP-Server-Name:" -#: ../../mod/viewsrc.php:7 -msgid "Access denied." -msgstr "Zugriff verweigert." +#: ../../mod/settings.php:795 +msgid "IMAP port:" +msgstr "IMAP-Port:" + +#: ../../mod/settings.php:796 +msgid "Security:" +msgstr "Sicherheit:" + +#: ../../mod/settings.php:796 ../../mod/settings.php:801 +msgid "None" +msgstr "Keine" + +#: ../../mod/settings.php:797 +msgid "Email login name:" +msgstr "E-Mail-Login-Name:" + +#: ../../mod/settings.php:798 +msgid "Email password:" +msgstr "E-Mail-Passwort:" + +#: ../../mod/settings.php:799 +msgid "Reply-to address:" +msgstr "Reply-to Adresse:" + +#: ../../mod/settings.php:800 +msgid "Send public posts to all email contacts:" +msgstr "Sende öffentliche Beiträge an alle E-Mail-Kontakte:" + +#: ../../mod/settings.php:801 +msgid "Action after import:" +msgstr "Aktion nach Import:" + +#: ../../mod/settings.php:801 +msgid "Mark as seen" +msgstr "Als gelesen markieren" + +#: ../../mod/settings.php:801 +msgid "Move to folder" +msgstr "In einen Ordner verschieben" + +#: ../../mod/settings.php:802 +msgid "Move to folder:" +msgstr "In diesen Ordner verschieben:" + +#: ../../mod/settings.php:833 ../../mod/admin.php:545 +msgid "No special theme for mobile devices" +msgstr "Kein spezielles Theme für mobile Geräte verwenden." + +#: ../../mod/settings.php:883 +msgid "Display Settings" +msgstr "Anzeige-Einstellungen" + +#: ../../mod/settings.php:889 ../../mod/settings.php:904 +msgid "Display Theme:" +msgstr "Theme:" + +#: ../../mod/settings.php:890 +msgid "Mobile Theme:" +msgstr "Mobiles Theme" + +#: ../../mod/settings.php:891 +msgid "Update browser every xx seconds" +msgstr "Browser alle xx Sekunden aktualisieren" + +#: ../../mod/settings.php:891 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Minimal 10 Sekunden, kein Maximum" + +#: ../../mod/settings.php:892 +msgid "Number of items to display per page:" +msgstr "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: " + +#: ../../mod/settings.php:892 ../../mod/settings.php:893 +msgid "Maximum of 100 items" +msgstr "Maximal 100 Beiträge" + +#: ../../mod/settings.php:893 +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:894 +msgid "Don't show emoticons" +msgstr "Keine Smilies anzeigen" + +#: ../../mod/settings.php:895 +msgid "Don't show notices" +msgstr "Info-Popups nicht anzeigen" + +#: ../../mod/settings.php:896 +msgid "Infinite scroll" +msgstr "Endloses Scrollen" + +#: ../../mod/settings.php:897 +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:974 +msgid "User Types" +msgstr "Nutzer Art" + +#: ../../mod/settings.php:975 +msgid "Community Types" +msgstr "Gemeinschafts Art" + +#: ../../mod/settings.php:976 +msgid "Normal Account Page" +msgstr "Normales Konto" + +#: ../../mod/settings.php:977 +msgid "This account is a normal personal profile" +msgstr "Dieses Konto ist ein normales persönliches Profil" + +#: ../../mod/settings.php:980 +msgid "Soapbox Page" +msgstr "Marktschreier-Konto" + +#: ../../mod/settings.php:981 +msgid "Automatically approve all connection/friend requests as read-only fans" +msgstr "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert" + +#: ../../mod/settings.php:984 +msgid "Community Forum/Celebrity Account" +msgstr "Forum/Promi-Konto" + +#: ../../mod/settings.php:985 +msgid "" +"Automatically approve all connection/friend requests as read-write fans" +msgstr "Kontaktanfragen werden automatisch als Lese-und-Schreib-Fans akzeptiert" + +#: ../../mod/settings.php:988 +msgid "Automatic Friend Page" +msgstr "Automatische Freunde Seite" + +#: ../../mod/settings.php:989 +msgid "Automatically approve all connection/friend requests as friends" +msgstr "Kontaktanfragen werden automatisch als Freund akzeptiert" + +#: ../../mod/settings.php:992 +msgid "Private Forum [Experimental]" +msgstr "Privates Forum [Versuchsstadium]" + +#: ../../mod/settings.php:993 +msgid "Private forum - approved members only" +msgstr "Privates Forum, nur für Mitglieder" + +#: ../../mod/settings.php:1005 +msgid "OpenID:" +msgstr "OpenID:" + +#: ../../mod/settings.php:1005 +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:1015 +msgid "Publish your default profile in your local site directory?" +msgstr "Darf Dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?" + +#: ../../mod/settings.php:1015 ../../mod/settings.php:1021 +#: ../../mod/settings.php:1029 ../../mod/settings.php:1033 +#: ../../mod/settings.php:1038 ../../mod/settings.php:1044 +#: ../../mod/settings.php:1050 ../../mod/settings.php:1056 +#: ../../mod/settings.php:1086 ../../mod/settings.php:1087 +#: ../../mod/settings.php:1088 ../../mod/settings.php:1089 +#: ../../mod/settings.php:1090 ../../mod/register.php:234 +#: ../../mod/dfrn_request.php:830 ../../mod/api.php:106 +#: ../../mod/profiles.php:661 ../../mod/profiles.php:665 +msgid "No" +msgstr "Nein" + +#: ../../mod/settings.php:1021 +msgid "Publish your default profile in the global social directory?" +msgstr "Darf Dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?" + +#: ../../mod/settings.php:1029 +msgid "Hide your contact/friend list from viewers of your default profile?" +msgstr "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?" + +#: ../../mod/settings.php:1033 +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:1038 +msgid "Allow friends to post to your profile page?" +msgstr "Dürfen Deine Kontakte auf Deine Pinnwand schreiben?" + +#: ../../mod/settings.php:1044 +msgid "Allow friends to tag your posts?" +msgstr "Dürfen Deine Kontakte Deine Beiträge mit Schlagwörtern versehen?" + +#: ../../mod/settings.php:1050 +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:1056 +msgid "Permit unknown people to send you private mail?" +msgstr "Dürfen Dir Unbekannte private Nachrichten schicken?" + +#: ../../mod/settings.php:1064 +msgid "Profile is not published." +msgstr "Profil ist nicht veröffentlicht." + +#: ../../mod/settings.php:1067 ../../mod/profile_photo.php:248 +msgid "or" +msgstr "oder" + +#: ../../mod/settings.php:1072 +msgid "Your Identity Address is" +msgstr "Die Adresse Deines Profils lautet:" + +#: ../../mod/settings.php:1083 +msgid "Automatically expire posts after this many days:" +msgstr "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:" + +#: ../../mod/settings.php:1083 +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:1084 +msgid "Advanced expiration settings" +msgstr "Erweiterte Verfallseinstellungen" + +#: ../../mod/settings.php:1085 +msgid "Advanced Expiration" +msgstr "Erweitertes Verfallen" + +#: ../../mod/settings.php:1086 +msgid "Expire posts:" +msgstr "Beiträge verfallen lassen:" + +#: ../../mod/settings.php:1087 +msgid "Expire personal notes:" +msgstr "Persönliche Notizen verfallen lassen:" + +#: ../../mod/settings.php:1088 +msgid "Expire starred posts:" +msgstr "Markierte Beiträge verfallen lassen:" + +#: ../../mod/settings.php:1089 +msgid "Expire photos:" +msgstr "Fotos verfallen lassen:" + +#: ../../mod/settings.php:1090 +msgid "Only expire posts by others:" +msgstr "Nur Beiträge anderer verfallen:" + +#: ../../mod/settings.php:1116 +msgid "Account Settings" +msgstr "Kontoeinstellungen" + +#: ../../mod/settings.php:1124 +msgid "Password Settings" +msgstr "Passwort-Einstellungen" + +#: ../../mod/settings.php:1125 +msgid "New Password:" +msgstr "Neues Passwort:" + +#: ../../mod/settings.php:1126 +msgid "Confirm:" +msgstr "Bestätigen:" + +#: ../../mod/settings.php:1126 +msgid "Leave password fields blank unless changing" +msgstr "Lass die Passwort-Felder leer, außer Du willst das Passwort ändern" + +#: ../../mod/settings.php:1127 +msgid "Current Password:" +msgstr "Aktuelles Passwort:" + +#: ../../mod/settings.php:1127 ../../mod/settings.php:1128 +msgid "Your current password to confirm the changes" +msgstr "Dein aktuelles Passwort um die Änderungen zu bestätigen" + +#: ../../mod/settings.php:1128 +msgid "Password:" +msgstr "Passwort:" + +#: ../../mod/settings.php:1132 +msgid "Basic Settings" +msgstr "Grundeinstellungen" + +#: ../../mod/settings.php:1134 +msgid "Email Address:" +msgstr "E-Mail-Adresse:" + +#: ../../mod/settings.php:1135 +msgid "Your Timezone:" +msgstr "Deine Zeitzone:" + +#: ../../mod/settings.php:1136 +msgid "Default Post Location:" +msgstr "Standardstandort:" + +#: ../../mod/settings.php:1137 +msgid "Use Browser Location:" +msgstr "Standort des Browsers verwenden:" + +#: ../../mod/settings.php:1140 +msgid "Security and Privacy Settings" +msgstr "Sicherheits- und Privatsphäre-Einstellungen" + +#: ../../mod/settings.php:1142 +msgid "Maximum Friend Requests/Day:" +msgstr "Maximale Anzahl von Freundschaftsanfragen/Tag:" + +#: ../../mod/settings.php:1142 ../../mod/settings.php:1172 +msgid "(to prevent spam abuse)" +msgstr "(um SPAM zu vermeiden)" + +#: ../../mod/settings.php:1143 +msgid "Default Post Permissions" +msgstr "Standard-Zugriffsrechte für Beiträge" + +#: ../../mod/settings.php:1144 +msgid "(click to open/close)" +msgstr "(klicke zum öffnen/schließen)" + +#: ../../mod/settings.php:1153 ../../mod/photos.php:1146 +#: ../../mod/photos.php:1519 +msgid "Show to Groups" +msgstr "Zeige den Gruppen" + +#: ../../mod/settings.php:1154 ../../mod/photos.php:1147 +#: ../../mod/photos.php:1520 +msgid "Show to Contacts" +msgstr "Zeige den Kontakten" + +#: ../../mod/settings.php:1155 +msgid "Default Private Post" +msgstr "Privater Standardbeitrag" + +#: ../../mod/settings.php:1156 +msgid "Default Public Post" +msgstr "Öffentlicher Standardbeitrag" + +#: ../../mod/settings.php:1160 +msgid "Default Permissions for New Posts" +msgstr "Standardberechtigungen für neue Beiträge" + +#: ../../mod/settings.php:1172 +msgid "Maximum private messages per day from unknown people:" +msgstr "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:" + +#: ../../mod/settings.php:1175 +msgid "Notification Settings" +msgstr "Benachrichtigungseinstellungen" + +#: ../../mod/settings.php:1176 +msgid "By default post a status message when:" +msgstr "Standardmäßig eine Statusnachricht posten, wenn:" + +#: ../../mod/settings.php:1177 +msgid "accepting a friend request" +msgstr "– Du eine Kontaktanfrage akzeptierst" + +#: ../../mod/settings.php:1178 +msgid "joining a forum/community" +msgstr "– Du einem Forum/einer Gemeinschaftsseite beitrittst" + +#: ../../mod/settings.php:1179 +msgid "making an interesting profile change" +msgstr "– Du eine interessante Änderung an Deinem Profil durchführst" + +#: ../../mod/settings.php:1180 +msgid "Send a notification email when:" +msgstr "Benachrichtigungs-E-Mail senden wenn:" + +#: ../../mod/settings.php:1181 +msgid "You receive an introduction" +msgstr "– Du eine Kontaktanfrage erhältst" + +#: ../../mod/settings.php:1182 +msgid "Your introductions are confirmed" +msgstr "– eine Deiner Kontaktanfragen akzeptiert wurde" + +#: ../../mod/settings.php:1183 +msgid "Someone writes on your profile wall" +msgstr "– jemand etwas auf Deine Pinnwand schreibt" + +#: ../../mod/settings.php:1184 +msgid "Someone writes a followup comment" +msgstr "– jemand auch einen Kommentar verfasst" + +#: ../../mod/settings.php:1185 +msgid "You receive a private message" +msgstr "– Du eine private Nachricht erhältst" + +#: ../../mod/settings.php:1186 +msgid "You receive a friend suggestion" +msgstr "– Du eine Empfehlung erhältst" + +#: ../../mod/settings.php:1187 +msgid "You are tagged in a post" +msgstr "– Du in einem Beitrag erwähnt wirst" + +#: ../../mod/settings.php:1188 +msgid "You are poked/prodded/etc. in a post" +msgstr "– Du von jemandem angestupst oder sonstwie behandelt wirst" + +#: ../../mod/settings.php:1190 +msgid "Text-only notification emails" +msgstr "Benachrichtigungs E-Mail als Rein-Text." + +#: ../../mod/settings.php:1192 +msgid "Send text only notification emails, without the html part" +msgstr "Sende Benachrichtigungs E-Mail als Rein-Text - ohne HTML-Teil" + +#: ../../mod/settings.php:1194 +msgid "Advanced Account/Page Type Settings" +msgstr "Erweiterte Konto-/Seitentyp-Einstellungen" + +#: ../../mod/settings.php:1195 +msgid "Change the behaviour of this account for special situations" +msgstr "Verhalten dieses Kontos in bestimmten Situationen:" + +#: ../../mod/settings.php:1198 +msgid "Relocate" +msgstr "Umziehen" + +#: ../../mod/settings.php:1199 +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:1200 +msgid "Resend relocate message to contacts" +msgstr "Umzugsbenachrichtigung erneut an Kontakte senden" + +#: ../../mod/common.php:42 +msgid "Common Friends" +msgstr "Gemeinsame Freunde" + +#: ../../mod/common.php:78 +msgid "No contacts in common." +msgstr "Keine gemeinsamen Kontakte." + +#: ../../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/contacts.php:112 +#, php-format +msgid "%d contact edited." +msgid_plural "%d contacts edited" +msgstr[0] "%d Kontakt bearbeitet." +msgstr[1] "%d Kontakte bearbeitet" + +#: ../../mod/contacts.php:143 ../../mod/contacts.php:276 +msgid "Could not access contact record." +msgstr "Konnte nicht auf die Kontaktdaten zugreifen." + +#: ../../mod/contacts.php:157 +msgid "Could not locate selected profile." +msgstr "Konnte das ausgewählte Profil nicht finden." + +#: ../../mod/contacts.php:190 +msgid "Contact updated." +msgstr "Kontakt aktualisiert." + +#: ../../mod/contacts.php:192 ../../mod/dfrn_request.php:576 +msgid "Failed to update contact record." +msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen." + +#: ../../mod/contacts.php:291 +msgid "Contact has been blocked" +msgstr "Kontakt wurde blockiert" + +#: ../../mod/contacts.php:291 +msgid "Contact has been unblocked" +msgstr "Kontakt wurde wieder freigegeben" + +#: ../../mod/contacts.php:302 +msgid "Contact has been ignored" +msgstr "Kontakt wurde ignoriert" + +#: ../../mod/contacts.php:302 +msgid "Contact has been unignored" +msgstr "Kontakt wird nicht mehr ignoriert" + +#: ../../mod/contacts.php:314 +msgid "Contact has been archived" +msgstr "Kontakt wurde archiviert" + +#: ../../mod/contacts.php:314 +msgid "Contact has been unarchived" +msgstr "Kontakt wurde aus dem Archiv geholt" + +#: ../../mod/contacts.php:339 ../../mod/contacts.php:727 +msgid "Do you really want to delete this contact?" +msgstr "Möchtest Du wirklich diesen Kontakt löschen?" + +#: ../../mod/contacts.php:356 +msgid "Contact has been removed." +msgstr "Kontakt wurde entfernt." + +#: ../../mod/contacts.php:394 +#, php-format +msgid "You are mutual friends with %s" +msgstr "Du hast mit %s eine beidseitige Freundschaft" + +#: ../../mod/contacts.php:398 +#, php-format +msgid "You are sharing with %s" +msgstr "Du teilst mit %s" + +#: ../../mod/contacts.php:403 +#, php-format +msgid "%s is sharing with you" +msgstr "%s teilt mit Dir" + +#: ../../mod/contacts.php:423 +msgid "Private communications are not available for this contact." +msgstr "Private Kommunikation ist für diesen Kontakt nicht verfügbar." + +#: ../../mod/contacts.php:426 ../../mod/admin.php:569 +msgid "Never" +msgstr "Niemals" + +#: ../../mod/contacts.php:430 +msgid "(Update was successful)" +msgstr "(Aktualisierung war erfolgreich)" + +#: ../../mod/contacts.php:430 +msgid "(Update was not successful)" +msgstr "(Aktualisierung war nicht erfolgreich)" + +#: ../../mod/contacts.php:432 +msgid "Suggest friends" +msgstr "Kontakte vorschlagen" + +#: ../../mod/contacts.php:436 +#, php-format +msgid "Network type: %s" +msgstr "Netzwerktyp: %s" + +#: ../../mod/contacts.php:444 +msgid "View all contacts" +msgstr "Alle Kontakte anzeigen" + +#: ../../mod/contacts.php:449 ../../mod/contacts.php:518 +#: ../../mod/contacts.php:730 ../../mod/admin.php:1009 +msgid "Unblock" +msgstr "Entsperren" + +#: ../../mod/contacts.php:449 ../../mod/contacts.php:518 +#: ../../mod/contacts.php:730 ../../mod/admin.php:1008 +msgid "Block" +msgstr "Sperren" + +#: ../../mod/contacts.php:452 +msgid "Toggle Blocked status" +msgstr "Geblockt-Status ein-/ausschalten" + +#: ../../mod/contacts.php:455 ../../mod/contacts.php:519 +#: ../../mod/contacts.php:731 +msgid "Unignore" +msgstr "Ignorieren aufheben" + +#: ../../mod/contacts.php:458 +msgid "Toggle Ignored status" +msgstr "Ignoriert-Status ein-/ausschalten" + +#: ../../mod/contacts.php:462 ../../mod/contacts.php:732 +msgid "Unarchive" +msgstr "Aus Archiv zurückholen" + +#: ../../mod/contacts.php:462 ../../mod/contacts.php:732 +msgid "Archive" +msgstr "Archivieren" + +#: ../../mod/contacts.php:465 +msgid "Toggle Archive status" +msgstr "Archiviert-Status ein-/ausschalten" + +#: ../../mod/contacts.php:468 +msgid "Repair" +msgstr "Reparieren" + +#: ../../mod/contacts.php:471 +msgid "Advanced Contact Settings" +msgstr "Fortgeschrittene Kontakteinstellungen" + +#: ../../mod/contacts.php:477 +msgid "Communications lost with this contact!" +msgstr "Verbindungen mit diesem Kontakt verloren!" + +#: ../../mod/contacts.php:480 +msgid "Fetch further information for feeds" +msgstr "Weitere Informationen zu Feeds holen" + +#: ../../mod/contacts.php:481 +msgid "Disabled" +msgstr "Deaktiviert" + +#: ../../mod/contacts.php:481 +msgid "Fetch information" +msgstr "Beziehe Information" + +#: ../../mod/contacts.php:481 +msgid "Fetch information and keywords" +msgstr "Beziehe Information und Schlüsselworte" + +#: ../../mod/contacts.php:490 +msgid "Contact Editor" +msgstr "Kontakt Editor" + +#: ../../mod/contacts.php:493 +msgid "Profile Visibility" +msgstr "Profil-Sichtbarkeit" + +#: ../../mod/contacts.php:494 +#, 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:495 +msgid "Contact Information / Notes" +msgstr "Kontakt Informationen / Notizen" + +#: ../../mod/contacts.php:496 +msgid "Edit contact notes" +msgstr "Notizen zum Kontakt bearbeiten" + +#: ../../mod/contacts.php:501 ../../mod/contacts.php:695 +#: ../../mod/nogroup.php:40 ../../mod/viewcontacts.php:64 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Besuche %ss Profil [%s]" + +#: ../../mod/contacts.php:502 +msgid "Block/Unblock contact" +msgstr "Kontakt blockieren/freischalten" + +#: ../../mod/contacts.php:503 +msgid "Ignore contact" +msgstr "Ignoriere den Kontakt" + +#: ../../mod/contacts.php:504 +msgid "Repair URL settings" +msgstr "URL Einstellungen reparieren" + +#: ../../mod/contacts.php:505 +msgid "View conversations" +msgstr "Unterhaltungen anzeigen" + +#: ../../mod/contacts.php:507 +msgid "Delete contact" +msgstr "Lösche den Kontakt" + +#: ../../mod/contacts.php:511 +msgid "Last update:" +msgstr "Letzte Aktualisierung: " + +#: ../../mod/contacts.php:513 +msgid "Update public posts" +msgstr "Öffentliche Beiträge aktualisieren" + +#: ../../mod/contacts.php:515 ../../mod/admin.php:1503 +msgid "Update now" +msgstr "Jetzt aktualisieren" + +#: ../../mod/contacts.php:522 +msgid "Currently blocked" +msgstr "Derzeit geblockt" + +#: ../../mod/contacts.php:523 +msgid "Currently ignored" +msgstr "Derzeit ignoriert" + +#: ../../mod/contacts.php:524 +msgid "Currently archived" +msgstr "Momentan archiviert" + +#: ../../mod/contacts.php:525 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "Antworten/Likes auf deine öffentlichen Beiträge könnten weiterhin sichtbar sein" + +#: ../../mod/contacts.php:526 +msgid "Notification for new posts" +msgstr "Benachrichtigung bei neuen Beiträgen" + +#: ../../mod/contacts.php:526 +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:529 +msgid "Blacklisted keywords" +msgstr "Blacklistete Schlüsselworte " + +#: ../../mod/contacts.php:529 +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:580 +msgid "Suggestions" +msgstr "Kontaktvorschläge" + +#: ../../mod/contacts.php:583 +msgid "Suggest potential friends" +msgstr "Freunde vorschlagen" + +#: ../../mod/contacts.php:589 +msgid "Show all contacts" +msgstr "Alle Kontakte anzeigen" + +#: ../../mod/contacts.php:592 +msgid "Unblocked" +msgstr "Ungeblockt" + +#: ../../mod/contacts.php:595 +msgid "Only show unblocked contacts" +msgstr "Nur nicht-blockierte Kontakte anzeigen" + +#: ../../mod/contacts.php:599 +msgid "Blocked" +msgstr "Geblockt" + +#: ../../mod/contacts.php:602 +msgid "Only show blocked contacts" +msgstr "Nur blockierte Kontakte anzeigen" + +#: ../../mod/contacts.php:606 +msgid "Ignored" +msgstr "Ignoriert" + +#: ../../mod/contacts.php:609 +msgid "Only show ignored contacts" +msgstr "Nur ignorierte Kontakte anzeigen" + +#: ../../mod/contacts.php:613 +msgid "Archived" +msgstr "Archiviert" + +#: ../../mod/contacts.php:616 +msgid "Only show archived contacts" +msgstr "Nur archivierte Kontakte anzeigen" + +#: ../../mod/contacts.php:620 +msgid "Hidden" +msgstr "Verborgen" + +#: ../../mod/contacts.php:623 +msgid "Only show hidden contacts" +msgstr "Nur verborgene Kontakte anzeigen" + +#: ../../mod/contacts.php:671 +msgid "Mutual Friendship" +msgstr "Beidseitige Freundschaft" + +#: ../../mod/contacts.php:675 +msgid "is a fan of yours" +msgstr "ist ein Fan von dir" + +#: ../../mod/contacts.php:679 +msgid "you are a fan of" +msgstr "Du bist Fan von" + +#: ../../mod/contacts.php:696 ../../mod/nogroup.php:41 +msgid "Edit contact" +msgstr "Kontakt bearbeiten" + +#: ../../mod/contacts.php:722 +msgid "Search your contacts" +msgstr "Suche in deinen Kontakten" + +#: ../../mod/contacts.php:723 ../../mod/directory.php:61 +msgid "Finding: " +msgstr "Funde: " + +#: ../../mod/wall_attach.php:75 +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:75 +msgid "Or - did you try to upload an empty file?" +msgstr "Oder - hast Du versucht, eine leere Datei hochzuladen?" + +#: ../../mod/wall_attach.php:81 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "Die Datei ist größer als das erlaubte Limit von %d" + +#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133 +msgid "File upload failed." +msgstr "Hochladen der Datei fehlgeschlagen." + +#: ../../mod/update_community.php:18 ../../mod/update_network.php:25 +#: ../../mod/update_notes.php:37 ../../mod/update_display.php:22 +#: ../../mod/update_profile.php:41 +msgid "[Embedded content - reload page to view]" +msgstr "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]" + +#: ../../mod/uexport.php:77 +msgid "Export account" +msgstr "Account exportieren" + +#: ../../mod/uexport.php:77 +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:78 +msgid "Export all" +msgstr "Alles exportieren" + +#: ../../mod/uexport.php:78 +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/register.php:90 +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:96 +#, php-format +msgid "" +"Failed to send email message. Here your accout details:
login: %s
" +"password: %s

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 "Your registration can not be processed." +msgstr "Deine Registrierung konnte nicht verarbeitet werden." + +#: ../../mod/register.php:148 +msgid "Your registration is pending approval by the site owner." +msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden." + +#: ../../mod/register.php:186 ../../mod/uimport.php:50 +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:214 +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:215 +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:216 +msgid "Your OpenID (optional): " +msgstr "Deine OpenID (optional): " + +#: ../../mod/register.php:230 +msgid "Include your profile in member directory?" +msgstr "Soll Dein Profil im Nutzerverzeichnis angezeigt werden?" + +#: ../../mod/register.php:251 +msgid "Membership on this site is by invitation only." +msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich." + +#: ../../mod/register.php:252 +msgid "Your invitation ID: " +msgstr "ID Deiner Einladung: " + +#: ../../mod/register.php:255 ../../mod/admin.php:621 +msgid "Registration" +msgstr "Registrierung" + +#: ../../mod/register.php:263 +msgid "Your Full Name (e.g. Joe Smith): " +msgstr "Vollständiger Name (z.B. Max Mustermann): " + +#: ../../mod/register.php:264 +msgid "Your Email Address: " +msgstr "Deine E-Mail-Adresse: " + +#: ../../mod/register.php:265 +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be " +"'nickname@$sitename'." +msgstr "Wähle einen Spitznamen für Dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse Deines Profils auf dieser Seite wird 'spitzname@$sitename' sein." + +#: ../../mod/register.php:266 +msgid "Choose a nickname: " +msgstr "Spitznamen wählen: " + +#: ../../mod/register.php:275 ../../mod/uimport.php:64 +msgid "Import" +msgstr "Import" + +#: ../../mod/register.php:276 +msgid "Import your profile to this friendica instance" +msgstr "Importiere Dein Profil auf diese Friendica Instanz" + +#: ../../mod/oexchange.php:25 +msgid "Post successful." +msgstr "Beitrag erfolgreich veröffentlicht." + +#: ../../mod/maintenance.php:5 +msgid "System down for maintenance" +msgstr "System zur Wartung abgeschaltet" + +#: ../../mod/profile.php:155 ../../mod/display.php:332 +msgid "Access to this profile has been restricted." +msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt." + +#: ../../mod/profile.php:180 +msgid "Tips for New Members" +msgstr "Tipps für neue Nutzer" + +#: ../../mod/videos.php:115 ../../mod/dfrn_request.php:762 +#: ../../mod/viewcontacts.php:19 ../../mod/photos.php:920 +#: ../../mod/search.php:89 ../../mod/community.php:18 +#: ../../mod/display.php:212 ../../mod/directory.php:33 +msgid "Public access denied." +msgstr "Öffentlicher Zugriff verweigert." + +#: ../../mod/videos.php:125 +msgid "No videos selected" +msgstr "Keine Videos ausgewählt" + +#: ../../mod/videos.php:226 ../../mod/photos.php:1031 +msgid "Access to this item is restricted." +msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt." + +#: ../../mod/videos.php:308 ../../mod/photos.php:1808 +msgid "View Album" +msgstr "Album betrachten" + +#: ../../mod/videos.php:317 +msgid "Recent Videos" +msgstr "Neueste Videos" + +#: ../../mod/videos.php:319 +msgid "Upload New Videos" +msgstr "Neues Video hochladen" + +#: ../../mod/manage.php:106 +msgid "Manage Identities and/or Pages" +msgstr "Verwalte Identitäten und/oder Seiten" + +#: ../../mod/manage.php:107 +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/manage.php:108 +msgid "Select an identity to manage: " +msgstr "Wähle eine Identität zum Verwalten aus: " + +#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 +msgid "Item not found" +msgstr "Beitrag nicht gefunden" + +#: ../../mod/editpost.php:39 +msgid "Edit post" +msgstr "Beitrag bearbeiten" #: ../../mod/dirfind.php:26 msgid "People Search" @@ -1829,19 +4716,245 @@ msgstr "Personensuche" msgid "No matches" msgstr "Keine Übereinstimmungen" -#: ../../mod/fbrowser.php:25 ../../boot.php:2126 ../../include/nav.php:78 -#: ../../view/theme/diabook/theme.php:126 -msgid "Photos" -msgstr "Bilder" +#: ../../mod/regmod.php:55 +msgid "Account approved." +msgstr "Konto freigegeben." + +#: ../../mod/regmod.php:92 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registrierung für %s wurde zurückgezogen" + +#: ../../mod/regmod.php:104 +msgid "Please login." +msgstr "Bitte melde Dich an." + +#: ../../mod/dfrn_request.php:95 +msgid "This introduction has already been accepted." +msgstr "Diese Kontaktanfrage wurde bereits akzeptiert." + +#: ../../mod/dfrn_request.php:120 ../../mod/dfrn_request.php:518 +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:125 ../../mod/dfrn_request.php:523 +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:127 ../../mod/dfrn_request.php:525 +msgid "Warning: profile location has no profile photo." +msgstr "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse." + +#: ../../mod/dfrn_request.php:130 ../../mod/dfrn_request.php:528 +#, 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:172 +msgid "Introduction complete." +msgstr "Kontaktanfrage abgeschlossen." + +#: ../../mod/dfrn_request.php:214 +msgid "Unrecoverable protocol error." +msgstr "Nicht behebbarer Protokollfehler." + +#: ../../mod/dfrn_request.php:242 +msgid "Profile unavailable." +msgstr "Profil nicht verfügbar." + +#: ../../mod/dfrn_request.php:267 +#, php-format +msgid "%s has received too many connection requests today." +msgstr "%s hat heute zu viele Freundschaftsanfragen erhalten." + +#: ../../mod/dfrn_request.php:268 +msgid "Spam protection measures have been invoked." +msgstr "Maßnahmen zum Spamschutz wurden ergriffen." + +#: ../../mod/dfrn_request.php:269 +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:331 +msgid "Invalid locator" +msgstr "Ungültiger Locator" + +#: ../../mod/dfrn_request.php:340 +msgid "Invalid email address." +msgstr "Ungültige E-Mail-Adresse." + +#: ../../mod/dfrn_request.php:367 +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:463 +msgid "Unable to resolve your name at the provided location." +msgstr "Konnte Deinen Namen an der angegebenen Stelle nicht finden." + +#: ../../mod/dfrn_request.php:476 +msgid "You have already introduced yourself here." +msgstr "Du hast Dich hier bereits vorgestellt." + +#: ../../mod/dfrn_request.php:480 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "Es scheint so, als ob Du bereits mit %s befreundet bist." + +#: ../../mod/dfrn_request.php:501 +msgid "Invalid profile URL." +msgstr "Ungültige Profil-URL." + +#: ../../mod/dfrn_request.php:597 +msgid "Your introduction has been sent." +msgstr "Deine Kontaktanfrage wurde gesendet." + +#: ../../mod/dfrn_request.php:650 +msgid "Please login to confirm introduction." +msgstr "Bitte melde Dich an, um die Kontaktanfrage zu bestätigen." + +#: ../../mod/dfrn_request.php:660 +msgid "" +"Incorrect identity currently logged in. Please login to " +"this profile." +msgstr "Momentan bist Du mit einer anderen Identität angemeldet. Bitte melde Dich mit diesem Profil an." + +#: ../../mod/dfrn_request.php:671 +msgid "Hide this contact" +msgstr "Verberge diesen Kontakt" + +#: ../../mod/dfrn_request.php:674 +#, php-format +msgid "Welcome home %s." +msgstr "Willkommen zurück %s." + +#: ../../mod/dfrn_request.php:675 +#, php-format +msgid "Please confirm your introduction/connection request to %s." +msgstr "Bitte bestätige Deine Kontaktanfrage bei %s." + +#: ../../mod/dfrn_request.php:804 +msgid "" +"Please enter your 'Identity Address' from one of the following supported " +"communications networks:" +msgstr "Bitte gib die Adresse Deines Profils in einem der unterstützten sozialen Netzwerke an:" + +#: ../../mod/dfrn_request.php:824 +msgid "" +"If you are not yet a member of the free social web, follow this link to find a public" +" Friendica site and join us today." +msgstr "Wenn Du noch kein Mitglied dieses freien sozialen Netzwerks bist, folge diesem Link um einen öffentlichen Friendica-Server zu finden und beizutreten." + +#: ../../mod/dfrn_request.php:827 +msgid "Friend/Connection Request" +msgstr "Freundschafts-/Kontaktanfrage" + +#: ../../mod/dfrn_request.php:828 +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:829 +msgid "Please answer the following:" +msgstr "Bitte beantworte folgendes:" + +#: ../../mod/dfrn_request.php:830 +#, php-format +msgid "Does %s know you?" +msgstr "Kennt %s Dich?" + +#: ../../mod/dfrn_request.php:834 +msgid "Add a personal note:" +msgstr "Eine persönliche Notiz beifügen:" + +#: ../../mod/dfrn_request.php:837 +msgid "StatusNet/Federated Social Web" +msgstr "StatusNet/Federated Social Web" + +#: ../../mod/dfrn_request.php:839 +#, 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:840 +msgid "Your Identity Address:" +msgstr "Adresse Deines Profils:" + +#: ../../mod/dfrn_request.php:843 +msgid "Submit Request" +msgstr "Anfrage abschicken" #: ../../mod/fbrowser.php:113 msgid "Files" msgstr "Dateien" +#: ../../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/suggest.php:27 +msgid "Do you really want to delete this suggestion?" +msgstr "Möchtest Du wirklich diese Empfehlung löschen?" + +#: ../../mod/suggest.php:74 +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:92 +msgid "Ignore/Hide" +msgstr "Ignorieren/Verbergen" + #: ../../mod/nogroup.php:59 msgid "Contacts who are not members of a group" msgstr "Kontakte, die keiner Gruppe zugewiesen sind" +#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 +#: ../../mod/crepair.php:133 ../../mod/dfrn_confirm.php:120 +msgid "Contact not found." +msgstr "Kontakt nicht gefunden." + +#: ../../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/share.php:44 +msgid "link" +msgstr "Link" + +#: ../../mod/viewcontacts.php:41 +msgid "No contacts." +msgstr "Keine Kontakte." + #: ../../mod/admin.php:57 msgid "Theme settings updated." msgstr "Themeneinstellungen aktualisiert." @@ -1854,11 +4967,6 @@ msgstr "Seite" msgid "Users" msgstr "Nutzer" -#: ../../mod/admin.php:106 ../../mod/admin.php:1102 ../../mod/admin.php:1155 -#: ../../mod/settings.php:57 -msgid "Plugins" -msgstr "Plugins" - #: ../../mod/admin.php:107 ../../mod/admin.php:1323 ../../mod/admin.php:1357 msgid "Themes" msgstr "Themen" @@ -1879,10 +4987,6 @@ msgstr "Adresse untersuchen" msgid "check webfinger" msgstr "Webfinger überprüfen" -#: ../../mod/admin.php:130 ../../include/nav.php:184 -msgid "Admin" -msgstr "Administration" - #: ../../mod/admin.php:131 msgid "Plugin Features" msgstr "Plugin Features" @@ -1957,10 +5061,6 @@ msgstr "Die Basis-URL konnte nicht analysiert werden. Sie muss mindestens aus

Friendica.com to learn " +"more about the Friendica project." +msgstr "Bitte besuche Friendica.com, um mehr über das Friendica Projekt zu erfahren." + +#: ../../mod/friendica.php:64 +msgid "Bug reports and issues: please visit" +msgstr "Probleme oder Fehler gefunden? Bitte besuche" + +#: ../../mod/friendica.php:65 +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:79 +msgid "Installed plugins/addons/apps:" +msgstr "Installierte Plugins/Erweiterungen/Apps" + +#: ../../mod/friendica.php:92 +msgid "No installed plugins/addons/apps" +msgstr "Keine Plugins/Erweiterungen/Apps installiert" + +#: ../../mod/apps.php:11 +msgid "Applications" +msgstr "Anwendungen" + +#: ../../mod/apps.php:14 +msgid "No installed applications." +msgstr "Keine Applikationen installiert." + +#: ../../mod/photos.php:67 ../../mod/photos.php:1262 ../../mod/photos.php:1819 +msgid "Upload New Photos" +msgstr "Neue Fotos hochladen" + +#: ../../mod/photos.php:144 +msgid "Contact information unavailable" +msgstr "Kontaktinformationen nicht verfügbar" + +#: ../../mod/photos.php:165 +msgid "Album not found." +msgstr "Album nicht gefunden." + +#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204 +msgid "Delete Album" +msgstr "Album löschen" + +#: ../../mod/photos.php:198 +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:278 ../../mod/photos.php:289 ../../mod/photos.php:1515 +msgid "Delete Photo" +msgstr "Foto löschen" + +#: ../../mod/photos.php:287 +msgid "Do you really want to delete this photo?" +msgstr "Möchtest Du wirklich dieses Foto löschen?" + +#: ../../mod/photos.php:662 +#, 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:662 +msgid "a photo" +msgstr "einem Foto" + +#: ../../mod/photos.php:767 +msgid "Image exceeds size limit of " +msgstr "Die Bildgröße übersteigt das Limit von " + +#: ../../mod/photos.php:775 +msgid "Image file is empty." +msgstr "Bilddatei ist leer." + +#: ../../mod/photos.php:930 +msgid "No photos selected" +msgstr "Keine Bilder ausgewählt" + +#: ../../mod/photos.php:1094 +#, 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:1129 +msgid "Upload Photos" +msgstr "Bilder hochladen" + +#: ../../mod/photos.php:1133 ../../mod/photos.php:1199 +msgid "New album name: " +msgstr "Name des neuen Albums: " + +#: ../../mod/photos.php:1134 +msgid "or existing album name: " +msgstr "oder existierender Albumname: " + +#: ../../mod/photos.php:1135 +msgid "Do not show a status post for this upload" +msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen" + +#: ../../mod/photos.php:1137 ../../mod/photos.php:1510 +msgid "Permissions" +msgstr "Berechtigungen" + +#: ../../mod/photos.php:1148 +msgid "Private Photo" +msgstr "Privates Foto" + +#: ../../mod/photos.php:1149 +msgid "Public Photo" +msgstr "Öffentliches Foto" + +#: ../../mod/photos.php:1212 +msgid "Edit Album" +msgstr "Album bearbeiten" + +#: ../../mod/photos.php:1218 +msgid "Show Newest First" +msgstr "Zeige neueste zuerst" + +#: ../../mod/photos.php:1220 +msgid "Show Oldest First" +msgstr "Zeige älteste zuerst" + +#: ../../mod/photos.php:1248 ../../mod/photos.php:1802 +msgid "View Photo" +msgstr "Foto betrachten" + +#: ../../mod/photos.php:1294 +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:1296 +msgid "Photo not available" +msgstr "Foto nicht verfügbar" + +#: ../../mod/photos.php:1352 +msgid "View photo" +msgstr "Fotos ansehen" + +#: ../../mod/photos.php:1352 +msgid "Edit photo" +msgstr "Foto bearbeiten" + +#: ../../mod/photos.php:1353 +msgid "Use as profile photo" +msgstr "Als Profilbild verwenden" + +#: ../../mod/photos.php:1378 +msgid "View Full Size" +msgstr "Betrachte Originalgröße" + +#: ../../mod/photos.php:1457 +msgid "Tags: " +msgstr "Tags: " + +#: ../../mod/photos.php:1460 +msgid "[Remove any tag]" +msgstr "[Tag entfernen]" + +#: ../../mod/photos.php:1500 +msgid "Rotate CW (right)" +msgstr "Drehen US (rechts)" + +#: ../../mod/photos.php:1501 +msgid "Rotate CCW (left)" +msgstr "Drehen EUS (links)" + +#: ../../mod/photos.php:1503 +msgid "New album name" +msgstr "Name des neuen Albums" + +#: ../../mod/photos.php:1506 +msgid "Caption" +msgstr "Bildunterschrift" + +#: ../../mod/photos.php:1508 +msgid "Add a Tag" +msgstr "Tag hinzufügen" + +#: ../../mod/photos.php:1512 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" + +#: ../../mod/photos.php:1521 +msgid "Private photo" +msgstr "Privates Foto" + +#: ../../mod/photos.php:1522 +msgid "Public photo" +msgstr "Öffentliches Foto" + +#: ../../mod/photos.php:1817 +msgid "Recent Photos" +msgstr "Neueste Fotos" + +#: ../../mod/bookmarklet.php:41 +msgid "The post was created" +msgstr "Der Beitrag wurde angelegt" + +#: ../../mod/follow.php:27 +msgid "Contact added" +msgstr "Kontakt hinzugefügt" + +#: ../../mod/uimport.php:66 +msgid "Move account" +msgstr "Account umziehen" + +#: ../../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/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 Freunde darüber zu informieren, dass Du hierher umgezogen bist." + +#: ../../mod/uimport.php:69 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (statusnet/identi.ca) or from Diaspora" +msgstr "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (statusnet/identi.ca) 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/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: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/viewsrc.php:7 +msgid "Access denied." +msgstr "Zugriff verweigert." + +#: ../../mod/lostpass.php:19 +msgid "No valid account found." +msgstr "Kein gültiges Konto gefunden." + +#: ../../mod/lostpass.php:35 +msgid "Password reset request issued. Check your email." +msgstr "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe Deine E-Mail." + +#: ../../mod/lostpass.php:42 +#, php-format +msgid "" +"\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." +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 +#, php-format +msgid "" +"\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" +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 +#, php-format +msgid "Password reset requested at %s" +msgstr "Anfrage zum Zurücksetzen des Passworts auf %s erhalten" + +#: ../../mod/lostpass.php:92 +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:110 +msgid "Your password has been reset as requested." +msgstr "Dein Passwort wurde wie gewünscht zurückgesetzt." + +#: ../../mod/lostpass.php:111 +msgid "Your new password is" +msgstr "Dein neues Passwort lautet" + +#: ../../mod/lostpass.php:112 +msgid "Save or copy your new password - and then" +msgstr "Speichere oder kopiere Dein neues Passwort - und dann" + +#: ../../mod/lostpass.php:113 +msgid "click here to login" +msgstr "hier klicken, um Dich anzumelden" + +#: ../../mod/lostpass.php:114 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Du kannst das Passwort in den Einstellungen ändern, sobald Du Dich erfolgreich angemeldet hast." + +#: ../../mod/lostpass.php:125 +#, php-format +msgid "" +"\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" +msgstr "\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)." + +#: ../../mod/lostpass.php:131 +#, php-format +msgid "" +"\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" +msgstr "\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." + +#: ../../mod/lostpass.php:147 +#, php-format +msgid "Your password has been changed at %s" +msgstr "Auf %s wurde Dein Passwort geändert" + +#: ../../mod/lostpass.php:159 +msgid "Forgot your Password?" +msgstr "Hast Du Dein Passwort vergessen?" + +#: ../../mod/lostpass.php:160 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"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 +msgid "Nickname or Email: " +msgstr "Spitzname oder E-Mail:" + +#: ../../mod/lostpass.php:162 +msgid "Reset" +msgstr "Zurücksetzen" + +#: ../../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/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/removeme.php:46 ../../mod/removeme.php:49 +msgid "Remove My Account" +msgstr "Konto löschen" + +#: ../../mod/removeme.php:47 +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/profperm.php:25 ../../mod/profperm.php:55 +msgid "Invalid profile identifier." +msgstr "Ungültiger Profil-Bezeichner." + +#: ../../mod/profperm.php:101 +msgid "Profile Visibility Editor" +msgstr "Editor für die Profil-Sichtbarkeit" + +#: ../../mod/profperm.php:114 +msgid "Visible To" +msgstr "Sichtbar für" + +#: ../../mod/profperm.php:130 +msgid "All Contacts (with secure profile access)" +msgstr "Alle Kontakte (mit gesichertem Profilzugriff)" + +#: ../../mod/match.php:12 +msgid "Profile Match" +msgstr "Profilübereinstimmungen" + +#: ../../mod/match.php:20 +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:57 +msgid "is interested in:" +msgstr "ist interessiert an:" #: ../../mod/events.php:66 msgid "Event title and start time are required." @@ -3004,16 +6643,6 @@ msgstr "l, F j" msgid "Edit event" msgstr "Veranstaltung bearbeiten" -#: ../../mod/events.php:335 ../../include/text.php:1647 -#: ../../include/text.php:1657 -msgid "link to source" -msgstr "Link zum Originalbeitrag" - -#: ../../mod/events.php:370 ../../boot.php:2143 ../../include/nav.php:80 -#: ../../view/theme/diabook/theme.php:127 -msgid "Events" -msgstr "Veranstaltungen" - #: ../../mod/events.php:371 msgid "Create New Event" msgstr "Neue Veranstaltung erstellen" @@ -3063,11 +6692,6 @@ msgstr "An Zeitzone des Betrachters anpassen" msgid "Description:" msgstr "Beschreibung" -#: ../../mod/events.php:471 ../../mod/directory.php:136 ../../boot.php:1648 -#: ../../include/bb2diaspora.php:170 ../../include/event.php:40 -msgid "Location:" -msgstr "Ort:" - #: ../../mod/events.php:473 msgid "Title:" msgstr "Titel:" @@ -3076,184 +6700,436 @@ msgstr "Titel:" msgid "Share this event" msgstr "Veranstaltung teilen" -#: ../../mod/content.php:437 ../../mod/content.php:740 -#: ../../mod/photos.php:1653 ../../object/Item.php:129 -#: ../../include/conversation.php:613 -msgid "Select" -msgstr "Auswählen" +#: ../../mod/ping.php:240 +msgid "{0} wants to be your friend" +msgstr "{0} möchte mit Dir in Kontakt treten" -#: ../../mod/content.php:471 ../../mod/content.php:852 -#: ../../mod/content.php:853 ../../object/Item.php:326 -#: ../../object/Item.php:327 ../../include/conversation.php:654 +#: ../../mod/ping.php:245 +msgid "{0} sent you a message" +msgstr "{0} schickte Dir eine Nachricht" + +#: ../../mod/ping.php:250 +msgid "{0} requested registration" +msgstr "{0} möchte sich registrieren" + +#: ../../mod/ping.php:256 #, php-format -msgid "View %s's profile @ %s" -msgstr "Das Profil von %s auf %s betrachten." +msgid "{0} commented %s's post" +msgstr "{0} kommentierte einen Beitrag von %s" -#: ../../mod/content.php:481 ../../mod/content.php:864 -#: ../../object/Item.php:340 ../../include/conversation.php:674 +#: ../../mod/ping.php:261 #, php-format -msgid "%s from %s" -msgstr "%s von %s" +msgid "{0} liked %s's post" +msgstr "{0} mag %ss Beitrag" -#: ../../mod/content.php:497 ../../include/conversation.php:690 -msgid "View in context" -msgstr "Im Zusammenhang betrachten" - -#: ../../mod/content.php:603 ../../object/Item.php:387 +#: ../../mod/ping.php:266 #, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d Kommentar" -msgstr[1] "%d Kommentare" +msgid "{0} disliked %s's post" +msgstr "{0} mag %ss Beitrag nicht" -#: ../../mod/content.php:605 ../../object/Item.php:389 -#: ../../object/Item.php:402 ../../include/text.php:1972 -msgid "comment" -msgid_plural "comments" -msgstr[0] "Kommentar" -msgstr[1] "Kommentare" +#: ../../mod/ping.php:271 +#, php-format +msgid "{0} is now friends with %s" +msgstr "{0} ist jetzt mit %s befreundet" -#: ../../mod/content.php:606 ../../boot.php:751 ../../object/Item.php:390 -#: ../../include/contact_widgets.php:205 -msgid "show more" -msgstr "mehr anzeigen" +#: ../../mod/ping.php:276 +msgid "{0} posted" +msgstr "{0} hat etwas veröffentlicht" -#: ../../mod/content.php:620 ../../mod/photos.php:1359 -#: ../../object/Item.php:116 -msgid "Private Message" -msgstr "Private Nachricht" +#: ../../mod/ping.php:281 +#, php-format +msgid "{0} tagged %s's post with #%s" +msgstr "{0} hat %ss Beitrag mit dem Schlagwort #%s versehen" -#: ../../mod/content.php:684 ../../mod/photos.php:1542 -#: ../../object/Item.php:231 -msgid "I like this (toggle)" -msgstr "Ich mag das (toggle)" +#: ../../mod/ping.php:287 +msgid "{0} mentioned you in a post" +msgstr "{0} hat Dich in einem Beitrag erwähnt" -#: ../../mod/content.php:684 ../../object/Item.php:231 -msgid "like" -msgstr "mag ich" +#: ../../mod/mood.php:133 +msgid "Mood" +msgstr "Stimmung" -#: ../../mod/content.php:685 ../../mod/photos.php:1543 -#: ../../object/Item.php:232 -msgid "I don't like this (toggle)" -msgstr "Ich mag das nicht (toggle)" +#: ../../mod/mood.php:134 +msgid "Set your current mood and tell your friends" +msgstr "Wähle Deine aktuelle Stimmung und erzähle sie Deinen Freunden" -#: ../../mod/content.php:685 ../../object/Item.php:232 -msgid "dislike" -msgstr "mag ich nicht" +#: ../../mod/search.php:174 ../../mod/community.php:62 +#: ../../mod/community.php:71 +msgid "No results." +msgstr "Keine Ergebnisse." -#: ../../mod/content.php:687 ../../object/Item.php:234 -msgid "Share this" -msgstr "Weitersagen" +#: ../../mod/message.php:67 +msgid "Unable to locate contact information." +msgstr "Konnte die Kontaktinformationen nicht finden." -#: ../../mod/content.php:687 ../../object/Item.php:234 -msgid "share" -msgstr "Teilen" +#: ../../mod/message.php:207 +msgid "Do you really want to delete this message?" +msgstr "Möchtest Du wirklich diese Nachricht löschen?" -#: ../../mod/content.php:707 ../../mod/photos.php:1562 -#: ../../mod/photos.php:1606 ../../mod/photos.php:1694 -#: ../../object/Item.php:675 -msgid "This is you" -msgstr "Das bist Du" +#: ../../mod/message.php:227 +msgid "Message deleted." +msgstr "Nachricht gelöscht." -#: ../../mod/content.php:709 ../../mod/photos.php:1564 -#: ../../mod/photos.php:1608 ../../mod/photos.php:1696 ../../boot.php:750 -#: ../../object/Item.php:361 ../../object/Item.php:677 -msgid "Comment" -msgstr "Kommentar" +#: ../../mod/message.php:258 +msgid "Conversation removed." +msgstr "Unterhaltung gelöscht." -#: ../../mod/content.php:711 ../../object/Item.php:679 -msgid "Bold" -msgstr "Fett" +#: ../../mod/message.php:371 +msgid "No messages." +msgstr "Keine Nachrichten." -#: ../../mod/content.php:712 ../../object/Item.php:680 -msgid "Italic" -msgstr "Kursiv" +#: ../../mod/message.php:378 +#, php-format +msgid "Unknown sender - %s" +msgstr "'Unbekannter Absender - %s" -#: ../../mod/content.php:713 ../../object/Item.php:681 -msgid "Underline" -msgstr "Unterstrichen" +#: ../../mod/message.php:381 +#, php-format +msgid "You and %s" +msgstr "Du und %s" -#: ../../mod/content.php:714 ../../object/Item.php:682 -msgid "Quote" -msgstr "Zitat" +#: ../../mod/message.php:384 +#, php-format +msgid "%s and You" +msgstr "%s und Du" -#: ../../mod/content.php:715 ../../object/Item.php:683 -msgid "Code" -msgstr "Code" +#: ../../mod/message.php:405 ../../mod/message.php:546 +msgid "Delete conversation" +msgstr "Unterhaltung löschen" -#: ../../mod/content.php:716 ../../object/Item.php:684 -msgid "Image" -msgstr "Bild" +#: ../../mod/message.php:408 +msgid "D, d M Y - g:i A" +msgstr "D, d. M Y - g:i A" -#: ../../mod/content.php:717 ../../object/Item.php:685 -msgid "Link" -msgstr "Link" +#: ../../mod/message.php:411 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d Nachricht" +msgstr[1] "%d Nachrichten" -#: ../../mod/content.php:718 ../../object/Item.php:686 -msgid "Video" -msgstr "Video" +#: ../../mod/message.php:450 +msgid "Message not available." +msgstr "Nachricht nicht verfügbar." -#: ../../mod/content.php:719 ../../mod/editpost.php:145 -#: ../../mod/photos.php:1566 ../../mod/photos.php:1610 -#: ../../mod/photos.php:1698 ../../object/Item.php:687 -#: ../../include/conversation.php:1126 -msgid "Preview" -msgstr "Vorschau" +#: ../../mod/message.php:520 +msgid "Delete message" +msgstr "Nachricht löschen" -#: ../../mod/content.php:728 ../../mod/settings.php:676 -#: ../../object/Item.php:120 -msgid "Edit" -msgstr "Bearbeiten" - -#: ../../mod/content.php:753 ../../object/Item.php:195 -msgid "add star" -msgstr "markieren" - -#: ../../mod/content.php:754 ../../object/Item.php:196 -msgid "remove star" -msgstr "Markierung entfernen" - -#: ../../mod/content.php:755 ../../object/Item.php:197 -msgid "toggle star status" -msgstr "Markierung umschalten" - -#: ../../mod/content.php:758 ../../object/Item.php:200 -msgid "starred" -msgstr "markiert" - -#: ../../mod/content.php:759 ../../object/Item.php:220 -msgid "add tag" -msgstr "Tag hinzufügen" - -#: ../../mod/content.php:763 ../../object/Item.php:133 -msgid "save to folder" -msgstr "In Ordner speichern" - -#: ../../mod/content.php:854 ../../object/Item.php:328 -msgid "to" -msgstr "zu" - -#: ../../mod/content.php:855 ../../object/Item.php:330 -msgid "Wall-to-Wall" -msgstr "Wall-to-Wall" - -#: ../../mod/content.php:856 ../../object/Item.php:331 -msgid "via Wall-To-Wall:" -msgstr "via Wall-To-Wall:" - -#: ../../mod/removeme.php:46 ../../mod/removeme.php:49 -msgid "Remove My Account" -msgstr "Konto löschen" - -#: ../../mod/removeme.php:47 +#: ../../mod/message.php:548 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." +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Sichere Kommunikation ist nicht verfügbar. Eventuell kannst Du auf der Profilseite des Absenders antworten." -#: ../../mod/removeme.php:48 -msgid "Please enter your password for verification:" -msgstr "Bitte gib Dein Passwort zur Verifikation ein:" +#: ../../mod/message.php:552 +msgid "Send Reply" +msgstr "Antwort senden" + +#: ../../mod/community.php:23 +msgid "Not available." +msgstr "Nicht verfügbar." + +#: ../../mod/profiles.php:18 ../../mod/profiles.php:133 +#: ../../mod/profiles.php:179 ../../mod/profiles.php:630 +#: ../../mod/dfrn_confirm.php:64 +msgid "Profile not found." +msgstr "Profil nicht gefunden." + +#: ../../mod/profiles.php:37 +msgid "Profile deleted." +msgstr "Profil gelöscht." + +#: ../../mod/profiles.php:55 ../../mod/profiles.php:89 +msgid "Profile-" +msgstr "Profil-" + +#: ../../mod/profiles.php:74 ../../mod/profiles.php:117 +msgid "New profile created." +msgstr "Neues Profil angelegt." + +#: ../../mod/profiles.php:95 +msgid "Profile unavailable to clone." +msgstr "Profil nicht zum Duplizieren verfügbar." + +#: ../../mod/profiles.php:189 +msgid "Profile Name is required." +msgstr "Profilname ist erforderlich." + +#: ../../mod/profiles.php:340 +msgid "Marital Status" +msgstr "Familienstand" + +#: ../../mod/profiles.php:344 +msgid "Romantic Partner" +msgstr "Romanze" + +#: ../../mod/profiles.php:348 +msgid "Likes" +msgstr "Likes" + +#: ../../mod/profiles.php:352 +msgid "Dislikes" +msgstr "Dislikes" + +#: ../../mod/profiles.php:356 +msgid "Work/Employment" +msgstr "Arbeit / Beschäftigung" + +#: ../../mod/profiles.php:359 +msgid "Religion" +msgstr "Religion" + +#: ../../mod/profiles.php:363 +msgid "Political Views" +msgstr "Politische Ansichten" + +#: ../../mod/profiles.php:367 +msgid "Gender" +msgstr "Geschlecht" + +#: ../../mod/profiles.php:371 +msgid "Sexual Preference" +msgstr "Sexuelle Vorlieben" + +#: ../../mod/profiles.php:375 +msgid "Homepage" +msgstr "Webseite" + +#: ../../mod/profiles.php:379 ../../mod/profiles.php:698 +msgid "Interests" +msgstr "Interessen" + +#: ../../mod/profiles.php:383 +msgid "Address" +msgstr "Adresse" + +#: ../../mod/profiles.php:390 ../../mod/profiles.php:694 +msgid "Location" +msgstr "Wohnort" + +#: ../../mod/profiles.php:473 +msgid "Profile updated." +msgstr "Profil aktualisiert." + +#: ../../mod/profiles.php:568 +msgid " and " +msgstr " und " + +#: ../../mod/profiles.php:576 +msgid "public profile" +msgstr "öffentliches Profil" + +#: ../../mod/profiles.php:579 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s hat %2$s geändert auf “%3$s”" + +#: ../../mod/profiles.php:580 +#, php-format +msgid " - Visit %1$s's %2$s" +msgstr " – %1$ss %2$s besuchen" + +#: ../../mod/profiles.php:583 +#, 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:658 +msgid "Hide contacts and friends:" +msgstr "Kontakte und Freunde verbergen" + +#: ../../mod/profiles.php:663 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "Liste der Kontakte vor Betrachtern dieses Profils verbergen?" + +#: ../../mod/profiles.php:685 +msgid "Edit Profile Details" +msgstr "Profil bearbeiten" + +#: ../../mod/profiles.php:687 +msgid "Change Profile Photo" +msgstr "Profilbild ändern" + +#: ../../mod/profiles.php:688 +msgid "View this profile" +msgstr "Dieses Profil anzeigen" + +#: ../../mod/profiles.php:689 +msgid "Create a new profile using these settings" +msgstr "Neues Profil anlegen und diese Einstellungen verwenden" + +#: ../../mod/profiles.php:690 +msgid "Clone this profile" +msgstr "Dieses Profil duplizieren" + +#: ../../mod/profiles.php:691 +msgid "Delete this profile" +msgstr "Dieses Profil löschen" + +#: ../../mod/profiles.php:692 +msgid "Basic information" +msgstr "Grundinformationen" + +#: ../../mod/profiles.php:693 +msgid "Profile picture" +msgstr "Profilbild" + +#: ../../mod/profiles.php:695 +msgid "Preferences" +msgstr "Vorlieben" + +#: ../../mod/profiles.php:696 +msgid "Status information" +msgstr "Status Informationen" + +#: ../../mod/profiles.php:697 +msgid "Additional information" +msgstr "Zusätzliche Informationen" + +#: ../../mod/profiles.php:699 ../../mod/newmember.php:36 +#: ../../mod/profile_photo.php:244 +msgid "Upload Profile Photo" +msgstr "Profilbild hochladen" + +#: ../../mod/profiles.php:700 +msgid "Profile Name:" +msgstr "Profilname:" + +#: ../../mod/profiles.php:701 +msgid "Your Full Name:" +msgstr "Dein kompletter Name:" + +#: ../../mod/profiles.php:702 +msgid "Title/Description:" +msgstr "Titel/Beschreibung:" + +#: ../../mod/profiles.php:703 +msgid "Your Gender:" +msgstr "Dein Geschlecht:" + +#: ../../mod/profiles.php:704 +#, php-format +msgid "Birthday (%s):" +msgstr "Geburtstag (%s):" + +#: ../../mod/profiles.php:705 +msgid "Street Address:" +msgstr "Adresse:" + +#: ../../mod/profiles.php:706 +msgid "Locality/City:" +msgstr "Wohnort:" + +#: ../../mod/profiles.php:707 +msgid "Postal/Zip Code:" +msgstr "Postleitzahl:" + +#: ../../mod/profiles.php:708 +msgid "Country:" +msgstr "Land:" + +#: ../../mod/profiles.php:709 +msgid "Region/State:" +msgstr "Region/Bundesstaat:" + +#: ../../mod/profiles.php:710 +msgid " Marital Status:" +msgstr " Beziehungsstatus:" + +#: ../../mod/profiles.php:711 +msgid "Who: (if applicable)" +msgstr "Wer: (falls anwendbar)" + +#: ../../mod/profiles.php:712 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com" + +#: ../../mod/profiles.php:713 +msgid "Since [date]:" +msgstr "Seit [Datum]:" + +#: ../../mod/profiles.php:715 +msgid "Homepage URL:" +msgstr "Adresse der Homepage:" + +#: ../../mod/profiles.php:718 +msgid "Religious Views:" +msgstr "Religiöse Ansichten:" + +#: ../../mod/profiles.php:719 +msgid "Public Keywords:" +msgstr "Öffentliche Schlüsselwörter:" + +#: ../../mod/profiles.php:720 +msgid "Private Keywords:" +msgstr "Private Schlüsselwörter:" + +#: ../../mod/profiles.php:723 +msgid "Example: fishing photography software" +msgstr "Beispiel: Fischen Fotografie Software" + +#: ../../mod/profiles.php:724 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "(Wird verwendet, um potentielle Freunde zu finden, kann von Fremden eingesehen werden)" + +#: ../../mod/profiles.php:725 +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:726 +msgid "Tell us about yourself..." +msgstr "Erzähle uns ein bisschen von Dir …" + +#: ../../mod/profiles.php:727 +msgid "Hobbies/Interests" +msgstr "Hobbies/Interessen" + +#: ../../mod/profiles.php:728 +msgid "Contact information and Social Networks" +msgstr "Kontaktinformationen und Soziale Netzwerke" + +#: ../../mod/profiles.php:729 +msgid "Musical interests" +msgstr "Musikalische Interessen" + +#: ../../mod/profiles.php:730 +msgid "Books, literature" +msgstr "Bücher, Literatur" + +#: ../../mod/profiles.php:731 +msgid "Television" +msgstr "Fernsehen" + +#: ../../mod/profiles.php:732 +msgid "Film/dance/culture/entertainment" +msgstr "Filme/Tänze/Kultur/Unterhaltung" + +#: ../../mod/profiles.php:733 +msgid "Love/romance" +msgstr "Liebe/Romantik" + +#: ../../mod/profiles.php:734 +msgid "Work/employment" +msgstr "Arbeit/Anstellung" + +#: ../../mod/profiles.php:735 +msgid "School/education" +msgstr "Schule/Ausbildung" + +#: ../../mod/profiles.php:740 +msgid "" +"This is your public profile.
It may " +"be visible to anybody using the internet." +msgstr "Dies ist Dein öffentliches Profil.
Es könnte für jeden Nutzer des Internets sichtbar sein." + +#: ../../mod/profiles.php:750 ../../mod/directory.php:113 +msgid "Age: " +msgstr "Alter: " + +#: ../../mod/profiles.php:803 +msgid "Edit/Manage Profiles" +msgstr "Bearbeite/Verwalte Profile" #: ../../mod/install.php:117 msgid "Friendica Communications Server - Setup" @@ -3546,1013 +7422,482 @@ msgid "" "poller." msgstr "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten." -#: ../../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:59 -msgid "Unable to check your home location." -msgstr "Konnte Deinen Heimatort nicht bestimmen." - -#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 -msgid "No recipient." -msgstr "Kein Empfänger." - -#: ../../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/help.php:79 +#: ../../mod/help.php:31 msgid "Help:" msgstr "Hilfe:" -#: ../../mod/help.php:84 ../../include/nav.php:114 -msgid "Help" -msgstr "Hilfe" +#: ../../mod/crepair.php:106 +msgid "Contact settings applied." +msgstr "Einstellungen zum Kontakt angewandt." -#: ../../mod/help.php:90 ../../index.php:256 -msgid "Not Found" -msgstr "Nicht gefunden" +#: ../../mod/crepair.php:108 +msgid "Contact update failed." +msgstr "Konnte den Kontakt nicht aktualisieren." -#: ../../mod/help.php:93 ../../index.php:259 -msgid "Page not found." -msgstr "Seite nicht gefunden." +#: ../../mod/crepair.php:139 +msgid "Repair Contact Settings" +msgstr "Kontakteinstellungen reparieren" + +#: ../../mod/crepair.php:141 +msgid "" +"WARNING: This is highly advanced and if you enter incorrect" +" information your communications with this contact may stop working." +msgstr "ACHTUNG: Das sind Experten-Einstellungen! Wenn Du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr." + +#: ../../mod/crepair.php:142 +msgid "" +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "Bitte nutze den Zurück-Button Deines Browsers jetzt, wenn Du Dir unsicher bist, was Du tun willst." + +#: ../../mod/crepair.php:148 +msgid "Return to contact editor" +msgstr "Zurück zum Kontakteditor" + +#: ../../mod/crepair.php:159 ../../mod/crepair.php:161 +msgid "No mirroring" +msgstr "Kein Spiegeln" + +#: ../../mod/crepair.php:159 +msgid "Mirror as forwarded posting" +msgstr "Spiegeln als weitergeleitete Beiträge" + +#: ../../mod/crepair.php:159 ../../mod/crepair.php:161 +msgid "Mirror as my own posting" +msgstr "Spiegeln als meine eigenen Beiträge" + +#: ../../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 Freundschaftsanfragen" + +#: ../../mod/crepair.php:170 +msgid "Friend Confirm URL" +msgstr "URL für Bestätigungen von Freundschaftsanfragen" + +#: ../../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/crepair.php:174 +msgid "Remote Self" +msgstr "Entfernte Konten" + +#: ../../mod/crepair.php:176 +msgid "Mirror postings from this contact" +msgstr "Spiegle Beiträge dieses Kontakts" + +#: ../../mod/crepair.php:176 +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/newmember.php:6 +msgid "Welcome to Friendica" +msgstr "Willkommen bei Friendica" + +#: ../../mod/newmember.php:8 +msgid "New Member Checklist" +msgstr "Checkliste für neue Mitglieder" + +#: ../../mod/newmember.php:12 +msgid "" +"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." +msgstr "Wir möchten Dir einige Tipps und Links anbieten, die Dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für Dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden." + +#: ../../mod/newmember.php:14 +msgid "Getting Started" +msgstr "Einstieg" + +#: ../../mod/newmember.php:18 +msgid "Friendica Walk-Through" +msgstr "Friendica Rundgang" + +#: ../../mod/newmember.php:18 +msgid "" +"On your Quick Start page - find a brief introduction to your " +"profile and network tabs, make some new connections, and find some groups to" +" join." +msgstr "Auf der Quick Start Seite findest Du eine kurze Einleitung in die einzelnen Funktionen Deines Profils und die Netzwerk-Reiter, wo Du interessante Foren findest und neue Kontakte knüpfst." + +#: ../../mod/newmember.php:26 +msgid "Go to Your Settings" +msgstr "Gehe zu deinen Einstellungen" + +#: ../../mod/newmember.php:26 +msgid "" +"On your Settings page - change your initial password. Also make a " +"note of your Identity Address. This looks just like an email address - and " +"will be useful in making friends on the free social web." +msgstr "Ändere bitte unter Einstellungen dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Freundschaften mit anderen im Friendica Netzwerk zu schliessen." + +#: ../../mod/newmember.php:28 +msgid "" +"Review the other settings, particularly the privacy settings. An unpublished" +" directory listing is like having an unlisted phone number. In general, you " +"should probably publish your listing - unless all of your friends and " +"potential friends know exactly how to find you." +msgstr "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn Du Dein Profil nicht veröffentlichst, ist das als wenn Du Deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest Du es veröffentlichen - außer all Deine Freunde und potentiellen Freunde wissen genau, wie sie Dich finden können." + +#: ../../mod/newmember.php:36 +msgid "" +"Upload a profile photo if you have not done so already. Studies have shown " +"that people with real photos of themselves are ten times more likely to make" +" friends than people who do not." +msgstr "Lade ein Profilbild hoch, falls Du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Freunde zu finden, wenn Du ein Bild von Dir selbst verwendest, als wenn Du dies nicht tust." + +#: ../../mod/newmember.php:38 +msgid "Edit Your Profile" +msgstr "Editiere dein Profil" + +#: ../../mod/newmember.php:38 +msgid "" +"Edit your default profile to your liking. Review the " +"settings for hiding your list of friends and hiding the profile from unknown" +" visitors." +msgstr "Editiere Dein Standard Profil nach Deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen Deiner Freundesliste vor unbekannten Betrachtern des Profils." + +#: ../../mod/newmember.php:40 +msgid "Profile Keywords" +msgstr "Profil Schlüsselbegriffe" + +#: ../../mod/newmember.php:40 +msgid "" +"Set some public keywords for your default profile which describe your " +"interests. We may be able to find other people with similar interests and " +"suggest friendships." +msgstr "Trage ein paar öffentliche Stichwörter in Dein Standardprofil ein, die Deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die Deine Interessen teilen und können Dir dann Kontakte vorschlagen." + +#: ../../mod/newmember.php:44 +msgid "Connecting" +msgstr "Verbindungen knüpfen" + +#: ../../mod/newmember.php:49 +msgid "" +"Authorise the Facebook Connector if you currently have a Facebook account " +"and we will (optionally) import all your Facebook friends and conversations." +msgstr "Richte die Verbindung zu Facebook ein, wenn Du im Augenblick ein Facebook-Konto hast und (optional) Deine Facebook-Freunde und -Unterhaltungen importieren willst." + +#: ../../mod/newmember.php:51 +msgid "" +"If this is your own personal server, installing the Facebook addon " +"may ease your transition to the free social web." +msgstr "Wenn dies Dein privater Server ist, könnte die Installation des Facebook Connectors Deinen Umzug ins freie soziale Netz angenehmer gestalten." + +#: ../../mod/newmember.php:56 +msgid "Importing Emails" +msgstr "Emails Importieren" + +#: ../../mod/newmember.php:56 +msgid "" +"Enter your email access information on your Connector Settings page if you " +"wish to import and interact with friends or mailing lists from your email " +"INBOX" +msgstr "Gib Deine E-Mail-Zugangsinformationen auf der Connector-Einstellungsseite ein, falls Du E-Mails aus Deinem Posteingang importieren und mit Freunden und Mailinglisten interagieren willst." + +#: ../../mod/newmember.php:58 +msgid "Go to Your Contacts Page" +msgstr "Gehe zu deiner Kontakt-Seite" + +#: ../../mod/newmember.php:58 +msgid "" +"Your Contacts page is your gateway to managing friendships and connecting " +"with friends on other networks. Typically you enter their address or site " +"URL in the Add New Contact dialog." +msgstr "Die Kontakte-Seite ist die Einstiegsseite, von der aus Du Kontakte verwalten und Dich mit Freunden in anderen Netzwerken verbinden kannst. Normalerweise gibst Du dazu einfach ihre Adresse oder die URL der Seite im Kasten Neuen Kontakt hinzufügen ein." + +#: ../../mod/newmember.php:60 +msgid "Go to Your Site's Directory" +msgstr "Gehe zum Verzeichnis Deiner Friendica Instanz" + +#: ../../mod/newmember.php:60 +msgid "" +"The Directory page lets you find other people in this network or other " +"federated sites. Look for a Connect or Follow link on " +"their profile page. Provide your own Identity Address if requested." +msgstr "Über die Verzeichnisseite kannst Du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem Verbinden oder Folgen Link auf deren Profilseiten Ausschau und gib Deine eigene Profiladresse an, falls Du danach gefragt wirst." + +#: ../../mod/newmember.php:62 +msgid "Finding New People" +msgstr "Neue Leute kennenlernen" + +#: ../../mod/newmember.php:62 +msgid "" +"On the side panel of the Contacts page are several tools to find new " +"friends. We can match people by interest, look up people by name or " +"interest, and provide suggestions based on network relationships. On a brand" +" new site, friend suggestions will usually begin to be populated within 24 " +"hours." +msgstr "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Freunde zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Freunde vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden." + +#: ../../mod/newmember.php:70 +msgid "Group Your Contacts" +msgstr "Gruppiere deine Kontakte" + +#: ../../mod/newmember.php:70 +msgid "" +"Once you have made some friends, organize them into private conversation " +"groups from the sidebar of your Contacts page and then you can interact with" +" each group privately on your Network page." +msgstr "Sobald Du einige Freunde gefunden hast, organisiere sie in Gruppen zur privaten Kommunikation im Seitenmenü der Kontakte-Seite. Du kannst dann mit jeder dieser Gruppen von der Netzwerkseite aus privat interagieren." + +#: ../../mod/newmember.php:73 +msgid "Why Aren't My Posts Public?" +msgstr "Warum sind meine Beiträge nicht öffentlich?" + +#: ../../mod/newmember.php:73 +msgid "" +"Friendica respects your privacy. By default, your posts will only show up to" +" people you've added as friends. For more information, see the help section " +"from the link above." +msgstr "Friendica respektiert Deine Privatsphäre. Mit der Grundeinstellung werden Deine Beiträge ausschließlich Deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies Dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch." + +#: ../../mod/newmember.php:78 +msgid "Getting Help" +msgstr "Hilfe bekommen" + +#: ../../mod/newmember.php:82 +msgid "Go to the Help Section" +msgstr "Zum Hilfe Abschnitt gehen" + +#: ../../mod/newmember.php:82 +msgid "" +"Our help pages may be consulted for detail on other program" +" features and resources." +msgstr "Unsere Hilfe Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten." + +#: ../../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/display.php:496 +msgid "Item has been removed." +msgstr "Eintrag wurde entfernt." + +#: ../../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/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536 #, php-format msgid "%1$s welcomes %2$s" msgstr "%1$s heißt %2$s herzlich willkommen" -#: ../../mod/home.php:35 -#, php-format -msgid "Welcome to %s" -msgstr "Willkommen zu %s" - -#: ../../mod/wall_attach.php:75 -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:75 -msgid "Or - did you try to upload an empty file?" -msgstr "Oder - hast Du versucht, eine leere Datei hochzuladen?" - -#: ../../mod/wall_attach.php:81 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "Die Datei ist größer als das erlaubte Limit von %d" - -#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133 -msgid "File upload failed." -msgstr "Hochladen der Datei fehlgeschlagen." - -#: ../../mod/match.php:12 -msgid "Profile Match" -msgstr "Profilübereinstimmungen" - -#: ../../mod/match.php:20 -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:57 -msgid "is interested in:" -msgstr "ist interessiert an:" - -#: ../../mod/match.php:58 ../../mod/suggest.php:90 ../../boot.php:1568 -#: ../../include/contact_widgets.php:10 -msgid "Connect" -msgstr "Verbinden" - -#: ../../mod/share.php:44 -msgid "link" -msgstr "Link" - -#: ../../mod/community.php:23 -msgid "Not available." -msgstr "Nicht verfügbar." - -#: ../../mod/community.php:32 ../../include/nav.php:129 -#: ../../include/nav.php:131 ../../view/theme/diabook/theme.php:129 -msgid "Community" -msgstr "Gemeinschaft" - -#: ../../mod/community.php:62 ../../mod/community.php:71 -#: ../../mod/search.php:168 ../../mod/search.php:192 -msgid "No results." -msgstr "Keine Ergebnisse." - -#: ../../mod/settings.php:29 ../../mod/photos.php:80 -msgid "everybody" -msgstr "jeder" - -#: ../../mod/settings.php:41 -msgid "Additional features" -msgstr "Zusätzliche Features" - -#: ../../mod/settings.php:46 -msgid "Display" -msgstr "Anzeige" - -#: ../../mod/settings.php:52 ../../mod/settings.php:780 -msgid "Social Networks" -msgstr "Soziale Netzwerke" - -#: ../../mod/settings.php:62 ../../include/nav.php:170 -msgid "Delegations" -msgstr "Delegationen" - -#: ../../mod/settings.php:67 -msgid "Connected apps" -msgstr "Verbundene Programme" - -#: ../../mod/settings.php:72 ../../mod/uexport.php:85 -msgid "Export personal data" -msgstr "Persönliche Daten exportieren" - -#: ../../mod/settings.php:77 -msgid "Remove account" -msgstr "Konto löschen" - -#: ../../mod/settings.php:129 -msgid "Missing some important data!" -msgstr "Wichtige Daten fehlen!" - -#: ../../mod/settings.php:238 -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:243 -msgid "Email settings updated." -msgstr "E-Mail Einstellungen bearbeitet." - -#: ../../mod/settings.php:258 -msgid "Features updated" -msgstr "Features aktualisiert" - -#: ../../mod/settings.php:321 -msgid "Relocate message has been send to your contacts" -msgstr "Die Umzugsbenachrichtigung wurde an Deine Kontakte versendet." - -#: ../../mod/settings.php:335 -msgid "Passwords do not match. Password unchanged." -msgstr "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert." - -#: ../../mod/settings.php:340 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert." - -#: ../../mod/settings.php:348 -msgid "Wrong password." -msgstr "Falsches Passwort." - -#: ../../mod/settings.php:359 -msgid "Password changed." -msgstr "Passwort geändert." - -#: ../../mod/settings.php:361 -msgid "Password update failed. Please try again." -msgstr "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal." - -#: ../../mod/settings.php:428 -msgid " Please use a shorter name." -msgstr " Bitte verwende einen kürzeren Namen." - -#: ../../mod/settings.php:430 -msgid " Name too short." -msgstr " Name ist zu kurz." - -#: ../../mod/settings.php:439 -msgid "Wrong Password" -msgstr "Falsches Passwort" - -#: ../../mod/settings.php:444 -msgid " Not valid email." -msgstr " Keine gültige E-Mail." - -#: ../../mod/settings.php:450 -msgid " Cannot change to that email." -msgstr "Ändern der E-Mail nicht möglich. " - -#: ../../mod/settings.php:506 -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:510 -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:540 -msgid "Settings updated." -msgstr "Einstellungen aktualisiert." - -#: ../../mod/settings.php:613 ../../mod/settings.php:639 -#: ../../mod/settings.php:675 -msgid "Add application" -msgstr "Programm hinzufügen" - -#: ../../mod/settings.php:617 ../../mod/settings.php:643 -msgid "Consumer Key" -msgstr "Consumer Key" - -#: ../../mod/settings.php:618 ../../mod/settings.php:644 -msgid "Consumer Secret" -msgstr "Consumer Secret" - -#: ../../mod/settings.php:619 ../../mod/settings.php:645 -msgid "Redirect" -msgstr "Umleiten" - -#: ../../mod/settings.php:620 ../../mod/settings.php:646 -msgid "Icon url" -msgstr "Icon URL" - -#: ../../mod/settings.php:631 -msgid "You can't edit this application." -msgstr "Du kannst dieses Programm nicht bearbeiten." - -#: ../../mod/settings.php:674 -msgid "Connected Apps" -msgstr "Verbundene Programme" - -#: ../../mod/settings.php:678 -msgid "Client key starts with" -msgstr "Anwenderschlüssel beginnt mit" - -#: ../../mod/settings.php:679 -msgid "No name" -msgstr "Kein Name" - -#: ../../mod/settings.php:680 -msgid "Remove authorization" -msgstr "Autorisierung entziehen" - -#: ../../mod/settings.php:692 -msgid "No Plugin settings configured" -msgstr "Keine Plugin-Einstellungen konfiguriert" - -#: ../../mod/settings.php:700 -msgid "Plugin Settings" -msgstr "Plugin-Einstellungen" - -#: ../../mod/settings.php:714 -msgid "Off" -msgstr "Aus" - -#: ../../mod/settings.php:714 -msgid "On" -msgstr "An" - -#: ../../mod/settings.php:722 -msgid "Additional Features" -msgstr "Zusätzliche Features" - -#: ../../mod/settings.php:736 ../../mod/settings.php:737 -#, 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:736 ../../mod/dfrn_request.php:838 -#: ../../include/contact_selectors.php:80 -msgid "Diaspora" -msgstr "Diaspora" - -#: ../../mod/settings.php:736 ../../mod/settings.php:737 -msgid "enabled" -msgstr "eingeschaltet" - -#: ../../mod/settings.php:736 ../../mod/settings.php:737 -msgid "disabled" -msgstr "ausgeschaltet" - -#: ../../mod/settings.php:737 -msgid "StatusNet" -msgstr "StatusNet" - -#: ../../mod/settings.php:773 -msgid "Email access is disabled on this site." -msgstr "Zugriff auf E-Mails für diese Seite deaktiviert." - -#: ../../mod/settings.php:785 -msgid "Email/Mailbox Setup" -msgstr "E-Mail/Postfach-Einstellungen" - -#: ../../mod/settings.php:786 +#: ../../mod/dfrn_confirm.php:121 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." +"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/settings.php:787 -msgid "Last successful email check:" -msgstr "Letzter erfolgreicher E-Mail Check" +#: ../../mod/dfrn_confirm.php:240 +msgid "Response from remote site was not understood." +msgstr "Antwort der Gegenstelle unverständlich." -#: ../../mod/settings.php:789 -msgid "IMAP server name:" -msgstr "IMAP-Server-Name:" +#: ../../mod/dfrn_confirm.php:249 ../../mod/dfrn_confirm.php:254 +msgid "Unexpected response from remote site: " +msgstr "Unerwartete Antwort der Gegenstelle: " -#: ../../mod/settings.php:790 -msgid "IMAP port:" -msgstr "IMAP-Port:" +#: ../../mod/dfrn_confirm.php:263 +msgid "Confirmation completed successfully." +msgstr "Bestätigung erfolgreich abgeschlossen." -#: ../../mod/settings.php:791 -msgid "Security:" -msgstr "Sicherheit:" +#: ../../mod/dfrn_confirm.php:265 ../../mod/dfrn_confirm.php:279 +#: ../../mod/dfrn_confirm.php:286 +msgid "Remote site reported: " +msgstr "Gegenstelle meldet: " -#: ../../mod/settings.php:791 ../../mod/settings.php:796 -msgid "None" -msgstr "Keine" +#: ../../mod/dfrn_confirm.php:277 +msgid "Temporary failure. Please wait and try again." +msgstr "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal." -#: ../../mod/settings.php:792 -msgid "Email login name:" -msgstr "E-Mail-Login-Name:" +#: ../../mod/dfrn_confirm.php:284 +msgid "Introduction failed or was revoked." +msgstr "Kontaktanfrage schlug fehl oder wurde zurückgezogen." -#: ../../mod/settings.php:793 -msgid "Email password:" -msgstr "E-Mail-Passwort:" +#: ../../mod/dfrn_confirm.php:429 +msgid "Unable to set contact photo." +msgstr "Konnte das Bild des Kontakts nicht speichern." -#: ../../mod/settings.php:794 -msgid "Reply-to address:" -msgstr "Reply-to Adresse:" - -#: ../../mod/settings.php:795 -msgid "Send public posts to all email contacts:" -msgstr "Sende öffentliche Beiträge an alle E-Mail-Kontakte:" - -#: ../../mod/settings.php:796 -msgid "Action after import:" -msgstr "Aktion nach Import:" - -#: ../../mod/settings.php:796 -msgid "Mark as seen" -msgstr "Als gelesen markieren" - -#: ../../mod/settings.php:796 -msgid "Move to folder" -msgstr "In einen Ordner verschieben" - -#: ../../mod/settings.php:797 -msgid "Move to folder:" -msgstr "In diesen Ordner verschieben:" - -#: ../../mod/settings.php:878 -msgid "Display Settings" -msgstr "Anzeige-Einstellungen" - -#: ../../mod/settings.php:884 ../../mod/settings.php:899 -msgid "Display Theme:" -msgstr "Theme:" - -#: ../../mod/settings.php:885 -msgid "Mobile Theme:" -msgstr "Mobiles Theme" - -#: ../../mod/settings.php:886 -msgid "Update browser every xx seconds" -msgstr "Browser alle xx Sekunden aktualisieren" - -#: ../../mod/settings.php:886 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Minimal 10 Sekunden, kein Maximum" - -#: ../../mod/settings.php:887 -msgid "Number of items to display per page:" -msgstr "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: " - -#: ../../mod/settings.php:887 ../../mod/settings.php:888 -msgid "Maximum of 100 items" -msgstr "Maximal 100 Beiträge" - -#: ../../mod/settings.php:888 -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:889 -msgid "Don't show emoticons" -msgstr "Keine Smilies anzeigen" - -#: ../../mod/settings.php:890 -msgid "Don't show notices" -msgstr "Info-Popups nicht anzeigen" - -#: ../../mod/settings.php:891 -msgid "Infinite scroll" -msgstr "Endloses Scrollen" - -#: ../../mod/settings.php:892 -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:969 -msgid "User Types" -msgstr "Nutzer Art" - -#: ../../mod/settings.php:970 -msgid "Community Types" -msgstr "Gemeinschafts Art" - -#: ../../mod/settings.php:971 -msgid "Normal Account Page" -msgstr "Normales Konto" - -#: ../../mod/settings.php:972 -msgid "This account is a normal personal profile" -msgstr "Dieses Konto ist ein normales persönliches Profil" - -#: ../../mod/settings.php:975 -msgid "Soapbox Page" -msgstr "Marktschreier-Konto" - -#: ../../mod/settings.php:976 -msgid "Automatically approve all connection/friend requests as read-only fans" -msgstr "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert" - -#: ../../mod/settings.php:979 -msgid "Community Forum/Celebrity Account" -msgstr "Forum/Promi-Konto" - -#: ../../mod/settings.php:980 -msgid "" -"Automatically approve all connection/friend requests as read-write fans" -msgstr "Kontaktanfragen werden automatisch als Lese-und-Schreib-Fans akzeptiert" - -#: ../../mod/settings.php:983 -msgid "Automatic Friend Page" -msgstr "Automatische Freunde Seite" - -#: ../../mod/settings.php:984 -msgid "Automatically approve all connection/friend requests as friends" -msgstr "Kontaktanfragen werden automatisch als Freund akzeptiert" - -#: ../../mod/settings.php:987 -msgid "Private Forum [Experimental]" -msgstr "Privates Forum [Versuchsstadium]" - -#: ../../mod/settings.php:988 -msgid "Private forum - approved members only" -msgstr "Privates Forum, nur für Mitglieder" - -#: ../../mod/settings.php:1000 -msgid "OpenID:" -msgstr "OpenID:" - -#: ../../mod/settings.php:1000 -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:1010 -msgid "Publish your default profile in your local site directory?" -msgstr "Darf Dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?" - -#: ../../mod/settings.php:1010 ../../mod/settings.php:1016 -#: ../../mod/settings.php:1024 ../../mod/settings.php:1028 -#: ../../mod/settings.php:1033 ../../mod/settings.php:1039 -#: ../../mod/settings.php:1045 ../../mod/settings.php:1051 -#: ../../mod/settings.php:1081 ../../mod/settings.php:1082 -#: ../../mod/settings.php:1083 ../../mod/settings.php:1084 -#: ../../mod/settings.php:1085 ../../mod/dfrn_request.php:830 -#: ../../mod/register.php:234 ../../mod/profiles.php:661 -#: ../../mod/profiles.php:665 ../../mod/api.php:106 -msgid "No" -msgstr "Nein" - -#: ../../mod/settings.php:1016 -msgid "Publish your default profile in the global social directory?" -msgstr "Darf Dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?" - -#: ../../mod/settings.php:1024 -msgid "Hide your contact/friend list from viewers of your default profile?" -msgstr "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?" - -#: ../../mod/settings.php:1028 ../../include/conversation.php:1057 -msgid "Hide your profile details from unknown viewers?" -msgstr "Profil-Details vor unbekannten Betrachtern verbergen?" - -#: ../../mod/settings.php:1028 -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:1033 -msgid "Allow friends to post to your profile page?" -msgstr "Dürfen Deine Kontakte auf Deine Pinnwand schreiben?" - -#: ../../mod/settings.php:1039 -msgid "Allow friends to tag your posts?" -msgstr "Dürfen Deine Kontakte Deine Beiträge mit Schlagwörtern versehen?" - -#: ../../mod/settings.php:1045 -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:1051 -msgid "Permit unknown people to send you private mail?" -msgstr "Dürfen Dir Unbekannte private Nachrichten schicken?" - -#: ../../mod/settings.php:1059 -msgid "Profile is not published." -msgstr "Profil ist nicht veröffentlicht." - -#: ../../mod/settings.php:1067 -msgid "Your Identity Address is" -msgstr "Die Adresse Deines Profils lautet:" - -#: ../../mod/settings.php:1078 -msgid "Automatically expire posts after this many days:" -msgstr "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:" - -#: ../../mod/settings.php:1078 -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:1079 -msgid "Advanced expiration settings" -msgstr "Erweiterte Verfallseinstellungen" - -#: ../../mod/settings.php:1080 -msgid "Advanced Expiration" -msgstr "Erweitertes Verfallen" - -#: ../../mod/settings.php:1081 -msgid "Expire posts:" -msgstr "Beiträge verfallen lassen:" - -#: ../../mod/settings.php:1082 -msgid "Expire personal notes:" -msgstr "Persönliche Notizen verfallen lassen:" - -#: ../../mod/settings.php:1083 -msgid "Expire starred posts:" -msgstr "Markierte Beiträge verfallen lassen:" - -#: ../../mod/settings.php:1084 -msgid "Expire photos:" -msgstr "Fotos verfallen lassen:" - -#: ../../mod/settings.php:1085 -msgid "Only expire posts by others:" -msgstr "Nur Beiträge anderer verfallen:" - -#: ../../mod/settings.php:1111 -msgid "Account Settings" -msgstr "Kontoeinstellungen" - -#: ../../mod/settings.php:1119 -msgid "Password Settings" -msgstr "Passwort-Einstellungen" - -#: ../../mod/settings.php:1120 -msgid "New Password:" -msgstr "Neues Passwort:" - -#: ../../mod/settings.php:1121 -msgid "Confirm:" -msgstr "Bestätigen:" - -#: ../../mod/settings.php:1121 -msgid "Leave password fields blank unless changing" -msgstr "Lass die Passwort-Felder leer, außer Du willst das Passwort ändern" - -#: ../../mod/settings.php:1122 -msgid "Current Password:" -msgstr "Aktuelles Passwort:" - -#: ../../mod/settings.php:1122 ../../mod/settings.php:1123 -msgid "Your current password to confirm the changes" -msgstr "Dein aktuelles Passwort um die Änderungen zu bestätigen" - -#: ../../mod/settings.php:1123 -msgid "Password:" -msgstr "Passwort:" - -#: ../../mod/settings.php:1127 -msgid "Basic Settings" -msgstr "Grundeinstellungen" - -#: ../../mod/settings.php:1128 ../../include/profile_advanced.php:15 -msgid "Full Name:" -msgstr "Kompletter Name:" - -#: ../../mod/settings.php:1129 -msgid "Email Address:" -msgstr "E-Mail-Adresse:" - -#: ../../mod/settings.php:1130 -msgid "Your Timezone:" -msgstr "Deine Zeitzone:" - -#: ../../mod/settings.php:1131 -msgid "Default Post Location:" -msgstr "Standardstandort:" - -#: ../../mod/settings.php:1132 -msgid "Use Browser Location:" -msgstr "Standort des Browsers verwenden:" - -#: ../../mod/settings.php:1135 -msgid "Security and Privacy Settings" -msgstr "Sicherheits- und Privatsphäre-Einstellungen" - -#: ../../mod/settings.php:1137 -msgid "Maximum Friend Requests/Day:" -msgstr "Maximale Anzahl von Freundschaftsanfragen/Tag:" - -#: ../../mod/settings.php:1137 ../../mod/settings.php:1167 -msgid "(to prevent spam abuse)" -msgstr "(um SPAM zu vermeiden)" - -#: ../../mod/settings.php:1138 -msgid "Default Post Permissions" -msgstr "Standard-Zugriffsrechte für Beiträge" - -#: ../../mod/settings.php:1139 -msgid "(click to open/close)" -msgstr "(klicke zum öffnen/schließen)" - -#: ../../mod/settings.php:1148 ../../mod/photos.php:1146 -#: ../../mod/photos.php:1519 -msgid "Show to Groups" -msgstr "Zeige den Gruppen" - -#: ../../mod/settings.php:1149 ../../mod/photos.php:1147 -#: ../../mod/photos.php:1520 -msgid "Show to Contacts" -msgstr "Zeige den Kontakten" - -#: ../../mod/settings.php:1150 -msgid "Default Private Post" -msgstr "Privater Standardbeitrag" - -#: ../../mod/settings.php:1151 -msgid "Default Public Post" -msgstr "Öffentlicher Standardbeitrag" - -#: ../../mod/settings.php:1155 -msgid "Default Permissions for New Posts" -msgstr "Standardberechtigungen für neue Beiträge" - -#: ../../mod/settings.php:1167 -msgid "Maximum private messages per day from unknown people:" -msgstr "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:" - -#: ../../mod/settings.php:1170 -msgid "Notification Settings" -msgstr "Benachrichtigungseinstellungen" - -#: ../../mod/settings.php:1171 -msgid "By default post a status message when:" -msgstr "Standardmäßig eine Statusnachricht posten, wenn:" - -#: ../../mod/settings.php:1172 -msgid "accepting a friend request" -msgstr "– Du eine Kontaktanfrage akzeptierst" - -#: ../../mod/settings.php:1173 -msgid "joining a forum/community" -msgstr "– Du einem Forum/einer Gemeinschaftsseite beitrittst" - -#: ../../mod/settings.php:1174 -msgid "making an interesting profile change" -msgstr "– Du eine interessante Änderung an Deinem Profil durchführst" - -#: ../../mod/settings.php:1175 -msgid "Send a notification email when:" -msgstr "Benachrichtigungs-E-Mail senden wenn:" - -#: ../../mod/settings.php:1176 -msgid "You receive an introduction" -msgstr "– Du eine Kontaktanfrage erhältst" - -#: ../../mod/settings.php:1177 -msgid "Your introductions are confirmed" -msgstr "– eine Deiner Kontaktanfragen akzeptiert wurde" - -#: ../../mod/settings.php:1178 -msgid "Someone writes on your profile wall" -msgstr "– jemand etwas auf Deine Pinnwand schreibt" - -#: ../../mod/settings.php:1179 -msgid "Someone writes a followup comment" -msgstr "– jemand auch einen Kommentar verfasst" - -#: ../../mod/settings.php:1180 -msgid "You receive a private message" -msgstr "– Du eine private Nachricht erhältst" - -#: ../../mod/settings.php:1181 -msgid "You receive a friend suggestion" -msgstr "– Du eine Empfehlung erhältst" - -#: ../../mod/settings.php:1182 -msgid "You are tagged in a post" -msgstr "– Du in einem Beitrag erwähnt wirst" - -#: ../../mod/settings.php:1183 -msgid "You are poked/prodded/etc. in a post" -msgstr "– Du von jemandem angestupst oder sonstwie behandelt wirst" - -#: ../../mod/settings.php:1185 -msgid "Text-only notification emails" -msgstr "Benachrichtigungs E-Mail als Rein-Text." - -#: ../../mod/settings.php:1187 -msgid "Send text only notification emails, without the html part" -msgstr "Sende Benachrichtigungs E-Mail als Rein-Text - ohne HTML-Teil" - -#: ../../mod/settings.php:1189 -msgid "Advanced Account/Page Type Settings" -msgstr "Erweiterte Konto-/Seitentyp-Einstellungen" - -#: ../../mod/settings.php:1190 -msgid "Change the behaviour of this account for special situations" -msgstr "Verhalten dieses Kontos in bestimmten Situationen:" - -#: ../../mod/settings.php:1193 -msgid "Relocate" -msgstr "Umziehen" - -#: ../../mod/settings.php:1194 -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:1195 -msgid "Resend relocate message to contacts" -msgstr "Umzugsbenachrichtigung erneut an Kontakte senden" - -#: ../../mod/dfrn_request.php:95 -msgid "This introduction has already been accepted." -msgstr "Diese Kontaktanfrage wurde bereits akzeptiert." - -#: ../../mod/dfrn_request.php:120 ../../mod/dfrn_request.php:518 -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:125 ../../mod/dfrn_request.php:523 -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:127 ../../mod/dfrn_request.php:525 -msgid "Warning: profile location has no profile photo." -msgstr "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse." - -#: ../../mod/dfrn_request.php:130 ../../mod/dfrn_request.php:528 +#: ../../mod/dfrn_confirm.php:571 #, 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" +msgid "No user record found for '%s' " +msgstr "Für '%s' wurde kein Nutzer gefunden" -#: ../../mod/dfrn_request.php:172 -msgid "Introduction complete." -msgstr "Kontaktanfrage abgeschlossen." +#: ../../mod/dfrn_confirm.php:581 +msgid "Our site encryption key is apparently messed up." +msgstr "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung." -#: ../../mod/dfrn_request.php:214 -msgid "Unrecoverable protocol error." -msgstr "Nicht behebbarer Protokollfehler." +#: ../../mod/dfrn_confirm.php:592 +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_request.php:242 -msgid "Profile unavailable." -msgstr "Profil nicht verfügbar." +#: ../../mod/dfrn_confirm.php:613 +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_request.php:267 +#: ../../mod/dfrn_confirm.php:627 #, php-format -msgid "%s has received too many connection requests today." -msgstr "%s hat heute zu viele Freundschaftsanfragen erhalten." +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_request.php:268 -msgid "Spam protection measures have been invoked." -msgstr "Maßnahmen zum Spamschutz wurden ergriffen." - -#: ../../mod/dfrn_request.php:269 -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:331 -msgid "Invalid locator" -msgstr "Ungültiger Locator" - -#: ../../mod/dfrn_request.php:340 -msgid "Invalid email address." -msgstr "Ungültige E-Mail-Adresse." - -#: ../../mod/dfrn_request.php:367 -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:463 -msgid "Unable to resolve your name at the provided location." -msgstr "Konnte Deinen Namen an der angegebenen Stelle nicht finden." - -#: ../../mod/dfrn_request.php:476 -msgid "You have already introduced yourself here." -msgstr "Du hast Dich hier bereits vorgestellt." - -#: ../../mod/dfrn_request.php:480 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Es scheint so, als ob Du bereits mit %s befreundet bist." - -#: ../../mod/dfrn_request.php:501 -msgid "Invalid profile URL." -msgstr "Ungültige Profil-URL." - -#: ../../mod/dfrn_request.php:507 ../../include/follow.php:27 -msgid "Disallowed profile URL." -msgstr "Nicht erlaubte Profil-URL." - -#: ../../mod/dfrn_request.php:597 -msgid "Your introduction has been sent." -msgstr "Deine Kontaktanfrage wurde gesendet." - -#: ../../mod/dfrn_request.php:650 -msgid "Please login to confirm introduction." -msgstr "Bitte melde Dich an, um die Kontaktanfrage zu bestätigen." - -#: ../../mod/dfrn_request.php:660 +#: ../../mod/dfrn_confirm.php:647 msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "Momentan bist Du mit einer anderen Identität angemeldet. Bitte melde Dich mit diesem Profil an." +"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_request.php:671 -msgid "Hide this contact" -msgstr "Verberge diesen Kontakt" +#: ../../mod/dfrn_confirm.php:658 +msgid "Unable to set your contact credentials on our system." +msgstr "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden." -#: ../../mod/dfrn_request.php:674 +#: ../../mod/dfrn_confirm.php:725 +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:797 #, php-format -msgid "Welcome home %s." -msgstr "Willkommen zurück %s." +msgid "%1$s has joined %2$s" +msgstr "%1$s ist %2$s beigetreten" -#: ../../mod/dfrn_request.php:675 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Bitte bestätige Deine Kontaktanfrage bei %s." +#: ../../mod/item.php:114 +msgid "Unable to locate original post." +msgstr "Konnte den Originalbeitrag nicht finden." -#: ../../mod/dfrn_request.php:676 -msgid "Confirm" -msgstr "Bestätigen" +#: ../../mod/item.php:346 +msgid "Empty post discarded." +msgstr "Leerer Beitrag wurde verworfen." -#: ../../mod/dfrn_request.php:804 -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/item.php:839 +msgid "System error. Post not saved." +msgstr "Systemfehler. Beitrag konnte nicht gespeichert werden." -#: ../../mod/dfrn_request.php:824 -msgid "" -"If you are not yet a member of the free social web, follow this link to find a public" -" Friendica site and join us today." -msgstr "Wenn Du noch kein Mitglied dieses freien sozialen Netzwerks bist, folge diesem Link um einen öffentlichen Friendica-Server zu finden und beizutreten." - -#: ../../mod/dfrn_request.php:827 -msgid "Friend/Connection Request" -msgstr "Freundschafts-/Kontaktanfrage" - -#: ../../mod/dfrn_request.php:828 -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:829 -msgid "Please answer the following:" -msgstr "Bitte beantworte folgendes:" - -#: ../../mod/dfrn_request.php:830 -#, php-format -msgid "Does %s know you?" -msgstr "Kennt %s Dich?" - -#: ../../mod/dfrn_request.php:834 -msgid "Add a personal note:" -msgstr "Eine persönliche Notiz beifügen:" - -#: ../../mod/dfrn_request.php:836 ../../include/contact_selectors.php:76 -msgid "Friendica" -msgstr "Friendica" - -#: ../../mod/dfrn_request.php:837 -msgid "StatusNet/Federated Social Web" -msgstr "StatusNet/Federated Social Web" - -#: ../../mod/dfrn_request.php:839 +#: ../../mod/item.php:965 #, 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." +"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/dfrn_request.php:840 -msgid "Your Identity Address:" -msgstr "Adresse Deines Profils:" - -#: ../../mod/dfrn_request.php:843 -msgid "Submit Request" -msgstr "Anfrage abschicken" - -#: ../../mod/register.php:90 -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:96 +#: ../../mod/item.php:967 #, php-format +msgid "You may visit them online at %s" +msgstr "Du kannst sie online unter %s besuchen" + +#: ../../mod/item.php:968 msgid "" -"Failed to send email message. Here your accout details:
login: %s
" -"password: %s

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." +"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/register.php:105 -msgid "Your registration can not be processed." -msgstr "Deine Registrierung konnte nicht verarbeitet werden." +#: ../../mod/item.php:972 +#, php-format +msgid "%s posted an update." +msgstr "%s hat ein Update veröffentlicht." -#: ../../mod/register.php:148 -msgid "Your registration is pending approval by the site owner." -msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden." +#: ../../mod/profile_photo.php:44 +msgid "Image uploaded but image cropping failed." +msgstr "Bild hochgeladen, aber das Zuschneiden schlug fehl." -#: ../../mod/register.php:186 ../../mod/uimport.php:50 +#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84 +#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "Verkleinern der Bildgröße von [%s] scheiterte." + +#: ../../mod/profile_photo.php:118 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." +"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/register.php:214 -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/profile_photo.php:128 +msgid "Unable to process image" +msgstr "Bild konnte nicht verarbeitet werden" -#: ../../mod/register.php:215 -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/profile_photo.php:242 +msgid "Upload File:" +msgstr "Datei hochladen:" -#: ../../mod/register.php:216 -msgid "Your OpenID (optional): " -msgstr "Deine OpenID (optional): " +#: ../../mod/profile_photo.php:243 +msgid "Select a profile:" +msgstr "Profil auswählen:" -#: ../../mod/register.php:230 -msgid "Include your profile in member directory?" -msgstr "Soll Dein Profil im Nutzerverzeichnis angezeigt werden?" +#: ../../mod/profile_photo.php:245 +msgid "Upload" +msgstr "Hochladen" -#: ../../mod/register.php:251 -msgid "Membership on this site is by invitation only." -msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich." +#: ../../mod/profile_photo.php:248 +msgid "skip this step" +msgstr "diesen Schritt überspringen" -#: ../../mod/register.php:252 -msgid "Your invitation ID: " -msgstr "ID Deiner Einladung: " +#: ../../mod/profile_photo.php:248 +msgid "select a photo from your photo albums" +msgstr "wähle ein Foto aus deinen Fotoalben" -#: ../../mod/register.php:263 -msgid "Your Full Name (e.g. Joe Smith): " -msgstr "Vollständiger Name (z.B. Max Mustermann): " +#: ../../mod/profile_photo.php:262 +msgid "Crop Image" +msgstr "Bild zurechtschneiden" -#: ../../mod/register.php:264 -msgid "Your Email Address: " -msgstr "Deine E-Mail-Adresse: " +#: ../../mod/profile_photo.php:263 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann." -#: ../../mod/register.php:265 -msgid "" -"Choose a profile nickname. This must begin with a text character. Your " -"profile address on this site will then be " -"'nickname@$sitename'." -msgstr "Wähle einen Spitznamen für Dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse Deines Profils auf dieser Seite wird 'spitzname@$sitename' sein." +#: ../../mod/profile_photo.php:265 +msgid "Done Editing" +msgstr "Bearbeitung abgeschlossen" -#: ../../mod/register.php:266 -msgid "Choose a nickname: " -msgstr "Spitznamen wählen: " +#: ../../mod/profile_photo.php:299 +msgid "Image uploaded successfully." +msgstr "Bild erfolgreich hochgeladen." -#: ../../mod/register.php:269 ../../boot.php:1241 ../../include/nav.php:109 -msgid "Register" -msgstr "Registrieren" +#: ../../mod/allfriends.php:34 +#, php-format +msgid "Friends of %s" +msgstr "Freunde von %s" -#: ../../mod/register.php:275 ../../mod/uimport.php:64 -msgid "Import" -msgstr "Import" - -#: ../../mod/register.php:276 -msgid "Import your profile to this friendica instance" -msgstr "Importiere Dein Profil auf diese Friendica Instanz" - -#: ../../mod/maintenance.php:5 -msgid "System down for maintenance" -msgstr "System zur Wartung abgeschaltet" - -#: ../../mod/search.php:99 ../../include/text.php:953 -#: ../../include/text.php:954 ../../include/nav.php:119 -msgid "Search" -msgstr "Suche" - -#: ../../mod/directory.php:51 ../../view/theme/diabook/theme.php:525 -msgid "Global Directory" -msgstr "Weltweites Verzeichnis" +#: ../../mod/allfriends.php:40 +msgid "No friends to display." +msgstr "Keine Freunde zum Anzeigen." #: ../../mod/directory.php:59 msgid "Find on this site" @@ -4562,607 +7907,14 @@ msgstr "Auf diesem Server suchen" msgid "Site Directory" msgstr "Verzeichnis" -#: ../../mod/directory.php:113 ../../mod/profiles.php:750 -msgid "Age: " -msgstr "Alter: " - #: ../../mod/directory.php:116 msgid "Gender: " msgstr "Geschlecht:" -#: ../../mod/directory.php:138 ../../boot.php:1650 -#: ../../include/profile_advanced.php:17 -msgid "Gender:" -msgstr "Geschlecht:" - -#: ../../mod/directory.php:140 ../../boot.php:1653 -#: ../../include/profile_advanced.php:37 -msgid "Status:" -msgstr "Status:" - -#: ../../mod/directory.php:142 ../../boot.php:1655 -#: ../../include/profile_advanced.php:48 -msgid "Homepage:" -msgstr "Homepage:" - -#: ../../mod/directory.php:144 ../../boot.php:1657 -#: ../../include/profile_advanced.php:58 -msgid "About:" -msgstr "Über:" - #: ../../mod/directory.php:189 msgid "No entries (some entries may be hidden)." msgstr "Keine Einträge (einige Einträge könnten versteckt sein)." -#: ../../mod/delegate.php:101 -msgid "No potential page delegates located." -msgstr "Keine potentiellen Bevollmächtigten für die Seite gefunden." - -#: ../../mod/delegate.php:130 ../../include/nav.php:170 -msgid "Delegate Page Management" -msgstr "Delegiere das Management für die Seite" - -#: ../../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/common.php:42 -msgid "Common Friends" -msgstr "Gemeinsame Freunde" - -#: ../../mod/common.php:78 -msgid "No contacts in common." -msgstr "Keine gemeinsamen Kontakte." - -#: ../../mod/uexport.php:77 -msgid "Export account" -msgstr "Account exportieren" - -#: ../../mod/uexport.php:77 -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:78 -msgid "Export all" -msgstr "Alles exportieren" - -#: ../../mod/uexport.php:78 -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/mood.php:62 ../../include/conversation.php:227 -#, php-format -msgid "%1$s is currently %2$s" -msgstr "%1$s ist momentan %2$s" - -#: ../../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 Freunden" - -#: ../../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:68 ../../include/contact_widgets.php:35 -#: ../../view/theme/diabook/theme.php:527 -msgid "Friend Suggestions" -msgstr "Kontaktvorschläge" - -#: ../../mod/suggest.php:74 -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:92 -msgid "Ignore/Hide" -msgstr "Ignorieren/Verbergen" - -#: ../../mod/profiles.php:37 -msgid "Profile deleted." -msgstr "Profil gelöscht." - -#: ../../mod/profiles.php:55 ../../mod/profiles.php:89 -msgid "Profile-" -msgstr "Profil-" - -#: ../../mod/profiles.php:74 ../../mod/profiles.php:117 -msgid "New profile created." -msgstr "Neues Profil angelegt." - -#: ../../mod/profiles.php:95 -msgid "Profile unavailable to clone." -msgstr "Profil nicht zum Duplizieren verfügbar." - -#: ../../mod/profiles.php:189 -msgid "Profile Name is required." -msgstr "Profilname ist erforderlich." - -#: ../../mod/profiles.php:340 -msgid "Marital Status" -msgstr "Familienstand" - -#: ../../mod/profiles.php:344 -msgid "Romantic Partner" -msgstr "Romanze" - -#: ../../mod/profiles.php:348 -msgid "Likes" -msgstr "Likes" - -#: ../../mod/profiles.php:352 -msgid "Dislikes" -msgstr "Dislikes" - -#: ../../mod/profiles.php:356 -msgid "Work/Employment" -msgstr "Arbeit / Beschäftigung" - -#: ../../mod/profiles.php:359 -msgid "Religion" -msgstr "Religion" - -#: ../../mod/profiles.php:363 -msgid "Political Views" -msgstr "Politische Ansichten" - -#: ../../mod/profiles.php:367 -msgid "Gender" -msgstr "Geschlecht" - -#: ../../mod/profiles.php:371 -msgid "Sexual Preference" -msgstr "Sexuelle Vorlieben" - -#: ../../mod/profiles.php:375 -msgid "Homepage" -msgstr "Webseite" - -#: ../../mod/profiles.php:379 ../../mod/profiles.php:698 -msgid "Interests" -msgstr "Interessen" - -#: ../../mod/profiles.php:383 -msgid "Address" -msgstr "Adresse" - -#: ../../mod/profiles.php:390 ../../mod/profiles.php:694 -msgid "Location" -msgstr "Wohnort" - -#: ../../mod/profiles.php:473 -msgid "Profile updated." -msgstr "Profil aktualisiert." - -#: ../../mod/profiles.php:568 -msgid " and " -msgstr " und " - -#: ../../mod/profiles.php:576 -msgid "public profile" -msgstr "öffentliches Profil" - -#: ../../mod/profiles.php:579 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s hat %2$s geändert auf “%3$s”" - -#: ../../mod/profiles.php:580 -#, php-format -msgid " - Visit %1$s's %2$s" -msgstr " – %1$ss %2$s besuchen" - -#: ../../mod/profiles.php:583 -#, 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:658 -msgid "Hide contacts and friends:" -msgstr "Kontakte und Freunde verbergen" - -#: ../../mod/profiles.php:663 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "Liste der Kontakte vor Betrachtern dieses Profils verbergen?" - -#: ../../mod/profiles.php:685 -msgid "Edit Profile Details" -msgstr "Profil bearbeiten" - -#: ../../mod/profiles.php:687 -msgid "Change Profile Photo" -msgstr "Profilbild ändern" - -#: ../../mod/profiles.php:688 -msgid "View this profile" -msgstr "Dieses Profil anzeigen" - -#: ../../mod/profiles.php:689 -msgid "Create a new profile using these settings" -msgstr "Neues Profil anlegen und diese Einstellungen verwenden" - -#: ../../mod/profiles.php:690 -msgid "Clone this profile" -msgstr "Dieses Profil duplizieren" - -#: ../../mod/profiles.php:691 -msgid "Delete this profile" -msgstr "Dieses Profil löschen" - -#: ../../mod/profiles.php:692 -msgid "Basic information" -msgstr "Grundinformationen" - -#: ../../mod/profiles.php:693 -msgid "Profile picture" -msgstr "Profilbild" - -#: ../../mod/profiles.php:695 -msgid "Preferences" -msgstr "Vorlieben" - -#: ../../mod/profiles.php:696 -msgid "Status information" -msgstr "Status Informationen" - -#: ../../mod/profiles.php:697 -msgid "Additional information" -msgstr "Zusätzliche Informationen" - -#: ../../mod/profiles.php:700 -msgid "Profile Name:" -msgstr "Profilname:" - -#: ../../mod/profiles.php:701 -msgid "Your Full Name:" -msgstr "Dein kompletter Name:" - -#: ../../mod/profiles.php:702 -msgid "Title/Description:" -msgstr "Titel/Beschreibung:" - -#: ../../mod/profiles.php:703 -msgid "Your Gender:" -msgstr "Dein Geschlecht:" - -#: ../../mod/profiles.php:704 -#, php-format -msgid "Birthday (%s):" -msgstr "Geburtstag (%s):" - -#: ../../mod/profiles.php:705 -msgid "Street Address:" -msgstr "Adresse:" - -#: ../../mod/profiles.php:706 -msgid "Locality/City:" -msgstr "Wohnort:" - -#: ../../mod/profiles.php:707 -msgid "Postal/Zip Code:" -msgstr "Postleitzahl:" - -#: ../../mod/profiles.php:708 -msgid "Country:" -msgstr "Land:" - -#: ../../mod/profiles.php:709 -msgid "Region/State:" -msgstr "Region/Bundesstaat:" - -#: ../../mod/profiles.php:710 -msgid " Marital Status:" -msgstr " Beziehungsstatus:" - -#: ../../mod/profiles.php:711 -msgid "Who: (if applicable)" -msgstr "Wer: (falls anwendbar)" - -#: ../../mod/profiles.php:712 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com" - -#: ../../mod/profiles.php:713 -msgid "Since [date]:" -msgstr "Seit [Datum]:" - -#: ../../mod/profiles.php:714 ../../include/profile_advanced.php:46 -msgid "Sexual Preference:" -msgstr "Sexuelle Vorlieben:" - -#: ../../mod/profiles.php:715 -msgid "Homepage URL:" -msgstr "Adresse der Homepage:" - -#: ../../mod/profiles.php:716 ../../include/profile_advanced.php:50 -msgid "Hometown:" -msgstr "Heimatort:" - -#: ../../mod/profiles.php:717 ../../include/profile_advanced.php:54 -msgid "Political Views:" -msgstr "Politische Ansichten:" - -#: ../../mod/profiles.php:718 -msgid "Religious Views:" -msgstr "Religiöse Ansichten:" - -#: ../../mod/profiles.php:719 -msgid "Public Keywords:" -msgstr "Öffentliche Schlüsselwörter:" - -#: ../../mod/profiles.php:720 -msgid "Private Keywords:" -msgstr "Private Schlüsselwörter:" - -#: ../../mod/profiles.php:721 ../../include/profile_advanced.php:62 -msgid "Likes:" -msgstr "Likes:" - -#: ../../mod/profiles.php:722 ../../include/profile_advanced.php:64 -msgid "Dislikes:" -msgstr "Dislikes:" - -#: ../../mod/profiles.php:723 -msgid "Example: fishing photography software" -msgstr "Beispiel: Fischen Fotografie Software" - -#: ../../mod/profiles.php:724 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "(Wird verwendet, um potentielle Freunde zu finden, kann von Fremden eingesehen werden)" - -#: ../../mod/profiles.php:725 -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:726 -msgid "Tell us about yourself..." -msgstr "Erzähle uns ein bisschen von Dir …" - -#: ../../mod/profiles.php:727 -msgid "Hobbies/Interests" -msgstr "Hobbies/Interessen" - -#: ../../mod/profiles.php:728 -msgid "Contact information and Social Networks" -msgstr "Kontaktinformationen und Soziale Netzwerke" - -#: ../../mod/profiles.php:729 -msgid "Musical interests" -msgstr "Musikalische Interessen" - -#: ../../mod/profiles.php:730 -msgid "Books, literature" -msgstr "Bücher, Literatur" - -#: ../../mod/profiles.php:731 -msgid "Television" -msgstr "Fernsehen" - -#: ../../mod/profiles.php:732 -msgid "Film/dance/culture/entertainment" -msgstr "Filme/Tänze/Kultur/Unterhaltung" - -#: ../../mod/profiles.php:733 -msgid "Love/romance" -msgstr "Liebe/Romantik" - -#: ../../mod/profiles.php:734 -msgid "Work/employment" -msgstr "Arbeit/Anstellung" - -#: ../../mod/profiles.php:735 -msgid "School/education" -msgstr "Schule/Ausbildung" - -#: ../../mod/profiles.php:740 -msgid "" -"This is your public profile.
It may " -"be visible to anybody using the internet." -msgstr "Dies ist Dein öffentliches Profil.
Es könnte für jeden Nutzer des Internets sichtbar sein." - -#: ../../mod/profiles.php:803 -msgid "Edit/Manage Profiles" -msgstr "Bearbeite/Verwalte Profile" - -#: ../../mod/profiles.php:804 ../../boot.php:1611 ../../boot.php:1637 -msgid "Change profile photo" -msgstr "Profilbild ändern" - -#: ../../mod/profiles.php:805 ../../boot.php:1612 -msgid "Create New Profile" -msgstr "Neues Profil anlegen" - -#: ../../mod/profiles.php:816 ../../boot.php:1622 -msgid "Profile Image" -msgstr "Profilbild" - -#: ../../mod/profiles.php:818 ../../boot.php:1625 -msgid "visible to everybody" -msgstr "sichtbar für jeden" - -#: ../../mod/profiles.php:819 ../../boot.php:1626 -msgid "Edit visibility" -msgstr "Sichtbarkeit bearbeiten" - -#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 -msgid "Item not found" -msgstr "Beitrag nicht gefunden" - -#: ../../mod/editpost.php:39 -msgid "Edit post" -msgstr "Beitrag bearbeiten" - -#: ../../mod/editpost.php:111 ../../include/conversation.php:1092 -msgid "upload photo" -msgstr "Bild hochladen" - -#: ../../mod/editpost.php:112 ../../include/conversation.php:1093 -msgid "Attach file" -msgstr "Datei anhängen" - -#: ../../mod/editpost.php:113 ../../include/conversation.php:1094 -msgid "attach file" -msgstr "Datei anhängen" - -#: ../../mod/editpost.php:115 ../../include/conversation.php:1096 -msgid "web link" -msgstr "Weblink" - -#: ../../mod/editpost.php:116 ../../include/conversation.php:1097 -msgid "Insert video link" -msgstr "Video-Adresse einfügen" - -#: ../../mod/editpost.php:117 ../../include/conversation.php:1098 -msgid "video link" -msgstr "Video-Link" - -#: ../../mod/editpost.php:118 ../../include/conversation.php:1099 -msgid "Insert audio link" -msgstr "Audio-Adresse einfügen" - -#: ../../mod/editpost.php:119 ../../include/conversation.php:1100 -msgid "audio link" -msgstr "Audio-Link" - -#: ../../mod/editpost.php:120 ../../include/conversation.php:1101 -msgid "Set your location" -msgstr "Deinen Standort festlegen" - -#: ../../mod/editpost.php:121 ../../include/conversation.php:1102 -msgid "set location" -msgstr "Ort setzen" - -#: ../../mod/editpost.php:122 ../../include/conversation.php:1103 -msgid "Clear browser location" -msgstr "Browser-Standort leeren" - -#: ../../mod/editpost.php:123 ../../include/conversation.php:1104 -msgid "clear location" -msgstr "Ort löschen" - -#: ../../mod/editpost.php:125 ../../include/conversation.php:1110 -msgid "Permission settings" -msgstr "Berechtigungseinstellungen" - -#: ../../mod/editpost.php:133 ../../include/conversation.php:1119 -msgid "CC: email addresses" -msgstr "Cc: E-Mail-Addressen" - -#: ../../mod/editpost.php:134 ../../include/conversation.php:1120 -msgid "Public post" -msgstr "Öffentlicher Beitrag" - -#: ../../mod/editpost.php:137 ../../include/conversation.php:1106 -msgid "Set title" -msgstr "Titel setzen" - -#: ../../mod/editpost.php:139 ../../include/conversation.php:1108 -msgid "Categories (comma-separated list)" -msgstr "Kategorien (kommasepariert)" - -#: ../../mod/editpost.php:140 ../../include/conversation.php:1122 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Z.B.: bob@example.com, mary@example.com" - -#: ../../mod/friendica.php:59 -msgid "This is Friendica, version" -msgstr "Dies ist Friendica, Version" - -#: ../../mod/friendica.php:60 -msgid "running at web location" -msgstr "die unter folgender Webadresse zu finden ist" - -#: ../../mod/friendica.php:62 -msgid "" -"Please visit Friendica.com to learn " -"more about the Friendica project." -msgstr "Bitte besuche Friendica.com, um mehr über das Friendica Projekt zu erfahren." - -#: ../../mod/friendica.php:64 -msgid "Bug reports and issues: please visit" -msgstr "Probleme oder Fehler gefunden? Bitte besuche" - -#: ../../mod/friendica.php:65 -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:79 -msgid "Installed plugins/addons/apps:" -msgstr "Installierte Plugins/Erweiterungen/Apps" - -#: ../../mod/friendica.php:92 -msgid "No installed plugins/addons/apps" -msgstr "Keine Plugins/Erweiterungen/Apps installiert" - -#: ../../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/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/notes.php:44 ../../boot.php:2150 -msgid "Personal Notes" -msgstr "Persönliche Notizen" - -#: ../../mod/localtime.php:12 ../../include/bb2diaspora.php:148 -#: ../../include/event.php:11 -msgid "l F d, Y \\@ g:i A" -msgstr "l, d. F Y\\, H:i" - #: ../../mod/localtime.php:24 msgid "Time Conversion" msgstr "Zeitumrechnung" @@ -5191,2703 +7943,3 @@ msgstr "Umgerechnete lokale Zeit: %s" #: ../../mod/localtime.php:41 msgid "Please select your timezone:" msgstr "Bitte wähle Deine Zeitzone:" - -#: ../../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/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: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/photos.php:52 ../../boot.php:2129 -msgid "Photo Albums" -msgstr "Fotoalben" - -#: ../../mod/photos.php:60 ../../mod/photos.php:155 ../../mod/photos.php:1064 -#: ../../mod/photos.php:1187 ../../mod/photos.php:1210 -#: ../../mod/photos.php:1760 ../../mod/photos.php:1772 -#: ../../view/theme/diabook/theme.php:499 -msgid "Contact Photos" -msgstr "Kontaktbilder" - -#: ../../mod/photos.php:67 ../../mod/photos.php:1262 ../../mod/photos.php:1819 -msgid "Upload New Photos" -msgstr "Neue Fotos hochladen" - -#: ../../mod/photos.php:144 -msgid "Contact information unavailable" -msgstr "Kontaktinformationen nicht verfügbar" - -#: ../../mod/photos.php:165 -msgid "Album not found." -msgstr "Album nicht gefunden." - -#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204 -msgid "Delete Album" -msgstr "Album löschen" - -#: ../../mod/photos.php:198 -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:278 ../../mod/photos.php:289 ../../mod/photos.php:1515 -msgid "Delete Photo" -msgstr "Foto löschen" - -#: ../../mod/photos.php:287 -msgid "Do you really want to delete this photo?" -msgstr "Möchtest Du wirklich dieses Foto löschen?" - -#: ../../mod/photos.php:662 -#, 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:662 -msgid "a photo" -msgstr "einem Foto" - -#: ../../mod/photos.php:767 -msgid "Image exceeds size limit of " -msgstr "Die Bildgröße übersteigt das Limit von " - -#: ../../mod/photos.php:775 -msgid "Image file is empty." -msgstr "Bilddatei ist leer." - -#: ../../mod/photos.php:930 -msgid "No photos selected" -msgstr "Keine Bilder ausgewählt" - -#: ../../mod/photos.php:1094 -#, 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:1129 -msgid "Upload Photos" -msgstr "Bilder hochladen" - -#: ../../mod/photos.php:1133 ../../mod/photos.php:1199 -msgid "New album name: " -msgstr "Name des neuen Albums: " - -#: ../../mod/photos.php:1134 -msgid "or existing album name: " -msgstr "oder existierender Albumname: " - -#: ../../mod/photos.php:1135 -msgid "Do not show a status post for this upload" -msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen" - -#: ../../mod/photos.php:1137 ../../mod/photos.php:1510 -msgid "Permissions" -msgstr "Berechtigungen" - -#: ../../mod/photos.php:1148 -msgid "Private Photo" -msgstr "Privates Foto" - -#: ../../mod/photos.php:1149 -msgid "Public Photo" -msgstr "Öffentliches Foto" - -#: ../../mod/photos.php:1212 -msgid "Edit Album" -msgstr "Album bearbeiten" - -#: ../../mod/photos.php:1218 -msgid "Show Newest First" -msgstr "Zeige neueste zuerst" - -#: ../../mod/photos.php:1220 -msgid "Show Oldest First" -msgstr "Zeige älteste zuerst" - -#: ../../mod/photos.php:1248 ../../mod/photos.php:1802 -msgid "View Photo" -msgstr "Foto betrachten" - -#: ../../mod/photos.php:1294 -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:1296 -msgid "Photo not available" -msgstr "Foto nicht verfügbar" - -#: ../../mod/photos.php:1352 -msgid "View photo" -msgstr "Fotos ansehen" - -#: ../../mod/photos.php:1352 -msgid "Edit photo" -msgstr "Foto bearbeiten" - -#: ../../mod/photos.php:1353 -msgid "Use as profile photo" -msgstr "Als Profilbild verwenden" - -#: ../../mod/photos.php:1378 -msgid "View Full Size" -msgstr "Betrachte Originalgröße" - -#: ../../mod/photos.php:1457 -msgid "Tags: " -msgstr "Tags: " - -#: ../../mod/photos.php:1460 -msgid "[Remove any tag]" -msgstr "[Tag entfernen]" - -#: ../../mod/photos.php:1500 -msgid "Rotate CW (right)" -msgstr "Drehen US (rechts)" - -#: ../../mod/photos.php:1501 -msgid "Rotate CCW (left)" -msgstr "Drehen EUS (links)" - -#: ../../mod/photos.php:1503 -msgid "New album name" -msgstr "Name des neuen Albums" - -#: ../../mod/photos.php:1506 -msgid "Caption" -msgstr "Bildunterschrift" - -#: ../../mod/photos.php:1508 -msgid "Add a Tag" -msgstr "Tag hinzufügen" - -#: ../../mod/photos.php:1512 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" - -#: ../../mod/photos.php:1521 -msgid "Private photo" -msgstr "Privates Foto" - -#: ../../mod/photos.php:1522 -msgid "Public photo" -msgstr "Öffentliches Foto" - -#: ../../mod/photos.php:1544 ../../include/conversation.php:1090 -msgid "Share" -msgstr "Teilen" - -#: ../../mod/photos.php:1817 -msgid "Recent Photos" -msgstr "Neueste Fotos" - -#: ../../mod/regmod.php:55 -msgid "Account approved." -msgstr "Konto freigegeben." - -#: ../../mod/regmod.php:92 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registrierung für %s wurde zurückgezogen" - -#: ../../mod/regmod.php:104 -msgid "Please login." -msgstr "Bitte melde Dich an." - -#: ../../mod/uimport.php:66 -msgid "Move account" -msgstr "Account umziehen" - -#: ../../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/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 Freunde darüber zu informieren, dass Du hierher umgezogen bist." - -#: ../../mod/uimport.php:69 -msgid "" -"This feature is experimental. We can't import contacts from the OStatus " -"network (statusnet/identi.ca) or from Diaspora" -msgstr "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (statusnet/identi.ca) 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/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." - -#: ../../boot.php:749 -msgid "Delete this item?" -msgstr "Diesen Beitrag löschen?" - -#: ../../boot.php:752 -msgid "show fewer" -msgstr "weniger anzeigen" - -#: ../../boot.php:1122 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen." - -#: ../../boot.php:1240 -msgid "Create a New Account" -msgstr "Neues Konto erstellen" - -#: ../../boot.php:1265 ../../include/nav.php:73 -msgid "Logout" -msgstr "Abmelden" - -#: ../../boot.php:1268 -msgid "Nickname or Email address: " -msgstr "Spitzname oder E-Mail-Adresse: " - -#: ../../boot.php:1269 -msgid "Password: " -msgstr "Passwort: " - -#: ../../boot.php:1270 -msgid "Remember me" -msgstr "Anmeldedaten merken" - -#: ../../boot.php:1273 -msgid "Or login using OpenID: " -msgstr "Oder melde Dich mit Deiner OpenID an: " - -#: ../../boot.php:1279 -msgid "Forgot your password?" -msgstr "Passwort vergessen?" - -#: ../../boot.php:1282 -msgid "Website Terms of Service" -msgstr "Website Nutzungsbedingungen" - -#: ../../boot.php:1283 -msgid "terms of service" -msgstr "Nutzungsbedingungen" - -#: ../../boot.php:1285 -msgid "Website Privacy Policy" -msgstr "Website Datenschutzerklärung" - -#: ../../boot.php:1286 -msgid "privacy policy" -msgstr "Datenschutzerklärung" - -#: ../../boot.php:1419 -msgid "Requested account is not available." -msgstr "Das angefragte Profil ist nicht vorhanden." - -#: ../../boot.php:1501 ../../boot.php:1635 -#: ../../include/profile_advanced.php:84 -msgid "Edit profile" -msgstr "Profil bearbeiten" - -#: ../../boot.php:1600 -msgid "Message" -msgstr "Nachricht" - -#: ../../boot.php:1606 ../../include/nav.php:175 -msgid "Profiles" -msgstr "Profile" - -#: ../../boot.php:1606 -msgid "Manage/edit profiles" -msgstr "Profile verwalten/editieren" - -#: ../../boot.php:1706 -msgid "Network:" -msgstr "Netzwerk" - -#: ../../boot.php:1736 ../../boot.php:1822 -msgid "g A l F d" -msgstr "l, d. F G \\U\\h\\r" - -#: ../../boot.php:1737 ../../boot.php:1823 -msgid "F d" -msgstr "d. F" - -#: ../../boot.php:1782 ../../boot.php:1863 -msgid "[today]" -msgstr "[heute]" - -#: ../../boot.php:1794 -msgid "Birthday Reminders" -msgstr "Geburtstagserinnerungen" - -#: ../../boot.php:1795 -msgid "Birthdays this week:" -msgstr "Geburtstage diese Woche:" - -#: ../../boot.php:1856 -msgid "[No description]" -msgstr "[keine Beschreibung]" - -#: ../../boot.php:1874 -msgid "Event Reminders" -msgstr "Veranstaltungserinnerungen" - -#: ../../boot.php:1875 -msgid "Events this week:" -msgstr "Veranstaltungen diese Woche" - -#: ../../boot.php:2112 ../../include/nav.php:76 -msgid "Status" -msgstr "Status" - -#: ../../boot.php:2115 -msgid "Status Messages and Posts" -msgstr "Statusnachrichten und Beiträge" - -#: ../../boot.php:2122 -msgid "Profile Details" -msgstr "Profildetails" - -#: ../../boot.php:2133 ../../boot.php:2136 ../../include/nav.php:79 -msgid "Videos" -msgstr "Videos" - -#: ../../boot.php:2146 -msgid "Events and Calendar" -msgstr "Ereignisse und Kalender" - -#: ../../boot.php:2153 -msgid "Only You Can See This" -msgstr "Nur Du kannst das sehen" - -#: ../../object/Item.php:94 -msgid "This entry was edited" -msgstr "Dieser Beitrag wurde bearbeitet." - -#: ../../object/Item.php:208 -msgid "ignore thread" -msgstr "Thread ignorieren" - -#: ../../object/Item.php:209 -msgid "unignore thread" -msgstr "Thread nicht mehr ignorieren" - -#: ../../object/Item.php:210 -msgid "toggle ignore status" -msgstr "Ignoriert-Status ein-/ausschalten" - -#: ../../object/Item.php:213 -msgid "ignored" -msgstr "Ignoriert" - -#: ../../object/Item.php:316 ../../include/conversation.php:666 -msgid "Categories:" -msgstr "Kategorien:" - -#: ../../object/Item.php:317 ../../include/conversation.php:667 -msgid "Filed under:" -msgstr "Abgelegt unter:" - -#: ../../object/Item.php:329 -msgid "via" -msgstr "via" - -#: ../../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:162 -msgid "Errors encountered creating database tables." -msgstr "Fehler aufgetreten während der Erzeugung der Datenbanktabellen." - -#: ../../include/dbstructure.php:220 -msgid "Errors encountered performing database changes." -msgstr "Es sind Fehler beim Bearbeiten der Datenbank aufgetreten." - -#: ../../include/auth.php:38 -msgid "Logged out." -msgstr "Abgemeldet." - -#: ../../include/auth.php:128 ../../include/user.php:67 -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:128 ../../include/user.php:67 -msgid "The error message was:" -msgstr "Die Fehlermeldung lautete:" - -#: ../../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: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 -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:36 ../../view/theme/diabook/theme.php:526 -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/diabook/theme.php:528 -msgid "Invite Friends" -msgstr "Freunde einladen" - -#: ../../include/contact_widgets.php:71 -msgid "Networks" -msgstr "Netzwerke" - -#: ../../include/contact_widgets.php:74 -msgid "All Networks" -msgstr "Alle Netzwerke" - -#: ../../include/contact_widgets.php:104 ../../include/features.php:60 -msgid "Saved Folders" -msgstr "Gespeicherte Ordner" - -#: ../../include/contact_widgets.php:107 ../../include/contact_widgets.php:139 -msgid "Everything" -msgstr "Alles" - -#: ../../include/contact_widgets.php:136 -msgid "Categories" -msgstr "Kategorien" - -#: ../../include/features.php:23 -msgid "General Features" -msgstr "Allgemeine Features" - -#: ../../include/features.php:25 -msgid "Multiple Profiles" -msgstr "Mehrere Profile" - -#: ../../include/features.php:25 -msgid "Ability to create multiple profiles" -msgstr "Möglichkeit mehrere Profile zu erstellen" - -#: ../../include/features.php:30 -msgid "Post Composition Features" -msgstr "Beitragserstellung Features" - -#: ../../include/features.php:31 -msgid "Richtext Editor" -msgstr "Web-Editor" - -#: ../../include/features.php:31 -msgid "Enable richtext editor" -msgstr "Den Web-Editor für neue Beiträge aktivieren" - -#: ../../include/features.php:32 -msgid "Post Preview" -msgstr "Beitragsvorschau" - -#: ../../include/features.php:32 -msgid "Allow previewing posts and comments before publishing them" -msgstr "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben." - -#: ../../include/features.php:33 -msgid "Auto-mention Forums" -msgstr "Foren automatisch erwähnen" - -#: ../../include/features.php:33 -msgid "" -"Add/remove mention when a fourm 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:38 -msgid "Network Sidebar Widgets" -msgstr "Widgets für Netzwerk und Seitenleiste" - -#: ../../include/features.php:39 -msgid "Search by Date" -msgstr "Archiv" - -#: ../../include/features.php:39 -msgid "Ability to select posts by date ranges" -msgstr "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren" - -#: ../../include/features.php:40 -msgid "Group Filter" -msgstr "Gruppen Filter" - -#: ../../include/features.php:40 -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:41 -msgid "Network Filter" -msgstr "Netzwerk Filter" - -#: ../../include/features.php:41 -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:42 -msgid "Save search terms for re-use" -msgstr "Speichere Suchanfragen für spätere Wiederholung." - -#: ../../include/features.php:47 -msgid "Network Tabs" -msgstr "Netzwerk Reiter" - -#: ../../include/features.php:48 -msgid "Network Personal Tab" -msgstr "Netzwerk-Reiter: Persönlich" - -#: ../../include/features.php:48 -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:49 -msgid "Network New Tab" -msgstr "Netzwerk-Reiter: Neue" - -#: ../../include/features.php:49 -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:50 -msgid "Network Shared Links Tab" -msgstr "Netzwerk-Reiter: Geteilte Links" - -#: ../../include/features.php:50 -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:55 -msgid "Post/Comment Tools" -msgstr "Werkzeuge für Beiträge und Kommentare" - -#: ../../include/features.php:56 -msgid "Multiple Deletion" -msgstr "Mehrere Beiträge löschen" - -#: ../../include/features.php:56 -msgid "Select and delete multiple posts/comments at once" -msgstr "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen" - -#: ../../include/features.php:57 -msgid "Edit Sent Posts" -msgstr "Gesendete Beiträge editieren" - -#: ../../include/features.php:57 -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:58 -msgid "Tagging" -msgstr "Tagging" - -#: ../../include/features.php:58 -msgid "Ability to tag existing posts" -msgstr "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen." - -#: ../../include/features.php:59 -msgid "Post Categories" -msgstr "Beitragskategorien" - -#: ../../include/features.php:59 -msgid "Add categories to your posts" -msgstr "Eigene Beiträge mit Kategorien versehen" - -#: ../../include/features.php:60 -msgid "Ability to file posts under folders" -msgstr "Beiträge in Ordnern speichern aktivieren" - -#: ../../include/features.php:61 -msgid "Dislike Posts" -msgstr "Beiträge 'nicht mögen'" - -#: ../../include/features.php:61 -msgid "Ability to dislike posts/comments" -msgstr "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'" - -#: ../../include/features.php:62 -msgid "Star Posts" -msgstr "Beiträge Markieren" - -#: ../../include/features.php:62 -msgid "Ability to mark special posts with a star indicator" -msgstr "Erlaubt es Beiträge mit einem Stern-Indikator zu markieren" - -#: ../../include/features.php:63 -msgid "Mute Post Notifications" -msgstr "Benachrichtigungen für Beiträge Stumm schalten" - -#: ../../include/features.php:63 -msgid "Ability to mute notifications for a thread" -msgstr "Möglichkeit Benachrichtigungen für einen Thread abbestellen zu können" - -#: ../../include/follow.php:32 -msgid "Connect URL missing." -msgstr "Connect-URL fehlt" - -#: ../../include/follow.php:59 -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:60 ../../include/follow.php:80 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden." - -#: ../../include/follow.php:78 -msgid "The profile address specified does not provide adequate information." -msgstr "Die angegebene Profiladresse liefert unzureichende Informationen." - -#: ../../include/follow.php:82 -msgid "An author or name was not found." -msgstr "Es wurde kein Autor oder Name gefunden." - -#: ../../include/follow.php:84 -msgid "No browser URL could be matched to this address." -msgstr "Zu dieser Adresse konnte keine passende Browser URL gefunden werden." - -#: ../../include/follow.php:86 -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:87 -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:93 -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:103 -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:205 -msgid "Unable to retrieve contact information." -msgstr "Konnte die Kontaktinformationen nicht empfangen." - -#: ../../include/follow.php:258 -msgid "following" -msgstr "folgen" - -#: ../../include/group.php:25 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may 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 könnten 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/group.php:207 -msgid "Default privacy group for new contacts" -msgstr "Voreingestellte Gruppe für neue Kontakte" - -#: ../../include/group.php:226 -msgid "Everybody" -msgstr "Alle Kontakte" - -#: ../../include/group.php:249 -msgid "edit" -msgstr "bearbeiten" - -#: ../../include/group.php:271 -msgid "Edit group" -msgstr "Gruppe bearbeiten" - -#: ../../include/group.php:272 -msgid "Create a new group" -msgstr "Neue Gruppe erstellen" - -#: ../../include/group.php:273 -msgid "Contacts not in any group" -msgstr "Kontakte in keiner Gruppe" - -#: ../../include/datetime.php:43 ../../include/datetime.php:45 -msgid "Miscellaneous" -msgstr "Verschiedenes" - -#: ../../include/datetime.php:153 ../../include/datetime.php:290 -msgid "year" -msgstr "Jahr" - -#: ../../include/datetime.php:158 ../../include/datetime.php:291 -msgid "month" -msgstr "Monat" - -#: ../../include/datetime.php:163 ../../include/datetime.php:293 -msgid "day" -msgstr "Tag" - -#: ../../include/datetime.php:276 -msgid "never" -msgstr "nie" - -#: ../../include/datetime.php:282 -msgid "less than a second ago" -msgstr "vor weniger als einer Sekunde" - -#: ../../include/datetime.php:290 -msgid "years" -msgstr "Jahre" - -#: ../../include/datetime.php:291 -msgid "months" -msgstr "Monate" - -#: ../../include/datetime.php:292 -msgid "week" -msgstr "Woche" - -#: ../../include/datetime.php:292 -msgid "weeks" -msgstr "Wochen" - -#: ../../include/datetime.php:293 -msgid "days" -msgstr "Tage" - -#: ../../include/datetime.php:294 -msgid "hour" -msgstr "Stunde" - -#: ../../include/datetime.php:294 -msgid "hours" -msgstr "Stunden" - -#: ../../include/datetime.php:295 -msgid "minute" -msgstr "Minute" - -#: ../../include/datetime.php:295 -msgid "minutes" -msgstr "Minuten" - -#: ../../include/datetime.php:296 -msgid "second" -msgstr "Sekunde" - -#: ../../include/datetime.php:296 -msgid "seconds" -msgstr "Sekunden" - -#: ../../include/datetime.php:305 -#, php-format -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s her" - -#: ../../include/datetime.php:477 ../../include/items.php:2211 -#, php-format -msgid "%s's birthday" -msgstr "%ss Geburtstag" - -#: ../../include/datetime.php:478 ../../include/items.php:2212 -#, php-format -msgid "Happy Birthday %s" -msgstr "Herzlichen Glückwunsch %s" - -#: ../../include/acl_selectors.php:333 -msgid "Visible to everybody" -msgstr "Für jeden sichtbar" - -#: ../../include/acl_selectors.php:334 ../../view/theme/diabook/config.php:142 -#: ../../view/theme/diabook/theme.php:621 -msgid "show" -msgstr "zeigen" - -#: ../../include/acl_selectors.php:335 ../../view/theme/diabook/config.php:142 -#: ../../view/theme/diabook/theme.php:621 -msgid "don't show" -msgstr "nicht zeigen" - -#: ../../include/message.php:15 ../../include/message.php:172 -msgid "[no subject]" -msgstr "[kein Betreff]" - -#: ../../include/Contact.php:115 -msgid "stopped following" -msgstr "wird nicht mehr gefolgt" - -#: ../../include/Contact.php:228 ../../include/conversation.php:882 -msgid "Poke" -msgstr "Anstupsen" - -#: ../../include/Contact.php:229 ../../include/conversation.php:876 -msgid "View Status" -msgstr "Pinnwand anschauen" - -#: ../../include/Contact.php:230 ../../include/conversation.php:877 -msgid "View Profile" -msgstr "Profil anschauen" - -#: ../../include/Contact.php:231 ../../include/conversation.php:878 -msgid "View Photos" -msgstr "Bilder anschauen" - -#: ../../include/Contact.php:232 ../../include/Contact.php:255 -#: ../../include/conversation.php:879 -msgid "Network Posts" -msgstr "Netzwerkbeiträge" - -#: ../../include/Contact.php:233 ../../include/Contact.php:255 -#: ../../include/conversation.php:880 -msgid "Edit Contact" -msgstr "Kontakt bearbeiten" - -#: ../../include/Contact.php:234 -msgid "Drop Contact" -msgstr "Kontakt löschen" - -#: ../../include/Contact.php:235 ../../include/Contact.php:255 -#: ../../include/conversation.php:881 -msgid "Send PM" -msgstr "Private Nachricht senden" - -#: ../../include/security.php:22 -msgid "Welcome " -msgstr "Willkommen " - -#: ../../include/security.php:23 -msgid "Please upload a profile photo." -msgstr "Bitte lade ein Profilbild hoch." - -#: ../../include/security.php:26 -msgid "Welcome back " -msgstr "Willkommen zurück " - -#: ../../include/security.php:366 -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/conversation.php:118 ../../include/conversation.php:246 -#: ../../include/text.php:1966 ../../view/theme/diabook/theme.php:463 -msgid "event" -msgstr "Veranstaltung" - -#: ../../include/conversation.php:207 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s stupste %2$s" - -#: ../../include/conversation.php:211 ../../include/text.php:1005 -msgid "poked" -msgstr "stupste" - -#: ../../include/conversation.php:291 -msgid "post/item" -msgstr "Nachricht/Beitrag" - -#: ../../include/conversation.php:292 -#, 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:772 -msgid "remove" -msgstr "löschen" - -#: ../../include/conversation.php:776 -msgid "Delete Selected Items" -msgstr "Lösche die markierten Beiträge" - -#: ../../include/conversation.php:875 -msgid "Follow Thread" -msgstr "Folge der Unterhaltung" - -#: ../../include/conversation.php:944 -#, php-format -msgid "%s likes this." -msgstr "%s mag das." - -#: ../../include/conversation.php:944 -#, php-format -msgid "%s doesn't like this." -msgstr "%s mag das nicht." - -#: ../../include/conversation.php:949 -#, php-format -msgid "%2$d people like this" -msgstr "%2$d Personen mögen das" - -#: ../../include/conversation.php:952 -#, php-format -msgid "%2$d people don't like this" -msgstr "%2$d Personen mögen das nicht" - -#: ../../include/conversation.php:966 -msgid "and" -msgstr "und" - -#: ../../include/conversation.php:972 -#, php-format -msgid ", and %d other people" -msgstr " und %d andere" - -#: ../../include/conversation.php:974 -#, php-format -msgid "%s like this." -msgstr "%s mögen das." - -#: ../../include/conversation.php:974 -#, php-format -msgid "%s don't like this." -msgstr "%s mögen das nicht." - -#: ../../include/conversation.php:1001 ../../include/conversation.php:1019 -msgid "Visible to everybody" -msgstr "Für jedermann sichtbar" - -#: ../../include/conversation.php:1003 ../../include/conversation.php:1021 -msgid "Please enter a video link/URL:" -msgstr "Bitte Link/URL zum Video einfügen:" - -#: ../../include/conversation.php:1004 ../../include/conversation.php:1022 -msgid "Please enter an audio link/URL:" -msgstr "Bitte Link/URL zum Audio einfügen:" - -#: ../../include/conversation.php:1005 ../../include/conversation.php:1023 -msgid "Tag term:" -msgstr "Tag:" - -#: ../../include/conversation.php:1007 ../../include/conversation.php:1025 -msgid "Where are you right now?" -msgstr "Wo hältst Du Dich jetzt gerade auf?" - -#: ../../include/conversation.php:1008 -msgid "Delete item(s)?" -msgstr "Einträge löschen?" - -#: ../../include/conversation.php:1051 -msgid "Post to Email" -msgstr "An E-Mail senden" - -#: ../../include/conversation.php:1056 -#, php-format -msgid "Connectors disabled, since \"%s\" is enabled." -msgstr "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist." - -#: ../../include/conversation.php:1111 -msgid "permissions" -msgstr "Zugriffsrechte" - -#: ../../include/conversation.php:1135 -msgid "Post to Groups" -msgstr "Poste an Gruppe" - -#: ../../include/conversation.php:1136 -msgid "Post to Contacts" -msgstr "Poste an Kontakte" - -#: ../../include/conversation.php:1137 -msgid "Private post" -msgstr "Privater Beitrag" - -#: ../../include/network.php:895 -msgid "view full size" -msgstr "Volle Größe anzeigen" - -#: ../../include/text.php:297 -msgid "newer" -msgstr "neuer" - -#: ../../include/text.php:299 -msgid "older" -msgstr "älter" - -#: ../../include/text.php:304 -msgid "prev" -msgstr "vorige" - -#: ../../include/text.php:306 -msgid "first" -msgstr "erste" - -#: ../../include/text.php:338 -msgid "last" -msgstr "letzte" - -#: ../../include/text.php:341 -msgid "next" -msgstr "nächste" - -#: ../../include/text.php:855 -msgid "No contacts" -msgstr "Keine Kontakte" - -#: ../../include/text.php:864 -#, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" -msgstr[0] "%d Kontakt" -msgstr[1] "%d Kontakte" - -#: ../../include/text.php:1005 -msgid "poke" -msgstr "anstupsen" - -#: ../../include/text.php:1006 -msgid "ping" -msgstr "anpingen" - -#: ../../include/text.php:1006 -msgid "pinged" -msgstr "pingte" - -#: ../../include/text.php:1007 -msgid "prod" -msgstr "knuffen" - -#: ../../include/text.php:1007 -msgid "prodded" -msgstr "knuffte" - -#: ../../include/text.php:1008 -msgid "slap" -msgstr "ohrfeigen" - -#: ../../include/text.php:1008 -msgid "slapped" -msgstr "ohrfeigte" - -#: ../../include/text.php:1009 -msgid "finger" -msgstr "befummeln" - -#: ../../include/text.php:1009 -msgid "fingered" -msgstr "befummelte" - -#: ../../include/text.php:1010 -msgid "rebuff" -msgstr "eine Abfuhr erteilen" - -#: ../../include/text.php:1010 -msgid "rebuffed" -msgstr "abfuhrerteilte" - -#: ../../include/text.php:1024 -msgid "happy" -msgstr "glücklich" - -#: ../../include/text.php:1025 -msgid "sad" -msgstr "traurig" - -#: ../../include/text.php:1026 -msgid "mellow" -msgstr "sanft" - -#: ../../include/text.php:1027 -msgid "tired" -msgstr "müde" - -#: ../../include/text.php:1028 -msgid "perky" -msgstr "frech" - -#: ../../include/text.php:1029 -msgid "angry" -msgstr "sauer" - -#: ../../include/text.php:1030 -msgid "stupified" -msgstr "verblüfft" - -#: ../../include/text.php:1031 -msgid "puzzled" -msgstr "verwirrt" - -#: ../../include/text.php:1032 -msgid "interested" -msgstr "interessiert" - -#: ../../include/text.php:1033 -msgid "bitter" -msgstr "verbittert" - -#: ../../include/text.php:1034 -msgid "cheerful" -msgstr "fröhlich" - -#: ../../include/text.php:1035 -msgid "alive" -msgstr "lebendig" - -#: ../../include/text.php:1036 -msgid "annoyed" -msgstr "verärgert" - -#: ../../include/text.php:1037 -msgid "anxious" -msgstr "unruhig" - -#: ../../include/text.php:1038 -msgid "cranky" -msgstr "schrullig" - -#: ../../include/text.php:1039 -msgid "disturbed" -msgstr "verstört" - -#: ../../include/text.php:1040 -msgid "frustrated" -msgstr "frustriert" - -#: ../../include/text.php:1041 -msgid "motivated" -msgstr "motiviert" - -#: ../../include/text.php:1042 -msgid "relaxed" -msgstr "entspannt" - -#: ../../include/text.php:1043 -msgid "surprised" -msgstr "überrascht" - -#: ../../include/text.php:1213 -msgid "Monday" -msgstr "Montag" - -#: ../../include/text.php:1213 -msgid "Tuesday" -msgstr "Dienstag" - -#: ../../include/text.php:1213 -msgid "Wednesday" -msgstr "Mittwoch" - -#: ../../include/text.php:1213 -msgid "Thursday" -msgstr "Donnerstag" - -#: ../../include/text.php:1213 -msgid "Friday" -msgstr "Freitag" - -#: ../../include/text.php:1213 -msgid "Saturday" -msgstr "Samstag" - -#: ../../include/text.php:1213 -msgid "Sunday" -msgstr "Sonntag" - -#: ../../include/text.php:1217 -msgid "January" -msgstr "Januar" - -#: ../../include/text.php:1217 -msgid "February" -msgstr "Februar" - -#: ../../include/text.php:1217 -msgid "March" -msgstr "März" - -#: ../../include/text.php:1217 -msgid "April" -msgstr "April" - -#: ../../include/text.php:1217 -msgid "May" -msgstr "Mai" - -#: ../../include/text.php:1217 -msgid "June" -msgstr "Juni" - -#: ../../include/text.php:1217 -msgid "July" -msgstr "Juli" - -#: ../../include/text.php:1217 -msgid "August" -msgstr "August" - -#: ../../include/text.php:1217 -msgid "September" -msgstr "September" - -#: ../../include/text.php:1217 -msgid "October" -msgstr "Oktober" - -#: ../../include/text.php:1217 -msgid "November" -msgstr "November" - -#: ../../include/text.php:1217 -msgid "December" -msgstr "Dezember" - -#: ../../include/text.php:1437 -msgid "bytes" -msgstr "Byte" - -#: ../../include/text.php:1461 ../../include/text.php:1473 -msgid "Click to open/close" -msgstr "Zum öffnen/schließen klicken" - -#: ../../include/text.php:1702 ../../include/user.php:247 -#: ../../view/theme/duepuntozero/config.php:44 -msgid "default" -msgstr "Standard" - -#: ../../include/text.php:1714 -msgid "Select an alternate language" -msgstr "Alternative Sprache auswählen" - -#: ../../include/text.php:1970 -msgid "activity" -msgstr "Aktivität" - -#: ../../include/text.php:1973 -msgid "post" -msgstr "Beitrag" - -#: ../../include/text.php:2141 -msgid "Item filed" -msgstr "Beitrag abgelegt" - -#: ../../include/bbcode.php:428 ../../include/bbcode.php:1047 -#: ../../include/bbcode.php:1048 -msgid "Image/photo" -msgstr "Bild/Foto" - -#: ../../include/bbcode.php:528 -#, php-format -msgid "%2$s %3$s" -msgstr "%2$s %3$s" - -#: ../../include/bbcode.php:562 -#, php-format -msgid "" -"%s wrote the following post" -msgstr "%s schrieb den folgenden Beitrag" - -#: ../../include/bbcode.php:1011 ../../include/bbcode.php:1031 -msgid "$1 wrote:" -msgstr "$1 hat geschrieben:" - -#: ../../include/bbcode.php:1056 ../../include/bbcode.php:1057 -msgid "Encrypted content" -msgstr "Verschlüsselter Inhalt" - -#: ../../include/notifier.php:786 ../../include/delivery.php:456 -msgid "(no subject)" -msgstr "(kein Betreff)" - -#: ../../include/notifier.php:796 ../../include/delivery.php:467 -#: ../../include/enotify.php:33 -msgid "noreply" -msgstr "noreply" - -#: ../../include/dba_pdo.php:72 ../../include/dba.php:56 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln." - -#: ../../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:60 -msgid "Weekly" -msgstr "Wöchentlich" - -#: ../../include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Monatlich" - -#: ../../include/contact_selectors.php:77 -msgid "OStatus" -msgstr "OStatus" - -#: ../../include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: ../../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 "Statusnet" -msgstr "StatusNet" - -#: ../../include/contact_selectors.php:92 -msgid "App.net" -msgstr "App.net" - -#: ../../include/Scrape.php:614 -msgid " on Last.fm" -msgstr " bei Last.fm" - -#: ../../include/bb2diaspora.php:154 ../../include/event.php:20 -msgid "Starts:" -msgstr "Beginnt:" - -#: ../../include/bb2diaspora.php:162 ../../include/event.php:30 -msgid "Finishes:" -msgstr "Endet:" - -#: ../../include/profile_advanced.php:22 -msgid "j F, Y" -msgstr "j F, Y" - -#: ../../include/profile_advanced.php:23 -msgid "j F" -msgstr "j F" - -#: ../../include/profile_advanced.php:30 -msgid "Birthday:" -msgstr "Geburtstag:" - -#: ../../include/profile_advanced.php:34 -msgid "Age:" -msgstr "Alter:" - -#: ../../include/profile_advanced.php:43 -#, php-format -msgid "for %1$d %2$s" -msgstr "für %1$d %2$s" - -#: ../../include/profile_advanced.php:52 -msgid "Tags:" -msgstr "Tags" - -#: ../../include/profile_advanced.php:56 -msgid "Religion:" -msgstr "Religion:" - -#: ../../include/profile_advanced.php:60 -msgid "Hobbies/Interests:" -msgstr "Hobbies/Interessen:" - -#: ../../include/profile_advanced.php:67 -msgid "Contact information and Social Networks:" -msgstr "Kontaktinformationen und Soziale Netzwerke:" - -#: ../../include/profile_advanced.php:69 -msgid "Musical interests:" -msgstr "Musikalische Interessen:" - -#: ../../include/profile_advanced.php:71 -msgid "Books, literature:" -msgstr "Literatur/Bücher:" - -#: ../../include/profile_advanced.php:73 -msgid "Television:" -msgstr "Fernsehen:" - -#: ../../include/profile_advanced.php:75 -msgid "Film/dance/culture/entertainment:" -msgstr "Filme/Tänze/Kultur/Unterhaltung:" - -#: ../../include/profile_advanced.php:77 -msgid "Love/Romance:" -msgstr "Liebesleben:" - -#: ../../include/profile_advanced.php:79 -msgid "Work/employment:" -msgstr "Arbeit/Beschäftigung:" - -#: ../../include/profile_advanced.php:81 -msgid "School/education:" -msgstr "Schule/Ausbildung:" - -#: ../../include/plugin.php:455 ../../include/plugin.php:457 -msgid "Click here to upgrade." -msgstr "Zum Upgraden hier klicken." - -#: ../../include/plugin.php:463 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Diese Aktion überschreitet die Obergrenze Deines Abonnements." - -#: ../../include/plugin.php:468 -msgid "This action is not available under your subscription plan." -msgstr "Diese Aktion ist in Deinem Abonnement nicht verfügbar." - -#: ../../include/nav.php:73 -msgid "End this session" -msgstr "Diese Sitzung beenden" - -#: ../../include/nav.php:76 ../../include/nav.php:148 -#: ../../view/theme/diabook/theme.php:123 -msgid "Your posts and conversations" -msgstr "Deine Beiträge und Unterhaltungen" - -#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:124 -msgid "Your profile page" -msgstr "Deine Profilseite" - -#: ../../include/nav.php:78 ../../view/theme/diabook/theme.php:126 -msgid "Your photos" -msgstr "Deine Fotos" - -#: ../../include/nav.php:79 -msgid "Your videos" -msgstr "Deine Videos" - -#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:127 -msgid "Your events" -msgstr "Deine Ereignisse" - -#: ../../include/nav.php:81 ../../view/theme/diabook/theme.php:128 -msgid "Personal notes" -msgstr "Persönliche Notizen" - -#: ../../include/nav.php:81 -msgid "Your personal notes" -msgstr "Deine persönlichen Notizen" - -#: ../../include/nav.php:92 -msgid "Sign in" -msgstr "Anmelden" - -#: ../../include/nav.php:105 -msgid "Home Page" -msgstr "Homepage" - -#: ../../include/nav.php:109 -msgid "Create an account" -msgstr "Nutzerkonto erstellen" - -#: ../../include/nav.php:114 -msgid "Help and documentation" -msgstr "Hilfe und Dokumentation" - -#: ../../include/nav.php:117 -msgid "Apps" -msgstr "Apps" - -#: ../../include/nav.php:117 -msgid "Addon applications, utilities, games" -msgstr "Addon Anwendungen, Dienstprogramme, Spiele" - -#: ../../include/nav.php:119 -msgid "Search site content" -msgstr "Inhalt der Seite durchsuchen" - -#: ../../include/nav.php:129 -msgid "Conversations on this site" -msgstr "Unterhaltungen auf dieser Seite" - -#: ../../include/nav.php:131 -msgid "Conversations on the network" -msgstr "Unterhaltungen im Netzwerk" - -#: ../../include/nav.php:133 -msgid "Directory" -msgstr "Verzeichnis" - -#: ../../include/nav.php:133 -msgid "People directory" -msgstr "Nutzerverzeichnis" - -#: ../../include/nav.php:135 -msgid "Information" -msgstr "Information" - -#: ../../include/nav.php:135 -msgid "Information about this friendica instance" -msgstr "Informationen zu dieser Friendica Instanz" - -#: ../../include/nav.php:145 -msgid "Conversations from your friends" -msgstr "Unterhaltungen Deiner Kontakte" - -#: ../../include/nav.php:146 -msgid "Network Reset" -msgstr "Netzwerk zurücksetzen" - -#: ../../include/nav.php:146 -msgid "Load Network page with no filters" -msgstr "Netzwerk-Seite ohne Filter laden" - -#: ../../include/nav.php:154 -msgid "Friend Requests" -msgstr "Kontaktanfragen" - -#: ../../include/nav.php:156 -msgid "See all notifications" -msgstr "Alle Benachrichtigungen anzeigen" - -#: ../../include/nav.php:157 -msgid "Mark all system notifications seen" -msgstr "Markiere alle Systembenachrichtigungen als gelesen" - -#: ../../include/nav.php:161 -msgid "Private mail" -msgstr "Private E-Mail" - -#: ../../include/nav.php:162 -msgid "Inbox" -msgstr "Eingang" - -#: ../../include/nav.php:163 -msgid "Outbox" -msgstr "Ausgang" - -#: ../../include/nav.php:167 -msgid "Manage" -msgstr "Verwalten" - -#: ../../include/nav.php:167 -msgid "Manage other pages" -msgstr "Andere Seiten verwalten" - -#: ../../include/nav.php:172 -msgid "Account settings" -msgstr "Kontoeinstellungen" - -#: ../../include/nav.php:175 -msgid "Manage/Edit Profiles" -msgstr "Profile Verwalten/Editieren" - -#: ../../include/nav.php:177 -msgid "Manage/edit friends and contacts" -msgstr "Freunde und Kontakte verwalten/editieren" - -#: ../../include/nav.php:184 -msgid "Site setup and configuration" -msgstr "Einstellungen der Seite und Konfiguration" - -#: ../../include/nav.php:188 -msgid "Navigation" -msgstr "Navigation" - -#: ../../include/nav.php:188 -msgid "Site map" -msgstr "Sitemap" - -#: ../../include/api.php:304 ../../include/api.php:315 -#: ../../include/api.php:416 ../../include/api.php:1063 -#: ../../include/api.php:1065 -msgid "User not found." -msgstr "Nutzer nicht gefunden." - -#: ../../include/api.php:771 -#, 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:790 -#, 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:809 -#, 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/api.php:1272 -msgid "There is no status with this id." -msgstr "Es gibt keinen Status mit dieser ID." - -#: ../../include/api.php:1342 -msgid "There is no conversation with this id." -msgstr "Es existiert keine Unterhaltung mit dieser ID." - -#: ../../include/api.php:1614 -msgid "Invalid request." -msgstr "Ungültige Anfrage" - -#: ../../include/api.php:1625 -msgid "Invalid item." -msgstr "Ungültiges Objekt" - -#: ../../include/api.php:1635 -msgid "Invalid action. " -msgstr "Ungültige Aktion" - -#: ../../include/api.php:1643 -msgid "DB error" -msgstr "DB Error" - -#: ../../include/user.php:40 -msgid "An invitation is required." -msgstr "Du benötigst eine Einladung." - -#: ../../include/user.php:45 -msgid "Invitation could not be verified." -msgstr "Die Einladung konnte nicht überprüft werden." - -#: ../../include/user.php:53 -msgid "Invalid OpenID url" -msgstr "Ungültige OpenID URL" - -#: ../../include/user.php:74 -msgid "Please enter the required information." -msgstr "Bitte trage die erforderlichen Informationen ein." - -#: ../../include/user.php:88 -msgid "Please use a shorter name." -msgstr "Bitte verwende einen kürzeren Namen." - -#: ../../include/user.php:90 -msgid "Name too short." -msgstr "Der Name ist zu kurz." - -#: ../../include/user.php:105 -msgid "That doesn't appear to be your full (First Last) name." -msgstr "Das scheint nicht Dein kompletter Name (Vor- und Nachname) zu sein." - -#: ../../include/user.php:110 -msgid "Your email domain is not among those allowed on this site." -msgstr "Die Domain Deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt." - -#: ../../include/user.php:113 -msgid "Not a valid email address." -msgstr "Keine gültige E-Mail-Adresse." - -#: ../../include/user.php:126 -msgid "Cannot use that email." -msgstr "Konnte diese E-Mail-Adresse nicht verwenden." - -#: ../../include/user.php:132 -msgid "" -"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " -"must also begin with a letter." -msgstr "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\", \"_\" und \"-\") bestehen, außerdem muss er mit einem Buchstaben beginnen." - -#: ../../include/user.php:138 ../../include/user.php:236 -msgid "Nickname is already registered. Please choose another." -msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen." - -#: ../../include/user.php:148 -msgid "" -"Nickname was once registered here and may not be re-used. Please choose " -"another." -msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen." - -#: ../../include/user.php:164 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden." - -#: ../../include/user.php:222 -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:257 -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:289 ../../include/user.php:293 -#: ../../include/profile_selectors.php:42 -msgid "Friends" -msgstr "Freunde" - -#: ../../include/user.php:377 -#, php-format -msgid "" -"\n" -"\t\tDear %1$s,\n" -"\t\t\tThank you for registering at %2$s. Your account has been created.\n" -"\t" -msgstr "\nHallo %1$s,\n\ndanke für Deine Registrierung auf %2$s. Dein Account wurde eingerichtet." - -#: ../../include/user.php:381 -#, php-format -msgid "" -"\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." -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/diaspora.php:703 -msgid "Sharing notification from Diaspora network" -msgstr "Freigabe-Benachrichtigung von Diaspora" - -#: ../../include/diaspora.php:2520 -msgid "Attachments:" -msgstr "Anhänge:" - -#: ../../include/items.php:4555 -msgid "Do you really want to delete this item?" -msgstr "Möchtest Du wirklich dieses Item löschen?" - -#: ../../include/items.php:4778 -msgid "Archives" -msgstr "Archiv" - -#: ../../include/profile_selectors.php:6 -msgid "Male" -msgstr "Männlich" - -#: ../../include/profile_selectors.php:6 -msgid "Female" -msgstr "Weiblich" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Male" -msgstr "Momentan männlich" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Female" -msgstr "Momentan weiblich" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Male" -msgstr "Hauptsächlich männlich" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Female" -msgstr "Hauptsächlich weiblich" - -#: ../../include/profile_selectors.php:6 -msgid "Transgender" -msgstr "Transgender" - -#: ../../include/profile_selectors.php:6 -msgid "Intersex" -msgstr "Intersex" - -#: ../../include/profile_selectors.php:6 -msgid "Transsexual" -msgstr "Transsexuell" - -#: ../../include/profile_selectors.php:6 -msgid "Hermaphrodite" -msgstr "Hermaphrodit" - -#: ../../include/profile_selectors.php:6 -msgid "Neuter" -msgstr "Neuter" - -#: ../../include/profile_selectors.php:6 -msgid "Non-specific" -msgstr "Nicht spezifiziert" - -#: ../../include/profile_selectors.php:6 -msgid "Other" -msgstr "Andere" - -#: ../../include/profile_selectors.php:6 -msgid "Undecided" -msgstr "Unentschieden" - -#: ../../include/profile_selectors.php:23 -msgid "Males" -msgstr "Männer" - -#: ../../include/profile_selectors.php:23 -msgid "Females" -msgstr "Frauen" - -#: ../../include/profile_selectors.php:23 -msgid "Gay" -msgstr "Schwul" - -#: ../../include/profile_selectors.php:23 -msgid "Lesbian" -msgstr "Lesbisch" - -#: ../../include/profile_selectors.php:23 -msgid "No Preference" -msgstr "Keine Vorlieben" - -#: ../../include/profile_selectors.php:23 -msgid "Bisexual" -msgstr "Bisexuell" - -#: ../../include/profile_selectors.php:23 -msgid "Autosexual" -msgstr "Autosexual" - -#: ../../include/profile_selectors.php:23 -msgid "Abstinent" -msgstr "Abstinent" - -#: ../../include/profile_selectors.php:23 -msgid "Virgin" -msgstr "Jungfrauen" - -#: ../../include/profile_selectors.php:23 -msgid "Deviant" -msgstr "Deviant" - -#: ../../include/profile_selectors.php:23 -msgid "Fetish" -msgstr "Fetish" - -#: ../../include/profile_selectors.php:23 -msgid "Oodles" -msgstr "Oodles" - -#: ../../include/profile_selectors.php:23 -msgid "Nonsexual" -msgstr "Nonsexual" - -#: ../../include/profile_selectors.php:42 -msgid "Single" -msgstr "Single" - -#: ../../include/profile_selectors.php:42 -msgid "Lonely" -msgstr "Einsam" - -#: ../../include/profile_selectors.php:42 -msgid "Available" -msgstr "Verfügbar" - -#: ../../include/profile_selectors.php:42 -msgid "Unavailable" -msgstr "Nicht verfügbar" - -#: ../../include/profile_selectors.php:42 -msgid "Has crush" -msgstr "verknallt" - -#: ../../include/profile_selectors.php:42 -msgid "Infatuated" -msgstr "verliebt" - -#: ../../include/profile_selectors.php:42 -msgid "Dating" -msgstr "Dating" - -#: ../../include/profile_selectors.php:42 -msgid "Unfaithful" -msgstr "Untreu" - -#: ../../include/profile_selectors.php:42 -msgid "Sex Addict" -msgstr "Sexbesessen" - -#: ../../include/profile_selectors.php:42 -msgid "Friends/Benefits" -msgstr "Freunde/Zuwendungen" - -#: ../../include/profile_selectors.php:42 -msgid "Casual" -msgstr "Casual" - -#: ../../include/profile_selectors.php:42 -msgid "Engaged" -msgstr "Verlobt" - -#: ../../include/profile_selectors.php:42 -msgid "Married" -msgstr "Verheiratet" - -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily married" -msgstr "imaginär verheiratet" - -#: ../../include/profile_selectors.php:42 -msgid "Partners" -msgstr "Partner" - -#: ../../include/profile_selectors.php:42 -msgid "Cohabiting" -msgstr "zusammenlebend" - -#: ../../include/profile_selectors.php:42 -msgid "Common law" -msgstr "wilde Ehe" - -#: ../../include/profile_selectors.php:42 -msgid "Happy" -msgstr "Glücklich" - -#: ../../include/profile_selectors.php:42 -msgid "Not looking" -msgstr "Nicht auf der Suche" - -#: ../../include/profile_selectors.php:42 -msgid "Swinger" -msgstr "Swinger" - -#: ../../include/profile_selectors.php:42 -msgid "Betrayed" -msgstr "Betrogen" - -#: ../../include/profile_selectors.php:42 -msgid "Separated" -msgstr "Getrennt" - -#: ../../include/profile_selectors.php:42 -msgid "Unstable" -msgstr "Unstabil" - -#: ../../include/profile_selectors.php:42 -msgid "Divorced" -msgstr "Geschieden" - -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily divorced" -msgstr "imaginär geschieden" - -#: ../../include/profile_selectors.php:42 -msgid "Widowed" -msgstr "Verwitwet" - -#: ../../include/profile_selectors.php:42 -msgid "Uncertain" -msgstr "Unsicher" - -#: ../../include/profile_selectors.php:42 -msgid "It's complicated" -msgstr "Ist kompliziert" - -#: ../../include/profile_selectors.php:42 -msgid "Don't care" -msgstr "Ist mir nicht wichtig" - -#: ../../include/profile_selectors.php:42 -msgid "Ask me" -msgstr "Frag mich" - -#: ../../include/enotify.php:18 -msgid "Friendica Notification" -msgstr "Friendica-Benachrichtigung" - -#: ../../include/enotify.php:21 -msgid "Thank You," -msgstr "Danke," - -#: ../../include/enotify.php:23 -#, php-format -msgid "%s Administrator" -msgstr "der Administrator von %s" - -#: ../../include/enotify.php:64 -#, php-format -msgid "%s " -msgstr "%s " - -#: ../../include/enotify.php:68 -#, php-format -msgid "[Friendica:Notify] New mail received at %s" -msgstr "[Friendica-Meldung] Neue Nachricht erhalten von %s" - -#: ../../include/enotify.php:70 -#, php-format -msgid "%1$s sent you a new private message at %2$s." -msgstr "%1$s hat Dir eine neue private Nachricht auf %2$s geschickt." - -#: ../../include/enotify.php:71 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s schickte Dir %2$s." - -#: ../../include/enotify.php:71 -msgid "a private message" -msgstr "eine private Nachricht" - -#: ../../include/enotify.php:72 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Bitte besuche %s, um Deine privaten Nachrichten anzusehen und/oder zu beantworten." - -#: ../../include/enotify.php:124 -#, php-format -msgid "%1$s commented on [url=%2$s]a %3$s[/url]" -msgstr "%1$s kommentierte [url=%2$s]a %3$s[/url]" - -#: ../../include/enotify.php:131 -#, php-format -msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" -msgstr "%1$s kommentierte [url=%2$s]%3$ss %4$s[/url]" - -#: ../../include/enotify.php:139 -#, php-format -msgid "%1$s commented on [url=%2$s]your %3$s[/url]" -msgstr "%1$s kommentierte [url=%2$s]Deinen %3$s[/url]" - -#: ../../include/enotify.php:149 -#, php-format -msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[Friendica-Meldung] Kommentar zum Beitrag #%1$d von %2$s" - -#: ../../include/enotify.php:150 -#, php-format -msgid "%s commented on an item/conversation you have been following." -msgstr "%s hat einen Beitrag kommentiert, dem Du folgst." - -#: ../../include/enotify.php:153 ../../include/enotify.php:168 -#: ../../include/enotify.php:181 ../../include/enotify.php:194 -#: ../../include/enotify.php:212 ../../include/enotify.php:225 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren." - -#: ../../include/enotify.php:160 -#, php-format -msgid "[Friendica:Notify] %s posted to your profile wall" -msgstr "[Friendica-Meldung] %s hat auf Deine Pinnwand geschrieben" - -#: ../../include/enotify.php:162 -#, php-format -msgid "%1$s posted to your profile wall at %2$s" -msgstr "%1$s schrieb auf %2$s auf Deine Pinnwand" - -#: ../../include/enotify.php:164 -#, php-format -msgid "%1$s posted to [url=%2$s]your wall[/url]" -msgstr "%1$s hat etwas auf [url=%2$s]Deiner Pinnwand[/url] gepostet" - -#: ../../include/enotify.php:175 -#, php-format -msgid "[Friendica:Notify] %s tagged you" -msgstr "[Friendica-Meldung] %s hat Dich erwähnt" - -#: ../../include/enotify.php:176 -#, php-format -msgid "%1$s tagged you at %2$s" -msgstr "%1$s erwähnte Dich auf %2$s" - -#: ../../include/enotify.php:177 -#, php-format -msgid "%1$s [url=%2$s]tagged you[/url]." -msgstr "%1$s [url=%2$s]erwähnte Dich[/url]." - -#: ../../include/enotify.php:188 -#, php-format -msgid "[Friendica:Notify] %s shared a new post" -msgstr "[Friendica Benachrichtigung] %s hat einen Beitrag geteilt" - -#: ../../include/enotify.php:189 -#, php-format -msgid "%1$s shared a new post at %2$s" -msgstr "%1$s hat einen neuen Beitrag auf %2$s geteilt" - -#: ../../include/enotify.php:190 -#, php-format -msgid "%1$s [url=%2$s]shared a post[/url]." -msgstr "%1$s [url=%2$s]hat einen Beitrag geteilt[/url]." - -#: ../../include/enotify.php:202 -#, php-format -msgid "[Friendica:Notify] %1$s poked you" -msgstr "[Friendica-Meldung] %1$s hat Dich angestupst" - -#: ../../include/enotify.php:203 -#, php-format -msgid "%1$s poked you at %2$s" -msgstr "%1$s hat Dich auf %2$s angestupst" - -#: ../../include/enotify.php:204 -#, php-format -msgid "%1$s [url=%2$s]poked you[/url]." -msgstr "%1$s [url=%2$s]hat Dich angestupst[/url]." - -#: ../../include/enotify.php:219 -#, php-format -msgid "[Friendica:Notify] %s tagged your post" -msgstr "[Friendica-Meldung] %s hat Deinen Beitrag getaggt" - -#: ../../include/enotify.php:220 -#, php-format -msgid "%1$s tagged your post at %2$s" -msgstr "%1$s erwähnte Deinen Beitrag auf %2$s" - -#: ../../include/enotify.php:221 -#, php-format -msgid "%1$s tagged [url=%2$s]your post[/url]" -msgstr "%1$s erwähnte [url=%2$s]Deinen Beitrag[/url]" - -#: ../../include/enotify.php:232 -msgid "[Friendica:Notify] Introduction received" -msgstr "[Friendica-Meldung] Kontaktanfrage erhalten" - -#: ../../include/enotify.php:233 -#, php-format -msgid "You've received an introduction from '%1$s' at %2$s" -msgstr "Du hast eine Kontaktanfrage von '%1$s' auf %2$s erhalten" - -#: ../../include/enotify.php:234 -#, php-format -msgid "You've received [url=%1$s]an introduction[/url] from %2$s." -msgstr "Du hast eine [url=%1$s]Kontaktanfrage[/url] von %2$s erhalten." - -#: ../../include/enotify.php:237 ../../include/enotify.php:279 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Hier kannst Du das Profil betrachten: %s" - -#: ../../include/enotify.php:239 -#, php-format -msgid "Please visit %s to approve or reject the introduction." -msgstr "Bitte besuche %s, um die Kontaktanfrage anzunehmen oder abzulehnen." - -#: ../../include/enotify.php:247 -msgid "[Friendica:Notify] A new person is sharing with you" -msgstr "[Friendica Benachrichtigung] Eine neue Person teilt mit Dir" - -#: ../../include/enotify.php:248 ../../include/enotify.php:249 -#, php-format -msgid "%1$s is sharing with you at %2$s" -msgstr "%1$s teilt mit Dir auf %2$s" - -#: ../../include/enotify.php:255 -msgid "[Friendica:Notify] You have a new follower" -msgstr "[Friendica Benachrichtigung] Du hast einen neuen Kontakt auf " - -#: ../../include/enotify.php:256 ../../include/enotify.php:257 -#, php-format -msgid "You have a new follower at %2$s : %1$s" -msgstr "Du hast einen neuen Kontakt auf %2$s: %1$s" - -#: ../../include/enotify.php:270 -msgid "[Friendica:Notify] Friend suggestion received" -msgstr "[Friendica-Meldung] Kontaktvorschlag erhalten" - -#: ../../include/enotify.php:271 -#, php-format -msgid "You've received a friend suggestion from '%1$s' at %2$s" -msgstr "Du hast einen Freunde-Vorschlag von '%1$s' auf %2$s erhalten" - -#: ../../include/enotify.php:272 -#, php-format -msgid "" -"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." -msgstr "Du hast einen [url=%1$s]Freunde-Vorschlag[/url] %2$s von %3$s erhalten." - -#: ../../include/enotify.php:277 -msgid "Name:" -msgstr "Name:" - -#: ../../include/enotify.php:278 -msgid "Photo:" -msgstr "Foto:" - -#: ../../include/enotify.php:281 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen." - -#: ../../include/enotify.php:289 ../../include/enotify.php:302 -msgid "[Friendica:Notify] Connection accepted" -msgstr "[Friendica-Benachrichtigung] Kontaktanfrage bestätigt" - -#: ../../include/enotify.php:290 ../../include/enotify.php:303 -#, php-format -msgid "'%1$s' has acepted your connection request at %2$s" -msgstr "'%1$s' hat Deine Kontaktanfrage auf %2$s bestätigt" - -#: ../../include/enotify.php:291 ../../include/enotify.php:304 -#, php-format -msgid "%2$s has accepted your [url=%1$s]connection request[/url]." -msgstr "%2$s hat Deine [url=%1$s]Kontaktanfrage[/url] akzeptiert." - -#: ../../include/enotify.php:294 -msgid "" -"You are now mutual friends and may exchange status updates, photos, and email\n" -"\twithout restriction." -msgstr "Ihr seit nun beidseitige Freunde und könnt Statusmitteilungen, Bilder und Emails ohne Einschränkungen austauschen." - -#: ../../include/enotify.php:297 ../../include/enotify.php:311 -#, php-format -msgid "Please visit %s if you wish to make any changes to this relationship." -msgstr "Bitte besuche %s, wenn Du Änderungen an eurer Beziehung vornehmen willst." - -#: ../../include/enotify.php:307 -#, php-format -msgid "" -"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of " -"communication - such as private messaging and some profile interactions. If " -"this is a celebrity or community page, these settings were applied " -"automatically." -msgstr "'%1$s' hat sich entschieden Dich als \"Fan\" zu akzeptieren, dies schränkt einige Kommunikationswege - wie private Nachrichten und einige Interaktionsmöglichkeiten auf der Profilseite - ein. Wenn dies eine Berühmtheiten- oder Gemeinschaftsseite ist, werden diese Einstellungen automatisch vorgenommen." - -#: ../../include/enotify.php:309 -#, php-format -msgid "" -"'%1$s' may choose to extend this into a two-way or more permissive " -"relationship in the future. " -msgstr "'%1$s' kann den Kontaktstatus zu einem späteren Zeitpunkt erweitern und diese Einschränkungen aufheben. " - -#: ../../include/enotify.php:322 -msgid "[Friendica System:Notify] registration request" -msgstr "[Friendica System:Benachrichtigung] Registrationsanfrage" - -#: ../../include/enotify.php:323 -#, php-format -msgid "You've received a registration request from '%1$s' at %2$s" -msgstr "Du hast eine Registrierungsanfrage von %2$s auf '%1$s' erhalten" - -#: ../../include/enotify.php:324 -#, php-format -msgid "You've received a [url=%1$s]registration request[/url] from %2$s." -msgstr "Du hast eine [url=%1$s]Registrierungsanfrage[/url] von %2$s erhalten." - -#: ../../include/enotify.php:327 -#, php-format -msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" -msgstr "Kompletter Name:\t%1$s\\nURL der Seite:\t%2$s\\nLogin Name:\t%3$s (%4$s)" - -#: ../../include/enotify.php:330 -#, php-format -msgid "Please visit %s to approve or reject the request." -msgstr "Bitte besuche %s um die Anfrage zu bearbeiten." - -#: ../../include/oembed.php:212 -msgid "Embedded content" -msgstr "Eingebetteter Inhalt" - -#: ../../include/oembed.php:221 -msgid "Embedding disabled" -msgstr "Einbettungen deaktiviert" - -#: ../../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:171 -msgid "User profile creation error" -msgstr "Fehler beim Anlegen des Nutzerkontos" - -#: ../../include/uimport.php:220 -#, 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:290 -msgid "Done. You can now login with your username and password" -msgstr "Erledigt. Du kannst Dich jetzt mit Deinem Nutzernamen und Passwort anmelden" - -#: ../../index.php:428 -msgid "toggle mobile" -msgstr "auf/von Mobile Ansicht wechseln" - -#: ../../view/theme/cleanzero/config.php:82 -#: ../../view/theme/dispy/config.php:72 ../../view/theme/quattro/config.php:66 -#: ../../view/theme/diabook/config.php:150 ../../view/theme/vier/config.php:55 -#: ../../view/theme/duepuntozero/config.php:61 -msgid "Theme settings" -msgstr "Themeneinstellungen" - -#: ../../view/theme/cleanzero/config.php:83 -msgid "Set resize level for images in posts and comments (width and height)" -msgstr "Wähle das Vergrößerungsmaß für Bilder in Beiträgen und Kommentaren (Höhe und Breite)" - -#: ../../view/theme/cleanzero/config.php:84 -#: ../../view/theme/dispy/config.php:73 -#: ../../view/theme/diabook/config.php:151 -msgid "Set font-size for posts and comments" -msgstr "Schriftgröße für Beiträge und Kommentare festlegen" - -#: ../../view/theme/cleanzero/config.php:85 -msgid "Set theme width" -msgstr "Theme Breite festlegen" - -#: ../../view/theme/cleanzero/config.php:86 -#: ../../view/theme/quattro/config.php:68 -msgid "Color scheme" -msgstr "Farbschema" - -#: ../../view/theme/dispy/config.php:74 -#: ../../view/theme/diabook/config.php:152 -msgid "Set line-height for posts and comments" -msgstr "Liniengröße für Beiträge und Kommantare festlegen" - -#: ../../view/theme/dispy/config.php:75 -msgid "Set colour scheme" -msgstr "Farbschema wählen" - -#: ../../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: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/diabook/config.php:153 -msgid "Set resolution for middle column" -msgstr "Auflösung für die Mittelspalte setzen" - -#: ../../view/theme/diabook/config.php:154 -msgid "Set color scheme" -msgstr "Wähle Farbschema" - -#: ../../view/theme/diabook/config.php:155 -msgid "Set zoomfactor for Earth Layer" -msgstr "Zoomfaktor der Earth Layer" - -#: ../../view/theme/diabook/config.php:156 -#: ../../view/theme/diabook/theme.php:585 -msgid "Set longitude (X) for Earth Layers" -msgstr "Longitude (X) der Earth Layer" - -#: ../../view/theme/diabook/config.php:157 -#: ../../view/theme/diabook/theme.php:586 -msgid "Set latitude (Y) for Earth Layers" -msgstr "Latitude (Y) der Earth Layer" - -#: ../../view/theme/diabook/config.php:158 -#: ../../view/theme/diabook/theme.php:130 -#: ../../view/theme/diabook/theme.php:544 -#: ../../view/theme/diabook/theme.php:624 -msgid "Community Pages" -msgstr "Foren" - -#: ../../view/theme/diabook/config.php:159 -#: ../../view/theme/diabook/theme.php:579 -#: ../../view/theme/diabook/theme.php:625 -msgid "Earth Layers" -msgstr "Earth Layers" - -#: ../../view/theme/diabook/config.php:160 -#: ../../view/theme/diabook/theme.php:391 -#: ../../view/theme/diabook/theme.php:626 -msgid "Community Profiles" -msgstr "Community-Profile" - -#: ../../view/theme/diabook/config.php:161 -#: ../../view/theme/diabook/theme.php:599 -#: ../../view/theme/diabook/theme.php:627 -msgid "Help or @NewHere ?" -msgstr "Hilfe oder @NewHere" - -#: ../../view/theme/diabook/config.php:162 -#: ../../view/theme/diabook/theme.php:606 -#: ../../view/theme/diabook/theme.php:628 -msgid "Connect Services" -msgstr "Verbinde Dienste" - -#: ../../view/theme/diabook/config.php:163 -#: ../../view/theme/diabook/theme.php:523 -#: ../../view/theme/diabook/theme.php:629 -msgid "Find Friends" -msgstr "Freunde finden" - -#: ../../view/theme/diabook/config.php:164 -#: ../../view/theme/diabook/theme.php:412 -#: ../../view/theme/diabook/theme.php:630 -msgid "Last users" -msgstr "Letzte Nutzer" - -#: ../../view/theme/diabook/config.php:165 -#: ../../view/theme/diabook/theme.php:486 -#: ../../view/theme/diabook/theme.php:631 -msgid "Last photos" -msgstr "Letzte Fotos" - -#: ../../view/theme/diabook/config.php:166 -#: ../../view/theme/diabook/theme.php:441 -#: ../../view/theme/diabook/theme.php:632 -msgid "Last likes" -msgstr "Zuletzt gemocht" - -#: ../../view/theme/diabook/theme.php:125 -msgid "Your contacts" -msgstr "Deine Kontakte" - -#: ../../view/theme/diabook/theme.php:128 -msgid "Your personal photos" -msgstr "Deine privaten Fotos" - -#: ../../view/theme/diabook/theme.php:524 -msgid "Local Directory" -msgstr "Lokales Verzeichnis" - -#: ../../view/theme/diabook/theme.php:584 -msgid "Set zoomfactor for Earth Layers" -msgstr "Zoomfaktor der Earth Layer" - -#: ../../view/theme/diabook/theme.php:622 -msgid "Show/hide boxes at right-hand column:" -msgstr "Rahmen auf der rechten Seite anzeigen/verbergen" - -#: ../../view/theme/vier/config.php:56 -msgid "Set style" -msgstr "Stil auswählen" - -#: ../../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" diff --git a/view/de/strings.php b/view/de/strings.php index dd9842806e..6b68f1de2e 100644 --- a/view/de/strings.php +++ b/view/de/strings.php @@ -5,6 +5,956 @@ function string_plural_select_de($n){ return ($n != 1);; }} ; +$a->strings["Submit"] = "Senden"; +$a->strings["Theme settings"] = "Themeneinstellungen"; +$a->strings["Set resize level for images in posts and comments (width and height)"] = "Wähle das Vergrößerungsmaß für Bilder in Beiträgen und Kommentaren (Höhe und Breite)"; +$a->strings["Set font-size for posts and comments"] = "Schriftgröße für Beiträge und Kommentare festlegen"; +$a->strings["Set theme width"] = "Theme Breite festlegen"; +$a->strings["Color scheme"] = "Farbschema"; +$a->strings["Set style"] = "Stil auswählen"; +$a->strings["default"] = "Standard"; +$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["don't show"] = "nicht zeigen"; +$a->strings["show"] = "zeigen"; +$a->strings["Set line-height for posts and comments"] = "Liniengröße für Beiträge und Kommantare festlegen"; +$a->strings["Set resolution for middle column"] = "Auflösung für die Mittelspalte setzen"; +$a->strings["Set color scheme"] = "Wähle Farbschema"; +$a->strings["Set zoomfactor for Earth Layer"] = "Zoomfaktor der Earth Layer"; +$a->strings["Set longitude (X) for Earth Layers"] = "Longitude (X) der Earth Layer"; +$a->strings["Set latitude (Y) for Earth Layers"] = "Latitude (Y) der Earth Layer"; +$a->strings["Community Pages"] = "Foren"; +$a->strings["Earth Layers"] = "Earth Layers"; +$a->strings["Community Profiles"] = "Community-Profile"; +$a->strings["Help or @NewHere ?"] = "Hilfe oder @NewHere"; +$a->strings["Connect Services"] = "Verbinde Dienste"; +$a->strings["Find Friends"] = "Freunde finden"; +$a->strings["Last users"] = "Letzte Nutzer"; +$a->strings["Last photos"] = "Letzte Fotos"; +$a->strings["Last likes"] = "Zuletzt gemocht"; +$a->strings["Home"] = "Pinnwand"; +$a->strings["Your posts and conversations"] = "Deine Beiträge und Unterhaltungen"; +$a->strings["Profile"] = "Profil"; +$a->strings["Your profile page"] = "Deine Profilseite"; +$a->strings["Contacts"] = "Kontakte"; +$a->strings["Your contacts"] = "Deine Kontakte"; +$a->strings["Photos"] = "Bilder"; +$a->strings["Your photos"] = "Deine Fotos"; +$a->strings["Events"] = "Veranstaltungen"; +$a->strings["Your events"] = "Deine Ereignisse"; +$a->strings["Personal notes"] = "Persönliche Notizen"; +$a->strings["Your personal photos"] = "Deine privaten Fotos"; +$a->strings["Community"] = "Gemeinschaft"; +$a->strings["event"] = "Veranstaltung"; +$a->strings["status"] = "Status"; +$a->strings["photo"] = "Foto"; +$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s"; +$a->strings["Contact Photos"] = "Kontaktbilder"; +$a->strings["Profile Photos"] = "Profilbilder"; +$a->strings["Local Directory"] = "Lokales Verzeichnis"; +$a->strings["Global Directory"] = "Weltweites Verzeichnis"; +$a->strings["Similar Interests"] = "Ähnliche Interessen"; +$a->strings["Friend Suggestions"] = "Kontaktvorschläge"; +$a->strings["Invite Friends"] = "Freunde einladen"; +$a->strings["Settings"] = "Einstellungen"; +$a->strings["Set zoomfactor for Earth Layers"] = "Zoomfaktor der Earth Layer"; +$a->strings["Show/hide boxes at right-hand column:"] = "Rahmen auf der rechten Seite anzeigen/verbergen"; +$a->strings["Alignment"] = "Ausrichtung"; +$a->strings["Left"] = "Links"; +$a->strings["Center"] = "Mitte"; +$a->strings["Posts font size"] = "Schriftgröße in Beiträgen"; +$a->strings["Textareas font size"] = "Schriftgröße in Eingabefeldern"; +$a->strings["Set colour scheme"] = "Farbschema wählen"; +$a->strings["You must be logged in to use addons. "] = "Sie müssen angemeldet sein um Addons benutzen zu können."; +$a->strings["Not Found"] = "Nicht gefunden"; +$a->strings["Page not found."] = "Seite nicht gefunden."; +$a->strings["Permission denied"] = "Zugriff verweigert"; +$a->strings["Permission denied."] = "Zugriff verweigert."; +$a->strings["toggle mobile"] = "auf/von Mobile Ansicht wechseln"; +$a->strings["Do you wish to confirm your identity (%s) with %s"] = "Möchtest du deine Identität (%s mit %s bestätigen"; +$a->strings["Confirm"] = "Bestätigen"; +$a->strings["Do not confirm"] = "Nicht bestätigen"; +$a->strings["Trust This Site"] = "Dieser Seite vertrauen"; +$a->strings["No Identifier Sent"] = "Keine Identifikation gesendet"; +$a->strings["Requested identity don't match logged in user."] = "Die angeforderte Identität stimmt nicht mit dem angemeldeten Nutzer überein."; +$a->strings["Please wait; you are being redirected to <%s>"] = "Bitte warten, Du wirst nach <%s> umgeleitet."; +$a->strings["Delete this item?"] = "Diesen Beitrag löschen?"; +$a->strings["Comment"] = "Kommentar"; +$a->strings["show more"] = "mehr anzeigen"; +$a->strings["show fewer"] = "weniger anzeigen"; +$a->strings["Update %s failed. See error logs."] = "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen."; +$a->strings["Create a New Account"] = "Neues Konto erstellen"; +$a->strings["Register"] = "Registrieren"; +$a->strings["Logout"] = "Abmelden"; +$a->strings["Login"] = "Anmeldung"; +$a->strings["Nickname or Email address: "] = "Spitzname oder E-Mail-Adresse: "; +$a->strings["Password: "] = "Passwort: "; +$a->strings["Remember me"] = "Anmeldedaten merken"; +$a->strings["Or login using OpenID: "] = "Oder melde Dich mit Deiner OpenID an: "; +$a->strings["Forgot your password?"] = "Passwort vergessen?"; +$a->strings["Password Reset"] = "Passwort zurücksetzen"; +$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["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"; +$a->strings["Connect"] = "Verbinden"; +$a->strings["Message"] = "Nachricht"; +$a->strings["Profiles"] = "Profile"; +$a->strings["Manage/edit profiles"] = "Profile verwalten/editieren"; +$a->strings["Change profile photo"] = "Profilbild ändern"; +$a->strings["Create New Profile"] = "Neues Profil anlegen"; +$a->strings["Profile Image"] = "Profilbild"; +$a->strings["visible to everybody"] = "sichtbar für jeden"; +$a->strings["Edit visibility"] = "Sichtbarkeit bearbeiten"; +$a->strings["Location:"] = "Ort:"; +$a->strings["Gender:"] = "Geschlecht:"; +$a->strings["Status:"] = "Status:"; +$a->strings["Homepage:"] = "Homepage:"; +$a->strings["About:"] = "Über:"; +$a->strings["Network:"] = "Netzwerk"; +$a->strings["g A l F d"] = "l, d. F G \\U\\h\\r"; +$a->strings["F d"] = "d. F"; +$a->strings["[today]"] = "[heute]"; +$a->strings["Birthday Reminders"] = "Geburtstagserinnerungen"; +$a->strings["Birthdays this week:"] = "Geburtstage diese Woche:"; +$a->strings["[No description]"] = "[keine Beschreibung]"; +$a->strings["Event Reminders"] = "Veranstaltungserinnerungen"; +$a->strings["Events this week:"] = "Veranstaltungen diese Woche"; +$a->strings["Status"] = "Status"; +$a->strings["Status Messages and Posts"] = "Statusnachrichten und Beiträge"; +$a->strings["Profile Details"] = "Profildetails"; +$a->strings["Photo Albums"] = "Fotoalben"; +$a->strings["Videos"] = "Videos"; +$a->strings["Events and Calendar"] = "Ereignisse und Kalender"; +$a->strings["Personal Notes"] = "Persönliche Notizen"; +$a->strings["Only You Can See This"] = "Nur Du kannst das sehen"; +$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"; +$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"; +$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = "Automatisch eine @-Erwähnung eines Forums einfügen/entfehrnen, wenn dieses im ACL Fenster de-/markiert wurde."; +$a->strings["Network Sidebar Widgets"] = "Widgets für Netzwerk und Seitenleiste"; +$a->strings["Search by Date"] = "Archiv"; +$a->strings["Ability to select posts by date ranges"] = "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren"; +$a->strings["Group Filter"] = "Gruppen Filter"; +$a->strings["Enable widget to display Network posts only from selected group"] = "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren."; +$a->strings["Network Filter"] = "Netzwerk Filter"; +$a->strings["Enable widget to display Network posts only from selected network"] = "Widget zum filtern der Beiträge in Abhängigkeit des Netzwerks aus dem der Ersteller sendet aktivieren."; +$a->strings["Saved Searches"] = "Gespeicherte Suchen"; +$a->strings["Save search terms for re-use"] = "Speichere Suchanfragen für spätere Wiederholung."; +$a->strings["Network Tabs"] = "Netzwerk Reiter"; +$a->strings["Network Personal Tab"] = "Netzwerk-Reiter: Persönlich"; +$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Aktiviert einen Netzwerk-Reiter in dem Nachrichten angezeigt werden mit denen Du interagiert hast"; +$a->strings["Network New Tab"] = "Netzwerk-Reiter: Neue"; +$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Aktiviert einen Netzwerk-Reiter in dem ausschließlich neue Beiträge (der letzten 12 Stunden) angezeigt werden"; +$a->strings["Network Shared Links Tab"] = "Netzwerk-Reiter: Geteilte Links"; +$a->strings["Enable tab to display only Network posts with links in them"] = "Aktiviert einen Netzwerk-Reiter der ausschließlich Nachrichten mit Links enthält"; +$a->strings["Post/Comment Tools"] = "Werkzeuge für Beiträge und Kommentare"; +$a->strings["Multiple Deletion"] = "Mehrere Beiträge löschen"; +$a->strings["Select and delete multiple posts/comments at once"] = "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen"; +$a->strings["Edit Sent Posts"] = "Gesendete Beiträge editieren"; +$a->strings["Edit and correct posts and comments after sending"] = "Erlaubt es Beiträge und Kommentare nach dem Senden zu editieren bzw.zu korrigieren."; +$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'"; +$a->strings["Star Posts"] = "Beiträge Markieren"; +$a->strings["Ability to mark special posts with a star indicator"] = "Erlaubt es Beiträge mit einem Stern-Indikator zu markieren"; +$a->strings["Mute Post Notifications"] = "Benachrichtigungen für Beiträge Stumm schalten"; +$a->strings["Ability to mute notifications for a thread"] = "Möglichkeit Benachrichtigungen für einen Thread abbestellen zu können"; +$a->strings["%s's birthday"] = "%ss Geburtstag"; +$a->strings["Happy Birthday %s"] = "Herzlichen Glückwunsch %s"; +$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["Cancel"] = "Abbrechen"; +$a->strings["Archives"] = "Archiv"; +$a->strings["A deleted group with this name was revived. Existing item permissions may 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 könnten 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 group"] = "Gruppe bearbeiten"; +$a->strings["Create a new group"] = "Neue Gruppe erstellen"; +$a->strings["Contacts not in any group"] = "Kontakte in keiner Gruppe"; +$a->strings["add"] = "hinzufügen"; +$a->strings["Wall Photos"] = "Pinnwand-Bilder"; +$a->strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln."; +$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["%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["Random Profile"] = "Zufälliges Profil"; +$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["Friendica Notification"] = "Friendica-Benachrichtigung"; +$a->strings["Thank You,"] = "Danke,"; +$a->strings["%s Administrator"] = "der Administrator von %s"; +$a->strings["noreply"] = "noreply"; +$a->strings["%s "] = "%s "; +$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica-Meldung] Neue Nachricht erhalten von %s"; +$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s hat Dir eine neue private Nachricht auf %2\$s geschickt."; +$a->strings["%1\$s sent you %2\$s."] = "%1\$s schickte Dir %2\$s."; +$a->strings["a private message"] = "eine private Nachricht"; +$a->strings["Please visit %s to view and/or reply to your private messages."] = "Bitte besuche %s, um Deine privaten Nachrichten anzusehen und/oder zu beantworten."; +$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]a %3\$s[/url]"; +$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]%3\$ss %4\$s[/url]"; +$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]Deinen %3\$s[/url]"; +$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica-Meldung] Kommentar zum Beitrag #%1\$d von %2\$s"; +$a->strings["%s commented on an item/conversation you have been following."] = "%s hat einen Beitrag kommentiert, dem Du folgst."; +$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren."; +$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica-Meldung] %s hat auf Deine Pinnwand geschrieben"; +$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s schrieb auf %2\$s auf Deine Pinnwand"; +$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s hat etwas auf [url=%2\$s]Deiner Pinnwand[/url] gepostet"; +$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica-Meldung] %s hat Dich erwähnt"; +$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s erwähnte Dich auf %2\$s"; +$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]erwähnte Dich[/url]."; +$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica Benachrichtigung] %s hat einen Beitrag geteilt"; +$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s hat einen neuen Beitrag auf %2\$s geteilt"; +$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]hat einen Beitrag geteilt[/url]."; +$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica-Meldung] %1\$s hat Dich angestupst"; +$a->strings["%1\$s poked you at %2\$s"] = "%1\$s hat Dich auf %2\$s angestupst"; +$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]hat Dich angestupst[/url]."; +$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica-Meldung] %s hat Deinen Beitrag getaggt"; +$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s erwähnte Deinen Beitrag auf %2\$s"; +$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s erwähnte [url=%2\$s]Deinen Beitrag[/url]"; +$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica-Meldung] Kontaktanfrage erhalten"; +$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Du hast eine Kontaktanfrage von '%1\$s' auf %2\$s erhalten"; +$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Du hast eine [url=%1\$s]Kontaktanfrage[/url] von %2\$s erhalten."; +$a->strings["You may visit their profile at %s"] = "Hier kannst Du das Profil betrachten: %s"; +$a->strings["Please visit %s to approve or reject the introduction."] = "Bitte besuche %s, um die Kontaktanfrage anzunehmen oder abzulehnen."; +$a->strings["[Friendica:Notify] A new person is sharing with you"] = "[Friendica Benachrichtigung] Eine neue Person teilt mit Dir"; +$a->strings["%1\$s is sharing with you at %2\$s"] = "%1\$s teilt mit Dir auf %2\$s"; +$a->strings["[Friendica:Notify] You have a new follower"] = "[Friendica Benachrichtigung] Du hast einen neuen Kontakt auf "; +$a->strings["You have a new follower at %2\$s : %1\$s"] = "Du hast einen neuen Kontakt auf %2\$s: %1\$s"; +$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica-Meldung] Kontaktvorschlag erhalten"; +$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Du hast einen Freunde-Vorschlag von '%1\$s' auf %2\$s erhalten"; +$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Du hast einen [url=%1\$s]Freunde-Vorschlag[/url] %2\$s von %3\$s erhalten."; +$a->strings["Name:"] = "Name:"; +$a->strings["Photo:"] = "Foto:"; +$a->strings["Please visit %s to approve or reject the suggestion."] = "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen."; +$a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica-Benachrichtigung] Kontaktanfrage bestätigt"; +$a->strings["'%1\$s' has acepted your connection request at %2\$s"] = "'%1\$s' hat Deine Kontaktanfrage auf %2\$s bestätigt"; +$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$s hat Deine [url=%1\$s]Kontaktanfrage[/url] akzeptiert."; +$a->strings["You are now mutual friends and may exchange status updates, photos, and email\n\twithout restriction."] = "Ihr seit nun beidseitige Freunde und könnt Statusmitteilungen, Bilder und Emails ohne Einschränkungen austauschen."; +$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Bitte besuche %s, wenn Du Änderungen an eurer Beziehung vornehmen willst."; +$a->strings["'%1\$s' has chosen to accept you a \"fan\", which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = "'%1\$s' hat sich entschieden Dich als \"Fan\" zu akzeptieren, dies schränkt einige Kommunikationswege - wie private Nachrichten und einige Interaktionsmöglichkeiten auf der Profilseite - ein. Wenn dies eine Berühmtheiten- oder Gemeinschaftsseite ist, werden diese Einstellungen automatisch vorgenommen."; +$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future. "] = "'%1\$s' kann den Kontaktstatus zu einem späteren Zeitpunkt erweitern und diese Einschränkungen aufheben. "; +$a->strings["[Friendica System:Notify] registration request"] = "[Friendica System:Benachrichtigung] Registrationsanfrage"; +$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Du hast eine Registrierungsanfrage von %2\$s auf '%1\$s' erhalten"; +$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["User not found."] = "Nutzer nicht gefunden."; +$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["There is no status with this id."] = "Es gibt keinen Status mit dieser ID."; +$a->strings["There is no conversation with this id."] = "Es existiert keine Unterhaltung mit dieser ID."; +$a->strings["Invalid request."] = "Ungültige Anfrage"; +$a->strings["Invalid item."] = "Ungültiges Objekt"; +$a->strings["Invalid action. "] = "Ungültige Aktion"; +$a->strings["DB error"] = "DB Error"; +$a->strings["view full size"] = "Volle Größe anzeigen"; +$a->strings[" on Last.fm"] = " bei Last.fm"; +$a->strings["Full Name:"] = "Kompletter Name:"; +$a->strings["j F, Y"] = "j F, Y"; +$a->strings["j F"] = "j F"; +$a->strings["Birthday:"] = "Geburtstag:"; +$a->strings["Age:"] = "Alter:"; +$a->strings["for %1\$d %2\$s"] = "für %1\$d %2\$s"; +$a->strings["Sexual Preference:"] = "Sexuelle Vorlieben:"; +$a->strings["Hometown:"] = "Heimatort:"; +$a->strings["Tags:"] = "Tags"; +$a->strings["Political Views:"] = "Politische Ansichten:"; +$a->strings["Religion:"] = "Religion:"; +$a->strings["Hobbies/Interests:"] = "Hobbies/Interessen:"; +$a->strings["Likes:"] = "Likes:"; +$a->strings["Dislikes:"] = "Dislikes:"; +$a->strings["Contact information and Social Networks:"] = "Kontaktinformationen und Soziale Netzwerke:"; +$a->strings["Musical interests:"] = "Musikalische Interessen:"; +$a->strings["Books, literature:"] = "Literatur/Bücher:"; +$a->strings["Television:"] = "Fernsehen:"; +$a->strings["Film/dance/culture/entertainment:"] = "Filme/Tänze/Kultur/Unterhaltung:"; +$a->strings["Love/Romance:"] = "Liebesleben:"; +$a->strings["Work/employment:"] = "Arbeit/Beschäftigung:"; +$a->strings["School/education:"] = "Schule/Ausbildung:"; +$a->strings["Nothing new here"] = "Keine Neuigkeiten"; +$a->strings["Clear notifications"] = "Bereinige Benachrichtigungen"; +$a->strings["End this session"] = "Diese Sitzung beenden"; +$a->strings["Your videos"] = "Deine Videos"; +$a->strings["Your personal notes"] = "Deine persönlichen Notizen"; +$a->strings["Sign in"] = "Anmelden"; +$a->strings["Home Page"] = "Homepage"; +$a->strings["Create an account"] = "Nutzerkonto erstellen"; +$a->strings["Help"] = "Hilfe"; +$a->strings["Help and documentation"] = "Hilfe und Dokumentation"; +$a->strings["Apps"] = "Apps"; +$a->strings["Addon applications, utilities, games"] = "Addon Anwendungen, Dienstprogramme, Spiele"; +$a->strings["Search"] = "Suche"; +$a->strings["Search site content"] = "Inhalt der Seite durchsuchen"; +$a->strings["Conversations on this site"] = "Unterhaltungen auf dieser Seite"; +$a->strings["Conversations on the network"] = "Unterhaltungen im Netzwerk"; +$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"; +$a->strings["Mark all system notifications seen"] = "Markiere alle Systembenachrichtigungen als gelesen"; +$a->strings["Messages"] = "Nachrichten"; +$a->strings["Private mail"] = "Private E-Mail"; +$a->strings["Inbox"] = "Eingang"; +$a->strings["Outbox"] = "Ausgang"; +$a->strings["New Message"] = "Neue Nachricht"; +$a->strings["Manage"] = "Verwalten"; +$a->strings["Manage other pages"] = "Andere Seiten verwalten"; +$a->strings["Delegations"] = "Delegationen"; +$a->strings["Delegate Page Management"] = "Delegiere das Management für die Seite"; +$a->strings["Account settings"] = "Kontoeinstellungen"; +$a->strings["Manage/Edit Profiles"] = "Profile Verwalten/Editieren"; +$a->strings["Manage/edit friends and contacts"] = "Freunde und Kontakte verwalten/editieren"; +$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["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["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["following"] = "folgen"; +$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["l F d, Y \\@ g:i A"] = "l, d. F Y\\, H:i"; +$a->strings["Starts:"] = "Beginnt:"; +$a->strings["Finishes:"] = "Endet:"; +$a->strings["stopped following"] = "wird nicht mehr gefolgt"; +$a->strings["Poke"] = "Anstupsen"; +$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["Edit Contact"] = "Kontakt bearbeiten"; +$a->strings["Drop Contact"] = "Kontakt löschen"; +$a->strings["Send PM"] = "Private Nachricht senden"; +$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["Miscellaneous"] = "Verschiedenes"; +$a->strings["year"] = "Jahr"; +$a->strings["month"] = "Monat"; +$a->strings["day"] = "Tag"; +$a->strings["never"] = "nie"; +$a->strings["less than a second ago"] = "vor weniger als einer Sekunde"; +$a->strings["years"] = "Jahre"; +$a->strings["months"] = "Monate"; +$a->strings["week"] = "Woche"; +$a->strings["weeks"] = "Wochen"; +$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["[no subject]"] = "[kein Betreff]"; +$a->strings["(no subject)"] = "(kein Betreff)"; +$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["Statusnet"] = "StatusNet"; +$a->strings["App.net"] = "App.net"; +$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s ist nun mit %2\$s befreundet"; +$a->strings["Sharing notification from Diaspora network"] = "Freigabe-Benachrichtigung von Diaspora"; +$a->strings["Attachments:"] = "Anhänge:"; +$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s nicht"; +$a->strings["%1\$s poked %2\$s"] = "%1\$s stupste %2\$s"; +$a->strings["%1\$s is currently %2\$s"] = "%1\$s ist momentan %2\$s"; +$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s hat %2\$ss %3\$s mit %4\$s getaggt"; +$a->strings["post/item"] = "Nachricht/Beitrag"; +$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s hat %2\$s\\s %3\$s als Favorit markiert"; +$a->strings["Select"] = "Auswählen"; +$a->strings["Delete"] = "Löschen"; +$a->strings["View %s's profile @ %s"] = "Das Profil von %s auf %s betrachten."; +$a->strings["Categories:"] = "Kategorien:"; +$a->strings["Filed under:"] = "Abgelegt unter:"; +$a->strings["%s from %s"] = "%s von %s"; +$a->strings["View in context"] = "Im Zusammenhang betrachten"; +$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["%s likes this."] = "%s mag das."; +$a->strings["%s doesn't like this."] = "%s mag das nicht."; +$a->strings["%2\$d people like this"] = "%2\$d Personen mögen das"; +$a->strings["%2\$d people don't like this"] = "%2\$d Personen mögen das nicht"; +$a->strings["and"] = "und"; +$a->strings[", and %d other people"] = " und %d andere"; +$a->strings["%s like this."] = "%s mögen das."; +$a->strings["%s don't like this."] = "%s mögen das nicht."; +$a->strings["Visible to everybody"] = "Für jedermann sichtbar"; +$a->strings["Please enter a link URL:"] = "Bitte gib die URL des Links ein:"; +$a->strings["Please enter a video link/URL:"] = "Bitte Link/URL zum Video einfügen:"; +$a->strings["Please enter an audio link/URL:"] = "Bitte Link/URL zum Audio einfügen:"; +$a->strings["Tag term:"] = "Tag:"; +$a->strings["Save to Folder:"] = "In diesem Ordner speichern:"; +$a->strings["Where are you right now?"] = "Wo hältst Du Dich jetzt gerade auf?"; +$a->strings["Delete item(s)?"] = "Einträge löschen?"; +$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["Share"] = "Teilen"; +$a->strings["Upload photo"] = "Foto hochladen"; +$a->strings["upload photo"] = "Bild hochladen"; +$a->strings["Attach file"] = "Datei anhängen"; +$a->strings["attach file"] = "Datei anhängen"; +$a->strings["Insert web link"] = "Einen Link einfügen"; +$a->strings["web link"] = "Weblink"; +$a->strings["Insert video link"] = "Video-Adresse einfügen"; +$a->strings["video link"] = "Video-Link"; +$a->strings["Insert audio link"] = "Audio-Adresse einfügen"; +$a->strings["audio link"] = "Audio-Link"; +$a->strings["Set your location"] = "Deinen Standort festlegen"; +$a->strings["set location"] = "Ort setzen"; +$a->strings["Clear browser location"] = "Browser-Standort leeren"; +$a->strings["clear location"] = "Ort löschen"; +$a->strings["Set title"] = "Titel setzen"; +$a->strings["Categories (comma-separated list)"] = "Kategorien (kommasepariert)"; +$a->strings["Permission settings"] = "Berechtigungseinstellungen"; +$a->strings["permissions"] = "Zugriffsrechte"; +$a->strings["CC: email addresses"] = "Cc: E-Mail-Addressen"; +$a->strings["Public post"] = "Öffentlicher Beitrag"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Z.B.: bob@example.com, mary@example.com"; +$a->strings["Preview"] = "Vorschau"; +$a->strings["Post to Groups"] = "Poste an Gruppe"; +$a->strings["Post to Contacts"] = "Poste an Kontakte"; +$a->strings["Private post"] = "Privater Beitrag"; +$a->strings["newer"] = "neuer"; +$a->strings["older"] = "älter"; +$a->strings["prev"] = "vorige"; +$a->strings["first"] = "erste"; +$a->strings["last"] = "letzte"; +$a->strings["next"] = "nächste"; +$a->strings["Loading more entries..."] = "lade weitere Einträge..."; +$a->strings["The end"] = "Das Ende"; +$a->strings["No contacts"] = "Keine Kontakte"; +$a->strings["%d Contact"] = array( + 0 => "%d Kontakt", + 1 => "%d Kontakte", +); +$a->strings["View Contacts"] = "Kontakte anzeigen"; +$a->strings["Save"] = "Speichern"; +$a->strings["poke"] = "anstupsen"; +$a->strings["poked"] = "stupste"; +$a->strings["ping"] = "anpingen"; +$a->strings["pinged"] = "pingte"; +$a->strings["prod"] = "knuffen"; +$a->strings["prodded"] = "knuffte"; +$a->strings["slap"] = "ohrfeigen"; +$a->strings["slapped"] = "ohrfeigte"; +$a->strings["finger"] = "befummeln"; +$a->strings["fingered"] = "befummelte"; +$a->strings["rebuff"] = "eine Abfuhr erteilen"; +$a->strings["rebuffed"] = "abfuhrerteilte"; +$a->strings["happy"] = "glücklich"; +$a->strings["sad"] = "traurig"; +$a->strings["mellow"] = "sanft"; +$a->strings["tired"] = "müde"; +$a->strings["perky"] = "frech"; +$a->strings["angry"] = "sauer"; +$a->strings["stupified"] = "verblüfft"; +$a->strings["puzzled"] = "verwirrt"; +$a->strings["interested"] = "interessiert"; +$a->strings["bitter"] = "verbittert"; +$a->strings["cheerful"] = "fröhlich"; +$a->strings["alive"] = "lebendig"; +$a->strings["annoyed"] = "verärgert"; +$a->strings["anxious"] = "unruhig"; +$a->strings["cranky"] = "schrullig"; +$a->strings["disturbed"] = "verstört"; +$a->strings["frustrated"] = "frustriert"; +$a->strings["motivated"] = "motiviert"; +$a->strings["relaxed"] = "entspannt"; +$a->strings["surprised"] = "überrascht"; +$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["Sunday"] = "Sonntag"; +$a->strings["January"] = "Januar"; +$a->strings["February"] = "Februar"; +$a->strings["March"] = "März"; +$a->strings["April"] = "April"; +$a->strings["May"] = "Mai"; +$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["View Video"] = "Video ansehen"; +$a->strings["bytes"] = "Byte"; +$a->strings["Click to open/close"] = "Zum öffnen/schließen klicken"; +$a->strings["link to source"] = "Link zum Originalbeitrag"; +$a->strings["Select an alternate language"] = "Alternative Sprache auswählen"; +$a->strings["activity"] = "Aktivität"; +$a->strings["comment"] = array( + 0 => "Kommentar", + 1 => "Kommentare", +); +$a->strings["post"] = "Beitrag"; +$a->strings["Item filed"] = "Beitrag abgelegt"; +$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["Image/photo"] = "Bild/Foto"; +$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s"; +$a->strings["%s wrote the following post"] = "%s schrieb den folgenden Beitrag"; +$a->strings["$1 wrote:"] = "$1 hat geschrieben:"; +$a->strings["Encrypted content"] = "Verschlüsselter Inhalt"; +$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["Embedded content"] = "Eingebetteter Inhalt"; +$a->strings["Embedding disabled"] = "Einbettungen deaktiviert"; +$a->strings["Male"] = "Männlich"; +$a->strings["Female"] = "Weiblich"; +$a->strings["Currently Male"] = "Momentan männlich"; +$a->strings["Currently Female"] = "Momentan weiblich"; +$a->strings["Mostly Male"] = "Hauptsächlich männlich"; +$a->strings["Mostly Female"] = "Hauptsächlich weiblich"; +$a->strings["Transgender"] = "Transgender"; +$a->strings["Intersex"] = "Intersex"; +$a->strings["Transsexual"] = "Transsexuell"; +$a->strings["Hermaphrodite"] = "Hermaphrodit"; +$a->strings["Neuter"] = "Neuter"; +$a->strings["Non-specific"] = "Nicht spezifiziert"; +$a->strings["Other"] = "Andere"; +$a->strings["Undecided"] = "Unentschieden"; +$a->strings["Males"] = "Männer"; +$a->strings["Females"] = "Frauen"; +$a->strings["Gay"] = "Schwul"; +$a->strings["Lesbian"] = "Lesbisch"; +$a->strings["No Preference"] = "Keine Vorlieben"; +$a->strings["Bisexual"] = "Bisexuell"; +$a->strings["Autosexual"] = "Autosexual"; +$a->strings["Abstinent"] = "Abstinent"; +$a->strings["Virgin"] = "Jungfrauen"; +$a->strings["Deviant"] = "Deviant"; +$a->strings["Fetish"] = "Fetish"; +$a->strings["Oodles"] = "Oodles"; +$a->strings["Nonsexual"] = "Nonsexual"; +$a->strings["Single"] = "Single"; +$a->strings["Lonely"] = "Einsam"; +$a->strings["Available"] = "Verfügbar"; +$a->strings["Unavailable"] = "Nicht verfügbar"; +$a->strings["Has crush"] = "verknallt"; +$a->strings["Infatuated"] = "verliebt"; +$a->strings["Dating"] = "Dating"; +$a->strings["Unfaithful"] = "Untreu"; +$a->strings["Sex Addict"] = "Sexbesessen"; +$a->strings["Friends"] = "Freunde"; +$a->strings["Friends/Benefits"] = "Freunde/Zuwendungen"; +$a->strings["Casual"] = "Casual"; +$a->strings["Engaged"] = "Verlobt"; +$a->strings["Married"] = "Verheiratet"; +$a->strings["Imaginarily married"] = "imaginär verheiratet"; +$a->strings["Partners"] = "Partner"; +$a->strings["Cohabiting"] = "zusammenlebend"; +$a->strings["Common law"] = "wilde Ehe"; +$a->strings["Happy"] = "Glücklich"; +$a->strings["Not looking"] = "Nicht auf der Suche"; +$a->strings["Swinger"] = "Swinger"; +$a->strings["Betrayed"] = "Betrogen"; +$a->strings["Separated"] = "Getrennt"; +$a->strings["Unstable"] = "Unstabil"; +$a->strings["Divorced"] = "Geschieden"; +$a->strings["Imaginarily divorced"] = "imaginär geschieden"; +$a->strings["Widowed"] = "Verwitwet"; +$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["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 \"_\", and must also begin with a letter."] = "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\", \"_\" und \"-\") bestehen, außerdem muss er mit einem Buchstaben beginnen."; +$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["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["\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["Visible to everybody"] = "Für jeden sichtbar"; +$a->strings["This entry was edited"] = "Dieser Beitrag wurde bearbeitet."; +$a->strings["Private Message"] = "Private Nachricht"; +$a->strings["Edit"] = "Bearbeiten"; +$a->strings["save to folder"] = "In Ordner speichern"; +$a->strings["add star"] = "markieren"; +$a->strings["remove star"] = "Markierung entfernen"; +$a->strings["toggle star status"] = "Markierung umschalten"; +$a->strings["starred"] = "markiert"; +$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["add tag"] = "Tag hinzufügen"; +$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["to"] = "zu"; +$a->strings["via"] = "via"; +$a->strings["Wall-to-Wall"] = "Wall-to-Wall"; +$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:"; +$a->strings["%d comment"] = array( + 0 => "%d Kommentar", + 1 => "%d Kommentare", +); +$a->strings["This is you"] = "Das bist Du"; +$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["Item not available."] = "Beitrag nicht verfügbar."; +$a->strings["Item was not found."] = "Beitrag konnte nicht gefunden werden."; +$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["Your message:"] = "Deine Nachricht:"; +$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 Gruppe von Kontakten/Freunden anlegen."; +$a->strings["Group Name: "] = "Gruppenname:"; +$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 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["Invalid request identifier."] = "Invalid request identifier."; +$a->strings["Discard"] = "Verwerfen"; +$a->strings["Ignore"] = "Ignorieren"; +$a->strings["System"] = "System"; +$a->strings["Personal"] = "Persönlich"; +$a->strings["Show Ignored Requests"] = "Zeige ignorierte Anfragen"; +$a->strings["Hide Ignored Requests"] = "Verberge ignorierte Anfragen"; +$a->strings["Notification type: "] = "Benachrichtigungstyp: "; +$a->strings["Friend Suggestion"] = "Kontaktvorschlag"; +$a->strings["suggested by %s"] = "vorgeschlagen von %s"; +$a->strings["Hide this contact from others"] = "Verbirg diesen Kontakt von 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? \"Freund\" bedeutet, ihr gegenseitig die Beiträge des Anderen lesen dürft. \"Fan/Verehrer\", das 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? \"Freund\" 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"] = "Freund"; +$a->strings["Sharer"] = "Teilenden"; +$a->strings["Fan/Admirer"] = "Fan/Verehrer"; +$a->strings["Friend/Connect Request"] = "Kontakt-/Freundschaftsanfrage"; +$a->strings["New Follower"] = "Neuer Bewunderer"; +$a->strings["No introductions."] = "Keine Kontaktanfragen."; +$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 now friends with %s"] = "%s ist jetzt mit %s befreundet"; +$a->strings["%s created a new post"] = "%s hat einen neuen Beitrag erstellt"; +$a->strings["%s commented on %s's post"] = "%s hat %ss Beitrag kommentiert"; +$a->strings["No more network notifications."] = "Keine weiteren Netzwerk-Benachrichtigungen."; +$a->strings["Network Notifications"] = "Netzwerk Benachrichtigungen"; +$a->strings["No more system notifications."] = "Keine weiteren Systembenachrichtigungen."; +$a->strings["System Notifications"] = "Systembenachrichtigungen"; +$a->strings["No more personal notifications."] = "Keine weiteren persönlichen Benachrichtigungen"; +$a->strings["Personal Notifications"] = "Persönliche Benachrichtigungen"; +$a->strings["No more home notifications."] = "Keine weiteren Pinnwand-Benachrichtigungen"; +$a->strings["Home Notifications"] = "Pinnwand Benachrichtigungen"; +$a->strings["No profile"] = "Kein Profil"; +$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"; +$a->strings["Failed to connect with email account using the settings provided."] = "Verbindung zum E-Mail-Konto mit den angegebenen Einstellungen nicht möglich."; +$a->strings["Email settings updated."] = "E-Mail Einstellungen bearbeitet."; +$a->strings["Features updated"] = "Features aktualisiert"; +$a->strings["Relocate message has been send to your contacts"] = "Die Umzugsbenachrichtigung wurde an Deine Kontakte versendet."; +$a->strings["Passwords do not match. Password unchanged."] = "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert."; +$a->strings["Empty passwords are not allowed. Password unchanged."] = "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert."; +$a->strings["Wrong password."] = "Falsches Passwort."; +$a->strings["Password changed."] = "Passwort geändert."; +$a->strings["Password update failed. Please try again."] = "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal."; +$a->strings[" Please use a shorter name."] = " Bitte verwende einen kürzeren Namen."; +$a->strings[" Name too short."] = " Name ist zu kurz."; +$a->strings["Wrong Password"] = "Falsches Passwort"; +$a->strings[" Not valid email."] = " Keine gültige E-Mail."; +$a->strings[" Cannot change to that email."] = "Ändern der E-Mail nicht möglich. "; +$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Für das private Forum sind keine Zugriffsrechte eingestellt. Die voreingestellte Gruppe für neue Kontakte wird benutzt."; +$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Für das private Forum sind keine Zugriffsrechte eingestellt, und es gibt keine voreingestellte Gruppe für neue Kontakte."; +$a->strings["Settings updated."] = "Einstellungen aktualisiert."; +$a->strings["Add application"] = "Programm hinzufügen"; +$a->strings["Save Settings"] = "Einstellungen speichern"; +$a->strings["Name"] = "Name"; +$a->strings["Consumer Key"] = "Consumer Key"; +$a->strings["Consumer Secret"] = "Consumer Secret"; +$a->strings["Redirect"] = "Umleiten"; +$a->strings["Icon url"] = "Icon URL"; +$a->strings["You can't edit this application."] = "Du kannst dieses Programm nicht bearbeiten."; +$a->strings["Connected Apps"] = "Verbundene Programme"; +$a->strings["Client key starts with"] = "Anwenderschlüssel beginnt mit"; +$a->strings["No name"] = "Kein Name"; +$a->strings["Remove authorization"] = "Autorisierung entziehen"; +$a->strings["No Plugin settings configured"] = "Keine Plugin-Einstellungen konfiguriert"; +$a->strings["Plugin Settings"] = "Plugin-Einstellungen"; +$a->strings["Off"] = "Aus"; +$a->strings["On"] = "An"; +$a->strings["Additional Features"] = "Zusätzliche Features"; +$a->strings["Built-in support for %s connectivity is %s"] = "Eingebaute Unterstützung für Verbindungen zu %s ist %s"; +$a->strings["enabled"] = "eingeschaltet"; +$a->strings["disabled"] = "ausgeschaltet"; +$a->strings["StatusNet"] = "StatusNet"; +$a->strings["Email access is disabled on this site."] = "Zugriff auf E-Mails für diese Seite deaktiviert."; +$a->strings["Email/Mailbox Setup"] = "E-Mail/Postfach-Einstellungen"; +$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Wenn Du mit E-Mail-Kontakten über diesen Service kommunizieren möchtest (optional), gib bitte die Einstellungen für Dein Postfach an."; +$a->strings["Last successful email check:"] = "Letzter erfolgreicher E-Mail Check"; +$a->strings["IMAP server name:"] = "IMAP-Server-Name:"; +$a->strings["IMAP port:"] = "IMAP-Port:"; +$a->strings["Security:"] = "Sicherheit:"; +$a->strings["None"] = "Keine"; +$a->strings["Email login name:"] = "E-Mail-Login-Name:"; +$a->strings["Email password:"] = "E-Mail-Passwort:"; +$a->strings["Reply-to address:"] = "Reply-to Adresse:"; +$a->strings["Send public posts to all email contacts:"] = "Sende öffentliche Beiträge an alle E-Mail-Kontakte:"; +$a->strings["Action after import:"] = "Aktion nach Import:"; +$a->strings["Mark as seen"] = "Als gelesen markieren"; +$a->strings["Move to folder"] = "In einen Ordner verschieben"; +$a->strings["Move to folder:"] = "In diesen Ordner verschieben:"; +$a->strings["No special theme for mobile devices"] = "Kein spezielles Theme für mobile Geräte verwenden."; +$a->strings["Display Settings"] = "Anzeige-Einstellungen"; +$a->strings["Display Theme:"] = "Theme:"; +$a->strings["Mobile Theme:"] = "Mobiles Theme"; +$a->strings["Update browser every xx seconds"] = "Browser alle xx Sekunden aktualisieren"; +$a->strings["Minimum of 10 seconds, no maximum"] = "Minimal 10 Sekunden, kein Maximum"; +$a->strings["Number of items to display per page:"] = "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: "; +$a->strings["Maximum of 100 items"] = "Maximal 100 Beiträge"; +$a->strings["Number of items to display per page when viewed from mobile device:"] = "Zahl der Beiträge, die pro Netzwerkseite auf mobilen Geräten angezeigt werden sollen:"; +$a->strings["Don't show emoticons"] = "Keine Smilies anzeigen"; +$a->strings["Don't show notices"] = "Info-Popups nicht anzeigen"; +$a->strings["Infinite scroll"] = "Endloses Scrollen"; +$a->strings["Automatic updates only at the top of the network page"] = "Automatische Updates nur, wenn Du oben auf der Netzwerkseite bist."; +$a->strings["User Types"] = "Nutzer Art"; +$a->strings["Community Types"] = "Gemeinschafts Art"; +$a->strings["Normal Account Page"] = "Normales Konto"; +$a->strings["This account is a normal personal profile"] = "Dieses Konto ist ein normales persönliches Profil"; +$a->strings["Soapbox Page"] = "Marktschreier-Konto"; +$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert"; +$a->strings["Community Forum/Celebrity Account"] = "Forum/Promi-Konto"; +$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Kontaktanfragen werden automatisch als Lese-und-Schreib-Fans akzeptiert"; +$a->strings["Automatic Friend Page"] = "Automatische Freunde Seite"; +$a->strings["Automatically approve all connection/friend requests as friends"] = "Kontaktanfragen werden automatisch als Freund akzeptiert"; +$a->strings["Private Forum [Experimental]"] = "Privates Forum [Versuchsstadium]"; +$a->strings["Private forum - approved members only"] = "Privates Forum, nur für Mitglieder"; +$a->strings["OpenID:"] = "OpenID:"; +$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Optional) Erlaube die Anmeldung für dieses Konto mit dieser OpenID."; +$a->strings["Publish your default profile in your local site directory?"] = "Darf Dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?"; +$a->strings["No"] = "Nein"; +$a->strings["Publish your default profile in the global social directory?"] = "Darf Dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?"; +$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?"; +$a->strings["If enabled, posting public messages to Diaspora and other networks isn't possible."] = "Wenn aktiviert, ist das senden öffentliche Nachrichten zu Diaspora und anderen Netzwerken nicht möglich"; +$a->strings["Allow friends to post to your profile page?"] = "Dürfen Deine Kontakte auf Deine Pinnwand schreiben?"; +$a->strings["Allow friends to tag your posts?"] = "Dürfen Deine Kontakte Deine Beiträge mit Schlagwörtern versehen?"; +$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Dürfen wir Dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?"; +$a->strings["Permit unknown people to send you private mail?"] = "Dürfen Dir Unbekannte private Nachrichten schicken?"; +$a->strings["Profile is not published."] = "Profil ist nicht veröffentlicht."; +$a->strings["or"] = "oder"; +$a->strings["Your Identity Address is"] = "Die Adresse Deines Profils lautet:"; +$a->strings["Automatically expire posts after this many days:"] = "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:"; +$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Wenn leer verfallen Beiträge nie automatisch. Verfallene Beiträge werden gelöscht."; +$a->strings["Advanced expiration settings"] = "Erweiterte Verfallseinstellungen"; +$a->strings["Advanced Expiration"] = "Erweitertes Verfallen"; +$a->strings["Expire posts:"] = "Beiträge verfallen lassen:"; +$a->strings["Expire personal notes:"] = "Persönliche Notizen verfallen lassen:"; +$a->strings["Expire starred posts:"] = "Markierte Beiträge verfallen lassen:"; +$a->strings["Expire photos:"] = "Fotos verfallen lassen:"; +$a->strings["Only expire posts by others:"] = "Nur Beiträge anderer verfallen:"; +$a->strings["Account Settings"] = "Kontoeinstellungen"; +$a->strings["Password Settings"] = "Passwort-Einstellungen"; +$a->strings["New Password:"] = "Neues Passwort:"; +$a->strings["Confirm:"] = "Bestätigen:"; +$a->strings["Leave password fields blank unless changing"] = "Lass die Passwort-Felder leer, außer Du willst das Passwort ändern"; +$a->strings["Current Password:"] = "Aktuelles Passwort:"; +$a->strings["Your current password to confirm the changes"] = "Dein aktuelles Passwort um die Änderungen zu bestätigen"; +$a->strings["Password:"] = "Passwort:"; +$a->strings["Basic Settings"] = "Grundeinstellungen"; +$a->strings["Email Address:"] = "E-Mail-Adresse:"; +$a->strings["Your Timezone:"] = "Deine Zeitzone:"; +$a->strings["Default Post Location:"] = "Standardstandort:"; +$a->strings["Use Browser Location:"] = "Standort des Browsers verwenden:"; +$a->strings["Security and Privacy Settings"] = "Sicherheits- und Privatsphäre-Einstellungen"; +$a->strings["Maximum Friend Requests/Day:"] = "Maximale Anzahl von Freundschaftsanfragen/Tag:"; +$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"; +$a->strings["Maximum private messages per day from unknown people:"] = "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:"; +$a->strings["Notification Settings"] = "Benachrichtigungseinstellungen"; +$a->strings["By default post a status message when:"] = "Standardmäßig eine Statusnachricht posten, wenn:"; +$a->strings["accepting a friend request"] = "– Du eine Kontaktanfrage akzeptierst"; +$a->strings["joining a forum/community"] = "– Du einem Forum/einer Gemeinschaftsseite beitrittst"; +$a->strings["making an interesting profile change"] = "– Du eine interessante Änderung an Deinem Profil durchführst"; +$a->strings["Send a notification email when:"] = "Benachrichtigungs-E-Mail senden wenn:"; +$a->strings["You receive an introduction"] = "– Du eine Kontaktanfrage erhältst"; +$a->strings["Your introductions are confirmed"] = "– eine Deiner Kontaktanfragen akzeptiert wurde"; +$a->strings["Someone writes on your profile wall"] = "– jemand etwas auf Deine Pinnwand schreibt"; +$a->strings["Someone writes a followup comment"] = "– jemand auch einen Kommentar verfasst"; +$a->strings["You receive a private message"] = "– Du eine private Nachricht erhältst"; +$a->strings["You receive a friend suggestion"] = "– Du eine Empfehlung erhältst"; +$a->strings["You are tagged in a post"] = "– Du in einem Beitrag erwähnt wirst"; +$a->strings["You are poked/prodded/etc. in a post"] = "– Du von jemandem angestupst oder sonstwie behandelt wirst"; +$a->strings["Text-only notification emails"] = "Benachrichtigungs E-Mail als Rein-Text."; +$a->strings["Send text only notification emails, without the html part"] = "Sende Benachrichtigungs E-Mail als Rein-Text - ohne HTML-Teil"; +$a->strings["Advanced Account/Page Type Settings"] = "Erweiterte Konto-/Seitentyp-Einstellungen"; +$a->strings["Change the behaviour of this account for special situations"] = "Verhalten dieses Kontos in bestimmten Situationen:"; +$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["Common Friends"] = "Gemeinsame Freunde"; +$a->strings["No contacts in common."] = "Keine gemeinsamen Kontakte."; +$a->strings["Remote privacy information not available."] = "Entfernte Privatsphäreneinstellungen nicht verfügbar."; +$a->strings["Visible to:"] = "Sichtbar für:"; $a->strings["%d contact edited."] = array( 0 => "%d Kontakt bearbeitet.", 1 => "%d Kontakte bearbeitet", @@ -13,7 +963,6 @@ $a->strings["Could not access contact record."] = "Konnte nicht auf die Kontaktd $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["Permission denied."] = "Zugriff verweigert."; $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"; @@ -21,8 +970,6 @@ $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["Do you really want to delete this contact?"] = "Möchtest Du wirklich diesen Kontakt löschen?"; -$a->strings["Yes"] = "Ja"; -$a->strings["Cancel"] = "Abbrechen"; $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"; @@ -33,16 +980,11 @@ $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["%d contact in common"] = array( - 0 => "%d gemeinsamer Kontakt", - 1 => "%d gemeinsame Kontakte", -); $a->strings["View all contacts"] = "Alle Kontakte anzeigen"; $a->strings["Unblock"] = "Entsperren"; $a->strings["Block"] = "Sperren"; $a->strings["Toggle Blocked status"] = "Geblockt-Status ein-/ausschalten"; $a->strings["Unignore"] = "Ignorieren aufheben"; -$a->strings["Ignore"] = "Ignorieren"; $a->strings["Toggle Ignored status"] = "Ignoriert-Status ein-/ausschalten"; $a->strings["Unarchive"] = "Aus Archiv zurückholen"; $a->strings["Archive"] = "Archivieren"; @@ -50,8 +992,11 @@ $a->strings["Toggle Archive status"] = "Archiviert-Status ein-/ausschalten"; $a->strings["Repair"] = "Reparieren"; $a->strings["Advanced Contact Settings"] = "Fortgeschrittene Kontakteinstellungen"; $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 Editor"] = "Kontakt Editor"; -$a->strings["Submit"] = "Senden"; $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"; @@ -68,19 +1013,13 @@ $a->strings["Update now"] = "Jetzt aktualisieren"; $a->strings["Currently blocked"] = "Derzeit geblockt"; $a->strings["Currently ignored"] = "Derzeit ignoriert"; $a->strings["Currently archived"] = "Momentan archiviert"; -$a->strings["Hide this contact from others"] = "Verbirg diesen Kontakt von anderen"; $a->strings["Replies/likes to your public posts may still be visible"] = "Antworten/Likes auf deine öffentlichen Beiträge könnten 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["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["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["Suggestions"] = "Kontaktvorschläge"; $a->strings["Suggest potential friends"] = "Freunde vorschlagen"; -$a->strings["All Contacts"] = "Alle Kontakte"; $a->strings["Show all contacts"] = "Alle Kontakte anzeigen"; $a->strings["Unblocked"] = "Ungeblockt"; $a->strings["Only show unblocked contacts"] = "Nur nicht-blockierte Kontakte anzeigen"; @@ -96,309 +1035,116 @@ $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["Edit contact"] = "Kontakt bearbeiten"; -$a->strings["Contacts"] = "Kontakte"; $a->strings["Search your contacts"] = "Suche in deinen Kontakten"; $a->strings["Finding: "] = "Funde: "; -$a->strings["Find"] = "Finde"; -$a->strings["Update"] = "Aktualisierungen"; -$a->strings["Delete"] = "Löschen"; -$a->strings["No profile"] = "Kein Profil"; -$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["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 %d"] = "Die Datei ist größer als das erlaubte Limit von %d"; +$a->strings["File upload failed."] = "Hochladen der Datei fehlgeschlagen."; +$a->strings["[Embedded content - reload page to view]"] = "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]"; +$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["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:
login: %s
password: %s

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["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): "; +$a->strings["Include your profile in member directory?"] = "Soll Dein Profil im Nutzerverzeichnis angezeigt werden?"; +$a->strings["Membership on this site is by invitation only."] = "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."; +$a->strings["Your invitation ID: "] = "ID Deiner Einladung: "; +$a->strings["Registration"] = "Registrierung"; +$a->strings["Your Full Name (e.g. Joe Smith): "] = "Vollständiger Name (z.B. Max Mustermann): "; +$a->strings["Your Email Address: "] = "Deine E-Mail-Adresse: "; +$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Wähle einen Spitznamen für Dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse Deines Profils auf dieser Seite wird 'spitzname@\$sitename' 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["Post successful."] = "Beitrag erfolgreich veröffentlicht."; -$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["Profile"] = "Profil"; -$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["Item not found."] = "Beitrag nicht gefunden."; -$a->strings["Public access denied."] = "Öffentlicher Zugriff verweigert."; +$a->strings["System down for maintenance"] = "System zur Wartung abgeschaltet"; $a->strings["Access to this profile has been restricted."] = "Der Zugriff zu diesem Profil wurde eingeschränkt."; -$a->strings["Item has been removed."] = "Eintrag wurde entfernt."; -$a->strings["Welcome to Friendica"] = "Willkommen bei Friendica"; -$a->strings["New Member Checklist"] = "Checkliste für neue Mitglieder"; -$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Wir möchten Dir einige Tipps und Links anbieten, die Dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für Dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden."; -$a->strings["Getting Started"] = "Einstieg"; -$a->strings["Friendica Walk-Through"] = "Friendica Rundgang"; -$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Auf der Quick Start Seite findest Du eine kurze Einleitung in die einzelnen Funktionen Deines Profils und die Netzwerk-Reiter, wo Du interessante Foren findest und neue Kontakte knüpfst."; -$a->strings["Settings"] = "Einstellungen"; -$a->strings["Go to Your Settings"] = "Gehe zu deinen Einstellungen"; -$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Ändere bitte unter Einstellungen dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Freundschaften mit anderen im Friendica Netzwerk zu schliessen."; -$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn Du Dein Profil nicht veröffentlichst, ist das als wenn Du Deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest Du es veröffentlichen - außer all Deine Freunde und potentiellen Freunde wissen genau, wie sie Dich finden können."; -$a->strings["Upload Profile Photo"] = "Profilbild hochladen"; -$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Lade ein Profilbild hoch, falls Du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Freunde zu finden, wenn Du ein Bild von Dir selbst verwendest, als wenn Du dies nicht tust."; -$a->strings["Edit Your Profile"] = "Editiere dein Profil"; -$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Editiere Dein Standard Profil nach Deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen Deiner Freundesliste vor unbekannten Betrachtern des Profils."; -$a->strings["Profile Keywords"] = "Profil Schlüsselbegriffe"; -$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Trage ein paar öffentliche Stichwörter in Dein Standardprofil ein, die Deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die Deine Interessen teilen und können Dir dann Kontakte vorschlagen."; -$a->strings["Connecting"] = "Verbindungen knüpfen"; -$a->strings["Facebook"] = "Facebook"; -$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Richte die Verbindung zu Facebook ein, wenn Du im Augenblick ein Facebook-Konto hast und (optional) Deine Facebook-Freunde und -Unterhaltungen importieren willst."; -$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Wenn dies Dein privater Server ist, könnte die Installation des Facebook Connectors Deinen Umzug ins freie soziale Netz angenehmer gestalten."; -$a->strings["Importing Emails"] = "Emails Importieren"; -$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Gib Deine E-Mail-Zugangsinformationen auf der Connector-Einstellungsseite ein, falls Du E-Mails aus Deinem Posteingang importieren und mit Freunden und Mailinglisten interagieren willst."; -$a->strings["Go to Your Contacts Page"] = "Gehe zu deiner Kontakt-Seite"; -$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = "Die Kontakte-Seite ist die Einstiegsseite, von der aus Du Kontakte verwalten und Dich mit Freunden in anderen Netzwerken verbinden kannst. Normalerweise gibst Du dazu einfach ihre Adresse oder die URL der Seite im Kasten Neuen Kontakt hinzufügen ein."; -$a->strings["Go to Your Site's Directory"] = "Gehe zum Verzeichnis Deiner Friendica Instanz"; -$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "Über die Verzeichnisseite kannst Du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem Verbinden oder Folgen Link auf deren Profilseiten Ausschau und gib Deine eigene Profiladresse an, falls Du danach gefragt wirst."; -$a->strings["Finding New People"] = "Neue Leute kennenlernen"; -$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Freunde zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Freunde vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden."; -$a->strings["Groups"] = "Gruppen"; -$a->strings["Group Your Contacts"] = "Gruppiere deine Kontakte"; -$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Sobald Du einige Freunde gefunden hast, organisiere sie in Gruppen zur privaten Kommunikation im Seitenmenü der Kontakte-Seite. Du kannst dann mit jeder dieser Gruppen von der Netzwerkseite aus privat interagieren."; -$a->strings["Why Aren't My Posts Public?"] = "Warum sind meine Beiträge nicht öffentlich?"; -$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respektiert Deine Privatsphäre. Mit der Grundeinstellung werden Deine Beiträge ausschließlich Deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies Dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch."; -$a->strings["Getting Help"] = "Hilfe bekommen"; -$a->strings["Go to the Help Section"] = "Zum Hilfe Abschnitt gehen"; -$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Unsere Hilfe Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten."; -$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["Login failed."] = "Anmeldung fehlgeschlagen."; -$a->strings["Image uploaded but image cropping failed."] = "Bild hochgeladen, aber das Zuschneiden schlug fehl."; -$a->strings["Profile Photos"] = "Profilbilder"; -$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."; -$a->strings["Unable to process image"] = "Bild konnte nicht verarbeitet werden"; -$a->strings["Image exceeds size limit of %d"] = "Bildgröße überschreitet das Limit von %d"; -$a->strings["Unable to process image."] = "Konnte das Bild nicht bearbeiten."; -$a->strings["Upload File:"] = "Datei hochladen:"; -$a->strings["Select a profile:"] = "Profil auswählen:"; -$a->strings["Upload"] = "Hochladen"; -$a->strings["or"] = "oder"; -$a->strings["skip this step"] = "diesen Schritt überspringen"; -$a->strings["select a photo from your photo albums"] = "wähle ein Foto aus deinen Fotoalben"; -$a->strings["Crop Image"] = "Bild zurechtschneiden"; -$a->strings["Please adjust the image cropping for optimum viewing."] = "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann."; -$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["photo"] = "Foto"; -$a->strings["status"] = "Status"; -$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt %2\$s %3\$s"; -$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["Save to Folder:"] = "In diesem Ordner speichern:"; -$a->strings["- select -"] = "- auswählen -"; -$a->strings["Save"] = "Speichern"; -$a->strings["Contact added"] = "Kontakt hinzugefügt"; -$a->strings["Unable to locate original post."] = "Konnte den Originalbeitrag nicht finden."; -$a->strings["Empty post discarded."] = "Leerer Beitrag wurde verworfen."; -$a->strings["Wall Photos"] = "Pinnwand-Bilder"; -$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["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 Gruppe von Kontakten/Freunden anlegen."; -$a->strings["Group Name: "] = "Gruppenname:"; -$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["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["Profile not found."] = "Profil nicht gefunden."; -$a->strings["Contact not found."] = "Kontakt 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["%1\$s is now friends with %2\$s"] = "%1\$s ist nun mit %2\$s befreundet"; -$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["[Name Withheld]"] = "[Name unterdrückt]"; -$a->strings["%1\$s has joined %2\$s"] = "%1\$s ist %2\$s beigetreten"; -$a->strings["Requested profile is not available."] = "Das angefragte Profil ist nicht vorhanden."; $a->strings["Tips for New Members"] = "Tipps für neue Nutzer"; +$a->strings["Public access denied."] = "Öffentlicher Zugriff verweigert."; $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 Video"] = "Video ansehen"; $a->strings["View Album"] = "Album betrachten"; $a->strings["Recent Videos"] = "Neueste Videos"; $a->strings["Upload New Videos"] = "Neues Video hochladen"; -$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s hat %2\$ss %3\$s mit %4\$s getaggt"; +$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["Item not found"] = "Beitrag nicht gefunden"; +$a->strings["Edit post"] = "Beitrag bearbeiten"; +$a->strings["People Search"] = "Personensuche"; +$a->strings["No matches"] = "Keine Übereinstimmungen"; +$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["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 Freundschaftsanfragen 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["Unable to resolve your name at the provided location."] = "Konnte Deinen Namen an der angegebenen Stelle nicht finden."; +$a->strings["You have already introduced yourself here."] = "Du hast Dich hier bereits vorgestellt."; +$a->strings["Apparently you are already friends with %s."] = "Es scheint so, als ob Du bereits mit %s befreundet bist."; +$a->strings["Invalid profile URL."] = "Ungültige Profil-URL."; +$a->strings["Your introduction has been sent."] = "Deine Kontaktanfrage wurde gesendet."; +$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 this profile."] = "Momentan bist Du mit einer anderen Identität angemeldet. Bitte melde Dich mit diesem Profil an."; +$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, follow this link to find a public Friendica site and join us today."] = "Wenn Du noch kein Mitglied dieses freien sozialen Netzwerks bist, folge diesem Link um einen öffentlichen Friendica-Server zu finden und beizutreten."; +$a->strings["Friend/Connection Request"] = "Freundschafts-/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["Files"] = "Dateien"; +$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["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["Contacts who are not members of a group"] = "Kontakte, die keiner Gruppe zugewiesen sind"; +$a->strings["Contact not found."] = "Kontakt nicht gefunden."; $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["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 Settings page after successful login."] = "Du kannst das Passwort in den Einstellungen ä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["%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["{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["{0} commented %s's post"] = "{0} kommentierte einen Beitrag von %s"; -$a->strings["{0} liked %s's post"] = "{0} mag %ss Beitrag"; -$a->strings["{0} disliked %s's post"] = "{0} mag %ss Beitrag nicht"; -$a->strings["{0} is now friends with %s"] = "{0} ist jetzt mit %s befreundet"; -$a->strings["{0} posted"] = "{0} hat etwas veröffentlicht"; -$a->strings["{0} tagged %s's post with #%s"] = "{0} hat %ss Beitrag mit dem Schlagwort #%s versehen"; -$a->strings["{0} mentioned you in a post"] = "{0} hat Dich in einem Beitrag erwähnt"; +$a->strings["link"] = "Link"; $a->strings["No contacts."] = "Keine Kontakte."; -$a->strings["View Contacts"] = "Kontakte anzeigen"; -$a->strings["Invalid request identifier."] = "Invalid request identifier."; -$a->strings["Discard"] = "Verwerfen"; -$a->strings["System"] = "System"; -$a->strings["Network"] = "Netzwerk"; -$a->strings["Personal"] = "Persönlich"; -$a->strings["Home"] = "Pinnwand"; -$a->strings["Introductions"] = "Kontaktanfragen"; -$a->strings["Show Ignored Requests"] = "Zeige ignorierte Anfragen"; -$a->strings["Hide Ignored Requests"] = "Verberge ignorierte Anfragen"; -$a->strings["Notification type: "] = "Benachrichtigungstyp: "; -$a->strings["Friend Suggestion"] = "Kontaktvorschlag"; -$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["Approve"] = "Genehmigen"; -$a->strings["Claims to be known to you: "] = "Behauptet Dich zu kennen: "; -$a->strings["yes"] = "ja"; -$a->strings["no"] = "nein"; -$a->strings["Approve as: "] = "Genehmigen als: "; -$a->strings["Friend"] = "Freund"; -$a->strings["Sharer"] = "Teilenden"; -$a->strings["Fan/Admirer"] = "Fan/Verehrer"; -$a->strings["Friend/Connect Request"] = "Kontakt-/Freundschaftsanfrage"; -$a->strings["New Follower"] = "Neuer Bewunderer"; -$a->strings["No introductions."] = "Keine Kontaktanfragen."; -$a->strings["Notifications"] = "Benachrichtigungen"; -$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 now friends with %s"] = "%s ist jetzt mit %s befreundet"; -$a->strings["%s created a new post"] = "%s hat einen neuen Beitrag erstellt"; -$a->strings["%s commented on %s's post"] = "%s hat %ss Beitrag kommentiert"; -$a->strings["No more network notifications."] = "Keine weiteren Netzwerk-Benachrichtigungen."; -$a->strings["Network Notifications"] = "Netzwerk Benachrichtigungen"; -$a->strings["No more system notifications."] = "Keine weiteren Systembenachrichtigungen."; -$a->strings["System Notifications"] = "Systembenachrichtigungen"; -$a->strings["No more personal notifications."] = "Keine weiteren persönlichen Benachrichtigungen"; -$a->strings["Personal Notifications"] = "Persönliche Benachrichtigungen"; -$a->strings["No more home notifications."] = "Keine weiteren Pinnwand-Benachrichtigungen"; -$a->strings["Home Notifications"] = "Pinnwand Benachrichtigungen"; -$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["Nothing new here"] = "Keine Neuigkeiten"; -$a->strings["Clear notifications"] = "Bereinige Benachrichtigungen"; -$a->strings["New Message"] = "Neue Nachricht"; -$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["Messages"] = "Nachrichten"; -$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["Please enter a link URL:"] = "Bitte gib die URL des Links ein:"; -$a->strings["Send Private Message"] = "Private Nachricht senden"; -$a->strings["To:"] = "An:"; -$a->strings["Subject:"] = "Betreff:"; -$a->strings["Your message:"] = "Deine Nachricht:"; -$a->strings["Upload photo"] = "Foto hochladen"; -$a->strings["Insert web link"] = "Einen Link einfügen"; -$a->strings["Please wait"] = "Bitte warten"; -$a->strings["No messages."] = "Keine Nachrichten."; -$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["Delete conversation"] = "Unterhaltung löschen"; -$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["Message not available."] = "Nachricht nicht verfügbar."; -$a->strings["Delete message"] = "Nachricht löschen"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Sichere Kommunikation ist nicht verfügbar. Eventuell kannst Du auf der Profilseite des Absenders antworten."; -$a->strings["Send Reply"] = "Antwort senden"; -$a->strings["[Embedded content - reload page to view]"] = "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]"; -$a->strings["Contact settings applied."] = "Einstellungen zum Kontakt angewandt."; -$a->strings["Contact update failed."] = "Konnte den Kontakt nicht aktualisieren."; -$a->strings["Repair Contact Settings"] = "Kontakteinstellungen reparieren"; -$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ACHTUNG: Das sind Experten-Einstellungen! Wenn Du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr."; -$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Bitte nutze den Zurück-Button Deines Browsers jetzt, wenn Du Dir unsicher bist, was Du tun willst."; -$a->strings["Return to contact editor"] = "Zurück zum Kontakteditor"; -$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["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 Freundschaftsanfragen"; -$a->strings["Friend Confirm URL"] = "URL für Bestätigungen von Freundschaftsanfragen"; -$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["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["Login"] = "Anmeldung"; -$a->strings["The post was created"] = "Der Beitrag wurde angelegt"; -$a->strings["Access denied."] = "Zugriff verweigert."; -$a->strings["People Search"] = "Personensuche"; -$a->strings["No matches"] = "Keine Übereinstimmungen"; -$a->strings["Photos"] = "Bilder"; -$a->strings["Files"] = "Dateien"; -$a->strings["Contacts who are not members of a group"] = "Kontakte, die keiner Gruppe zugewiesen sind"; $a->strings["Theme settings updated."] = "Themeneinstellungen aktualisiert."; $a->strings["Site"] = "Seite"; $a->strings["Users"] = "Nutzer"; -$a->strings["Plugins"] = "Plugins"; $a->strings["Themes"] = "Themen"; $a->strings["DB updates"] = "DB Updates"; $a->strings["Logs"] = "Protokolle"; $a->strings["probe address"] = "Adresse untersuchen"; $a->strings["check webfinger"] = "Webfinger überprüfen"; -$a->strings["Admin"] = "Administration"; $a->strings["Plugin Features"] = "Plugin Features"; $a->strings["diagnostics"] = "Diagnose"; $a->strings["User registrations waiting for confirmation"] = "Nutzeranmeldungen die auf Bestätigung warten"; @@ -417,15 +1163,10 @@ $a->strings["Version"] = "Version"; $a->strings["Active plugins"] = "Aktive Plugins"; $a->strings["Can not parse base url. Must have at least ://"] = "Die Basis-URL konnte nicht analysiert werden. Sie muss mindestens aus :// bestehen"; $a->strings["Site settings updated."] = "Seiteneinstellungen aktualisiert."; -$a->strings["No special theme for mobile devices"] = "Kein spezielles Theme für mobile Geräte verwenden."; $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["At post arrival"] = "Beim Empfang von Nachrichten"; -$a->strings["Frequently"] = "immer wieder"; -$a->strings["Hourly"] = "Stündlich"; -$a->strings["Twice daily"] = "Zweimal täglich"; -$a->strings["Daily"] = "Täglich"; $a->strings["Multi user instance"] = "Mehrbenutzer Instanz"; $a->strings["Closed"] = "Geschlossen"; $a->strings["Requires approval"] = "Bedarf der Zustimmung"; @@ -433,8 +1174,6 @@ $a->strings["Open"] = "Offen"; $a->strings["No SSL policy, links will track page SSL state"] = "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten"; $a->strings["Force all links to use SSL"] = "SSL für alle Links erzwingen"; $a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Selbst-unterzeichnetes Zertifikat, SSL nur für lokale Links verwenden (nicht empfohlen)"; -$a->strings["Save Settings"] = "Einstellungen speichern"; -$a->strings["Registration"] = "Registrierung"; $a->strings["File upload"] = "Datei hochladen"; $a->strings["Policies"] = "Regeln"; $a->strings["Advanced"] = "Erweitert"; @@ -566,7 +1305,6 @@ $a->strings["Mark success (if update was manually applied)"] = "Als erfolgreich $a->strings["Attempt to execute this update step automatically"] = "Versuchen, diesen Schritt automatisch auszuführen"; $a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tthe administrator of %2\$s has set up an account for you."] = "\nHallo %1\$s,\n\nauf %2\$s wurde ein Account für Dich angelegt."; $a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t\t%2\$s\n\t\t\tPassword:\t\t%3\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tThank you and welcome to %4\$s."] = "\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."; -$a->strings["Registration details for %s"] = "Details der Registration von %s"; $a->strings["%s user blocked/unblocked"] = array( 0 => "%s Benutzer geblockt/freigegeben", 1 => "%s Benutzer geblockt/freigegeben", @@ -583,7 +1321,6 @@ $a->strings["select all"] = "Alle auswählen"; $a->strings["User registrations waiting for confirm"] = "Neuanmeldungen, die auf Deine Bestätigung warten"; $a->strings["User waiting for permanent deletion"] = "Nutzer wartet auf permanente Löschung"; $a->strings["Request date"] = "Anfragedatum"; -$a->strings["Email"] = "E-Mail"; $a->strings["No registrations."] = "Keine Neuanmeldungen."; $a->strings["Deny"] = "Verwehren"; $a->strings["Site admin"] = "Seitenadministrator"; @@ -593,7 +1330,6 @@ $a->strings["Register date"] = "Anmeldedatum"; $a->strings["Last login"] = "Letzte Anmeldung"; $a->strings["Last item"] = "Letzter Beitrag"; $a->strings["Deleted since"] = "Gelöscht seit"; -$a->strings["Account"] = "Nutzerkonto"; $a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "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?"; $a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Der Nutzer {0} wird gelöscht!\\n\\nAlles was dieser Nutzer auf dieser Seite veröffentlicht hat, wird permanent gelöscht!\\n\\nBist Du sicher?"; $a->strings["Name of the new user."] = "Name des neuen Nutzers"; @@ -622,10 +1358,14 @@ $a->strings["FTP Host"] = "FTP Host"; $a->strings["FTP Path"] = "FTP Pfad"; $a->strings["FTP User"] = "FTP Nutzername"; $a->strings["FTP Password"] = "FTP Passwort"; +$a->strings["Image exceeds size limit of %d"] = "Bildgröße überschreitet das Limit von %d"; +$a->strings["Unable to process image."] = "Konnte das Bild nicht bearbeiten."; +$a->strings["Image upload failed."] = "Hochladen des Bildes gescheitert."; +$a->strings["Welcome to %s"] = "Willkommen zu %s"; +$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["Search Results For:"] = "Suchergebnisse für:"; $a->strings["Remove term"] = "Begriff entfernen"; -$a->strings["Saved Searches"] = "Gespeicherte Suchen"; -$a->strings["add"] = "hinzufügen"; $a->strings["Commented Order"] = "Neueste Kommentare"; $a->strings["Sort by Comment Date"] = "Nach Kommentardatum sortieren"; $a->strings["Posted Order"] = "Neueste Beiträge"; @@ -648,13 +1388,132 @@ $a->strings["Group: "] = "Gruppe: "; $a->strings["Contact: "] = "Kontakt: "; $a->strings["Private messages to this person are at risk of public disclosure."] = "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen."; $a->strings["Invalid contact."] = "Ungültiger Kontakt."; -$a->strings["Friends of %s"] = "Freunde von %s"; -$a->strings["No friends to display."] = "Keine Freunde zum Anzeigen."; +$a->strings["- select -"] = "- auswählen -"; +$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 Friendica.com to learn more about the Friendica project."] = "Bitte besuche Friendica.com, um mehr über das Friendica Projekt zu erfahren."; +$a->strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche"; +$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com"; +$a->strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Erweiterungen/Apps"; +$a->strings["No installed plugins/addons/apps"] = "Keine Plugins/Erweiterungen/Apps installiert"; +$a->strings["Applications"] = "Anwendungen"; +$a->strings["No installed applications."] = "Keine Applikationen installiert."; +$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 exceeds size limit of "] = "Die Bildgröße übersteigt das Limit von "; +$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["Permissions"] = "Berechtigungen"; +$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["Rotate CW (right)"] = "Drehen US (rechts)"; +$a->strings["Rotate CCW (left)"] = "Drehen EUS (links)"; +$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["Private photo"] = "Privates Foto"; +$a->strings["Public photo"] = "Öffentliches Foto"; +$a->strings["Recent Photos"] = "Neueste Fotos"; +$a->strings["The post was created"] = "Der Beitrag wurde angelegt"; +$a->strings["Contact added"] = "Kontakt hinzugefügt"; +$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 Freunde darüber zu informieren, dass Du hierher umgezogen bist."; +$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (statusnet/identi.ca) 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["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"; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite."; +$a->strings["%s : Message delivery failed."] = "%s: Zustellung der Nachricht fehlgeschlagen."; +$a->strings["%d message sent."] = array( + 0 => "%d Nachricht gesendet.", + 1 => "%d Nachrichten gesendet.", +); +$a->strings["You have no more invitations available"] = "Du hast keine weiteren Einladungen"; +$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Besuche %s für eine Liste der öffentlichen Server, denen Du beitreten kannst. Friendica Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer Sozialer Netzwerke."; +$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere Dich bitte bei %s oder einer anderen öffentlichen Friendica Website."; +$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen Du beitreten kannst."; +$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen."; +$a->strings["Send invitations"] = "Einladungen senden"; +$a->strings["Enter email addresses, one per line:"] = "E-Mail-Adressen eingeben, eine pro Zeile:"; +$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Du bist herzlich dazu eingeladen, Dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen."; +$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["Access denied."] = "Zugriff verweigert."; +$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["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 Settings page after successful login."] = "Du kannst das Passwort in den Einstellungen ä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["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["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 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["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["Profile Match"] = "Profilübereinstimmungen"; +$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["Event title and start time are required."] = "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden."; $a->strings["l, F j"] = "l, F j"; $a->strings["Edit event"] = "Veranstaltung bearbeiten"; -$a->strings["link to source"] = "Link zum Originalbeitrag"; -$a->strings["Events"] = "Veranstaltungen"; $a->strings["Create New Event"] = "Neue Veranstaltung erstellen"; $a->strings["Previous"] = "Vorherige"; $a->strings["Next"] = "Nächste"; @@ -667,53 +1526,113 @@ $a->strings["Finish date/time is not known or not relevant"] = "Enddatum/-zeit i $a->strings["Event Finishes:"] = "Veranstaltungsende:"; $a->strings["Adjust for viewer timezone"] = "An Zeitzone des Betrachters anpassen"; $a->strings["Description:"] = "Beschreibung"; -$a->strings["Location:"] = "Ort:"; $a->strings["Title:"] = "Titel:"; $a->strings["Share this event"] = "Veranstaltung teilen"; -$a->strings["Select"] = "Auswählen"; -$a->strings["View %s's profile @ %s"] = "Das Profil von %s auf %s betrachten."; -$a->strings["%s from %s"] = "%s von %s"; -$a->strings["View in context"] = "Im Zusammenhang betrachten"; -$a->strings["%d comment"] = array( - 0 => "%d Kommentar", - 1 => "%d Kommentare", +$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["{0} commented %s's post"] = "{0} kommentierte einen Beitrag von %s"; +$a->strings["{0} liked %s's post"] = "{0} mag %ss Beitrag"; +$a->strings["{0} disliked %s's post"] = "{0} mag %ss Beitrag nicht"; +$a->strings["{0} is now friends with %s"] = "{0} ist jetzt mit %s befreundet"; +$a->strings["{0} posted"] = "{0} hat etwas veröffentlicht"; +$a->strings["{0} tagged %s's post with #%s"] = "{0} hat %ss Beitrag mit dem Schlagwort #%s versehen"; +$a->strings["{0} mentioned you in a post"] = "{0} hat Dich in einem Beitrag erwähnt"; +$a->strings["Mood"] = "Stimmung"; +$a->strings["Set your current mood and tell your friends"] = "Wähle Deine aktuelle Stimmung und erzähle sie Deinen Freunden"; +$a->strings["No results."] = "Keine Ergebnisse."; +$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["Unknown sender - %s"] = "'Unbekannter Absender - %s"; +$a->strings["You and %s"] = "Du und %s"; +$a->strings["%s and You"] = "%s und Du"; +$a->strings["Delete conversation"] = "Unterhaltung löschen"; +$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["comment"] = array( - 0 => "Kommentar", - 1 => "Kommentare", -); -$a->strings["show more"] = "mehr anzeigen"; -$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["Preview"] = "Vorschau"; -$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["save to folder"] = "In Ordner speichern"; -$a->strings["to"] = "zu"; -$a->strings["Wall-to-Wall"] = "Wall-to-Wall"; -$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:"; -$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["Message not available."] = "Nachricht nicht verfügbar."; +$a->strings["Delete message"] = "Nachricht löschen"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Sichere Kommunikation ist nicht verfügbar. Eventuell kannst Du auf der Profilseite des Absenders antworten."; +$a->strings["Send Reply"] = "Antwort senden"; +$a->strings["Not available."] = "Nicht verfügbar."; +$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["Likes"] = "Likes"; +$a->strings["Dislikes"] = "Dislikes"; +$a->strings["Work/Employment"] = "Arbeit / Beschäftigung"; +$a->strings["Religion"] = "Religion"; +$a->strings["Political Views"] = "Politische Ansichten"; +$a->strings["Gender"] = "Geschlecht"; +$a->strings["Sexual Preference"] = "Sexuelle Vorlieben"; +$a->strings["Homepage"] = "Webseite"; +$a->strings["Interests"] = "Interessen"; +$a->strings["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 “%3\$s”"] = "%1\$s hat %2\$s geändert auf “%3\$s”"; +$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["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["Upload Profile Photo"] = "Profilbild hochladen"; +$a->strings["Profile Name:"] = "Profilname:"; +$a->strings["Your Full Name:"] = "Dein kompletter Name:"; +$a->strings["Title/Description:"] = "Titel/Beschreibung:"; +$a->strings["Your Gender:"] = "Dein Geschlecht:"; +$a->strings["Birthday (%s):"] = "Geburtstag (%s):"; +$a->strings["Street Address:"] = "Adresse:"; +$a->strings["Locality/City:"] = "Wohnort:"; +$a->strings["Postal/Zip Code:"] = "Postleitzahl:"; +$a->strings["Country:"] = "Land:"; +$a->strings["Region/State:"] = "Region/Bundesstaat:"; +$a->strings[" Marital Status:"] = " Beziehungsstatus:"; +$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["Homepage URL:"] = "Adresse der Homepage:"; +$a->strings["Religious Views:"] = "Religiöse Ansichten:"; +$a->strings["Public Keywords:"] = "Öffentliche Schlüsselwörter:"; +$a->strings["Private Keywords:"] = "Private Schlüsselwörter:"; +$a->strings["Example: fishing photography software"] = "Beispiel: Fischen Fotografie Software"; +$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Wird verwendet, um potentielle Freunde zu finden, kann von Fremden eingesehen werden)"; +$a->strings["(Used for searching profiles, never shown to others)"] = "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)"; +$a->strings["Tell us about yourself..."] = "Erzähle uns ein bisschen von Dir …"; +$a->strings["Hobbies/Interests"] = "Hobbies/Interessen"; +$a->strings["Contact information and Social Networks"] = "Kontaktinformationen und Soziale Netzwerke"; +$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["Love/romance"] = "Liebe/Romantik"; +$a->strings["Work/employment"] = "Arbeit/Anstellung"; +$a->strings["School/education"] = "Schule/Ausbildung"; +$a->strings["This is your public profile.
It may be visible to anybody using the internet."] = "Dies ist Dein öffentliches Profil.
Es könnte für jeden Nutzer des Internets sichtbar sein."; +$a->strings["Age: "] = "Alter: "; +$a->strings["Edit/Manage Profiles"] = "Bearbeite/Verwalte Profile"; $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."; @@ -775,1023 +1694,113 @@ $a->strings["Url rewrite is working"] = "URL rewrite funktioniert"; $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["

What next

"] = "

Wie geht es weiter?

"; $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["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["Help:"] = "Hilfe:"; -$a->strings["Help"] = "Hilfe"; -$a->strings["Not Found"] = "Nicht gefunden"; -$a->strings["Page not found."] = "Seite nicht gefunden."; +$a->strings["Contact settings applied."] = "Einstellungen zum Kontakt angewandt."; +$a->strings["Contact update failed."] = "Konnte den Kontakt nicht aktualisieren."; +$a->strings["Repair Contact Settings"] = "Kontakteinstellungen reparieren"; +$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ACHTUNG: Das sind Experten-Einstellungen! Wenn Du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr."; +$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Bitte nutze den Zurück-Button Deines Browsers jetzt, wenn Du Dir unsicher bist, was Du tun willst."; +$a->strings["Return to contact editor"] = "Zurück zum Kontakteditor"; +$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["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 Freundschaftsanfragen"; +$a->strings["Friend Confirm URL"] = "URL für Bestätigungen von Freundschaftsanfragen"; +$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["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["Welcome to Friendica"] = "Willkommen bei Friendica"; +$a->strings["New Member Checklist"] = "Checkliste für neue Mitglieder"; +$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Wir möchten Dir einige Tipps und Links anbieten, die Dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für Dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden."; +$a->strings["Getting Started"] = "Einstieg"; +$a->strings["Friendica Walk-Through"] = "Friendica Rundgang"; +$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Auf der Quick Start Seite findest Du eine kurze Einleitung in die einzelnen Funktionen Deines Profils und die Netzwerk-Reiter, wo Du interessante Foren findest und neue Kontakte knüpfst."; +$a->strings["Go to Your Settings"] = "Gehe zu deinen Einstellungen"; +$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Ändere bitte unter Einstellungen dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Freundschaften mit anderen im Friendica Netzwerk zu schliessen."; +$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn Du Dein Profil nicht veröffentlichst, ist das als wenn Du Deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest Du es veröffentlichen - außer all Deine Freunde und potentiellen Freunde wissen genau, wie sie Dich finden können."; +$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Lade ein Profilbild hoch, falls Du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Freunde zu finden, wenn Du ein Bild von Dir selbst verwendest, als wenn Du dies nicht tust."; +$a->strings["Edit Your Profile"] = "Editiere dein Profil"; +$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Editiere Dein Standard Profil nach Deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen Deiner Freundesliste vor unbekannten Betrachtern des Profils."; +$a->strings["Profile Keywords"] = "Profil Schlüsselbegriffe"; +$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Trage ein paar öffentliche Stichwörter in Dein Standardprofil ein, die Deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die Deine Interessen teilen und können Dir dann Kontakte vorschlagen."; +$a->strings["Connecting"] = "Verbindungen knüpfen"; +$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Richte die Verbindung zu Facebook ein, wenn Du im Augenblick ein Facebook-Konto hast und (optional) Deine Facebook-Freunde und -Unterhaltungen importieren willst."; +$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Wenn dies Dein privater Server ist, könnte die Installation des Facebook Connectors Deinen Umzug ins freie soziale Netz angenehmer gestalten."; +$a->strings["Importing Emails"] = "Emails Importieren"; +$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Gib Deine E-Mail-Zugangsinformationen auf der Connector-Einstellungsseite ein, falls Du E-Mails aus Deinem Posteingang importieren und mit Freunden und Mailinglisten interagieren willst."; +$a->strings["Go to Your Contacts Page"] = "Gehe zu deiner Kontakt-Seite"; +$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = "Die Kontakte-Seite ist die Einstiegsseite, von der aus Du Kontakte verwalten und Dich mit Freunden in anderen Netzwerken verbinden kannst. Normalerweise gibst Du dazu einfach ihre Adresse oder die URL der Seite im Kasten Neuen Kontakt hinzufügen ein."; +$a->strings["Go to Your Site's Directory"] = "Gehe zum Verzeichnis Deiner Friendica Instanz"; +$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "Über die Verzeichnisseite kannst Du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem Verbinden oder Folgen Link auf deren Profilseiten Ausschau und gib Deine eigene Profiladresse an, falls Du danach gefragt wirst."; +$a->strings["Finding New People"] = "Neue Leute kennenlernen"; +$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Freunde zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Freunde vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden."; +$a->strings["Group Your Contacts"] = "Gruppiere deine Kontakte"; +$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Sobald Du einige Freunde gefunden hast, organisiere sie in Gruppen zur privaten Kommunikation im Seitenmenü der Kontakte-Seite. Du kannst dann mit jeder dieser Gruppen von der Netzwerkseite aus privat interagieren."; +$a->strings["Why Aren't My Posts Public?"] = "Warum sind meine Beiträge nicht öffentlich?"; +$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respektiert Deine Privatsphäre. Mit der Grundeinstellung werden Deine Beiträge ausschließlich Deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies Dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch."; +$a->strings["Getting Help"] = "Hilfe bekommen"; +$a->strings["Go to the Help Section"] = "Zum Hilfe Abschnitt gehen"; +$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Unsere Hilfe Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten."; +$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["Item has been removed."] = "Eintrag wurde entfernt."; +$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt %2\$s %3\$s"; $a->strings["%1\$s welcomes %2\$s"] = "%1\$s heißt %2\$s herzlich willkommen"; -$a->strings["Welcome to %s"] = "Willkommen zu %s"; -$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 %d"] = "Die Datei ist größer als das erlaubte Limit von %d"; -$a->strings["File upload failed."] = "Hochladen der Datei fehlgeschlagen."; -$a->strings["Profile Match"] = "Profilübereinstimmungen"; -$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["Connect"] = "Verbinden"; -$a->strings["link"] = "Link"; -$a->strings["Not available."] = "Nicht verfügbar."; -$a->strings["Community"] = "Gemeinschaft"; -$a->strings["No results."] = "Keine Ergebnisse."; -$a->strings["everybody"] = "jeder"; -$a->strings["Additional features"] = "Zusätzliche Features"; -$a->strings["Display"] = "Anzeige"; -$a->strings["Social Networks"] = "Soziale Netzwerke"; -$a->strings["Delegations"] = "Delegationen"; -$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["Failed to connect with email account using the settings provided."] = "Verbindung zum E-Mail-Konto mit den angegebenen Einstellungen nicht möglich."; -$a->strings["Email settings updated."] = "E-Mail Einstellungen bearbeitet."; -$a->strings["Features updated"] = "Features aktualisiert"; -$a->strings["Relocate message has been send to your contacts"] = "Die Umzugsbenachrichtigung wurde an Deine Kontakte versendet."; -$a->strings["Passwords do not match. Password unchanged."] = "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert."; -$a->strings["Empty passwords are not allowed. Password unchanged."] = "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert."; -$a->strings["Wrong password."] = "Falsches Passwort."; -$a->strings["Password changed."] = "Passwort geändert."; -$a->strings["Password update failed. Please try again."] = "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal."; -$a->strings[" Please use a shorter name."] = " Bitte verwende einen kürzeren Namen."; -$a->strings[" Name too short."] = " Name ist zu kurz."; -$a->strings["Wrong Password"] = "Falsches Passwort"; -$a->strings[" Not valid email."] = " Keine gültige E-Mail."; -$a->strings[" Cannot change to that email."] = "Ändern der E-Mail nicht möglich. "; -$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Für das private Forum sind keine Zugriffsrechte eingestellt. Die voreingestellte Gruppe für neue Kontakte wird benutzt."; -$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Für das private Forum sind keine Zugriffsrechte eingestellt, und es gibt keine voreingestellte Gruppe für neue Kontakte."; -$a->strings["Settings updated."] = "Einstellungen aktualisiert."; -$a->strings["Add application"] = "Programm hinzufügen"; -$a->strings["Consumer Key"] = "Consumer Key"; -$a->strings["Consumer Secret"] = "Consumer Secret"; -$a->strings["Redirect"] = "Umleiten"; -$a->strings["Icon url"] = "Icon URL"; -$a->strings["You can't edit this application."] = "Du kannst dieses Programm nicht bearbeiten."; -$a->strings["Connected Apps"] = "Verbundene Programme"; -$a->strings["Client key starts with"] = "Anwenderschlüssel beginnt mit"; -$a->strings["No name"] = "Kein Name"; -$a->strings["Remove authorization"] = "Autorisierung entziehen"; -$a->strings["No Plugin settings configured"] = "Keine Plugin-Einstellungen konfiguriert"; -$a->strings["Plugin Settings"] = "Plugin-Einstellungen"; -$a->strings["Off"] = "Aus"; -$a->strings["On"] = "An"; -$a->strings["Additional Features"] = "Zusätzliche Features"; -$a->strings["Built-in support for %s connectivity is %s"] = "Eingebaute Unterstützung für Verbindungen zu %s ist %s"; -$a->strings["Diaspora"] = "Diaspora"; -$a->strings["enabled"] = "eingeschaltet"; -$a->strings["disabled"] = "ausgeschaltet"; -$a->strings["StatusNet"] = "StatusNet"; -$a->strings["Email access is disabled on this site."] = "Zugriff auf E-Mails für diese Seite deaktiviert."; -$a->strings["Email/Mailbox Setup"] = "E-Mail/Postfach-Einstellungen"; -$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Wenn Du mit E-Mail-Kontakten über diesen Service kommunizieren möchtest (optional), gib bitte die Einstellungen für Dein Postfach an."; -$a->strings["Last successful email check:"] = "Letzter erfolgreicher E-Mail Check"; -$a->strings["IMAP server name:"] = "IMAP-Server-Name:"; -$a->strings["IMAP port:"] = "IMAP-Port:"; -$a->strings["Security:"] = "Sicherheit:"; -$a->strings["None"] = "Keine"; -$a->strings["Email login name:"] = "E-Mail-Login-Name:"; -$a->strings["Email password:"] = "E-Mail-Passwort:"; -$a->strings["Reply-to address:"] = "Reply-to Adresse:"; -$a->strings["Send public posts to all email contacts:"] = "Sende öffentliche Beiträge an alle E-Mail-Kontakte:"; -$a->strings["Action after import:"] = "Aktion nach Import:"; -$a->strings["Mark as seen"] = "Als gelesen markieren"; -$a->strings["Move to folder"] = "In einen Ordner verschieben"; -$a->strings["Move to folder:"] = "In diesen Ordner verschieben:"; -$a->strings["Display Settings"] = "Anzeige-Einstellungen"; -$a->strings["Display Theme:"] = "Theme:"; -$a->strings["Mobile Theme:"] = "Mobiles Theme"; -$a->strings["Update browser every xx seconds"] = "Browser alle xx Sekunden aktualisieren"; -$a->strings["Minimum of 10 seconds, no maximum"] = "Minimal 10 Sekunden, kein Maximum"; -$a->strings["Number of items to display per page:"] = "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: "; -$a->strings["Maximum of 100 items"] = "Maximal 100 Beiträge"; -$a->strings["Number of items to display per page when viewed from mobile device:"] = "Zahl der Beiträge, die pro Netzwerkseite auf mobilen Geräten angezeigt werden sollen:"; -$a->strings["Don't show emoticons"] = "Keine Smilies anzeigen"; -$a->strings["Don't show notices"] = "Info-Popups nicht anzeigen"; -$a->strings["Infinite scroll"] = "Endloses Scrollen"; -$a->strings["Automatic updates only at the top of the network page"] = "Automatische Updates nur, wenn Du oben auf der Netzwerkseite bist."; -$a->strings["User Types"] = "Nutzer Art"; -$a->strings["Community Types"] = "Gemeinschafts Art"; -$a->strings["Normal Account Page"] = "Normales Konto"; -$a->strings["This account is a normal personal profile"] = "Dieses Konto ist ein normales persönliches Profil"; -$a->strings["Soapbox Page"] = "Marktschreier-Konto"; -$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert"; -$a->strings["Community Forum/Celebrity Account"] = "Forum/Promi-Konto"; -$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Kontaktanfragen werden automatisch als Lese-und-Schreib-Fans akzeptiert"; -$a->strings["Automatic Friend Page"] = "Automatische Freunde Seite"; -$a->strings["Automatically approve all connection/friend requests as friends"] = "Kontaktanfragen werden automatisch als Freund akzeptiert"; -$a->strings["Private Forum [Experimental]"] = "Privates Forum [Versuchsstadium]"; -$a->strings["Private forum - approved members only"] = "Privates Forum, nur für Mitglieder"; -$a->strings["OpenID:"] = "OpenID:"; -$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Optional) Erlaube die Anmeldung für dieses Konto mit dieser OpenID."; -$a->strings["Publish your default profile in your local site directory?"] = "Darf Dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?"; -$a->strings["No"] = "Nein"; -$a->strings["Publish your default profile in the global social directory?"] = "Darf Dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?"; -$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?"; -$a->strings["Hide your profile details from unknown viewers?"] = "Profil-Details vor unbekannten Betrachtern verbergen?"; -$a->strings["If enabled, posting public messages to Diaspora and other networks isn't possible."] = "Wenn aktiviert, ist das senden öffentliche Nachrichten zu Diaspora und anderen Netzwerken nicht möglich"; -$a->strings["Allow friends to post to your profile page?"] = "Dürfen Deine Kontakte auf Deine Pinnwand schreiben?"; -$a->strings["Allow friends to tag your posts?"] = "Dürfen Deine Kontakte Deine Beiträge mit Schlagwörtern versehen?"; -$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Dürfen wir Dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?"; -$a->strings["Permit unknown people to send you private mail?"] = "Dürfen Dir Unbekannte private Nachrichten schicken?"; -$a->strings["Profile is not published."] = "Profil ist nicht veröffentlicht."; -$a->strings["Your Identity Address is"] = "Die Adresse Deines Profils lautet:"; -$a->strings["Automatically expire posts after this many days:"] = "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:"; -$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Wenn leer verfallen Beiträge nie automatisch. Verfallene Beiträge werden gelöscht."; -$a->strings["Advanced expiration settings"] = "Erweiterte Verfallseinstellungen"; -$a->strings["Advanced Expiration"] = "Erweitertes Verfallen"; -$a->strings["Expire posts:"] = "Beiträge verfallen lassen:"; -$a->strings["Expire personal notes:"] = "Persönliche Notizen verfallen lassen:"; -$a->strings["Expire starred posts:"] = "Markierte Beiträge verfallen lassen:"; -$a->strings["Expire photos:"] = "Fotos verfallen lassen:"; -$a->strings["Only expire posts by others:"] = "Nur Beiträge anderer verfallen:"; -$a->strings["Account Settings"] = "Kontoeinstellungen"; -$a->strings["Password Settings"] = "Passwort-Einstellungen"; -$a->strings["New Password:"] = "Neues Passwort:"; -$a->strings["Confirm:"] = "Bestätigen:"; -$a->strings["Leave password fields blank unless changing"] = "Lass die Passwort-Felder leer, außer Du willst das Passwort ändern"; -$a->strings["Current Password:"] = "Aktuelles Passwort:"; -$a->strings["Your current password to confirm the changes"] = "Dein aktuelles Passwort um die Änderungen zu bestätigen"; -$a->strings["Password:"] = "Passwort:"; -$a->strings["Basic Settings"] = "Grundeinstellungen"; -$a->strings["Full Name:"] = "Kompletter Name:"; -$a->strings["Email Address:"] = "E-Mail-Adresse:"; -$a->strings["Your Timezone:"] = "Deine Zeitzone:"; -$a->strings["Default Post Location:"] = "Standardstandort:"; -$a->strings["Use Browser Location:"] = "Standort des Browsers verwenden:"; -$a->strings["Security and Privacy Settings"] = "Sicherheits- und Privatsphäre-Einstellungen"; -$a->strings["Maximum Friend Requests/Day:"] = "Maximale Anzahl von Freundschaftsanfragen/Tag:"; -$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"; -$a->strings["Maximum private messages per day from unknown people:"] = "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:"; -$a->strings["Notification Settings"] = "Benachrichtigungseinstellungen"; -$a->strings["By default post a status message when:"] = "Standardmäßig eine Statusnachricht posten, wenn:"; -$a->strings["accepting a friend request"] = "– Du eine Kontaktanfrage akzeptierst"; -$a->strings["joining a forum/community"] = "– Du einem Forum/einer Gemeinschaftsseite beitrittst"; -$a->strings["making an interesting profile change"] = "– Du eine interessante Änderung an Deinem Profil durchführst"; -$a->strings["Send a notification email when:"] = "Benachrichtigungs-E-Mail senden wenn:"; -$a->strings["You receive an introduction"] = "– Du eine Kontaktanfrage erhältst"; -$a->strings["Your introductions are confirmed"] = "– eine Deiner Kontaktanfragen akzeptiert wurde"; -$a->strings["Someone writes on your profile wall"] = "– jemand etwas auf Deine Pinnwand schreibt"; -$a->strings["Someone writes a followup comment"] = "– jemand auch einen Kommentar verfasst"; -$a->strings["You receive a private message"] = "– Du eine private Nachricht erhältst"; -$a->strings["You receive a friend suggestion"] = "– Du eine Empfehlung erhältst"; -$a->strings["You are tagged in a post"] = "– Du in einem Beitrag erwähnt wirst"; -$a->strings["You are poked/prodded/etc. in a post"] = "– Du von jemandem angestupst oder sonstwie behandelt wirst"; -$a->strings["Text-only notification emails"] = "Benachrichtigungs E-Mail als Rein-Text."; -$a->strings["Send text only notification emails, without the html part"] = "Sende Benachrichtigungs E-Mail als Rein-Text - ohne HTML-Teil"; -$a->strings["Advanced Account/Page Type Settings"] = "Erweiterte Konto-/Seitentyp-Einstellungen"; -$a->strings["Change the behaviour of this account for special situations"] = "Verhalten dieses Kontos in bestimmten Situationen:"; -$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["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 Freundschaftsanfragen 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["Unable to resolve your name at the provided location."] = "Konnte Deinen Namen an der angegebenen Stelle nicht finden."; -$a->strings["You have already introduced yourself here."] = "Du hast Dich hier bereits vorgestellt."; -$a->strings["Apparently you are already friends with %s."] = "Es scheint so, als ob Du bereits mit %s befreundet bist."; -$a->strings["Invalid profile URL."] = "Ungültige Profil-URL."; -$a->strings["Disallowed profile URL."] = "Nicht erlaubte Profil-URL."; -$a->strings["Your introduction has been sent."] = "Deine Kontaktanfrage wurde gesendet."; -$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 this profile."] = "Momentan bist Du mit einer anderen Identität angemeldet. Bitte melde Dich mit diesem Profil an."; -$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["Confirm"] = "Bestätigen"; -$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, follow this link to find a public Friendica site and join us today."] = "Wenn Du noch kein Mitglied dieses freien sozialen Netzwerks bist, folge diesem Link um einen öffentlichen Friendica-Server zu finden und beizutreten."; -$a->strings["Friend/Connection Request"] = "Freundschafts-/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["Friendica"] = "Friendica"; -$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["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:
login: %s
password: %s

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["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): "; -$a->strings["Include your profile in member directory?"] = "Soll Dein Profil im Nutzerverzeichnis angezeigt werden?"; -$a->strings["Membership on this site is by invitation only."] = "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."; -$a->strings["Your invitation ID: "] = "ID Deiner Einladung: "; -$a->strings["Your Full Name (e.g. Joe Smith): "] = "Vollständiger Name (z.B. Max Mustermann): "; -$a->strings["Your Email Address: "] = "Deine E-Mail-Adresse: "; -$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Wähle einen Spitznamen für Dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse Deines Profils auf dieser Seite wird 'spitzname@\$sitename' sein."; -$a->strings["Choose a nickname: "] = "Spitznamen wählen: "; -$a->strings["Register"] = "Registrieren"; -$a->strings["Import"] = "Import"; -$a->strings["Import your profile to this friendica instance"] = "Importiere Dein Profil auf diese Friendica Instanz"; -$a->strings["System down for maintenance"] = "System zur Wartung abgeschaltet"; -$a->strings["Search"] = "Suche"; -$a->strings["Global Directory"] = "Weltweites Verzeichnis"; +$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["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["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."; +$a->strings["Unable to process image"] = "Bild konnte nicht verarbeitet werden"; +$a->strings["Upload File:"] = "Datei hochladen:"; +$a->strings["Select a profile:"] = "Profil auswählen:"; +$a->strings["Upload"] = "Hochladen"; +$a->strings["skip this step"] = "diesen Schritt überspringen"; +$a->strings["select a photo from your photo albums"] = "wähle ein Foto aus deinen Fotoalben"; +$a->strings["Crop Image"] = "Bild zurechtschneiden"; +$a->strings["Please adjust the image cropping for optimum viewing."] = "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann."; +$a->strings["Done Editing"] = "Bearbeitung abgeschlossen"; +$a->strings["Image uploaded successfully."] = "Bild erfolgreich hochgeladen."; +$a->strings["Friends of %s"] = "Freunde von %s"; +$a->strings["No friends to display."] = "Keine Freunde zum Anzeigen."; $a->strings["Find on this site"] = "Auf diesem Server suchen"; $a->strings["Site Directory"] = "Verzeichnis"; -$a->strings["Age: "] = "Alter: "; $a->strings["Gender: "] = "Geschlecht:"; -$a->strings["Gender:"] = "Geschlecht:"; -$a->strings["Status:"] = "Status:"; -$a->strings["Homepage:"] = "Homepage:"; -$a->strings["About:"] = "Über:"; $a->strings["No entries (some entries may be hidden)."] = "Keine Einträge (einige Einträge könnten versteckt sein)."; -$a->strings["No potential page delegates located."] = "Keine potentiellen Bevollmächtigten für die Seite gefunden."; -$a->strings["Delegate Page Management"] = "Delegiere das Management für die Seite"; -$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["Common Friends"] = "Gemeinsame Freunde"; -$a->strings["No contacts in common."] = "Keine gemeinsamen Kontakte."; -$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["%1\$s is currently %2\$s"] = "%1\$s ist momentan %2\$s"; -$a->strings["Mood"] = "Stimmung"; -$a->strings["Set your current mood and tell your friends"] = "Wähle Deine aktuelle Stimmung und erzähle sie Deinen Freunden"; -$a->strings["Do you really want to delete this suggestion?"] = "Möchtest Du wirklich diese Empfehlung löschen?"; -$a->strings["Friend Suggestions"] = "Kontaktvorschläge"; -$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["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["Likes"] = "Likes"; -$a->strings["Dislikes"] = "Dislikes"; -$a->strings["Work/Employment"] = "Arbeit / Beschäftigung"; -$a->strings["Religion"] = "Religion"; -$a->strings["Political Views"] = "Politische Ansichten"; -$a->strings["Gender"] = "Geschlecht"; -$a->strings["Sexual Preference"] = "Sexuelle Vorlieben"; -$a->strings["Homepage"] = "Webseite"; -$a->strings["Interests"] = "Interessen"; -$a->strings["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 “%3\$s”"] = "%1\$s hat %2\$s geändert auf “%3\$s”"; -$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["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["Profile Name:"] = "Profilname:"; -$a->strings["Your Full Name:"] = "Dein kompletter Name:"; -$a->strings["Title/Description:"] = "Titel/Beschreibung:"; -$a->strings["Your Gender:"] = "Dein Geschlecht:"; -$a->strings["Birthday (%s):"] = "Geburtstag (%s):"; -$a->strings["Street Address:"] = "Adresse:"; -$a->strings["Locality/City:"] = "Wohnort:"; -$a->strings["Postal/Zip Code:"] = "Postleitzahl:"; -$a->strings["Country:"] = "Land:"; -$a->strings["Region/State:"] = "Region/Bundesstaat:"; -$a->strings[" Marital Status:"] = " Beziehungsstatus:"; -$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["Sexual Preference:"] = "Sexuelle Vorlieben:"; -$a->strings["Homepage URL:"] = "Adresse der Homepage:"; -$a->strings["Hometown:"] = "Heimatort:"; -$a->strings["Political Views:"] = "Politische Ansichten:"; -$a->strings["Religious Views:"] = "Religiöse Ansichten:"; -$a->strings["Public Keywords:"] = "Öffentliche Schlüsselwörter:"; -$a->strings["Private Keywords:"] = "Private Schlüsselwörter:"; -$a->strings["Likes:"] = "Likes:"; -$a->strings["Dislikes:"] = "Dislikes:"; -$a->strings["Example: fishing photography software"] = "Beispiel: Fischen Fotografie Software"; -$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Wird verwendet, um potentielle Freunde zu finden, kann von Fremden eingesehen werden)"; -$a->strings["(Used for searching profiles, never shown to others)"] = "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)"; -$a->strings["Tell us about yourself..."] = "Erzähle uns ein bisschen von Dir …"; -$a->strings["Hobbies/Interests"] = "Hobbies/Interessen"; -$a->strings["Contact information and Social Networks"] = "Kontaktinformationen und Soziale Netzwerke"; -$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["Love/romance"] = "Liebe/Romantik"; -$a->strings["Work/employment"] = "Arbeit/Anstellung"; -$a->strings["School/education"] = "Schule/Ausbildung"; -$a->strings["This is your public profile.
It may be visible to anybody using the internet."] = "Dies ist Dein öffentliches Profil.
Es könnte für jeden Nutzer des Internets sichtbar sein."; -$a->strings["Edit/Manage Profiles"] = "Bearbeite/Verwalte Profile"; -$a->strings["Change profile photo"] = "Profilbild ändern"; -$a->strings["Create New Profile"] = "Neues Profil anlegen"; -$a->strings["Profile Image"] = "Profilbild"; -$a->strings["visible to everybody"] = "sichtbar für jeden"; -$a->strings["Edit visibility"] = "Sichtbarkeit bearbeiten"; -$a->strings["Item not found"] = "Beitrag nicht gefunden"; -$a->strings["Edit post"] = "Beitrag bearbeiten"; -$a->strings["upload photo"] = "Bild hochladen"; -$a->strings["Attach file"] = "Datei anhängen"; -$a->strings["attach file"] = "Datei anhängen"; -$a->strings["web link"] = "Weblink"; -$a->strings["Insert video link"] = "Video-Adresse einfügen"; -$a->strings["video link"] = "Video-Link"; -$a->strings["Insert audio link"] = "Audio-Adresse einfügen"; -$a->strings["audio link"] = "Audio-Link"; -$a->strings["Set your location"] = "Deinen Standort festlegen"; -$a->strings["set location"] = "Ort setzen"; -$a->strings["Clear browser location"] = "Browser-Standort leeren"; -$a->strings["clear location"] = "Ort löschen"; -$a->strings["Permission settings"] = "Berechtigungseinstellungen"; -$a->strings["CC: email addresses"] = "Cc: E-Mail-Addressen"; -$a->strings["Public post"] = "Öffentlicher Beitrag"; -$a->strings["Set title"] = "Titel setzen"; -$a->strings["Categories (comma-separated list)"] = "Kategorien (kommasepariert)"; -$a->strings["Example: bob@example.com, mary@example.com"] = "Z.B.: bob@example.com, mary@example.com"; -$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 Friendica.com to learn more about the Friendica project."] = "Bitte besuche Friendica.com, um mehr über das Friendica Projekt zu erfahren."; -$a->strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche"; -$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com"; -$a->strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Erweiterungen/Apps"; -$a->strings["No installed plugins/addons/apps"] = "Keine Plugins/Erweiterungen/Apps installiert"; -$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["Remote privacy information not available."] = "Entfernte Privatsphäreneinstellungen nicht verfügbar."; -$a->strings["Visible to:"] = "Sichtbar für:"; -$a->strings["Personal Notes"] = "Persönliche Notizen"; -$a->strings["l F d, Y \\@ g:i A"] = "l, d. F Y\\, H:i"; $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["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["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"; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite."; -$a->strings["%s : Message delivery failed."] = "%s: Zustellung der Nachricht fehlgeschlagen."; -$a->strings["%d message sent."] = array( - 0 => "%d Nachricht gesendet.", - 1 => "%d Nachrichten gesendet.", -); -$a->strings["You have no more invitations available"] = "Du hast keine weiteren Einladungen"; -$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Besuche %s für eine Liste der öffentlichen Server, denen Du beitreten kannst. Friendica Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer Sozialer Netzwerke."; -$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere Dich bitte bei %s oder einer anderen öffentlichen Friendica Website."; -$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen Du beitreten kannst."; -$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen."; -$a->strings["Send invitations"] = "Einladungen senden"; -$a->strings["Enter email addresses, one per line:"] = "E-Mail-Adressen eingeben, eine pro Zeile:"; -$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Du bist herzlich dazu eingeladen, Dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen."; -$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["Photo Albums"] = "Fotoalben"; -$a->strings["Contact Photos"] = "Kontaktbilder"; -$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 exceeds size limit of "] = "Die Bildgröße übersteigt das Limit von "; -$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["Permissions"] = "Berechtigungen"; -$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["Rotate CW (right)"] = "Drehen US (rechts)"; -$a->strings["Rotate CCW (left)"] = "Drehen EUS (links)"; -$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["Private photo"] = "Privates Foto"; -$a->strings["Public photo"] = "Öffentliches Foto"; -$a->strings["Share"] = "Teilen"; -$a->strings["Recent Photos"] = "Neueste Fotos"; -$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["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 Freunde darüber zu informieren, dass Du hierher umgezogen bist."; -$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (statusnet/identi.ca) 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["Item not available."] = "Beitrag nicht verfügbar."; -$a->strings["Item was not found."] = "Beitrag konnte nicht gefunden werden."; -$a->strings["Delete this item?"] = "Diesen Beitrag löschen?"; -$a->strings["show fewer"] = "weniger anzeigen"; -$a->strings["Update %s failed. See error logs."] = "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen."; -$a->strings["Create a New Account"] = "Neues Konto erstellen"; -$a->strings["Logout"] = "Abmelden"; -$a->strings["Nickname or Email address: "] = "Spitzname oder E-Mail-Adresse: "; -$a->strings["Password: "] = "Passwort: "; -$a->strings["Remember me"] = "Anmeldedaten merken"; -$a->strings["Or login using OpenID: "] = "Oder melde Dich mit Deiner OpenID an: "; -$a->strings["Forgot your password?"] = "Passwort vergessen?"; -$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["Requested account is not available."] = "Das angefragte Profil ist nicht vorhanden."; -$a->strings["Edit profile"] = "Profil bearbeiten"; -$a->strings["Message"] = "Nachricht"; -$a->strings["Profiles"] = "Profile"; -$a->strings["Manage/edit profiles"] = "Profile verwalten/editieren"; -$a->strings["Network:"] = "Netzwerk"; -$a->strings["g A l F d"] = "l, d. F G \\U\\h\\r"; -$a->strings["F d"] = "d. F"; -$a->strings["[today]"] = "[heute]"; -$a->strings["Birthday Reminders"] = "Geburtstagserinnerungen"; -$a->strings["Birthdays this week:"] = "Geburtstage diese Woche:"; -$a->strings["[No description]"] = "[keine Beschreibung]"; -$a->strings["Event Reminders"] = "Veranstaltungserinnerungen"; -$a->strings["Events this week:"] = "Veranstaltungen diese Woche"; -$a->strings["Status"] = "Status"; -$a->strings["Status Messages and Posts"] = "Statusnachrichten und Beiträge"; -$a->strings["Profile Details"] = "Profildetails"; -$a->strings["Videos"] = "Videos"; -$a->strings["Events and Calendar"] = "Ereignisse und Kalender"; -$a->strings["Only You Can See This"] = "Nur Du kannst das sehen"; -$a->strings["This entry was edited"] = "Dieser Beitrag wurde bearbeitet."; -$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["Categories:"] = "Kategorien:"; -$a->strings["Filed under:"] = "Abgelegt unter:"; -$a->strings["via"] = "via"; -$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["Logged out."] = "Abgemeldet."; -$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["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["%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["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["General Features"] = "Allgemeine Features"; -$a->strings["Multiple Profiles"] = "Mehrere Profile"; -$a->strings["Ability to create multiple profiles"] = "Möglichkeit mehrere Profile zu erstellen"; -$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"; -$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = "Automatisch eine @-Erwähnung eines Forums einfügen/entfehrnen, wenn dieses im ACL Fenster de-/markiert wurde."; -$a->strings["Network Sidebar Widgets"] = "Widgets für Netzwerk und Seitenleiste"; -$a->strings["Search by Date"] = "Archiv"; -$a->strings["Ability to select posts by date ranges"] = "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren"; -$a->strings["Group Filter"] = "Gruppen Filter"; -$a->strings["Enable widget to display Network posts only from selected group"] = "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren."; -$a->strings["Network Filter"] = "Netzwerk Filter"; -$a->strings["Enable widget to display Network posts only from selected network"] = "Widget zum filtern der Beiträge in Abhängigkeit des Netzwerks aus dem der Ersteller sendet aktivieren."; -$a->strings["Save search terms for re-use"] = "Speichere Suchanfragen für spätere Wiederholung."; -$a->strings["Network Tabs"] = "Netzwerk Reiter"; -$a->strings["Network Personal Tab"] = "Netzwerk-Reiter: Persönlich"; -$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Aktiviert einen Netzwerk-Reiter in dem Nachrichten angezeigt werden mit denen Du interagiert hast"; -$a->strings["Network New Tab"] = "Netzwerk-Reiter: Neue"; -$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Aktiviert einen Netzwerk-Reiter in dem ausschließlich neue Beiträge (der letzten 12 Stunden) angezeigt werden"; -$a->strings["Network Shared Links Tab"] = "Netzwerk-Reiter: Geteilte Links"; -$a->strings["Enable tab to display only Network posts with links in them"] = "Aktiviert einen Netzwerk-Reiter der ausschließlich Nachrichten mit Links enthält"; -$a->strings["Post/Comment Tools"] = "Werkzeuge für Beiträge und Kommentare"; -$a->strings["Multiple Deletion"] = "Mehrere Beiträge löschen"; -$a->strings["Select and delete multiple posts/comments at once"] = "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen"; -$a->strings["Edit Sent Posts"] = "Gesendete Beiträge editieren"; -$a->strings["Edit and correct posts and comments after sending"] = "Erlaubt es Beiträge und Kommentare nach dem Senden zu editieren bzw.zu korrigieren."; -$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["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'"; -$a->strings["Star Posts"] = "Beiträge Markieren"; -$a->strings["Ability to mark special posts with a star indicator"] = "Erlaubt es Beiträge mit einem Stern-Indikator zu markieren"; -$a->strings["Mute Post Notifications"] = "Benachrichtigungen für Beiträge Stumm schalten"; -$a->strings["Ability to mute notifications for a thread"] = "Möglichkeit Benachrichtigungen für einen Thread abbestellen zu können"; -$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["following"] = "folgen"; -$a->strings["A deleted group with this name was revived. Existing item permissions may 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 könnten 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["Edit group"] = "Gruppe bearbeiten"; -$a->strings["Create a new group"] = "Neue Gruppe erstellen"; -$a->strings["Contacts not in any group"] = "Kontakte in keiner Gruppe"; -$a->strings["Miscellaneous"] = "Verschiedenes"; -$a->strings["year"] = "Jahr"; -$a->strings["month"] = "Monat"; -$a->strings["day"] = "Tag"; -$a->strings["never"] = "nie"; -$a->strings["less than a second ago"] = "vor weniger als einer Sekunde"; -$a->strings["years"] = "Jahre"; -$a->strings["months"] = "Monate"; -$a->strings["week"] = "Woche"; -$a->strings["weeks"] = "Wochen"; -$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["Visible to everybody"] = "Für jeden sichtbar"; -$a->strings["show"] = "zeigen"; -$a->strings["don't show"] = "nicht zeigen"; -$a->strings["[no subject]"] = "[kein Betreff]"; -$a->strings["stopped following"] = "wird nicht mehr gefolgt"; -$a->strings["Poke"] = "Anstupsen"; -$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["Edit Contact"] = "Kontakt bearbeiten"; -$a->strings["Drop Contact"] = "Kontakt löschen"; -$a->strings["Send PM"] = "Private Nachricht senden"; -$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["event"] = "Veranstaltung"; -$a->strings["%1\$s poked %2\$s"] = "%1\$s stupste %2\$s"; -$a->strings["poked"] = "stupste"; -$a->strings["post/item"] = "Nachricht/Beitrag"; -$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s hat %2\$s\\s %3\$s als Favorit markiert"; -$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["%s likes this."] = "%s mag das."; -$a->strings["%s doesn't like this."] = "%s mag das nicht."; -$a->strings["%2\$d people like this"] = "%2\$d Personen mögen das"; -$a->strings["%2\$d people don't like this"] = "%2\$d Personen mögen das nicht"; -$a->strings["and"] = "und"; -$a->strings[", and %d other people"] = " und %d andere"; -$a->strings["%s like this."] = "%s mögen das."; -$a->strings["%s don't like this."] = "%s mögen das nicht."; -$a->strings["Visible to everybody"] = "Für jedermann sichtbar"; -$a->strings["Please enter a video link/URL:"] = "Bitte Link/URL zum Video einfügen:"; -$a->strings["Please enter an audio link/URL:"] = "Bitte Link/URL zum Audio einfügen:"; -$a->strings["Tag term:"] = "Tag:"; -$a->strings["Where are you right now?"] = "Wo hältst Du Dich jetzt gerade auf?"; -$a->strings["Delete item(s)?"] = "Einträge löschen?"; -$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["permissions"] = "Zugriffsrechte"; -$a->strings["Post to Groups"] = "Poste an Gruppe"; -$a->strings["Post to Contacts"] = "Poste an Kontakte"; -$a->strings["Private post"] = "Privater Beitrag"; -$a->strings["view full size"] = "Volle Größe anzeigen"; -$a->strings["newer"] = "neuer"; -$a->strings["older"] = "älter"; -$a->strings["prev"] = "vorige"; -$a->strings["first"] = "erste"; -$a->strings["last"] = "letzte"; -$a->strings["next"] = "nächste"; -$a->strings["No contacts"] = "Keine Kontakte"; -$a->strings["%d Contact"] = array( - 0 => "%d Kontakt", - 1 => "%d Kontakte", -); -$a->strings["poke"] = "anstupsen"; -$a->strings["ping"] = "anpingen"; -$a->strings["pinged"] = "pingte"; -$a->strings["prod"] = "knuffen"; -$a->strings["prodded"] = "knuffte"; -$a->strings["slap"] = "ohrfeigen"; -$a->strings["slapped"] = "ohrfeigte"; -$a->strings["finger"] = "befummeln"; -$a->strings["fingered"] = "befummelte"; -$a->strings["rebuff"] = "eine Abfuhr erteilen"; -$a->strings["rebuffed"] = "abfuhrerteilte"; -$a->strings["happy"] = "glücklich"; -$a->strings["sad"] = "traurig"; -$a->strings["mellow"] = "sanft"; -$a->strings["tired"] = "müde"; -$a->strings["perky"] = "frech"; -$a->strings["angry"] = "sauer"; -$a->strings["stupified"] = "verblüfft"; -$a->strings["puzzled"] = "verwirrt"; -$a->strings["interested"] = "interessiert"; -$a->strings["bitter"] = "verbittert"; -$a->strings["cheerful"] = "fröhlich"; -$a->strings["alive"] = "lebendig"; -$a->strings["annoyed"] = "verärgert"; -$a->strings["anxious"] = "unruhig"; -$a->strings["cranky"] = "schrullig"; -$a->strings["disturbed"] = "verstört"; -$a->strings["frustrated"] = "frustriert"; -$a->strings["motivated"] = "motiviert"; -$a->strings["relaxed"] = "entspannt"; -$a->strings["surprised"] = "überrascht"; -$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["Sunday"] = "Sonntag"; -$a->strings["January"] = "Januar"; -$a->strings["February"] = "Februar"; -$a->strings["March"] = "März"; -$a->strings["April"] = "April"; -$a->strings["May"] = "Mai"; -$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["bytes"] = "Byte"; -$a->strings["Click to open/close"] = "Zum öffnen/schließen klicken"; -$a->strings["default"] = "Standard"; -$a->strings["Select an alternate language"] = "Alternative Sprache auswählen"; -$a->strings["activity"] = "Aktivität"; -$a->strings["post"] = "Beitrag"; -$a->strings["Item filed"] = "Beitrag abgelegt"; -$a->strings["Image/photo"] = "Bild/Foto"; -$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s"; -$a->strings["%s wrote the following post"] = "%s schrieb den folgenden Beitrag"; -$a->strings["$1 wrote:"] = "$1 hat geschrieben:"; -$a->strings["Encrypted content"] = "Verschlüsselter Inhalt"; -$a->strings["(no subject)"] = "(kein Betreff)"; -$a->strings["noreply"] = "noreply"; -$a->strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln."; -$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["Weekly"] = "Wöchentlich"; -$a->strings["Monthly"] = "Monatlich"; -$a->strings["OStatus"] = "OStatus"; -$a->strings["RSS/Atom"] = "RSS/Atom"; -$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["Statusnet"] = "StatusNet"; -$a->strings["App.net"] = "App.net"; -$a->strings[" on Last.fm"] = " bei Last.fm"; -$a->strings["Starts:"] = "Beginnt:"; -$a->strings["Finishes:"] = "Endet:"; -$a->strings["j F, Y"] = "j F, Y"; -$a->strings["j F"] = "j F"; -$a->strings["Birthday:"] = "Geburtstag:"; -$a->strings["Age:"] = "Alter:"; -$a->strings["for %1\$d %2\$s"] = "für %1\$d %2\$s"; -$a->strings["Tags:"] = "Tags"; -$a->strings["Religion:"] = "Religion:"; -$a->strings["Hobbies/Interests:"] = "Hobbies/Interessen:"; -$a->strings["Contact information and Social Networks:"] = "Kontaktinformationen und Soziale Netzwerke:"; -$a->strings["Musical interests:"] = "Musikalische Interessen:"; -$a->strings["Books, literature:"] = "Literatur/Bücher:"; -$a->strings["Television:"] = "Fernsehen:"; -$a->strings["Film/dance/culture/entertainment:"] = "Filme/Tänze/Kultur/Unterhaltung:"; -$a->strings["Love/Romance:"] = "Liebesleben:"; -$a->strings["Work/employment:"] = "Arbeit/Beschäftigung:"; -$a->strings["School/education:"] = "Schule/Ausbildung:"; -$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["End this session"] = "Diese Sitzung beenden"; -$a->strings["Your posts and conversations"] = "Deine Beiträge und Unterhaltungen"; -$a->strings["Your profile page"] = "Deine Profilseite"; -$a->strings["Your photos"] = "Deine Fotos"; -$a->strings["Your videos"] = "Deine Videos"; -$a->strings["Your events"] = "Deine Ereignisse"; -$a->strings["Personal notes"] = "Persönliche Notizen"; -$a->strings["Your personal notes"] = "Deine persönlichen Notizen"; -$a->strings["Sign in"] = "Anmelden"; -$a->strings["Home Page"] = "Homepage"; -$a->strings["Create an account"] = "Nutzerkonto erstellen"; -$a->strings["Help and documentation"] = "Hilfe und Dokumentation"; -$a->strings["Apps"] = "Apps"; -$a->strings["Addon applications, utilities, games"] = "Addon Anwendungen, Dienstprogramme, Spiele"; -$a->strings["Search site content"] = "Inhalt der Seite durchsuchen"; -$a->strings["Conversations on this site"] = "Unterhaltungen auf dieser Seite"; -$a->strings["Conversations on the network"] = "Unterhaltungen im Netzwerk"; -$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["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["Friend Requests"] = "Kontaktanfragen"; -$a->strings["See all notifications"] = "Alle Benachrichtigungen anzeigen"; -$a->strings["Mark all system notifications seen"] = "Markiere alle Systembenachrichtigungen als gelesen"; -$a->strings["Private mail"] = "Private E-Mail"; -$a->strings["Inbox"] = "Eingang"; -$a->strings["Outbox"] = "Ausgang"; -$a->strings["Manage"] = "Verwalten"; -$a->strings["Manage other pages"] = "Andere Seiten verwalten"; -$a->strings["Account settings"] = "Kontoeinstellungen"; -$a->strings["Manage/Edit Profiles"] = "Profile Verwalten/Editieren"; -$a->strings["Manage/edit friends and contacts"] = "Freunde und Kontakte verwalten/editieren"; -$a->strings["Site setup and configuration"] = "Einstellungen der Seite und Konfiguration"; -$a->strings["Navigation"] = "Navigation"; -$a->strings["Site map"] = "Sitemap"; -$a->strings["User not found."] = "Nutzer nicht gefunden."; -$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["There is no status with this id."] = "Es gibt keinen Status mit dieser ID."; -$a->strings["There is no conversation with this id."] = "Es existiert keine Unterhaltung mit dieser ID."; -$a->strings["Invalid request."] = "Ungültige Anfrage"; -$a->strings["Invalid item."] = "Ungültiges Objekt"; -$a->strings["Invalid action. "] = "Ungültige Aktion"; -$a->strings["DB error"] = "DB Error"; -$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 \"_\", and must also begin with a letter."] = "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\", \"_\" und \"-\") bestehen, außerdem muss er mit einem Buchstaben beginnen."; -$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["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["Friends"] = "Freunde"; -$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["Sharing notification from Diaspora network"] = "Freigabe-Benachrichtigung von Diaspora"; -$a->strings["Attachments:"] = "Anhänge:"; -$a->strings["Do you really want to delete this item?"] = "Möchtest Du wirklich dieses Item löschen?"; -$a->strings["Archives"] = "Archiv"; -$a->strings["Male"] = "Männlich"; -$a->strings["Female"] = "Weiblich"; -$a->strings["Currently Male"] = "Momentan männlich"; -$a->strings["Currently Female"] = "Momentan weiblich"; -$a->strings["Mostly Male"] = "Hauptsächlich männlich"; -$a->strings["Mostly Female"] = "Hauptsächlich weiblich"; -$a->strings["Transgender"] = "Transgender"; -$a->strings["Intersex"] = "Intersex"; -$a->strings["Transsexual"] = "Transsexuell"; -$a->strings["Hermaphrodite"] = "Hermaphrodit"; -$a->strings["Neuter"] = "Neuter"; -$a->strings["Non-specific"] = "Nicht spezifiziert"; -$a->strings["Other"] = "Andere"; -$a->strings["Undecided"] = "Unentschieden"; -$a->strings["Males"] = "Männer"; -$a->strings["Females"] = "Frauen"; -$a->strings["Gay"] = "Schwul"; -$a->strings["Lesbian"] = "Lesbisch"; -$a->strings["No Preference"] = "Keine Vorlieben"; -$a->strings["Bisexual"] = "Bisexuell"; -$a->strings["Autosexual"] = "Autosexual"; -$a->strings["Abstinent"] = "Abstinent"; -$a->strings["Virgin"] = "Jungfrauen"; -$a->strings["Deviant"] = "Deviant"; -$a->strings["Fetish"] = "Fetish"; -$a->strings["Oodles"] = "Oodles"; -$a->strings["Nonsexual"] = "Nonsexual"; -$a->strings["Single"] = "Single"; -$a->strings["Lonely"] = "Einsam"; -$a->strings["Available"] = "Verfügbar"; -$a->strings["Unavailable"] = "Nicht verfügbar"; -$a->strings["Has crush"] = "verknallt"; -$a->strings["Infatuated"] = "verliebt"; -$a->strings["Dating"] = "Dating"; -$a->strings["Unfaithful"] = "Untreu"; -$a->strings["Sex Addict"] = "Sexbesessen"; -$a->strings["Friends/Benefits"] = "Freunde/Zuwendungen"; -$a->strings["Casual"] = "Casual"; -$a->strings["Engaged"] = "Verlobt"; -$a->strings["Married"] = "Verheiratet"; -$a->strings["Imaginarily married"] = "imaginär verheiratet"; -$a->strings["Partners"] = "Partner"; -$a->strings["Cohabiting"] = "zusammenlebend"; -$a->strings["Common law"] = "wilde Ehe"; -$a->strings["Happy"] = "Glücklich"; -$a->strings["Not looking"] = "Nicht auf der Suche"; -$a->strings["Swinger"] = "Swinger"; -$a->strings["Betrayed"] = "Betrogen"; -$a->strings["Separated"] = "Getrennt"; -$a->strings["Unstable"] = "Unstabil"; -$a->strings["Divorced"] = "Geschieden"; -$a->strings["Imaginarily divorced"] = "imaginär geschieden"; -$a->strings["Widowed"] = "Verwitwet"; -$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["Friendica Notification"] = "Friendica-Benachrichtigung"; -$a->strings["Thank You,"] = "Danke,"; -$a->strings["%s Administrator"] = "der Administrator von %s"; -$a->strings["%s "] = "%s "; -$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica-Meldung] Neue Nachricht erhalten von %s"; -$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s hat Dir eine neue private Nachricht auf %2\$s geschickt."; -$a->strings["%1\$s sent you %2\$s."] = "%1\$s schickte Dir %2\$s."; -$a->strings["a private message"] = "eine private Nachricht"; -$a->strings["Please visit %s to view and/or reply to your private messages."] = "Bitte besuche %s, um Deine privaten Nachrichten anzusehen und/oder zu beantworten."; -$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]a %3\$s[/url]"; -$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]%3\$ss %4\$s[/url]"; -$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]Deinen %3\$s[/url]"; -$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica-Meldung] Kommentar zum Beitrag #%1\$d von %2\$s"; -$a->strings["%s commented on an item/conversation you have been following."] = "%s hat einen Beitrag kommentiert, dem Du folgst."; -$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren."; -$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica-Meldung] %s hat auf Deine Pinnwand geschrieben"; -$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s schrieb auf %2\$s auf Deine Pinnwand"; -$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s hat etwas auf [url=%2\$s]Deiner Pinnwand[/url] gepostet"; -$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica-Meldung] %s hat Dich erwähnt"; -$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s erwähnte Dich auf %2\$s"; -$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]erwähnte Dich[/url]."; -$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica Benachrichtigung] %s hat einen Beitrag geteilt"; -$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s hat einen neuen Beitrag auf %2\$s geteilt"; -$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]hat einen Beitrag geteilt[/url]."; -$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica-Meldung] %1\$s hat Dich angestupst"; -$a->strings["%1\$s poked you at %2\$s"] = "%1\$s hat Dich auf %2\$s angestupst"; -$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]hat Dich angestupst[/url]."; -$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica-Meldung] %s hat Deinen Beitrag getaggt"; -$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s erwähnte Deinen Beitrag auf %2\$s"; -$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s erwähnte [url=%2\$s]Deinen Beitrag[/url]"; -$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica-Meldung] Kontaktanfrage erhalten"; -$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Du hast eine Kontaktanfrage von '%1\$s' auf %2\$s erhalten"; -$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Du hast eine [url=%1\$s]Kontaktanfrage[/url] von %2\$s erhalten."; -$a->strings["You may visit their profile at %s"] = "Hier kannst Du das Profil betrachten: %s"; -$a->strings["Please visit %s to approve or reject the introduction."] = "Bitte besuche %s, um die Kontaktanfrage anzunehmen oder abzulehnen."; -$a->strings["[Friendica:Notify] A new person is sharing with you"] = "[Friendica Benachrichtigung] Eine neue Person teilt mit Dir"; -$a->strings["%1\$s is sharing with you at %2\$s"] = "%1\$s teilt mit Dir auf %2\$s"; -$a->strings["[Friendica:Notify] You have a new follower"] = "[Friendica Benachrichtigung] Du hast einen neuen Kontakt auf "; -$a->strings["You have a new follower at %2\$s : %1\$s"] = "Du hast einen neuen Kontakt auf %2\$s: %1\$s"; -$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica-Meldung] Kontaktvorschlag erhalten"; -$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Du hast einen Freunde-Vorschlag von '%1\$s' auf %2\$s erhalten"; -$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Du hast einen [url=%1\$s]Freunde-Vorschlag[/url] %2\$s von %3\$s erhalten."; -$a->strings["Name:"] = "Name:"; -$a->strings["Photo:"] = "Foto:"; -$a->strings["Please visit %s to approve or reject the suggestion."] = "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen."; -$a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica-Benachrichtigung] Kontaktanfrage bestätigt"; -$a->strings["'%1\$s' has acepted your connection request at %2\$s"] = "'%1\$s' hat Deine Kontaktanfrage auf %2\$s bestätigt"; -$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$s hat Deine [url=%1\$s]Kontaktanfrage[/url] akzeptiert."; -$a->strings["You are now mutual friends and may exchange status updates, photos, and email\n\twithout restriction."] = "Ihr seit nun beidseitige Freunde und könnt Statusmitteilungen, Bilder und Emails ohne Einschränkungen austauschen."; -$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Bitte besuche %s, wenn Du Änderungen an eurer Beziehung vornehmen willst."; -$a->strings["'%1\$s' has chosen to accept you a \"fan\", which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = "'%1\$s' hat sich entschieden Dich als \"Fan\" zu akzeptieren, dies schränkt einige Kommunikationswege - wie private Nachrichten und einige Interaktionsmöglichkeiten auf der Profilseite - ein. Wenn dies eine Berühmtheiten- oder Gemeinschaftsseite ist, werden diese Einstellungen automatisch vorgenommen."; -$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future. "] = "'%1\$s' kann den Kontaktstatus zu einem späteren Zeitpunkt erweitern und diese Einschränkungen aufheben. "; -$a->strings["[Friendica System:Notify] registration request"] = "[Friendica System:Benachrichtigung] Registrationsanfrage"; -$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Du hast eine Registrierungsanfrage von %2\$s auf '%1\$s' erhalten"; -$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["Embedded content"] = "Eingebetteter Inhalt"; -$a->strings["Embedding disabled"] = "Einbettungen deaktiviert"; -$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["toggle mobile"] = "auf/von Mobile Ansicht wechseln"; -$a->strings["Theme settings"] = "Themeneinstellungen"; -$a->strings["Set resize level for images in posts and comments (width and height)"] = "Wähle das Vergrößerungsmaß für Bilder in Beiträgen und Kommentaren (Höhe und Breite)"; -$a->strings["Set font-size for posts and comments"] = "Schriftgröße für Beiträge und Kommentare festlegen"; -$a->strings["Set theme width"] = "Theme Breite festlegen"; -$a->strings["Color scheme"] = "Farbschema"; -$a->strings["Set line-height for posts and comments"] = "Liniengröße für Beiträge und Kommantare festlegen"; -$a->strings["Set colour scheme"] = "Farbschema wählen"; -$a->strings["Alignment"] = "Ausrichtung"; -$a->strings["Left"] = "Links"; -$a->strings["Center"] = "Mitte"; -$a->strings["Posts font size"] = "Schriftgröße in Beiträgen"; -$a->strings["Textareas font size"] = "Schriftgröße in Eingabefeldern"; -$a->strings["Set resolution for middle column"] = "Auflösung für die Mittelspalte setzen"; -$a->strings["Set color scheme"] = "Wähle Farbschema"; -$a->strings["Set zoomfactor for Earth Layer"] = "Zoomfaktor der Earth Layer"; -$a->strings["Set longitude (X) for Earth Layers"] = "Longitude (X) der Earth Layer"; -$a->strings["Set latitude (Y) for Earth Layers"] = "Latitude (Y) der Earth Layer"; -$a->strings["Community Pages"] = "Foren"; -$a->strings["Earth Layers"] = "Earth Layers"; -$a->strings["Community Profiles"] = "Community-Profile"; -$a->strings["Help or @NewHere ?"] = "Hilfe oder @NewHere"; -$a->strings["Connect Services"] = "Verbinde Dienste"; -$a->strings["Find Friends"] = "Freunde finden"; -$a->strings["Last users"] = "Letzte Nutzer"; -$a->strings["Last photos"] = "Letzte Fotos"; -$a->strings["Last likes"] = "Zuletzt gemocht"; -$a->strings["Your contacts"] = "Deine Kontakte"; -$a->strings["Your personal photos"] = "Deine privaten Fotos"; -$a->strings["Local Directory"] = "Lokales Verzeichnis"; -$a->strings["Set zoomfactor for Earth Layers"] = "Zoomfaktor der Earth Layer"; -$a->strings["Show/hide boxes at right-hand column:"] = "Rahmen auf der rechten Seite anzeigen/verbergen"; -$a->strings["Set style"] = "Stil auswählen"; -$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"; From f0021a1f729e416ac0bf992aa42ec8cd3153438c Mon Sep 17 00:00:00 2001 From: Frank Dieckmann Date: Wed, 8 Apr 2015 12:12:16 +0200 Subject: [PATCH 022/306] Capitalization of addresses, linguistic style --- doc/de/Quick-Start-andfinally.md | 6 +++--- doc/de/Quick-Start-groupsandpages.md | 9 +++++---- doc/de/Quick-Start-guide.md | 19 +++++++++++++------ doc/de/Quick-Start-makingnewfriends.md | 10 ++++++---- doc/de/Quick-Start-network.md | 6 +++--- 5 files changed, 30 insertions(+), 20 deletions(-) diff --git a/doc/de/Quick-Start-andfinally.md b/doc/de/Quick-Start-andfinally.md index b6e492ae69..98dfa556a9 100644 --- a/doc/de/Quick-Start-andfinally.md +++ b/doc/de/Quick-Start-andfinally.md @@ -3,16 +3,16 @@ Und damit sind wir auch schon am Ende der Schnellstartanleitung. -Hier sind noch einige weitere Dinge, die dir den Start vereinfachen können. +Hier sind noch einige weitere Dinge, die Dir den Start vereinfachen können. **Gruppen** - Friendica Support - Probleme? Dann ist das der Platz, um zu fragen! -- Let's Talk eine Gruppe, um Leute und Gruppen mit gleichen Interessen zu finden + **Dokumentation** diff --git a/doc/de/Quick-Start-groupsandpages.md b/doc/de/Quick-Start-groupsandpages.md index f0547667f2..9005d45efc 100644 --- a/doc/de/Quick-Start-groupsandpages.md +++ b/doc/de/Quick-Start-groupsandpages.md @@ -3,13 +3,14 @@ Gruppen und Seiten * [Zur Startseite der Hilfe](help) -Hier siehst du das globale Verzeichnis. Wenn du dich mal verirrt hast, kannst du diesen Link klicken und wieder hierher kommen. +Hier siehst Du das globale Verzeichnis. Wenn Du Dich mal verirrt hast, kannst Du diesen Link klicken und wieder hierher kommen. -Auf dieser Seite findest du eine Zusammenstellung von Gruppen, Foren und bekannten Seiten. Gruppen sind keine realen Personen. Sich mit diesen zu verbinden ist, als wenn man jemanden auf Facebook "liked" ("gefällt mir") oder wenn man sich in einem Forum anmeldet. Habe keine Sorge, falls du dich unbehaglich fühlst, wenn du dich einer neuen Person vorstellen sollst, da es sich nicht um Personen handelt. +Auf dieser Seite findest Du eine Zusammenstellung von Gruppen, Foren und Promi-Seiten. Gruppen sind keine realen Personen. Sich mit diesen zu verbinden ist, als wenn man jemanden auf Facebook "liked" ("gefällt mir") oder wenn man sich in einem Forum anmeldet. Es gibt keinen Anlass zur Unsicherheit, ob Du Dich einfach so mit einer Gruppe verbinden kannst oder nicht, da es sich nicht um Personen handelt. -Wenn du dich mit einer Gruppe verbindest, erscheinen alle Nachrichten der Gruppe in deinem "Netzwerk"-Tab. Du kannst diese Beiträge kommentieren oder selbst in der Gruppe schreiben, ohne eine der Gruppenmitglieder persönlich hinzuzufügen. Das ist ein großartiger Weg, dynamisch neue Freunde zu gewinnen. Du findest Personen, die du magst, anstatt Fremde hinzuzufügen. Suche dir einfach eine Gruppe und füge sie so hinzu, wie du auch normale Freunde hinzufügst. Es gibt eine Menge Gruppen und möglicherweise findest du nicht wieder zu dieser Seite zurück. In diesem Fall nutze einfach den Link oben auf dieser Seite. +Wenn Du Dich mit einer Gruppe verbindest, erscheinen alle Nachrichten der Gruppe in Deinem "Netzwerk"-Tab. Du kannst diese Beiträge kommentieren oder selbst in der Gruppe schreiben, ohne eines der Gruppenmitglieder persönlich hinzuzufügen. Das ist ein großartiger Weg, dynamisch neue Freunde zu gewinnen. Du findest Personen Deines Interesses, anstatt Fremde hinzuzufügen. Suche Dir einfach eine Gruppe und füge sie so hinzu, wie Du auch normale Freunde hinzufügst. Es gibt eine Menge Gruppen. +Solltest Du beim Stöbern durch die vielen Gruppen nicht wieder hierher zurück finden, so nutze einfach den Link oben auf dieser Seite. -Wenn du einige Gruppen hinzugefügt hast, gehe weiter zum nächsten Schritt. +Wenn Du einige Gruppen hinzugefügt hast, gehe weiter zum nächsten Schritt. diff --git a/doc/de/Quick-Start-guide.md b/doc/de/Quick-Start-guide.md index eb0fd0539b..717055215d 100644 --- a/doc/de/Quick-Start-guide.md +++ b/doc/de/Quick-Start-guide.md @@ -1,17 +1,24 @@ Erste Schritte... -========== +================= * [Zur Startseite der Hilfe](help) -Das Erste zum Anfang: geh sicher, dass du schon eingeloggt bist. Wenn du noch nicht eingeloggt bist, kannst du das in dem Fenster unten machen. +Als Erstes: Gehe sicher, dass Du eingeloggt bist. Wenn Du noch nicht eingeloggt bist, kannst Du das in dem Fenster unten machen. -Sobald du eingeloggt bist (oder wenn du bereits eingeloggt bist), kannst du unten nun auf deine Profilseite schauen. +Sobald dies geschehen ist, schaust Du auf Deine Profilseite (https://***************.tls/profile/*****). -Hier sieht es ein wenig wie auf deiner Facebook-Seite aus. Hier findest du alle deine Statusmeldungen und Nachrichten deiner Freunde, die direkt auf deine Seite ("Wall") geschrieben haben. Um deinen Status einzutragen, klicke einfach auf die Box oben, in der "Teilen" steht. Wenn du das machst, vergrößert sich die Box. Nun kannst du einige Formatierungsoptionen wie Fett, kursiv, unterstrichen auswählen und ebenfalls Bilder und Links hinzufügen. Unten findest du in diesem Feld weitere Links, mit denen du Bilder und Dateien von deinem Computer hochladen, Webseiten mit einem Kurztext teilen und Video- und Audiodateien aus dem Internet einfügen kannst. Außerdem kannst du hier eintragen, wo du gerade bist. +Hier sieht es ein wenig wie auf (D)einer Facebook-Seite aus. Du findest hier alle Deine Statusmeldungen und Nachrichten Deiner Freunde, die direkt auf Deine "Pinnwand" ("Wall") geschrieben haben. Um Deinen Status einzutragen, klicke einfach auf die Box oben, in der "Teilen" steht. Wenn Du das machst, vergrößert sich die Box, und Du kannst nun Deinen Text eintragen, mit Hilfe einiger Formatierungsoptionen wie fett, kursiv, unterstrichen formatieren und ebenfalls Bilder und Links hinzufügen. Unten findest Du in diesem Feld weitere Knöpfe, mit denen Du Bilder und Dateien von Deinem Computer hochladen, Webseiten mit einem Kurztext teilen und Video- und Audiodateien aus dem Internet einfügen kannst. Außerdem kannst Du hier eintragen, wo Du gerade bist. -Wenn du deinen Beitrag ("Post") geschrieben hast, kannst du auf das "Schloss"-Symbol klicken und festlegen, wer deinen Beitrag sehen kann. Wenn du dieses Symbol nicht anklickst, ist dein Beitrag öffentlich. Das bedeutet, dass jeder, der dein Profil ansieht, der auf dem "Community"-Tab deines Servers oder auf dem "Netzwerk"-Tab ("Beiträge deiner Kontakte") eines befreundeten Kontakts ist, den Beitrag sehen kann. +Wenn Du Deinen Beitrag ("Post") geschrieben hast, kannst Du auf das "Schloss"-Symbol klicken und festlegen, wer Deinen Beitrag sehen kann. Wenn Du dieses Symbol nicht anklickst, ist Dein Beitrag öffentlich. +Ein öffentlicher Beitrag ist sichbar für +
    +
  • Besucher Deines Profils
  • +
  • Besucher Deiner "Gemeinschafts"-Seite
  • +
  • Besucher der Profile Deiner Kontakte
  • +
+ -Probiere es doch einfach mal aus. Wenn du fertig bist, schauen wir uns den "Netzwerk"-Tab an. +Probiere es doch einfach mal aus. Wenn Du fertig bist, schauen wir uns den "Netzwerk"-Tab an. diff --git a/doc/de/Quick-Start-makingnewfriends.md b/doc/de/Quick-Start-makingnewfriends.md index 24d9ee4186..ab56f03040 100644 --- a/doc/de/Quick-Start-makingnewfriends.md +++ b/doc/de/Quick-Start-makingnewfriends.md @@ -3,13 +3,15 @@ Neue Freunde finden * [Zur Startseite der Hilfe](help) -Hier siehst du die Kontaktvorschläge. Wenn du dich mal verirrt hast, kannst du diesen Link klicken und wieder hierher kommen. +Hier siehst Du die Kontaktvorschläge. Wenn Du Dich mal verirrt hast, kannst Du diesen Link klicken und wieder hierher kommen. -Diese Seite ist ein wenig wie die Kontaktvorschläge in Facebook. Jeder auf dieser Liste hat zugestimmt, als Kontaktvorschlag zu erscheinen. Das bedeutet, das sie Anfragen meist nicht ablehnen, da sie neue Leute kennenlernen wollen. +Diese Seite funktioniert in etwa wie die Kontaktvorschläge in Facebook. Jeder auf dieser Liste hat zugestimmt, als Kontaktvorschlag zu erscheinen. Das bedeutet, das sie Anfragen meist nicht ablehnen, da sie neue Leute kennenlernen wollen. -Siehst du jemanden, dessen Aussehen du magst? Klicke auf den "Verbinden"-Button beim Foto. Als nächstes kommst du zur Seite "Freundschafts-/Kontaktanfrage". Fülle das Formular wie vorgegeben aus und trage optional eine kleine Notiz ein. Nun musst du nur noch auf die Bestätigung warten. Beachte dabei, dass es sich um reale Personen handelt und es somit etwas dauern kann. Jetzt, nachdem du jemanden hinzugefügt hast, weißt du vielleicht nicht mehr, wie du zurückkommst. Klicke einfach auf den Link oben auf dieser Seite und du kommst zurück zur Seite mit den Kontaktvorschlägen, um weitere Personen hinzuzufügen. +Siehst Du jemanden, der Dir interessant erscheint? Klicke auf den "Verbinden"-Knopf beim Foto. Als nächstes kommst Du zur Seite "Freundschafts-/Kontaktanfrage". Fülle das Formular wie vorgegeben aus und trage optional eine kleine Notiz ein. Nun musst Du nur noch auf die Bestätigung warten. Beachte dabei, dass es sich um reale Personen handelt und es somit etwas dauern kann. -Du willst nicht einfach Personen hinzufügen, die du nicht kennst? Kein Problem - an dieser Stelle kommen wir zu den Gruppen und Seiten. +Jetzt, nachdem Du jemanden hinzugefügt hast, weißt Du vielleicht nicht mehr, wie Du zurückkommst. Klicke einfach auf den Link oben auf dieser Seite und Du gelangst zur Seite mit den Kontaktvorschlägen zurück, um weitere Personen hinzuzufügen. + +Du willst nicht einfach Personen hinzufügen, die Du nicht kennst? Kein Problem - an dieser Stelle kommen wir zu den Gruppen und Seiten. diff --git a/doc/de/Quick-Start-network.md b/doc/de/Quick-Start-network.md index 6132cd57fc..663d03c5e5 100644 --- a/doc/de/Quick-Start-network.md +++ b/doc/de/Quick-Start-network.md @@ -3,11 +3,11 @@ Deine "Netzwerk"-Seite * [Zur Startseite der Hilfe](help) -Das ist dein "Netzwerk"-Tab. Wenn du dich mal verirrt hast, kannst du diesen Link klicken, um wieder hierher zu kommen. +Dies ist Dein "Netzwerk"-Tab. Wenn Du Dich mal verirrt hast, kannst Du diesen Link klicken, um wieder hierher zu kommen. -Diese Seite ist ein wenig wie die News-Seite in Facebook oder der Stream in Diaspora. Hier findest du alle Beiträge deiner Kontakte, Gruppen und Feeds, die du eingetragen hast. Wenn du neu bist, siehst du hier noch nichts, falls du deinen Status im letzten Schritt noch nicht eingetragen hast. Wenn du bereits ein paar Freunde eingetragen hast, findest du hier ihre Beiträge. Hier kannst du Beiträge kommentieren, eintragen, dass du den Beitrag magst oder ablehnst oder die Profile durch einen Klick auf deren Namen anschauen und auf deren Seite ("Wall") Nachrichten schreiben. +Diese Seite ist ein wenig wie die News-Seite in Facebook oder der Stream in Diaspora. Hier findest Du alle Beiträge Deiner Kontakte, Gruppen und Feeds, die Du eingetragen hast. Wenn Du neu bist, siehst Du hier noch nichts, falls Du an Deinem Status im letzten Schritt noch nichts geändert haben solltest. Wenn Du bereits ein paar Freunde gefunden hast, so findest Du hier ihre Beiträge. Du kannst ihre Beiträge von hier aus kommentieren, mitteilen, dass Du den Beitrag magst oder ablehnst (Daumen hoch, Daumen runter) oder die Profile durch einen Klick auf deren Namen besuchen und dort auf deren "Pinnwand" ("Wall") Nachrichten schreiben. -Nun wollen wir diese Seite mit Inhalt füllen. Der erste Schritt ist es, Leute zu deinem Account hinzuzufügen. +Nun wollen wir diese Seite mit Inhalt füllen. Der erste Schritt ist es, Leute zu Deinem Account hinzuzufügen. From f6ea87298643a1fb1b948ed78b059c39d1c070f2 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Thu, 9 Apr 2015 00:10:21 +0200 Subject: [PATCH 023/306] The behaviour when following a new contact is now unified. --- include/follow.php | 4 +- mod/dfrn_request.php | 15 ++++++ mod/follow.php | 84 +++++++++++++++++++++++++++++++-- view/templates/auto_request.tpl | 13 ++++- view/templates/dfrn_request.tpl | 13 ++++- view/templates/follow.tpl | 2 +- 6 files changed, 121 insertions(+), 10 deletions(-) mode change 100644 => 100755 mod/follow.php diff --git a/include/follow.php b/include/follow.php index ba036cd48d..287a38b6bf 100644 --- a/include/follow.php +++ b/include/follow.php @@ -15,7 +15,7 @@ function new_contact($uid,$url,$interactive = false) { - $result = array('success' => false,'message' => ''); + $result = array('cid' => -1, 'success' => false,'message' => ''); $a = get_app(); @@ -208,7 +208,7 @@ function new_contact($uid,$url,$interactive = false) { $contact = $r[0]; $contact_id = $r[0]['id']; - + $result['cid'] = $contact_id; $g = q("select def_gid from user where uid = %d limit 1", intval($uid) diff --git a/mod/dfrn_request.php b/mod/dfrn_request.php index aee8c0306f..62b6f4bd70 100644 --- a/mod/dfrn_request.php +++ b/mod/dfrn_request.php @@ -664,6 +664,21 @@ function dfrn_request_content(&$a) { $dfrn_url = notags(trim(hex2bin($_GET['dfrn_url']))); $aes_allow = (((x($_GET,'aes_allow')) && ($_GET['aes_allow'] == 1)) ? 1 : 0); $confirm_key = (x($_GET,'confirm_key') ? $_GET['confirm_key'] : ""); + + // Checking fastlane for validity + if (x($_SESSION, "fastlane") AND (normalise_link($_SESSION["fastlane"]) == normalise_link($dfrn_url))) { + $_POST["dfrn_url"] = $dfrn_url; + $_POST["confirm_key"] = $confirm_key; + $_POST["localconfirm"] = 1; + $_POST["hidden-contact"] = 0; + $_POST["submit"] = t('Confirm'); + + dfrn_request_post($a); + + killme(); + return; // NOTREACHED + } + $tpl = get_markup_template("dfrn_req_confirm.tpl"); $o = replace_macros($tpl,array( '$dfrn_url' => $dfrn_url, diff --git a/mod/follow.php b/mod/follow.php old mode 100644 new mode 100755 index 5c2c764c7c..b9401ee825 --- a/mod/follow.php +++ b/mod/follow.php @@ -3,7 +3,7 @@ require_once('include/Scrape.php'); require_once('include/follow.php'); -function follow_init(&$a) { +function follow_content(&$a) { if(! local_user()) { notice( t('Permission denied.') . EOL); @@ -11,10 +11,85 @@ function follow_init(&$a) { // NOTREACHED } + $uid = local_user(); + $url = notags(trim($_REQUEST['url'])); + + $r = q("SELECT `url` FROM `contact` WHERE `uid` = %d AND (`nurl` = '%s' OR `alias` = '%s' OR `alias` = '%s') LIMIT 1", + intval(local_user()), dbesc(normalise_link($url)), dbesc(normalise_link($url)), dbesc($url)); + + if ($r) { + notice(t('You already added this contact.').EOL); + goaway($_SESSION['return_url']); + // NOTREACHED + } + + $ret = probe_url($url); + + if($ret['network'] === NETWORK_DFRN) { + $request = $ret["request"]; + $tpl = get_markup_template('dfrn_request.tpl'); + } else { + $request = $a->get_baseurl()."/follow"; + $tpl = get_markup_template('auto_request.tpl'); + } + + $r = q("SELECT `url` FROM `contact` WHERE `uid` = %d AND `self` LIMIT 1", intval($uid)); + + if (!$r) { + notice( t('Permission denied.') . EOL); + goaway($_SESSION['return_url']); + // NOTREACHED + } + + $myaddr = $r[0]["url"]; + + // Makes the connection request for friendica contacts easier + $_SESSION["fastlane"] = $ret["url"]; + + $o = replace_macros($tpl,array( + '$header' => $ret["name"]." (".$ret["addr"].")", + '$photo' => $ret["photo"], + '$desc' => "", + '$pls_answer' => t('Please answer the following:'), + '$does_know_you' => array('knowyou', sprintf(t('Does %s know you?'),$ret["name"]), false, '', array(t('No'),t('Yes'))), + '$add_note' => t('Add a personal note:'), + '$page_desc' => "", + '$friendica' => "", + '$statusnet' => "", + '$diaspora' => "", + '$diasnote' => "", + '$your_address' => t('Your Identity Address:'), + '$invite_desc' => "", + '$emailnet' => "", + '$submit' => t('Submit Request'), + '$cancel' => t('Cancel'), + '$nickname' => "", + '$name' => $ret["name"], + '$url' => $ret["url"], + '$myaddr' => $myaddr, + '$request' => $request + )); + return $o; +} + +function follow_post(&$a) { + + if(! local_user()) { + notice( t('Permission denied.') . EOL); + goaway($_SESSION['return_url']); + // NOTREACHED + } + + if ($_REQUEST['cancel']) + goaway($_SESSION['return_url']); + $uid = local_user(); $url = notags(trim($_REQUEST['url'])); $return_url = $_SESSION['return_url']; + // Makes the connection request for friendica contacts easier + // This is just a precaution if maybe this page is called somewhere directly via POST + $_SESSION["fastlane"] = $url; $result = new_contact($uid,$url,true); @@ -22,12 +97,13 @@ function follow_init(&$a) { if($result['message']) notice($result['message']); goaway($return_url); - } + } elseif ($result['cid']) + goaway($a->get_baseurl().'/contacts/'.$result['cid']); - info( t('Contact added') . EOL); + info( t('Contact added').EOL); if(strstr($return_url,'contacts')) - goaway($a->get_baseurl() . '/contacts/' . $contact_id); + goaway($a->get_baseurl().'/contacts/'.$contact_id); goaway($return_url); // NOTREACHED diff --git a/view/templates/auto_request.tpl b/view/templates/auto_request.tpl index b987b7849c..56653c6550 100644 --- a/view/templates/auto_request.tpl +++ b/view/templates/auto_request.tpl @@ -20,16 +20,27 @@

{{/if}} +{{if $request}} +
+{{else}} +{{/if}} + +{{if $photo}} + +{{/if}}
{{if $myaddr}} {{$myaddr}} - + {{else}} {{/if}} + {{if $url}} + + {{/if}}
diff --git a/view/templates/dfrn_request.tpl b/view/templates/dfrn_request.tpl index 44c8ef1e6a..6c63c53315 100644 --- a/view/templates/dfrn_request.tpl +++ b/view/templates/dfrn_request.tpl @@ -1,5 +1,3 @@ - -

{{$header}}

{{if $myaddr}} @@ -19,7 +17,15 @@

{{/if}} +{{if $request}} + +{{else}} +{{/if}} + +{{if $photo}} + +{{/if}}
@@ -29,6 +35,9 @@ {{else}} {{/if}} + {{if $url}} + + {{/if}}
diff --git a/view/templates/follow.tpl b/view/templates/follow.tpl index c4d1887657..ece5ed17b8 100644 --- a/view/templates/follow.tpl +++ b/view/templates/follow.tpl @@ -2,7 +2,7 @@

{{$connect}}

{{$desc}}
- +
From 015ebd7d1bef1dfbda1cc62a8e846b567a0ecbb3 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Thu, 9 Apr 2015 00:33:45 +0200 Subject: [PATCH 024/306] "fastlane" should now work with remote adding as well. --- boot.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/boot.php b/boot.php index 6da885117a..eb5c7e5cba 100644 --- a/boot.php +++ b/boot.php @@ -1695,6 +1695,8 @@ if(! function_exists('profile_sidebar')) { if($a->theme['template_engine'] === 'internal') $location = template_escape($location); + if ($connect) + $_SESSION["fastlane"] = $p["url"]; $tpl = get_markup_template('profile_vcard.tpl'); $o .= replace_macros($tpl, array( From ccbac6874baa8b82c2d0cede825c7f3572d3ea92 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Thu, 9 Apr 2015 07:45:48 +0200 Subject: [PATCH 025/306] The "connect" link ar the display page now directs to the new "follow" page as well. --- mod/display.php | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/mod/display.php b/mod/display.php index f483977cd4..02ff37bf83 100644 --- a/mod/display.php +++ b/mod/display.php @@ -193,11 +193,13 @@ function display_fetchauthor($a, $item) { } if (local_user()) { - if ($profiledata["network"] == NETWORK_DFRN) { - $connect = str_replace("/profile/", "/dfrn_request/", $profiledata["url"])."&addr=".bin2hex($a->get_baseurl()."/profile/".$a->user["nickname"]); - $profiledata["remoteconnect"] = $connect; - } elseif ($profiledata["network"] == NETWORK_DIASPORA) - $profiledata["remoteconnect"] = $a->get_baseurl()."/contacts?add=".GetProfileUsername($profiledata["url"], "", true); + if (in_array($profiledata["network"], array(NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS))) + $profiledata["remoteconnect"] = $a->get_baseurl()."/follow?url=".urlencode($profiledata["url"]); + //if ($profiledata["network"] == NETWORK_DFRN) { + // $connect = str_replace("/profile/", "/dfrn_request/", $profiledata["url"])."&addr=".bin2hex($a->get_baseurl()."/profile/".$a->user["nickname"]); + // $profiledata["remoteconnect"] = $connect; + //} elseif ($profiledata["network"] == NETWORK_DIASPORA) + // $profiledata["remoteconnect"] = $a->get_baseurl()."/contacts?add=".GetProfileUsername($profiledata["url"], "", true); } elseif ($profiledata["network"] == NETWORK_DFRN) { $connect = str_replace("/profile/", "/dfrn_request/", $profiledata["url"]); $profiledata["remoteconnect"] = $connect; From 98bf8d85fa81ada5096104a97ed206f86081f534 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Thu, 9 Apr 2015 19:35:17 +0200 Subject: [PATCH 026/306] The "fastlane" can be removed there. --- boot.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/boot.php b/boot.php index eb5c7e5cba..cb380ed995 100644 --- a/boot.php +++ b/boot.php @@ -1695,9 +1695,6 @@ if(! function_exists('profile_sidebar')) { if($a->theme['template_engine'] === 'internal') $location = template_escape($location); - if ($connect) - $_SESSION["fastlane"] = $p["url"]; - $tpl = get_markup_template('profile_vcard.tpl'); $o .= replace_macros($tpl, array( '$profile' => $p, From 662fd848915445eb68ffce066bbead24bd25efc8 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Fri, 10 Apr 2015 00:42:03 +0200 Subject: [PATCH 027/306] Automention of communities when a single contact is selected on the network page. --- mod/network.php | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/mod/network.php b/mod/network.php index 0f9b0d2339..c5b666fae2 100644 --- a/mod/network.php +++ b/mod/network.php @@ -452,11 +452,6 @@ function network_content(&$a, $update = 0) { } set_pconfig(local_user(), 'network.view', 'net.selected', ($nets ? $nets : 'all')); -/*if ($update) { -print_r($_GET); -die("ss"); -}*/ - if(! $update) { if($group) { if(($t = group_public_members($group)) && (! get_pconfig(local_user(),'system','nowarn_insecure'))) { @@ -471,6 +466,14 @@ die("ss"); $celeb = ((($a->user['page-flags'] == PAGE_SOAPBOX) || ($a->user['page-flags'] == PAGE_COMMUNITY)) ? true : false); + $content = ""; + + if ($cid) { + $contact = q("SELECT `nick` FROM `contact` WHERE `id` = %d AND `uid` = %d AND `forum`", $cid, local_user()); + if ($contact) + $content = "@".$contact[0]["nick"]."+".$cid; + } + $x = array( 'is_owner' => true, 'allow_location' => $a->user['allow_location'], @@ -483,6 +486,7 @@ die("ss"); 'visitor' => 'block', 'profile_uid' => local_user(), 'acl_data' => construct_acl_data($a, $a->user), // For non-Javascript ACL selector + 'content' => $content, ); $o .= status_editor($a,$x); From 489af0d55d1e74bb61759d6211b1abaee2faee85 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Fri, 10 Apr 2015 00:54:42 +0200 Subject: [PATCH 028/306] Just added some forgotten escaping. --- mod/network.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod/network.php b/mod/network.php index c5b666fae2..fafee97c07 100644 --- a/mod/network.php +++ b/mod/network.php @@ -469,7 +469,7 @@ function network_content(&$a, $update = 0) { $content = ""; if ($cid) { - $contact = q("SELECT `nick` FROM `contact` WHERE `id` = %d AND `uid` = %d AND `forum`", $cid, local_user()); + $contact = q("SELECT `nick` FROM `contact` WHERE `id` = %d AND `uid` = %d AND `forum`", intval($cid), intval(local_user())); if ($contact) $content = "@".$contact[0]["nick"]."+".$cid; } From 0e895e24f7791fbbfec99fc7b911ba27613cc135 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 11 Apr 2015 22:14:56 +0200 Subject: [PATCH 029/306] Code reworks: replaced hardcoded network text with the corresponding constants. --- include/acl_selectors.php | 14 +++++++------- include/conversation.php | 2 +- include/text.php | 2 +- mod/contacts.php | 4 ++-- mod/dfrn_confirm.php | 3 ++- mod/photos.php | 2 +- mod/profperm.php | 12 +++++++----- 7 files changed, 21 insertions(+), 18 deletions(-) diff --git a/include/acl_selectors.php b/include/acl_selectors.php index 668544b0bc..1e43431612 100644 --- a/include/acl_selectors.php +++ b/include/acl_selectors.php @@ -78,19 +78,19 @@ function contact_selector($selname, $selclass, $preselected = false, $options) { if(x($options,'networks')) { switch($options['networks']) { case 'DFRN_ONLY': - $networks = array('dfrn'); + $networks = array(NETWORK_DFRN); break; case 'PRIVATE': if(is_array($a->user) && $a->user['prvnets']) - $networks = array('dfrn','mail','dspr'); + $networks = array(NETWORK_DFRN,NETWORK_MAIL,NETWORK_DIASPORA); else - $networks = array('dfrn','face','mail', 'dspr'); + $networks = array(NETWORK_DFRN,NETWORK_FACEBOOK,NETWORK_MAIL, NETWORK_DIASPORA); break; case 'TWO_WAY': if(is_array($a->user) && $a->user['prvnets']) - $networks = array('dfrn','mail','dspr'); + $networks = array(NETWORK_DFRN,NETWORK_MAIL,NETWORK_DIASPORA); else - $networks = array('dfrn','face','mail','dspr','stat'); + $networks = array(NETWORK_DFRN,NETWORK_FACEBOOK,NETWORK_MAIL,NETWORK_DIASPORA,NETWORK_OSTATUS); break; default: break; @@ -182,10 +182,10 @@ function contact_select($selname, $selclass, $preselected = false, $size = 4, $p } if($privmail) { - $sql_extra .= " AND `network` IN ( 'dfrn', 'dspr' ) "; + $sql_extra .= " AND `network` IN ( NETWORK_DFRN, NETWORK_DIASPORA ) "; } elseif($privatenet) { - $sql_extra .= " AND `network` IN ( 'dfrn', 'mail', 'face', 'dspr' ) "; + $sql_extra .= " AND `network` IN ( NETWORK_DFRN, NETWORK_MAIL, NETWORK_FACEBOOK, NETWORK_DIASPORA ) "; } $tabindex = ($tabindex > 0 ? "tabindex=\"$tabindex\"" : ""); diff --git a/include/conversation.php b/include/conversation.php index 20b54728c9..a6ea4da810 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -908,7 +908,7 @@ function like_puller($a,$item,&$arr,$mode) { if((activity_match($item['verb'],$verb)) && ($item['id'] != $item['parent'])) { $url = $item['author-link']; - if((local_user()) && (local_user() == $item['uid']) && ($item['network'] === 'dfrn') && (! $item['self']) && (link_compare($item['author-link'],$item['url']))) { + if((local_user()) && (local_user() == $item['uid']) && ($item['network'] === NETWORK_DFRN) && (! $item['self']) && (link_compare($item['author-link'],$item['url']))) { $url = $a->get_baseurl(true) . '/redir/' . $item['contact-id']; $sparkle = ' class="sparkle" '; } diff --git a/include/text.php b/include/text.php index 8ce54b3c67..fd5ae0a2b6 100644 --- a/include/text.php +++ b/include/text.php @@ -920,7 +920,7 @@ function micropro($contact, $redirect = false, $class = '', $textmode = false) { if($redirect) { $a = get_app(); $redirect_url = $a->get_baseurl() . '/redir/' . $contact['id']; - if(local_user() && ($contact['uid'] == local_user()) && ($contact['network'] === 'dfrn')) { + if(local_user() && ($contact['uid'] == local_user()) && ($contact['network'] === NETWORK_DFRN)) { $redir = true; $url = $redirect_url; $sparkle = ' sparkle'; diff --git a/mod/contacts.php b/mod/contacts.php index 95b1944dc8..4a0d34a467 100644 --- a/mod/contacts.php +++ b/mod/contacts.php @@ -33,7 +33,7 @@ function contacts_init(&$a) { $vcard_widget = replace_macros(get_markup_template("vcard-widget.tpl"),array( '$name' => $a->data['contact']['name'], '$photo' => $a->data['contact']['photo'], - '$url' => ($a->data['contact']['network'] == 'dfrn') ? $a->get_baseurl()."/redir/".$a->data['contact']['id'] : $a->data['contact']['url'] + '$url' => ($a->data['contact']['network'] == NETWORK_DFRN) ? $a->get_baseurl()."/redir/".$a->data['contact']['id'] : $a->data['contact']['url'] )); $follow_widget = ''; } @@ -681,7 +681,7 @@ function contacts_content(&$a) { default: break; } - if(($rr['network'] === 'dfrn') && ($rr['rel'])) { + if(($rr['network'] === NETWORK_DFRN) && ($rr['rel'])) { $url = "redir/{$rr['id']}"; $sparkle = ' class="sparkle" '; } diff --git a/mod/dfrn_confirm.php b/mod/dfrn_confirm.php index f1ce296d90..1cc258853b 100644 --- a/mod/dfrn_confirm.php +++ b/mod/dfrn_confirm.php @@ -340,7 +340,7 @@ function dfrn_confirm_post(&$a,$handsfree = null) { `pending` = 0, `duplex` = %d, `hidden` = %d, - `network` = 'dfrn' WHERE `id` = %d + `network` = '%s' WHERE `id` = %d ", dbesc($photos[0]), dbesc($photos[1]), @@ -351,6 +351,7 @@ function dfrn_confirm_post(&$a,$handsfree = null) { dbesc(datetime_convert()), intval($duplex), intval($hidden), + dbesc(NETWORK_DFRN), intval($contact_id) ); } diff --git a/mod/photos.php b/mod/photos.php index 003bcd9150..f8bba01b00 100644 --- a/mod/photos.php +++ b/mod/photos.php @@ -1628,7 +1628,7 @@ function photos_content(&$a) { if(local_user() && ($item['contact-uid'] == local_user()) - && ($item['network'] == 'dfrn') && (! $item['self'] )) { + && ($item['network'] == NETWORK_DFRN) && (! $item['self'] )) { $profile_url = $redirect_url; $sparkle = ' sparkle'; } diff --git a/mod/profperm.php b/mod/profperm.php index 444f7a5eab..077f695bea 100644 --- a/mod/profperm.php +++ b/mod/profperm.php @@ -37,7 +37,8 @@ function profperm_content(&$a) { if(($a->argc > 2) && intval($a->argv[1]) && intval($a->argv[2])) { $r = q("SELECT `id` FROM `contact` WHERE `blocked` = 0 AND `pending` = 0 AND `self` = 0 - AND `network` = 'dfrn' AND `id` = %d AND `uid` = %d LIMIT 1", + AND `network` = '%s' AND `id` = %d AND `uid` = %d LIMIT 1", + dbesc(NETWORK_DFRN), intval($a->argv[2]), intval(local_user()) ); @@ -130,10 +131,11 @@ function profperm_content(&$a) { $o .= '

' . t("All Contacts \x28with secure profile access\x29") . '

'; $o .= ''; $o .= '
'; - - $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `blocked` = 0 and `pending` = 0 and `self` = 0 - AND `network` = 'dfrn' ORDER BY `name` ASC", - intval(local_user()) + + $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `blocked` = 0 and `pending` = 0 and `self` = 0 + AND `network` = '%s' ORDER BY `name` ASC", + intval(local_user()), + dbesc(NETWORK_DFRN) ); if(count($r)) { From 2c3e2908b244d4d6a95104f8278eaecd57bd3a1d Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 11 Apr 2015 23:51:47 +0200 Subject: [PATCH 030/306] There is now a new possibility to update contact data. --- mod/contacts.php | 72 +++++++++++++++++++++++++++++++++++--- mod/crepair.php | 4 +++ view/templates/crepair.tpl | 6 ++++ 3 files changed, 78 insertions(+), 4 deletions(-) diff --git a/mod/contacts.php b/mod/contacts.php index 95b1944dc8..05a84279b0 100644 --- a/mod/contacts.php +++ b/mod/contacts.php @@ -3,7 +3,9 @@ require_once('include/Contact.php'); require_once('include/socgraph.php'); require_once('include/contact_selectors.php'); +require_once('include/Scrape.php'); require_once('mod/proxy.php'); +require_once('include/Photo.php'); function contacts_init(&$a) { if(! local_user()) @@ -33,7 +35,7 @@ function contacts_init(&$a) { $vcard_widget = replace_macros(get_markup_template("vcard-widget.tpl"),array( '$name' => $a->data['contact']['name'], '$photo' => $a->data['contact']['photo'], - '$url' => ($a->data['contact']['network'] == 'dfrn') ? $a->get_baseurl()."/redir/".$a->data['contact']['id'] : $a->data['contact']['url'] + '$url' => ($a->data['contact']['network'] == 'dfrn') ? $a->get_baseurl()."/redir/".$a->data['contact']['id'] : $a->data['contact']['url'] )); $follow_widget = ''; } @@ -205,8 +207,64 @@ function contacts_post(&$a) { /*contact actions*/ function _contact_update($contact_id) { // pull feed and consume it, which should subscribe to the hub. - proc_run('php',"include/poller.php","$contact_id"); + proc_run('php',"include/poller.php","$contact_id"); } + +function _contact_update_profile($contact_id) { + $r = q("SELECT `url` FROM `contact` WHERE `id` = %d", intval($contact_id)); + if (!$r) + return; + + $data = probe_url($r[0]["url"]); + + $updatefields = array("name", "nick", "url", "addr", "batch", "notify", "poll", "request", "confirm", + "poco", "network", "alias", "pubkey"); + $update = array(); + + foreach($updatefields AS $field) + if (isset($data[$field]) AND ($data[$field] != "")) + $update[$field] = $data[$field]; + + $query = ""; + + if (isset($data["priority"]) AND ($data["priority"] != 0)) + $query = "`priority` = ".intval($data["priority"]); + + foreach($update AS $key => $value) { + if ($query != "") + $query .= ", "; + + $query .= "`".$key."` = '".dbesc($value)."'"; + } + + if ($query == "") + return; + + $r = q("UPDATE `contact` SET $query WHERE `id` = %d AND `uid` = %d", + intval($contact_id), + intval(local_user()) + ); + + $photos = import_profile_photo($data['photo'], local_user(), $contact_id); + + $r = q("UPDATE `contact` SET `photo` = '%s', + `thumb` = '%s', + `micro` = '%s', + `name-date` = '%s', + `uri-date` = '%s', + `avatar-date` = '%s' + WHERE `id` = %d", + dbesc($photos[0]), + dbesc($photos[1]), + dbesc($photos[2]), + dbesc(datetime_convert()), + dbesc(datetime_convert()), + dbesc(datetime_convert()), + intval($contact_id) + ); + +} + function _contact_block($contact_id, $orig_record) { $blocked = (($orig_record['blocked']) ? 0 : 1); $r = q("UPDATE `contact` SET `blocked` = %d WHERE `id` = %d AND `uid` = %d", @@ -284,6 +342,12 @@ function contacts_content(&$a) { // NOTREACHED } + if($cmd === 'updateprofile') { + _contact_update_profile($contact_id); + goaway($a->get_baseurl(true) . '/contacts/' . $contact_id); + // NOTREACHED + } + if($cmd === 'block') { $r = _contact_block($contact_id, $orig_record[0]); if($r) { @@ -734,7 +798,7 @@ function contacts_content(&$a) { ), '$paginate' => paginate($a), - )); - + )); + return $o; } diff --git a/mod/crepair.php b/mod/crepair.php index 400817d6f7..670143d35f 100644 --- a/mod/crepair.php +++ b/mod/crepair.php @@ -160,8 +160,12 @@ function crepair_content(&$a) { else $remote_self_options = array('0'=>t('No mirroring'), '2'=>t('Mirror as my own posting')); + $update_profile = in_array($contact['network'], array(NETWORK_DFRN, NETWORK_DSPR, NETWORK_OSTATUS)); + $tpl = get_markup_template('crepair.tpl'); $o .= replace_macros($tpl, array( + '$update_profile' => update_profile, + '$udprofilenow' => t('Update profile now'), '$label_name' => t('Name'), '$label_nick' => t('Account Nickname'), '$label_attag' => t('@Tagname - overrides Name/Nickname'), diff --git a/view/templates/crepair.tpl b/view/templates/crepair.tpl index a94f1f2d3c..5b3a6281eb 100644 --- a/view/templates/crepair.tpl +++ b/view/templates/crepair.tpl @@ -2,6 +2,12 @@

{{$contact_name}}

+
+{{if $update_profile}} + {{$udprofilenow}} +{{/if}} +
+
From 04d9d9863d114e14cea54517c753faf7f7d169ca Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 11 Apr 2015 23:56:53 +0200 Subject: [PATCH 031/306] Fixed "Copy and paste" bug. --- include/acl_selectors.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/include/acl_selectors.php b/include/acl_selectors.php index 1e43431612..b2c4b31c81 100644 --- a/include/acl_selectors.php +++ b/include/acl_selectors.php @@ -181,12 +181,12 @@ function contact_select($selname, $selclass, $preselected = false, $size = 4, $p $sql_extra .= sprintf(" AND `rel` = %d ", intval(CONTACT_IS_FRIEND)); } - if($privmail) { - $sql_extra .= " AND `network` IN ( NETWORK_DFRN, NETWORK_DIASPORA ) "; - } - elseif($privatenet) { - $sql_extra .= " AND `network` IN ( NETWORK_DFRN, NETWORK_MAIL, NETWORK_FACEBOOK, NETWORK_DIASPORA ) "; - } + if($privmail) + $sql_extra .= sprintf(" AND `network` IN ('%s' , '%s') ", + NETWORK_DFRN, NETWORK_DIASPORA); + elseif($privatenet) + $sql_extra .= sprintf(" AND `network` IN ('%s' , '%s', '%s', '%s') ", + NETWORK_DFRN, NETWORK_MAIL, NETWORK_FACEBOOK, NETWORK_DIASPORA); $tabindex = ($tabindex > 0 ? "tabindex=\"$tabindex\"" : ""); From a0adf8c6a2f0c7520f90fbba46e426701a5a5d73 Mon Sep 17 00:00:00 2001 From: fabrixxm Date: Sun, 12 Apr 2015 08:53:30 +0200 Subject: [PATCH 032/306] change remoteauth endpoint path --- include/api.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/api.php b/include/api.php index 6f1c4eaed8..dd24a92c9b 100644 --- a/include/api.php +++ b/include/api.php @@ -2680,7 +2680,7 @@ * c_url: url of remote contact to auth to * url: string, url to redirect after auth */ - function api_dfrn_remoteauth(&$a) { + function api_friendica_remoteauth(&$a) { $url = ((x($_GET,'url')) ? $_GET['url'] : ''); $c_url = ((x($_GET,'c_url')) ? $_GET['c_url'] : ''); @@ -2729,7 +2729,7 @@ . '&dfrn_version=' . DFRN_PROTOCOL_VERSION . '&type=profile&sec=' . $sec . $dest . $quiet ); } - api_register_func('api/dfrn/remoteauth', 'api_dfrn_remoteauth', true); + api_register_func('api/friendica/remoteauth', 'api_friendica_remoteauth', true); From 64e343ed4ba8c9de97dea4adba082b475cb6ad02 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 12 Apr 2015 10:32:02 +0200 Subject: [PATCH 033/306] Some refinement to the contact update --- mod/contacts.php | 10 ++++++++-- mod/crepair.php | 2 +- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/mod/contacts.php b/mod/contacts.php index 2e70c9ab88..5d40ff9940 100644 --- a/mod/contacts.php +++ b/mod/contacts.php @@ -211,12 +211,16 @@ function _contact_update($contact_id) { } function _contact_update_profile($contact_id) { - $r = q("SELECT `url` FROM `contact` WHERE `id` = %d", intval($contact_id)); + $r = q("SELECT `url`, `network` FROM `contact` WHERE `id` = %d", intval($contact_id)); if (!$r) return; $data = probe_url($r[0]["url"]); + // "Feed" is mostly a sign of communication problems + if (($data["network"] == NETWORK_FEED) AND ($data["network"] != $r[0]["network"])) + return; + $updatefields = array("name", "nick", "url", "addr", "batch", "notify", "poll", "request", "confirm", "poco", "network", "alias", "pubkey"); $update = array(); @@ -225,6 +229,8 @@ function _contact_update_profile($contact_id) { if (isset($data[$field]) AND ($data[$field] != "")) $update[$field] = $data[$field]; + $update["nurl"] = normalise_link($data["url"]); + $query = ""; if (isset($data["priority"]) AND ($data["priority"] != 0)) @@ -344,7 +350,7 @@ function contacts_content(&$a) { if($cmd === 'updateprofile') { _contact_update_profile($contact_id); - goaway($a->get_baseurl(true) . '/contacts/' . $contact_id); + goaway($a->get_baseurl(true) . '/crepair/' . $contact_id); // NOTREACHED } diff --git a/mod/crepair.php b/mod/crepair.php index 670143d35f..55231faf7d 100644 --- a/mod/crepair.php +++ b/mod/crepair.php @@ -165,7 +165,7 @@ function crepair_content(&$a) { $tpl = get_markup_template('crepair.tpl'); $o .= replace_macros($tpl, array( '$update_profile' => update_profile, - '$udprofilenow' => t('Update profile now'), + '$udprofilenow' => t('Refetch contact data'), '$label_name' => t('Name'), '$label_nick' => t('Account Nickname'), '$label_attag' => t('@Tagname - overrides Name/Nickname'), From 9a35e861ce0418552e0ea926b065ba36fecf63a9 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 12 Apr 2015 11:40:38 +0200 Subject: [PATCH 034/306] New field in the contact table to better detect "dead profiles" --- boot.php | 2 +- database.sql | 5 +++-- include/dbstructure.php | 1 + include/items.php | 20 ++++++++++++++++---- update.php | 2 +- 5 files changed, 22 insertions(+), 8 deletions(-) diff --git a/boot.php b/boot.php index cb380ed995..5e0a70db1f 100644 --- a/boot.php +++ b/boot.php @@ -18,7 +18,7 @@ define ( 'FRIENDICA_PLATFORM', 'Friendica'); define ( 'FRIENDICA_CODENAME', 'Lily of the valley'); define ( 'FRIENDICA_VERSION', '3.4.0' ); define ( 'DFRN_PROTOCOL_VERSION', '2.23' ); -define ( 'DB_UPDATE_VERSION', 1182 ); +define ( 'DB_UPDATE_VERSION', 1183 ); define ( 'EOL', "
\r\n" ); define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' ); diff --git a/database.sql b/database.sql index 8babeb4d4f..ab597825cd 100644 --- a/database.sql +++ b/database.sql @@ -1,6 +1,6 @@ -- ------------------------------------------ --- Friendica 3.4.0 (Ginger) --- DB_UPDATE_VERSION 1182 +-- Friendica 3.4.0 (Lily of the valley) +-- DB_UPDATE_VERSION 1183 -- ------------------------------------------ @@ -140,6 +140,7 @@ CREATE TABLE IF NOT EXISTS `contact` ( `uri-date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `avatar-date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `term-date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `last-item` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `priority` tinyint(3) NOT NULL DEFAULT 0, `blocked` tinyint(1) NOT NULL DEFAULT 1, `readonly` tinyint(1) NOT NULL DEFAULT 0, diff --git a/include/dbstructure.php b/include/dbstructure.php index f131abe64f..d25834edff 100644 --- a/include/dbstructure.php +++ b/include/dbstructure.php @@ -453,6 +453,7 @@ function db_definition() { "uri-date" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"), "avatar-date" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"), "term-date" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"), + "last-item" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"), "priority" => array("type" => "tinyint(3)", "not null" => "1", "default" => "0"), "blocked" => array("type" => "tinyint(1)", "not null" => "1", "default" => "1"), "readonly" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"), diff --git a/include/items.php b/include/items.php index 3832b80b31..8a0deb437b 100644 --- a/include/items.php +++ b/include/items.php @@ -1391,12 +1391,24 @@ function item_store($arr,$force_parent = false, $notify = false, $dontcache = fa $current_post = $r[0]['id']; logger('item_store: created item ' . $current_post); - // Set "success_update" to the date of the last time we heard from this contact - // This can be used to filter for inactive contacts and poco. + // Set "success_update" and "last-item" to the date of the last time we heard from this contact + // This can be used to filter for inactive contacts. // Only do this for public postings to avoid privacy problems, since poco data is public. // Don't set this value if it isn't from the owner (could be an author that we don't know) - if (!$arr['private'] AND (($arr["author-link"] === $arr["owner-link"]) OR ($arr["parent-uri"] === $arr["uri"]))) - q("UPDATE `contact` SET `success_update` = '%s' WHERE `id` = %d", + + $update = (!$arr['private'] AND (($arr["author-link"] === $arr["owner-link"]) OR ($arr["parent-uri"] === $arr["uri"]))); + + // Is it a forum? Then we don't care about the rules from above + if (!$update AND ($arr["network"] == NETWORK_DFRN) AND ($arr["parent-uri"] === $arr["uri"])) { + $isforum = q("SELECT `forum` FROM `contact` WHERE `id` = %d AND `forum`", + intval($arr['contact-id'])); + if ($isforum) + $update = true; + } + + if ($update) + q("UPDATE `contact` SET `success_update` = '%s', `last-item` = '%s' WHERE `id` = %d", + dbesc($arr['received']), dbesc($arr['received']), intval($arr['contact-id']) ); diff --git a/update.php b/update.php index 5b0b4cd251..35aaff2c06 100644 --- a/update.php +++ b/update.php @@ -1,6 +1,6 @@ Date: Sun, 12 Apr 2015 15:32:02 +0200 Subject: [PATCH 035/306] Capitalization of addresses an linguistic style in Account-Basics.md --- doc/de/Account-Basics.md | 34 ++++++++++++++++++---------------- 1 file changed, 18 insertions(+), 16 deletions(-) diff --git a/doc/de/Account-Basics.md b/doc/de/Account-Basics.md index 3319560e7f..8089695764 100644 --- a/doc/de/Account-Basics.md +++ b/doc/de/Account-Basics.md @@ -6,68 +6,70 @@ Account - Basics **Registrierung** -Nicht alle Friendica-Seiten bieten eine freie Registrierung. Wenn die Registrierung erlaubt ist, zeigt sich sofort ein "Registrieren"-Link unter dem Login-Feld auf der Startseite. Ein Klick auf diesen Link führt zur Registrierungsseite. Die Stärke unseres Netzwerks ist, dass viele verschiedene Seiten komplett kompatible zueinander sind. Wenn die Seite, die du besuchst, eine Registrierung nicht erlaubt oder wenn du glaubst, dass dir eine andere Seite möglicherweise besser gefällt, dann kannst du hier eine Liste von öffentlichen Servern finden und die Seite suchen, die zu deinen Anforderungen passt. +Nicht alle Friendica-Knoten bieten die Möglichkeit einer Registrierung. Wenn eine Registrierung möglich ist, wird ein "Registrieren"-Link unter dem Login-Feld auf der Startseite angezeigt, der zur Registrierungsseite führt. Die Stärke unseres Netzwerks liegt darin, dass die verschiedenen Knoten komplett kompatibel zueinander sind. +Wenn der Knoten, den Du besuchst, keine Registrierung anbietet, oder wenn Du glaubst, dass Dir eine andere Seite möglicherweise besser gefällt, dann kannst Du hier eine Liste von öffentlichen Servern (Knoten) finden und den Knoten heraus suchen, der am Besten zu Deinen Anforderungen passt. -Wenn du deinen eigenen Server aufsetzen willst, kannst du das ebenfalls machen. Besuche die Friendica-Webseite, um den Code mit den Installationsanleitungen herunterzuladen. Es ist ein einfacher Installationsprozess, den jeder mit ein wenig Erfahrungen im Webseiten-Hosting oder mit grundlegenden Linux-Erfahrungen einfach handhaben kann. +Wenn Du Deinen eigenen Server aufsetzen willst, kannst Du das ebenfalls machen. Besuche die Friendica-Webseite, um den Code mit den Installationsanleitungen herunterzuladen. Es ist ein einfacher Installationsprozess, den jeder mit ein wenig Erfahrungen im Webseiten-Hosting oder mit grundlegenden Linux-Erfahrungen einfach handhaben kann. *OpenID* -Das erste Feld auf der Registrierungsseite ist für eine OpenID-Adresse. Wenn du keine OpenID-Adresse hast oder nicht wünschst, diese zu nutzen, dann lasse das Feld frei. Wenn du einen OpenID-Account hast und diesen nutzen willst, gib die Adresse in das Feld ein und klicke auf "Registrieren". Friendica wird versuchen, so viele Informationen wie möglich von deinem OpenID-Provider zu übernehmen, um diese in dein Profil auf dieser Seite einzutragen. +Das erste Feld auf der Registrierungsseite ist für eine OpenID-Adresse. Wenn Du keine OpenID-Adresse hast oder diese nicht verwenden möchtest, dann lasse das Feld frei. Wenn Du einen OpenID-Account hast und diesen nutzen willst, gib die Adresse in das Feld ein und klicke auf "Registrieren". Friendica wird versuchen, so viele Informationen wie möglich von Deinem OpenID-Provider zu übernehmen, um diese in Dein Profil auf dieser Seite einzutragen. *Dein vollständiger Name* -Bitte trage deinen vollständigen Namen **so ein, wie du ihn im System anzeigen lassen willst**. Viele Leute nutzen ihren richtigen Namen hierfür, allerdings besteht für dich keine Pflicht, das auch so zu machen. +Bitte trage Deinen vollständigen Namen **so ein, wie Du ihn im System anzeigen lassen willst**. Viele Leute nutzen ihren richtigen Namen hierfür, allerdings besteht für Dich dazu keine Verpflichtung. *Email-Adresse* -Bitte trage eine richtige Email-Adresse ein. Deine Email-Adresse wird **niemals** veröffentlicht. Wir benötigen diese, um dir Account-Informationen und die Login-Daten zu schicken. Du erhältst zudem von Zeit zu Zeit Benachrichtigungen über eingegangene Nachrichten oder Punkte, die deine Aufmerksamkeit benötigen. Du hast aber auch die Möglichkeit, diese Nachrichten in deinen Account-Einstellungen komplett abzuschalten. Du musst nicht deine Haupt-Email-Adresse sein, jedoch wird eine funktionierende Adresse benötigt. Ohne dieses kannst du weder dein Initialpasswort erhalten, noch dein Passwort zurücksetzen. Dies ist die einzige persönliche Information, die korrekt sein muss. +Bitte trage eine richtige Email-Adresse ein. Deine Email-Adresse wird **niemals** veröffentlicht. Wir benötigen diese, um Dir Account-Informationen und die Login-Daten zuzuschicken. Du erhältst zudem von Zeit zu Zeit Benachrichtigungen über eingegangene Nachrichten oder Punkte, die Deine Aufmerksamkeit benötigen. Du hast aber auch die Möglichkeit, diese Nachrichten in Deinen Account-Einstellungen komplett abzuschalten.
+Bei der Wahl der Email-Adresse bist Du völlig frei, sie sollte aber funktionieren, und Du musst Zugriff auf sie haben. Ohne diese Adresse kannst Du weder Dein Initialpasswort erhalten, noch Dein Passwort zurücksetzen. Dies ist die einzige persönliche Information, die korrekt sein muss. *Spitzname/Nickname* -Der Spitzname wird benötigt, um eine Webadresse für viele deiner persönlichen Seiten zu erstellen. Auch wird dieser wie eine Email-Adresse genutzt, wenn eine Verbindung zu anderen Personen hergestellt werden soll. Durch die Art, wie der Spitzname genutzt wird, gibt es bestimmte Einschränkungen. Er darf nur US-ASCII-Textzeichen und Nummern enthalten und er muss zudem mit einem Buchstaben beginnen. Er muss außerdem einzigartig im System sein. Dieser Spitzname wird an vielen Stellen genutzt, um deinen Account zu identifizieren, und kann daher später nicht mehr geändert werden. +Der Spitzname wird benötigt, um eine Webadresse für Deine persönlichen Seiten zu erstellen. Auch wird dieser wie eine Email-Adresse genutzt, wenn eine Verbindung zu anderen Personen hergestellt werden soll. Durch die Art, wie der Spitzname genutzt wird, ergeben sich bestimmte Einschränkungen: Er darf nur US-ASCII-Textzeichen und Ziffern enthalten und er muss zudem mit einem Buchstaben beginnen. Außerdem muss er einzigartig im System sein. Dieser Spitzname wird an vielen Stellen genutzt, um Deinen Account zu identifizieren, und kann daher **später nicht mehr geändert werden**. *Verzeichnis-Eintrag* -Das Registrierungsformular erlaubt es dir, direkt auszuwählen, ob du im Onlineverzeichnis aufgelistet wirst oder nicht. Das ist wie ein Telefonbuch und du kannst entscheiden, nicht aufgeführt zu werden. Wir bitten dich, "Ja" zu wählen, so dass dich andere Leute (Freunde, Familie etc.) finden können. Wenn du "Nein" wählst, wirst du hauptsächlich unsichtbar sein und nur wenige Möglichkeiten zur Interaktion haben. Was auch immer du wählst, kann jederzeit nach dem Login in deinen Account-Einstellungen geändert werden. +Das Registrierungsformular erlaubt es Dir, direkt zu bestimmen, ob Du in dem einem Telefonbuch vergleichbaren Onlineverzeichnis aufgelistet werden sollst oder nicht. Wir bitten dich, "Ja" zu wählen, so dass Dich andere Leute (Freunde, Familie etc.) finden können. Wenn Du "Nein" wählst, wirst Du gewissermaßen unsichtbar sein und nur wenige Möglichkeiten zur Interaktion haben. Was auch immer Du wählst kann jederzeit nach dem Login in Deinen Account-Einstellungen geändert werden. *Registrierung* -Sobald du die nötigen Informationen eingegeben hast, klicke auf "Registrieren". Eine Email wird an die hinterlegte Email-Adresse geschickt. Bitte prüfe den Posteingang (inkl. dem Spam-Ordner) für die Registrierungsdetails und dein Initialpasswort. +Sobald Du die nötigen Informationen eingegeben hast, klicke auf "Registrieren". Eine Email mit den Registrierungsdetails und Deinem Initialpasswort wird an die hinterlegte Email-Adresse geschickt. Bitte prüfe den Posteingang (inkl. dem Spam-Ordner). **Login-Seite** -Gib auf der "Login"-Seite die Informationen ein, die du während der Registrierung erhalten hast. Du kannst entweder deinen Spitznamen oder die Email-Adresse als Login-Namen nutzen. +Gib auf der "Login"-Seite die Informationen ein, die Du mit der oben genannten Email erhalten hast. Du kannst entweder Deinen Spitznamen oder die Email-Adresse als Login-Namen nutzen. -Wenn du deinen Account nutzt, um mehrfache '[Seiten](help/Pages)' zu verwalten, die die gleiche Email-Adresse benutzen, dann nutze bitte den Spitznamen des Accounts, der verwaltet werden soll. +Wenn Du Deinen Account nutzt, um unterschiedliche '[Seiten](help/Pages)' zu verwalten, die die gleiche Email-Adresse verwenden, dann nutze bitte den Spitznamen des Accounts, der verwaltet werden soll. -*Wenn* dein Account OpenID nutzt, dann kannst du deine OpenID-Adresse als Login-Name nutzen und das Passwort-Feld frei lassen. Du wirst zu deinem OpenID-Anbieter weitergeleitet, wo du deine Anmeldung abschließt. +*Wenn* Dein Account OpenID nutzt, dann kannst Du Deine OpenID-Adresse als Login-Name nutzen und das Passwort-Feld frei lassen. Du wirst zu Deinem OpenID-Anbieter weitergeleitet, wo Du Deine Anmeldung abschließt. -Wenn OpenID nicht genutzt wird, gib dein Passwort ein. Dieses hast du zu Beginn in der Registrierungsmail erhalten. Dein Passwort ist zeichengenau; Groß- und Kleinschreibung wird beachtet. Prüfe bitte, ob deine Feststelltaste aktiv ist, falls du Schwierigkeiten beim Login hast. +Wenn Du OpenID nicht nutzt, dann gib Dein Passwort ein, das Du mit der Registrierungsmail erhalten hast. Das Passwort muss genau so geschrieben werden, wie es in der Email steht; Groß- und Kleinschreibung wird beachtet. Falls Du Schwierigkeiten beim Login hast, prüfe bitte, ob z. B. Deine Feststelltaste aktiv ist. **Passwort ändern** -Besuche nach deinem ersten Login bitte die Einstellungsseite und wechsle das Passwort in eines, dass du dir merken kannst. +Besuche nach Deinem ersten Login bitte die Einstellungsseite und wechsle das Passwort in eines, dass Du Dir merken kannst. **Der Anfang** -Ein ['Tipp für neue Mitglieder'](newmember)-Link zeigt sich in den ersten beiden Wochen auf deiner Startseite, um dir erste Informationen zum Start zu bieten. +Ein ['Tipp für neue Mitglieder'](newmember)-Link zeigt sich in den ersten beiden Wochen auf Deiner Startseite, um Dir erste Informationen zum Start zu bieten. **Persönliche Daten exportieren** -Du kannst eine Kopie deiner persönlichen Daten in einer XML-Datei exportieren. Gehe hierzu in deinen Einstellungen auf "Persönliche Daten exportieren". +Du kannst eine Kopie Deiner persönlichen Daten in einer XML-Datei exportieren. Gehe hierzu in Deinen Einstellungen auf "Persönliche Daten exportieren". -**Schau dir ebenfalls folgende Seiten an** +**Schau Dir ebenfalls folgende Seiten an** * [Profile](help/Profiles) From ce821d0891d9fa17716e8987218c81eb79a96003 Mon Sep 17 00:00:00 2001 From: Gregory Smith Date: Sun, 12 Apr 2015 21:09:25 -0400 Subject: [PATCH 036/306] use ImageMagick for orientation when available --- include/Photo.php | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/include/Photo.php b/include/Photo.php index ccb6af29e9..e36fd46ca0 100644 --- a/include/Photo.php +++ b/include/Photo.php @@ -345,6 +345,24 @@ class Photo { } public function orient($filename) { + if ($this->is_imagick()) { + // based off comment on http://php.net/manual/en/imagick.getimageorientation.php + $orientation = $this->image->getImageOrientation(); + switch ($orientation) { + case imagick::ORIENTATION_BOTTOMRIGHT: + $this->image->rotateimage("#000", 180); + break; + case imagick::ORIENTATION_RIGHTTOP: + $this->image->rotateimage("#000", 90); + break; + case imagick::ORIENTATION_LEFTBOTTOM: + $this->image->rotateimage("#000", -90); + break; + } + + $this->image->setImageOrientation(imagick::ORIENTATION_TOPLEFT); + return TRUE; + } // based off comment on http://php.net/manual/en/function.imagerotate.php if(!$this->is_valid()) From 108952124978da4b3f586dc59413b9fdd9191a91 Mon Sep 17 00:00:00 2001 From: Frank Dieckmann Date: Mon, 13 Apr 2015 18:09:05 +0200 Subject: [PATCH 037/306] Some more adds --- doc/de/Quick-Start-guide.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/doc/de/Quick-Start-guide.md b/doc/de/Quick-Start-guide.md index 717055215d..650d0d9176 100644 --- a/doc/de/Quick-Start-guide.md +++ b/doc/de/Quick-Start-guide.md @@ -5,7 +5,7 @@ Erste Schritte... Als Erstes: Gehe sicher, dass Du eingeloggt bist. Wenn Du noch nicht eingeloggt bist, kannst Du das in dem Fenster unten machen. -Sobald dies geschehen ist, schaust Du auf Deine Profilseite (https://***************.tls/profile/*****). +Sobald dies geschehen ist, schaust Du auf die Netzwerkseite Deines Profils. Hier sieht es ein wenig wie auf (D)einer Facebook-Seite aus. Du findest hier alle Deine Statusmeldungen und Nachrichten Deiner Freunde, die direkt auf Deine "Pinnwand" ("Wall") geschrieben haben. Um Deinen Status einzutragen, klicke einfach auf die Box oben, in der "Teilen" steht. Wenn Du das machst, vergrößert sich die Box, und Du kannst nun Deinen Text eintragen, mit Hilfe einiger Formatierungsoptionen wie fett, kursiv, unterstrichen formatieren und ebenfalls Bilder und Links hinzufügen. Unten findest Du in diesem Feld weitere Knöpfe, mit denen Du Bilder und Dateien von Deinem Computer hochladen, Webseiten mit einem Kurztext teilen und Video- und Audiodateien aus dem Internet einfügen kannst. Außerdem kannst Du hier eintragen, wo Du gerade bist. @@ -15,7 +15,10 @@ Ein öffentlicher Beitrag ist sichbar für
  • Besucher Deines Profils
  • Besucher Deiner "Gemeinschafts"-Seite
  • Besucher der Profile Deiner Kontakte
  • +
  • Suchmaschinen
  • +Auch wenn Du Deinen Server so konfiguriert hast, dass der Zugriff von außerhalb des Friendica-Netzwerks theoretisch nicht möglich ist, so ist Dein Beitrag über die Profile Deiner Kontakte sichtbar, wenn deren Knoten solche Zugriffe zulassen. + Probiere es doch einfach mal aus. Wenn Du fertig bist, schauen wir uns den "Netzwerk"-Tab an. From fd065e6aec77c89996e2d59b1957a1e0d6a0169b Mon Sep 17 00:00:00 2001 From: Frank Dieckmann Date: Mon, 13 Apr 2015 18:13:59 +0200 Subject: [PATCH 038/306] Klicke auf "Pinnwand" --- doc/de/Quick-Start-guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/de/Quick-Start-guide.md b/doc/de/Quick-Start-guide.md index 650d0d9176..3c3689628a 100644 --- a/doc/de/Quick-Start-guide.md +++ b/doc/de/Quick-Start-guide.md @@ -6,7 +6,7 @@ Erste Schritte... Als Erstes: Gehe sicher, dass Du eingeloggt bist. Wenn Du noch nicht eingeloggt bist, kannst Du das in dem Fenster unten machen. Sobald dies geschehen ist, schaust Du auf die Netzwerkseite Deines Profils. - +cke auf den Reiter "Pinnwand". Hier sieht es ein wenig wie auf (D)einer Facebook-Seite aus. Du findest hier alle Deine Statusmeldungen und Nachrichten Deiner Freunde, die direkt auf Deine "Pinnwand" ("Wall") geschrieben haben. Um Deinen Status einzutragen, klicke einfach auf die Box oben, in der "Teilen" steht. Wenn Du das machst, vergrößert sich die Box, und Du kannst nun Deinen Text eintragen, mit Hilfe einiger Formatierungsoptionen wie fett, kursiv, unterstrichen formatieren und ebenfalls Bilder und Links hinzufügen. Unten findest Du in diesem Feld weitere Knöpfe, mit denen Du Bilder und Dateien von Deinem Computer hochladen, Webseiten mit einem Kurztext teilen und Video- und Audiodateien aus dem Internet einfügen kannst. Außerdem kannst Du hier eintragen, wo Du gerade bist. Wenn Du Deinen Beitrag ("Post") geschrieben hast, kannst Du auf das "Schloss"-Symbol klicken und festlegen, wer Deinen Beitrag sehen kann. Wenn Du dieses Symbol nicht anklickst, ist Dein Beitrag öffentlich. From 3525df9e116ee8ab5439794fbf0f500a58c132a6 Mon Sep 17 00:00:00 2001 From: Frank Dieckmann Date: Mon, 13 Apr 2015 18:16:42 +0200 Subject: [PATCH 039/306] Schreibfehler korrigiert --- doc/de/Quick-Start-guide.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/doc/de/Quick-Start-guide.md b/doc/de/Quick-Start-guide.md index 3c3689628a..73e51aedea 100644 --- a/doc/de/Quick-Start-guide.md +++ b/doc/de/Quick-Start-guide.md @@ -5,8 +5,7 @@ Erste Schritte... Als Erstes: Gehe sicher, dass Du eingeloggt bist. Wenn Du noch nicht eingeloggt bist, kannst Du das in dem Fenster unten machen. -Sobald dies geschehen ist, schaust Du auf die Netzwerkseite Deines Profils. -cke auf den Reiter "Pinnwand". +Sobald dies geschehen ist, schaust Du auf die Netzwerkseite Deines Profils. Klicke auf den Reiter "Pinnwand". Hier sieht es ein wenig wie auf (D)einer Facebook-Seite aus. Du findest hier alle Deine Statusmeldungen und Nachrichten Deiner Freunde, die direkt auf Deine "Pinnwand" ("Wall") geschrieben haben. Um Deinen Status einzutragen, klicke einfach auf die Box oben, in der "Teilen" steht. Wenn Du das machst, vergrößert sich die Box, und Du kannst nun Deinen Text eintragen, mit Hilfe einiger Formatierungsoptionen wie fett, kursiv, unterstrichen formatieren und ebenfalls Bilder und Links hinzufügen. Unten findest Du in diesem Feld weitere Knöpfe, mit denen Du Bilder und Dateien von Deinem Computer hochladen, Webseiten mit einem Kurztext teilen und Video- und Audiodateien aus dem Internet einfügen kannst. Außerdem kannst Du hier eintragen, wo Du gerade bist. Wenn Du Deinen Beitrag ("Post") geschrieben hast, kannst Du auf das "Schloss"-Symbol klicken und festlegen, wer Deinen Beitrag sehen kann. Wenn Du dieses Symbol nicht anklickst, ist Dein Beitrag öffentlich. From 2285b3b7a7f3e6812118ca58740758d13eb20dba Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Tue, 14 Apr 2015 06:54:41 +0200 Subject: [PATCH 040/306] Storing the parent with every notification --- include/enotify.php | 7 ++++++- include/items.php | 5 +++-- mod/ping.php | 8 ++++---- 3 files changed, 13 insertions(+), 7 deletions(-) diff --git a/include/enotify.php b/include/enotify.php index 4327e75b83..4316188506 100644 --- a/include/enotify.php +++ b/include/enotify.php @@ -63,6 +63,11 @@ function notification($params) { // e.g. "your post", "David's photo", etc. $possess_desc = t('%s '); + if (isset($params['parent'])) + $parent_id = $params['parent']; + else + $parent_id = 0; + if($params['type'] == NOTIFY_MAIL) { $subject = sprintf( t('[Friendica:Notify] New mail received at %s'),$sitename); @@ -78,7 +83,7 @@ function notification($params) { if($params['type'] == NOTIFY_COMMENT) { // logger("notification: params = " . print_r($params, true), LOGGER_DEBUG); - $parent_id = $params['parent']; + //$parent_id = $params['parent']; $p = q("SELECT `ignored` FROM `thread` WHERE `iid` = %d AND `uid` = %d LIMIT 1", intval($parent_id), diff --git a/include/items.php b/include/items.php index 8a0deb437b..1fecc44215 100644 --- a/include/items.php +++ b/include/items.php @@ -1567,7 +1567,8 @@ function item_store($arr,$force_parent = false, $notify = false, $dontcache = fa 'source_link' => $item[0]['author-link'], 'source_photo' => $item[0]['author-avatar'], 'verb' => ACTIVITY_TAG, - 'otype' => 'item' + 'otype' => 'item', + 'parent' => $arr['parent'] )); logger('item_store: Notification sent for contact '.$arr['contact-id'].' and post '.$current_post, LOGGER_DEBUG); } @@ -4021,7 +4022,7 @@ function local_delivery($importer,$data) { 'verb' => $datarray['verb'], 'otype' => 'person', 'activity' => $verb, - + 'parent' => $datarray['parent'] )); } } diff --git a/mod/ping.php b/mod/ping.php index 405edd3c49..6207663391 100644 --- a/mod/ping.php +++ b/mod/ping.php @@ -22,23 +22,23 @@ function ping_init(&$a) { $firehose = intval(get_pconfig(local_user(),'system','notify_full')); - $t = q("select count(*) as total from notify where uid = %d and seen = 0", + $t = q("select count(*) as `total` from `notify` where `uid` = %d and `seen` = 0 AND `msg` != ''", intval(local_user()) ); if($t && intval($t[0]['total']) > 49) { - $z = q("select * from notify where uid = %d + $z = q("select * from notify where uid = %d AND `msg` != '' and seen = 0 order by date desc limit 0, 50", intval(local_user()) ); $sysnotify = $t[0]['total']; } else { - $z1 = q("select * from notify where uid = %d + $z1 = q("select * from notify where uid = %d AND `msg` != '' and seen = 0 order by date desc limit 0, 50", intval(local_user()) ); - $z2 = q("select * from notify where uid = %d + $z2 = q("select * from notify where uid = %d AND `msg` != '' and seen = 1 order by date desc limit 0, %d", intval(local_user()), intval(50 - intval($t[0]['total'])) From 8367cadeeffec4b6792a502847304b17ceba5882 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Tue, 14 Apr 2015 12:27:36 +0200 Subject: [PATCH 041/306] dont normalise OpenID URLs and fallback to https if no protocol is specified --- mod/profile.php | 2 +- mod/settings.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/mod/profile.php b/mod/profile.php index bb45d1fec8..e81cfd22c9 100644 --- a/mod/profile.php +++ b/mod/profile.php @@ -44,7 +44,7 @@ function profile_init(&$a) { if(x($a->profile,'openidserver')) $a->page['htmlhead'] .= '' . "\r\n"; if(x($a->profile,'openid')) { - $delegate = ((strstr($a->profile['openid'],'://')) ? $a->profile['openid'] : 'http://' . $a->profile['openid']); + $delegate = ((strstr($a->profile['openid'],'://')) ? $a->profile['openid'] : 'https://' . $a->profile['openid']); $a->page['htmlhead'] .= '' . "\r\n"; } // site block diff --git a/mod/settings.php b/mod/settings.php index 67f8d69a2e..7db196b030 100644 --- a/mod/settings.php +++ b/mod/settings.php @@ -474,7 +474,7 @@ function settings_post(&$a) { $str_contact_deny = perms2str($_POST['contact_deny']); $openidserver = $a->user['openidserver']; - $openid = normalise_openid($openid); + //$openid = normalise_openid($openid); // If openid has changed or if there's an openid but no openidserver, try and discover it. @@ -1002,7 +1002,7 @@ function settings_content(&$a) { $openid_field = false; } else { - $openid_field = array('openid_url', t('OpenID:'),$openid, t("\x28Optional\x29 Allow this OpenID to login to this account.")); + $openid_field = array('openid_url', t('OpenID:'),$openid, t("\x28Optional\x29 Allow this OpenID to login to this account."), "", "", "url"); } From 60a17ef88e754ed602e87d7721794ae786810397 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Tue, 14 Apr 2015 13:40:24 +0200 Subject: [PATCH 042/306] CS update of the strings --- view/cs/messages.po | 10 +++++----- view/cs/strings.php | 8 ++++---- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/view/cs/messages.po b/view/cs/messages.po index d930385dff..c52e3922ac 100644 --- a/view/cs/messages.po +++ b/view/cs/messages.po @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-04-04 17:54+0200\n" -"PO-Revision-Date: 2015-04-06 17:32+0000\n" +"PO-Revision-Date: 2015-04-13 17:40+0000\n" "Last-Translator: Michal Šupler \n" "Language-Team: Czech (http://www.transifex.com/projects/p/friendica/language/cs/)\n" "MIME-Version: 1.0\n" @@ -407,7 +407,7 @@ msgstr "přepnout mobil" #: ../../addon-wrk/openidserver/lib/render/trust.php:30 #, php-format msgid "Do you wish to confirm your identity (%s) with %s" -msgstr "" +msgstr "Přejete si potvrdit vaši identitu (%s) s %s" #: ../../addon-wrk/openidserver/lib/render/trust.php:43 #: ../../mod/dfrn_request.php:676 @@ -428,7 +428,7 @@ msgstr "Nezaslán žádný identifikátor" #: ../../addon-wrk/openidserver/lib/render/wronguser.php:5 msgid "Requested identity don't match logged in user." -msgstr "" +msgstr "Požadovaná identita neodpovídá přihlášenému uživateli" #: ../../addon-wrk/openidserver/lib/render.php:27 #, php-format @@ -3393,14 +3393,14 @@ 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 "" +msgstr "Má být vaše propojení oboustanné nebo ne? \"Přítel\" implikuje, že dovolíte čtení a přihlašování se k jejich příspěvkům. \"Fanoušek/Obdivovatel\" znamená, že umožníte čtení, ale už nebudete číst jejich příspěvky: Odsouhlasit jako: " #: ../../mod/notifications.php:185 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 "" +msgstr "Má být vaše propojení oboustanné nebo ne? \"Přítel\" implikuje, že dovolíte čtení a vy budete přihlášen k odebírání jejich příspěvků. \"Sdíleč\" znamená, že umožníte čtení, ale už nebudete číst jejich příspěvky: Odsouhlasit jako: " #: ../../mod/notifications.php:193 msgid "Friend" diff --git a/view/cs/strings.php b/view/cs/strings.php index 9fd5ba8ad8..e642279dc5 100644 --- a/view/cs/strings.php +++ b/view/cs/strings.php @@ -76,12 +76,12 @@ $a->strings["Page not found."] = "Stránka nenalezena"; $a->strings["Permission denied"] = "Nedostatečné oprávnění"; $a->strings["Permission denied."] = "Přístup odmítnut."; $a->strings["toggle mobile"] = "přepnout mobil"; -$a->strings["Do you wish to confirm your identity (%s) with %s"] = ""; +$a->strings["Do you wish to confirm your identity (%s) with %s"] = "Přejete si potvrdit vaši identitu (%s) s %s"; $a->strings["Confirm"] = "Potvrdit"; $a->strings["Do not confirm"] = "Nepotvrzovat"; $a->strings["Trust This Site"] = "Důvěřovat tomuto webu"; $a->strings["No Identifier Sent"] = "Nezaslán žádný identifikátor"; -$a->strings["Requested identity don't match logged in user."] = ""; +$a->strings["Requested identity don't match logged in user."] = "Požadovaná identita neodpovídá přihlášenému uživateli"; $a->strings["Please wait; you are being redirected to <%s>"] = "Čekejte prosím, budete přesměrován na <%s>"; $a->strings["Delete this item?"] = "Odstranit tuto položku?"; $a->strings["Comment"] = "Okomentovat"; @@ -777,8 +777,8 @@ $a->strings["Approve"] = "Schválit"; $a->strings["Claims to be known to you: "] = "Vaši údajní známí: "; $a->strings["yes"] = "ano"; $a->strings["no"] = "ne"; -$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: "] = ""; -$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: "] = ""; +$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: "] = "Má být vaše propojení oboustanné nebo ne? \"Přítel\" implikuje, že dovolíte čtení a přihlašování se k jejich příspěvkům. \"Fanoušek/Obdivovatel\" znamená, že umožníte čtení, ale už nebudete číst jejich příspěvky: Odsouhlasit jako: "; +$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: "] = "Má být vaše propojení oboustanné nebo ne? \"Přítel\" implikuje, že dovolíte čtení a vy budete přihlášen k odebírání jejich příspěvků. \"Sdíleč\" znamená, že umožníte čtení, ale už nebudete číst jejich příspěvky: Odsouhlasit jako: "; $a->strings["Friend"] = "Přítel"; $a->strings["Sharer"] = "Sdílené"; $a->strings["Fan/Admirer"] = "Fanoušek / obdivovatel"; From 14d61b56449e7f4a15004cebabcfcd741bf3113a Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Tue, 14 Apr 2015 13:41:56 +0200 Subject: [PATCH 043/306] FR update of the strings --- view/fr/messages.po | 131 ++++++++++++++++++++++---------------------- view/fr/strings.php | 126 +++++++++++++++++++++--------------------- 2 files changed, 129 insertions(+), 128 deletions(-) diff --git a/view/fr/messages.po b/view/fr/messages.po index 4d0b7c30ff..000a146cfe 100644 --- a/view/fr/messages.po +++ b/view/fr/messages.po @@ -12,6 +12,7 @@ # Lionel Triay , 2013 # Marquis_de_Carabas , 2012 # Olivier , 2011-2012 +# StefOfficiel , 2015 # Sylvain Lagacé, 2014-2015 # tomamplius , 2014 # Tubuntu , 2013-2015 @@ -20,8 +21,8 @@ msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-04-04 17:54+0200\n" -"PO-Revision-Date: 2015-04-06 10:23+0000\n" -"Last-Translator: Tubuntu \n" +"PO-Revision-Date: 2015-04-14 10:22+0000\n" +"Last-Translator: StefOfficiel \n" "Language-Team: French (http://www.transifex.com/projects/p/friendica/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -417,7 +418,7 @@ msgstr "activ. mobile" #: ../../addon-wrk/openidserver/lib/render/trust.php:30 #, php-format msgid "Do you wish to confirm your identity (%s) with %s" -msgstr "Voulez-vous confirmer votre identité (%s) avec %s" +msgstr "Voulez-vous confirmer votre identité (%s) avec %se" #: ../../addon-wrk/openidserver/lib/render/trust.php:43 #: ../../mod/dfrn_request.php:676 @@ -635,7 +636,7 @@ msgstr "Rappels d'événements" #: ../../boot.php:1889 msgid "Events this week:" -msgstr "Evénements cette semaine:" +msgstr "Evénements cette semaine :" #: ../../boot.php:2126 ../../include/nav.php:76 msgid "Status" @@ -1198,7 +1199,7 @@ msgstr "Merci de visiter %s pour approuver ou rejeter l'introduction." #: ../../include/enotify.php:247 msgid "[Friendica:Notify] A new person is sharing with you" -msgstr "" +msgstr "[Notification Friendica] Une nouvelle personne partage avec vous" #: ../../include/enotify.php:248 ../../include/enotify.php:249 #, php-format @@ -3084,7 +3085,7 @@ msgstr "ajouter une étiquette" #: ../../object/Item.php:231 ../../mod/photos.php:1542 #: ../../mod/content.php:684 msgid "I like this (toggle)" -msgstr "J'aime (bascule)" +msgstr "J'aime" #: ../../object/Item.php:231 ../../mod/content.php:684 msgid "like" @@ -3093,7 +3094,7 @@ msgstr "aime" #: ../../object/Item.php:232 ../../mod/photos.php:1543 #: ../../mod/content.php:685 msgid "I don't like this (toggle)" -msgstr "Je n'aime pas (bascule)" +msgstr "Je n'aime pas" #: ../../object/Item.php:232 ../../mod/content.php:685 msgid "dislike" @@ -6369,7 +6370,7 @@ msgstr "Envoyer des invitations" #: ../../mod/invite.php:133 msgid "Enter email addresses, one per line:" -msgstr "Entrez les adresses email, une par ligne:" +msgstr "Entrez les adresses email, une par ligne :" #: ../../mod/invite.php:135 msgid "" @@ -6379,12 +6380,12 @@ msgstr "Vous êtes cordialement invité à me rejoindre sur Friendica, et nous a #: ../../mod/invite.php:137 msgid "You will need to supply this invitation code: $invite_code" -msgstr "Vous devrez fournir ce code d'invitation: $invite_code" +msgstr "Vous devrez fournir ce code d'invitation : $invite_code" #: ../../mod/invite.php:137 msgid "" "Once you have registered, please connect with me via my profile page at:" -msgstr "Une fois inscrit, connectez-vous à la page de mon profil sur:" +msgstr "Une fois inscrit, connectez-vous à la page de mon profil sur :" #: ../../mod/invite.php:139 msgid "" @@ -6502,7 +6503,7 @@ msgstr "Votre mot de passe a été modifié à %s" #: ../../mod/lostpass.php:159 msgid "Forgot your Password?" -msgstr "Mot de passe oublié?" +msgstr "Mot de passe oublié ?" #: ../../mod/lostpass.php:160 msgid "" @@ -6512,7 +6513,7 @@ msgstr "Entrez votre adresse de courriel et validez pour réinitialiser votre mo #: ../../mod/lostpass.php:161 msgid "Nickname or Email: " -msgstr "Pseudo ou Courriel: " +msgstr "Pseudo ou eMail : " #: ../../mod/lostpass.php:162 msgid "Reset" @@ -6528,7 +6529,7 @@ msgstr "Texte source (Diaspora) à convertir en BBcode :" #: ../../mod/babel.php:31 msgid "Source input: " -msgstr "Source input: " +msgstr "Source input : " #: ../../mod/babel.php:35 msgid "bb2html (raw HTML): " @@ -6536,27 +6537,27 @@ msgstr "bb2html (HTML brut)" #: ../../mod/babel.php:39 msgid "bb2html: " -msgstr "bb2html: " +msgstr "bb2html : " #: ../../mod/babel.php:43 msgid "bb2html2bb: " -msgstr "bb2html2bb: " +msgstr "bb2html2bb : " #: ../../mod/babel.php:47 msgid "bb2md: " -msgstr "bb2md: " +msgstr "bb2md : " #: ../../mod/babel.php:51 msgid "bb2md2html: " -msgstr "bb2md2html: " +msgstr "bb2md2html : " #: ../../mod/babel.php:55 msgid "bb2dia2bb: " -msgstr "bb2dia2bb: " +msgstr "bb2dia2bb : " #: ../../mod/babel.php:59 msgid "bb2md2html2bb: " -msgstr "bb2md2html2bb: " +msgstr "bb2md2html2bb : " #: ../../mod/babel.php:69 msgid "Source input (Diaspora format): " @@ -6590,7 +6591,7 @@ msgstr "Ceci supprimera totalement votre compte. Cette opération est irréversi #: ../../mod/removeme.php:48 msgid "Please enter your password for verification:" -msgstr "Merci de saisir votre mot de passe pour vérification:" +msgstr "Merci de saisir votre mot de passe pour vérification :" #: ../../mod/profperm.php:25 ../../mod/profperm.php:55 msgid "Invalid profile identifier." @@ -6618,7 +6619,7 @@ msgstr "Aucun mot-clé en correspondance. Merci d'ajouter des mots-clés à votr #: ../../mod/match.php:57 msgid "is interested in:" -msgstr "s'intéresse à:" +msgstr "s'intéresse à :" #: ../../mod/events.php:66 msgid "Event title and start time are required." @@ -6659,7 +6660,7 @@ msgstr "Le format est %s %s. La date de début et le nom sont nécessaires." #: ../../mod/events.php:459 msgid "Event Starts:" -msgstr "Début de l'événement:" +msgstr "Début de l'événement :" #: ../../mod/events.php:459 ../../mod/events.php:473 msgid "Required" @@ -6667,7 +6668,7 @@ msgstr "Requis" #: ../../mod/events.php:462 msgid "Finish date/time is not known or not relevant" -msgstr "Date/heure de fin inconnue ou sans objet" +msgstr "Date / heure de fin inconnue ou sans objet" #: ../../mod/events.php:464 msgid "Event Finishes:" @@ -6851,7 +6852,7 @@ msgstr "Statut marital" #: ../../mod/profiles.php:344 msgid "Romantic Partner" -msgstr "Partenaire/conjoint" +msgstr "Partenaire / conjoint" #: ../../mod/profiles.php:348 msgid "Likes" @@ -6863,7 +6864,7 @@ msgstr "Derniers \"Je n'aime pas\"" #: ../../mod/profiles.php:356 msgid "Work/Employment" -msgstr "Travail/Occupation" +msgstr "Travail / Occupation" #: ../../mod/profiles.php:359 msgid "Religion" @@ -6926,11 +6927,11 @@ msgstr "%1$s a mis à jour son %2$s, en modifiant %3$s." #: ../../mod/profiles.php:658 msgid "Hide contacts and friends:" -msgstr "Cacher mes contacts et amis:" +msgstr "Cacher mes contacts et amis :" #: ../../mod/profiles.php:663 msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "Cacher ma liste d'amis/contacts des visiteurs de ce profil?" +msgstr "Cacher ma liste d'amis / contacts des visiteurs de ce profil ?" #: ../../mod/profiles.php:685 msgid "Edit Profile Details" @@ -6983,52 +6984,52 @@ msgstr "Téléverser une photo de profil" #: ../../mod/profiles.php:700 msgid "Profile Name:" -msgstr "Nom du profil:" +msgstr "Nom du profil :" #: ../../mod/profiles.php:701 msgid "Your Full Name:" -msgstr "Votre nom complet:" +msgstr "Votre nom complet :" #: ../../mod/profiles.php:702 msgid "Title/Description:" -msgstr "Titre/Description:" +msgstr "Titre / Description :" #: ../../mod/profiles.php:703 msgid "Your Gender:" -msgstr "Votre genre:" +msgstr "Votre genre :" #: ../../mod/profiles.php:704 #, php-format msgid "Birthday (%s):" -msgstr "Anniversaire (%s):" +msgstr "Anniversaire (%s) :" #: ../../mod/profiles.php:705 msgid "Street Address:" -msgstr "Adresse postale:" +msgstr "Adresse postale :" #: ../../mod/profiles.php:706 msgid "Locality/City:" -msgstr "Ville/Localité:" +msgstr "Ville / Localité :" #: ../../mod/profiles.php:707 msgid "Postal/Zip Code:" -msgstr "Code postal:" +msgstr "Code postal :" #: ../../mod/profiles.php:708 msgid "Country:" -msgstr "Pays:" +msgstr "Pays :" #: ../../mod/profiles.php:709 msgid "Region/State:" -msgstr "Région/État:" +msgstr "Région / État :" #: ../../mod/profiles.php:710 msgid " Marital Status:" -msgstr " Statut marital:" +msgstr " Statut marital :" #: ../../mod/profiles.php:711 msgid "Who: (if applicable)" -msgstr "Qui: (si pertinent)" +msgstr "Qui : (si pertinent)" #: ../../mod/profiles.php:712 msgid "Examples: cathy123, Cathy Williams, cathy@example.com" @@ -7036,27 +7037,27 @@ msgstr "Exemples: cathy123, Cathy Williams, cathy@example.com" #: ../../mod/profiles.php:713 msgid "Since [date]:" -msgstr "Depuis [date] :" +msgstr "Depuis [date] :" #: ../../mod/profiles.php:715 msgid "Homepage URL:" -msgstr "Page personnelle:" +msgstr "Page personnelle :" #: ../../mod/profiles.php:718 msgid "Religious Views:" -msgstr "Opinions religieuses:" +msgstr "Opinions religieuses :" #: ../../mod/profiles.php:719 msgid "Public Keywords:" -msgstr "Mots-clés publics:" +msgstr "Mots-clés publics :" #: ../../mod/profiles.php:720 msgid "Private Keywords:" -msgstr "Mots-clés privés:" +msgstr "Mots-clés privés :" #: ../../mod/profiles.php:723 msgid "Example: fishing photography software" -msgstr "Exemple: football dessin programmation" +msgstr "Exemple : football dessin programmation" #: ../../mod/profiles.php:724 msgid "(Used for suggesting potential friends, can be seen by others)" @@ -7072,11 +7073,11 @@ msgstr "Parlez-nous de vous..." #: ../../mod/profiles.php:727 msgid "Hobbies/Interests" -msgstr "Passe-temps/Centres d'intérêt" +msgstr "Passe-temps / Centres d'intérêt" #: ../../mod/profiles.php:728 msgid "Contact information and Social Networks" -msgstr "Coordonnées/Réseaux sociaux" +msgstr "Coordonnées / Réseaux sociaux" #: ../../mod/profiles.php:729 msgid "Musical interests" @@ -7092,19 +7093,19 @@ msgstr "Télévision" #: ../../mod/profiles.php:732 msgid "Film/dance/culture/entertainment" -msgstr "Cinéma/Danse/Culture/Divertissement" +msgstr "Cinéma / Danse / Culture / Divertissement" #: ../../mod/profiles.php:733 msgid "Love/romance" -msgstr "Amour/Romance" +msgstr "Amour / Romance" #: ../../mod/profiles.php:734 msgid "Work/employment" -msgstr "Activité professionnelle/Occupation" +msgstr "Activité professionnelle / Occupation" #: ../../mod/profiles.php:735 msgid "School/education" -msgstr "Études/Formation" +msgstr "Études / Formation" #: ../../mod/profiles.php:740 msgid "" @@ -7114,11 +7115,11 @@ msgstr "Ceci est votre profil public.
    Il peutEnsuite

    " msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "poller." -msgstr "IMPORTANT: Vous devez configurer [manuellement] une tâche programmée pour le 'poller'." +msgstr "IMPORTANT: Vous devez configurer [manuellement] une tâche programmée pour le \"poller\"." #: ../../mod/help.php:31 msgid "Help:" -msgstr "Aide:" +msgstr "Aide :" #: ../../mod/crepair.php:106 msgid "Contact settings applied." @@ -7655,7 +7656,7 @@ msgstr "Une fois que vous avez trouvé quelques amis, organisez-les en groupes d #: ../../mod/newmember.php:73 msgid "Why Aren't My Posts Public?" -msgstr "Pourquoi mes éléments ne sont pas publics?" +msgstr "Pourquoi mes éléments ne sont pas publics ?" #: ../../mod/newmember.php:73 msgid "" @@ -7724,7 +7725,7 @@ msgstr "Réponse du site distant incomprise." #: ../../mod/dfrn_confirm.php:249 ../../mod/dfrn_confirm.php:254 msgid "Unexpected response from remote site: " -msgstr "Réponse inattendue du site distant: " +msgstr "Réponse inattendue du site distant : " #: ../../mod/dfrn_confirm.php:263 msgid "Confirmation completed successfully." @@ -7733,7 +7734,7 @@ msgstr "Confirmation achevée avec succès." #: ../../mod/dfrn_confirm.php:265 ../../mod/dfrn_confirm.php:279 #: ../../mod/dfrn_confirm.php:286 msgid "Remote site reported: " -msgstr "Alerte du site distant: " +msgstr "Alerte du site distant : " #: ../../mod/dfrn_confirm.php:277 msgid "Temporary failure. Please wait and try again." @@ -7898,7 +7899,7 @@ msgstr "Annuaire local" #: ../../mod/directory.php:116 msgid "Gender: " -msgstr "Genre: " +msgstr "Genre : " #: ../../mod/directory.php:189 msgid "No entries (some entries may be hidden)." diff --git a/view/fr/strings.php b/view/fr/strings.php index 229ac9b638..168c786811 100644 --- a/view/fr/strings.php +++ b/view/fr/strings.php @@ -76,7 +76,7 @@ $a->strings["Page not found."] = "Page introuvable."; $a->strings["Permission denied"] = "Permission refusée"; $a->strings["Permission denied."] = "Permission refusée."; $a->strings["toggle mobile"] = "activ. mobile"; -$a->strings["Do you wish to confirm your identity (%s) with %s"] = "Voulez-vous confirmer votre identité (%s) avec %s"; +$a->strings["Do you wish to confirm your identity (%s) with %s"] = "Voulez-vous confirmer votre identité (%s) avec %se"; $a->strings["Confirm"] = "Confirmer"; $a->strings["Do not confirm"] = "Ne pas confirmer"; $a->strings["Trust This Site"] = "Faire confiance à ce site"; @@ -127,7 +127,7 @@ $a->strings["Birthday Reminders"] = "Rappels d'anniversaires"; $a->strings["Birthdays this week:"] = "Anniversaires cette semaine:"; $a->strings["[No description]"] = "[Sans description]"; $a->strings["Event Reminders"] = "Rappels d'événements"; -$a->strings["Events this week:"] = "Evénements cette semaine:"; +$a->strings["Events this week:"] = "Evénements cette semaine :"; $a->strings["Status"] = "Statut"; $a->strings["Status Messages and Posts"] = "Messages d'état et publications"; $a->strings["Profile Details"] = "Détails du profil"; @@ -255,7 +255,7 @@ $a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Vous ave $a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Vous avez reçu [url=%1\$s]une introduction[/url] de %2\$s."; $a->strings["You may visit their profile at %s"] = "Vous pouvez visiter son profil sur %s"; $a->strings["Please visit %s to approve or reject the introduction."] = "Merci de visiter %s pour approuver ou rejeter l'introduction."; -$a->strings["[Friendica:Notify] A new person is sharing with you"] = ""; +$a->strings["[Friendica:Notify] A new person is sharing with you"] = "[Notification Friendica] Une nouvelle personne partage avec vous"; $a->strings["%1\$s is sharing with you at %2\$s"] = ""; $a->strings["[Friendica:Notify] You have a new follower"] = ""; $a->strings["You have a new follower at %2\$s : %1\$s"] = ""; @@ -696,9 +696,9 @@ $a->strings["unignore thread"] = "Ne plus ignorer le fil"; $a->strings["toggle ignore status"] = "Ignorer le statut"; $a->strings["ignored"] = "ignoré"; $a->strings["add tag"] = "ajouter une étiquette"; -$a->strings["I like this (toggle)"] = "J'aime (bascule)"; +$a->strings["I like this (toggle)"] = "J'aime"; $a->strings["like"] = "aime"; -$a->strings["I don't like this (toggle)"] = "Je n'aime pas (bascule)"; +$a->strings["I don't like this (toggle)"] = "Je n'aime pas"; $a->strings["dislike"] = "n'aime pas"; $a->strings["Share this"] = "Partager"; $a->strings["share"] = "partager"; @@ -1462,10 +1462,10 @@ $a->strings["To accept this invitation, please visit and register at %s or any o $a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Les sites Friendica sont tous interconnectés pour créer un immense réseau social respectueux de la vie privée, possédé et contrôllé par ses membres. Ils peuvent également interagir avec plusieurs réseaux sociaux traditionnels. Voir %s pour une liste d'autres sites Friendica que vous pourriez rejoindre."; $a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Toutes nos excuses. Ce système n'est pas configuré pour se connecter à d'autres sites publics ou inviter de nouveaux membres."; $a->strings["Send invitations"] = "Envoyer des invitations"; -$a->strings["Enter email addresses, one per line:"] = "Entrez les adresses email, une par ligne:"; +$a->strings["Enter email addresses, one per line:"] = "Entrez les adresses email, une par ligne :"; $a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Vous êtes cordialement invité à me rejoindre sur Friendica, et nous aider ainsi à créer un meilleur web social."; -$a->strings["You will need to supply this invitation code: \$invite_code"] = "Vous devrez fournir ce code d'invitation: \$invite_code"; -$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Une fois inscrit, connectez-vous à la page de mon profil sur:"; +$a->strings["You will need to supply this invitation code: \$invite_code"] = "Vous devrez fournir ce code d'invitation : \$invite_code"; +$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Une fois inscrit, connectez-vous à la page de mon profil sur :"; $a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Pour plus d'information sur le projet Friendica, et pourquoi nous croyons qu'il est important, merci de visiter http://friendica.com"; $a->strings["Access denied."] = "Accès refusé."; $a->strings["No valid account found."] = "Impossible de trouver un compte valide."; @@ -1482,20 +1482,20 @@ $a->strings["Your password may be changed from the Settings page after $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"] = "\n\t\t\t\tChère/Cher %1\$s,\n\t\t\t\t\tVotre mot de passe a été changé ainsi que vous l’avez demandé. Veuillez conserver cette informations dans vos archives (ou changer immédiatement votre mot de passe pour un autre dont vous vous souviendrez).\n\t\t\t"; $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"] = "\n\t\t\t\tVoici vos informations de connexion :\n\n\t\t\t\tAdresse :\t%1\$s\n\t\t\t\tIdentifiant :\t%2\$s\n\t\t\t\tMot de passe :\t%3\$s\n\n\t\t\t\tVous pourrez changer votre mot de passe dans les paramètres de votre compte une fois connecté.\n\t\t\t"; $a->strings["Your password has been changed at %s"] = "Votre mot de passe a été modifié à %s"; -$a->strings["Forgot your Password?"] = "Mot de passe oublié?"; +$a->strings["Forgot your Password?"] = "Mot de passe oublié ?"; $a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Entrez votre adresse de courriel et validez pour réinitialiser votre mot de passe. Vous recevrez la suite des instructions par courriel."; -$a->strings["Nickname or Email: "] = "Pseudo ou Courriel: "; +$a->strings["Nickname or Email: "] = "Pseudo ou eMail : "; $a->strings["Reset"] = "Réinitialiser"; $a->strings["Source (bbcode) text:"] = "Texte source (bbcode) :"; $a->strings["Source (Diaspora) text to convert to BBcode:"] = "Texte source (Diaspora) à convertir en BBcode :"; -$a->strings["Source input: "] = "Source input: "; +$a->strings["Source input: "] = "Source input : "; $a->strings["bb2html (raw HTML): "] = "bb2html (HTML brut)"; -$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["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): "] = "Texte source (format Diaspora) :"; $a->strings["diaspora2bb: "] = "diaspora2bb :"; $a->strings["Tag removed"] = "Étiquette supprimée"; @@ -1503,14 +1503,14 @@ $a->strings["Remove Item Tag"] = "Enlever l'étiquette de l'élément"; $a->strings["Select a tag to remove: "] = "Sélectionner une étiquette à supprimer: "; $a->strings["Remove My Account"] = "Supprimer mon compte"; $a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Ceci supprimera totalement votre compte. Cette opération est irréversible."; -$a->strings["Please enter your password for verification:"] = "Merci de saisir votre mot de passe pour vérification:"; +$a->strings["Please enter your password for verification:"] = "Merci de saisir votre mot de passe pour vérification :"; $a->strings["Invalid profile identifier."] = "Identifiant de profil invalide."; $a->strings["Profile Visibility Editor"] = "Éditer la visibilité du profil"; $a->strings["Visible To"] = "Visible par"; $a->strings["All Contacts (with secure profile access)"] = "Tous les contacts (ayant un accès sécurisé)"; $a->strings["Profile Match"] = "Correpondance de profils"; $a->strings["No keywords to match. Please add keywords to your default profile."] = "Aucun mot-clé en correspondance. Merci d'ajouter des mots-clés à votre profil par défaut."; -$a->strings["is interested in:"] = "s'intéresse à:"; +$a->strings["is interested in:"] = "s'intéresse à :"; $a->strings["Event title and start time are required."] = "Vous devez donner un nom et un horaire de début à l'événement."; $a->strings["l, F j"] = "l, F j"; $a->strings["Edit event"] = "Editer l'événement"; @@ -1520,9 +1520,9 @@ $a->strings["Next"] = "Suivant"; $a->strings["hour:minute"] = "heures:minutes"; $a->strings["Event details"] = "Détails de l'événement"; $a->strings["Format is %s %s. Starting date and Title are required."] = "Le format est %s %s. La date de début et le nom sont nécessaires."; -$a->strings["Event Starts:"] = "Début de l'événement:"; +$a->strings["Event Starts:"] = "Début de l'événement :"; $a->strings["Required"] = "Requis"; -$a->strings["Finish date/time is not known or not relevant"] = "Date/heure de fin inconnue ou sans objet"; +$a->strings["Finish date/time is not known or not relevant"] = "Date / heure de fin inconnue ou sans objet"; $a->strings["Event Finishes:"] = "Fin de l'événement:"; $a->strings["Adjust for viewer timezone"] = "Ajuster à la zone horaire du visiteur"; $a->strings["Description:"] = "Description:"; @@ -1567,10 +1567,10 @@ $a->strings["New profile created."] = "Nouveau profil créé."; $a->strings["Profile unavailable to clone."] = "Ce profil ne peut être cloné."; $a->strings["Profile Name is required."] = "Le nom du profil est requis."; $a->strings["Marital Status"] = "Statut marital"; -$a->strings["Romantic Partner"] = "Partenaire/conjoint"; +$a->strings["Romantic Partner"] = "Partenaire / conjoint"; $a->strings["Likes"] = "Derniers \"J'aime\""; $a->strings["Dislikes"] = "Derniers \"Je n'aime pas\""; -$a->strings["Work/Employment"] = "Travail/Occupation"; +$a->strings["Work/Employment"] = "Travail / Occupation"; $a->strings["Religion"] = "Religion"; $a->strings["Political Views"] = "Tendance politique"; $a->strings["Gender"] = "Sexe"; @@ -1585,8 +1585,8 @@ $a->strings["public profile"] = "profil public"; $a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s a changé %2\$s en “%3\$s”"; $a->strings[" - Visit %1\$s's %2\$s"] = "Visiter le %2\$s de %1\$s"; $a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s a mis à jour son %2\$s, en modifiant %3\$s."; -$a->strings["Hide contacts and friends:"] = "Cacher mes contacts et amis:"; -$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Cacher ma liste d'amis/contacts des visiteurs de ce profil?"; +$a->strings["Hide contacts and friends:"] = "Cacher mes contacts et amis :"; +$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Cacher ma liste d'amis / contacts des visiteurs de ce profil ?"; $a->strings["Edit Profile Details"] = "Éditer les détails du profil"; $a->strings["Change Profile Photo"] = "Changer la photo du profil"; $a->strings["View this profile"] = "Voir ce profil"; @@ -1599,40 +1599,40 @@ $a->strings["Preferences"] = "Préférences"; $a->strings["Status information"] = "Information sur le statut"; $a->strings["Additional information"] = "Information additionnelle"; $a->strings["Upload Profile Photo"] = "Téléverser une photo de profil"; -$a->strings["Profile Name:"] = "Nom du profil:"; -$a->strings["Your Full Name:"] = "Votre nom complet:"; -$a->strings["Title/Description:"] = "Titre/Description:"; -$a->strings["Your Gender:"] = "Votre genre:"; -$a->strings["Birthday (%s):"] = "Anniversaire (%s):"; -$a->strings["Street Address:"] = "Adresse postale:"; -$a->strings["Locality/City:"] = "Ville/Localité:"; -$a->strings["Postal/Zip Code:"] = "Code postal:"; -$a->strings["Country:"] = "Pays:"; -$a->strings["Region/State:"] = "Région/État:"; -$a->strings[" Marital Status:"] = " Statut marital:"; -$a->strings["Who: (if applicable)"] = "Qui: (si pertinent)"; +$a->strings["Profile Name:"] = "Nom du profil :"; +$a->strings["Your Full Name:"] = "Votre nom complet :"; +$a->strings["Title/Description:"] = "Titre / Description :"; +$a->strings["Your Gender:"] = "Votre genre :"; +$a->strings["Birthday (%s):"] = "Anniversaire (%s) :"; +$a->strings["Street Address:"] = "Adresse postale :"; +$a->strings["Locality/City:"] = "Ville / Localité :"; +$a->strings["Postal/Zip Code:"] = "Code postal :"; +$a->strings["Country:"] = "Pays :"; +$a->strings["Region/State:"] = "Région / État :"; +$a->strings[" Marital Status:"] = " Statut marital :"; +$a->strings["Who: (if applicable)"] = "Qui : (si pertinent)"; $a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Exemples: cathy123, Cathy Williams, cathy@example.com"; -$a->strings["Since [date]:"] = "Depuis [date] :"; -$a->strings["Homepage URL:"] = "Page personnelle:"; -$a->strings["Religious Views:"] = "Opinions religieuses:"; -$a->strings["Public Keywords:"] = "Mots-clés publics:"; -$a->strings["Private Keywords:"] = "Mots-clés privés:"; -$a->strings["Example: fishing photography software"] = "Exemple: football dessin programmation"; +$a->strings["Since [date]:"] = "Depuis [date] :"; +$a->strings["Homepage URL:"] = "Page personnelle :"; +$a->strings["Religious Views:"] = "Opinions religieuses :"; +$a->strings["Public Keywords:"] = "Mots-clés publics :"; +$a->strings["Private Keywords:"] = "Mots-clés privés :"; +$a->strings["Example: fishing photography software"] = "Exemple : football dessin programmation"; $a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Utilisés pour vous suggérer des amis potentiels, peuvent être vus par autrui)"; $a->strings["(Used for searching profiles, never shown to others)"] = "(Utilisés pour rechercher dans les profils, ne seront jamais montrés à autrui)"; $a->strings["Tell us about yourself..."] = "Parlez-nous de vous..."; -$a->strings["Hobbies/Interests"] = "Passe-temps/Centres d'intérêt"; -$a->strings["Contact information and Social Networks"] = "Coordonnées/Réseaux sociaux"; +$a->strings["Hobbies/Interests"] = "Passe-temps / Centres d'intérêt"; +$a->strings["Contact information and Social Networks"] = "Coordonnées / Réseaux sociaux"; $a->strings["Musical interests"] = "Goûts musicaux"; $a->strings["Books, literature"] = "Lectures"; $a->strings["Television"] = "Télévision"; -$a->strings["Film/dance/culture/entertainment"] = "Cinéma/Danse/Culture/Divertissement"; -$a->strings["Love/romance"] = "Amour/Romance"; -$a->strings["Work/employment"] = "Activité professionnelle/Occupation"; -$a->strings["School/education"] = "Études/Formation"; +$a->strings["Film/dance/culture/entertainment"] = "Cinéma / Danse / Culture / Divertissement"; +$a->strings["Love/romance"] = "Amour / Romance"; +$a->strings["Work/employment"] = "Activité professionnelle / Occupation"; +$a->strings["School/education"] = "Études / Formation"; $a->strings["This is your public profile.
    It may be visible to anybody using the internet."] = "Ceci est votre profil public.
    Il peut être visible par n'importe quel utilisateur d'Internet."; -$a->strings["Age: "] = "Age: "; -$a->strings["Edit/Manage Profiles"] = "Editer/gérer les profils"; +$a->strings["Age: "] = "Age : "; +$a->strings["Edit/Manage Profiles"] = "Editer / gérer les profils"; $a->strings["Friendica Communications Server - Setup"] = "Serveur de communications Friendica - Configuration"; $a->strings["Could not connect to database."] = "Impossible de se connecter à la base."; $a->strings["Could not create table."] = "Impossible de créer une table."; @@ -1673,12 +1673,12 @@ $a->strings["OpenSSL PHP module"] = "Module OpenSSL de PHP"; $a->strings["mysqli PHP module"] = "Module Mysqli de PHP"; $a->strings["mb_string PHP module"] = "Module mb_string de PHP"; $a->strings["Apache mod_rewrite module"] = "Module mod_rewrite Apache"; -$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Erreur: Le module \"rewrite\" du serveur web Apache est requis mais pas installé."; -$a->strings["Error: libCURL PHP module required but not installed."] = "Erreur: Le module PHP \"libCURL\" est requis mais pas installé."; -$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Erreur: Le module PHP \"GD\" disposant du support JPEG est requis mais pas installé."; -$a->strings["Error: openssl PHP module required but not installed."] = "Erreur: Le module PHP \"openssl\" est requis mais pas installé."; -$a->strings["Error: mysqli PHP module required but not installed."] = "Erreur: Le module PHP \"mysqli\" est requis mais pas installé."; -$a->strings["Error: mb_string PHP module required but not installed."] = "Erreur: le module PHP mb_string est requis mais pas installé."; +$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Erreur : Le module \"rewrite\" du serveur web Apache est requis mais pas installé."; +$a->strings["Error: libCURL PHP module required but not installed."] = "Erreur : Le module PHP \"libCURL\" est requis mais pas installé."; +$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Erreur : Le module PHP \"GD\" disposant du support JPEG est requis mais pas installé."; +$a->strings["Error: openssl PHP module required but not installed."] = "Erreur : Le module PHP \"openssl\" est requis mais pas installé."; +$a->strings["Error: mysqli PHP module required but not installed."] = "Erreur : Le module PHP \"mysqli\" est requis mais pas installé."; +$a->strings["Error: mb_string PHP module required but not installed."] = "Erreur : le module PHP mb_string est requis mais pas installé."; $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."] = "L'installeur web doit être en mesure de créer un fichier \".htconfig.php\" à la racine de votre serveur web, mais il en est incapable."; $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."] = "Le plus souvent, il s'agit d'un problème de permission. Le serveur web peut ne pas être capable d'écrire dans votre répertoire - alors que vous-même le pouvez."; $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."] = "A la fin de cette étape, nous vous fournirons un texte à sauvegarder dans un fichier nommé .htconfig.php à la racine de votre répertoire Friendica."; @@ -1693,8 +1693,8 @@ $a->strings["Url rewrite in .htaccess is not working. Check your server configur $a->strings["Url rewrite is working"] = "La réécriture d'URL fonctionne."; $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."] = "Le fichier de configuration de la base (\".htconfig.php\") ne peut être créé. Merci d'utiliser le texte ci-joint pour créer ce fichier à la racine de votre hébergement."; $a->strings["

    What next

    "] = "

    Ensuite

    "; -$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANT: Vous devez configurer [manuellement] une tâche programmée pour le 'poller'."; -$a->strings["Help:"] = "Aide:"; +$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANT: Vous devez configurer [manuellement] une tâche programmée pour le \"poller\"."; +$a->strings["Help:"] = "Aide :"; $a->strings["Contact settings applied."] = "Réglages du contact appliqués."; $a->strings["Contact update failed."] = "Impossible d'appliquer les réglages."; $a->strings["Repair Contact Settings"] = "Réglages de réparation des contacts"; @@ -1742,7 +1742,7 @@ $a->strings["Finding New People"] = "Trouver de nouvelles personnes"; $a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Sur le panneau latéral de la page Contacts, il y a plusieurs moyens de trouver de nouveaux amis. Nous pouvons mettre les gens en relation selon leurs intérêts, rechercher des amis par nom ou intérêt, et fournir des suggestions en fonction de la topologie du réseau. Sur un site tout neuf, les suggestions d'amitié devraient commencer à apparaître au bout de 24 heures."; $a->strings["Group Your Contacts"] = "Grouper vos contacts"; $a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Une fois que vous avez trouvé quelques amis, organisez-les en groupes de conversation privés depuis le panneau latéral de la page Contacts. Vous pourrez ensuite interagir avec chaque groupe de manière privée depuis la page Réseau."; -$a->strings["Why Aren't My Posts Public?"] = "Pourquoi mes éléments ne sont pas publics?"; +$a->strings["Why Aren't My Posts Public?"] = "Pourquoi mes éléments ne sont pas publics ?"; $a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respecte votre vie privée. Par défaut, toutes vos publications seront seulement montrés à vos amis. Pour plus d'information, consultez la section \"aide\" du lien ci-dessus."; $a->strings["Getting Help"] = "Obtenir de l'aide"; $a->strings["Go to the Help Section"] = "Aller à la section Aide"; @@ -1757,9 +1757,9 @@ $a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s suit les %3\$s de %2\$s $a->strings["%1\$s welcomes %2\$s"] = "%1\$s accueille %2\$s"; $a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Ceci peut se produire lorsque le contact a été requis par les deux personnes et a déjà été approuvé."; $a->strings["Response from remote site was not understood."] = "Réponse du site distant incomprise."; -$a->strings["Unexpected response from remote site: "] = "Réponse inattendue du site distant: "; +$a->strings["Unexpected response from remote site: "] = "Réponse inattendue du site distant : "; $a->strings["Confirmation completed successfully."] = "Confirmation achevée avec succès."; -$a->strings["Remote site reported: "] = "Alerte du site distant: "; +$a->strings["Remote site reported: "] = "Alerte du site distant : "; $a->strings["Temporary failure. Please wait and try again."] = "Échec temporaire. Merci de recommencer ultérieurement."; $a->strings["Introduction failed or was revoked."] = "Introduction échouée ou annulée."; $a->strings["Unable to set contact photo."] = "Impossible de définir la photo du contact."; @@ -1796,7 +1796,7 @@ $a->strings["Friends of %s"] = "Amis de %s"; $a->strings["No friends to display."] = "Pas d'amis à afficher."; $a->strings["Find on this site"] = "Trouver sur ce site"; $a->strings["Site Directory"] = "Annuaire local"; -$a->strings["Gender: "] = "Genre: "; +$a->strings["Gender: "] = "Genre : "; $a->strings["No entries (some entries may be hidden)."] = "Aucune entrée (certaines peuvent être cachées)."; $a->strings["Time Conversion"] = "Conversion temporelle"; $a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica fournit ce service pour partager des événements avec d'autres réseaux et amis indépendament de leur fuseau horaire."; From 7a1db2e08335cc47dddd4712416ac65678efa8e1 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Thu, 16 Apr 2015 06:47:09 +0200 Subject: [PATCH 044/306] Only show one notification per parent --- mod/ping.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/mod/ping.php b/mod/ping.php index 6207663391..6545ab458b 100644 --- a/mod/ping.php +++ b/mod/ping.php @@ -22,24 +22,24 @@ function ping_init(&$a) { $firehose = intval(get_pconfig(local_user(),'system','notify_full')); - $t = q("select count(*) as `total` from `notify` where `uid` = %d and `seen` = 0 AND `msg` != ''", + $t = q("select count(*) as `total` from `notify` where `uid` = %d and `seen` = 0 AND `msg` != '' GROUP BY `parent`", intval(local_user()) ); if($t && intval($t[0]['total']) > 49) { $z = q("select * from notify where uid = %d AND `msg` != '' - and seen = 0 order by date desc limit 0, 50", + and seen = 0 GROUP BY `parent` order by date desc limit 0, 50", intval(local_user()) ); $sysnotify = $t[0]['total']; } else { $z1 = q("select * from notify where uid = %d AND `msg` != '' - and seen = 0 order by date desc limit 0, 50", + and seen = 0 GROUP BY `parent` order by date desc limit 0, 50", intval(local_user()) ); $z2 = q("select * from notify where uid = %d AND `msg` != '' - and seen = 1 order by date desc limit 0, %d", + and seen = 1 GROUP BY `parent` order by date desc limit 0, %d", intval(local_user()), intval(50 - intval($t[0]['total'])) ); From d42cea51a2c31d4c7a8cc1a00acc7738a7fbaafe Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Thu, 16 Apr 2015 07:18:06 +0200 Subject: [PATCH 045/306] The item id is now stored in every notification as well --- boot.php | 2 +- include/dbstructure.php | 1 + include/enotify.php | 13 ++++++++++--- update.php | 2 +- 4 files changed, 13 insertions(+), 5 deletions(-) diff --git a/boot.php b/boot.php index 5e0a70db1f..5994b2030a 100644 --- a/boot.php +++ b/boot.php @@ -18,7 +18,7 @@ define ( 'FRIENDICA_PLATFORM', 'Friendica'); define ( 'FRIENDICA_CODENAME', 'Lily of the valley'); define ( 'FRIENDICA_VERSION', '3.4.0' ); define ( 'DFRN_PROTOCOL_VERSION', '2.23' ); -define ( 'DB_UPDATE_VERSION', 1183 ); +define ( 'DB_UPDATE_VERSION', 1184 ); define ( 'EOL', "
    \r\n" ); define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' ); diff --git a/include/dbstructure.php b/include/dbstructure.php index 083255b8ae..354c06a43e 100644 --- a/include/dbstructure.php +++ b/include/dbstructure.php @@ -925,6 +925,7 @@ function db_definition() { "msg" => array("type" => "mediumtext", "not null" => "1"), "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"), "link" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), + "iid" => array("type" => "int(11)", "not null" => "1", "default" => "0"), "parent" => array("type" => "int(11)", "not null" => "1", "default" => "0"), "seen" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"), "verb" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), diff --git a/include/enotify.php b/include/enotify.php index 4316188506..027293d4f3 100644 --- a/include/enotify.php +++ b/include/enotify.php @@ -27,7 +27,7 @@ function notification($params) { $hostname = $a->get_hostname(); if(strpos($hostname,':')) $hostname = substr($hostname,0,strpos($hostname,':')); - + $sender_email = $a->config['sender_email']; if (empty($sender_email)) { $sender_email = t('noreply') . '@' . $hostname; @@ -63,6 +63,11 @@ function notification($params) { // e.g. "your post", "David's photo", etc. $possess_desc = t('%s '); + if (isset($params['item']['id'])) + $item_id = $params['item']['id']; + else + $item_id = 0; + if (isset($params['parent'])) $parent_id = $params['parent']; else @@ -405,6 +410,7 @@ function notification($params) { $datarray['date'] = datetime_convert(); $datarray['uid'] = $params['uid']; $datarray['link'] = $itemlink; + $datarray['iid'] = $item_id; $datarray['parent'] = $parent_id; $datarray['type'] = $params['type']; $datarray['verb'] = $params['verb']; @@ -420,8 +426,8 @@ function notification($params) { // create notification entry in DB - $r = q("insert into notify (hash,name,url,photo,date,uid,link,parent,type,verb,otype) - values('%s','%s','%s','%s','%s',%d,'%s',%d,%d,'%s','%s')", + $r = q("insert into notify (hash,name,url,photo,date,uid,link,iid,parent,type,verb,otype) + values('%s','%s','%s','%s','%s',%d,'%s',%d,%d,%d,'%s','%s')", dbesc($datarray['hash']), dbesc($datarray['name']), dbesc($datarray['url']), @@ -429,6 +435,7 @@ function notification($params) { dbesc($datarray['date']), intval($datarray['uid']), dbesc($datarray['link']), + intval($datarray['iid']), intval($datarray['parent']), intval($datarray['type']), dbesc($datarray['verb']), diff --git a/update.php b/update.php index 35aaff2c06..ca86c8557e 100644 --- a/update.php +++ b/update.php @@ -1,6 +1,6 @@ Date: Thu, 16 Apr 2015 21:05:37 +0200 Subject: [PATCH 046/306] preserve local index of friendica database when updating --- include/dbstructure.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/dbstructure.php b/include/dbstructure.php index 083255b8ae..0e76037537 100644 --- a/include/dbstructure.php +++ b/include/dbstructure.php @@ -151,15 +151,15 @@ function update_structure($verbose, $action, $tables=null, $definition=null) { if(false === $r) $errors .= t('Errors encountered creating database tables.').$name.EOL; } else { - // Drop the index if it isn't present in the definition + // Drop the index if it isn't present in the definition and index name doesn't start with "local_" foreach ($database[$name]["indexes"] AS $indexname => $fieldnames) - if (!isset($structure["indexes"][$indexname])) { + if (!isset($structure["indexes"][$indexname]) && substring($indexname, 0, 5) != 'local_') { $sql2=db_drop_index($indexname); if ($sql3 == "") $sql3 = "ALTER TABLE `".$name."` ".$sql2; else $sql3 .= ", ".$sql2; - } + } // Compare the field structure field by field foreach ($structure["fields"] AS $fieldname => $parameters) { From 00cbc383f5cbbca5a3c8f107858781548f012c20 Mon Sep 17 00:00:00 2001 From: hauke Date: Thu, 16 Apr 2015 21:07:46 +0200 Subject: [PATCH 047/306] code cleanup --- include/dbstructure.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/dbstructure.php b/include/dbstructure.php index 0e76037537..012bb6f0bc 100644 --- a/include/dbstructure.php +++ b/include/dbstructure.php @@ -159,7 +159,7 @@ function update_structure($verbose, $action, $tables=null, $definition=null) { $sql3 = "ALTER TABLE `".$name."` ".$sql2; else $sql3 .= ", ".$sql2; - } + } // Compare the field structure field by field foreach ($structure["fields"] AS $fieldname => $parameters) { From 803a9328b42765c220d6e4a995581ea8f71676fa Mon Sep 17 00:00:00 2001 From: Silke Meyer Date: Fri, 17 Apr 2015 09:08:57 +0200 Subject: [PATCH 048/306] Corrected typo --- doc/Vagrant.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/Vagrant.md b/doc/Vagrant.md index 136583c4d9..62d425290e 100644 --- a/doc/Vagrant.md +++ b/doc/Vagrant.md @@ -31,7 +31,7 @@ If you want some test data in your vagrant Friendica instance import the databas You will then have the following accounts to login: * admin, password admin - * friendica1, password friendica + * friendica1, password friendica1 * friendica2, password friendica2 and so on until friendica5 * friendica1 is connected to all others. friendica1 has two groups: group1 with friendica2 and friendica4, group2 with friendica3 and friendica5. * friendica2 and friendica3 are conntected. friendica4 and friendica5 are connected. From 99cc1419f672294a2375f9adf4bdcde348ab2b6e Mon Sep 17 00:00:00 2001 From: Silke Meyer Date: Fri, 17 Apr 2015 09:13:40 +0200 Subject: [PATCH 049/306] Modified according to #1478 (line break after each sentence) --- doc/Vagrant.md | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/doc/Vagrant.md b/doc/Vagrant.md index 62d425290e..83467a0a1f 100644 --- a/doc/Vagrant.md +++ b/doc/Vagrant.md @@ -5,15 +5,22 @@ Vagrant for Friendica Developers **Getting started** -[Vagrant](https://www.vagrantup.com/) is a virtualization solution for developers. No need to setup up a webserver, database etc. before actually starting. Vagrant creates a virtual machine (an Ubuntu 12.04) for you that you can just run inside VirtualBox and start to work directly on Friendica. What you need to do: +[Vagrant](https://www.vagrantup.com/) is a virtualization solution for developers. +No need to setup up a webserver, database etc. before actually starting. +Vagrant creates a virtual machine (an Ubuntu 12.04) for you that you can just run inside VirtualBox and start to work directly on Friendica. +What you need to do: 1. Install VirtualBox and vagrant. -2. Git clone your Friendica repository. Inside, you'll find a "Vagrantfile" and some scripts in the utils folder. -3. Run "vagrant up" from inside the friendica clone. Be patient: When it runs for the first time, it downloads an Ubuntu Server image. +2. Git clone your Friendica repository. +Inside, you'll find a "Vagrantfile" and some scripts in the utils folder. +3. Run "vagrant up" from inside the friendica clone. +Be patient: When it runs for the first time, it downloads an Ubuntu Server image. 4. Run "vagrant ssh" to log into the virtual machine to log in to the VM. -5. Open 192.168.22.10 in a browser to finish the Friendica installation. The mysql database is called "friendica", the mysql user and password both are "root". +5. Open 192.168.22.10 in a browser to finish the Friendica installation. +The mysql database is called "friendica", the mysql user and password both are "root". 6. Work on Friendica's code in your git clone on your machine (not in the VM). -7. Check the changes in your browser in the VM. Debug via the "vagrant ssh" login. +7. Check the changes in your browser in the VM. +Debug via the "vagrant ssh" login. 8. Commit and push your changes directly back to Github. If you want to stop vagrant after finishing your work, run the following command From c292d017239dc6f61f3d1fe60297e24a06d57f4d Mon Sep 17 00:00:00 2001 From: Hauke Altmann Date: Fri, 17 Apr 2015 09:59:28 +0200 Subject: [PATCH 050/306] bug fix: substring is not a PHP function %-) --- include/dbstructure.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/dbstructure.php b/include/dbstructure.php index 012bb6f0bc..9faede0ca1 100644 --- a/include/dbstructure.php +++ b/include/dbstructure.php @@ -153,7 +153,7 @@ function update_structure($verbose, $action, $tables=null, $definition=null) { } else { // Drop the index if it isn't present in the definition and index name doesn't start with "local_" foreach ($database[$name]["indexes"] AS $indexname => $fieldnames) - if (!isset($structure["indexes"][$indexname]) && substring($indexname, 0, 5) != 'local_') { + if (!isset($structure["indexes"][$indexname]) && substr($indexname, 0, 5) != 'local_') { $sql2=db_drop_index($indexname); if ($sql3 == "") $sql3 = "ALTER TABLE `".$name."` ".$sql2; From 62b4f117bf8e2592712bab88f76b94d819143132 Mon Sep 17 00:00:00 2001 From: Hauke Altmann Date: Fri, 17 Apr 2015 10:02:17 +0200 Subject: [PATCH 051/306] bug fix: "local_" has 6 not 5 characters --- include/dbstructure.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/dbstructure.php b/include/dbstructure.php index 9faede0ca1..76ba37e37c 100644 --- a/include/dbstructure.php +++ b/include/dbstructure.php @@ -153,7 +153,7 @@ function update_structure($verbose, $action, $tables=null, $definition=null) { } else { // Drop the index if it isn't present in the definition and index name doesn't start with "local_" foreach ($database[$name]["indexes"] AS $indexname => $fieldnames) - if (!isset($structure["indexes"][$indexname]) && substr($indexname, 0, 5) != 'local_') { + if (!isset($structure["indexes"][$indexname]) && substr($indexname, 0, 6) != 'local_') { $sql2=db_drop_index($indexname); if ($sql3 == "") $sql3 = "ALTER TABLE `".$name."` ".$sql2; From e6d516a355586fb077b0d622b6869d5d01dec7c0 Mon Sep 17 00:00:00 2001 From: Silke Meyer Date: Fri, 17 Apr 2015 16:04:10 +0200 Subject: [PATCH 052/306] Just added linebreaks --- doc/Github.md | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/doc/Github.md b/doc/Github.md index efee32d5ba..de7e546e3e 100644 --- a/doc/Github.md +++ b/doc/Github.md @@ -8,21 +8,28 @@ Friendica on Github 1. Install git on the system you will be developing on. 2. Create your own [github](https://github.com) account. 3. Fork the Friendica repository from [https://github.com/friendica/friendica.git](https://github.com/friendica/friendica.git). -4. Clone your fork from your Github account to your machine. Follow the instructions provided here: [http://help.github.com/fork-a-repo/](http://help.github.com/fork-a-repo/) to create and use your own tracking fork on github -5. Commit your changes to your fork. Then go to your github page and create a "Pull request" to notify us to merge your work. +4. Clone your fork from your Github account to your machine. +Follow the instructions provided here: [http://help.github.com/fork-a-repo/](http://help.github.com/fork-a-repo/) to create and use your own tracking fork on github +5. Commit your changes to your fork. +Then go to your github page and create a "Pull request" to notify us to merge your work. **Branches** There are two branches in the main repo on Github: 1. master: This branch contains stable releases only. -2. develop: This branch contains the latest code. This is what you want to work with. +2. develop: This branch contains the latest code. +This is what you want to work with. **Important** -Please pull in any changes from the project repository and merge them with your work **before** issuing a pull request. We reserve the right to reject any patch which results in a large number of merge conflicts. This is especially true in the case of language translations - where we may not be able to understand the subtle differences between conflicting versions. +Please pull in any changes from the project repository and merge them with your work **before** issuing a pull request. +We reserve the right to reject any patch which results in a large number of merge conflicts. +This is especially true in the case of language translations - where we may not be able to understand the subtle differences between conflicting versions. -Also - **test your changes**. Don't assume that a simple fix won't break something else. If possible get an experienced Friendica developer to review the code. +Also - **test your changes**. +Don't assume that a simple fix won't break something else. +If possible get an experienced Friendica developer to review the code. Check out how to work with [our Vagrant](help/Vagrant) to save a lot of setup time! From ecb33e2b6f509ba0876e55b0f81701117b708a9f Mon Sep 17 00:00:00 2001 From: Silke Meyer Date: Fri, 17 Apr 2015 16:56:41 +0200 Subject: [PATCH 053/306] Added branching workflow, reformatted markdown syntax --- doc/Github.md | 49 ++++++++++++++++++++++++++++++++++++++++++------- 1 file changed, 42 insertions(+), 7 deletions(-) diff --git a/doc/Github.md b/doc/Github.md index de7e546e3e..cfdb014764 100644 --- a/doc/Github.md +++ b/doc/Github.md @@ -3,7 +3,10 @@ Friendica on Github * [Home](help) -**Here is how you can work on the code with us** +Here is how you can work on the code with us. If you have any questions please write to the Friendica developers' forum. + +Introduction to the workflow with our Github repository +------------------------------------------------------- 1. Install git on the system you will be developing on. 2. Create your own [github](https://github.com) account. @@ -13,23 +16,55 @@ Follow the instructions provided here: [http://help.github.com/fork-a-repo/](htt 5. Commit your changes to your fork. Then go to your github page and create a "Pull request" to notify us to merge your work. -**Branches** +Our Git Branches +---------------- -There are two branches in the main repo on Github: +There are two relevant branches in the main repo on Github: 1. master: This branch contains stable releases only. 2. develop: This branch contains the latest code. This is what you want to work with. -**Important** +Fast-forwarding +--------------- -Please pull in any changes from the project repository and merge them with your work **before** issuing a pull request. +Fast forwarding is enabled by default in git. +When you merge with fast-forwarding it does not add a new commit to mark when you've performed the merge and how. +This means in your commit history you can't know exactly what happened in terms of merges. +**It's best to turn off fast-forwarding.** +This is done by running "git merge --no-ff". +[Here](https://stackoverflow.com/questions/5519007/how-do-i-make-git-merges-default-be-no-ff-no-commit) is an explanation on how to configure git to turn off fast-forwarding by default. +You can find some more background reading [here](http://nvie.com/posts/a-successful-git-branching-model/). + +Release branches +---------------- + +A release branch is created when the develop branch contains all features it should have. +A release branch is used for a few things. + +1. It allows last-minute bug fixing before the release goes to master branch. +2. It allows meta-data changes (README, CHANGELOG, etc.) for version bumps and documentation changes. +3. It makes sure the develop branch can receive new features that are **not** part of this release. + +That last point is important because... +**The moment a release branch is created, develop is now intended for the version after this release**. +So please don't ever merge develop into a release! +An example: If a release branch "release-3.4" is created, "develop" becomes either 3.5 or 4.0. +If you were to merge develop into release-3.4 at this point, features and bug-fixes intended for 3.5 or 4.0 might leak into this release branch. +This might introduce new bugs, too. +Which defeats the purpose of the release branch. + +Some important reminders +------------------------ + +1. Please pull in any changes from the project repository and merge them with your work **before** issuing a pull request. We reserve the right to reject any patch which results in a large number of merge conflicts. This is especially true in the case of language translations - where we may not be able to understand the subtle differences between conflicting versions. -Also - **test your changes**. -Don't assume that a simple fix won't break something else. +2. **Test your changes**. +Don't assume that a simple fix won't break anything else. If possible get an experienced Friendica developer to review the code. +Don't hesitate to ask us in case of doubt. Check out how to work with [our Vagrant](help/Vagrant) to save a lot of setup time! From 86c3d167268aa6afe65ff03b5eb6d1ff8ef1f4a9 Mon Sep 17 00:00:00 2001 From: Silke Meyer Date: Fri, 17 Apr 2015 16:58:48 +0200 Subject: [PATCH 054/306] Proper markdown subheadings --- doc/Vagrant.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/doc/Vagrant.md b/doc/Vagrant.md index 83467a0a1f..979c5c49b6 100644 --- a/doc/Vagrant.md +++ b/doc/Vagrant.md @@ -3,7 +3,8 @@ Vagrant for Friendica Developers * [Home](help) -**Getting started** +Getting started +--------------- [Vagrant](https://www.vagrantup.com/) is a virtualization solution for developers. No need to setup up a webserver, database etc. before actually starting. @@ -29,7 +30,8 @@ If you want to stop vagrant after finishing your work, run the following command in the development directory. -**Import test data** +Import test data +---------------- If you want some test data in your vagrant Friendica instance import the database dump friendica_test_data.sql like so (inside the VM): From 60f963c685d9e54d9dd858dd845d43678912c909 Mon Sep 17 00:00:00 2001 From: Silke Meyer Date: Fri, 17 Apr 2015 17:03:20 +0200 Subject: [PATCH 055/306] line breaks --- doc/Developers-Intro.md | 34 +++++++++++++++++++++++++--------- 1 file changed, 25 insertions(+), 9 deletions(-) diff --git a/doc/Developers-Intro.md b/doc/Developers-Intro.md index 23aff4f01b..7718c52672 100644 --- a/doc/Developers-Intro.md +++ b/doc/Developers-Intro.md @@ -3,7 +3,13 @@ Where to get started to help improve Friendica? * [Home](help) -Do you want to help us improve Friendica? Here we have compiled some hints on how to get started and some tasks to help you choose. A project like Friendica is the sum of many different contributions. **Very different skills are required to make good software. Some of them involve coding, others do not.** We are looking for helpers in all areas, whether you write text or code, whether you spread the word to convince people or design new icons. Whether you feel like an expert or like a newbie - join us with your ideas! +Do you want to help us improve Friendica? +Here we have compiled some hints on how to get started and some tasks to help you choose. +A project like Friendica is the sum of many different contributions. +**Very different skills are required to make good software. +Some of them involve coding, others do not.** +We are looking for helpers in all areas, whether you write text or code, whether you spread the word to convince people or design new icons. +Whether you feel like an expert or like a newbie - join us with your ideas! **Contact us** @@ -14,7 +20,9 @@ The discussion of Friendica development takes place in the following Friendica f **Help other users** -Remember the questions you had when you first tried Friendica? A good place to start can be to help new people find their way around Friendica in the [general support forum](https://helpers.pyxis.uberspace.de/profile/helpers). Welcome them, answer their questions, point them to documentation or ping other helpers directly if you can't help but think you know who can. +Remember the questions you had when you first tried Friendica? +A good place to start can be to help new people find their way around Friendica in the [general support forum](https://helpers.pyxis.uberspace.de/profile/helpers). +Welcome them, answer their questions, point them to documentation or ping other helpers directly if you can't help but think you know who can. **Translations** @@ -23,11 +31,13 @@ If you don't want to translate the UI, or it is already done to your satisfactio **Design** -Are you good at designing things? If you have seen Friendica you probably have ideas to improve it, haven't you? +Are you good at designing things? +If you have seen Friendica you probably have ideas to improve it, haven't you? * If you would like to work with us on enhancing the user interface, please join the [UX Watchdogs forum](https://fc.oscp.info/profile/ux-watchdogs) * Make plans for a better Friendica interface design and share them with us. -* Tell us if you are able to realize your ideas or what kind of help you need. We can't promise we have the right skills in the group but we'll try. +* Tell us if you are able to realize your ideas or what kind of help you need. +We can't promise we have the right skills in the group but we'll try. * Choose a thing to start with, e.g. work on the icon set of your favourite theme **Programming** @@ -37,13 +47,19 @@ Are you good at designing things? If you have seen Friendica you probably have i * If a bug looks fixed, ask the bug reporters for feedback to find out if the bug can be closed. * Fix a bug if you can. Please make the pull request against the *develop* branch of the repository. -* **Web interface:** The thing many people want most is a better interface, preferably a responsive Friendica theme. This is a piece of work! If you want to get involved here: - * Look at the first steps that were made (e.g. the clean theme). Ask us to find out whom to talk to about their experiences. +* **Web interface:** The thing many people want most is a better interface, preferably a responsive Friendica theme. +This is a piece of work! +If you want to get involved here: + * Look at the first steps that were made (e.g. the clean theme). + Ask us to find out whom to talk to about their experiences. * Talk to design people if you know any. - * Let us know about your plans [in the dev forum](https://friendika.openmindspace.org/profile/friendicadevelopers) and the [theme developer forum](https://friendica.eu/profile/ftdevs). Do not worry about cross-posting. + * Let us know about your plans [in the dev forum](https://friendika.openmindspace.org/profile/friendicadevelopers) and the [theme developer forum](https://friendica.eu/profile/ftdevs). + Do not worry about cross-posting. -* **Client software:** There are free software clients that do somehow work with Friendica but most of them need love and maintenance. Also, they were mostly made for other platforms using the StatusNet API. This means they lack:w - the features that are really specific to Friendica. Popular clients you might want to have a look at are: +* **Client software:** There are free software clients that do somehow work with Friendica but most of them need love and maintenance. +Also, they were mostly made for other platforms using the StatusNet API. +This means they lack the features that are really specific to Friendica. +Popular clients you might want to have a look at are: * [Hotot (Linux)](http://hotot.org/) - abandoned * [Friendica for Android](https://github.com/max-weller/friendica-for-android) - abandoned * You can find more working client software in [Wikipedia](https://en.wikipedia.org/wiki/Friendica). From 40f9568ee42f5164842572c0a784b763cffb9afa Mon Sep 17 00:00:00 2001 From: Silke Meyer Date: Fri, 17 Apr 2015 17:10:27 +0200 Subject: [PATCH 056/306] Proper markdown subheadings --- doc/Developers-Intro.md | 51 ++++++++++++++++++++++++++--------------- 1 file changed, 32 insertions(+), 19 deletions(-) diff --git a/doc/Developers-Intro.md b/doc/Developers-Intro.md index 7718c52672..6ae5cb5cd0 100644 --- a/doc/Developers-Intro.md +++ b/doc/Developers-Intro.md @@ -11,25 +11,29 @@ Some of them involve coding, others do not.** We are looking for helpers in all areas, whether you write text or code, whether you spread the word to convince people or design new icons. Whether you feel like an expert or like a newbie - join us with your ideas! -**Contact us** +Contact us +--- The discussion of Friendica development takes place in the following Friendica forums: * The main [forum for Friendica development](https://friendika.openmindspace.org/profile/friendicadevelopers) * The [forum for Friendica theme development](https://friendica.eu/profile/ftdevs) -**Help other users** +Help other users +--- Remember the questions you had when you first tried Friendica? A good place to start can be to help new people find their way around Friendica in the [general support forum](https://helpers.pyxis.uberspace.de/profile/helpers). Welcome them, answer their questions, point them to documentation or ping other helpers directly if you can't help but think you know who can. -**Translations** +Translation +--- The documentation contains help on how to translate Friendica in the [at Transifex](/help/translations) where the UI is translated. If you don't want to translate the UI, or it is already done to your satisfaction, you might want to work on the translation of the /help files? -**Design** +Design +--- Are you good at designing things? If you have seen Friendica you probably have ideas to improve it, haven't you? @@ -40,26 +44,35 @@ If you have seen Friendica you probably have ideas to improve it, haven't you? We can't promise we have the right skills in the group but we'll try. * Choose a thing to start with, e.g. work on the icon set of your favourite theme -**Programming** +Programming +--- -* **Issues:** Have a look at our [issue tracker](https://github.com/friendica/friendica) on gihub! - * Try to reproduce a bug that needs more inquries and write down what you find out. - * If a bug looks fixed, ask the bug reporters for feedback to find out if the bug can be closed. - * Fix a bug if you can. Please make the pull request against the *develop* branch of the repository. +###Issues -* **Web interface:** The thing many people want most is a better interface, preferably a responsive Friendica theme. +Have a look at our [issue tracker](https://github.com/friendica/friendica) on github! + + * Try to reproduce a bug that needs more inquries and write down what you find out. + * If a bug looks fixed, ask the bug reporters for feedback to find out if the bug can be closed. + * Fix a bug if you can. Please make the pull request against the *develop* branch of the repository. + +###Web interface + +The thing many people want most is a better interface, preferably a responsive Friendica theme. This is a piece of work! If you want to get involved here: - * Look at the first steps that were made (e.g. the clean theme). - Ask us to find out whom to talk to about their experiences. - * Talk to design people if you know any. - * Let us know about your plans [in the dev forum](https://friendika.openmindspace.org/profile/friendicadevelopers) and the [theme developer forum](https://friendica.eu/profile/ftdevs). - Do not worry about cross-posting. -* **Client software:** There are free software clients that do somehow work with Friendica but most of them need love and maintenance. +* Look at the first steps that were made (e.g. the clean theme). +Ask us to find out whom to talk to about their experiences. +* Talk to design people if you know any. +* Let us know about your plans [in the dev forum](https://friendika.openmindspace.org/profile/friendicadevelopers) and the [theme developer forum](https://friendica.eu/profile/ftdevs). +Do not worry about cross-posting. + +###Client software +There are free software clients that do somehow work with Friendica but most of them need love and maintenance. Also, they were mostly made for other platforms using the StatusNet API. This means they lack the features that are really specific to Friendica. Popular clients you might want to have a look at are: - * [Hotot (Linux)](http://hotot.org/) - abandoned - * [Friendica for Android](https://github.com/max-weller/friendica-for-android) - abandoned - * You can find more working client software in [Wikipedia](https://en.wikipedia.org/wiki/Friendica). + +* [Hotot (Linux)](http://hotot.org/) - abandoned +* [Friendica for Android](https://github.com/max-weller/friendica-for-android) - abandoned +* You can find more working client software in [Wikipedia](https://en.wikipedia.org/wiki/Friendica). From 27c101e0414c90dccf4a992b6d85e19ebb0595dc Mon Sep 17 00:00:00 2001 From: Silke Meyer Date: Fri, 17 Apr 2015 18:00:57 +0200 Subject: [PATCH 057/306] line breaks --- doc/Account-Basics.md | 66 ++++++++++++++++++++++++++++--------------- 1 file changed, 43 insertions(+), 23 deletions(-) diff --git a/doc/Account-Basics.md b/doc/Account-Basics.md index 91e19b6493..395b8ebde6 100644 --- a/doc/Account-Basics.md +++ b/doc/Account-Basics.md @@ -3,68 +3,88 @@ Account Basics * [Home](help) - **Registration** -Not all Friendica sites allow open registration. If registration is allowed, you will see a "Register" link immediately below the login prompts on the site home page. Following this link will take you to the site registration page. The strength of our network is that lots of different sites are all completely compatible with each other. If the site you're visting doesn't allow registration, or you think you might prefer another one, you can find a list of public servers here, and find one that meets your needs. - -If you'd like to have your own server, you can do that too. Visit the Friendica website to download the code with setup instructions. It's a very simple install process that anybody experienced in hosting websites, or with basic Linux experience can handle easily. +Not all Friendica sites allow open registration. +If registration is allowed, you will see a "Register" link immediately below the login prompts on the site home page. +Following this link will take you to the site registration page. +The strength of our network is that lots of different sites are all completely compatible with each other. +If the site you're visting doesn't allow registration, or you think you might prefer another one, you can find a list of public servers here, and find one that meets your needs. +If you'd like to have your own server, you can do that too. +Visit the Friendica website to download the code with setup instructions. +It's a very simple install process that anybody experienced in hosting websites, or with basic Linux experience can handle easily. *OpenID* -The first field on the Registration page is for an OpenID address. If you do not have an OpenID address or do not wish to use OpenID, leave this field blank. If you have an OpenID account elsewhere and wish to use it, enter the address into this field and click 'Register'. Friendica will attempt to extract as much information as possible from your OpenID provider and return to this page with those items already filled in. - +The first field on the Registration page is for an OpenID address. +If you do not have an OpenID address or do not wish to use OpenID, leave this field blank. +If you have an OpenID account elsewhere and wish to use it, enter the address into this field and click 'Register'. +Friendica will attempt to extract as much information as possible from your OpenID provider and return to this page with those items already filled in. *Your Full Name* -Please provide your full name **as you would like it to be displayed on this system**. Most people use their real name for this, but you're under no obligation to do so yourself. - +Please provide your full name **as you would like it to be displayed on this system**. +Most people use their real name for this, but you're under no obligation to do so yourself. *Email Address* -Please provide a valid email address. Your email address is **never** published. We need this to send you account information and your login details. You may also occasionally receive notifications of incoming messages or items requiring your attention, but you have the ability to completely disable these from your Settings page once you have logged in. This doesn't have to be your primary email address, but it does need to be a real email address. You can't get your initial password, or reset a lost password later without it. This is the only bit of personal information that has to be accurate. - +Please provide a valid email address. +Your email address is **never** published. +We need this to send you account information and your login details. +You may also occasionally receive notifications of incoming messages or items requiring your attention, but you have the ability to completely disable these from your Settings page once you have logged in. +This doesn't have to be your primary email address, but it does need to be a real email address. +You can't get your initial password, or reset a lost password later without it. +This is the only bit of personal information that has to be accurate. *Nickname* -A nickname is used to generate web addresses for many of your personal pages, and is also treated like an email address when establishing communications with others. Due to the way that the nickname is used, it has some limitations. It must contain only US-ASCII text characters and numbers, and must also start with a text character. It also must be unique on this system. This is used in many places to identify your account, and once set - cannot be changed. +A nickname is used to generate web addresses for many of your personal pages, and is also treated like an email address when establishing communications with others. +Due to the way that the nickname is used, it has some limitations. +It must contain only US-ASCII text characters and numbers, and must also start with a text character. +It also must be unique on this system. +This is used in many places to identify your account, and once set - cannot be changed. *Directory Publishing* -The Registration form also allows you to choose whether or not to list your account in the online directory. This is like a "phone book" and you may choose to be unlisted. We recommend that you select 'Yes' so that other people (friends, family, etc.) will be able to find you. If you choose 'No', you will essentially be invisible and have few opportunities for interaction. Whichever you choose, this can be changed any time from your Settings page after you login. - +The Registration form also allows you to choose whether or not to list your account in the online directory. +This is like a "phone book" and you may choose to be unlisted. +We recommend that you select 'Yes' so that other people (friends, family, etc.) will be able to find you. +If you choose 'No', you will essentially be invisible and have few opportunities for interaction. +Whichever you choose, this can be changed any time from your Settings page after you login. *Register* -Once you have provided the necessary details, click the 'Register' button. An email will be sent to you providing your account login details. Please watch your email (including spam folders) for your registration details and initial password. - +Once you have provided the necessary details, click the 'Register' button. +An email will be sent to you providing your account login details. +Please watch your email (including spam folders) for your registration details and initial password. **Login Page** -On the 'Login' page, please enter your login information that was provided during registration. You may use either your nickname or email address as a Login Name. +On the 'Login' page, please enter your login information that was provided during registration. +You may use either your nickname or email address as a Login Name. -If you use your account to manage multiple '[Pages](help/Pages)' and these all have the same email address, please enter the nickname for the account you wish to manage. +If you use your account to manage multiple '[Pages](help/Pages)' and these all have the same email address, please enter the nickname for the account you wish to manage. -*If* your account has been OpenID enabled, you may use your OpenID address as a login name and leave the password blank. You will be redirected to your OpenID provider to complete your authorisation. - -Otherwise, enter your password. This will have been initially provided in your registration email message. Your password is case-sensitive, so please check your 'Caps Lock' key if you are having difficulty logging in. +*If* your account has been OpenID enabled, you may use your OpenID address as a login name and leave the password blank. +You will be redirected to your OpenID provider to complete your authorisation. +Otherwise, enter your password. +This will have been initially provided in your registration email message. +Your password is case-sensitive, so please check your 'Caps Lock' key if you are having difficulty logging in. **Changing Your Password** After your first login, please visit the 'Settings' page from the top menu bar and change your password to something that you will remember. - **Getting Started** A ['Tips for New Members'](newmember) link will show up on your network and home pages for two weeks to provide some important Getting Started information. - **Retrieving Personal Data** -You can export a copy of your personal data in XML format from the "Export personal data" link at the top of your settings page. +You can export a copy of your personal data in XML format from the "Export personal data" link at the top of your settings page. **See Also** From 7faf4de3af0426a9b837a62d7aa323d677137e3e Mon Sep 17 00:00:00 2001 From: Silke Meyer Date: Fri, 17 Apr 2015 18:05:54 +0200 Subject: [PATCH 058/306] md syntax, fixed minor typos --- doc/Account-Basics.md | 43 ++++++++++++++++++++++++------------------- 1 file changed, 24 insertions(+), 19 deletions(-) diff --git a/doc/Account-Basics.md b/doc/Account-Basics.md index 395b8ebde6..ef6a13f222 100644 --- a/doc/Account-Basics.md +++ b/doc/Account-Basics.md @@ -3,41 +3,42 @@ Account Basics * [Home](help) -**Registration** +Registration +--- Not all Friendica sites allow open registration. -If registration is allowed, you will see a "Register" link immediately below the login prompts on the site home page. +If registration is allowed, you will see a "Register" link immediately below the login prompt on the site home page. Following this link will take you to the site registration page. The strength of our network is that lots of different sites are all completely compatible with each other. -If the site you're visting doesn't allow registration, or you think you might prefer another one, you can find a list of public servers here, and find one that meets your needs. +If the site you're visting doesn't allow registration, or you think you might prefer another one, you can find a [list of public servers here](http://dir.friendica.com/siteinfo), and find one that meets your needs. If you'd like to have your own server, you can do that too. -Visit the Friendica website to download the code with setup instructions. -It's a very simple install process that anybody experienced in hosting websites, or with basic Linux experience can handle easily. +Visit [the Friendica website](http://friendica.com/download) to download the code with setup instructions. +It's a very simple installation process that anybody experienced in hosting websites, or with basic Linux experience can handle easily. -*OpenID* +###OpenID The first field on the Registration page is for an OpenID address. If you do not have an OpenID address or do not wish to use OpenID, leave this field blank. If you have an OpenID account elsewhere and wish to use it, enter the address into this field and click 'Register'. Friendica will attempt to extract as much information as possible from your OpenID provider and return to this page with those items already filled in. -*Your Full Name* +###Your Full Name Please provide your full name **as you would like it to be displayed on this system**. Most people use their real name for this, but you're under no obligation to do so yourself. -*Email Address* +###Email Address Please provide a valid email address. Your email address is **never** published. We need this to send you account information and your login details. -You may also occasionally receive notifications of incoming messages or items requiring your attention, but you have the ability to completely disable these from your Settings page once you have logged in. +You may also occasionally receive notifications of incoming messages or items requiring your attention, but you have the possibility to completely disable these from your Settings page once you have logged in. This doesn't have to be your primary email address, but it does need to be a real email address. You can't get your initial password, or reset a lost password later without it. This is the only bit of personal information that has to be accurate. -*Nickname* +###Nickname A nickname is used to generate web addresses for many of your personal pages, and is also treated like an email address when establishing communications with others. Due to the way that the nickname is used, it has some limitations. @@ -46,21 +47,22 @@ It also must be unique on this system. This is used in many places to identify your account, and once set - cannot be changed. -*Directory Publishing* +###Directory Publishing -The Registration form also allows you to choose whether or not to list your account in the online directory. +The registration form also allows you to choose whether or not to list your account in the online directory. This is like a "phone book" and you may choose to be unlisted. We recommend that you select 'Yes' so that other people (friends, family, etc.) will be able to find you. If you choose 'No', you will essentially be invisible and have few opportunities for interaction. Whichever you choose, this can be changed any time from your Settings page after you login. -*Register* +###Register Once you have provided the necessary details, click the 'Register' button. An email will be sent to you providing your account login details. Please watch your email (including spam folders) for your registration details and initial password. -**Login Page** +Login Page +--- On the 'Login' page, please enter your login information that was provided during registration. You may use either your nickname or email address as a Login Name. @@ -74,20 +76,23 @@ Otherwise, enter your password. This will have been initially provided in your registration email message. Your password is case-sensitive, so please check your 'Caps Lock' key if you are having difficulty logging in. -**Changing Your Password** +Changing Your Password +--- After your first login, please visit the 'Settings' page from the top menu bar and change your password to something that you will remember. -**Getting Started** +Getting Started +--- A ['Tips for New Members'](newmember) link will show up on your network and home pages for two weeks to provide some important Getting Started information. -**Retrieving Personal Data** +Retrieving Personal Data +--- You can export a copy of your personal data in XML format from the "Export personal data" link at the top of your settings page. - -**See Also** +See Also +--- * [Profiles](help/Profiles) From f4eaf5842d0a7615c7b9cb81f354cf60f37f7300 Mon Sep 17 00:00:00 2001 From: Silke Meyer Date: Fri, 17 Apr 2015 18:17:44 +0200 Subject: [PATCH 059/306] sorted out the headings' md syntax --- doc/api.md | 238 ++++++++++++++++++++++++++++++++++------------------- 1 file changed, 153 insertions(+), 85 deletions(-) diff --git a/doc/api.md b/doc/api.md index f36a79a5eb..fa9df1245e 100644 --- a/doc/api.md +++ b/doc/api.md @@ -1,11 +1,13 @@ +Implemented API calls +=== The friendica API aims to be compatible to the [StatusNet API](http://status.net/wiki/Twitter-compatible_API) which aims to be compatible to the [Twitter API 1.0](https://dev.twitter.com/docs/api/1). Please refer to the linked documentation for further information. -## Implemented API calls +General +--- -### General -#### Unsupported parameters +### Unsupported parameters * cursor: Not implemented in StatusNet * trim_user: Not implemented in StatusNet * contributor_details: Not implemented in StatusNet @@ -14,21 +16,25 @@ Please refer to the linked documentation for further information. * include_rts: To-Do * include_my_retweet: Retweets in friendica are implemented in a different way -#### Different behaviour +### Different behaviour * screen_name: The nick name in friendica is only unique in each network but not for all networks. The users are searched in the following priority: Friendica, StatusNet/GNU Social, Diaspora, pump.io, Twitter. If no contact was found by this way, then the first contact is taken. * include_entities: Default is "false". If set to "true" then the plain text is formatted so that links are having descriptions. -#### Return values +### Return values * cid: Contact id of the user (important for "contact_allow" and "contact_deny") * network: network of the user -### account/verify_credentials -#### Parameters +account/verify_credentials +--- + +### Parameters * skip_status: Don't show the "status" field. (Default: false) * include_entities: "true" shows entities for pictures and links (Default: false) -### statuses/update, statuses/update_with_media -#### Parameters +statuses/update, statuses/update_with_media +--- + +### Parameters * title: Title of the status * status: Status in text format * htmlstatus: Status in HTML format @@ -44,28 +50,34 @@ Please refer to the linked documentation for further information. * network * include_entities: "true" shows entities for pictures and links (Default: false) -#### Unsupported parameters +### Unsupported parameters * trim_user * place_id * display_coordinates -### users/search -#### Parameters +users/search +--- + +### Parameters * q: name of the user -#### Unsupported parameters +### Unsupported parameters * page * count * include_entities -### users/show -#### Parameters +users/show +--- + +### Parameters * user_id: id of the user * screen_name: screen name (for technical reasons, this value is not unique!) * include_entities: "true" shows entities for pictures and links (Default: false) -### statuses/home_timeline -#### Parameters +statuses/home_timeline +--- + +### Parameters * count: Items per page (default: 20) * page: page number * since_id: minimal id @@ -74,13 +86,15 @@ Please refer to the linked documentation for further information. * conversation_id: Shows all statuses of a given conversation. * include_entities: "true" shows entities for pictures and links (Default: false) -#### Unsupported parameters +### Unsupported parameters * include_rts * trim_user * contributor_details -### statuses/friends_timeline -#### Parameters +statuses/friends_timeline +--- + +### Parameters * count: Items per page (default: 20) * page: page number * since_id: minimal id @@ -89,13 +103,15 @@ Please refer to the linked documentation for further information. * conversation_id: Shows all statuses of a given conversation. * include_entities: "true" shows entities for pictures and links (Default: false) -#### Unsupported parameters +### Unsupported parameters * include_rts * trim_user * contributor_details -### statuses/public_timeline -#### Parameters +statuses/public_timeline +--- + +### Parameters * count: Items per page (default: 20) * page: page number * since_id: minimal id @@ -104,63 +120,75 @@ Please refer to the linked documentation for further information. * conversation_id: Shows all statuses of a given conversation. * include_entities: "true" shows entities for pictures and links (Default: false) -#### Unsupported parameters +### Unsupported parameters * trim_user -### statuses/show -#### Parameters +statuses/show +--- + +### Parameters * id: message number * conversation: if set to "1" show all messages of the conversation with the given id * include_entities: "true" shows entities for pictures and links (Default: false) -#### Unsupported parameters +### Unsupported parameters * include_my_retweet * trim_user -### statuses/retweet -#### Parameters +statuses/retweet +--- + +### Parameters * id: message number * include_entities: "true" shows entities for pictures and links (Default: false) -#### Unsupported parameters +### Unsupported parameters * trim_user -### statuses/destroy -#### Parameters +statuses/destroy +--- + +### Parameters * id: message number * include_entities: "true" shows entities for pictures and links (Default: false) -#### Unsupported parameters +### Unsupported parameters * trim_user -### statuses/mentions -#### Parameters +statuses/mentions +--- + +### Parameters * count: Items per page (default: 20) * page: page number * since_id: minimal id * max_id: maximum id * include_entities: "true" shows entities for pictures and links (Default: false) -#### Unsupported parameters +### Unsupported parameters * include_rts * trim_user * contributor_details -### statuses/replies -#### Parameters +statuses/replies +--- + +### Parameters * count: Items per page (default: 20) * page: page number * since_id: minimal id * max_id: maximum id * include_entities: "true" shows entities for pictures and links (Default: false) -#### Unsupported parameters +### Unsupported parameters * include_rts * trim_user * contributor_details -### statuses/user_timeline -#### Parameters +statuses/user_timeline +--- + +### Parameters * user_id: id of the user * screen_name: screen name (for technical reasons, this value is not unique!) * count: Items per page (default: 20) @@ -171,15 +199,17 @@ Please refer to the linked documentation for further information. * conversation_id: Shows all statuses of a given conversation. * include_entities: "true" shows entities for pictures and links (Default: false) -#### Unsupported parameters +### Unsupported parameters * include_rts * trim_user * contributor_details -### conversation/show +conversation/show +--- + Unofficial Twitter command. It shows all direct answers (excluding the original post) to a given id. -#### Parameters +### Parameters * id: id of the post * count: Items per page (default: 20) * page: page number @@ -187,86 +217,105 @@ Unofficial Twitter command. It shows all direct answers (excluding the original * max_id: maximum id * include_entities: "true" shows entities for pictures and links (Default: false) -#### Unsupported parameters +### Unsupported parameters * include_rts * trim_user * contributor_details -### favorites -#### Parameters +favorites +--- + +### Parameters * count: Items per page (default: 20) * page: page number * since_id: minimal id * max_id: maximum id * include_entities: "true" shows entities for pictures and links (Default: false) -#### Unsupported parameters +### Unsupported parameters * user_id * screen_name Favorites aren't displayed to other users, so "user_id" and "screen_name". So setting this value will result in an empty array. -### account/rate_limit_status +account/rate_limit_status +--- -### help/test +help/test +--- -### statuses/friends +statuses/friends +--- * include_entities: "true" shows entities for pictures and links (Default: false) -#### Unsupported parameters +### Unsupported parameters * user_id * screen_name * cursor Friendica doesn't allow showing friends of other users. -### statuses/followers +statuses/followers +--- + * include_entities: "true" shows entities for pictures and links (Default: false) -#### Unsupported parameters +### Unsupported parameters * user_id * screen_name * cursor Friendica doesn't allow showing followers of other users. -### statusnet/config +statusnet/config +--- -### statusnet/version +statusnet/version +--- -### friends/ids -#### Parameters +friends/ids +--- + +### Parameters * stringify_ids: Should the id numbers be sent as text (true) or number (false)? (default: false) -#### Unsupported parameters +### Unsupported parameters * user_id * screen_name * cursor Friendica doesn't allow showing friends of other users. -### followers/ids -#### Parameters +followers/ids +--- + +Parameters +--- + * stringify_ids: Should the id numbers be sent as text (true) or number (false)? (default: false) -#### Unsupported parameters +### Unsupported parameters * user_id * screen_name * cursor Friendica doesn't allow showing followers of other users. -### direct_messages/new -#### Parameters +direct_messages/new +--- + +### Parameters * user_id: id of the user * screen_name: screen name (for technical reasons, this value is not unique!) * text: The message * replyto: ID of the replied direct message * title: Title of the direct message -### direct_messages/conversation +direct_messages/conversation +--- + Shows all direct messages of a conversation -#### Parameters +### Parameters * count: Items per page (default: 20) * page: page number * since_id: minimal id @@ -274,16 +323,20 @@ Shows all direct messages of a conversation * getText: Defines the format of the status field. Can be "html" or "plain" * uri: URI of the conversation -### direct_messages/all -#### Parameters +direct_messages/all +--- + +### Parameters * count: Items per page (default: 20) * page: page number * since_id: minimal id * max_id: maximum id * getText: Defines the format of the status field. Can be "html" or "plain" -### direct_messages/sent -#### Parameters +direct_messages/sent +--- + +### Parameters * count: Items per page (default: 20) * page: page number * since_id: minimal id @@ -291,8 +344,10 @@ Shows all direct messages of a conversation * getText: Defines the format of the status field. Can be "html" or "plain" * include_entities: "true" shows entities for pictures and links (Default: false) -### direct_messages -#### Parameters +direct_messages +--- + +### Parameters * count: Items per page (default: 20) * page: page number * since_id: minimal id @@ -300,26 +355,32 @@ Shows all direct messages of a conversation * getText: Defines the format of the status field. Can be "html" or "plain" * include_entities: "true" shows entities for pictures and links (Default: false) -#### Unsupported parameters +### Unsupported parameters * skip_status -### oauth/request_token -#### Parameters +oauth/request_token +--- + +### Parameters * oauth_callback -#### Unsupported parameters +### Unsupported parameters * x_auth_access_type -### oauth/access_token -#### Parameters +oauth/access_token +--- + +### Parameters * oauth_verifier -#### Unsupported parameters +### Unsupported parameters * x_auth_password * x_auth_username * x_auth_mode -## Not Implemented API calls +Not Implemented API calls +=== + The following list is extracted from the [API source file](https://github.com/friendica/friendica/blob/master/include/api.php) (at the very bottom): * favorites/create * favorites/destroy @@ -346,17 +407,24 @@ The following are things from the Twitter API also not implemented in StatusNet: * blocks/blocking * lists -## Usage Examples -### BASH / cURL +Usage Examples +=== + +BASH / cURL +--- + Betamax has documentated some example API usage from a [bash script](https://en.wikipedia.org/wiki/Bash_(Unix_shell) employing [curl](https://en.wikipedia.org/wiki/CURL) (see [his posting](https://betamax65.de/display/betamax65/43539)). /usr/bin/curl -u USER:PASS https://YOUR.FRIENDICA.TLD/api/statuses/update.xml -d source="some source id" -d status="the status you want to post" -### Python -The [RSStoFriedika](https://github.com/pafcu/RSStoFriendika) code can be used as an example of how to use the API with python. The lines for posting are located at [line 21](https://github.com/pafcu/RSStoFriendika/blob/master/RSStoFriendika.py#L21) and following. +Python +--- + +The [RSStoFriedika](https://github.com/pafcu/RSStoFriendika) code can be used as an example of how to use the API with python. +The lines for posting are located at [line 21](https://github.com/pafcu/RSStoFriendika/blob/master/RSStoFriendika.py#L21) and following. def tweet(server, message, group_allow=None): url = server + '/api/statuses/update' urllib2.urlopen(url, urllib.urlencode({'status': message,'group_allow[]':group_allow}, doseq=True)) -There is also a [module for python 3](https://bitbucket.org/tobiasd/python-friendica) for using the API. \ No newline at end of file +There is also a [module for python 3](https://bitbucket.org/tobiasd/python-friendica) for using the API. From 4f4dc6b7e0608852c3db656fd5f71697e611c4fb Mon Sep 17 00:00:00 2001 From: Silke Meyer Date: Fri, 17 Apr 2015 18:23:00 +0200 Subject: [PATCH 060/306] minor formatting stuff mainly --- doc/Bugs-and-Issues.md | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/doc/Bugs-and-Issues.md b/doc/Bugs-and-Issues.md index c9f845c001..366b2ed662 100644 --- a/doc/Bugs-and-Issues.md +++ b/doc/Bugs-and-Issues.md @@ -3,11 +3,16 @@ Bugs and Issues * [Home](help) +If your server has a support page, you should report any bugs/issues you encounter there first. +Reporting to your support page before reporting to the developers makes their job easier, as they don't have to deal with bug reports that might not have anything to do with them. +This helps us get new features faster. -If your server has a support page, you should report any bugs/issues you encounter there first. Reporting to your support page before reporting to the developers makes their job easier, as they don't have to deal with bug reports that might not have anything to do with them, and that helps us get new features faster. +If you're a technical user, or your site doesn't have a support page, you'll need to use the [Bug Tracker](http://bugs.friendica.com/). +Please perform a search to see if there's already an open bug that matches yours before submitting anything. -If you're a technical user, or your site doesn't have a support page, you'll need to use the Bug Tracker. Please perform a search to see if there's already an open bug that matches yours before submitting anything. +Try to provide as much information as you can about the bug, including the **full** text of any error messages or notices, and any steps required to replicate the problem in as much detail as possible. +It's generally better to provide too much information than not enough. -Try to provide as much information as you can about the bug, including the **full** text of any error messages or notices, and any steps required to replicate the problem in as much detail as possible. It's generally better to provide too much information than not enough. +See [this article](http://www.chiark.greenend.org.uk/~sgtatham/bugs.html) to learn more about submitting **good** bug reports. -See this article to learn more about submitting **good** bug reports. +And last but not least: Better report an issue you encountered even if you don't write the perfect bug report! From 5b9f29caded3854e13cadecf2b19174d0fe483f5 Mon Sep 17 00:00:00 2001 From: Silke Meyer Date: Sat, 18 Apr 2015 15:51:27 +0200 Subject: [PATCH 061/306] Formatting and some minor changes --- doc/Chats.md | 59 ++++++++++++++++++++++++++++++++++------------------ 1 file changed, 39 insertions(+), 20 deletions(-) diff --git a/doc/Chats.md b/doc/Chats.md index ba5a64bd88..fefc14f910 100644 --- a/doc/Chats.md +++ b/doc/Chats.md @@ -8,45 +8,64 @@ There are two possibilities to use a chat on your friendica site * IRC Chat * Jappix -##IRC-Chat Plugin +IRC-Chat Plugin +--- -After activating the plugin, you can find the chat at [yoursite.com/irc](../irc). Note: you can use this chat without any login at your site so that everyone could use it. +After activating the plugin, you can find the chat at [yoursite.com/irc](../irc). +Note: you can use this chat without any login at your site so that everyone could use it. -If you follow the link, you will see the login page of the IR chat. Now choose a nickname and a chatroom. You can choose every name for the room, even something like #superchatwhosenameisonlyknownbyme. At last, solve the captchas and click the connect button. +If you follow the link, you will see the login page of the IR chat. +Now choose a nickname and a chatroom. +You can choose every name for the room, even something like #superchatwhosenameisonlyknownbyme. +At last, solve the captchas and click the connect button. -The following window shows some text while connecting. This text isn't importend for you, just wait for the next window. The first line shows your name and your current IP address. The right part of the window shows all user. The lower part of the window contains an input field. +The following window shows some text while connecting. +This text isn't importend for you, just wait for the next window. +The first line shows your name and your current IP address. +The right part of the window shows all users. +The lower part of the window contains an input field. -##Jappix Mini +Jappix Mini +--- -The Jappix Mini Plugin creates a chatbox for jabber- and XMPP-contacts. You should already have a jabber/XMPP-account before setting up the plugin. You can find more information at http://www.jabber.org/ +The Jappix Mini Plugin creates a chatbox for jabber- and XMPP-contacts. +You should already have a jabber/XMPP-account before setting up the plugin. +You can find more information at [jabber.org](http://www.jabber.org/). -You can use several server to create an account: +You can use several servers to create an account: * [https://jappix.com](https://jappix.com) * [http://xmpp.net](http://xmpp.net) -**1. Basics** +###1. Basics -At first you have to get the current version (via github): +At first you have to get the current version. You can either pull it from [Github](https://github.com) like so: -cd /var/www/virtual/YOURSPACE/html/addon; git pull + $> cd /var/www/virtual/YOURSPACE/html/addon; git pull -or as a normal download via: https://github.com/friendica/friendica-addons/blob/master/jappixmini.tgz (click at „view raw“). +Or you can download a tar archive here: [jappixmini.tgz](https://github.com/friendica/friendica-addons/blob/master/jappixmini.tgz) (click at „view raw“). -Just unpack the file and rename the directory to „jappixmini“. Next, upload this directory and the .tgz-file into your addon directory of your friendica installation. +Just unpack the file and rename the directory to „jappixmini“. +Next, upload this directory and the .tgz-file into your addon directory of your friendica installation. -Now you can activate the plugin at the admin pages. Now you can find an entry of jappix at the plugin sidebar (where you can also find twitter, statusnet and other ones). The following page shows the settings of this plugin. +Now you can activate the plugin globally on the admin pages. +In the plugin sidebar, you will find an entry of jappix now (where you can also find twitter, statusnet and others). +The following page shows the settings of this plugin. -Now you can activate the BOSH proxy. -Next, go to the setting page of your account. +Activate the BOSH proxy. -**2. Settings** +###2. Settings -Go to the account settings and choose the plugin page. Scroll down until you find the Jappix Mini addon settings +Go to your user account settings next and choose the plugin page. +Scroll down until you find the Jappix Mini addon settings. At first you have to activate the addon. -Now add your Jabber/XMPP name, the domain/server (without "http"; just "jappix.com"). For „Jabber BOSH Host“ you could use "https://bind.jappix.com/". You can find further information in the „Configuration Help“-section below this fields. -At last you have enter your password (there are some more optional options, you can choose). Finish these steps with "send" to save the entries. Now, you should find the chatbox at the lower right corner of your browser window. +Now add your Jabber/XMPP name, the domain/server (without "http"; just "jappix.com"). +For „Jabber BOSH Host“ you could use "https://bind.jappix.com/". +You can find further information in the „Configuration Help“-section below this fields. +At last you have enter your password (there are some more optional options, you can choose). +Finish these steps with "send" to save the entries. +Now, you should find the chatbox at the lower right corner of your browser window. -If you want to add contacts manually, you can click "add contact". \ No newline at end of file +If you want to add contacts manually, you can click "add contact". From 90c657e211b864423382023e43bf7003e43cea59 Mon Sep 17 00:00:00 2001 From: Silke Meyer Date: Sat, 18 Apr 2015 16:02:39 +0200 Subject: [PATCH 062/306] Formatting and minor changes --- doc/Connectors.md | 70 +++++++++++++++++++++++++++++++---------------- 1 file changed, 47 insertions(+), 23 deletions(-) diff --git a/doc/Connectors.md b/doc/Connectors.md index 08b4c135e6..2b46b49c69 100644 --- a/doc/Connectors.md +++ b/doc/Connectors.md @@ -3,7 +3,9 @@ Connectors * [Home](help) -Connectors allow you to connect with external social networks and services. Connectors are only required for posting to existing accounts on Facebook, Twitter, and StatusNet. There is also a connector for accessing your email INBOX. +Connectors allow you to connect with external social networks and services. +They are only required for posting to existing accounts on Facebook, Twitter, and StatusNet. +There is also a connector for accessing your email INBOX. If the following network connectors are installed on your system, select the following links to visit the appropriate settings page and configure them for your account: @@ -15,53 +17,75 @@ If the following network connectors are installed on your system, select the fol Instructions For Connecting To People On Specific Services ========================================================== -**Friendica** +Friendica +--- + +You can either connect to others by providing your Identity Address on the 'Connect' page of any Friendica member. +Or you can put their Identity Address into the Connect box on your [Contacts](contacts) page. -You may connect by providing your Identity Address on the 'Connect' page of any Friendica member. You may also put their Identity Address into the Connect box on your [Contacts](contacts) page. - - -**Diaspora** +Diaspora +--- Add the Diaspora 'handle' to the 'Connect/Follow' text box on your [Contacts](contacts) page. -**Identi.ca/StatusNet/GNU-Social** +Identi.ca/StatusNet/GNU-Social +--- These are described as the "federated social web" or OStatus contacts. -Please note that there are **no** privacy provisions on the OStatus network. Any message which is delivered to **any** OStatus member is visible to anybody in the world and will negate any privacy settings that you have in effect. These messages will also turn up in public searches. +Please note that there are **no** privacy provisions on the OStatus network. +Any message which is delivered to **any** OStatus member is visible to anybody in the world and will negate any privacy settings that you have in effect. +These messages will also turn up in public searches. Since OStatus communications do not use authentication, if you select the profile privacy option to hide your profile and messages from unknown viewers, OStatus members will **not** be able to receive your communications. To connect with an OStatus member insert their profile URL or Identity address into the Connect box on your [Contacts](contacts) page. The StatusNet connector may be used if you wish posts to appear on an OStatus site using an existing OStatus account. - It is not necessary to do this, as you may 'follow' OStatus members from Friendica and they may follow you (by placing their own Identity Address into your 'Connect' page). -**Blogger, Wordpress, RSS feeds, arbitrary web pages** +Blogger, Wordpress, RSS feeds, arbitrary web pages +--- -Put the URL into the Connect box on your [Contacts](contacts) page. You will not be able to reply to these contacts. +Put the URL into the Connect box on your [Contacts](contacts) page. +PLease note that you will not be able to reply to these contacts. -This will allow you to _connect_ with millions of pages on the internet. All that we require to do this is that the page use a discoverable feed using either the RSS or Atom syndication format, and which provides an author name and a site image in a form which we can extract. +This feed reader feature will allow you to _connect_ with millions of pages on the internet. +All that the pages need to have is a discoverable feed using either the RSS or Atom syndication format, and which provides an author name and a site image in a form which we can extract. +Twitter +--- -**Twitter** +To follow a Twitter member, put the URL of the Twitter member's main page into the Connect box on your [Contacts](contacts) page. +To reply, you must have the Twitter connector installed, and reply using your own status editor. +Begin the message with @twitterperson replacing with the Twitter username. -To follow a Twitter member, put the URL of the Twitter member's main page into the Connect box on your [Contacts](contacts) page. To reply, you must have the Twitter connector installed, and reply using your own status editor. Begin the message with @twitterperson replacing with the Twitter username. +Email +--- -**Email** +Configure the email connector from your [Settings](settings) page. +Once this has been done, you may enter an email address to connect with using the Connect box on your [Contacts](contacts) page. +They must be the sender of a message which is currently in your INBOX for the connection to succeed. +You may include email contacts in private conversations. -Configure the email connector from your [Settings](settings) page. Once this has been done, you may enter an email addres to connect with using the Connect box on your [Contacts](contacts) page. They must be the sender of a message which is currently in your INBOX for the connect to succeed. You may include email contacts in private conversations. +Facebook +--- -**Facebook** +The Facebook connector is a plugin/addon which allows you to interact with friends on Facebook from within Friendica. +If enabled, your Facebook friend list will be imported, and you will see and be able to respond to Facebook posts. +Facebook members may also be added to private conversation groups. +You will not be able to connect with individual Facebook accounts - but will have your entire friend list imported and updated if new friends are added. -The Facebook connector is a plugin/addon which allows you to interact with friends on Facebook from within Friendica. If enabled, your Facebook friend list will be imported, and you will see and be able to respond to Facebook posts. Facebook members may also be added to private conversation groups. You will not be able to connect with individual Facebook accounts - but will have your entire friend list imported and updated if new friends are added. +Assuming the Facebook plugin/addon has been installed on your system, it can be enabled by going to your [Plugin Settings](settings/addon) page, and then selecting "Facebook Connector Settings" on that page. +This will only appear if the Facebook plugin/addon has been installed. +Follow the instruction to install or remove the Facebook connector. -Assuming the Facebook plugin/addon has been installed on your system, it can be enabled by going to your [Plugin Settings](settings/addon) page, and then select "Facebook Connector Settings" on that page. This will only appear if the Facebook plugin/addon has been installed. Follow the instruction to install or remove the Facebook connector. - -You may also choose whether your public postings are posted to Facebook by default. You may toggle this setting at any time from the Permissions settings of the status post editor (click the lock icon). This setting has no effect on private conversations - which will always be delivered to Facebook friends who are included in the permissions. - -(Note: At this time, Facebook contacts will not be able to view any private photos. This will be resolved in a future release. Facebook contacts may however see any public photos you have uploaded.) +You may also choose whether your public postings are posted to Facebook by default. +You may toggle this setting at any time from the Permissions settings of the status post editor (click the lock icon). +This setting has no effect on private conversations - which will always be delivered to Facebook friends who are included in the permissions. +(Note: At this time, Facebook contacts will not be able to view any private photos. +This will be resolved in a future release. +Facebook contacts may however see any public photos you have uploaded.) From 00a3960df0d4c35467b9d7e515cc4cdfea6ec3c9 Mon Sep 17 00:00:00 2001 From: Silke Meyer Date: Sat, 18 Apr 2015 16:56:56 +0200 Subject: [PATCH 063/306] Reformatting, cropped the admin part of SSL documentation out of the users' question --- doc/FAQ.md | 123 +++++++++++++++++++++++++++++++---------------------- 1 file changed, 72 insertions(+), 51 deletions(-) diff --git a/doc/FAQ.md b/doc/FAQ.md index 6fa852e0b0..fd2012c7ee 100644 --- a/doc/FAQ.md +++ b/doc/FAQ.md @@ -25,92 +25,109 @@ User ***** -**Why do I getting warnings about certificates?** +###Why do I get warnings about SSL certificates? -Sometimes you get a browser warning about a missing certificate. These warnings can have three reasons: +SSL (Secure Socket Layer) is a technology to encrypt data transfer between computers. +Sometimes your browser warns you about a missing or invalid certificate. +These warnings can have three reasons: -1. the server you are connected to doesn't have SSL; +1. The server you are connected to doesn't offer SSL encryption. +2. The server has a self-signed certificate (not recommended). +3. The certificate is expired. -2. the server has a self-signed certificate (not recommended) - -3. the certificate is expired. - -*(SSL (Secure Socket Layer) is a technology to encrypt data as it passes between two computers).* - -If you dont have a SSL cert yet, there are three ways to get one: buy one, get a free one (eg. via StartSSL) or create your own (not recommended). [You can find more information about setting up SSL and why it's a bad idea to use self-signed SSL here.](help/SSL) - -Be aware that a browser warning about security issues is something that can make new users feel insecure about the whole friendica project. - -Also you can have problems with the connection to diaspora because some pods require a SSL-certificated connection. - -If you are just using friendica for a specified group of people on a single server without a connection to the rest of the friendica network, there is no need to use SSL. If you exclusively use public posts, there is also no need for it. - -If you havn't set up a server yet, it's wise to compare the different provider and their SSL conditions. Some allow the usage of free certificates or give you the access to their certificate for free. Other ones only allow bought certificates from themselves or other providers. +We recommend to talk to the admin(s) of the affected friendica server. (Admins, please see the respective section of the [admin manual](help/SSL).) -**How can I upload images, files, links, videos and sound files to posts?** +###How can I upload images, files, links, videos and sound files to posts? -You can upload images from your computer by using the [editor](help/Text_editor). An overview of all uploaded images is listed at yourpage.com/photos/profilename. There you could also upload images directly and choose, if your contacts shall receive a message about this upload. +You can upload images from your computer by using the [editor](help/Text_editor). +An overview of all uploaded images is listed at *yourpage.com/photos/profilename*. +On that page, you can also upload images directly and choose, if your contacts shall receive a message about this upload. -Generally, you could attach every kind of file to a post. This is possible by using the "paper-clip"-symbol at the editor. These files will be linked to your post and can be downloaded by your contacts. But it's not possible to get a preview for these ones. Because of this, this upload method is recommended for office or zipped files. -If you want to use Dropbox, owncloud at your own server or any other [filehoster](http://en.wikipedia.org/wiki/Comparison_of_file_hosting_services), you'll have use the "link"-button (chain-symbol). +Generally, you could attach every kind of file to a post. +This is possible by using the "paper-clip"-symbol in the editor. +These files will be linked to your post and can be downloaded by your contacts. +But it's not possible to get a preview for these ones. +Because of this, this upload method is recommended for office or zipped files. +If you want share content from Dropbox, Owncloud or any other [filehoster](http://en.wikipedia.org/wiki/Comparison_of_file_hosting_services), use the "link"-button (chain-symbol). -When you're adding URLs of other webpages with the "link"-button, Friendica tries to create a small preview. If this doesn't work, try to add the link by typing: [url=http://example.com]self-chosen name[/url]. +When you're adding URLs of other webpages with the "link"-button, Friendica tries to create a small preview. +If this doesn't work, try to add the link by typing: [url=http://example.com]*self-chosen name*[/url]. -You can also add video and audio files to posts. But instead of a direct upload you have to use one of the following methods: +You can also add video and audio files to posts. +But instead of a direct upload you have to use one of the following methods: 1. Add the video or audio link of a hoster (Youtube, Vimeo, Soundcloud and everyone else with oembed/opengraph-support). Videos will be shown with a preview image you can click on to start it. SoundCloud directly inserts a player to your post. -2. If you have an own server, you can upload your multimedia files via FTP and insert the URL. Your video or sound file will be shown with their own player at your post. +2. If you have your own server, you can upload multimedia files via FTP and insert the URL. -Friendica is using HTML5 for embedding content. Therefore, the supported files are depending on your browser and operating system (OS). Some filetypes are WebM, MP4, MP3 and OGG. There are more examples at wikipedia ([video](http://en.wikipedia.org/wiki/HTML5_video), [audio](http://en.wikipedia.org/wiki/HTML5_audio)). +Friendica is using HTML5 for embedding content. +Therefore, the supported files are depending on your browser and operating system. +Some supported filetypes are WebM, MP4, MP3 and OGG. +See Wikipedia for more of them ([video](http://en.wikipedia.org/wiki/HTML5_video), [audio](http://en.wikipedia.org/wiki/HTML5_audio)). -**Is it possible to have different avatars per profile?** +###Is it possible to have different avatars per profile? -Yes. On your Edit/Manage Profiles page, you will find a "change profile photo" link. Clicking this will take you to a page where you can upload a photograph and select which profile it will be associated with. To avoid privacy leakage, we only display the photograph associated with your default profile as the avatar in your posts. +Yes. On your Edit/Manage Profiles page, you will find a "change profile photo" link. +Clicking this will take you to a page where you can upload a photograph and select which profile it will be associated with. +To avoid privacy leakage, we only display the photograph associated with your default profile as the avatar in your posts. -**What is the difference between blocked|ignored|archived|hidden contacts?** +###What is the difference between blocked|ignored|archived|hidden contacts? -We prevent direct communication with blocked contacts. They are not included in delivery, and their own posts to you are not imported; however their conversations with your friends will still be visible in your stream. If you remove a contact completely, they can send you another friend request. Blocked contacts cannot do this. They cannot communicate with you directly, only through friends. +We prevent direct communication with **blocked contacts**. +They are not included in delivery, and their own posts to you are not imported. +However their conversations with your friends will still be visible in your stream. +If you remove a contact completely, they can send you another friend request. +Blocked contacts cannot do this. They cannot communicate with you directly, only through friends. -Ignored contacts are included in delivery - they will receive your posts. However we do not import their posts to you. Like blocking, you will still see this person's comments to posts made by your friends. +**Ignored contacts** are included in delivery - they will receive your posts. +However we do not import their posts to you. +Like blocking, you will still see this person's comments to posts made by your friends. -[A plugin called "blockem" can be installed to collapse/hide all posts from a particular person in your stream if you desire complete blocking of an individual, including his/her conversations with your other friends.] +A plugin called "blockem" can be installed to collapse/hide all posts from a particular person in your stream if you desire complete blocking of an individual, including his/her conversations with your other friends. -An archived contact means that communication is not possible and will not be attempted (perhaps the person moved to a new site and removed the old profile); however unlike blocking, existing posts this person made before being archived will be visible in your stream. +An **archived contact** means that communication is not possible and will not be attempted. +(Perhaps the person moved to a new site and removed the old profile.) +However unlike blocking, existing posts this person made before being archived will be visible in your stream. -A hidden contact will not be displayed in any "friend list" (except to you). However a hidden contact will appear normally in conversations and this may expose his/her hidden status to anybody who can see the conversation. +A **hidden contact** will not be displayed in any "friend list" (except to you). +However a hidden contact will appear normally in conversations and this may expose his/her hidden status to anybody who can see the conversation. -**What happens when an account is removed? Is it truly deleted?** +###What happens when an account is removed? Is it truly deleted? -If you delete your account, we will immediately remove all your content on your server, and then issue requests to all your contacts to remove you. This will also remove you from the global directory. Doing this requires that your account and profile still be "partially" available for up to 24 hours in order to establish contact with all your friends. We can block it in several ways so that it appears empty and all profile information erased, but will then wait for 24 hours (or after all of your contacts have been notified) before we can physically remove it. +If you delete your account, we will immediately remove all your content on **your** server. + +Then Friendica issues requests to all your contacts to remove you. +This will also remove you from the global directory. +Doing this requires your account and profile still to be "partially" available for up to 24 hours in order to establish contact with all your friends. +We can block it in several ways so that it appears empty and all profile information erased, but will then wait for 24 hours (or after all of your contacts have been notified) before we can physically remove it. + +After that, your account is deleted. -**Can I follow a hashtag?** +###Can I follow a hashtag? No. The act of 'following' a hashtags is an interesting technology, but presents a few issues. -1.) Posts which have to be copied to all sites on the network that are "listening" to that tag, which increases the storage demands to the detriment of small sites, and making the use of shared hosting practically impossible, and +1. Posts would have to be copied to all sites on the network that are "listening" to that hashtag. This would increase the storage demands to the detriment of small sites. It would make the use of shared hosting practically impossible. -2.) Making spam easy (tag spam is quite a serious issue on identi.ca for instance) +2. Making spam easy (tag spam is quite a serious issue on identi.ca for instance) -but mostly - -3.) It creates a natural bias towards large sites which hold more tagged content - if your network uses tagging instead of other conversation federation mechanisms such as groups/forums. +3. It creates a natural bias towards large sites which hold more tagged content - if your network uses tagging instead of other conversation federation mechanisms such as groups/forums. Instead, we offer other mechanisms for wide-area conversations while retaining a 'level playing ground' for both large and small sites, such as forums and community pages and shared tags. -**How to create a RSS feed of the stream?** +###How to create a RSS feed of the stream? If you want to share your public page via rss you can use one of the following links: @@ -132,9 +149,10 @@ RSS feed of the conversations at your site -**Are there any clients for friendica I can use?** +###Are there any clients for friendica I can use? -Friendica is using a [Twitter/StatusNet compatible API](help/api), which means you can use any Twitter/StatusNet/GNU Social client for your plattform as long as you can change the API path in its settings. Here is a list of known working clients +Friendica is using a [Twitter/StatusNet compatible API](help/api), which means you can use any Twitter/StatusNet/GNU Social client for your plattform as long as you can change the API path in its settings. +Here is a list of known working clients: * Android * Friendica Client for Android @@ -153,9 +171,11 @@ Depending on the features of the client you might encounter some glitches in usa -**Where I can find help?** +###Where I can find help? -If you have problems with your Friendica page, you can ask the community at the [Friendica Support Group](https://helpers.pyxis.uberspace.de/profile/helpers). If you can't use your default profile you can either use a test account [test server](http://friendica.com/node/31) respectively an account at a public site [list](http://dir.friendica.com/siteinfo) or you can use the Librelist mailing list. If you want to use the mailing list, please just send a mail to friendica AT librelist DOT com. +If you have problems with your Friendica page, you can ask the community at the [Friendica Support Group](https://helpers.pyxis.uberspace.de/profile/helpers). +If you can't use your default profile you can either use a test account [test server](http://friendica.com/node/31) respectively an account at a public site [list](http://dir.friendica.com/siteinfo) or you can use the Librelist mailing list. +If you want to use the mailing list, please just send a mail to friendica AT librelist DOT com. If you are a theme developer, you will find help at this forum: [Friendica Theme Developers](https://friendica.eu/profile/ftdevs). @@ -164,15 +184,16 @@ Admin ***** -**Can I configure multiple domains with the same code instance?** +###Can I configure multiple domains with the same code instance? -This function is not supported anymore starting from Friendica 3.3 +No, this function is not supported anymore starting from Friendica 3.3. -**Where can I find the source code of friendica, addons and themes?** +###Where can I find the source code of friendica, addons and themes? -You can find the main respository [here](https://github.com/friendica/friendica). There you will always find the current stable version of friendica. +You can find the main respository [here](https://github.com/friendica/friendica). +There you will always find the current stable version of friendica. Addons are listed at [this page](https://github.com/friendica/friendica-addons). From 3bab439540f7f175a765e58f74bdcf7fb033dfed Mon Sep 17 00:00:00 2001 From: Silke Meyer Date: Sat, 18 Apr 2015 17:10:14 +0200 Subject: [PATCH 064/306] line breaks --- doc/Forums.md | 49 +++++++++++++++++++++++++++++++++++++------------ 1 file changed, 37 insertions(+), 12 deletions(-) diff --git a/doc/Forums.md b/doc/Forums.md index 56f47b350b..2eac81a722 100644 --- a/doc/Forums.md +++ b/doc/Forums.md @@ -6,31 +6,56 @@ Forums Friendica also lets you create forums and/or celebrity accounts. -Every page in Friendica has a nickname and these must all be unique. This applies to all forums, whether they are normal profiles or forum profiles. +Every page in Friendica has a nickname and these must all be unique. +This applies to all forums, whether they are normal profiles or forum profiles. -Therefore the first thing you need to do to create a new forum is to register a new account for the forum. Please note that the site administrator can restrict and/or regulate the registration of new accounts. +Therefore the first thing you need to do to create a new forum is to register a new account for the forum. +Please note that the site administrator can restrict and/or regulate the registration of new accounts. -If you create a second account on a system and use the same email address or OpenID account as an existing account, you will no longer be able to use the email address (or OpenID) to login to the account. You should login using the account nickname instead. +If you create a second account on a system and use the same email address or OpenID account as an existing account, you will no longer be able to use the email address (or OpenID) to log in to the account. +You should log in using the account nickname instead. -On the new account, visit the 'Settings' page. Towards the end of the page are "Advanced Account/Page Type Settings". Typically you would use "Normal Account" for a normal personal account. This is the default selection. Community Forum/Celebrity Accounts provide the ability for people to become friends/fans of the forum without requiring approval. +On the new account, visit the 'Settings' page. +Towards the end of the page are "Advanced Account/Page Type Settings". +Typically you would use "Normal Account" for a normal personal account. +This is the default selection. +Community Forum/Celebrity Accounts provide the ability for people to become friends/fans of the forum without requiring approval. -The exact setting you would use depends on how you wish to interact with people who join the page. The "Soapbox" setting let's the page owner control all communications. Everything you post will go out to the forum members, but there will be no opportunity for interaction. This setting would typically be used for announcements or corporate communications. +The exact setting you would use depends on how you wish to interact with people who join the page. +The "Soapbox" setting let's the page owner control all communications. +Everything you post will go out to the forum members, but there will be no opportunity for interaction. +This setting would typically be used for announcements or corporate communications. -The most common setting is the "Community Forum". This creates a forum page where all members can freely interact. +The most common setting is the "Community Forum". +This creates a forum page where all members can freely interact. The "Automatic Friend Account" is typically used for personal profile forums where you wish to automatically approve any friendship/connection requests. -**Managing Multiple forums** +Managing Multiple forums +--- -We recommend that you create group forums with the same email address and password as your normal account. If you do this, you will find a new "Manage" tab on the menu bar which lets you toggle identities easily and manage your forums. You are not required to do this, but the alternative is to logout and log back into the other account to manage alternate forums - and this could get cumbersome if you manage several different forums/identities. +We recommend that you create group forums with the same email address and password as your normal account. +If you do this, you will find a new "Manage" tab on the menu bar which lets you toggle identities easily and manage your forums. +You are not required to do this, but the alternative is to log out and log back into the other account to manage alternate forums. +This could get cumbersome if you manage several different forums/identities. -You may also appoint a delegate to manage your forum. Do this by visiting the [Delegation Setup Page](delegate). This will provide you with a list of contacts on this system under "Potential Delegates". Selecting one or more persons will give them access to manage your forum. They will be able to edit contacts, profiles, and all content for this account/page. Please use this facility wisely. Delegated managers will not be able to alter basic account settings such as passwords or page types and/or remove the account. +You may also appoint a delegate to manage your forum. +Do this by visiting the [Delegation Setup Page](delegate). +This will provide you with a list of contacts on this system under "Potential Delegates". +Selecting one or more persons will give them access to manage your forum. +They will be able to edit contacts, profiles, and all content for this account/page. +Please use this facility wisely. +Delegated managers will not be able to alter basic account settings such as passwords or page types and/or remove the account. -**Posting to Community forums** +Posting to Community forums +--- -If you are a member of a community forum, you may post to the forum by including an @-tag in the post mentioning the forum. For example @bicycle would send my post to all members of the group "bicycle" in addition to the normal recipients. If your post is private you must also explicitly include the group in the post permissions (to allow the forum "contact" to see the post) **and** mention it in a tag (which redistributes the post to the forum members). +If you are a member of a community forum, you may post to the forum by including an @-tag in the post mentioning the forum. +For example @bicycle would send my post to all members of the group "bicycle" in addition to the normal recipients. +If your post is private you must also explicitly include the group in the post permissions (to allow the forum "contact" to see the post) **and** mention it in a tag (which redistributes the post to the forum members). You may also post to a community forum by posting a "wall-to-wall" post using secure cross-site authentication. -Comments which are relayed to community forums will be relayed back to the original post creator. Mentioning the forum with an @-tag in a comment does not relay the message, as distribution is controlled entirely by the original post creator. \ No newline at end of file +Comments which are relayed to community forums will be relayed back to the original post creator. +Mentioning the forum with an @-tag in a comment does not relay the message, as distribution is controlled entirely by the original post creator. From f1fc55736be7fe2901fbddf4d6916809a137ba95 Mon Sep 17 00:00:00 2001 From: Silke Meyer Date: Sat, 18 Apr 2015 18:39:16 +0200 Subject: [PATCH 065/306] Reformatting and minor changes to content --- doc/Improve-Performance.md | 80 +++++++++++++++++--------------------- 1 file changed, 35 insertions(+), 45 deletions(-) diff --git a/doc/Improve-Performance.md b/doc/Improve-Performance.md index d4c94d2d11..ced5901228 100644 --- a/doc/Improve-Performance.md +++ b/doc/Improve-Performance.md @@ -1,13 +1,9 @@ -How to: improve performance +How to improve the performance of a Friendica site ============== * [Home](help) -A little guide to increase the performance of a Friendica site - -**At first** - -Feel free to ask at Friendica support at https://helpers.pyxis.uberspace.de/profile/helpers if you need some clarification about the following instructions or if you need help in any other way. +Feel free to ask in the [Friendica support forum](https://helpers.pyxis.uberspace.de/profile/helpers) if you need some clarification about the following instructions or if you need help in any other way. System configuration -------- @@ -26,9 +22,11 @@ If you have many OStatus contacts then completing of conversations can be very t Lock files help avoid the possibility of several background processes running at the same time. -For example: It can happen that the poller.php takes longer than expected. When there is no lock file, it is possible for several instances of poller.php to run at the same time - which would slow down the system and affect the maximum numbers of processes and database connections. +For example: It can happen that the poller.php takes longer than expected. +When there is no lock file, it is possible for several instances of poller.php to run at the same time - which would slow down the system and affect the maximum numbers of processes and database connections. -Please define a full file path that is writeable by the web server process. If your site is located at "/var/www/sitename/htdocs/" you could maybe create a folder "/var/www/sitename/temp/". +Please define a full file path that is writeable by the web server process. +If your site is located at "/var/www/sitename/htdocs/" you could maybe create a folder "/var/www/sitename/temp/". Enable "Use MySQL full text engine" @@ -36,20 +34,17 @@ When using MyISAM (default) this speeds up search. Set "Path to item cache" to an empty value outside your web root. -Parsed BBCode and some external images will be put there. Parsing BBCode is a time wasting process that also makes heave use of the CPU. - +Parsed BBCode and some external images will be put there. +Parsing BBCode is a time wasting process that also makes heave use of the CPU. You can use the same folder you used for the lock file. **Warning!** -The folder for item cache is cleaned up regularly. Every file that exceeds the cache duration is deleted. **If you accidentally point the cache path to your web root then you will delete your web root!** - +The folder for item cache is cleaned up regularly. +Every file that exceeds the cache duration is deleted. **If you accidentally point the cache path to your web root then you will delete your web root!** So double check that the folder only contains temporary content that can be deleted at any time. - You have been warned. -P.S. It happened to me :) - Plugins -------- @@ -61,20 +56,18 @@ Active the following plugins: ###Alternate Pagination - -**Description** - -This plugin reduces the database load massively. Downside: You can't see the total number of pages available at each module, and have this replaced with "older" and "newer" links. - -**Administration** +This plugin reduces the database load massively. +Downside: You can't see the total number of pages available at each module, and have this replaced with "older" and "newer" links. Go to the admin settings of "altpager" and set it to "global". ###rendertime -This plugin doesn't speed up your system. It helps analyzing your bottlenecks. +This plugin doesn't speed up your system. +It helps to analyze your bottlenecks. -When enabled you see some values like the following at the bottom of every page: +When enabled you see some values at the bottom of every page. +They show your performance problems. Performance: Database: 0.244, Network: 0.002, Rendering: 0.044, Parser: 0.001, I/O: 0.021, Other: 0.237, Total: 0.548 @@ -86,50 +79,47 @@ When enabled you see some values like the following at the bottom of every page: Others: Everything else :) Total: The sum of all above values -These values show your performance problems. - -Webserver +Apache Webserver -------- -If you are using Apache please enable the following modules. +The following Apache modules are recommended: -**Cache-Control** +###Cache-Control This module tells the client to cache the content of static files so that they aren't fetched with every request. - Enable the module "mod_expires" by typing in "a2enmod expires" as root. - Please add the following lines to your site configuration in the "directory" context. -ExpiresActive on ExpiresDefault "access plus 1 week" + ExpiresActive on ExpiresDefault "access plus 1 week" -See also: http://httpd.apache.org/docs/2.2/mod/mod_expires.html +Also see the Apache [2.2](http://httpd.apache.org/docs/2.2/mod/mod_expires.html) / [2.4](https://httpd.apache.org/docs/2.4/mod/mod_expires.html) documentation. -**Compress content** +###Compress content This module compresses the traffic between the web server and the client. - Enable the module "mod_deflate" by typing in "a2enmod deflate" as root. -See also: http://httpd.apache.org/docs/2.2/mod/mod_deflate.html +Also see the Apache [2.2](http://httpd.apache.org/docs/2.2/mod/mod_deflate.html) / [2.4](https://httpd.apache.org/docs/2.4/mod/mod_deflate.html) documentation. PHP -------- -**FCGI** +###FCGI -When using apache think about using FCGI. When using a Debian based distribution you will need the packages named "php5-cgi" and "libapache2-mod-fcgid". +When using Apache think about using FCGI. +In a Debian-based distribution you will need to install the packages named "php5-cgi" and "libapache2-mod-fcgid". -Please refer to external documentations for a more detailed explanation how to set up a system based upon FCGI. +Please refer to external documentation for a more detailed explanation how to set up a system based upon FCGI. -**APC** +###APC -APC is an opcode cache. It speeds up the processing of PHP code. +APC is an opcode cache. +It speeds up the processing of PHP code. +When APC is enabled, Friendica uses it to store configuration data between different requests. +This helps speeding up the page creation time. -When APC is enabled, Friendica uses it to store configuration data between different requests. This helps speeding up the page creation time. +###Database -**Database** +There are scripts like [tuning-primer.sh](http://www.day32.com/MySQL/) and [mysqltuner.pl](http://mysqltuner.pl) that analyze your database server and give hints on values that could be changed. -There are scripts like [tuning-primer.sh](http://www.day32.com/MySQL/) and [mysqltuner.pl](http://mysqltuner.pl) that analyzes your database server and give hints on values that could be changed. - -Please enable the slow query log. This helps being aware of performance problems. +Please enable the slow query log. This helps to find performance problems. From 584c2e4a5843d0de65493f000dc1e4aed7fa47b2 Mon Sep 17 00:00:00 2001 From: Silke Meyer Date: Sat, 18 Apr 2015 18:57:22 +0200 Subject: [PATCH 066/306] Reformatting and minor changes to content --- doc/Installing-Connectors.md | 128 ++++++++++++++++++----------------- 1 file changed, 66 insertions(+), 62 deletions(-) diff --git a/doc/Installing-Connectors.md b/doc/Installing-Connectors.md index 83d6954e76..49f21608f7 100644 --- a/doc/Installing-Connectors.md +++ b/doc/Installing-Connectors.md @@ -6,66 +6,69 @@ Installing Connectors (Facebook/Twitter/StatusNet) Friendica uses plugins to provide connectivity to some networks, such as Facebook and Twitter. -There is also a plugin to post through to an existing account on a Status.Net service. You do not require this to communicate with Status.Net members from Friendica - only if you wish to post to an existing account. +There is also a plugin to post through to an existing account on a StatusNet service. +You only need this to post to an already existing StatusNet account, but not to communicate with StatusNet members in general. -All three of these plugins require an account on the target network. In addition you (or typically the server administrator) will need to obtain an API key to provide authenticated access to your Friendica server. +All three plugins require an account on the target network. +In addition you (or typically the server administrator) will need to obtain an API key to provide authenticated access to your Friendica server. -**Site Configuration** +Site Configuration +--- -Plugins must be installed by the site administrator before they can be used. This is accomplished through the site administration panel. +Plugins must be installed by the site administrator before they can be used. +This is accomplished through the site administration panel. +Each of the connectors also requires an "API key" from the service you wish to connect with. +Some plugins allow you to enter this information in the site administration pages, while others may require you to edit your configuration file (.htconfig.php). +The ways to obtain these keys vary between the services, but they all require an existing account on the target service. +Once installed, these API keys can usually be shared by all site members. -Each of the connectors also requires an "API key" from the service you wish to connect with. Some plugins allow you to enter this information in the site administration pages, while others may require you to edit your configuration file (.htconfig.php). The method for obtaining these keys varies greatly - but almost always requires an existing account on the target service. Once installed, these API keys can usually be shared by all site members. +The details of configuring each service follow (much of this information comes directly from the plugin source files): - -The details of configuring each service follows (much of this information comes directly from the plugin source files): - -**Twitter Plugin for Friendica** +Twitter Plugin for Friendica +--- * Author: Tobias Diekershoff * tobias.diekershoff@gmx.net +* License: 3-clause BSD license -* License:3-clause BSD license - -Configuration: -To use this plugin you need a OAuth Consumer key pair (key & secret) -you can get it from Twitter at https://twitter.com/apps +###Configuration +To use this plugin you need a OAuth Consumer key pair (key & secret). +You can get it from [Twitter](https://twitter.com/apps). Register your Friendica site as "Client" application with "Read & Write" access. -We do not need "Twitter as login". When you've registered the app you get the -OAuth Consumer key and secret pair for your application/site. +We do not need "Twitter as login". +When you've registered the app you get a key pair with an OAuth Consumer key and a secret key for your application/site. +Add this key pair to your global .htconfig.php: -Add this key pair to your global .htconfig.php + $a->config['twitter']['consumerkey'] = 'your consumer_key here'; + $a->config['twitter']['consumersecret'] = 'your consumer_secret here'; -``` -$a->config['twitter']['consumerkey'] = 'your consumer_key here'; -$a->config['twitter']['consumersecret'] = 'your consumer_secret here'; -``` +After this, your users can configure their Twitter account settings from "Settings -> Connector Settings". -After this, your user can configure their Twitter account settings -from "Settings -> Connector Settings". +###More documentation -Documentation: http://diekershoff.homeunix.net/redmine/wiki/friendikaplugin/Twitter_Plugin +Find the author's documentation here: [http://diekershoff.homeunix.net/redmine/wiki/friendikaplugin/Twitter_Plugin](http://diekershoff.homeunix.net/redmine/wiki/friendikaplugin/Twitter_Plugin) -**StatusNet Plugin for Friendica** +StatusNet Plugin for Friendica +--- * Author: Tobias Diekershoff * tobias.diekershoff@gmx.net +* License: 3-clause BSD license -* License:3-clause BSD license - -Configuration +###Configuration When the addon is activated the user has to aquire the following in order to connect to the StatusNet account of choice. * The base URL for the StatusNet API, for identi.ca this is https://identi.ca/api/ * OAuth Consumer key & secret -To get the OAuth Consumer key pair the user has to +To get the OAuth Consumer key pair the user has to -(a) ask her Friendica admin if a pair already exists or -(b) has to register the Friendica server as a client application on the StatusNet server. +1 ask her Friendica admin if a pair already exists or +2 has to register the Friendica server as a client application on the StatusNet server. This can be done from the account settings under "Settings -> Connections -> Register an OAuth client application -> Register a new application" on the StatusNet server. @@ -77,56 +80,57 @@ During the registration of the OAuth client remember the following: * with read & write access * the Source URL should be the URL of your Friendica server -After the required credentials for the application are stored in the configuration you have to actually connect your Friendica account with StatusNet. This is done from the Settings -> Connector Settings page. Follow the Sign in with StatusNet button, allow access and then copy the security code into the box provided. Friendica will then try to acquire the final OAuth credentials from the API. +After the required credentials for the application are stored in the configuration you have to actually connect your Friendica account with StatusNet. +This is done from the Settings -> Connector Settings page. +Follow the Sign in with StatusNet button, allow access and then copy the security code into the box provided. +Friendica will then try to acquire the final OAuth credentials from the API. -If successful the addon settings will allow you to select to post your public messages to your StatusNet account (have a look behind the little lock symbol beneath the status "editor" on your Home or Network pages). +If successful, the addon settings will allow you to select to post your public messages to your StatusNet account (have a look behind the little lock symbol beneath the status "editor" on your Home or Network pages). -Documentation: http://diekershoff.homeunix.net/redmine/wiki/friendikaplugin/StatusNet_Plugin +###More documentation +Find the author's documentation here: [http://diekershoff.homeunix.net/redmine/wiki/friendikaplugin/StatusNet_Plugin](http://diekershoff.homeunix.net/redmine/wiki/friendikaplugin/StatusNet_Plugin) +The Friendica/Facebook connector +--- -**Installing the Friendica/Facebook connector** +###Configuration -* register an API key for your site from developer.facebook.com +First, register an API key for your site on [Facebook](developer.facebook.com). +This requires a Facebook account, and may require additional authentication in the form of credit card or mobile phone verification. -This requires a Facebook account, and may require additional authentication in the form of credit card or mobile phone verification. +We'd be very happy if you include "Friendica" in the application name to increase name recognition. +The Friendica icons are also present in the images directory and may be uploaded as a Facebook app icon. +Use images/friendica-16.jpg for the Icon and images/friendica-128.jpg for the logo. -a. We'd be very happy if you include "Friendica" in the application name -to increase name recognition. The Friendica icons are also present -in the images directory and may be uploaded as a Facebook app icon. -Use images/friendica-16.jpg for the Icon and images/friendica-128.jpg for the Logo. - -b. The url should be your site URL with a trailing slash. +The url should be your site URL with a trailing slash. You **may** be required to provide a privacy and/or terms of service URL. -c. Navigate to Set Web->Site URL & Domain -> Website Settings. Set Site URL -to yoursubdomain.yourdomain.com. Set Site Domain to your yourdomain.com. +Navigate to Set Web->Site URL & Domain -> Website Settings. +Set Site URL to yoursubdomain.yourdomain.com. +Set Site Domain to your yourdomain.com. -d. Install the Facebook plugin on your Friendica site at 'admin/plugins'. You should then see a link for Facebook under 'Plugin Features' on the sidebar of the admin panel. Select that. - -e. Enter the App-ID and App Secret that Facebook gave you. Change any other settings as desired. +Install the Facebook plugin on your Friendica site at 'admin/plugins'. +You should then see a link for Facebook under 'Plugin Features' on the sidebar of the admin panel. +Select it. +Enter the App-ID and App Secret that Facebook gave you. +Change any other settings as desired. On Friendica, each member who wishes to use the Facebook connector should visit the Facebook Settings section of their "Settings->Connector Settings" page, and click 'Install Facebook Connector'. Choose the appropriate settings for your usage and privacy requirements. -This will ask you to login to Facebook and grant permission to the -plugin to do its stuff. Allow it to do so. +This will ask you to log into Facebook and grant permission to the plugin to do its stuff. +Allow it to do so. -You're done. To turn it off visit the Connector Settings page again and -'Remove Facebook posting'. +You're done. -Videos and embeds will not be posted if there is no other content. Links -and images will be converted to a format suitable for the Facebook API and -long posts truncated - with a link to view the full post. - -Facebook contacts will also not be able to view "private" photos, as they are not able to authenticate to your site to establish identity. We will address this in a future release. - - - - - +To turn it off visit the Connector Settings page again and 'Remove Facebook posting'. +Videos and embeds will not be posted if there is no other content. +Links and images will be converted to a format suitable for the Facebook API and long posts truncated - with a link to view the full post. +Facebook contacts will also not be able to view "private" photos, as they are not able to authenticate to your site. +We will address this in a future release. From 02f03c03134b9f775f9e91cb8f8328d7a9b56cc5 Mon Sep 17 00:00:00 2001 From: Silke Meyer Date: Sat, 18 Apr 2015 19:31:19 +0200 Subject: [PATCH 067/306] Reformatted --- doc/Install.md | 162 ++++++++++++++++++++++++++----------------------- 1 file changed, 85 insertions(+), 77 deletions(-) diff --git a/doc/Install.md b/doc/Install.md index 28b8ba9f7e..cf58af66f7 100644 --- a/doc/Install.md +++ b/doc/Install.md @@ -1,118 +1,126 @@ Friendica Installation =============== -We've tried very hard to ensure that Friendica will run on commodity hosting platforms - such as those used to host Wordpress blogs and Drupal websites. But be aware that Friendica is more than a simple web application. It is a complex communications system which more closely resembles an email server than a web server. For reliability and performance, messages are delivered in the background and are queued for later delivery when sites are down. This kind of functionality requires a bit more of the host system than the typical blog. Not every PHP/MySQL hosting provider will be able to support Friendica. Many will. But **please** review the requirements and confirm these with your hosting provider prior to installation. +We've tried very hard to ensure that Friendica will run on commodity hosting platforms - such as those used to host Wordpress blogs and Drupal websites. +But be aware that Friendica is more than a simple web application. +It is a complex communications system which more closely resembles an email server than a web server. +For reliability and performance, messages are delivered in the background and are queued for later delivery when sites are down. +This kind of functionality requires a bit more of the host system than the typical blog. +Not every PHP/MySQL hosting provider will be able to support Friendica. +Many will. +But **please** review the requirements and confirm these with your hosting provider prior to installation. -Also if you encounter installation issues, please let us know via the forums at http://groups.google.com/group/friendica or file an issue at http://bugs.friendica.com . Please be as clear as you can about your operating environment and provide as much detail as possible about any error messages you may see, so that we can prevent it from happening in the future. Due to the large variety of operating systems and PHP platforms in existence we may have only limited ability to debug your PHP installation or acquire any missing modules - but we will do our best to solve any general code issues. +Also if you encounter installation issues, please let us know via the [helper]() or the [developer]() forum or [file an issue](https://github.com/friendica/friendica/issues). +Please be as clear as you can about your operating environment and provide as much detail as possible about any error messages you may see, so that we can prevent it from happening in the future. +Due to the large variety of operating systems and PHP platforms in existence we may have only limited ability to debug your PHP installation or acquire any missing modules - but we will do our best to solve any general code issues. -Before you begin: Choose a domain name or subdomain name for your server. Put some thought into this - because changing it after installation is currently not-supported. Things will break, and some of your friends may have difficulty communicating with you. We plan to address this limitation in a future release. +Before you begin: Choose a domain name or subdomain name for your server. +Put some thought into this. Changing it after installation is currently not supported. +Things will break, and some of your friends may have difficulty communicating with you. +We plan to address this limitation in a future release. -1. Requirements - - Apache with mod-rewrite enabled and "Options All" so you can use a -local .htaccess file +Requirements +--- - - PHP 5.2+. The later the better. You'll need 5.3 for encryption of key exchange conversations. On a Windows environment, 5.2+ might not work as the function dns_get_record() is only available with version 5.3. - - PHP *command line* access with register_argc_argv set to true in the -php.ini file - - curl, gd, mysql, hash and openssl extensions - - some form of email server or email gateway such that PHP mail() works - - mcrypt (optional; used for server-to-server message encryption) +* Apache with mod-rewrite enabled and "Options All" so you can use a local .htaccess file +* PHP 5.2+. The later the better. You'll need 5.3 for encryption of key exchange conversations. On a Windows environment, 5.2+ might not work as the function dns_get_record() is only available with version 5.3. +* PHP *command line* access with register_argc_argv set to true in the php.ini file +* curl, gd, mysql, hash and openssl extensions +* some form of email server or email gateway such that PHP mail() works +* mcrypt (optional; used for server-to-server message encryption) +* Mysql 5.x +* the ability to schedule jobs with cron (Linux/Mac) or Scheduled Tasks (Windows) (Note: other options are presented in Section 7 of this document.) +* Installation into a top-level domain or sub-domain (without a directory/path component in the URL) is preferred. Directory paths will not be as convenient to use and have not been thoroughly tested. +* If your hosting provider doesn't allow Unix shell access, you might have trouble getting everything to work. - - Mysql 5.x +Installation procedure +--- - - ability to schedule jobs with cron (Linux/Mac) or Scheduled Tasks -(Windows) [Note: other options are presented in Section 7 of this document] +###Get Friendica - - Installation into a top-level domain or sub-domain (without a -directory/path component in the URL) is preferred. Directory paths will -not be as convenient to use and have not been thoroughly tested. +Unpack the Friendica files into the root of your web server document area. +If you are able to do so, we recommend using git to clone the source repository rather than to use a packaged tar or zip file. +This makes the software much easier to update. +The Linux command to clone the repository into a directory "mywebsite" would be - - [Dreamhost.com offers all of the necessary hosting features at a -reasonable price. If your hosting provider doesn't allow Unix shell access, -you might have trouble getting everything to work.] - -2. Unpack the Friendica files into the root of your web server document area. - - - If you are able to do so, we recommend using git to clone the source repository rather than to use a packaged tar or zip file. This makes the software much easier to update. The Linux command to clone the repository into a directory "mywebsite" would be - - `git clone https://github.com/friendica/friendica.git mywebsite` - - - and then you can pick up the latest changes at any time with - - `git pull` + git clone https://github.com/friendica/friendica.git mywebsite - - make sure folder *view/smarty3* exists and is writable by webserver +Make sure the folder *view/smarty3* exists and is writable by the webserver user - `mkdir view/smarty3` - - `chmod 777 view/smarty3` + mkdir view/smarty3 + chmod 777 view/smarty3 - - For installing addons - - - First you should be **on** your website folder +Get the addons by going into your website folder. - `cd mywebsite` + cd mywebsite - - Then you should clone the addon repository (separtely) +Clone the addon repository (separately): - `git clone https://github.com/friendica/friendica-addons.git addon` + git clone https://github.com/friendica/friendica-addons.git addon - - For keeping the addon tree updated, you should be on you addon tree and issue a git pull - - `cd mywebsite/addon` - - `git pull` - - - If you copy the directory tree to your webserver, make sure - that you also copy .htaccess - as "dot" files are often hidden - and aren't normally copied. +If you copy the directory tree to your webserver, make sure that you also copy .htaccess - as "dot" files are often hidden and aren't normally copied. +###Create a database -3. Create an empty database and note the access details (hostname, username, password, database name). +Create an empty database and note the access details (hostname, username, password, database name). -4. Visit your website with a web browser and follow the instructions. Please note any error messages and correct these before continuing. +###Run the installer -5. *If* the automated installation fails for any reason, check the following: +Point your web browser to the new site and follow the instructions. +Please note any error messages and correct these before continuing. - - ".htconfig.php" exists ... If not, edit htconfig.php and change system settings. Rename -to .htconfig.php - - Database is populated. ... If not, import the contents of "database.sql" with phpmyadmin -or mysql command line +*If* the automated installation fails for any reason, check the following: -6. At this point visit your website again, and register your personal account. +* Does ".htconfig.php" exist? If not, edit htconfig.php and change the system settings. Rename to .htconfig.php +* Is the database is populated? If not, import the contents of "database.sql" with phpmyadmin or mysql command line. + +At this point visit your website again, and register your personal account. Registration errors should all be recoverable automatically. -If you get any *critical* failure at this point, it generally indicates the -database was not installed correctly. You might wish to move/rename -.htconfig.php to another name and empty (called 'dropping') the database -tables, so that you can start fresh. +If you get any *critical* failure at this point, it generally indicates the database was not installed correctly. +You might wish to move/rename .htconfig.php to another name and empty (called 'dropping') the database tables, so that you can start fresh. -7. Set up a cron job or scheduled task to run the poller once every 5-10 -minutes in order to perform background processing. Example: +###Set up the poller - `cd /base/directory; /path/to/php include/poller.php` +Set up a cron job or scheduled task to run the poller once every 5-10 minutes in order to perform background processing. +Example: + + cd /base/directory; /path/to/php include/poller.php Change "/base/directory", and "/path/to/php" as appropriate for your situation. If you are using a Linux server, run "crontab -e" and add a line like the one shown, substituting for your unique paths and settings: -`*/10 * * * * cd /home/myname/mywebsite; /usr/bin/php include/poller.php` + */10 * * * * cd /home/myname/mywebsite; /usr/bin/php include/poller.php -You can generally find the location of PHP by executing "which php". If you -have troubles with this section please contact your hosting provider for -assistance. Friendica will not work correctly if you cannot perform this step. +You can generally find the location of PHP by executing "which php". +If you run into trouble with this section please contact your hosting provider for assistance. +Friendica will not work correctly if you cannot perform this step. -Alternative: You may be able to use the 'poormancron' plugin to perform this step -if you are using a recent Friendica release. To do this, edit the file ".htconfig.php" -and look for a line describing your plugins. On a fresh installation, it will look like +Alternative: You may be able to use the 'poormancron' plugin to perform this step. +To do this, edit the file ".htconfig.php" and look for a line describing your plugins. +On a fresh installation, it will look like this: -`$a->config['system']['addon'] = 'js_upload';` + $a->config['system']['addon'] = 'js_upload'; -This indicates the "js_upload" addon module is enabled. You may add additional -addons/plugins using this same line in the configuration file. Change it to read +It indicates the "js_upload" addon module is enabled. +You may add additional addons/plugins using this same line in the configuration file. +Change it to read -`$a->config['system']['addon'] = 'js_upload,poormancron';` + $a->config['system']['addon'] = 'js_upload,poormancron'; and save your changes. + +Updating your installation with git +--- + +You can get the latest changes at any time with + + cd mywebsite + git pull + +The addon tree has to be updated separately like so: + + cd mywebsite/addon + git pull From 963d76fa373ef52451babeca850fac29bffddcfd Mon Sep 17 00:00:00 2001 From: Silke Meyer Date: Sat, 18 Apr 2015 19:46:11 +0200 Subject: [PATCH 068/306] Reformatting and minor changes to content --- doc/Making-Friends.md | 97 ++++++++++++++++++++++++++++++++----------- 1 file changed, 73 insertions(+), 24 deletions(-) diff --git a/doc/Making-Friends.md b/doc/Making-Friends.md index e0b1a254e0..7355a10afa 100644 --- a/doc/Making-Friends.md +++ b/doc/Making-Friends.md @@ -3,55 +3,104 @@ Making Friends * [Home](help) -Friendship in Friendica can take on a great many different meanings. But let's keep it simple, you want to be friends with somebody. How do you do it? +Friendship in Friendica can take on a great many different meanings. +But let's keep it simple, you want to be friends with somebody. +How do you do it? -The first thing you can do is look at the Directory. The directory is split up into two parts. If you click the directory button, you will be presented with a list of all members (who chose to be listed) on your server. You'll also see a link to the Global Directory. If you click through to the global directory, you will be presented with a list of everybody who chose to be listed across all instances of Friendica. You will also see a "Show Community Forums" link, which will direct you to Groups, Forums and Fanpages. You connect to people, groups and forums in the same way, except groups and forums will automatically accept your introduction request, whereas a human will approve you manually. +The Directories +--- +Friendica has two different kinds of "addressbook": +The directory of the Friendica server you are registered on and the global directory that collects account information across all Friendica instances. -To connect with other Friendica users: +The first thing you can do is look at the **Directory**. +The directory is split up into two parts. +If you click the directory button, you will be presented with a list of all members (who chose to be listed) on your server. -Visit their profile. Just beneath their profile picture will be the word 'Connect' (we're assuming this is an English language profile). +You'll also see a link to the **Global Directory**. +If you click through to the global directory, you will be presented with a list of everybody who chose to be listed across all instances of Friendica. +You will also see a "Show Community Forums" link, which will direct you to Groups, Forums and Fanpages. +You connect to people, groups and forums in the same way, except groups and forums will automatically accept your introduction request, whereas a human will approve you manually. -Click that. It will take you to a "Connect" form. +Connect to other Friendica users +--- -This is going to ask you for your Identity Address. This is necessary so that this person's website can find yours. +Visit their profile. +Just beneath their profile picture will be the word 'Connect' (we're assuming this is an English language profile). +Click that 'Connect' button. +It will take you to a 'Connect' form. + +The form is going to ask you for your Identity Address. +This is necessary so that this person's website can find yours. What do you put in the box? If your Friendica site is called "demo.friendica.com" and your username/nickname on that site is "bob", you would put in "bob@demo.friendica.com". -Notice this looks just like an email address. It was meant to be that way. It's easy for people to remember. +Notice this looks just like an email address. +It was meant to be that way. +It's easy for people to remember. You *could* also put in the URL of your "home" page, such as "http://demo.friendica.com/profile/bob", but the email-style address is certainly easier. -When you've submitted the connection page, it will take you back to your own site where you must then login (if necessary) and verify the connection request on *your* site. Once you've done this, the two websites can communicate with each other to complete the process (after your new friend has approved the request). +When you've submitted the connection page, it will take you back to your own site where you must then login (if necessary) and verify the connection request on *your* site. +Once you've done this, the two websites can communicate with each other to complete the process (after your new friend has approved the request). -If you already know somebody's Identity Address, you can enter it in the "connect" box on your "Contacts" page. This will take you through a similar process. +If you already know somebody's Identity Address, you can enter it in the "connect" box on your "Contacts" page. +This will take you through a similar process. -**Alternate Networks** +Connect to users of alternate networks +--- +###StatusNet/GNUSocial, Google Plus, Twitter, Diaspora +You can also use your Identity Address or other people's Identity Addresses to become friends across networks. +The list of possible networks is growing all the time. +If you know (for instance) "bob" on identi.ca (a StatusNet site) you could put bob@identi.ca into your Contact page and become friends across networks. +(Or you can put in the URL to Bob's identi.ca page if you wish). -You can also use your Identity Address or other people's Identity Addresses to become friends across networks. The list of possible networks is growing all the time. If you know (for instance) "bob" on identi.ca (a Status.Net site) you could put bob@identi.ca into your Contact page and become friends across networks. (Or you can put in the URL to Bob's identi.ca page if you wish). You can also be "partial" friends with somebody on Google Buzz by putting in their gmail address. Google Buzz does not yet support all the protocols we need for direct messaging, but you should be able to follow status updates from within Friendica. You can do the same for Twitter accounts and Diaspora accounts. In fact you can "follow" most anybody or any website that produces a syndication feed (RSS/Atom,etc.). If we can find an information stream and a name to attach to the contact, we'll try to connect with them. +You can also be "partial" friends with somebody on Google Plus by putting in their gmail address. +Google Plus does not yet support all the protocols we need for direct messaging, but you should be able to follow status updates from within Friendica. -If you have supplied your mailbox connection information on your Settings page, you can enter the email address of anybody that has sent you a message recently and have their email messages show up in your social stream. You can also reply to them from within Friendica. +You can do the same for Twitter accounts and Diaspora accounts. -People can also become friends with you from other networks. If a friend of yours has an identi.ca account, they can become friends with you by putting your Friendica Identity Address into their identi.ca subscription dialog box. A similar mechanism is available for Diaspora members, by putting your iendtity address into their search bar. +In fact, you can "follow" almost anybody or any website that produces a syndication feed (RSS/Atom,etc.). +If we can find an information stream and a name to attach to the contact, we'll try to connect with them. + +###Email +If you have supplied your mailbox connection information on your Settings page, you can enter the email address of anybody that has sent you a message recently and have their email messages show up in your social stream. +You can also reply to them from within Friendica. + +People can also become friends with you from other networks. +If a friend of yours has an identi.ca account, they can become friends with you by putting your Friendica Identity Address into their identi.ca subscription dialog box. +A similar mechanism is available for Diaspora members, by putting your identity address into their search bar. Note: Some versions of StatusNet software may require the full URL to your profile and may not work with the identity address. -When somebody requests friendship you will receive a notification. You will need to approve this before the friendship is complete. +Notification +--- +When somebody requests friendship you will receive a notification. +You will need to approve this before the friendship is complete. -Some networks allow people to send you messages without being friends and without your approval. Friendica does not allow this by default, as it would open a gateway for spam. +Approval +--- +Some networks allow people to send you messages without being friends and without your approval. +Friendica does not allow this by default, as it would open a gateway for spam. -When you receive a friendship notification from another Friendica member, you will have the option of allowing them as a "fan" or as a "friend". If they are a fan, they can see what you have to say, including private communications that you send to them, but not vice versa. As a friend, you can both communicate with each other. +Unilateral or bilateral friendships +--- +When you receive a friendship notification from another Friendica member, you will have the option of allowing them as a "fan" or as a "friend". +If they are a fan, they can see what you have to say, including private communications that you send to them, but not vice versa. +As a friend, you can both communicate with each other. -Diaspora uses a different terminology, and you are given the option of allowing them to "share with you", or being full friends. +Diaspora uses a different terminology, and you are given the option of allowing them to "share with you", or being full friends. -Once you have become friends, if you find the person constantly sends you spam or worthless information, you can "Ignore" them - without breaking off the friendship or even alerting them to the fact that you aren't interested in anything they are saying. In many ways they are like a "fan" - but they don't know this. They think they are a friend. +Ignoring, blocking and deleting contacts +--- +Once you have become friends, if you find the person constantly sends you spam or worthless information, you can "Ignore" them - without breaking off the friendship or even alerting them to the fact that you aren't interested in anything they are saying. +In many ways they are like a "fan" - but they don't know this. +They think they are a friend. -You can also "block" a person. This completely blocks communications with that person. They may still be able to see your public posts, as can anybody in the world, but they cannot communicate with you directly. - -You can also delete a friend no matter what the friendship status - which complete removes everything relating to that person from your website. - - - +You can also "block" a person. +This completely blocks communications with that person. +They may still be able to see your public posts, as can anybody in the world, but they cannot communicate with you directly. +You can also delete a friend no matter what the friendship status - which completely removes everything relating to that person from your website. From 00dc2945ba69e6b122fc388d6ba2fb67cd502b08 Mon Sep 17 00:00:00 2001 From: Silke Meyer Date: Sat, 18 Apr 2015 19:51:57 +0200 Subject: [PATCH 069/306] Reformatted --- doc/Message-Flow.md | 64 +++++++++++++++++++++++++-------------------- 1 file changed, 36 insertions(+), 28 deletions(-) diff --git a/doc/Message-Flow.md b/doc/Message-Flow.md index bb1c063d33..ce0a4248ab 100644 --- a/doc/Message-Flow.md +++ b/doc/Message-Flow.md @@ -1,13 +1,15 @@ Friendica Message Flow +=== -This page attempts to document some of the details of how messages get from one person to another in the Friendica network. There are multiple paths, using multiple protocols and message formats. - -Those attempting to understand these message flows should become familiar with (at the minimum) the DFRN protocol document (http://dfrn.org/dfrn.pdf) and the message passing elements of the OStatus stack (salmon and Pubsubhubbub). +This page documents some of the details of how messages get from one person to another in the Friendica network. +There are multiple paths, using multiple protocols and message formats. +Those attempting to understand these message flows should become familiar with (at the minimum) the [DFRN protocol document](http://dfrn.org/dfrn.pdf) and the message passing elements of the OStatus stack (salmon and Pubsubhubbub). Most message passing involves the file include/items.php, which has functions for several feed-related import/export activities. -When a message is posted, all immediate deliveries to all networks are made using include/notifier.php, which chooses how (and to whom) to deliver the message. This file also invokes the local side of all deliveries including DFRN-notify. +When a message is posted, all immediate deliveries to all networks are made using include/notifier.php, which chooses how (and to whom) to deliver the message. +This file also invokes the local side of all deliveries including DFRN-notify. mod/dfrn_notify.php handles the remote side of DFRN-notify. @@ -19,36 +21,42 @@ Push (pubsubhubbub) feeds arrive via mod/pubsub.php DFRN-poll feed imports arrive via include/poller.php as a scheduled task, this implements the local side of the DFRN-poll protocol. - - - Scenario #1. Bob posts a public status message - -This is a public message with no conversation members so no private transport is used. There are two paths it can take - as a bbcode path to DFRN clients, and converted to HTML with the server's PuSH (pubsubhubbub) hubs notified. When a PuSH hub is operational, dfrn-poll clients prefer to receive their information through the PuSH channel. They will fall back on a daily poll in case the hub has delivery issues (this is quite common when using the default Google reference hub). If there is no specified hub or hubs, DFRN clients will poll at a configurable (per-contact) rate at up to 5-minute intervals. Feeds retrieved via dfrn-poll are bbcode and may also contain private conversations which the poller has permissions to see. +--- +This is a public message with no conversation members so no private transport is used. +There are two paths it can take - as a bbcode path to DFRN clients, and converted to HTML with the server's PuSH (pubsubhubbub) hubs notified. +When a PuSH hub is operational, dfrn-poll clients prefer to receive their information through the PuSH channel. +They will fall back on a daily poll in case the hub has delivery issues (this is quite common when using the default Google reference hub). +If there is no specified hub or hubs, DFRN clients will poll at a configurable (per-contact) rate at up to 5-minute intervals. +Feeds retrieved via dfrn-poll are bbcode and may also contain private conversations which the poller has permissions to see. Scenario #2. Jack replies to Bob's public message. Jack is on the Friendica/DFRN network. - -Jack uses dfrn-notify to send a direct reply to Bob. Bob then creates a feed of the conversation and sends it to everybody involved in the conversation using dfrn-notify. PuSH hubs are notified that new content is available. The hub or hubs will then retrieve the latest feed and transmit it to all hub subscribers (which may be on different networks). +--- +Jack uses dfrn-notify to send a direct reply to Bob. +Bob then creates a feed of the conversation and sends it to everybody involved in the conversation using dfrn-notify. +PuSH hubs are notified that new content is available. +The hub or hubs will then retrieve the latest feed and transmit it to all hub subscribers (which may be on different networks). Scenario #3. Mary replies to Bob's public message. Mary is on the Friendica/DFRN network. - -Mary uses dfrn-notify to send a direct reply to Bob. Bob then creates a feed of the conversation and sends it to everybody involved in the conversation (excluding himself, the conversation is now sent to both Jack and Mary). Messages are sent using dfrn-notify. Push hubs are also notified that new content is available. The hub or hubs will then retrieve the latest feed and transmit it to all hub subscribers (which may be on different networks). +--- +Mary uses dfrn-notify to send a direct reply to Bob. +Bob then creates a feed of the conversation and sends it to everybody involved in the conversation (excluding himself, the conversation is now sent to both Jack and Mary). +Messages are sent using dfrn-notify. +Push hubs are also notified that new content is available. +The hub or hubs will then retrieve the latest feed and transmit it to all hub subscribers (which may be on different networks). Scenario #4. William replies to Bob's public message. William is on the OStatus network. - -William uses salmon to notify Bob of the reply. Content is html embedded in salmon magic envelope. Bob then creates a feed of the conversation and sends it to all Friendica participants involved in the conversation using dfrn-notify (excluding himself, the conversation is sent to both Jack and Mary). Push hubs are notified that new content is available. The hub or hubs will then retrieve the latest feed and transmit it to all hub subscribers (which may be on different networks). +--- +William uses salmon to notify Bob of the reply. +Content is html embedded in salmon magic envelope. +Bob then creates a feed of the conversation and sends it to all Friendica participants involved in the conversation using dfrn-notify (excluding himself, the conversation is sent to both Jack and Mary). +Push hubs are notified that new content is available. +The hub or hubs will then retrieve the latest feed and transmit it to all hub subscribers (which may be on different networks). Scenario #5. Bob posts a private message to Mary and Jack. - -Message is delivered immediately to Mary and Jack using dfrn_notify. Public hubs are not notified. Requeueing is attempted in case of timeout. Replies follow the same flow as the public replies except that hubs are not notified and message is never made available in the public feed. The entire conversation is also made available to Mary and Jack (and nobody else) through their dfrn-poll personalised feed. - - - - - - - - - - - +--- +Message is delivered immediately to Mary and Jack using dfrn_notify. +Public hubs are not notified. +Requeueing is attempted in case of timeout. +Replies follow the same flow as the public replies except that hubs are not notified and message is never made available in the public feed. +The entire conversation is also made available to Mary and Jack (and nobody else) through their dfrn-poll personalised feed. From f19fb2d307888688bc913bfa7cf771f53c9d21ee Mon Sep 17 00:00:00 2001 From: Silke Meyer Date: Sat, 18 Apr 2015 19:56:50 +0200 Subject: [PATCH 070/306] reformatted --- doc/Move-Account.md | 42 +++++++++++++++++------------------------- 1 file changed, 17 insertions(+), 25 deletions(-) diff --git a/doc/Move-Account.md b/doc/Move-Account.md index 35c50259e3..394d08fa37 100644 --- a/doc/Move-Account.md +++ b/doc/Move-Account.md @@ -1,35 +1,27 @@ -Move Account +How to move your account between servers ============ * [Home](help) -! **this is an experimental feature** +! **This is an experimental feature** -** How to move an account between servers ** +* Go to "Settings" -> "[Export personal data](uexport)" +* Click on "Export account" to save your account data. +* **Save the file in a secure place!** It contains your details, your contacts, groups, and personal settings. It also contains your secret keys to authenticate yourself to your contacts. +* Go to your new server, and open *http://newserver.com/uimport* (there is not a direct link to this page at the moment). +* Do NOT create a new account prior to importing your old settings - uimport should be used *instead* of register. +* Load your saved account file and click "Import". +* After the move, the account on the old server will not work reliably anymore, and should be not used. -Go to "Settings" -> "[Export personal data](uexport)" -Click on "Export account" to save your account data. -This file contains your details, your contacts, groups, and personal settings. -It also contains your secret keys to authenticate yourself to your contacts: -**save this file in a secure place**! - -Go to your new server, and open *http://newserver.com/uimport* (there is not a -direct link to this page at the moment). - -Do NOT create a new account prior to importing your old settings - uimport should be used *instead* of register. - -Load your saved account file and click "Import". +Friendica contacts +--- Friendica will recreate your account on the new server, with your contacts and groups. -A message is sent to Friendica contacts, to inform them about your move: if your -contacts are runnning on an updated server, your details on their -side will be automatically updated. -Contacts on Statusnet/Identi.ca or Diaspora will be archived, as we can't inform -them about your move. -You should ask them to remove your contact from their lists and re-add you, and you -should do the same with their contact. - -After the move, the account on the old server will not work reliably anymore, and -should be not used. +A message is sent to Friendica contacts, to inform them about your move: +If your contacts are runnning on an updated server, your details on their side will be automatically updated. +StatusNet/GNUSocial/Diaspora contacts +--- +Contacts on Statusnet/Identi.ca or Diaspora will be archived, as we can't inform them about your move. +You should ask them to remove your contact from their lists and re-add you, and you should do the same with their contact. From c62120549ecde645483f02e7c03e549d3c6c15bd Mon Sep 17 00:00:00 2001 From: Silke Meyer Date: Sun, 19 Apr 2015 17:50:17 +0200 Subject: [PATCH 071/306] line breaks --- doc/network.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/doc/network.md b/doc/network.md index 08ddca290e..36be159eab 100644 --- a/doc/network.md +++ b/doc/network.md @@ -1,6 +1,11 @@ -This is your Network Tab. If you get lost, you can click this link to bring yourself back here. +This is your Network Tab. +If you get lost, you can click this link to bring yourself back here. -This is a bit like the Newsfeed at Facebook or the Stream at Diaspora. It's where all the posts from your contacts, groups, and feeds will appear. If you're new, you won't see anything in this page, unless you posted your status in the last step. If you've already added a few friends, you'll be able to see their posts. Here, you can comment, like, or dislike posts, or click on somebody's name to visit their profile page where you can write on their wall. +This is a bit like the Newsfeed at Facebook or the Stream at Diaspora. +It's where all the posts from your contacts, groups, and feeds will appear. +If you're new, you won't see anything in this page, unless you posted your status in the last step. +If you've already added a few friends, you'll be able to see their posts. +Here, you can comment, like, or dislike posts, or click on somebody's name to visit their profile page where you can write on their wall. Now we need to fill it up, the first step, is to make some new friends. From ec584b164ddffd0b4e5b1c477cd88c797d63d652 Mon Sep 17 00:00:00 2001 From: Silke Meyer Date: Sun, 19 Apr 2015 18:04:08 +0200 Subject: [PATCH 072/306] line breaks --- doc/Profiles.md | 80 +++++++++++++++++++++++++++++++++++-------------- 1 file changed, 57 insertions(+), 23 deletions(-) diff --git a/doc/Profiles.md b/doc/Profiles.md index 716db908e2..715d27d957 100644 --- a/doc/Profiles.md +++ b/doc/Profiles.md @@ -3,49 +3,83 @@ Profiles * [Home](help) -Friendica has unlimited profiles. You may use different profiles to show different "sides of yourself" to different audiences. +Friendica has unlimited profiles. +You may use different profiles to show different "sides of yourself" to different audiences. -You always have a profile known as your "default" or "public" profile. This profile is always available to the general public and cannot be hidden (there may be rare exceptions on privately run or disconnected sites). You may, and probably should restrict the information you make available on your public profile. +Default / public profile +--- +You always have a profile known as your "default" or "public" profile. +This profile is always available to the general public and cannot be hidden (there may be rare exceptions on privately run or disconnected sites). +You may, and probably should restrict the information you make available on your public profile. -That said, if you want other friends to be able to find you, it helps to have the following information in your public profile... +That said, if you want other friends to be able to find you, it helps to have the following information in your public profile: * Your real name * A photo of **you** * Your location on the planet, at least to a country level. -Without this basic information, you could get very lonely here. Most people (even your best friends) will not try and connect with somebody that has a fake name or doesn't contain a real photo. +Without this basic information, you could get very lonely here. +Most people (even your best friends) will not try and connect with somebody that has a fake name or doesn't contain a real photo. -In addition, if you'd like to meet people that share some general interests with you, please take a moment and add some "Public Keywords" to your profile. Such as "music, linux, photography" or whatever. You can add as many keywords as you like. +In addition, if you'd like to meet people that share some general interests with you, please take a moment and add some "Public Keywords" to your profile. +Such as "music, linux, photography" or whatever. +You can add as many keywords as you like. +Your default or public profile is also shown to contacts on other networks, since they do not have the ability to view your private profiles. +Only members of the Friendica network can see alternate/private profiles. -Your default or public profile is also shown to contacts on other networks, since they do not have the ability to view your private profiles. Only members of the Friendica network can see alternate/private profiles. +Alternate profiles +--- +To create an alternate profile, select "Profiles" from the menu of your Friendica site. +You may edit an existing profile, change the profile photo, or create a new profile. +You may also create a "clone" of an existing profile if you only wish to change a few items but don't wish to enter all the information again. +To assign a profile to specific persons, select the person from your "Contacts" page and click the pencil "Edit" icon. +You will find a dropdown box listing the various profiles available. +If this box is not selectable, the person is not in a supported network and cannot be assigned a specific profile. -To create an alternate profile, select "Profiles" from the menu of your Friendica site. You may edit an existing profile, change the profile photo, or create a new profile. You may also create a "clone" of an existing profile if you only wish to change a few items but don't wish to enter all the information again. +Once a profile has been selected, when the person views your profile from one of the "magic profile links" on their site, they will see the private profile you have assigned. +If they are not logged into their site or view your profile from elsewhere, they will see your public profile. -To assign a profile to specific persons, select the person from your "Contacts" page and click the pencil "Edit" icon. You will find a dropdown box listing the various profiles available. If this box is not selectable, the person is not in a supported network and cannot be assigned a specific profile. +A magic profile link is indicated by a special cursor when hovering over a contact's name or photo. +Currently this cursor is a hand next to a small padlock. +These magic cursors indicate that by following the link, you are able to access special areas of the other person's pages which are only available to friends and may not be available to the general public. -Once a profile has been selected, when the person views your profile from one of the "magic profile links" on their site, they will see the private profile you have assigned. If they are not logged into their site or view your profile from elsewhere, they will see your public profile. +You may also discover that (assuming you have the proper permissions) you may be able to post directly on the other person's profile (often called a "wall-to-wall" post). +You may also be able to comment directly on posts from while visiting the other person's profile page. -A magic profile link is indicated by a special cursor when hovering over a contact's name or photo. Currently this cursor is a hand next to a small padlock. These magic cursors indicate that by following the link, you are able to access special areas of the other person's pages which are only available to friends and may not be available to the general public. - -You may also discover that (assuming you have the proper permissions) you may be able to post directly on the other person's profile (often called a "wall-to-wall" post). You may also be able to comment directly on posts from while visiting the other person's profile page. - -There are two settings which allow you to publish your profile to a directory and ensure that it can be found by others. You can change these through settings on the "Settings" page. One setting allows you to publish your profile in the site directory of this Friendica server. Another option (this may have been disabled by the site creator) allows you to publish your profile in the "Global Directory". This is a mega directory which contains people from many other Friendica installations world-wide. +There are two settings which allow you to publish your profile to a directory and ensure that it can be found by others. +You can change these through settings on the "Settings" page. +One setting allows you to publish your profile in the site directory of this Friendica server. +Another option (this may have been disabled by the site creator) allows you to publish your profile in the "Global Directory". +This is a mega directory which contains people from many other Friendica installations world-wide. If you do not wish to be visible to any of these sites, you may leave your profile unpublished. -Although you may have multiple profiles, you only have one profile photo. This is intentional. In early tests we experimented with different photos for each profile and found it was very confusing for people. They might see a different picture depending on what website they visited or what conversation they were in, and often alerted them to the fact that other people might be able to see different profiles of you than they could see. +Although you may have multiple profiles, you only have one profile photo. +This is intentional. +In early tests we experimented with different photos for each profile and found it was very confusing for people. +They might see a different picture depending on what website they visited or what conversation they were in, and often alerted them to the fact that other people might be able to see different profiles of you than they could see. (But you can use the rich-text information boxes within a profile such as "Tell us about yourself" and link other photos onto the page.) -**Keywords and Directory Search** +Keywords and Directory Search +--- +On the site Directory page, you may search for people with published profiles who are on this site. +The search is typically for your nickname or part of your full name. +However this search will also match against other profile fields - such as gender, location, "about", work, and education. +You may also include "Keywords" in your default profile - which may be used to search for common interests with other members. +You have two sets of keywords available - public and private. +Private keywords are *not* visible to anybody. +You could use these keywords to locate people who share membership in secret societies, or that share a love of fishing (for example) - without making this information visible on your public profile. +Public keywords are used in the friend suggestion tool and although they aren't readily visible, they may be seen by viewing the HTML of your profile page. -On the site Directory page, you may search for people with published profiles who are on this site. The search is typically for your nickname or part of your full name. However this search will also match against other profile fields - such as gender, location, "about", work, and education. You may also include "Keywords" in your default profile - which may be used to search for common interests with other members. You have two sets of keywords available - public and private. Private keywords are *not* visible to anybody. You could use these keywords to locate people who share membership in secret societies, or that share a love of fishing (for example) - without making this information visible on your public profile. Public keywords are used in the friend suggestion tool and although they aren't readily visible, they may be seen by viewing the HTML of your profile page. +Directory searches are also able to use "boolean" logic so that you can search for "+lesbian +Florida" and find those who's sexual preference (or keywords) contain the world "lesbian" and that live in Florida. +See the section on "Topical Tags" on the [Tags-and-Mentions](help/Tags-and-Mentions) page for more information on performing boolean searches. -Directory searches are also able to use "boolean" logic so that you can search for "+lesbian +Florida" and find those who's sexual preference (or keywords) contain the world "lesbian" and that live in Florida. See the section on "Topical Tags" on the [Tags-and-Mentions](help/Tags-and-Mentions) page for more information on performing boolean searches. - -On your Contacts page is a link to "Find People with Shared Interests" (unless your site administrator has disabled the global directory). This will combine both your public and private keywords, and find people in the global directory who have matching and/or similar keywords. (Your private keywords are not identified or stored on the global directory). The more keywords you provide, the more relevant the search results that are returned. These are sorted by relevance. You may discover that you are the first person on the list - because you are very likely the most relevant match for your keywords in the directory. - - - \ No newline at end of file +On your Contacts page is a link to "Find People with Shared Interests" (unless your site administrator has disabled the global directory). +This will combine both your public and private keywords, and find people in the global directory who have matching and/or similar keywords. +(Your private keywords are not identified or stored on the global directory). +The more keywords you provide, the more relevant the search results that are returned. +These are sorted by relevance. +You may discover that you are the first person on the list - because you are very likely the most relevant match for your keywords in the directory. From 7fdde0e547ed4a8721ee2698b8206594785e4dc1 Mon Sep 17 00:00:00 2001 From: Silke Meyer Date: Sun, 19 Apr 2015 18:41:42 +0200 Subject: [PATCH 073/306] reformatted --- doc/Plugins.md | 311 +++++++++++++++++++++++++++++-------------------- 1 file changed, 183 insertions(+), 128 deletions(-) diff --git a/doc/Plugins.md b/doc/Plugins.md index 833c1d200e..8369e9fadc 100644 --- a/doc/Plugins.md +++ b/doc/Plugins.md @@ -1,10 +1,19 @@ Friendica Addon/Plugin development ========================== -Please see the sample addon 'randplace' for a working example of using some of these features. The facebook addon provides an example of integrating both "addon" and "module" functionality. Addons work by intercepting event hooks - which must be registered. Modules work by intercepting specific page requests (by URL path). +Please see the sample addon 'randplace' for a working example of using some of these features. +The facebook addon provides an example of integrating both "addon" and "module" functionality. +Addons work by intercepting event hooks - which must be registered. +Modules work by intercepting specific page requests (by URL path). - -Plugin names cannot contain spaces or other punctuation and are used as filenames and function names. You may supply a "friendly" name within the comment block. Each addon must contain both an install and an uninstall function based on the addon/plugin name. For instance "plugin1name_install()". These two functions take no arguments and are usually responsible for registering (and unregistering) event hooks that your plugin will require. The install and uninstall functions will also be called (i.e. re-installed) if the plugin changes after installation - therefore your uninstall should not destroy data and install should consider that data may already exist. Future extensions may provide for "setup" amd "remove". +Plugin names cannot contain spaces or other punctuation and are used as filenames and function names. +You may supply a "friendly" name within the comment block. +Each addon must contain both an install and an uninstall function based on the addon/plugin name. +For instance "plugin1name_install()". +These two functions take no arguments and are usually responsible for registering (and unregistering) event hooks that your plugin will require. +The install and uninstall functions will also be called (i.e. re-installed) if the plugin changes after installation. +Therefore your uninstall should not destroy data and install should consider that data may already exist. +Future extensions may provide for "setup" amd "remove". Plugins should contain a comment block with the four following parameters: @@ -15,63 +24,71 @@ Plugins should contain a comment block with the four following parameters: * Author: John Q. Public */ - - - Register your plugin hooks during installation. register_hook($hookname, $file, $function); $hookname is a string and corresponds to a known Friendica hook. -$file is a pathname relative to the top-level Friendica directory. This *should* be 'addon/plugin_name/plugin_name.php' in most cases. +$file is a pathname relative to the top-level Friendica directory. +This *should* be 'addon/plugin_name/plugin_name.php' in most cases. $function is a string and is the name of the function which will be executed when the hook is called. - +Arguments +--- Your hook callback functions will be called with at least one and possibly two arguments - function myhook_function(&$a, &$b) { - } -If you wish to make changes to the calling data, you must declare them as -reference variables (with '&') during function declaration. +If you wish to make changes to the calling data, you must declare them as reference variables (with '&') during function declaration. -$a is the Friendica 'App' class - which contains a wealth of information -about the current state of Friendica, such as which module has been called, -configuration info, the page contents at the point the hook was invoked, profile -and user information, etc. It is recommeded you call this '$a' to match its usage -elsewhere. +###$a +$a is the Friendica 'App' class. +It contains a wealth of information about the current state of Friendica: -$b can be called anything you like. This is information which is specific to the hook -currently being processed, and generally contains information that is being immediately -processed or acted on that you can use, display, or alter. Remember to declare it with -'&' if you wish to alter it. +* which module has been called, +* configuration information, +* the page contents at the point the hook was invoked, +* profile and user information, etc. + +It is recommeded you call this '$a' to match its usage elsewhere. + +###$b +$b can be called anything you like. +This is information specific to the hook currently being processed, and generally contains information that is being immediately processed or acted on that you can use, display, or alter. +Remember to declare it with '&' if you wish to alter it. Modules -------- -Plugins/addons may also act as "modules" and intercept all page requests for a given URL path. In order for a plugin to act as a module it needs to define a function "plugin_name_module()" which takes no arguments and need not do anything. +Plugins/addons may also act as "modules" and intercept all page requests for a given URL path. +In order for a plugin to act as a module it needs to define a function "plugin_name_module()" which takes no arguments and needs not do anything. + +If this function exists, you will now receive all page requests for "http://my.web.site/plugin_name" - with any number of URL components as additional arguments. +These are parsed into an array $a->argv, with a corresponding $a->argc indicating the number of URL components. +So http://my.web.site/plugin/arg1/arg2 would look for a module named "plugin" and pass its module functions the $a App structure (which is available to many components). +This will include: -If this function exists, you will now receive all page requests for "http://my.web.site/plugin_name" - with any number of URL components as additional arguments. These are parsed into an array $a->argv, with a corresponding $a->argc indicating the number of URL components. So http://my.web.site/plugin/arg1/arg2 would look for a module named "plugin" and pass its module functions the $a App structure (which is available to many components). This will include: $a->argc = 3 $a->argv = array(0 => 'plugin', 1 => 'arg1', 2 => 'arg2'); -Your module functions will often contain the function plugin_name_content(&$a), which defines and returns the page body content. They may also contain plugin_name_post(&$a) which is called before the _content function and typically handles the results of POST forms. You may also have plugin_name_init(&$a) which is called very early on and often does module initialisation. - +Your module functions will often contain the function plugin_name_content(&$a), which defines and returns the page body content. +They may also contain plugin_name_post(&$a) which is called before the _content function and typically handles the results of POST forms. +You may also have plugin_name_init(&$a) which is called very early on and often does module initialisation. Templates ---------- -If your plugin need some template, you can use Friendica template system. Friendica use [smarty3](http://www.smarty.net/) as template engine. +If your plugin needs some template, you can use the Friendica template system. +Friendica uses [smarty3](http://www.smarty.net/) as a template engine. -Put your tpl files in *templates/* subfolder of your plugin. +Put your tpl files in the *templates/* subfolder of your plugin. -In your code, like in function plugin_name_content(), load template file and execute it passing needed values: +In your code, like in the function plugin_name_content(), load the template file and execute it passing needed values: # load template file. first argument is the template name, # second is the plugin path relative to friendica top folder @@ -80,143 +97,181 @@ In your code, like in function plugin_name_content(), load template file and exe # apply template. first argument is the loaded template, # second an array of 'name'=>'values' to pass to template $output = replace_macros($tpl,array( - 'title' => 'My beautifull plugin', + 'title' => 'My beautiful plugin', )); -See also wiki page [Quick Template Guide](https://github.com/friendica/friendica/wiki/Quick-Template-Guide) +See also the wiki page [Quick Template Guide](https://github.com/friendica/friendica/wiki/Quick-Template-Guide). -Current hooks: --------------- +Current hooks +------------- -**'authenticate'** - called when a user attempts to login. - $b is an array - 'username' => the supplied username - 'password' => the supplied password - 'authenticated' => set this to non-zero to authenticate the user. - 'user_record' => successful authentication must also return a valid user record from the database +###'authenticate' +'authenticate' is called when a user attempts to login. +$b is an array containing: -**'logged_in'** - called after a user has successfully logged in. - $b contains the $a->user array + 'username' => the supplied username + 'password' => the supplied password + 'authenticated' => set this to non-zero to authenticate the user. + 'user_record' => successful authentication must also return a valid user record from the database +###'logged_in' +'logged_in' is called after a user has successfully logged in. +$b contains the $a->user array. -**'display_item'** - called when formatting a post for display. - $b is an array - 'item' => The item (array) details pulled from the database - 'output' => the (string) HTML representation of this item prior to adding it to the page +###'display_item' +'display_item' is called when formatting a post for display. +$b is an array: -**'post_local'** - called when a status post or comment is entered on the local system - $b is the item array of the information to be stored in the database - {Please note: body contents are bbcode - not HTML) + 'item' => The item (array) details pulled from the database + 'output' => the (string) HTML representation of this item prior to adding it to the page -**'post_local_end'** - called when a local status post or comment has been stored on the local system - $b is the item array of the information which has just been stored in the database - {Please note: body contents are bbcode - not HTML) +###'post_local' +* called when a status post or comment is entered on the local system +* $b is the item array of the information to be stored in the database +* Please note: body contents are bbcode - not HTML -**'post_remote'** - called when receiving a post from another source. This may also be used to post local activity or system generated messages. - $b is the item array of information to be stored in the database and the item - body is bbcode. +###'post_local_end' +* called when a local status post or comment has been stored on the local system +* $b is the item array of the information which has just been stored in the database +* Please note: body contents are bbcode - not HTML -**'settings_form'** - called when generating the HTML for the user Settings page - $b is the (string) HTML of the settings page before the final '' tag. +###'post_remote' +* called when receiving a post from another source. This may also be used to post local activity or system generated messages. +* $b is the item array of information to be stored in the database and the item body is bbcode. -**'settings_post'** - called when the Settings pages are submitted. - $b is the $_POST array +###'settings_form' +* called when generating the HTML for the user Settings page +* $b is the (string) HTML of the settings page before the final '' tag. -**'plugin_settings'** - called when generating the HTML for the addon settings page - $b is the (string) HTML of the addon settings page before the final '' tag. +###'settings_post' +* called when the Settings pages are submitted +* $b is the $_POST array -**'plugin_settings_post'** - called when the Addon Settings pages are submitted. - $b is the $_POST array +###'plugin_settings' +* called when generating the HTML for the addon settings page +* $b is the (string) HTML of the addon settings page before the final '' tag. -**'profile_post'** - called when posting a profile page. - $b is the $_POST array +###'plugin_settings_post' +* called when the Addon Settings pages are submitted +* $b is the $_POST array -**'profile_edit'** - called prior to output of profile edit page - $b is array - 'profile' => profile (array) record from the database - 'entry' => the (string) HTML of the generated entry +###'profile_post' +* called when posting a profile page +* $b is the $_POST array +###'profile_edit' +'profile_edit' is called prior to output of profile edit page. +$b is an array containing: -**'profile_advanced'** - called when the HTML is generated for the 'Advanced profile', corresponding to the 'Profile' tab within a person's profile page. - $b is the (string) HTML representation of the generated profile - (The profile array details are in $a->profile) + 'profile' => profile (array) record from the database + 'entry' => the (string) HTML of the generated entry -**'directory_item'** - called from the Directory page when formatting an item for display - $b is an array - 'contact' => contact (array) record for the person from the database - 'entry' => the (string) HTML of the generated entry +###'profile_advanced' +* called when the HTML is generated for the 'Advanced profile', corresponding to the 'Profile' tab within a person's profile page +* $b is the (string) HTML representation of the generated profile +* The profile array details are in $a->profile. -**'profile_sidebar_enter'** - called prior to generating the sidebar "short" profile for a page - $b is (array) the person's profile array +###'directory_item' +'directory_item' is called from the Directory page when formatting an item for display. +$b is an array: -**'profile_sidebar'** - called when generating the sidebar "short" profile for a page - $b is an array - 'profile' => profile (array) record for the person from the database - 'entry' => the (string) HTML of the generated entry + 'contact' => contact (array) record for the person from the database + 'entry' => the (string) HTML of the generated entry -**'contact_block_end'** - called when formatting the block of contacts/friends on a profile sidebar has completed - $b is an array - 'contacts' => array of contacts - 'output' => the (string) generated HTML of the contact block +###'profile_sidebar_enter' +* called prior to generating the sidebar "short" profile for a page +* $b is the person's profile array -**'bbcode'** - called during conversion of bbcode to html - $b is (string) converted text +###'profile_sidebar' +'profile_sidebar is called when generating the sidebar "short" profile for a page. +$b is an array: -**'html2bbcode'** - called during conversion of html to bbcode (e.g. remote message posting) - $b is (string) converted text + 'profile' => profile (array) record for the person from the database + 'entry' => the (string) HTML of the generated entry -**'page_header'** - called after building the page navigation section - $b is (string) HTML of nav region +###'contact_block_end' +is called when formatting the block of contacts/friends on a profile sidebar has completed. +$b is an array: -**'personal_xrd'** - called prior to output of personal XRD file. - $b is an array - 'user' => the user record for the person - 'xml' => the complete XML to be output + 'contacts' => array of contacts + 'output' => the (string) generated HTML of the contact block -**'home_content'** - called prior to output home page content, shown to unlogged users - $b is (string) HTML of section region +###'bbcode' +* called during conversion of bbcode to html +* $b is a string converted text -**'contact_edit'** - called when editing contact details on an individual from the Contacts page - $b is (array) - 'contact' => contact record (array) of target contact - 'output' => the (string) generated HTML of the contact edit page +###'html2bbcode' +* called during conversion of html to bbcode (e.g. remote message posting) +* $b is a string converted text -**'contact_edit_post'** - called when posting the contact edit page - $b is the $_POST array +###'page_header' +* called after building the page navigation section +* $b is a string HTML of nav region -**'init_1'** - called just after DB has been opened and before session start - $b is not used or passed +###'personal_xrd' +'personal_xrd' is called prior to output of personal XRD file. +$b is an array: -**'page_end'** - called after HTML content functions have completed - $b is (string) HTML of content div + 'user' => the user record for the person + 'xml' => the complete XML to be output -**'avatar_lookup'** - called when looking up the avatar - $b is (array) - 'size' => the size of the avatar that will be looked up - 'email' => email to look up the avatar for - 'url' => the (string) generated URL of the avatar +###'home_content' +* called prior to output home page content, shown to unlogged users +* $b is (string) HTML of section region -**'emailer_send_prepare'** - called from Emailer::send() before building the mime message - $b is (array) , params to Emailer::send() - 'fromName' => name of the sender - 'fromEmail' => email fo the sender - 'replyTo' => replyTo address to direct responses - 'toEmail' => destination email address - 'messageSubject' => subject of the message - 'htmlVersion' => html version of the message - 'textVersion' => text only version of the message - 'additionalMailHeader' => additions to the smtp mail header +###'contact_edit' +is called when editing contact details on an individual from the Contacts page. +$b is an array: -**'emailer_send'** - called before calling PHP's mail() - $b is (array) , params to mail() - 'to' - 'subject' - 'body' - 'headers' + 'contact' => contact record (array) of target contact + 'output' => the (string) generated HTML of the contact edit page +###'contact_edit_post' +* called when posting the contact edit page. +* $b is the $_POST array -A complete list of all hook callbacks with file locations (generated 14-Feb-2012): Please see the source for details of any hooks not documented above. +###'init_1' +* called just after DB has been opened and before session start +* $b is not used or passed +###'page_end' +* called after HTML content functions have completed +* $b is (string) HTML of content div + +###'avatar_lookup' +'avatar_lookup' is called when looking up the avatar. +$b is an array: + + 'size' => the size of the avatar that will be looked up + 'email' => email to look up the avatar for + 'url' => the (string) generated URL of the avatar + +###'emailer_send_prepare' +'emailer_send_prepare' called from Emailer::send() before building the mime message. +$b is an array, params to Emailer::send() + + 'fromName' => name of the sender + 'fromEmail' => email fo the sender + 'replyTo' => replyTo address to direct responses + 'toEmail' => destination email address + 'messageSubject' => subject of the message + 'htmlVersion' => html version of the message + 'textVersion' => text only version of the message + 'additionalMailHeader' => additions to the smtp mail header + +###'emailer_send' +is called before calling PHP's mail(). +$b is an array, params to mail() + + 'to' + 'subject' + 'body' + 'headers' + +Complete list of hook callbacks +--- + +Here is a complete list of all hook callbacks with file locations (as of 14-Feb-2012). Please see the source for details of any hooks not documented above. boot.php: call_hooks('login_hook',$o); From 79de00f33308fb237c61ae1a511053be1275d97f Mon Sep 17 00:00:00 2001 From: Silke Meyer Date: Sun, 19 Apr 2015 18:44:12 +0200 Subject: [PATCH 074/306] Moved plugin documentation from admin to dev manual --- doc/Home.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/Home.md b/doc/Home.md index 592ee977b2..0685236286 100644 --- a/doc/Home.md +++ b/doc/Home.md @@ -27,7 +27,6 @@ Friendica Documentation and Resources * [Install](help/Install) * [Settings](help/Settings) -* [Plugins](help/Plugins) * [Installing Connectors (Facebook/Twitter/StatusNet)](help/Installing-Connectors) * [Message Flow](help/Message-Flow) * [Using SSL with Friendica](help/SSL) @@ -40,6 +39,7 @@ Friendica Documentation and Resources * [Help on Vagrant](help/Vagrant) * [How to translate Friendica](help/translations) * [Bugs and Issues](help/Bugs-and-Issues) +* [Plugin Development](help/Plugins) * [Smarty 3 Templates](help/smarty3-templates) **External Resources** From 8a5f6b0a93eff8b46a36df39395316e769a56b48 Mon Sep 17 00:00:00 2001 From: Silke Meyer Date: Sun, 19 Apr 2015 18:48:16 +0200 Subject: [PATCH 075/306] line breaks --- doc/Remove-Account.md | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/doc/Remove-Account.md b/doc/Remove-Account.md index e33c2b06ec..4b4853b6b9 100644 --- a/doc/Remove-Account.md +++ b/doc/Remove-Account.md @@ -7,8 +7,16 @@ We don't like to see people leave Friendica, but if you need to remove your acco http://sitename/removeme -with your web browser. You will need to be logged in at the time. +with your web browser. +You will need to be logged in at the time. -You will be asked for your password to confirm the request. If this matches your stored password, your account will immediately be blocked to all probing. Unlike some social networks we do **not** hold onto it for a grace period in case you change your mind. All your content and user data, etc is instantly removed. For all intents and purposes, the account is gone in moments. +You will be asked for your password to confirm the request. +If this matches your stored password, your account will immediately be blocked to all probing. +Unlike some social networks we do **not** hold onto it for a grace period in case you change your mind. +All your content and user data, etc is instantly removed. For all intents and purposes, the account is gone in moments. -We then send out an "unfriend" signal to all of your contacts. This signal deletes all content on those networks. Unfortunately, due to limitations of the other networks, this only works well with Friendica contacts. We allow four days for this, in case some servers were down and the unfriend signal was queued. After this, we finish off deleting the account. +We then send out an "unfriend" signal to all of your contacts. +This signal deletes all content on those networks. +Unfortunately, due to limitations of the other networks, this only works well with Friendica contacts. +We allow four days for this, in case some servers were down and the unfriend signal was queued. +After this, we finish off deleting the account. From 4bea25e32f8888b1aadbf1ca52086f719233305a Mon Sep 17 00:00:00 2001 From: Silke Meyer Date: Sun, 19 Apr 2015 19:15:43 +0200 Subject: [PATCH 076/306] reformatted and reorganized a bit --- doc/Settings.md | 305 +++++++++++++++++++++++++----------------------- 1 file changed, 159 insertions(+), 146 deletions(-) diff --git a/doc/Settings.md b/doc/Settings.md index 574ce8dcc1..fee8ec1c53 100644 --- a/doc/Settings.md +++ b/doc/Settings.md @@ -1,227 +1,240 @@ -Here are some of the built-in features which don't have an exposed interface or are otherwise undocumented. Configuration settings are stored in the file ".htconfig.php". Edit this file with a text editor to make the desired changes. Several system settings are already documented in that file and will not be covered here. +Settings +=== +Here are some of the built-in features which don't have an exposed interface or are otherwise undocumented. +Configuration settings are stored in the file ".htconfig.php". +Edit this file with a text editor to make the desired changes. +Several system settings are already documented in that file and will not be covered here. -**Hot Keys** +Hot Keys +--- Friendica traps the following keyboard events: -* [Pause] - Pauses "Ajax" update activity. This is the process that provides updates without reloading the page. You may wish to pause it to reduce network usage and/or as a debugging aid for javascript developers. A pause indicator will appear at the lower right hand corner of the page. Hit the [pause] key once again to resume. - +* [Pause] - Pauses "Ajax" update activity. This is the process that provides updates without reloading the page. You may wish to pause it to reduce network usage and/or as a debugging aid for javascript developers. A pause indicator will appear at the lower right hand corner of the page. Hit the [pause] key once again to resume. * [F8] - Displays a language selector -**Birthday Notifications** +Birthday Notifications +--- -Birthday events are published on your Home page for any friends having a birthday in the coming 6 days. In order for your birthday to be discoverable by all of your friends, you must set your birthday (at least the month and day) in your default profile. You are not required to provide the year. +Birthday events are published on your Home page for any friends having a birthday in the coming 6 days. +In order for your birthday to be discoverable by all of your friends, you must set your birthday (at least the month and day) in your default profile. +You are not required to provide the year. -**Configuration settings** +System settings +--- - -**Language** - -System Setting +###Language Please see util/README for information on creating language translations. Config: -``` -$a->config['system']['language'] = 'name'; -``` + $a->config['system']['language'] = 'name'; -**System Theme** +###System Theme -System Setting - -Choose a named theme to be the default system theme (which may be over-ridden by user profiles). Default theme is "default". +Choose a theme to be the default system theme. This can be over-ridden by user profiles. +Default theme is "default". Config: -``` -$a->config['system']['theme'] = 'theme-name'; -``` + $a->config['system']['theme'] = 'theme-name'; -**Verify SSL Certitificates** +###Proxy Configuration Settings -Security setting - -By default Friendica allows SSL communication between websites that have "self-signed" SSL certificates. For the widest compatibility with browsers and other networks we do not recommend using self-signed certificates, but we will not prevent you from using them. SSL encrypts all the data transmitted between sites (and to your browser) and this allows you to have completely encrypted communications, and also protect your login session from hijacking. Self-signed certificates can be generated for free, without paying top-dollar for a website SSL certificate - however these aren't looked upon favourably in the security community because they can be subject to so-called "man-in-the-middle" attacks. If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites. +If your site uses a proxy to connect to the internet, you may use these settings to communicate with the outside world. +The outside world still needs to be able to see your website, or this will not be very useful. Config: -``` -$a->config['system']['verifyssl'] = true; -``` + $a->config['system']['proxy'] = "http://proxyserver.domain:port"; + $a->config['system']['proxyuser'] = "username:password"; -**Allowed Friend Domains** +###Network Timeout -Corporate/Edu enhancement - -Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. (Wildcard support on Windows platforms requires PHP5.3). By default, any (valid) domain may establish friendships with this site. +How long to wait on a network communication before timing out. +Value is in seconds. +Default is 60 seconds. +Set to 0 for unlimited (not recommended). Config: -``` -$a->config['system']['allowed_sites'] = "sitea.com, *siteb.com"; -``` + $a->config['system']['curl_timeout'] = 60; -**Allowed Email Domains** +###Banner/Logo -Corporate/Edu enhancement - -Comma separated list of domains which are allowed in email addresses for registrations to this site. This can lockout those who are not part of this organisation from registering here. Wildcards are accepted. (Wildcard support on Windows platforms requires PHP5.3). By default, any (valid) email address is allowed in registrations. +Set the content for the site banner. +The default logo is the Friendica logo and name. +You may wish to provide HTML/CSS to style and/or position this content, as it may not be themed by default. Config: -``` -$a->config['system']['allowed_email'] = "sitea.com, *siteb.com"; -``` -**Block Public** + $a->config['system']['banner'] = 'My Great Website'; -Corporate/Edu enhancement +###Maximum Image Size -Set to true to block public access to all otherwise public personal pages on this site unless you are currently logged in. This blocks the viewing of profiles, friends, photos, the site directory and search pages to unauthorised persons. A side effect is that entries from this site will not appear in the global directory. We recommend specifically disabling that also (setting is described elsewhere on this page). Note: this is specifically for sites that desire to be "standalone" and do not wish to be connected to any other Friendica sites. Unauthorised persons will also not be able to request friendship with site members. Default is false. Available in version 2.2 or greater. +Maximum size in bytes of uploaded images. +The default is set to 0, which means no limits. + +Config: + + $a->config['system']['maximagesize'] = 1000000; + +###UTF-8 Regular Expressions + +During registrations, full names are checked using UTF-8 regular expressions. +This requires PHP to have been compiled with a special setting to allow UTF-8 expressions. +If you are completely unable to register accounts, set no_utf to true. +The default is set to false (meaning UTF8 regular expressions are supported and working). Config: -``` -$a->config['system']['block_public'] = true; -``` + $a->config['system']['no_utf'] = true; -**Force Publish** +###Check Full Names -Corporate/Edu enhancement - -By default, each user can choose on their Settings page whether or not to have their profile published in the site directory. This setting forces all -profiles on this site to be listed in the site directory and there is no option provided to the user to change it. Default is false. +You may find a lot of spammers trying to register on your site. +During testing we discovered that since these registrations were automatic, the "Full Name" field was often set to just an account name with no space between first and last name. +If you would like to support people with only one name as their full name, you may change this setting to true. +Default is false. Config: -``` -$a->config['system']['publish_all'] = true; -``` + $a->config['system']['no_regfullname'] = true; -**Global Directory** +###OpenID -Corporate/Edu enhancement - -This configures the URL to update the global directory, and is supplied in the default configuration. The undocumented part is that if this is not set, the global directory is completely unavailable to the application. This allows a private community to be completely isolated from the global mistpark network. - -``` -$a->config['system']['directory_submit_url'] = 'http://dir.friendica.com/submit'; -``` - - -**Proxy Configuration Settings** - -If your site uses a proxy to connect to the internet, you may use these settings to communicate with the outside world (the outside world still needs to be able to see your website, or this will not be very useful). +By default, OpenID may be used for both registration and logins. +If you do not wish to make OpenID facilities available on your system (at all), set 'no_openid' to true. +Default is false. Config: -``` -$a->config['system']['proxy'] = "http://proxyserver.domain:port"; -$a->config['system']['proxyuser'] = "username:password"; -``` + $a->config['system']['no_openid'] = true; -**Network Timeout** +###Multiple Registrations -How long to wait on a network communication before timing out. Value is in seconds. Default is 60 seconds. Set to 0 for unlimited (not recommended). - -Config: -``` -$a->config['system']['curl_timeout'] = 60; -``` - - -**Banner/Logo** - -Set the content for the site banner. Default is the Friendica logo and name. You may wish to provide HTML/CSS to style and/or position this content, as it may not be themed by default. - -Config: -``` -$a->config['system']['banner'] = 'My Great Website'; -``` - - -**Maximum Image Size** - -Maximum size in bytes of uploaded images. Default is 0, which means no limits. - -Config: -``` -$a->config['system']['maximagesize'] = 1000000; -``` - - -**UTF-8 Regular Expressions** - -During registrations, full names are checked using UTF-8 regular expressions. This requires PHP to have been compiled with a special setting to allow UTF-8 expressions. If you are completely unable to register accounts, set no_utf to true. Default is false (meaning UTF8 regular expressions are supported and working). +The ability to create "Pages" requires a person to register more than once. +Your site configuration can block registration (or require approval to register). +By default, logged in users can register additional accounts for use as pages. +These will still require approval if REGISTER_APPROVE is selected. +You may prohibit logged in users from creating additional accounts by setting 'block_extended_register' to true. +Default is false. Config: -``` -$a->config['system']['no_utf'] = true; -``` + $a->config['system']['block_extended_register'] = true; -**Check Full Names** +Security settings +--- -You may find a lot of spammers trying to register on your site. During testing we discovered that since these registrations were automatic, the "Full Name" field was often set to just an account name with no space between first and last name. If you would like to support people with only one name as their full name, you may change this setting to true. Default is false. +###Verify SSL Certitificates + +By default Friendica allows SSL communication between websites that have "self-signed" SSL certificates. +For the widest compatibility with browsers and other networks we do not recommend using self-signed certificates, but we will not prevent you from using them. +SSL encrypts all the data transmitted between sites (and to your browser). This allows you to have completely encrypted communications, and also protect your login session from hijacking. +Self-signed certificates can be generated for free, without paying top-dollar for a website SSL certificate. +However these aren't looked upon favourably in the security community because they can be subject to so-called "man-in-the-middle" attacks. +If you wish, you can turn on strict certificate checking. +This will mean you cannot connect (at all) to self-signed SSL sites. + +Config: + + $a->config['system']['verifyssl'] = true; + +Corporate/Edu enhancements +--- + +###Allowed Friend Domains + +Comma separated list of domains which are allowed to establish friendships with this site. +Wildcards are accepted. +(Wildcard support on Windows platforms requires PHP5.3). +By default, any (valid) domain may establish friendships with this site. + +Config: + + $a->config['system']['allowed_sites'] = "sitea.com, *siteb.com"; + +###Allowed Email Domains + +Comma separated list of domains which are allowed in email addresses for registrations to this site. +This can lockout those who are not part of this organisation from registering here. +Wildcards are accepted. +(Wildcard support on Windows platforms requires PHP5.3). +By default, any (valid) email address is allowed in registrations. + +Config: + + $a->config['system']['allowed_email'] = "sitea.com, *siteb.com"; + +###Block Public + +Set to true to block public access to all otherwise public personal pages on this site unless you are currently logged in. +This blocks the viewing of profiles, friends, photos, the site directory and search pages to unauthorised persons. +A side effect is that entries from this site will not appear in the global directory. +We recommend specifically disabling that also (setting is described elsewhere on this page). +Note: this is specifically for sites that desire to be "standalone" and do not wish to be connected to any other Friendica sites. +Unauthorised persons will also not be able to request friendship with site members. +Default is false. +Available in version 2.2 or greater. Config: -``` -$a->config['system']['no_regfullname'] = true; -``` + $a->config['system']['block_public'] = true; -**OpenID** +###Force Publish -By default, OpenID may be used for both registration and logins. If you do not wish to make OpenID facilities available on your system (at all), set 'no_openid' to true. Default is false. - -Config: -``` -$a->config['system']['no_openid'] = true; -``` - - -**Multiple Registrations** - -The ability to create "Pages" requires a person to register more than once. Your site configuration can block registration (or require approval to register). By default logged in users can register additional accounts for use as pages. These will still require approval if REGISTER_APPROVE is selected. You may prohibit logged in users from creating additional accounts by setting 'block_extended_register' to true. Default is false. +By default, each user can choose on their Settings page whether or not to have their profile published in the site directory. +This setting forces all profiles on this site to be listed in the site directory and there is no option provided to the user to change it. +Default is false. Config: -``` -$a->config['system']['block_extended_register'] = true; -``` + $a->config['system']['publish_all'] = true; -**Developer Settings** +###Global Directory +This configures the URL to update the global directory, and is supplied in the default configuration. +The undocumented part is that if this is not set, the global directory is completely unavailable to the application. +This allows a private community to be completely isolated from the global mistpark network. + + $a->config['system']['directory_submit_url'] = 'http://dir.friendica.com/submit'; + +Developer Settings +--- + +### Debugging Most useful when debugging protocol exchanges and tracking down other communications issues. Config: -``` -$a->config['system']['debugging'] = true; -$a->config['system']['logfile'] = 'logfile.out'; -$a->config['system']['loglevel'] = LOGGER_DEBUG; -``` -Turns on detailed debugging logs which will be stored in 'logfile.out' (which must be writeable by the webserver). LOGGER_DEBUG will show a good deal of information about system activity but will not include detailed data. You may also select LOGGER_ALL but due to the volume of information we recommend only enabling this when you are tracking down a specific problem. Other log levels are possible but are not being used at the present time. + $a->config['system']['debugging'] = true; + $a->config['system']['logfile'] = 'logfile.out'; + $a->config['system']['loglevel'] = LOGGER_DEBUG; + +Turns on detailed debugging logs which will be stored in 'logfile.out' (which must be writeable by the webserver). +LOGGER_DEBUG will show a good deal of information about system activity but will not include detailed data. +You may also select LOGGER_ALL but due to the volume of information we recommend only enabling this when you are tracking down a specific problem. +Other log levels are possible but are not being used at the present time. -**PHP error logging** +###PHP error logging Use the following settings to redirect PHP errors to a file. Config: -``` -error_reporting(E_ERROR | E_WARNING | E_PARSE ); -ini_set('error_log','php.out'); -ini_set('log_errors','1'); -ini_set('display_errors', '0'); -``` + error_reporting(E_ERROR | E_WARNING | E_PARSE ); + ini_set('error_log','php.out'); + ini_set('log_errors','1'); + ini_set('display_errors', '0'); -This will put all PHP errors in the file php.out (which must be writeable by the webserver). Undeclared variables are occasionally referenced in the program and therefore we do not recommend using E_NOTICE or E_ALL. The vast majority of issues reported at these levels are completely harmless. Please report to the developers any errors you encounter in the logs using the recommended settings above. They generally indicate issues which need to be resolved. +This will put all PHP errors in the file php.out (which must be writeable by the webserver). +Undeclared variables are occasionally referenced in the program and therefore we do not recommend using E_NOTICE or E_ALL. +The vast majority of issues reported at these levels are completely harmless. +Please report to the developers any errors you encounter in the logs using the recommended settings above. +They generally indicate issues which need to be resolved. If you encounter a blank (white) page when using the application, view the PHP logs - as this almost always indicates an error has occurred. - - - From e2827c0af7e185c83fe7a99a6dc5f63759eaaa45 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Tue, 21 Apr 2015 10:14:20 +0200 Subject: [PATCH 077/306] The ID field will be stored with notifications as well. --- include/diaspora.php | 2 ++ include/items.php | 3 +++ mod/ping.php | 4 ++++ 3 files changed, 9 insertions(+) diff --git a/include/diaspora.php b/include/diaspora.php index 6b42e3c555..689f5765b3 100755 --- a/include/diaspora.php +++ b/include/diaspora.php @@ -1473,6 +1473,8 @@ function diaspora_comment($importer,$xml,$msg) { DiasporaFetchGuid($datarray); $message_id = item_store($datarray); + $datarray['id'] = $message_id; + //if($message_id) { //q("update item set plink = '%s' where id = %d", // //dbesc($a->get_baseurl() . '/display/' . $importer['nickname'] . '/' . $message_id), diff --git a/include/items.php b/include/items.php index 1fecc44215..ff31e84f7c 100644 --- a/include/items.php +++ b/include/items.php @@ -3660,6 +3660,9 @@ function local_delivery($importer,$data) { $parent = 0; if($posted_id) { + + $datarray["id"] = $posted_id; + $r = q("SELECT `parent`, `parent-uri` FROM `item` WHERE `id` = %d AND `uid` = %d LIMIT 1", intval($posted_id), intval($importer['importer_uid']) diff --git a/mod/ping.php b/mod/ping.php index 6545ab458b..82265530db 100644 --- a/mod/ping.php +++ b/mod/ping.php @@ -22,6 +22,10 @@ function ping_init(&$a) { $firehose = intval(get_pconfig(local_user(),'system','notify_full')); +/* +select notify.id, notify.type, iid, visible, deleted, CASE notify.iid WHEN 0 THEN 1 ELSE item.visible END as vis, CASE notify.iid WHEN 0 THEN 0 ELSE item.deleted END as del from notify left join item on item.id = notify.iid where notify.uid=1 group by notify.parent order by notify.id desc limit 10; +*/ + $t = q("select count(*) as `total` from `notify` where `uid` = %d and `seen` = 0 AND `msg` != '' GROUP BY `parent`", intval(local_user()) ); From b4aecb63e8b477ee36f6592a10dc4c74d170ee84 Mon Sep 17 00:00:00 2001 From: Frank Dieckmann Date: Tue, 21 Apr 2015 19:22:44 +0200 Subject: [PATCH 078/306] Bugs-and-Issues.md: Linguistic style and addresses --- doc/de/Bugs-and-Issues.md | 22 ++++++++++++---------- doc/de/andfinally.md | 6 +----- 2 files changed, 13 insertions(+), 15 deletions(-) diff --git a/doc/de/Bugs-and-Issues.md b/doc/de/Bugs-and-Issues.md index 7d8ea9348a..8a01c375c2 100644 --- a/doc/de/Bugs-and-Issues.md +++ b/doc/de/Bugs-and-Issues.md @@ -3,26 +3,28 @@ Bugs und Probleme * [Zur Startseite der Hilfe](help) -Wenn dein Server eine Supportseite hat, solltest du jeden Bug und jedes Problem, den/das du findest, zunächst dort melden. Die Fehler zunächst dort zu melden, statt auf der allgemeinen Bug-Seite, erleichtert es den Entwicklern, neue Features zu entwickeln, wenn sie sich nicht mit Fehlern beschäftigen müssen, mit denen sie nichts zu tun haben. +Du solltest jeden Bug und jedes Problem, den/das Du findest, zunächst dem Administrator (oder gegebenenfalls der Support-Seite) Deines Servers melden, statt auf der allgemeinen Bug-Seite. Das erleichtert den Entwicklern ihre Arbeit (z. B. neue Features zu entwickeln), da sie sich nicht mit Fehlern beschäftigen müssen, mit denen sie nichts zu tun haben. -Wenn du ein technisch verantwortlicher Nutzer bist oder wenn deine Seite keine Support-Seite hat, dann kannst du den Bug Tracker nutzen. Bitte nutze zunächst die Suche, ob es bereits einen offenen Bug gibt, der deiner Anfrage entspricht. +Wenn Du technisch versiert bist oder Dein Knoten keine Support-Seite hat, dann kannst Du den Bug Tracker nutzen. Bitte durchsuche zunächst die Seite, ob es bereits einen offenen Bug gibt, der Deiner Anfrage entspricht. -Versuche, so viele Informationen wie möglich zum Bug zu bieten. Hierzu gehört auch die **komplette** Fehlermeldung oder Notiz und alle Schritte, die zu dem Fehler geführt haben. Es ist generell besser, zu viele Informationen zu liefern, als zu wenige. +Liefere so viele Informationen wie möglich zu dem Bug. Hierzu gehört auch die **komplette** Fehlermeldung oder Notiz und alle Schritte, die zu dem Fehler geführt haben. Es ist generell besser, zu viele Informationen zu liefern, als zu wenige. -Lies dir diesen Artikel (mehrsprachig) durch, um mehr über **gute** Bug-Reports zu erfahren. +Lies Dir diesen Artikel (mehrsprachig) durch, um mehr über **gute** Bug-Reports zu erfahren. **Bug-Bearbeitung sponsern** -Wenn du einen Bug findest, der seine Ursache im Hauptsystem hat (also wenn es sich nicht nur um deine Seite handelt), dann kannst du diesen sponsern. +Wenn Du einen Bug findest, der seine Ursache im Hauptsystem hat (also wenn er nicht nur auf Deinem Server auftritt), dann kannst Du diesen sponsern. -Die Bug/Fehler-Datenbank erlaubt es dir, Fehler zu sponsern. Das schafft einen Anreiz für die Entwickler, deinen Fehler zu bearbeiten. Das ist nicht zwingend notwendig, da wir keine Bugs mögen und versuchen, diese zu beheben. Wichtiger ist dieses für die zukünftige Projektentwicklung und für Feature-Anfragen. +Die Bug/Fehler-Datenbank erlaubt es dir, Fehler zu sponsern. Das schafft einen Anreiz für die Entwickler, Deinen Fehler zu bearbeiten. Das ist nicht zwingend notwendig, da wir grundsätzlich keine Bugs mögen und versuchen, diese zu beheben. Wichtiger ist dies für die zukünftige Projektentwicklung und für Feature-Anfragen. -Bug-Sponsoring arbeitet nach dem System der Anerkennung. Wenn du 10€ spendest, um einen Bug zu beheben, dann sende die Zahlung per PayPal an den Entwickler, der den Bug behoben hat. Und denke nie daran, für geleistete Arbeit nicht zu bezahlen. Einige dieser Leute könnten deine Kreditkarte hacken, falls du sie verärgern solltest. +Bug-Sponsoring arbeitet nach dem System der Anerkennung. Wenn Du 10€ bietest, um einen Bug zu beheben, dann sende die Zahlung per PayPal an den Entwickler, der den Bug behoben hat. Und komme nie auf die Idee, für geleistete Arbeit den von Dir gebotenen Betrag nicht zu bezahlen. Einige dieser Leute könnten Deine Kreditkarte hacken, falls Du sie verärgern solltest. >:-) -Zur Zeit können nur Personen gesponserte Bugs bearbeiten, die als Entwickler bestätigt wurden. Hierfür muss der Entwickler bereits einige Friendica-Bugs bearbeitet haben. Das dient zur Absicherung, damit der behobene Bug auch gut mit Friendica läuft. Wenn du wünschst, als Entwickler bestätigt zu werden, dann arbeite dich ein und übernimm einige nicht-gesponserte Probleme oder dein eigenes Projekt und du wirst auf der Leiter nach oben klettern. +Zur Zeit können nur Personen gesponserte Bugs bearbeiten, die als Entwickler bestätigt wurden. Hierfür muss der Entwickler bereits einige Friendica-Bugs bearbeitet haben. Das dient zur Absicherung, damit der behobene Bug auch gut mit Friendica läuft. Wenn Du wünschst, als Entwickler bestätigt zu werden, dann arbeite Dich ein und übernimm einige nicht-gesponserte Probleme oder Dein eigenes Projekt und Du wirst auf der Leiter nach oben klettern. -Wenn du sicher glaubst, dass du einen gesponserten Bug beheben kannst, aber nicht als Entwickler bestätigt bist, kann es passieren, dass ein gesponserter Entwickler den Bug bearbeiten, bevor du ihn dir sichern kannst. Wenn das nicht der Fall ist, dann trage einen kleinen Vermerk in die Anfrage ein. Wenn du unsere Code-Standards erfüllst, versuchen wir, dir einen Bonus zukommen zu lassen. +Wenn Du sicher glaubst, dass Du einen gesponserten Bug beheben kannst, aber nicht als Entwickler bestätigt bist, kann es passieren, dass ein bestätigter Entwickler den Bug bearbeitet, bevor Du ihn Dir sichern kannst. +Wenn das nicht der Fall ist, dann füge einen kleinen Vermerk Deiner Anfrage zur Bestätigung hinzu. Erfüllst Du unsere Code-Standards, so versuchen wir Dir einen Bonus zukommen zu lassen. -Wenn du ein Projekt mit mehr als 50€ sponserst, dann fragen dich die Entwickler gegebenenfalls, ob sie einen Teil der Zahlung vorab erhalten (normalerweise die Hälfte). Nochmals: es handelt sich um ein Anerkennungssystem - und hauptsächlich dient es dazu, Zahlungsprobleme und Streitigkeiten zu verhindern. Du solltest nach 1-2 Wochen einen gewissen Fortschritt oder Demonstrationen erwarten können. Wenn die Arbeit nicht in einer für dich annehmbaren Zeit gelöst ist, hast du das Recht, das Geld zurückzufordern. +Wenn Du ein Projekt mit mehr als 50€ sponserst, dann fragen Dich die Entwickler gegebenenfalls, ob sie einen Teil der Zahlung vorab erhalten (normalerweise die Hälfte). Nochmals: es handelt sich um ein Anerkennungssystem - und hauptsächlich dient es dazu, Zahlungsprobleme und Streitigkeiten zu verhindern. +Du solltest nach 1-2 Wochen einen gewissen Fortschritt oder sogar Ergebnisse erwarten können. Wenn die Aufgabe nicht in einer für Dich annehmbaren Zeit gelöst ist, hast Du das Recht, das Geld zurückzufordern. Friendica ist nicht in diese Transaktionen involviert. Es handelt sich ausschließlich um ein persönliches Abkommen zwischen dem Sponsor und dem Entwickler. Wenn es irgendwelche Probleme gibt, müssen die Parteien es untereinander klären. Wir erstellen gerade einige Richtlinien, um potentielle Probleme zu vermeiden. diff --git a/doc/de/andfinally.md b/doc/de/andfinally.md index b6e492ae69..a873b046d6 100644 --- a/doc/de/andfinally.md +++ b/doc/de/andfinally.md @@ -3,17 +3,13 @@ Und damit sind wir auch schon am Ende der Schnellstartanleitung. -Hier sind noch einige weitere Dinge, die dir den Start vereinfachen können. +Hier sind noch einige weitere Dinge, die Dir den Start vereinfachen können. **Gruppen** - Friendica Support - Probleme? Dann ist das der Platz, um zu fragen! -- Let's Talk eine Gruppe, um Leute und Gruppen mit gleichen Interessen zu finden - -- Local Friendica eine Seite für lokale Friendica-Gruppen - **Dokumentation** From f536301d05c4c6c50de0845ae04b98e287a8c9eb Mon Sep 17 00:00:00 2001 From: Frank Dieckmann Date: Tue, 21 Apr 2015 20:02:47 +0200 Subject: [PATCH 079/306] Update Bugs-and-Issues.md --- doc/de/Bugs-and-Issues.md | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/doc/de/Bugs-and-Issues.md b/doc/de/Bugs-and-Issues.md index 8a01c375c2..00895dee29 100644 --- a/doc/de/Bugs-and-Issues.md +++ b/doc/de/Bugs-and-Issues.md @@ -10,21 +10,3 @@ Wenn Du technisch versiert bist oder Dein Knoten keine Support-Seite hat, dann k Liefere so viele Informationen wie möglich zu dem Bug. Hierzu gehört auch die **komplette** Fehlermeldung oder Notiz und alle Schritte, die zu dem Fehler geführt haben. Es ist generell besser, zu viele Informationen zu liefern, als zu wenige. Lies Dir diesen Artikel (mehrsprachig) durch, um mehr über **gute** Bug-Reports zu erfahren. - -**Bug-Bearbeitung sponsern** - -Wenn Du einen Bug findest, der seine Ursache im Hauptsystem hat (also wenn er nicht nur auf Deinem Server auftritt), dann kannst Du diesen sponsern. - -Die Bug/Fehler-Datenbank erlaubt es dir, Fehler zu sponsern. Das schafft einen Anreiz für die Entwickler, Deinen Fehler zu bearbeiten. Das ist nicht zwingend notwendig, da wir grundsätzlich keine Bugs mögen und versuchen, diese zu beheben. Wichtiger ist dies für die zukünftige Projektentwicklung und für Feature-Anfragen. - -Bug-Sponsoring arbeitet nach dem System der Anerkennung. Wenn Du 10€ bietest, um einen Bug zu beheben, dann sende die Zahlung per PayPal an den Entwickler, der den Bug behoben hat. Und komme nie auf die Idee, für geleistete Arbeit den von Dir gebotenen Betrag nicht zu bezahlen. Einige dieser Leute könnten Deine Kreditkarte hacken, falls Du sie verärgern solltest. >:-) - -Zur Zeit können nur Personen gesponserte Bugs bearbeiten, die als Entwickler bestätigt wurden. Hierfür muss der Entwickler bereits einige Friendica-Bugs bearbeitet haben. Das dient zur Absicherung, damit der behobene Bug auch gut mit Friendica läuft. Wenn Du wünschst, als Entwickler bestätigt zu werden, dann arbeite Dich ein und übernimm einige nicht-gesponserte Probleme oder Dein eigenes Projekt und Du wirst auf der Leiter nach oben klettern. - -Wenn Du sicher glaubst, dass Du einen gesponserten Bug beheben kannst, aber nicht als Entwickler bestätigt bist, kann es passieren, dass ein bestätigter Entwickler den Bug bearbeitet, bevor Du ihn Dir sichern kannst. -Wenn das nicht der Fall ist, dann füge einen kleinen Vermerk Deiner Anfrage zur Bestätigung hinzu. Erfüllst Du unsere Code-Standards, so versuchen wir Dir einen Bonus zukommen zu lassen. - -Wenn Du ein Projekt mit mehr als 50€ sponserst, dann fragen Dich die Entwickler gegebenenfalls, ob sie einen Teil der Zahlung vorab erhalten (normalerweise die Hälfte). Nochmals: es handelt sich um ein Anerkennungssystem - und hauptsächlich dient es dazu, Zahlungsprobleme und Streitigkeiten zu verhindern. -Du solltest nach 1-2 Wochen einen gewissen Fortschritt oder sogar Ergebnisse erwarten können. Wenn die Aufgabe nicht in einer für Dich annehmbaren Zeit gelöst ist, hast Du das Recht, das Geld zurückzufordern. - -Friendica ist nicht in diese Transaktionen involviert. Es handelt sich ausschließlich um ein persönliches Abkommen zwischen dem Sponsor und dem Entwickler. Wenn es irgendwelche Probleme gibt, müssen die Parteien es untereinander klären. Wir erstellen gerade einige Richtlinien, um potentielle Probleme zu vermeiden. From 04cda104caf1e3c714aec772f363135ae3f6be53 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Wed, 22 Apr 2015 08:39:27 +0200 Subject: [PATCH 080/306] New function that will prevent notifications from deleted posts --- mod/ping.php | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 52 insertions(+), 2 deletions(-) diff --git a/mod/ping.php b/mod/ping.php index 82265530db..f907506d5b 100644 --- a/mod/ping.php +++ b/mod/ping.php @@ -29,6 +29,11 @@ select notify.id, notify.type, iid, visible, deleted, CASE notify.iid WHEN 0 THE $t = q("select count(*) as `total` from `notify` where `uid` = %d and `seen` = 0 AND `msg` != '' GROUP BY `parent`", intval(local_user()) ); + + $z = ping_get_notifications(local_user()); + $sysnotify = 0; // we will update this in a moment + +/* if($t && intval($t[0]['total']) > 49) { $z = q("select * from notify where uid = %d AND `msg` != '' and seen = 0 GROUP BY `parent` order by date desc limit 0, 50", @@ -50,7 +55,7 @@ select notify.id, notify.type, iid, visible, deleted, CASE notify.iid WHEN 0 THE $z = array_merge($z1,$z2); $sysnotify = 0; // we will update this in a moment } - +*/ $tags = array(); @@ -309,7 +314,7 @@ select notify.id, notify.type, iid, visible, deleted, CASE notify.iid WHEN 0 THE } unset($_SESSION['sysmsg_info']); } - + echo " "; echo" "; @@ -317,3 +322,48 @@ select notify.id, notify.type, iid, visible, deleted, CASE notify.iid WHEN 0 THE killme(); } +function ping_get_notifications($uid) { + + $result = array(); + $offset = 0; + $seen = false; + $seensql = "NOT"; + $quit = false; + + do { + $r = q("SELECT `notify`.*, `item`.`visible`, `item`.`spam`, `item`.`deleted` + FROM `notify` LEFT JOIN `item` ON `item`.`id` = `notify`.`iid` + WHERE `notify`.`uid` = %d AND `notify`.`msg` != '' + AND $seensql `notify`.`seen` ORDER BY `notify`.`date` DESC LIMIT %d, 50", + intval($uid), intval($offset) + ); + + if (!$r AND !$seen) { + $seen = true; + $seensql = ""; + $offset = 0; + } elseif (!$r) + $quit = true; + else + $offset += 50; + + foreach ($r AS $notification) { + if (is_null($notification["visible"])) + $notification["visible"] = true; + + if (is_null($notification["spam"])) + $notification["spam"] = 0; + + if (is_null($notification["deleted"])) + $notification["deleted"] = 0; + + if ($notification["visible"] AND !$notification["spam"] AND + !$notification["deleted"] AND !is_array($result[$notification["parent"]])) + $result[$notification["parent"]] = $notification; + } + + } while ((count($result) < 50) AND !$quit); + + return($result); +} + From 22fefb731c288a00e8dab71ef217089f28633faf Mon Sep 17 00:00:00 2001 From: Frank Dieckmann Date: Wed, 22 Apr 2015 12:28:19 +0200 Subject: [PATCH 081/306] Chats.md: Linguistic style, capitalization of addresses --- doc/de/Chats.md | 37 ++++++++++++++++++++++--------------- 1 file changed, 22 insertions(+), 15 deletions(-) diff --git a/doc/de/Chats.md b/doc/de/Chats.md index e538285d6a..8ce7c6a192 100644 --- a/doc/de/Chats.md +++ b/doc/de/Chats.md @@ -3,23 +3,25 @@ Chats * [Zur Startseite der Hilfe](help) -Du hast derzeit zwei Möglichkeiten, einen Chat auf deiner Friendica-Seite zu betreiben +Du hast derzeit zwei Möglichkeiten, einen Chat auf Deiner Friendica-Seite zu betreiben * IRC - Internet Relay Chat * Jappix ##IRC Plugin -Sobald das Plugin aktiviert ist, kannst du den Chat unter [deineSeite.de/irc](../irc) finden. Beachte aber, dass dieser Chat auch ohne Anmeldung auf deiner Seite zugänglich ist und somit auch Fremde diesen Chat mitnutzen können. +Sobald das Plugin aktiviert ist, kannst Du den Chat unter [DeineSeite.de/irc](../irc) finden. Beachte aber, dass dieser Chat auch ohne Anmeldung auf Deiner Seite zugänglich ist und somit auch Fremde diesen Chat mitnutzen können. -Wenn du dem Link folgst, dann kommst du zum Anmeldefenster des IR-Chats. Wähle nun einen Spitznamen (Nickname) aus und wähle einen Raum aus, in dem du chatten willst. Hier kannst du jeden Namen eingeben. Es ist also auch #tollerChatdessenNamenurichkenne sein. Gib als nächstes nur noch die Captchas ein, um zu zeigen, dass es sich bei dir um einen Menschen handelt. Gehe nun auf "Connect". +Wenn Du dem Link folgst, dann kommst Du zum Anmeldefenster des IR-Chats. Wähle nun einen Spitznamen (Nickname) und wähle einen Raum aus, in dem Du chatten willst. Hier kannst Du jeden Namen eingeben. Es kann also auch #tollerChatdessenNamenurichkenne sein. Gib als nächstes noch die Captchas ein, um zu zeigen, dass es sich bei Dir um einen Menschen handelt und klicke dann auf "Connect". -Im nächsten Fenster siehst du zunächst viel Text beim Verbindungsaufbau, der allerdings für dich nicht weiter von Bedeutung ist. Anschließend öffnet sich das Chat-Fenster. In den ersten Zeilen wird dir dein Name und deine aktuelle IP-Adresse angezeigt. Rechts im Fenster siehst du alle Teilnehmer des Chats. Unten hast du ein Eingabefeld, um Beiträge zu schreiben. +Im nächsten Fenster siehst Du zunächst viel Text beim Verbindungsaufbau, der allerdings für Dich nicht weiter von Bedeutung ist. Anschließend öffnet sich das Chat-Fenster. In den ersten Zeilen wird Dir Dein Name und Deine aktuelle IP-Adresse angezeigt. Rechts im Fenster siehst Du alle Teilnehmer des Chats. Unten hast Du ein Eingabefeld, um Beiträge zu schreiben. + +Weiter Informationen zu IRC findest Du zum Beispiel auf ubuntuusers.de, in Wikipedia oder bei icrhelp.org (in Englisch). ##Jappix Mini Das Jappix Mini Plugin erlaubt das Erstellen einer Chatbox für Jabber/XMPP-Kontakte. Ein Jabber/XMPP Account sollte vor der Installation bereits vorhanden sein. -Eine ausführliche Anleitung dazu und eine Kontrolle, ob man nicht sogar schon über seinen E-Mail Anbieter einen Jabber-Account hat, findet man unter http://einfachjabber.de. +Die ausführliche Anleitung dazu und eine Kontrolle, ob Du nicht sogar schon über Deinen E-Mail Anbieter einen Jabber-Account hast, findest Du unter einfachjabber.de.
    Einige Server zum Anmelden eines neuen Accounts: * [https://jappix.com](https://jappix.com) @@ -29,25 +31,30 @@ Einige Server zum Anmelden eines neuen Accounts: **1. Grundsätzliches** -Als erstes muss die aktuellste Version heruntergeladen werden, per Git: +Als erstes musst Du die aktuellste Version herunterladen: -cd /var/www/virtual/DEINUBERSPACE/html/addon; git pull +Per Git: +

    +cd /var/www/<Pfad zu Deiner friendica-Installation>/addon; git pull +

    oder als normaler Download von hier: https://github.com/friendica/friendica-addons/blob/master/jappixmini.tgz (auf „view raw“ klicken) -Diese Datei wird entpackt, ggf. den entpackten Ordner in „jappixmini“ umbenennen und sowohl den kompletten entpackten Ordner als auch die .tgz Datei in den Addon Ordner deiner Friendica Installation hochladen. +Entpacke diese Datei (ggf. den entpackten Ordner in „jappixmini“ umbenennen) und lade sowohl den entpackten Ordner komplett als auch die .tgz Datei in den Addon Ordner Deiner Friendica Installation hoch. -Nach dem Upload gehts in den Friendica Adminbereich, dort zu den Plugins. Das Jappixmini Addon aktivieren und anschließend über die Plugins Seitenleiste (dort wo auch die Twitter-, Impressums-, StatusNet-, usw Einstellungen gemacht werden) zu den Jappix Grundeinstellungen gehen. +Nach dem Upload gehts in den Friendica Adminbereich und dort zu den Plugins. Aktiviere das Jappixmini Addon und gehe anschließend über die Plugins Seitenleiste (dort wo auch die Twitter-, Impressums-, StatusNet-, usw. Einstellungen gemacht werden) zu den Jappix Grundeinstellungen. -Hier den Haken zur Aktivierung des BOSH Proxys setzen. -Weiter gehts in den Einstellungen deines Friendica Account. +Setze hier den Haken zur Aktivierung des BOSH Proxys. +Weiter gehts in den Einstellungen Deines Friendica Accounts. **2. Einstellungen** -In deinen Einstellungen (Account Settings), gehe bitte zu den Plugin-Einstellungen. Etwas scrollen bis zu Jappix Mini addon settings +Gehe bitte zu den Plugin-Einstellungen in Deinen Konto-Einstellungen (Account Settings). Scrollen ein Stück hinunter bis zu den Jappix Mini addon settings. -Hier zuerst das Addon aktvieren. +Aktiviere hier zuerst das Addon. -Trage nun deinen Jabber/XMPP Namen ein, ebenfalls die entsprechende Domain bzw. den Server (ohne http, also zb einfach so: jappix.com). Bei „Jabber BOSH Host“ kannst du erstmal “https://bind.jappix.com/ “ eintragen. Siehe dazu auch die „Configuration Help“ weiter unten. Danach noch dein Passwort und damit ist eigentlich schon fast alles geschafft. Die weiteren Einstellmöglichkeiten bleiben dir überlassen, sind also optional. Jetzt noch auf „senden“ klicken und fertig. +Trage nun Deinen Jabber/XMPP Namen ein, ebenfalls die entsprechende Domain bzw. den Server (ohne http, also zb einfach so: jappix.com). Bei „Jabber BOSH Host“ kannst Du erstmal “https://bind.jappix.com/ “ eintragen. Siehe dazu auch die „Configuration Help“ weiter unten. Gebe danach noch Dein Passwort an, und damit ist eigentlich schon fast alles geschafft. Die weiteren Einstellmöglichkeiten bleiben Dir überlassen, sind also optional. Jetzt noch auf „senden“ klicken und fertig. -Falls du manuell Kontakte hinzufügen möchtest, einfach den „Add Contact“ Knopf nutzen. Deine Chatbox sollte jetzt irgendwo unten rechts im Browserfenster „kleben“. Viel Spass beim Chatten! +Deine Chatbox sollte jetzt irgendwo unten rechts im Browserfenster „kleben“. Falls Du manuell Kontakte hinzufügen möchtest, einfach den „Add Contact“ Knopf nutzen. + +Viel Spass beim Chatten! From 7254f42333045835e27d3148777f5e2efe6441e8 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Thu, 23 Apr 2015 08:37:31 +0200 Subject: [PATCH 082/306] Show unread mails and introductions as well. --- mod/ping.php | 74 +++++++++++++++++++++++----------------------------- 1 file changed, 33 insertions(+), 41 deletions(-) diff --git a/mod/ping.php b/mod/ping.php index f907506d5b..c8fb582d1a 100644 --- a/mod/ping.php +++ b/mod/ping.php @@ -22,42 +22,9 @@ function ping_init(&$a) { $firehose = intval(get_pconfig(local_user(),'system','notify_full')); -/* -select notify.id, notify.type, iid, visible, deleted, CASE notify.iid WHEN 0 THEN 1 ELSE item.visible END as vis, CASE notify.iid WHEN 0 THEN 0 ELSE item.deleted END as del from notify left join item on item.id = notify.iid where notify.uid=1 group by notify.parent order by notify.id desc limit 10; -*/ - - $t = q("select count(*) as `total` from `notify` where `uid` = %d and `seen` = 0 AND `msg` != '' GROUP BY `parent`", - intval(local_user()) - ); - $z = ping_get_notifications(local_user()); $sysnotify = 0; // we will update this in a moment -/* - if($t && intval($t[0]['total']) > 49) { - $z = q("select * from notify where uid = %d AND `msg` != '' - and seen = 0 GROUP BY `parent` order by date desc limit 0, 50", - intval(local_user()) - ); - $sysnotify = $t[0]['total']; - } - else { - $z1 = q("select * from notify where uid = %d AND `msg` != '' - and seen = 0 GROUP BY `parent` order by date desc limit 0, 50", - intval(local_user()) - ); - - $z2 = q("select * from notify where uid = %d AND `msg` != '' - and seen = 1 GROUP BY `parent` order by date desc limit 0, %d", - intval(local_user()), - intval(50 - intval($t[0]['total'])) - ); - $z = array_merge($z1,$z2); - $sysnotify = 0; // we will update this in a moment - } -*/ - - $tags = array(); $comments = array(); $likes = array(); @@ -137,13 +104,12 @@ select notify.id, notify.type, iid, visible, deleted, CASE notify.iid WHEN 0 THE $myurl = $a->get_baseurl() . '/profile/' . $a->user['nickname'] ; - $mails = q("SELECT *, COUNT(*) AS `total` FROM `mail` + $mails = q("SELECT * FROM `mail` WHERE `uid` = %d AND `seen` = 0 AND `from-url` != '%s' ", intval(local_user()), dbesc($myurl) ); - if($mails) - $mail = $mails[0]['total']; + $mail = count($mails); if ($a->config['register_policy'] == REGISTER_APPROVE && is_site_admin()){ $regs = q("SELECT `contact`.`name`, `contact`.`url`, `contact`.`micro`, `register`.`created`, COUNT(*) as `total` FROM `contact` RIGHT JOIN `register` ON `register`.`uid`=`contact`.`uid` WHERE `contact`.`self`=1"); @@ -235,7 +201,24 @@ select notify.id, notify.type, iid, visible, deleted, CASE notify.iid WHEN 0 THE } } - echo ' '; + echo ' '; + + if ($intro>0){ + foreach ($intros as $i) { + echo xmlize( $a->get_baseurl().'/notifications/intros/'.$i['id'], $i['name'], $i['url'], $i['photo'], relative_date($i['datetime']), 'notify-unseen',t("{0} wants to be your friend") ); + }; + } + if ($mail>0){ + foreach ($mails as $i) { + echo xmlize( $a->get_baseurl().'/message/'.$i['id'], $i['from-name'], $i['from-url'], $i['from-photo'], relative_date($i['created']), 'notify-unseen',t("{0} sent you a message") ); + }; + } + if ($register>0){ + foreach ($regs as $i) { + echo xmlize( $a->get_baseurl().'/admin/users/', $i['name'], $i['url'], $i['micro'], relative_date($i['created']), 'notify-unseen',t("{0} requested registration") ); + }; + } + if(count($z)) { foreach($z as $zz) { echo xmlize($a->get_baseurl() . '/notify/view/' . $zz['id'], $zz['name'],$zz['url'],$zz['photo'],relative_date($zz['date']), ($zz['seen'] ? 'notify-seen' : 'notify-unseen'), ($zz['seen'] ? '' : '→ ') .strip_tags(bbcode($zz['msg']))); @@ -250,12 +233,12 @@ select notify.id, notify.type, iid, visible, deleted, CASE notify.iid WHEN 0 THE }; } if ($mail>0){ - foreach ($mails as $i) { + foreach ($mails as $i) { echo xmlize( $a->get_baseurl().'/message/'.$i['id'], $i['from-name'], $i['from-url'], $i['from-photo'], relative_date($i['created']), 'notify-unseen',t("{0} sent you a message") ); }; } if ($register>0){ - foreach ($regs as $i) { + foreach ($regs as $i) { echo xmlize( $a->get_baseurl().'/admin/users/', $i['name'], $i['url'], $i['micro'], relative_date($i['created']), 'notify-unseen',t("{0} requested registration") ); }; } @@ -334,8 +317,12 @@ function ping_get_notifications($uid) { $r = q("SELECT `notify`.*, `item`.`visible`, `item`.`spam`, `item`.`deleted` FROM `notify` LEFT JOIN `item` ON `item`.`id` = `notify`.`iid` WHERE `notify`.`uid` = %d AND `notify`.`msg` != '' + AND NOT (`notify`.`type` IN (%d, %d)) AND $seensql `notify`.`seen` ORDER BY `notify`.`date` DESC LIMIT %d, 50", - intval($uid), intval($offset) + intval($uid), + intval(NOTIFY_INTRO), + intval(NOTIFY_MAIL), + intval($offset) ); if (!$r AND !$seen) { @@ -357,6 +344,12 @@ function ping_get_notifications($uid) { if (is_null($notification["deleted"])) $notification["deleted"] = 0; + // Replace the name with {0} but ensure to make that only once + // The {0} is used later and prints the name in bold. + $pos = strpos($notification["msg"],$notification['name']); + if ($pos !== false) + $notification["msg"] = substr_replace($notification["msg"],"{0}",$pos,strlen($notification['name'])); + if ($notification["visible"] AND !$notification["spam"] AND !$notification["deleted"] AND !is_array($result[$notification["parent"]])) $result[$notification["parent"]] = $notification; @@ -366,4 +359,3 @@ function ping_get_notifications($uid) { return($result); } - From c348f27e84f4c461acf1fffdb9bbf85a209d24a0 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Thu, 23 Apr 2015 08:59:30 +0200 Subject: [PATCH 083/306] Show unread notifications in a different order than read notifications --- mod/ping.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/mod/ping.php b/mod/ping.php index c8fb582d1a..15e7dfab15 100644 --- a/mod/ping.php +++ b/mod/ping.php @@ -311,6 +311,7 @@ function ping_get_notifications($uid) { $offset = 0; $seen = false; $seensql = "NOT"; + $order = ""; $quit = false; do { @@ -318,7 +319,7 @@ function ping_get_notifications($uid) { FROM `notify` LEFT JOIN `item` ON `item`.`id` = `notify`.`iid` WHERE `notify`.`uid` = %d AND `notify`.`msg` != '' AND NOT (`notify`.`type` IN (%d, %d)) - AND $seensql `notify`.`seen` ORDER BY `notify`.`date` DESC LIMIT %d, 50", + AND $seensql `notify`.`seen` ORDER BY `notify`.`date` $order LIMIT %d, 50", intval($uid), intval(NOTIFY_INTRO), intval(NOTIFY_MAIL), @@ -328,6 +329,7 @@ function ping_get_notifications($uid) { if (!$r AND !$seen) { $seen = true; $seensql = ""; + $order = "DESC"; $offset = 0; } elseif (!$r) $quit = true; From deee750dc4fb5f4e4328b5c3a392c9e9370ca5b3 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Fri, 24 Apr 2015 09:55:16 +0200 Subject: [PATCH 084/306] linefeeds in DE docs part of #1478 --- doc/de/Account-Basics.md | 54 +++++++++++---- doc/de/BBCode.md | 3 +- doc/de/Bugs-and-Issues.md | 10 ++- doc/de/Chats.md | 37 +++++++--- doc/de/Connectors.md | 50 +++++++++----- doc/de/Developers.md | 7 +- doc/de/FAQ.md | 84 ++++++++++++++++------- doc/de/Forums.md | 38 ++++++++--- doc/de/Groups-and-Privacy.md | 84 +++++++++++++++++------ doc/de/Improve-Performance.md | 28 +++++--- doc/de/Install.md | 27 ++++++-- doc/de/Installing-Connectors.md | 33 +++++---- doc/de/Making-Friends.md | 63 +++++++++++++---- doc/de/Message-Flow.md | 34 ++++++++-- doc/de/Move-Account.md | 27 +++----- doc/de/Plugins.md | 32 ++++++--- doc/de/Profiles.md | 62 ++++++++++++----- doc/de/Quick-Start-groupsandpages.md | 14 +++- doc/de/Quick-Start-guide.md | 16 +++-- doc/de/Quick-Start-makingnewfriends.md | 16 +++-- doc/de/Quick-Start-network.md | 12 +++- doc/de/README.md | 3 +- doc/de/Remove-Account.md | 19 ++++-- doc/de/SSL.md | 93 ++++++++++++++++++++------ doc/de/Settings.md | 84 ++++++++++++++++++----- doc/de/Tags-and-Mentions.md | 15 ++++- doc/de/Text_comment.md | 30 ++++++--- doc/de/Text_editor.md | 26 +++++-- doc/de/groupsandpages.md | 16 ++++- doc/de/guide.md | 15 ++++- doc/de/makingnewfriends.md | 19 ++++-- doc/de/network.md | 12 +++- 32 files changed, 788 insertions(+), 275 deletions(-) diff --git a/doc/de/Account-Basics.md b/doc/de/Account-Basics.md index 8089695764..dc834b1101 100644 --- a/doc/de/Account-Basics.md +++ b/doc/de/Account-Basics.md @@ -6,52 +6,79 @@ Account - Basics **Registrierung** -Nicht alle Friendica-Knoten bieten die Möglichkeit einer Registrierung. Wenn eine Registrierung möglich ist, wird ein "Registrieren"-Link unter dem Login-Feld auf der Startseite angezeigt, der zur Registrierungsseite führt. Die Stärke unseres Netzwerks liegt darin, dass die verschiedenen Knoten komplett kompatibel zueinander sind. +Nicht alle Friendica-Knoten bieten die Möglichkeit einer Registrierung. +Wenn eine Registrierung möglich ist, wird ein "Registrieren"-Link unter dem Login-Feld auf der Startseite angezeigt, der zur Registrierungsseite führt. +Die Stärke unseres Netzwerks liegt darin, dass die verschiedenen Knoten komplett kompatibel zueinander sind. Wenn der Knoten, den Du besuchst, keine Registrierung anbietet, oder wenn Du glaubst, dass Dir eine andere Seite möglicherweise besser gefällt, dann kannst Du hier eine Liste von öffentlichen Servern (Knoten) finden und den Knoten heraus suchen, der am Besten zu Deinen Anforderungen passt. -Wenn Du Deinen eigenen Server aufsetzen willst, kannst Du das ebenfalls machen. Besuche die Friendica-Webseite, um den Code mit den Installationsanleitungen herunterzuladen. Es ist ein einfacher Installationsprozess, den jeder mit ein wenig Erfahrungen im Webseiten-Hosting oder mit grundlegenden Linux-Erfahrungen einfach handhaben kann. +Wenn Du Deinen eigenen Server aufsetzen willst, kannst Du das ebenfalls machen. Besuche die Friendica-Webseite, um den Code mit den Installationsanleitungen herunterzuladen. +Es ist ein einfacher Installationsprozess, den jeder mit ein wenig Erfahrungen im Webseiten-Hosting oder mit grundlegenden Linux-Erfahrungen einfach handhaben kann. *OpenID* -Das erste Feld auf der Registrierungsseite ist für eine OpenID-Adresse. Wenn Du keine OpenID-Adresse hast oder diese nicht verwenden möchtest, dann lasse das Feld frei. Wenn Du einen OpenID-Account hast und diesen nutzen willst, gib die Adresse in das Feld ein und klicke auf "Registrieren". Friendica wird versuchen, so viele Informationen wie möglich von Deinem OpenID-Provider zu übernehmen, um diese in Dein Profil auf dieser Seite einzutragen. +Das erste Feld auf der Registrierungsseite ist für eine OpenID-Adresse. +Wenn Du keine OpenID-Adresse hast oder diese nicht verwenden möchtest, dann lasse das Feld frei. +Wenn Du einen OpenID-Account hast und diesen nutzen willst, gib die Adresse in das Feld ein und klicke auf "Registrieren". +Friendica wird versuchen, so viele Informationen wie möglich von Deinem OpenID-Provider zu übernehmen, um diese in Dein Profil auf dieser Seite einzutragen. *Dein vollständiger Name* -Bitte trage Deinen vollständigen Namen **so ein, wie Du ihn im System anzeigen lassen willst**. Viele Leute nutzen ihren richtigen Namen hierfür, allerdings besteht für Dich dazu keine Verpflichtung. +Bitte trage Deinen vollständigen Namen **so ein, wie Du ihn im System anzeigen lassen willst**. +Viele Leute nutzen ihren richtigen Namen hierfür, allerdings besteht für Dich dazu keine Verpflichtung. *Email-Adresse* -Bitte trage eine richtige Email-Adresse ein. Deine Email-Adresse wird **niemals** veröffentlicht. Wir benötigen diese, um Dir Account-Informationen und die Login-Daten zuzuschicken. Du erhältst zudem von Zeit zu Zeit Benachrichtigungen über eingegangene Nachrichten oder Punkte, die Deine Aufmerksamkeit benötigen. Du hast aber auch die Möglichkeit, diese Nachrichten in Deinen Account-Einstellungen komplett abzuschalten.
    -Bei der Wahl der Email-Adresse bist Du völlig frei, sie sollte aber funktionieren, und Du musst Zugriff auf sie haben. Ohne diese Adresse kannst Du weder Dein Initialpasswort erhalten, noch Dein Passwort zurücksetzen. Dies ist die einzige persönliche Information, die korrekt sein muss. +Bitte trage eine richtige Email-Adresse ein. +Deine Email-Adresse wird **niemals** veröffentlicht. +Wir benötigen diese, um Dir Account-Informationen und die Login-Daten zuzuschicken. +Du erhältst zudem von Zeit zu Zeit Benachrichtigungen über eingegangene Nachrichten oder Punkte, die Deine Aufmerksamkeit benötigen. +Du hast aber auch die Möglichkeit, diese Nachrichten in Deinen Account-Einstellungen komplett abzuschalten. + +Bei der Wahl der Email-Adresse bist Du völlig frei, sie sollte aber funktionieren, und Du musst Zugriff auf sie haben. +Ohne diese Adresse kannst Du weder Dein Initialpasswort erhalten, noch Dein Passwort zurücksetzen. +Dies ist die einzige persönliche Information, die korrekt sein muss. *Spitzname/Nickname* -Der Spitzname wird benötigt, um eine Webadresse für Deine persönlichen Seiten zu erstellen. Auch wird dieser wie eine Email-Adresse genutzt, wenn eine Verbindung zu anderen Personen hergestellt werden soll. Durch die Art, wie der Spitzname genutzt wird, ergeben sich bestimmte Einschränkungen: Er darf nur US-ASCII-Textzeichen und Ziffern enthalten und er muss zudem mit einem Buchstaben beginnen. Außerdem muss er einzigartig im System sein. Dieser Spitzname wird an vielen Stellen genutzt, um Deinen Account zu identifizieren, und kann daher **später nicht mehr geändert werden**. +Der Spitzname wird benötigt, um eine Webadresse für Deine persönlichen Seiten zu erstellen. +Auch wird dieser wie eine Email-Adresse genutzt, wenn eine Verbindung zu anderen Personen hergestellt werden soll. +Durch die Art, wie der Spitzname genutzt wird, ergeben sich bestimmte Einschränkungen: Er darf nur US-ASCII-Textzeichen und Ziffern enthalten und er muss zudem mit einem Buchstaben beginnen. +Außerdem muss er einzigartig im System sein. +Dieser Spitzname wird an vielen Stellen genutzt, um Deinen Account zu identifizieren, und kann daher **später nicht mehr geändert werden**. *Verzeichnis-Eintrag* -Das Registrierungsformular erlaubt es Dir, direkt zu bestimmen, ob Du in dem einem Telefonbuch vergleichbaren Onlineverzeichnis aufgelistet werden sollst oder nicht. Wir bitten dich, "Ja" zu wählen, so dass Dich andere Leute (Freunde, Familie etc.) finden können. Wenn Du "Nein" wählst, wirst Du gewissermaßen unsichtbar sein und nur wenige Möglichkeiten zur Interaktion haben. Was auch immer Du wählst kann jederzeit nach dem Login in Deinen Account-Einstellungen geändert werden. +Das Registrierungsformular erlaubt es Dir, direkt zu bestimmen, ob Du in dem einem Telefonbuch vergleichbaren Onlineverzeichnis aufgelistet werden sollst oder nicht. +Wir bitten dich, "Ja" zu wählen, so dass Dich andere Leute (Freunde, Familie etc.) finden können. +Wenn Du "Nein" wählst, wirst Du gewissermaßen unsichtbar sein und nur wenige Möglichkeiten zur Interaktion haben. +Was auch immer Du wählst kann jederzeit nach dem Login in Deinen Account-Einstellungen geändert werden. *Registrierung* -Sobald Du die nötigen Informationen eingegeben hast, klicke auf "Registrieren". Eine Email mit den Registrierungsdetails und Deinem Initialpasswort wird an die hinterlegte Email-Adresse geschickt. Bitte prüfe den Posteingang (inkl. dem Spam-Ordner). +Sobald Du die nötigen Informationen eingegeben hast, klicke auf "Registrieren". +Eine Email mit den Registrierungsdetails und Deinem Initialpasswort wird an die hinterlegte Email-Adresse geschickt. +Bitte prüfe den Posteingang (inkl. dem Spam-Ordner). **Login-Seite** -Gib auf der "Login"-Seite die Informationen ein, die Du mit der oben genannten Email erhalten hast. Du kannst entweder Deinen Spitznamen oder die Email-Adresse als Login-Namen nutzen. +Gib auf der "Login"-Seite die Informationen ein, die Du mit der oben genannten Email erhalten hast. +Du kannst entweder Deinen Spitznamen oder die Email-Adresse als Login-Namen nutzen. Wenn Du Deinen Account nutzt, um unterschiedliche '[Seiten](help/Pages)' zu verwalten, die die gleiche Email-Adresse verwenden, dann nutze bitte den Spitznamen des Accounts, der verwaltet werden soll. -*Wenn* Dein Account OpenID nutzt, dann kannst Du Deine OpenID-Adresse als Login-Name nutzen und das Passwort-Feld frei lassen. Du wirst zu Deinem OpenID-Anbieter weitergeleitet, wo Du Deine Anmeldung abschließt. +*Wenn* Dein Account OpenID nutzt, dann kannst Du Deine OpenID-Adresse als Login-Name nutzen und das Passwort-Feld frei lassen. +Du wirst zu Deinem OpenID-Anbieter weitergeleitet, wo Du Deine Anmeldung abschließt. -Wenn Du OpenID nicht nutzt, dann gib Dein Passwort ein, das Du mit der Registrierungsmail erhalten hast. Das Passwort muss genau so geschrieben werden, wie es in der Email steht; Groß- und Kleinschreibung wird beachtet. Falls Du Schwierigkeiten beim Login hast, prüfe bitte, ob z. B. Deine Feststelltaste aktiv ist. +Wenn Du OpenID nicht nutzt, dann gib Dein Passwort ein, das Du mit der Registrierungsmail erhalten hast. +Das Passwort muss genau so geschrieben werden, wie es in der Email steht; Groß- und Kleinschreibung wird beachtet. +Falls Du Schwierigkeiten beim Login hast, prüfe bitte, ob z. B. Deine Feststelltaste aktiv ist. **Passwort ändern** @@ -66,7 +93,8 @@ Ein ['Tipp für neue Mitglieder'](newmember)-Link zeigt sich in den ersten beide **Persönliche Daten exportieren** -Du kannst eine Kopie Deiner persönlichen Daten in einer XML-Datei exportieren. Gehe hierzu in Deinen Einstellungen auf "Persönliche Daten exportieren". +Du kannst eine Kopie Deiner persönlichen Daten in einer XML-Datei exportieren. +Gehe hierzu in Deinen Einstellungen auf "Persönliche Daten exportieren". **Schau Dir ebenfalls folgende Seiten an** diff --git a/doc/de/BBCode.md b/doc/de/BBCode.md index 5c0518ce8d..4ce744df7e 100644 --- a/doc/de/BBCode.md +++ b/doc/de/BBCode.md @@ -118,7 +118,8 @@ Man kann viele Dinge, z.B. Video und Audio Dateine, in Nachrichten einbetten.
    [video]url[/video]
    [audio]url[/audio]
    -Wobei die *url* von youtube, vimeo, soundcloud oder einer anderen Seite stammen kann die die oembed oder opengraph Spezifikationen unterstützt. Außerdem kann *url* die genaue url zu einer ogg Datei sein, die dann per HTML5 eingebunden wird. +Wobei die *url* von youtube, vimeo, soundcloud oder einer anderen Seite stammen kann die die oembed oder opengraph Spezifikationen unterstützt. +Außerdem kann *url* die genaue url zu einer ogg Datei sein, die dann per HTML5 eingebunden wird.
    [url]*url*[/url]
    diff --git a/doc/de/Bugs-and-Issues.md b/doc/de/Bugs-and-Issues.md index 00895dee29..1323b4b9d3 100644 --- a/doc/de/Bugs-and-Issues.md +++ b/doc/de/Bugs-and-Issues.md @@ -3,10 +3,14 @@ Bugs und Probleme * [Zur Startseite der Hilfe](help) -Du solltest jeden Bug und jedes Problem, den/das Du findest, zunächst dem Administrator (oder gegebenenfalls der Support-Seite) Deines Servers melden, statt auf der allgemeinen Bug-Seite. Das erleichtert den Entwicklern ihre Arbeit (z. B. neue Features zu entwickeln), da sie sich nicht mit Fehlern beschäftigen müssen, mit denen sie nichts zu tun haben. +Du solltest jeden Bug und jedes Problem, den/das Du findest, zunächst dem Administrator (oder gegebenenfalls der Support-Seite) Deines Servers melden, statt auf der allgemeinen Bug-Seite. +Das erleichtert den Entwicklern ihre Arbeit (z. B. neue Features zu entwickeln), da sie sich nicht mit Fehlern beschäftigen müssen, mit denen sie nichts zu tun haben. -Wenn Du technisch versiert bist oder Dein Knoten keine Support-Seite hat, dann kannst Du den Bug Tracker nutzen. Bitte durchsuche zunächst die Seite, ob es bereits einen offenen Bug gibt, der Deiner Anfrage entspricht. +Wenn Du technisch versiert bist oder Dein Knoten keine Support-Seite hat, dann kannst Du den Bug Tracker nutzen. +Bitte durchsuche zunächst die Seite, ob es bereits einen offenen Bug gibt, der Deiner Anfrage entspricht. -Liefere so viele Informationen wie möglich zu dem Bug. Hierzu gehört auch die **komplette** Fehlermeldung oder Notiz und alle Schritte, die zu dem Fehler geführt haben. Es ist generell besser, zu viele Informationen zu liefern, als zu wenige. +Liefere so viele Informationen wie möglich zu dem Bug. +Hierzu gehört auch die **komplette** Fehlermeldung oder Notiz und alle Schritte, die zu dem Fehler geführt haben. +Es ist generell besser, zu viele Informationen zu liefern, als zu wenige. Lies Dir diesen Artikel (mehrsprachig) durch, um mehr über **gute** Bug-Reports zu erfahren. diff --git a/doc/de/Chats.md b/doc/de/Chats.md index 8ce7c6a192..6ae719f262 100644 --- a/doc/de/Chats.md +++ b/doc/de/Chats.md @@ -10,18 +10,29 @@ Du hast derzeit zwei Möglichkeiten, einen Chat auf Deiner Friendica-Seite zu be ##IRC Plugin -Sobald das Plugin aktiviert ist, kannst Du den Chat unter [DeineSeite.de/irc](../irc) finden. Beachte aber, dass dieser Chat auch ohne Anmeldung auf Deiner Seite zugänglich ist und somit auch Fremde diesen Chat mitnutzen können. +Sobald das Plugin aktiviert ist, kannst Du den Chat unter [DeineSeite.de/irc](../irc) finden. +Beachte aber, dass dieser Chat auch ohne Anmeldung auf Deiner Seite zugänglich ist und somit auch Fremde diesen Chat mitnutzen können. -Wenn Du dem Link folgst, dann kommst Du zum Anmeldefenster des IR-Chats. Wähle nun einen Spitznamen (Nickname) und wähle einen Raum aus, in dem Du chatten willst. Hier kannst Du jeden Namen eingeben. Es kann also auch #tollerChatdessenNamenurichkenne sein. Gib als nächstes noch die Captchas ein, um zu zeigen, dass es sich bei Dir um einen Menschen handelt und klicke dann auf "Connect". +Wenn Du dem Link folgst, dann kommst Du zum Anmeldefenster des IR-Chats. +Wähle nun einen Spitznamen (Nickname) und wähle einen Raum aus, in dem Du chatten willst. +Hier kannst Du jeden Namen eingeben. +Es kann also auch #tollerChatdessenNamenurichkenne sein. +Gib als nächstes noch die Captchas ein, um zu zeigen, dass es sich bei Dir um einen Menschen handelt und klicke dann auf "Connect". -Im nächsten Fenster siehst Du zunächst viel Text beim Verbindungsaufbau, der allerdings für Dich nicht weiter von Bedeutung ist. Anschließend öffnet sich das Chat-Fenster. In den ersten Zeilen wird Dir Dein Name und Deine aktuelle IP-Adresse angezeigt. Rechts im Fenster siehst Du alle Teilnehmer des Chats. Unten hast Du ein Eingabefeld, um Beiträge zu schreiben. +Im nächsten Fenster siehst Du zunächst viel Text beim Verbindungsaufbau, der allerdings für Dich nicht weiter von Bedeutung ist. +Anschließend öffnet sich das Chat-Fenster. +In den ersten Zeilen wird Dir Dein Name und Deine aktuelle IP-Adresse angezeigt. +Rechts im Fenster siehst Du alle Teilnehmer des Chats. +Unten hast Du ein Eingabefeld, um Beiträge zu schreiben. Weiter Informationen zu IRC findest Du zum Beispiel auf ubuntuusers.de, in Wikipedia oder bei icrhelp.org (in Englisch). ##Jappix Mini -Das Jappix Mini Plugin erlaubt das Erstellen einer Chatbox für Jabber/XMPP-Kontakte. Ein Jabber/XMPP Account sollte vor der Installation bereits vorhanden sein. -Die ausführliche Anleitung dazu und eine Kontrolle, ob Du nicht sogar schon über Deinen E-Mail Anbieter einen Jabber-Account hast, findest Du unter einfachjabber.de.
    +Das Jappix Mini Plugin erlaubt das Erstellen einer Chatbox für Jabber/XMPP-Kontakte. +Ein Jabber/XMPP Account sollte vor der Installation bereits vorhanden sein. +Die ausführliche Anleitung dazu und eine Kontrolle, ob Du nicht sogar schon über Deinen E-Mail Anbieter einen Jabber-Account hast, findest Du unter einfachjabber.de. + Einige Server zum Anmelden eines neuen Accounts: * [https://jappix.com](https://jappix.com) @@ -42,19 +53,27 @@ oder als normaler Download von hier: https://github.com/friendica/friendica-addo Entpacke diese Datei (ggf. den entpackten Ordner in „jappixmini“ umbenennen) und lade sowohl den entpackten Ordner komplett als auch die .tgz Datei in den Addon Ordner Deiner Friendica Installation hoch. -Nach dem Upload gehts in den Friendica Adminbereich und dort zu den Plugins. Aktiviere das Jappixmini Addon und gehe anschließend über die Plugins Seitenleiste (dort wo auch die Twitter-, Impressums-, StatusNet-, usw. Einstellungen gemacht werden) zu den Jappix Grundeinstellungen. +Nach dem Upload gehts in den Friendica Adminbereich und dort zu den Plugins. +Aktiviere das Jappixmini Addon und gehe anschließend über die Plugins Seitenleiste (dort wo auch die Twitter-, Impressums-, StatusNet-, usw. Einstellungen gemacht werden) zu den Jappix Grundeinstellungen. Setze hier den Haken zur Aktivierung des BOSH Proxys. Weiter gehts in den Einstellungen Deines Friendica Accounts. **2. Einstellungen** -Gehe bitte zu den Plugin-Einstellungen in Deinen Konto-Einstellungen (Account Settings). Scrollen ein Stück hinunter bis zu den Jappix Mini addon settings. +Gehe bitte zu den Plugin-Einstellungen in Deinen Konto-Einstellungen (Account Settings). +Scrollen ein Stück hinunter bis zu den Jappix Mini addon settings. Aktiviere hier zuerst das Addon. -Trage nun Deinen Jabber/XMPP Namen ein, ebenfalls die entsprechende Domain bzw. den Server (ohne http, also zb einfach so: jappix.com). Bei „Jabber BOSH Host“ kannst Du erstmal “https://bind.jappix.com/ “ eintragen. Siehe dazu auch die „Configuration Help“ weiter unten. Gebe danach noch Dein Passwort an, und damit ist eigentlich schon fast alles geschafft. Die weiteren Einstellmöglichkeiten bleiben Dir überlassen, sind also optional. Jetzt noch auf „senden“ klicken und fertig. +Trage nun Deinen Jabber/XMPP Namen ein, ebenfalls die entsprechende Domain bzw. den Server (ohne http, also zb einfach so: jappix.com). +Bei „Jabber BOSH Host“ kannst Du erstmal “https://bind.jappix.com/ “ eintragen. +Siehe dazu auch die „Configuration Help“ weiter unten. +Gebe danach noch Dein Passwort an, und damit ist eigentlich schon fast alles geschafft. +Die weiteren Einstellmöglichkeiten bleiben Dir überlassen, sind also optional. +Jetzt noch auf „senden“ klicken und fertig. -Deine Chatbox sollte jetzt irgendwo unten rechts im Browserfenster „kleben“. Falls Du manuell Kontakte hinzufügen möchtest, einfach den „Add Contact“ Knopf nutzen. +Deine Chatbox sollte jetzt irgendwo unten rechts im Browserfenster „kleben“. +Falls Du manuell Kontakte hinzufügen möchtest, einfach den „Add Contact“ Knopf nutzen. Viel Spass beim Chatten! diff --git a/doc/de/Connectors.md b/doc/de/Connectors.md index 52f93c8830..5bb970a249 100644 --- a/doc/de/Connectors.md +++ b/doc/de/Connectors.md @@ -3,37 +3,41 @@ Konnektoren (Connectors) * [Zur Startseite der Hilfe](help) -Konnektoren erlauben es dir, dich mit anderen sozialen Netzwerken zu verbinden. Konnektoren werden nur bei bestehenden Facebook-, Twitter und StatusNet-Accounts benötigt. Außerdem gibt es einen Konnektor, um deinen Email-Posteingang zu nutzen. +Konnektoren erlauben es dir, dich mit anderen sozialen Netzwerken zu verbinden. +Konnektoren werden nur bei bestehenden Facebook-, Twitter und StatusNet-Accounts benötigt. +Außerdem gibt es einen Konnektor, um deinen Email-Posteingang zu nutzen. Wenn die folgenden Netzwerk-Konnektoren auf deinem System installiert sind, kannst du mit den folgenden Links die Einstellungsseiten besuchen und für deinen Account konfigurieren: -* [Facebook](/settings/addon) -* [Twitter](/settings/addon) -* [StatusNet](/settings/addon) -* [Email](/settings) +* [Facebook](/settings/connectors) +* [Twitter](/settings/connectors) +* [StatusNet / GNU Social](/settings/connectors) +* [Email](/settings/connectors) Anleitung, um sich mit Personen in bestimmten Netzwerken zu verbinden ========================================================== **Friendica** -Du kannst dich verbinden, indem du deine Identitäts-Adresse auf der "Verbinden"-Seite des Friendica-Nutzers eingibst. Ebenso kannst du deren Identitäts-Adresse in der "Verbinden"-Box auf deiner ["Kontakt"-Seite](contacts) eingeben. +Du kannst dich verbinden, indem du deine Identitäts-Adresse auf der "Verbinden"-Seite des Friendica-Nutzers eingibst. +Ebenso kannst du deren Identitäts-Adresse in der "Verbinden"-Box auf deiner ["Kontakt"-Seite](contacts) eingeben. **Diaspora** -Füge die Diaspore-Identitäts-Adresse (z.B. name@diasporapod.com)auf deiner ["Kontakte"-Seite](contacts) in das Feld "Neuen Kontakt hinzufügen" ein. +Füge die Diaspore-Identitäts-Adresse (z.B. name@diasporapod.com) auf deiner ["Kontakte"-Seite](contacts) in das Feld "Neuen Kontakt hinzufügen" ein. **Identi.ca/StatusNet/GNU-Social** Diese Netzwerke werden als "federated social web" bzw. "OStatus"-Kontakte bezeichnet. -Bitte beachte, dass es **keine** Einstellungen zur Privatssphäre im OStatus-Netzwerk gibt. **Jede** Nachricht, die an eines dieser OStatus-Mitglieder verschickt wird, ist für jeden auf der Welt sichtbar; alle Privatssphäreneinstellungen verlieren ihre Wirkung. Diese Nachrichten erscheinen ebenfalls in öffentlichen Suchergebnissen. +Bitte beachte, dass es **keine** Einstellungen zur Privatssphäre im OStatus-Netzwerk gibt. +**Jede** Nachricht, die an eines dieser OStatus-Mitglieder verschickt wird, ist für jeden auf der Welt sichtbar; alle Privatssphäreneinstellungen verlieren ihre Wirkung. Diese Nachrichten erscheinen ebenfalls in öffentlichen Suchergebnissen. Da die OStatus-Kommunikation keine Authentifizierung benutzt, können OStatus-Nutzer *keine* Nachrichten empfangen, wenn du in deinen Privatssphäreneinstellungen "Profil und Nachrichten vor Unbekannten verbergen" wählst. -Um dich mit einem OStatus-Mitglied zu verbinden, trage deren Profil-URL oder Identitäts-Adresse auf deiner ["Kontakte"-Seite](contacts) in das Feld "Neuen Kontakt hinzufügen" ein. +Um dich mit einem OStatus-Mitglied zu verbinden, trage deren Identitäts-Adresse auf deiner ["Kontakte"-Seite](contacts) in das Feld "Neuen Kontakt hinzufügen" ein. Der StatusNet-Konnektor kann genutzt werden, wenn du Beiträge schreiben willst, die auf einer OStatus-Seite über einen existierenden OStatus-Account erscheinen sollen. @@ -42,26 +46,40 @@ Das ist nicht notwendig, wenn du OStatus-Mitgliedern von Friendica aus folgst un **Blogger, Wordpress, RSS feeds, andere Webseiten** -Trage die URL auf deiner ["Kontakte"-Seite](contacts) in das Feld "Neuen Kontakt hinzufügen" ein. Du hast keine Möglichkeit, diesen Kontakten zu antworten. +Trage die URL auf deiner ["Kontakte"-Seite](contacts) in das Feld "Neuen Kontakt hinzufügen" ein. +Du hast keine Möglichkeit, diesen Kontakten zu antworten. -Das erlaubt dir, dich mit Millionen von Seiten im Internet zu _verbinden_. Alles, was dafür nötig ist, ist dass die Seite einen Feed im RSS- oder Atom Syndication-Format nutzt und welches einen Autoren und ein Bild zur Seite liefert. +Das erlaubt dir, dich mit Millionen von Seiten im Internet zu _verbinden_. +Alles, was dafür nötig ist, ist dass die Seite einen Feed im RSS- oder Atom Syndication-Format nutzt und welches einen Autoren und ein Bild zur Seite liefert. **Twitter** -Um einem Twitter-Nutzer zu folgen, trage die URL der Hauptseite des Twitter-Accounts auf deiner ["Kontakte"-Seite](contacts) in das Feld "Neuen Kontakt hinzufügen" ein. Um zu antworten, musst du den Twitter-Konnektor installieren und über deinen eigenen Status-Editor antworten. Beginne deine Nachricht mit @twitternutzer, ersetze das aber durch den richtigen Twitter-Namen. +Um einem Twitter-Nutzer zu folgen, muss der Twitter-Connektor installiert sein. +Trage die URL der Hauptseite des Twitter-Accounts auf deiner ["Kontakte"-Seite](contacts) in das Feld "Neuen Kontakt hinzufügen" ein. **Email** -Konfiguriere den Email-Konnektor auf deiner [Einstellungsseite](settings). Wenn du das gemacht hast, kannst du auf deiner ["Kontakte"-Seite](contacts) die Email-Adresse in das Feld "Neuen Kontakt hinzufügen" eintragen. Diese Email-Adresse muss jedoch bereits mit einer Nachricht in deinem Email-Posteingang auf dem Server liegen. Du hast die Möglichkeit, Email-Kontakte in deine privaten Unterhaltungen einzubeziehen. +Konfiguriere den Email-Konnektor auf deiner [Einstellungsseite](settings). +Wenn du das gemacht hast, kannst du auf deiner ["Kontakte"-Seite](contacts) die Email-Adresse in das Feld "Neuen Kontakt hinzufügen" eintragen. +Diese Email-Adresse muss jedoch bereits mit einer Nachricht in deinem Email-Posteingang auf dem Server liegen. +Du hast die Möglichkeit, Email-Kontakte in deine privaten Unterhaltungen einzubeziehen. **Facebook** -Der Facebook-Konnektor ist ein Plugin/Addon, dass es dir erlaubt, von Friendica aus mit Freunden auf Facebook zu interagieren. Wenn er aktiviert ist, wird deine Facebook-Freundesliste importiert und du wirst Facebook-Beiträge sehen und kommentieren können. Facebook-Freunde können außerdem zu privaten Gesprächen hinzugefügt werden. Du hast nicht die Möglichkeit, einzelne Facebook-Accounts hinzuzufügen, sondern nur deine gesamte Freundesliste, die aktualisiert wird, wenn neue Freunde hinzugefügt werden. +Der Facebook-Konnektor ist ein Plugin/Addon, dass es dir erlaubt, von Friendica aus mit Freunden auf Facebook zu interagieren. +Wenn er aktiviert ist, wird deine Facebook-Freundesliste importiert und du wirst Facebook-Beiträge sehen und kommentieren können. +Facebook-Freunde können außerdem zu privaten Gesprächen hinzugefügt werden. +Du hast nicht die Möglichkeit, einzelne Facebook-Accounts hinzuzufügen, sondern nur deine gesamte Freundesliste, die aktualisiert wird, wenn neue Freunde hinzugefügt werden. -Wenn das Facebook-Plugin/Addon installiert ist, kannst du diesen auf deiner Einstellungsseite unter ["Facebook Connector Settings"](settings/addon) einstellen. Dieser Eintrag erscheint nur, wenn das Plugin/Addon installiert ist. Folge den Vorgaben, um den Facebook-Konnektor zu installieren oder löschen. +Wenn das Facebook-Plugin/Addon installiert ist, kannst du diesen auf deiner Einstellungsseite unter ["Facebook Connector Settings"](/settings/connectors) einstellen. +Dieser Eintrag erscheint nur, wenn das Plugin/Addon installiert ist. +Folge den Vorgaben, um den Facebook-Konnektor zu installieren oder löschen. -Du kannst ebenfalls auswählen, ob deine öffentlichen Posts auch standardmäßig bei Facebook veröffentlicht werden sollen. Du kannst diese Einstellung jederzeit im aktuellen Beitrag beeinflussen, indem du auf das "Schloss"-Icon unter dem Beitragseditor gehst. Diese Einstellung hat keine Auswirkung auf private Unterhaltungen. Diese werden immer an Facebook-Freunde mit den entsprechenden Genehmigungen geschickt. +Du kannst ebenfalls auswählen, ob deine öffentlichen Posts auch standardmäßig bei Facebook veröffentlicht werden sollen. +Du kannst diese Einstellung jederzeit im aktuellen Beitrag beeinflussen, indem du auf das "Schloss"-Icon unter dem Beitragseditor gehst. +Diese Einstellung hat keine Auswirkung auf private Unterhaltungen. +Diese werden immer an Facebook-Freunde mit den entsprechenden Genehmigungen geschickt. (Beachte: Aktuell können Facebook-Kontakte keine privaten Fotos sehen. Das wird zukünftig gelöst. Facebook-Kontakte können aber trotzdem öffentliche Fotos sehen, die du hochgeladen hast.) diff --git a/doc/de/Developers.md b/doc/de/Developers.md index f5c90c489a..fce3ccc2dd 100644 --- a/doc/de/Developers.md +++ b/doc/de/Developers.md @@ -17,6 +17,9 @@ Gehe nun zu deiner Github-Seite und erstelle eine "Pull request", wenn du soweit **Wichtig** -Bitte hole dir alle Änderungen aus dem Projektverzeichnis und führe sie mit deiner Arbeit zusammen, **bevor** du deine "pull request" stellt. Wir behalten es uns vor, Patches abzulehnen, die eine große Anzahl an Fehlern hervorrufen. Dies gilt vor allem für Übersetzungen, da wir hier möglicherweise nicht alle feinen Unterschiede in konfliktären Versionen erkennen können. +Bitte hole dir alle Änderungen aus dem Projektverzeichnis und führe sie mit deiner Arbeit zusammen, **bevor** du deine "pull request" stellt. +Wir behalten es uns vor, Patches abzulehnen, die eine große Anzahl an Fehlern hervorrufen. +Dies gilt vor allem für Übersetzungen, da wir hier möglicherweise nicht alle feinen Unterschiede in konfliktären Versionen erkennen können. -Außerdem: **teste deine Änderungen!** Vergiss nicht, dass eine simple Fehlerlösung einen anderen Fehler auslösen kann. Lass deine Änderungen von einem erfahrenen Friendica-Entwickler gegenprüfen. +Außerdem: **teste deine Änderungen!** Vergiss nicht, dass eine simple Fehlerlösung einen anderen Fehler auslösen kann. +Lass deine Änderungen von einem erfahrenen Friendica-Entwickler gegenprüfen. diff --git a/doc/de/FAQ.md b/doc/de/FAQ.md index a1c5d0114a..bbd3b1f773 100644 --- a/doc/de/FAQ.md +++ b/doc/de/FAQ.md @@ -6,8 +6,7 @@ Häufig gestellte Fragen - FAQ Nutzer * **[Warum erhalte ich Warnungen über fehlende Zertifikate?](help/FAQ#ssl)** -* **[Wie kann ich Bilder, Dateien, Links, Video und Audio in Beiträge einfügen? -](help/FAQ#upload)** +* **[Wie kann ich Bilder, Dateien, Links, Video und Audio in Beiträge einfügen?](help/FAQ#upload)** * **[Ist es möglich, bei mehreren Profilen verschiedene Avatare (Nutzerbilder) zu haben?](help/FAQ#avatars)** * **[Was ist der Unterschied zwischen blockierten|ignorierten|archivierten|versteckten Kontakten?](help/FAQ#contacts)** * **[Was passiert, wenn ein Account gelöscht ist? Ist dieser richtig gelöscht?](help/FAQ#removed)** @@ -37,27 +36,39 @@ Manchmal erhältst du eine Browser-Warnung über fehlende Zertifikate. Diese War *(SSL (Secure Socket Layer) ist eine Technologie, die Daten auf ihrem Weg zwischen zwei Computern verschlüsselt.)* -Wenn du noch kein SSL-Zertifikat hast, dann gibt es drei Wege, eines zu erhalten: kauf dir eines, hole dir ein kostenloses (z.B. bei StartSSL) oder kreiere dein eigenes (nicht empfohlen). [Weitere Informationen über die Einrichtung von SSL und warum es schlecht ist, selbst-signierte Zertifikate zu nutzen, findest du hier.](help/SSL) +Wenn du noch kein SSL-Zertifikat hast, dann gibt es drei Wege, eines zu erhalten: kauf dir eines, hole dir ein kostenloses (z.B. bei StartSSL) oder kreiere dein eigenes (nicht empfohlen). +[Weitere Informationen über die Einrichtung von SSL und warum es schlecht ist, selbst-signierte Zertifikate zu nutzen, findest du hier.](help/SSL) -Sei dir bewusst, dass Browser-Warnungen über Sicherheitslücken etwas sind, wodurch neue Nutzer schnell das Vertrauen in das gesamte Friendica-Projekt verlieren können. Aus diesem Grund wird Friendica Red nur SSL-Zertifikate eines anerkannten Anbieters (CA, certificate authority) akzeptieren und nicht zu Seiten verbinden, die kein SSL nutzen. Unabhängig von den negativen Aspekten von SSL handelt es sich hierbei um eine notwendige Lösung, solange keine etablierte Alternative existiert. +Sei dir bewusst, dass Browser-Warnungen über Sicherheitslücken etwas sind, wodurch neue Nutzer schnell das Vertrauen in das gesamte Friendica-Projekt verlieren können. +Unabhängig von den negativen Aspekten von SSL handelt es sich hierbei um eine notwendige Lösung, solange keine etablierte Alternative existiert. Abgesehen davon kann es ohne SSL auch Probleme mit der Verbindung zu Diaspora geben, da einige Diaspora-Pods eine zertifizierte Verbindung benötigen. -Wenn du Friendica nur für eine bestimmte Gruppe von Leuten auf einem einzelnen Server nutzt, bei dem keine Verbindung zum restlichen Netzwerk besteht, dann benötigst du kein SSL. Ebenso benötigst du SSL nicht, wenn du ausschließlich öffentliche Beiträge auf deiner Seite veröffentlichst bzw. empfängst. +Wenn du Friendica nur für eine bestimmte Gruppe von Leuten auf einem einzelnen Server nutzt, bei dem keine Verbindung zum restlichen Netzwerk besteht, dann benötigst du kein SSL. +Ebenso benötigst du SSL nicht, wenn du ausschließlich öffentliche Beiträge auf deiner Seite veröffentlichst bzw. empfängst. -Wenn du zum jetzigen Zeitpunkt noch keinen Server aufgesetzt hast, ist es sinnvoll, die verschiedenen Anbieter in Bezug auf SSL zu vergleichen. Einige erlauben die Nutzung von freien Zertifikaten oder lassen dich ihre eigenen Zertifikate mitnutzen. Andere erlauben nur kostenpflichtige Zertifikate als eigenes Angebot bzw. von anderen Anbietern. +Wenn du zum jetzigen Zeitpunkt noch keinen Server aufgesetzt hast, ist es sinnvoll, die verschiedenen Anbieter in Bezug auf SSL zu vergleichen. +Einige erlauben die Nutzung von freien Zertifikaten oder lassen dich ihre eigenen Zertifikate mitnutzen. +Andere erlauben nur kostenpflichtige Zertifikate als eigenes Angebot bzw. von anderen Anbietern. **Wie kann ich Bilder, Dateien, Links, Video und Audio in Beiträge einfügen?** -Bilder können direkt im [Beitragseditor](help/Text_editor) vom Computer hochgeladen werden. Eine Übersicht aller Bilder, die auf deinem Server liegen, findest du unter deineSeite.de/photos/profilname. Dort kannst du auch direkt Bilder hochladen und festlegen, ob deine Kontakte eine Nachricht über das neue Bild bekommen. +Bilder können direkt im [Beitragseditor](help/Text_editor) vom Computer hochgeladen werden. +Eine Übersicht aller Bilder, die auf deinem Server liegen, findest du unter deineSeite.de/photos/profilname. +Dort kannst du auch direkt Bilder hochladen und festlegen, ob deine Kontakte eine Nachricht über das neue Bild bekommen. -Alle Arten von Dateien können grundsätzlich als Anhang in Friendica hochgeladen werden. Dafür verwendest du das Büroklammersymbol im Editor. Sie sind dann direkt an den Beitrag geknüpft, können von den Betrachtern heruntergeladen werden, aber werden nicht als Vorschau angezeigt. Deshalb eignet sich diese Methode vor allem für Office-Dateien oder gepackte Dateien wie ZIPs, aber weniger für Multimediadateien. Wer hingegen Dateien über Dropbox, über eine auf dem eigenen Server installierte Owncloud oder über einen anderen [Filehoster](http://en.wikipedia.org/wiki/Comparison_of_file_hosting_services) einfügen will, verwendet den Link-Button. +Alle Arten von Dateien können grundsätzlich als Anhang in Friendica hochgeladen werden. Dafür verwendest du das Büroklammersymbol im Editor. +Sie sind dann direkt an den Beitrag geknüpft, können von den Betrachtern heruntergeladen werden, aber werden nicht als Vorschau angezeigt. +Deshalb eignet sich diese Methode vor allem für Office-Dateien oder gepackte Dateien wie ZIPs, aber weniger für Multimediadateien. +Wer hingegen Dateien über Dropbox, über eine auf dem eigenen Server installierte Owncloud oder über einen anderen [Filehoster](http://en.wikipedia.org/wiki/Comparison_of_file_hosting_services) einfügen will, verwendet den Link-Button. -Wenn du mit dem Link-Button (Ketten-Symbol) URLs zu anderen Seiten einfügst, versucht Friendica eine kurze Zusammenfassung als Vorschau abzurufen. Manchmal klappts das nicht ... dann verlinke den Beitrag einfach per [url=http://example.com]freigewählter Name[/url] im Editor. +Wenn du mit dem Link-Button (Ketten-Symbol) URLs zu anderen Seiten einfügst, versucht Friendica eine kurze Zusammenfassung als Vorschau abzurufen. +Manchmal klappts das nicht ... dann verlinke den Beitrag einfach per [url=http://example.com]freigewählter Name[/url] im Editor. -Video- und Audiodateien können zwar in Beiträge eingebunden werden, allerdings geht das nicht über einen direkten Upload im Editor wie bei Fotos. Du hast zwei Möglichkeiten: +Video- und Audiodateien können zwar in Beiträge eingebunden werden, allerdings geht das nicht über einen direkten Upload im Editor wie bei Fotos. +Du hast zwei Möglichkeiten: 1. Du kannst bei dem Video- oder Audiobutton die URL von einem Hoster eingeben (Youtube, Vimeo, Soundcloud und alle anderen mit oembed/opengraph-Unterstützung). Bei Videos zeigt Friendica dann ein Vorschaubild in deinem Beitrag an, nach einem Klick öffnet sich ein eingebetter Player. Bei Soundcloud wird der Player direkt eingebunden. 2. Wenn du Zugang zu einem eigenen Server hast, kannst deine Multimediadatei per FTP dort hochladen und beim Video-/Audiobutton diese URL angeben. Dann wird das Video oder die Audiodatei direkt mit einem Player in deinem Beitrag angezeigt. @@ -69,33 +80,50 @@ Zum Konvertieren von Videos in das lizenfreie Videoformat WebM gibt es unter Win **Ist es möglich, bei mehreren Profilen verschiedene Avatare (Nutzerbilder) zu haben?** -Ja. Auf deiner ["Profile verwalten/editieren"-Seite](../profiles) wählst du zunächst das gewünschte Profil aus. Anschließend siehst du eine Seite mit allen Infos zu diesem Profil. Klicke nun oben auf den Link "Profilbild ändern" und lade im nächsten Fenster ein Bild von deinem PC hoch. Um deine privaten Daten zu schützen, wird in Beiträgen nur das Bild aus deinem öffentlichen Profil angezeigt. +Ja. +Auf deiner ["Profile verwalten/editieren"-Seite](../profiles) wählst du zunächst das gewünschte Profil aus. +Anschließend siehst du eine Seite mit allen Infos zu diesem Profil. +Klicke nun oben auf den Link "Profilbild ändern" und lade im nächsten Fenster ein Bild von deinem PC hoch. +Um deine privaten Daten zu schützen, wird in Beiträgen nur das Bild aus deinem öffentlichen Profil angezeigt. **Was ist der Unterschied zwischen blockierten|ignorierten|archivierten|versteckten Kontakten?** -Wir verhindern direkte Kommunikation mit blockierten Kontakten. Sie gehören nicht zu den Empfängern beim Versand von Beiträgen und deren Beiträge werden auch nicht importiert. Trotzdem werden deren Unterhaltungen mit deinen Freunden trotzdem in deinem Stream sichtbar sein. Wenn du einen Kontakt komplett löschst, können sie dir eine neue Freundschaftsanfrage schicken. Blockierte Kontakte können das nicht machen. Sie können nicht mit dir direkt kommunizieren, nur über Freunde. +Wir verhindern direkte Kommunikation mit blockierten Kontakten. +Sie gehören nicht zu den Empfängern beim Versand von Beiträgen und deren Beiträge werden auch nicht importiert. +Trotzdem werden deren Unterhaltungen mit deinen Freunden trotzdem in deinem Stream sichtbar sein. +Wenn du einen Kontakt komplett löschst, können sie dir eine neue Freundschaftsanfrage schicken. +Blockierte Kontakte können das nicht machen. +Sie können nicht mit dir direkt kommunizieren, nur über Freunde. -Ignorierte Kontakte können weiterhin Beiträge von dir erhalten. Deren Beiträge werden allerdings nicht importiert. Wie bei blockierten Beiträgen siehst du auch hier weiterhin die Kommentare dieser Person zu anderen Beiträgen deiner Freunde. +Ignorierte Kontakte können weiterhin Beiträge von dir erhalten. +Deren Beiträge werden allerdings nicht importiert. +Wie bei blockierten Beiträgen siehst du auch hier weiterhin die Kommentare dieser Person zu anderen Beiträgen deiner Freunde. -[Ein Plugin namens "blockem" kann installiert werden, um alle Beiträge einer bestimmten Person in deinem Stream zu verstecken bzw. zu verkürzen. Dabei werden auch Kommentare dieser Person in Beiträgen deiner Freunde blockiert.] +Ein Plugin namens "blockem" kann installiert werden, um alle Beiträge einer bestimmten Person in deinem Stream zu verstecken bzw. zu verkürzen. Dabei werden auch Kommentare dieser Person in Beiträgen deiner Freunde blockiert. -Ein archivierter Kontakt bedeutet, dass Kommunikation nicht möglich ist und auch nicht versucht wird (das ist z.B. sinnvoll, wenn eine Person zu einer neuen Seite gewechselt ist und das alte Profil gelöscht hat). Anders als beim Blockieren werden existierende Beiträge, die vor der Archivierung erstellt wurden, weiterhin angezeigt. +Ein archivierter Kontakt bedeutet, dass Kommunikation nicht möglich ist und auch nicht versucht wird (das ist z.B. sinnvoll, wenn eine Person zu einer neuen Seite gewechselt ist und das alte Profil gelöscht hat). +Anders als beim Blockieren werden existierende Beiträge, die vor der Archivierung erstellt wurden, weiterhin angezeigt. -Ein versteckter Kontakt wird in keiner "Freundeliste" erscheinen (außer für dich). Trotzdem wird ein versteckter Kontakt trotzdem normal in Unterhaltungen angezeigt, was jedoch für andere Kontakte ein Hinweis sein kann, dass diese Person als versteckter Kontakt in deiner Liste ist. +Ein versteckter Kontakt wird in keiner "Freundeliste" erscheinen (außer für dich). +Trotzdem wird ein versteckter Kontakt trotzdem normal in Unterhaltungen angezeigt, was jedoch für andere Kontakte ein Hinweis sein kann, dass diese Person als versteckter Kontakt in deiner Liste ist. **Was passiert, wenn ein Account gelöscht ist? Ist dieser richtig gelöscht?** -Wenn du deinen Account löschst, wird sofort der gesamte Inhalt auf deinem Server gelöscht und ein Löschbefehl an alle deine Kontakte verschickt. Dadurch wirst du ebenfalls aus dem globalen Verzeichnis gelöscht. Dieses Vorgehen setzt voraus, dass dein Profil für 24 Stunden weiterhin "teilweise" verfügbar sein wird, um eine Verbindung zu allen deinen Kontakten ermöglicht. Wir können also dein Profil blockieren und es so erscheinen lassen, als wären alle Daten sofort gelöscht, allerdings warten wir 24 Stunden (bzw. bis alle deine Kontakte informiert wurden), bevor wir die Daten auch physikalisch löschen. +Wenn du deinen Account löschst, wird sofort der gesamte Inhalt auf deinem Server gelöscht und ein Löschbefehl an alle deine Kontakte verschickt. +Dadurch wirst du ebenfalls aus dem globalen Verzeichnis gelöscht. +Dieses Vorgehen setzt voraus, dass dein Profil für 24 Stunden weiterhin "teilweise" verfügbar sein wird, um eine Verbindung zu allen deinen Kontakten ermöglicht. +Wir können also dein Profil blockieren und es so erscheinen lassen, als wären alle Daten sofort gelöscht, allerdings warten wir 24 Stunden (bzw. bis alle deine Kontakte informiert wurden), bevor wir die Daten auch physikalisch löschen. **Kann ich einem hashtag folgen?** -Nein. Die Möglichkeit, einem hashtag zu folgen, ist eine interessante Technik, führt aber zu einigen Schwierigkeiten. +Nein. +Die Möglichkeit, einem hashtag zu folgen, ist eine interessante Technik, führt aber zu einigen Schwierigkeiten. 1.) Alle Beiträge, die diesen tag nutzen, müssten zu allen Seiten im Netzwerk kopiert werden. Das erhöht den Speicherbedarf und beeinträchtigt kleine Seiten. Die Nutzung von geteilten Hosting-Angeboten (Shared Hosting) wäre praktisch unmöglich. @@ -103,7 +131,8 @@ Nein. Die Möglichkeit, einem hashtag zu folgen, ist eine interessante Technik, 3.) Der wichtigste Grund der gegen diese Technik spricht ist, dass sie eine natürliche Ausrichtung auf größere Seiten mit mehr getaggten Inhalten zur Folge hat. Dies kann z.B. aufkommen, wenn dein Netzwerk tags anstelle von anderen Kommunikationsmitteln wie Gruppen oder Foren nutzt. -Stattdessen bieten wir andere Mechanismen, um globale Unterhaltungen zu erreichen, dabei aber eine angemesse Basis für kleine und große Seiten zu bieten. Hierzu gehören Foren, Gruppen und geteilte tags. +Stattdessen bieten wir andere Mechanismen, um globale Unterhaltungen zu erreichen, dabei aber eine angemesse Basis für kleine und große Seiten zu bieten. +Hierzu gehören Foren, Gruppen und geteilte tags. @@ -131,11 +160,12 @@ RSS-Feed aller Unterhaltungen auf deiner Seite **Wo finde ich Hilfe?** -Wenn du Probleme mit deiner Friendica-Seite hast, dann kannst du die Community in der [Friendica-Support-Gruppe](https://helpers.pyxis.uberspace.de/profile/helpers) oder im [deutschen Friendica-Support-Forum](http://toktan.org/profile/wiki) fragen oder dir das [deutsche Wiki](http://wiki.toktan.org/doku.php) anschauen. Wenn du deinen Account nicht nutzen kannst, kannst du entweder einen [Testaccount](http://friendica.com/node/31) bzw. einen Account auf einer öffentlichen Seite ([Liste](http://dir.friendica.com/siteinfo)) nutzen, oder du wählst die Librelist-mailing-Liste. Wenn du die Mailing-Liste nutzen willst, schicke eine Mail an friendica AT librelist PUNKT com. - -Wenn du Friendica Red nutzt, findest du außerdem in diesem Forum Hilfe: [Friendica Red Development](https://myfriendica.net/profile/friendicared). +Wenn du Probleme mit deiner Friendica-Seite hast, dann kannst du die Community in der [Friendica-Support-Gruppe](https://helpers.pyxis.uberspace.de/profile/helpers) oder im [deutschen Friendica-Support-Forum](http://toktan.org/profile/wiki) fragen oder dir das [deutsche Wiki](http://wiki.toktan.org/doku.php) anschauen. +Wenn du deinen Account nicht nutzen kannst, kannst du entweder einen [Testaccount](http://friendica.com/node/31) bzw. einen Account auf einer öffentlichen Seite ([Liste](http://dir.friendica.com/siteinfo)) nutzen, oder du wählst die Librelist-mailing-Liste. +Wenn du die Mailing-Liste nutzen willst, schicke eine Mail an friendica AT librelist PUNKT com. Wenn du ein Theme-Entwickler bist, wirst du in diesem Forum Hilfe finden: [Friendica Theme Developers](https://friendica.eu/profile/ftdevs). +Desweiteren gibt es ein Forum, das sich UI/UX Problemen widmet [UX Watchdogs](https://fc.oscp.info/profile/ux-watchdogs). Admin -------- @@ -144,14 +174,18 @@ Admin **Kann ich mehrere Domains mit den selben Dateien aufsetzen?** -Ja, das ist möglich. Es ist allerdings nicht möglich, eine Datenbank durch zwei Domains zu nutzen. Solange du deine .htconfig.php allerdings so einrichtest, dass das System nicht versucht, eine Installation durchzuführen, kannst du die richtige Config-Datei in include/$hostname/.htconfig.php hinterlegen. Alle Cache-Aspekte und der Zugriffsschutz können pro Instanz konfiguriert werden. +Ja, das ist möglich. +Es ist allerdings nicht möglich, eine Datenbank durch zwei Domains zu nutzen. +Solange du deine .htconfig.php allerdings so einrichtest, dass das System nicht versucht, eine Installation durchzuführen, kannst du die richtige Config-Datei in include/$hostname/.htconfig.php hinterlegen. +Alle Cache-Aspekte und der Zugriffsschutz können pro Instanz konfiguriert werden. **Wo kann ich den Quellcode von Friendica, Addons und Themes finden?** -Du kannst den Friendica-Quellcode [hier](https://github.com/friendica/friendica) finden. Dort findest du immer die aktuellste stabile Version von Friendica. Der Quellcode von Friendica Red ist [hier](https://github.com/friendica/red) zu finden. +Du kannst den Friendica-Quellcode [hier](https://github.com/friendica/friendica) finden. +Dort findest du immer die aktuellste stabile Version von Friendica. Addons findest du auf [dieser Seite](https://github.com/friendica/friendica-addons). -Wenn du neue Themen suchst, findest du sie auf [Friendica-Themes.com](http://friendica-themes.com/) \ No newline at end of file +Wenn du neue Themen suchst, findest du sie auf [Friendica-Themes.com](http://friendica-themes.com/) diff --git a/doc/de/Forums.md b/doc/de/Forums.md index 6a8fd5bd7a..08127830cf 100644 --- a/doc/de/Forums.md +++ b/doc/de/Forums.md @@ -6,32 +6,52 @@ Foren Friendica lässt dich auch Foren und/oder Prominenten-Seiten erstellen. -Jede Seite in Friendica hat einen einzigartigen Spitznamen. Das gilt für alle Seiten, unabhängig davon, ob es sich um normale Profile oder Forenseite handelt. +Jede Seite in Friendica hat einen einzigartigen Spitznamen. +Das gilt für alle Seiten, unabhängig davon, ob es sich um normale Profile oder Forenseite handelt. -Das Erste, was du machen musst, um ein neues Forum zu kreieren ist, einen neuen Account zu erstellen. Bitte beachte, dass der Seitenadministrator die Registrierung neuer Accounts sperren oder an Bedingungen knüpfen kann. +Das Erste, was du machen musst, um ein neues Forum zu kreieren ist, einen neuen Account zu erstellen. +Bitte beachte, dass der Seitenadministrator die Registrierung neuer Accounts sperren oder an Bedingungen knüpfen kann. Wenn du einen zweiten Account in einem System erstellst und die gleiche Email-Adresse oder den gleichen OpenID-Account nutzt, kannst du dich zukünftig nur noch mit deinem Spitznamen anmelden. -Gehe im neuen Account auf die "Einstellungs"-Seite und dort am Ende der Seite auf "Erweiterte Konto-/Seitentyp-Einstellungen". Normalerweise nutzt du "Normales Konto" für einen normalen, persönlichen Account. Das ist die Standardeinstellung. Gr‬uppenseiten bieten die Möglichkeit, Leute als Freund/Fan ohne Kontaktbestätigung zuzulassen. +Gehe im neuen Account auf die "Einstellungs"-Seite und dort am Ende der Seite auf "Erweiterte Konto-/Seitentyp-Einstellungen". +Normalerweise nutzt du "Normales Konto" für einen normalen, persönlichen Account. +Das ist die Standardeinstellung. Gr‬uppenseiten bieten die Möglichkeit, Leute als Freund/Fan ohne Kontaktbestätigung zuzulassen. -Die Auswahl der Einstellung, die du wählst, hängt davon ab, wie du mit anderen Leuten auf deiner Seite interagieren willst. Die "Marktschreier"-Einstellung (Soapbox) lässt den Seitenbesitzer die gesamte Kommunikation kontrollieren. Alles was du schreibst, geht an alle Seitennutzer, aber es gibt keine Möglichkeit, zu interagieren. Diese Seite wird normalerweise für Ankündigungen oder die Kommunikation von Gemeinschaften genutzt. +Die Auswahl der Einstellung, die du wählst, hängt davon ab, wie du mit anderen Leuten auf deiner Seite interagieren willst. +Die "Marktschreier"-Einstellung (Soapbox) lässt den Seitenbesitzer die gesamte Kommunikation kontrollieren. +Alles was du schreibst, geht an alle Seitennutzer, aber es gibt keine Möglichkeit, zu interagieren. +Diese Seite wird normalerweise für Ankündigungen oder die Kommunikation von Gemeinschaften genutzt. -Die normalste Einstellung ist das "Forum-/Promi-Konto". Diese erstellt eine Gruppenseite, in der alle Mitglieder frei miteinander interagieren können. +Die normalste Einstellung ist das "Forum-/Promi-Konto". +Diese erstellt eine Gruppenseite, in der alle Mitglieder frei miteinander interagieren können. Der "Automatische Freunde Seite"-Account ist typischerweise für persönliche Profile, bei denen du alle Freundschaftsanfragen automatisch bestätigen willst. **Multiple Foren verwalten** -Wir schlagen vor, dass du ein Gruppenforum mit der gleichen Email-Adresse und dem gleichen Passwort wie bei deinem normalen Account nutzt. Wenn du das machst, findest du einen neuen "Verwalten"-Link im Hauptmenü, das dir hilft, einfach zwischen den Identitäten zu wechseln. Du musst das nicht machen, die Alternative ist allerdings, dich immer wieder aus- und wieder einzuloggen. Und das kann umständlich sein, wenn du mehrere verschiedene Foren/Identitäten verwaltest. +Wir schlagen vor, dass du ein Gruppenforum mit der gleichen Email-Adresse und dem gleichen Passwort wie bei deinem normalen Account nutzt. +Wenn du das machst, findest du einen neuen "Verwalten"-Link im Hauptmenü, das dir hilft, einfach zwischen den Identitäten zu wechseln. +Du musst das nicht machen, die Alternative ist allerdings, dich immer wieder aus- und wieder einzuloggen. +Und das kann umständlich sein, wenn du mehrere verschiedene Foren/Identitäten verwaltest. -Du kannst ebenso jemanden wählen, der dein Forum verwaltet. Mach das, indem du die [Delegierungs-Setup-Seite](delegate) besuchst. Dort wird dir eine Liste an "Potentiellen Bevollmächtigen" angezeigt. Die Auswahl einer oder mehrerer Personen gibt diesen die Möglichkeit, dein Forum zu verwalten. Sie können Kontakte, Profile und alle Inhalte deines Accounts/deiner Seite bearbeiten. Bitte nutze diese Einstellung mit Vorsicht. Delegierte haben jedoch keine Möglichkeit, grundlegende Account-Einstellungen wie das Passwort oder den Seitentypen zu ändern bzw. den Account zu löschen. +Du kannst ebenso jemanden wählen, der dein Forum verwaltet. +Mach das, indem du die [Delegierungs-Setup-Seite](delegate) besuchst. +Dort wird dir eine Liste an "Potentiellen Bevollmächtigen" angezeigt. +Die Auswahl einer oder mehrerer Personen gibt diesen die Möglichkeit, dein Forum zu verwalten. +Sie können Kontakte, Profile und alle Inhalte deines Accounts/deiner Seite bearbeiten. +Bitte nutze diese Einstellung mit Vorsicht. +Delegierte haben jedoch keine Möglichkeit, grundlegende Account-Einstellungen wie das Passwort oder den Seitentypen zu ändern bzw. den Account zu löschen. **Beiträge auf Community-Foren** -Wenn du Mitglied eines Community-Forums bist, kannst du das Forum in einem Beitrag hinzufügen/erwähnen, wenn du den @-Tag nutzt. Zum Beispiel würde @Fahrrad deinen Beitrag neben den sonst ausgewählten Nutzern an alle Nutzer schicken, die in der Gruppe "Fahrrad" sind. Wenn dein Beitrag privat ist, musst du diese Gruppe explizit in den Zugriffsrechten des Beitrags auswählen **und** sie mit dem @-Tag erwähnen (was den Beitrag auf die Gruppenmitglieder erweitert). +Wenn du Mitglied eines Community-Forums bist, kannst du das Forum in einem Beitrag hinzufügen/erwähnen, wenn du den @-Tag nutzt. +Zum Beispiel würde @Fahrrad deinen Beitrag neben den sonst ausgewählten Nutzern an alle Nutzer schicken, die in der Gruppe "Fahrrad" sind. +Wenn dein Beitrag privat ist, musst du diese Gruppe explizit in den Zugriffsrechten des Beitrags auswählen **und** sie mit dem @-Tag erwähnen (was den Beitrag auf die Gruppenmitglieder erweitert). Du kannst außerdem via "Wall zu Wall" einen Beitrag auf der Community-Seite bzw. in dem Community-Forum erstellen. -Kommentare, die du an ein Community-Forum schickst, werden an den Originalbeitrag weitergeleitet. Das Forum mit dem @-Tag zu erwähnen, leitet den Beitrag nicht weiter, da die Verteilung des Beitrages komplett vom Original-Beitragsschreiber kontrolliert wird. +Kommentare, die du an ein Community-Forum schickst, werden an den Originalbeitrag weitergeleitet. +Das Forum mit dem @-Tag zu erwähnen, leitet den Beitrag nicht weiter, da die Verteilung des Beitrages komplett vom Original-Beitragsschreiber kontrolliert wird. diff --git a/doc/de/Groups-and-Privacy.md b/doc/de/Groups-and-Privacy.md index 90487e8983..abb6500360 100644 --- a/doc/de/Groups-and-Privacy.md +++ b/doc/de/Groups-and-Privacy.md @@ -3,66 +3,110 @@ Gruppen und Privatsphäre * [Zur Startseite der Hilfe](help) -Gruppen sind nur eine Ansammlung von Freunden. Aber Friendica nutzt diese, um sehr mächtige Features zur Verfügung zu stellen. +Gruppen sind nur eine Ansammlung von Freunden. +Aber Friendica nutzt diese, um sehr mächtige Features zur Verfügung zu stellen. **Gruppen erstellen** -Um eine Gruppe zu erstellen, besuche deine "Kontakte"-Seite und wähle "Neue Gruppe erstellen" (je nach Design nur als Pluszeichen angezeigt). Gib deiner Gruppe einen Namen. +Um eine Gruppe zu erstellen, besuche deine "Kontakte"-Seite und wähle "Neue Gruppe erstellen" (je nach Design nur als Pluszeichen angezeigt). +Gib deiner Gruppe einen Namen. Das führt dich zu einer Seite, auf der du die Gruppenmitglieder auswählen kannst. -Du hast zwei Boxen auf der Seite. Die obere Box ist die Übersicht der aktuellen Mitglieder. Die untere beinhaltet alle Freunde, die *nicht* Mitglied dieser Gruppe sind. +Du hast zwei Boxen auf der Seite. +Die obere Box ist die Übersicht der aktuellen Mitglieder. +Die untere beinhaltet alle Freunde, die *nicht* Mitglied dieser Gruppe sind. -Wenn du auf das Foto einer Person klickst, die nicht in der Gruppe ist, wird diese in die Gruppe verschoben. Wenn du auf das Foto einer Person klickst, die bereits in der Gruppe ist, dann wird diese Person daraus entfernt. +Wenn du auf das Foto einer Person klickst, die nicht in der Gruppe ist, wird diese in die Gruppe verschoben. +Wenn du auf das Foto einer Person klickst, die bereits in der Gruppe ist, dann wird diese Person daraus entfernt. **Zugriffskontrolle** -Sobald du eine Gruppe erstellt hast, kannst du diese auf jeder Zugriffsrechteliste nutzen. Damit ist das kleine Schloss neben deinem Statuseditor auf deiner Startseite gemeint. Wenn du darauf klickst, kannst du auswählen, wer deinen Beitrag sehen kann und wer *nicht*. Dabei kann es sich um eine einzelne Person oder eine ganze Gruppe handeln. +Sobald du eine Gruppe erstellt hast, kannst du diese auf jeder Zugriffsrechteliste nutzen. +Damit ist das kleine Schloss neben deinem Statuseditor auf deiner Startseite gemeint. +Wenn du darauf klickst, kannst du auswählen, wer deinen Beitrag sehen kann und wer *nicht*. +Dabei kann es sich um eine einzelne Person oder eine ganze Gruppe handeln. -Auf deiner "Netzwerk"-Seite ("Unterhaltungen deiner Kontakte") findest du Beiträge und Gespräche aller deiner Kontakte in deinem Netzwerk. Du kannst aber auch eine einzelne Gruppe auswählen und nur Beiträge dieser Gruppenmitglieder anzeigen lassen. +Auf deiner "Netzwerk"-Seite ("Unterhaltungen deiner Kontakte") findest du Beiträge und Gespräche aller deiner Kontakte in deinem Netzwerk. +Du kannst aber auch eine einzelne Gruppe auswählen und nur Beiträge dieser Gruppenmitglieder anzeigen lassen. Aber stopp, es gibt noch mehr... -Wenn du auf deiner "Netzwerk"-Seite eine bestimmte Gruppe ausgewählt hast, dann findest du im Statuseditor neben dem Schloss ein Ausrufezeichen. Dies dient dazu, deine Aufmerksamkeit auf das Schloss zu richten. Klicke auf das Schloss. Dort siehst du, dass dein Status-Update in dieser Ansicht standardmäßig nur für diese Gruppe freigegeben ist. Das hilft dir, deinen zukünftigen Mitarbeitern nicht das Gleiche zu schreiben wie deinen Trinkfreunden. Du kannst diese Einstellung natürlich auch überschreiben. +Wenn du auf deiner "Netzwerk"-Seite eine bestimmte Gruppe ausgewählt hast, dann findest du im Statuseditor neben dem Schloss ein Ausrufezeichen. +Dies dient dazu, deine Aufmerksamkeit auf das Schloss zu richten. +Klicke auf das Schloss. +Dort siehst du, dass dein Status-Update in dieser Ansicht standardmäßig nur für diese Gruppe freigegeben ist. +Das hilft dir, deinen zukünftigen Mitarbeitern nicht das Gleiche zu schreiben wie deinen Trinkfreunden. +Du kannst diese Einstellung natürlich auch überschreiben. **Standardmäßige Zugriffsrechte von Beiträgen** -Standardmäßig geht Friendica davon aus, dass alle deine Beiträge privat sein sollen. Aus diesem Grund erstellt Friendica nach der Anmeldung eine Gruppe, in die automatisch alle deine Kontakte hinzugefügt werden. Alle deine Beiträge sind nur auf diese Gruppe beschränkt. +Standardmäßig geht Friendica davon aus, dass alle deine Beiträge privat sein sollen. +Aus diesem Grund erstellt Friendica nach der Anmeldung eine Gruppe, in die automatisch alle deine Kontakte hinzugefügt werden. +Alle deine Beiträge sind nur auf diese Gruppe beschränkt. Beachte, dass diese Einstellung von deinem Seiten-Administrator überschrieben werden kann, was bedeutet, dass alle deine Beiträge standardmäßig "öffentlich" sind (bspw. für das gesamte Internet). -Wenn du deine Beiträge standardmäßig "öffentlich" haben willst, dann kannst du deine Standardzugriffsrechte auf deiner Einstellungseite ändern. Dort kannst du außerdem festlegen, welchen Gruppen standardmäßig deine Beiträge erhalten oder in welche Gruppe deine neuen Kontakte standardmäßig eingeordnet werden. +Wenn du deine Beiträge standardmäßig "öffentlich" haben willst, dann kannst du deine Standardzugriffsrechte auf deiner Einstellungseite ändern. +Dort kannst du außerdem festlegen, welchen Gruppen standardmäßig deine Beiträge erhalten oder in welche Gruppe deine neuen Kontakte standardmäßig eingeordnet werden. **Fragen der Privatssphäre, die zu beachten sind** -Diese privaten Gespräche funktionieren am besten, wenn deine Freunde Friendica-Mitglieder sind. So wissen wir, wer sonst noch deine Gespräche sehen kann - niemand, *solange* deine Freunde deine Nachrichten nicht kopieren und an andere verschicken. +Diese privaten Gespräche funktionieren am besten, wenn deine Freunde Friendica-Mitglieder sind. +So wissen wir, wer sonst noch deine Gespräche sehen kann - niemand, *solange* deine Freunde deine Nachrichten nicht kopieren und an andere verschicken. -Dies ist eine Vertrauensfrage, die du beachten musst. Keine Software der Welt kann deine Freunde davon abhalten, die privaten Unterhaltungen zu veröffentlichen. Nur eine gute Auswahl deiner Freunde. +Dies ist eine Vertrauensfrage, die du beachten musst. +Keine Software der Welt kann deine Freunde davon abhalten, die privaten Unterhaltungen zu veröffentlichen. +Nur eine gute Auswahl deiner Freunde. -Bei status.net, identi.ca und anderen Netzwerk-Anbietern ist es nicht so gesichert. Du musst **sehr** vorsichtig sein, wenn du Mitglieder anderer Netzwerke in einer deiner Gruppen hast, da es möglich ist, dass deine privaten Nachrichten in einem öffentlichen Stream enden. Wenn du auf die "Kontakt bearbeiten"-Seite einer Person gehst, zeigen wir dir, ob sie Mitglied eines unsicheren Netzwerks ist oder nicht. +Bei status.net, identi.ca und anderen Netzwerk-Anbietern ist es nicht so gesichert. +Du musst **sehr** vorsichtig sein, wenn du Mitglieder anderer Netzwerke in einer deiner Gruppen hast, da es möglich ist, dass deine privaten Nachrichten in einem öffentlichen Stream enden. +Wenn du auf die "Kontakt bearbeiten"-Seite einer Person gehst, zeigen wir dir, ob sie Mitglied eines unsicheren Netzwerks ist oder nicht. -Sobald du einen Post erstellt hast, kannst du die Zugriffsrechte nicht mehr ändern. Innerhalb von Sekunden ist dieser an viele verschiedene Personen verschickt worden - möglicherweise bereits an alle Addressierten. Wenn du versehentlich eine Nachricht erstellt hast und sie zurücknehmen willst, dann ist es das beste, diese zu löschen. Wir senden eine Löschmitteilung an jeden, der deine Nachricht erhalten hat - und das sollte die Nachricht genauso schnell löschen, wie sie zunächst erstellt wurde. In vielen Fällen wird sie in weniger als einer Minute aus dem Internet gelöscht. Nochmals: das gilt für Friendica-Netzwerke. Sobald eine Nachricht an ein anderes Netzwerk geschickt wurde, kann es nicht mehr so schnell gelöscht werden und in manchen Fällen auch gar nicht mehr. +Sobald du einen Post erstellt hast, kannst du die Zugriffsrechte nicht mehr ändern. +Innerhalb von Sekunden ist dieser an viele verschiedene Personen verschickt worden - möglicherweise bereits an alle Addressierten. +Wenn du versehentlich eine Nachricht erstellt hast und sie zurücknehmen willst, dann ist es das beste, diese zu löschen. +Wir senden eine Löschmitteilung an jeden, der deine Nachricht erhalten hat - und das sollte die Nachricht genauso schnell löschen, wie sie zunächst erstellt wurde. +In vielen Fällen wird sie in weniger als einer Minute aus dem Internet gelöscht. +Nochmals: das gilt für Friendica-Netzwerke. +Sobald eine Nachricht an ein anderes Netzwerk geschickt wurde, kann es nicht mehr so schnell gelöscht werden und in manchen Fällen auch gar nicht mehr. -Wenn du das bisher noch nicht wusstest, dann empfehlen wir dir, deine Freunde dazu zu ermutigen, auch Friendica zu nutzen, da alle diese Privatsphären-Einstellungen innerhalb eines privatsphärenbewussten Netzwerk viel besser funktionieren. Viele andere Netzwerke, mit denen sich Friendica verbinden kann, bieten keine Kontrolle über die Privatsphäre. +Wenn du das bisher noch nicht wusstest, dann empfehlen wir dir, deine Freunde dazu zu ermutigen, auch Friendica zu nutzen, da alle diese Privatsphären-Einstellungen innerhalb eines privatsphärenbewussten Netzwerk viel besser funktionieren. +Viele andere Netzwerke, mit denen sich Friendica verbinden kann, bieten keine Kontrolle über die Privatsphäre. Profile, Fotos und die Privatsphäre ============================= -Die dezentralisierte Natur von Friendica (statt eine Webseite zu haben, die alles kontrolliert, gibt es viele Webseiten, die Information austauschen) hat in der Kommunikation mit anderen Seiten einige Konsequenzen. Du solltest dir über einige Dinge bewusst sein, um am besten entscheiden zu können, wie du mit deiner Privatsphäre umgehst. +Die dezentralisierte Natur von Friendica (statt eine Webseite zu haben, die alles kontrolliert, gibt es viele Webseiten, die Information austauschen) hat in der Kommunikation mit anderen Seiten einige Konsequenzen. +Du solltest dir über einige Dinge bewusst sein, um am besten entscheiden zu können, wie du mit deiner Privatsphäre umgehst. **Fotos** -Fotos privat zu verteilen ist ein Problem. Wir können Fotos nur mit Friendica-Nutzern __privat__ austauschen. Um mit anderen Leuten Fotos zu teilen, müssen wir erkennen, wer sie sind. Wir können die Identität von Friendica-Nutzern prüfen, da es hierfür einen Mechanismus gibt. Deine Freunde anderer Netzwerke werden deine privaten Fotos nicht sehen können, da wir deren Identität nicht überprüfen können. +Fotos privat zu verteilen ist ein Problem. +Wir können Fotos nur mit Friendica-Nutzern __privat__ austauschen. +Um mit anderen Leuten Fotos zu teilen, müssen wir erkennen, wer sie sind. +Wir können die Identität von Friendica-Nutzern prüfen, da es hierfür einen Mechanismus gibt. +Deine Freunde anderer Netzwerke werden deine privaten Fotos nicht sehen können, da wir deren Identität nicht überprüfen können. -Unsere Entwickler arbeiten an einer Lösung, um deinen Freunden den Zugriff zu ermöglichen - unabhängig, zu welchem Netzwerk sie gehören. Wir nehmen hingegen Privatsphäre ernst und agieren nicht wie andere Netzwerke, die __nur so tun__ als ob deine Fotos privat sind, sie aber trotzdem anderen ohne Identitätsprüfung zeigen. +Unsere Entwickler arbeiten an einer Lösung, um deinen Freunden den Zugriff zu ermöglichen - unabhängig, zu welchem Netzwerk sie gehören. +Wir nehmen hingegen Privatsphäre ernst und agieren nicht wie andere Netzwerke, die __nur so tun__ als ob deine Fotos privat sind, sie aber trotzdem anderen ohne Identitätsprüfung zeigen. **Profile** -Dein Profil und deine "Wall" sollen vielleicht auch von Freunden anderer Netzwerke besucht werden können. Wenn du diese Seiten allerdings für Webbesucher sperrst, die Friendica nicht kennt, kann das auch Freunde anderer Netzwerke blockieren. +Dein Profil und deine "Wall" sollen vielleicht auch von Freunden anderer Netzwerke besucht werden können. +Wenn du diese Seiten allerdings für Webbesucher sperrst, die Friendica nicht kennt, kann das auch Freunde anderer Netzwerke blockieren. -Das kann möglicherweise ungewollte Ergebnisse produzieren, wenn du lange Statusbeiträge z.B. für Twitter oder Facebook schreibst. Wenn Friendica einen Beitrag an diese Netzwerke schickt und nur eine bestimmte Nachrichtenlänge erlaubt ist, dann verkürzen wir diesen und erstellen einen Link, der zum Originalbeitrag führt. Der Originallink führt zurück zu deinem Friendica-Profil. Da Friendica nicht bestätigen kann, um wen es sich handelt, kann es passieren, dass diese Leute den Beitrag nicht komplett lesen können. +Das kann möglicherweise ungewollte Ergebnisse produzieren, wenn du lange Statusbeiträge z.B. für Twitter oder Facebook schreibst. +Wenn Friendica einen Beitrag an diese Netzwerke schickt und nur eine bestimmte Nachrichtenlänge erlaubt ist, dann verkürzen wir diesen und erstellen einen Link, der zum Originalbeitrag führt. +Der Originallink führt zurück zu deinem Friendica-Profil. +Da Friendica nicht bestätigen kann, um wen es sich handelt, kann es passieren, dass diese Leute den Beitrag nicht komplett lesen können. Für Leute, die davon betroffen sind, schlagen wir vor, eine Zusammenfassung in Twitter-Länge zu erstellen mit mehr Details für Freunde, die den ganzen Beitrag sehen können. -Dein Profil oder deine gesamte Friendica-Seite zu blockieren, hat außerdem ernsthafte Einflüsse auf deine Kommunikation mit StatusNet/identi.ca-Nutzern. Diese Netzwerke kommunizieren mit anderen über öffentliche Protokolle, die nicht authentifiziert werden. Um deine Beiträge zu sehen, müssen diese Netzwerke deine Beiträge als "unbekannte Webbesucher" ansehen. Wenn wir das erlauben, würde es dazu führen, das absolut jeder deine Beiträge sehen. Und du hast Friendica so eingestellt, das nicht zuzulassen. Beachte also, dass das Blockieren von unbekannten Besuchern auch dazu führen kann, dass öffentliche Netzwerke (wie identi.ca) und Newsfeed-Reader wie Google Reader auch geblockt werden. +Dein Profil oder deine gesamte Friendica-Seite zu blockieren, hat außerdem ernsthafte Einflüsse auf deine Kommunikation mit StatusNet/identi.ca-Nutzern. +Diese Netzwerke kommunizieren mit anderen über öffentliche Protokolle, die nicht authentifiziert werden. +Um deine Beiträge zu sehen, müssen diese Netzwerke deine Beiträge als "unbekannte Webbesucher" ansehen. +Wenn wir das erlauben, würde es dazu führen, das absolut jeder deine Beiträge sehen. +Und du hast Friendica so eingestellt, das nicht zuzulassen. +Beachte also, dass das Blockieren von unbekannten Besuchern auch dazu führen kann, dass öffentliche Netzwerke (wie identi.ca) und Newsfeed-Reader wie Google Reader auch geblockt werden. diff --git a/doc/de/Improve-Performance.md b/doc/de/Improve-Performance.md index 346c76fc3e..cc19dbf13b 100644 --- a/doc/de/Improve-Performance.md +++ b/doc/de/Improve-Performance.md @@ -16,17 +16,21 @@ Geh auf /admin/site in deinem System und ändere die folgenden Werte: setze "Qualität des JPEG Bildes" auf 50. -Dieser Wert reduziert die Daten, die vom Server an den Client geschickt werden. 50 ist ein Wert, der die Bildqualität nicht zu stark beeinflusst. +Dieser Wert reduziert die Daten, die vom Server an den Client geschickt werden. +50 ist ein Wert, der die Bildqualität nicht zu stark beeinflusst. setze "Intervall zum Vervollständigen von OStatus Unterhaltungen" auf "niemals" -Wenn du viele OStatus-Kontakte hast, dann kann die Vervollständigung von Unterhaltungen sehr zeitraubend sein. Der Nachteil: Du siehst nicht jede Antwort einer OStatus-Unterhaltung. +Wenn du viele OStatus-Kontakte hast, dann kann die Vervollständigung von Unterhaltungen sehr zeitraubend sein. +Der Nachteil: Du siehst nicht jede Antwort einer OStatus-Unterhaltung. setze "Pfad für die Sperrdatei" auf einen Ordner außerhalb deines Stammverzeichnisses deines Servers. Sperrdateien sorgen dafür, dass Hintergrundprozesse nicht parallel ablaufen. -Als Beispiel: Es kann passieren, dass die poller.php länger als erwartet läuft. Ohne Sperrdatei kann es passieren, dass mehrere Instanzen der poller.php zur gleichen Zeit laufen. Dies würde das System verlangsamen und Einfluss auf die maximale Anzahl an Prozessen und Datenbankverbindungen nehmen. +Als Beispiel: Es kann passieren, dass die poller.php länger als erwartet läuft. +Ohne Sperrdatei kann es passieren, dass mehrere Instanzen der poller.php zur gleichen Zeit laufen. +Dies würde das System verlangsamen und Einfluss auf die maximale Anzahl an Prozessen und Datenbankverbindungen nehmen. Bitte definiere einen kompletten Pfad, auf den der Server einen Schreibzugriff hat. Wenn deine Seite unter "/var/www/namederseite/htdocs/" liegt, dann kannst du z.B. einen Ordner unter "/var/www/sitename/temp/" erstellen. @@ -36,13 +40,15 @@ Wenn du MyISAM (Standardeinstellung) nutzt, dann beschleunigt dies die Suche. setze "Pfad zum Eintrag Cache" auf einen leeren Ordner außerhalb deines Stammverzeichnisses. -Verarbeiteter BBCode und einige externe Bilder werden hier gespeichert. BBCode verarbeiten ist ein zeitintensiver Prozess, der zudem eine hohe CPU-Leistung erfordert. +Verarbeiteter BBCode und einige externe Bilder werden hier gespeichert. +BBCode verarbeiten ist ein zeitintensiver Prozess, der zudem eine hohe CPU-Leistung erfordert. Du kannst den gleichen Ordner nutzen, den du für die Sperrdatei genutzt hast. **Warnung!** -Der Ordner für den Eintrag-Cache wird regelmäßig geleert. Jede Datei, die die Cache-Dauer überschreitet, wird gelöscht. **Wenn du versehentlich den Cache-Pfad auf dein Stammverzeichnis legst, dann würde dir dies das gesamte Stammverzeichnis löschen.** +Der Ordner für den Eintrag-Cache wird regelmäßig geleert. +Jede Datei, die die Cache-Dauer überschreitet, wird gelöscht. **Wenn du versehentlich den Cache-Pfad auf dein Stammverzeichnis legst, dann würde dir dies das gesamte Stammverzeichnis löschen.** Prüfe also doppelt, dass der gewählte Ordner nur temporäre Dateien enthält, die jederzeit gelöscht werden können. @@ -59,7 +65,8 @@ Aktiviere die folgenden Plugins: **Beschreibung** -Dieses Plugin reduziert die Ladezeit der Datenbank massiv. Nachteil: Du kannst nicht mehr die Anzahl aller Seiten sehen. +Dieses Plugin reduziert die Ladezeit der Datenbank massiv. +Nachteil: Du kannst nicht mehr die Anzahl aller Seiten sehen. **Einrichtung** @@ -119,14 +126,17 @@ Weitere Informationen findest du hier: http://httpd.apache.org/docs/2.2/mod/mod_ **FCGI** -Wenn du Apache nutzt, dann denk darüber nach, FCGI zu nutzen. Wenn du eine Debian-basierte Distribution nutzt, dann wirst du die Pakete "php5-cgi" und "libapache2-mod-fcgid" benötigen. +Wenn du Apache nutzt, dann denk darüber nach, FCGI zu nutzen. +Wenn du eine Debian-basierte Distribution nutzt, dann wirst du die Pakete "php5-cgi" und "libapache2-mod-fcgid" benötigen. Nutze externe Dokumente, um eine detailiertere Erklärung für die Einrichtung eines Systems auf FCGI-Basis zu erhalten. **APC** -APC ist ein Zwischenspeicher für die Verarbeitung des Befehlscodes. Es beschleunigt die Verarbeitung des PHP-Codes. +APC ist ein Zwischenspeicher für die Verarbeitung des Befehlscodes. +Es beschleunigt die Verarbeitung des PHP-Codes. -Wenn APC aktiviert ist, dann nutzt Friendica dies, um Konfigurationseinstellungen für verschiedene Anfragen zwischenzuspeichern. Dies beschleunigt die Reaktionszeit der Seite. +Wenn APC aktiviert ist, dann nutzt Friendica dies, um Konfigurationseinstellungen für verschiedene Anfragen zwischenzuspeichern. +Dies beschleunigt die Reaktionszeit der Seite. ###Database diff --git a/doc/de/Install.md b/doc/de/Install.md index 8edebc5c46..36692bd2c8 100644 --- a/doc/de/Install.md +++ b/doc/de/Install.md @@ -3,11 +3,21 @@ Friendica Installation * [Zur Startseite der Hilfe](help) -Wir haben hart daran gearbeitet, um Friendica auf vorgefertigten Hosting-Plattformen zum Laufen zu bringen - solche, auf denen auch Wordpress Blogs und Drupal-Installationen laufen. Aber bedenke, dass Friendica mehr als eine einfache Webanwendung ist. Es handelt sich um ein komplexes Kommunikationssystem, das eher an einen Email-Server erinnert als an einen Webserver. Um die Verfügbarkeit und Performance zu gewährleisten, werden Nachrichten im Hintergrund verschickt und gespeichert, um sie später zu verschicken, wenn eine Webseite gerade nicht erreichbar ist. Diese Funktionalität benötigt ein wenig mehr als die normalen Blogs. Nicht jeder PHP/MySQL-Hosting-Anbieter kann Friendica unterstützen. Viele hingegen können es. Aber **bitte** prüfe die Voraussetzungen deines Servers vor der Installation. +Wir haben hart daran gearbeitet, um Friendica auf vorgefertigten Hosting-Plattformen zum Laufen zu bringen - solche, auf denen auch Wordpress Blogs und Drupal-Installationen laufen. +Aber bedenke, dass Friendica mehr als eine einfache Webanwendung ist. +Es handelt sich um ein komplexes Kommunikationssystem, das eher an einen Email-Server erinnert als an einen Webserver. +Um die Verfügbarkeit und Performance zu gewährleisten, werden Nachrichten im Hintergrund verschickt und gespeichert, um sie später zu verschicken, wenn eine Webseite gerade nicht erreichbar ist. +Diese Funktionalität benötigt ein wenig mehr als die normalen Blogs. +Nicht jeder PHP/MySQL-Hosting-Anbieter kann Friendica unterstützen. +Viele hingegen können es. Aber **bitte** prüfe die Voraussetzungen deines Servers vor der Installation. -Wenn dir Fehler während der Installation auffallen, sag uns bitte über das Forum auf http://groups.google.com/group/friendica oder über http://bugs.friendica.com Bescheid. Gib uns bitte so viele Infos zu deinem System, wie du kannst, und beschreibe den Fehler mit allen Details und Fehlermeldungen, so dass wir den Fehler zukünftig verhindern können. Aufgrund der großen Anzahl an verschiedenen Betriebssystemen und PHP-Plattformen haben wir nur geringe Kapazitäten, um deine PHP-Installation zu debuggen oder fehlende Module zu ersetzen, aber wir tun unser Bestes, um allgemeine Code-Fehler zu beheben. +Wenn dir Fehler während der Installation auffallen, sag uns bitte über http://bugs.friendica.com Bescheid. +Gib uns bitte so viele Infos zu deinem System, wie du kannst, und beschreibe den Fehler mit allen Details und Fehlermeldungen, so dass wir den Fehler zukünftig verhindern können. +Aufgrund der großen Anzahl an verschiedenen Betriebssystemen und PHP-Plattformen haben wir nur geringe Kapazitäten, um deine PHP-Installation zu debuggen oder fehlende Module zu ersetzen, aber wir tun unser Bestes, um allgemeine Code-Fehler zu beheben. -Bevor du anfängst: suche dir einen Domain- oder Subdomainnamen für deinen Server. Denke ausreichend darüber nach, da ein Wechsel nach der Friendica-Installation derzeit nicht unterstützt wird. Dinge verändern sich und einige deiner Freunde haben möglicherweise Probleme, mit dir zu kommunizieren. Wir planen, diese Einschränkung in einer zukünftigen Version zu beheben. +Bevor du anfängst: suche dir einen Domain- oder Subdomainnamen für deinen Server. +Dinge verändern sich und einige deiner Freunde haben möglicherweise Probleme, mit dir zu kommunizieren. +Wir planen, diese Einschränkung in einer zukünftigen Version zu beheben. 1. Voraussetzungen @@ -81,13 +91,18 @@ Wenn du einen Linux-Server nutzt, benutze den Befehl "crontab -e" und ergänze e `*/10 * * * * cd /home/myname/mywebsite; /usr/bin/php include/poller.php` -Du kannst den PHP-Pfad finden, indem du den Befehl „which php“ ausführst. Wenn du Schwierigkeiten mit diesem Schritt hast, kannst du deinen Hosting-Anbieter kontaktieren. Friendica wird nicht korrekt laufen, wenn dieser Schritt nicht erfolgreich abgeschlossen werden kann. +Du kannst den PHP-Pfad finden, indem du den Befehl „which php“ ausführst. +Wenn du Schwierigkeiten mit diesem Schritt hast, kannst du deinen Hosting-Anbieter kontaktieren. +Friendica wird nicht korrekt laufen, wenn dieser Schritt nicht erfolgreich abgeschlossen werden kann. -Alternativ kannst du das Plugin 'poormancron' nutzen, um diesen Schritt durchzuführen, wenn du eine aktuelle Friendica-Version nutzt. Um dies zu machen, musst du die ".htconfig.php" an der Stelle anpassen, die dein Plugin beschreibt. In einer frischen Installation sieht es aus wie: +Alternativ kannst du das Plugin 'poormancron' nutzen, um diesen Schritt durchzuführen, wenn du eine aktuelle Friendica-Version nutzt. +Um dies zu machen, musst du die ".htconfig.php" an der Stelle anpassen, die dein Plugin beschreibt. +In einer frischen Installation sieht es aus wie: `$a->config['system']['addon'] = 'js_upload';` -Dies setzt voraus, dass das Addon-Modul "js_upload" aktiviert ist. Du kannst auch weitere Addons/Plugins ergänzen. Ändere den Eintrag folgendermaßen ab: +Dies setzt voraus, dass das Addon-Modul "js_upload" aktiviert ist. +Du kannst auch weitere Addons/Plugins ergänzen. Ändere den Eintrag folgendermaßen ab: `$a->config['system']['addon'] = 'js_upload,poormancron';` diff --git a/doc/de/Installing-Connectors.md b/doc/de/Installing-Connectors.md index 80739ace7d..f457ee51c4 100644 --- a/doc/de/Installing-Connectors.md +++ b/doc/de/Installing-Connectors.md @@ -5,16 +5,22 @@ Konnektoren installieren (Facebook/Twitter/StatusNet) Friendica nutzt Plugins, um die Verbindung zu anderen Netzwerken wie Facebook und Twitter zu gewährleisten. -Es gibt außerdem ein Plugin, um über einen bestehenden Status.Net-Account diesen Service zu nutzen. Du brauchst dieses Plugin aber nicht, um mit Status.Net-Mitgliedern von Friendica aus zu kommunizieren - es sei denn, du wünschst es, über einen existierenden Account einen Beitrag zu schreiben. +Es gibt außerdem ein Plugin, um über einen bestehenden Status.Net-Account diesen Service zu nutzen. +Du brauchst dieses Plugin aber nicht, um mit Status.Net-Mitgliedern von Friendica aus zu kommunizieren - es sei denn, du wünschst es, über einen existierenden Account einen Beitrag zu schreiben. -Alle drei Plugins benötigen einen Account im gewünschten Netzwerk. Zusätzlich musst du (bzw. der Administrator der Seite) einen API-Schlüssel holen, um einen authentifizierten Zugriff zu deinem Friendica-Server herstellen zu lassen. +Alle drei Plugins benötigen einen Account im gewünschten Netzwerk. +Zusätzlich musst du (bzw. der Administrator der Seite) einen API-Schlüssel holen, um einen authentifizierten Zugriff zu deinem Friendica-Server herstellen zu lassen. **Seitenkonfiguration** -Plugins müssen vom Administrator installiert werden, bevor sie genutzt werden können. Dieses kann über das Administrationsmenü erstellt werden. +Plugins müssen vom Administrator installiert werden, bevor sie genutzt werden können. +Dieses kann über das Administrationsmenü erstellt werden. -Jeder der Konnektoren benötigt zudem einen API-Schlüssel vom Service, der verbunden werden soll. Einige Plugins erlaube es, diese Informationen auf den Administrationsseiten einzustellen, wohingegen andere eine direkte Bearbeitung der Konfigurationsdatei ".htconfig.php" erfordern. Der Weg, um diese Schlüssel zu erhalten, variiert stark, jedoch brauchen fast alle einen bestehenden Account im gewünschten Service. Einmal installiert, können diese Schlüssel von allen Seitennutzern genutzt werden. +Jeder der Konnektoren benötigt zudem einen API-Schlüssel vom Service, der verbunden werden soll. +Einige Plugins erlaube es, diese Informationen auf den Administrationsseiten einzustellen, wohingegen andere eine direkte Bearbeitung der Konfigurationsdatei ".htconfig.php" erfordern. +Der Weg, um diese Schlüssel zu erhalten, variiert stark, jedoch brauchen fast alle einen bestehenden Account im gewünschten Service. +Einmal installiert, können diese Schlüssel von allen Seitennutzern genutzt werden. Im Folgenden findest du die Einstellungen für die verschiedenen Services (viele dieser Informationen kommen direkt aus den Quelldateien der Plugins): @@ -40,8 +46,6 @@ $a->config['twitter']['consumersecret'] = 'your consumer_secret here'; Anschließend kann der Nutzer deiner Seite die Twitter-Einstellungen selbst eintragen: "Einstellungen -> Connector Einstellungen". -Dokumentation: http://diekershoff.homeunix.net/redmine/wiki/friendikaplugin/Twitter_Plugin - **StatusNet Plugin für Friendica** @@ -72,12 +76,13 @@ Während der Registrierung des OAuth-Clients ist Folgendes zu beachten: * stelle Lese- und Schreibrechte ein * die Quell-URL sollte die URL deines Friendica-Servers sein -Sobald die benötigten Daten gespeichert sind, musst du deinen Friendica-Account mit StatusNet verbinden. Das kannst du über Einstellungen --> Connector-Einstellungen durchführen. Folge dem "Einloggen mit StatusNet"-Button, erlaube den Zugriff und kopiere den Sicherheitscode in die entsprechende Box. Friendica wird dann versuchen, die abschließende OAuth-Einstellungen über die API zu beziehen. +Sobald die benötigten Daten gespeichert sind, musst du deinen Friendica-Account mit StatusNet verbinden. +Das kannst du über Einstellungen --> Connector-Einstellungen durchführen. +Folge dem "Einloggen mit StatusNet"-Button, erlaube den Zugriff und kopiere den Sicherheitscode in die entsprechende Box. +Friendica wird dann versuchen, die abschließende OAuth-Einstellungen über die API zu beziehen. Wenn es geklappt hat, kannst du in den Einstellungen festlegen, ob deine öffentlichen Nachrichten automatisch in deinem StatusNet-Account erscheinen soll (achte hierbei auf das kleine Schloss-Symbol im Status-Editor) -Dokumentation: http://diekershoff.homeunix.net/redmine/wiki/friendikaplugin/StatusNet_Plugin - **Installiere den Friendica/Facebook-Konnektor** @@ -101,10 +106,14 @@ Auf Friendica kann nun jeder Nutzer, der eine Verbindung zu Facebook wünscht, d Wähle die gewünschten Einstellungen für deine Nutzungs- und Privatsphäreansprüche. -Hier meldest du dich bei Facebook an und gibst dem Plugin die nötigen Zugriffsrechte, um richtig zu funktionieren. Erlaube dieses. +Hier meldest du dich bei Facebook an und gibst dem Plugin die nötigen Zugriffsrechte, um richtig zu funktionieren. +Erlaube dieses. Und fertig. Um es abzustellen, gehe wieder auf die Einstellungsseite und auf "Remove Facebook posting". -Videos und eingebetteter Code werden nicht gepostet, wenn sonst kein anderer Inhalt enthalten ist. Links und Bilder werden in ein Format übertragen, das von der Facebook-API verstanden wird. Lange Texte werden verkürzt und mit einem Link zum Originalbeitrag versehen. +Videos und eingebetteter Code werden nicht gepostet, wenn sonst kein anderer Inhalt enthalten ist. +Links und Bilder werden in ein Format übertragen, das von der Facebook-API verstanden wird. +Lange Texte werden verkürzt und mit einem Link zum Originalbeitrag versehen. -Facebook-Kontakte können außerdem keine privaten Fotos sehen, da diese nicht richtig authentifiziert werden können, wenn sie deine Seite besuchen. Dieser Fehler wird zukünftig bearbeitet. +Facebook-Kontakte können außerdem keine privaten Fotos sehen, da diese nicht richtig authentifiziert werden können, wenn sie deine Seite besuchen. +Dieser Fehler wird zukünftig bearbeitet. diff --git a/doc/de/Making-Friends.md b/doc/de/Making-Friends.md index 74f1f62b37..0d7739068b 100644 --- a/doc/de/Making-Friends.md +++ b/doc/de/Making-Friends.md @@ -3,43 +3,78 @@ Freunde finden * [Zur Startseite der Hilfe](help) -Freundschaft kann in Friendica viele verschiedene Bedeutungen annehmen. Aber lasst es uns einfach halten, du willst einfach mit jemandem befreundet sein. Wie machst du das? +Freundschaft kann in Friendica viele verschiedene Bedeutungen annehmen. +Aber lasst es uns einfach halten, du willst einfach mit jemandem befreundet sein. +Wie machst du das? -Schau dir das Verzeichnis an. Das Verzeichnis ist in zwei Teile aufgeteilt. Wenn du auf den "Verzeichnis"-Button klickst, wirst du zunächst alle Mitglieder deines Servers sehen, die sich dazu entschlossen haben, angezeigt zu werden. Außerdem siehst du dort einen Link zum globalen Verzeichnis. Wenn du dich durch das globale Verzeichnis klickst, siehst du alle Nutzer weltweit auf allen Servern, die sich entschlossen haben, im Verzeichnis zu erscheinen. Du wirst außerdem den Link "Show Community Forums" sehen, welcher dich zu Gruppen, Foren und Fan-Seiten führt. Du verbindest dich mit Personen, Gruppen und Foren auf die gleiche Art, wobei Gruppen und Foren deine Anfrage automatisch annehmen, wohingegen ein Mensch dich erst manuell bestätigen muss. +Schau dir das Verzeichnis an. +Das Verzeichnis ist in zwei Teile aufgeteilt. +Wenn du auf den "Verzeichnis"-Button klickst, wirst du zunächst alle Mitglieder deines Servers sehen, die sich dazu entschlossen haben, angezeigt zu werden. +Außerdem siehst du dort einen Link zum globalen Verzeichnis. +Wenn du dich durch das globale Verzeichnis klickst, siehst du alle Nutzer weltweit auf allen Servern, die sich entschlossen haben, im Verzeichnis zu erscheinen. +Du wirst außerdem den Link "Show Community Forums" sehen, welcher dich zu Gruppen, Foren und Fan-Seiten führt. +Du verbindest dich mit Personen, Gruppen und Foren auf die gleiche Art, wobei Gruppen und Foren deine Anfrage automatisch annehmen, wohingegen ein Mensch dich erst manuell bestätigen muss. *Mit anderen Friendica-Nutzern verbinden* -Bes‪uche ihr Profil. Direkt unter dem Profilfoto ist das Wort "Verbinden" (bzw. "Connect" in einem englischsprachigem Profil). Klicke drauf und du gelangst zur "Verbinden"-Seite. Dort wirst du nach deiner Identitätsadresse gefragt. Das ist nötig, damit die Seite dein Profil finden kann. +Bes‪uche ihr Profil. +Direkt unter dem Profilfoto ist das Wort "Verbinden" (bzw. "Connect" in einem englischsprachigem Profil). +Klicke drauf und du gelangst zur "Verbinden"-Seite. +Dort wirst du nach deiner Identitätsadresse gefragt. +Das ist nötig, damit die Seite dein Profil finden kann. *Was kommt in die Box?* -Wenn deine Friendica-Seite "demo.friendica.com" heißt und dein Nutzername/Spitzname auf der Seite "bob" ist, dann wäre es "bob@demo.friendica.com". Wie du siehst, sieht es wie eine Email-Adresse aus. Das ist beabsichtigt, da sich die Leute das so leichter merken können. Du *kannst* auch die URL deiner Startseite eintragen, wie z.B. "http://demo.friendica.com/profile/bob", aber der Email-Adressen-Stil ist einfacher. +Wenn deine Friendica-Seite "demo.friendica.com" heißt und dein Nutzername/Spitzname auf der Seite "bob" ist, dann wäre es "bob@demo.friendica.com". +Wie du siehst, sieht es wie eine Email-Adresse aus. +Das ist beabsichtigt, da sich die Leute das so leichter merken können. +Du *kannst* auch die URL deiner Startseite eintragen, wie z.B. "http://demo.friendica.com/profile/bob", aber der Email-Adressen-Stil ist einfacher. -Wenn du die "Verbinden"-Seite bestätigt hast, kommst du zurück zu deiner Seite, um dort die Anfrage zu bestätigen. Wenn du das gemacht hast, können beide Seiten miteinander kommunizieren, um den Prozess abzuschließen (sobald dein neuer Freund die Anfrage bestätigt hat). +Wenn du die "Verbinden"-Seite bestätigt hast, kommst du zurück zu deiner Seite, um dort die Anfrage zu bestätigen. +Wenn du das gemacht hast, können beide Seiten miteinander kommunizieren, um den Prozess abzuschließen (sobald dein neuer Freund die Anfrage bestätigt hat). -Wenn du bereits die Identitäts-Adresse einer Person kennst, kannst du diese auch direkt in das "Verbinden"-Feld auf deiner "Kontakte"-Seite eintragen. Dies wird dich durch einen ähnlichen Prozess leiten. +Wenn du bereits die Identitäts-Adresse einer Person kennst, kannst du diese auch direkt in das "Verbinden"-Feld auf deiner "Kontakte"-Seite eintragen. +Dies wird dich durch einen ähnlichen Prozess leiten. **Alternative Netzwerke** -Du kannst deine oder andere Identitäts-Adressen ebenfalls nutzen, um über verschiedene Netzwerke hinweg Freundschaften aufzubauen. Die Liste möglicher Netzwerke steigt immer weiter. Wenn du z.B. "bob" auf identi.ca (eine Status.Net-Seite) kennst, dann kannst du bob@identi.ca auf deiner "Kontakt"-Seite verbinden. (Oder du kannst die URL von Bobs identi.ca-Seite eintragen, wenn du es wünscht). Du kannst auch "teilweise" mit Leuten auf Google Buzz befreundet sein, wenn du deren GMail-Adresse einträgst. Google Buzz unterstützt bisher noch nicht alle Protokolle, die wir für die direkte Kommunikation benötigen, aber es sollte möglich sein, Statusupdates von Friendica zu folgen. Das Gleiche gilt für Twitter- und Diaspora-Accounts. Tatsächlich kannst du jedem und jeder Website folgen, der/die einen Syndication-Feed (RSS/Atom etc.) zur Verfügung stellt. Wenn wir einen Informationsstrom und einen Namen dazu finden, können wir auch versuchen, uns damit zu verbinden. +Du kannst deine oder andere Identitäts-Adressen ebenfalls nutzen, um über verschiedene Netzwerke hinweg Freundschaften aufzubauen. +Die Liste möglicher Netzwerke steigt immer weiter. +Wenn du z.B. "bob" auf identi.ca (eine Status.Net-Seite) kennst, dann kannst du bob@identi.ca auf deiner "Kontakt"-Seite verbinden. (Oder du kannst die URL von Bobs identi.ca-Seite eintragen, wenn du es wünscht). +Du kannst auch "teilweise" mit Leuten auf Google Buzz befreundet sein, wenn du deren GMail-Adresse einträgst. +Google Buzz unterstützt bisher noch nicht alle Protokolle, die wir für die direkte Kommunikation benötigen, aber es sollte möglich sein, Statusupdates von Friendica zu folgen. +Das Gleiche gilt für Twitter- und Diaspora-Accounts. +Tatsächlich kannst du jedem und jeder Website folgen, der/die einen Syndication-Feed (RSS/Atom etc.) zur Verfügung stellt. +Wenn wir einen Informationsstrom und einen Namen dazu finden, können wir auch versuchen, uns damit zu verbinden. -Wenn du deine Email-Postfachverbindung auf deiner Einstellungsseite konfiguriert hast, dann kannst du die Email-Adresse jeder Person eintragen, die dir schon eine Nachricht an dein Postfach geschickt hat und bereits in deinem sozialen Stream erscheint. Du kannst diesen Personen außerdem von Friendica aus antworten. +Wenn du deine Email-Postfachverbindung auf deiner Einstellungsseite konfiguriert hast, dann kannst du die Email-Adresse jeder Person eintragen, die dir schon eine Nachricht an dein Postfach geschickt hat und bereits in deinem sozialen Stream erscheint. +Du kannst diesen Personen außerdem von Friendica aus antworten. -Leute können sich ebenfalls von anderen Netzwerken aus mit dir befreunden. Ein Freund von dir hat einen identi.ca-Account und kann sich mit dir befreunden, indem er deine Identitäts-Adresse in seine identi.ca-Verbinden-Dialogbox einträgt. Ein ähnlicher Mechanismus ist für Diaspora-Nutzer vorhanden, indem deine Identitäts-Adresse in ihre Suchleiste eingegeben wird. +Leute können sich ebenfalls von anderen Netzwerken aus mit dir befreunden. +Ein Freund von dir hat einen identi.ca-Account und kann sich mit dir befreunden, indem er deine Identitäts-Adresse in seine identi.ca-Verbinden-Dialogbox einträgt. +Ein ähnlicher Mechanismus ist für Diaspora-Nutzer vorhanden, indem deine Identitäts-Adresse in ihre Suchleiste eingegeben wird. Beachte: Manche StatusNet-Versionen benötigen die volle URL deines Profils und funktionieren möglicherweise nicht mit der Identitäts-Adresse. -Wenn jemand eine Freundschaftsanfrage schickt, erhältst du eine Benachrichtigung. Du musst dann diese Anfrage bestätigen, um die Freundschaftsanfrage abzuschließen. +Wenn jemand eine Freundschaftsanfrage schickt, erhältst du eine Benachrichtigung. +Du musst dann diese Anfrage bestätigen, um die Freundschaftsanfrage abzuschließen. -Einige Netzwerke erlauben es, Nachrichten zu schicken, ohne befreundet zu sein oder deine Bestätigung zu benötigen. Friendica erlaubt dies in der Standardeinstellung nicht, da es zu Spam führen kann. +Einige Netzwerke erlauben es, Nachrichten zu schicken, ohne befreundet zu sein oder deine Bestätigung zu benötigen. +Friendica erlaubt dies in der Standardeinstellung nicht, da es zu Spam führen kann. -Wenn du eine Freundschaftsanfrage von einem anderen Friendica-Nutzer erhältst, dann hast du die Möglichkeit, diesen als "Fan" oder "Freund" einzutragen. Ein Fan kann sehen, was du schreibst und auch private Kommunikation sehen, die du zu diesen sendest, aber nicht umgekehrt. Als Freund kannst du in beide Richtungen kommunizieren. +Wenn du eine Freundschaftsanfrage von einem anderen Friendica-Nutzer erhältst, dann hast du die Möglichkeit, diesen als "Fan" oder "Freund" einzutragen. +Ein Fan kann sehen, was du schreibst und auch private Kommunikation sehen, die du zu diesen sendest, aber nicht umgekehrt. +Als Freund kannst du in beide Richtungen kommunizieren. Diaspora nutzt eine andere Terminologie mit der Unterteilung in "mit dir teilen" und "Freund". -Sobald ihr Freunde geworden seid, dir die Person aber permanent Spam oder sinnlose Informationen schickt, dann kannst du diese "ignorieren" - ohne die Freundschaft komplett zu beenden oder denjenigen zu zeigen, dass du nicht daran interessiert bist, was diese Person sagt. In verschiedener Hinsicht sind diese Personen wie "Fans", aber sie wissen es nicht. Sie denken, sie sind als Freunde eingetragen. +Sobald ihr Freunde geworden seid, dir die Person aber permanent Spam oder sinnlose Informationen schickt, dann kannst du diese "ignorieren" - ohne die Freundschaft komplett zu beenden oder denjenigen zu zeigen, dass du nicht daran interessiert bist, was diese Person sagt. +In verschiedener Hinsicht sind diese Personen wie "Fans", aber sie wissen es nicht. +Sie denken, sie sind als Freunde eingetragen. -Du kannst auch eine Person "blocken". Das blockt die komplette Kommunikation mit dieser Person. Sie können zwar weiterhin öffentliche Beiträge sehen, wie auch jeder andere in der Welt, allerdings können sie nicht direkt mit dir kommunizieren. +Du kannst auch eine Person "blocken". +Das blockt die komplette Kommunikation mit dieser Person. +Sie können zwar weiterhin öffentliche Beiträge sehen, wie auch jeder andere in der Welt, allerdings können sie nicht direkt mit dir kommunizieren. Du kannst Freunde löschen, egal wie der Freundschaftsstatus ist, was dazu führt, dass alles, was mit dieser Person verbunden ist, von deiner Webseite gelöscht wird. diff --git a/doc/de/Message-Flow.md b/doc/de/Message-Flow.md index add6507ea4..0694db1344 100644 --- a/doc/de/Message-Flow.md +++ b/doc/de/Message-Flow.md @@ -3,13 +3,15 @@ Friendica Nachrichtenfluss * [Zur Startseite der Hilfe](help) -Diese Seite soll einige Infos darüber dokumentieren, wie Nachrichten innerhalb von Friendica von einer Person zur anderen übertragen werden. Es gibt verschiedene Pfade, die verschiedene Protokolle und Nachrichtenformate nutzen. +Diese Seite soll einige Infos darüber dokumentieren, wie Nachrichten innerhalb von Friendica von einer Person zur anderen übertragen werden. +Es gibt verschiedene Pfade, die verschiedene Protokolle und Nachrichtenformate nutzen. Diejenigen, die den Nachrichtenfluss genauer verstehen wollen, sollten sich mindestens mit dem DFRN-Protokoll (http://dfrn.org/dfrn.pdf) und den Elementen zur Nachrichtenverarbeitung des OStatus Stack informieren (salmon und Pubsubhubbub). Der Großteil der Nachrichtenverarbeitung nutzt die Datei include/items.php, welche Funktionen für verschiedene Feed-bezogene Import-/Exportaktivitäten liefert. -Wenn eine Nachricht veröffentlicht wird, werden alle Übermittlungen an alle Netzwerke mit include/notifier.php durchgeführt, welche entscheidet, wie und an wen die Nachricht geliefert wird. Diese Datei bindet dabei die lokale Bearbeitung aller Übertragungen ein inkl. dfrn-notify. +Wenn eine Nachricht veröffentlicht wird, werden alle Übermittlungen an alle Netzwerke mit include/notifier.php durchgeführt, welche entscheidet, wie und an wen die Nachricht geliefert wird. +Diese Datei bindet dabei die lokale Bearbeitung aller Übertragungen ein inkl. dfrn-notify. mod/dfrn_notify.php handhabt die Rückmeldung (remote side) von dfrn-notify. @@ -24,20 +26,38 @@ DFRN-poll Feed-Imports kommen via include/poller.php als geplanter Task an, das Szenario #1. Bob schreibt eine öffentliche Statusnachricht -Dies ist eine öffentliche Nachricht ohne begrenzte Nutzerfreigabe, so dass keine private Übertragung notwendig ist. Es gibt zwei Wege, die genutzt werden können - als bbcode an DFRN-Clients oder als durch den Server konvertierten HTML-Code (mit PuSH; pubsubhubbub). Wenn ein PuSH-Hub einsatzfähig ist, nutzen DFRN-Poll-Clients vorrangig die Informationen, die durch den PuSH-Kanal kommen. Sie fallen zurück auf eine tägliche Abfrage, wenn der Hub Übertragungsschwierigkeiten hat (das kann vorkommen, wenn der standardmäßige Google-Referenzhub genutzt wird). Wenn kein spezifizierter Hub oder Hubs ausgewählt sind, werden DFRN-Clients in einer pro Kontakt konfigurierbaren Rate mit bis zu 5-Minuten-Intervallen abfragen. Feeds, die via DFRN-Poll abgerufen werden, sind bbcode und können auch private Unterhaltungen enthalten, die vom Poller auf ihre Zugriffsrechte hin geprüft werden. +Dies ist eine öffentliche Nachricht ohne begrenzte Nutzerfreigabe, so dass keine private Übertragung notwendig ist. +Es gibt zwei Wege, die genutzt werden können - als bbcode an DFRN-Clients oder als durch den Server konvertierten HTML-Code (mit PuSH; pubsubhubbub). +Wenn ein PuSH-Hub einsatzfähig ist, nutzen DFRN-Poll-Clients vorrangig die Informationen, die durch den PuSH-Kanal kommen. +Sie fallen zurück auf eine tägliche Abfrage, wenn der Hub Übertragungsschwierigkeiten hat (das kann vorkommen, wenn der standardmäßige Google-Referenzhub genutzt wird). +Wenn kein spezifizierter Hub oder Hubs ausgewählt sind, werden DFRN-Clients in einer pro Kontakt konfigurierbaren Rate mit bis zu 5-Minuten-Intervallen abfragen. +Feeds, die via DFRN-Poll abgerufen werden, sind bbcode und können auch private Unterhaltungen enthalten, die vom Poller auf ihre Zugriffsrechte hin geprüft werden. Szenario #2. Jack antwortet auf Bobs öffentliche Nachricht. Jack ist im Friendica/DFRN-Netzwerk. -Jack nutzt dfrn-notify, um eine direkte Antwort an Bob zu schicken. Bob erstellt dann einen Feed der Unterhaltung und sendet diesen an jeden, der an der Unterhaltung beteiligt ist und dfrn-notify nutzt. Die PuSH-Hubs werden darüber informiert, dass neuer Inhalt verfügbar ist. Der/die Hub/s erhalten dann die neuesten Feeds und übertragen diese an alle Hub-Teilnehmer (die auch zu verschiedenen Netzwerken gehören können). +Jack nutzt dfrn-notify, um eine direkte Antwort an Bob zu schicken. +Bob erstellt dann einen Feed der Unterhaltung und sendet diesen an jeden, der an der Unterhaltung beteiligt ist und dfrn-notify nutzt. +Die PuSH-Hubs werden darüber informiert, dass neuer Inhalt verfügbar ist. Der/die Hub/s erhalten dann die neuesten Feeds und übertragen diese an alle Hub-Teilnehmer (die auch zu verschiedenen Netzwerken gehören können). Szenario #3. Mary antwortet auf Bobs öffentliche Nachricht. Mary ist im Friendica/DFRN-Netzwerk. -Mary nutzt dfrn-notify, um eine direkte Antwort an Bob zu schicken. Bob erstellt dann einen Feed der Unterhaltung und sendet diesen an jeden, der an der Unterhaltung beteiligt ist (mit Ausnahme von Bob selbst; die Unterhaltung wird nun an Jack und Mary geschickt). Die Nachrichten werden mit dfrn-notify übertragen. PuSH-Hubs werden darüber informiert, dass neuer Inhalt verfügbar ist. Der/die Hub/s erhalten dann die neuesten Feeds und übertragen sie an alle Hub-Teilnehmer (die auch zu verschiedenen Netzwerken gehören können). +Mary nutzt dfrn-notify, um eine direkte Antwort an Bob zu schicken. +Bob erstellt dann einen Feed der Unterhaltung und sendet diesen an jeden, der an der Unterhaltung beteiligt ist (mit Ausnahme von Bob selbst; die Unterhaltung wird nun an Jack und Mary geschickt). +Die Nachrichten werden mit dfrn-notify übertragen. +PuSH-Hubs werden darüber informiert, dass neuer Inhalt verfügbar ist. +Der/die Hub/s erhalten dann die neuesten Feeds und übertragen sie an alle Hub-Teilnehmer (die auch zu verschiedenen Netzwerken gehören können). Szenario #4. William antwortet auf Bobs öffentliche Nachricht. William ist in einem OStatus-Netzwerk. -William nutzt salmon, um Bob über seine Antwort zu benachrichtigen. Der Inhalt ist HTML-Code, der in das Salmon Magic Envelope eingebettet ist. Bob erstellt dann einen Feed der Unterhaltung und sendet es an alle Friendica-Nutzer, die an der Unterhaltung beteiligt sind und dfrn-notify nutzen (mit Ausnahme von William selbst; die Unterhaltung wird an Jack und Mary weitergeleitet). PuSH-Hubs werden darüber informiert, dass neuer Inhalt verfügbar ist. Der/die Hub/s erhalten dann die neuesten Feeds und übertragen sie an alle Hub-Teilnehmer (die auch zu verschiedenen Netzwerken gehören können). +William nutzt salmon, um Bob über seine Antwort zu benachrichtigen. +Der Inhalt ist HTML-Code, der in das Salmon Magic Envelope eingebettet ist. +Bob erstellt dann einen Feed der Unterhaltung und sendet es an alle Friendica-Nutzer, die an der Unterhaltung beteiligt sind und dfrn-notify nutzen (mit Ausnahme von William selbst; die Unterhaltung wird an Jack und Mary weitergeleitet). +PuSH-Hubs werden darüber informiert, dass neuer Inhalt verfügbar ist. Der/die Hub/s erhalten dann die neuesten Feeds und übertragen sie an alle Hub-Teilnehmer (die auch zu verschiedenen Netzwerken gehören können). Szenario #5. Bob schreibt eine private Nachricht an Mary und Jack. -Die Nachricht wird sofort an Mary und Jack mit Hilfe von dfrn_notify geschickt. Öffentliche Hubs werden nicht benachrichtigt. Im Falle eines Timeouts wird eine erneute Verarbeitung angestoßen. Antworten folgen dem gleichen Nachrichtenfluss wie öffentliche Antworten, allerdings werden die Hubs nicht darüber informiert, wodurch die Nachrichten niemals in öffentliche Feeds gelangen. Die komplette Unterhaltung ist nur für Mary und Jack in ihren durch dfrn-poll personalisierten Feeds verfügbar (und für niemanden sonst). +Die Nachricht wird sofort an Mary und Jack mit Hilfe von dfrn_notify geschickt. +Öffentliche Hubs werden nicht benachrichtigt. +Im Falle eines Timeouts wird eine erneute Verarbeitung angestoßen. +Antworten folgen dem gleichen Nachrichtenfluss wie öffentliche Antworten, allerdings werden die Hubs nicht darüber informiert, wodurch die Nachrichten niemals in öffentliche Feeds gelangen. +Die komplette Unterhaltung ist nur für Mary und Jack in ihren durch dfrn-poll personalisierten Feeds verfügbar (und für niemanden sonst). diff --git a/doc/de/Move-Account.md b/doc/de/Move-Account.md index 8861fe7ef0..426692c284 100644 --- a/doc/de/Move-Account.md +++ b/doc/de/Move-Account.md @@ -10,32 +10,23 @@ Accounts Umziehen Unter "Einstellungen" -> "[Persönliche Daten exportieren](uexport)" aufrufen. "Account exportieren" anklicken und die Daten speichern. -Diese Datei enthält Details über dich, deine Kontakte, Gruppen und persönliche -Einstellungen. Außerdem enthält sie deinen geheimen Schlüssel mit dem du dich -deinen Kontakten gegenüber ausweist. +Diese Datei enthält Details über dich, deine Kontakte, Gruppen und persönliche Einstellungen. +Außerdem enthält sie deinen geheimen Schlüssel mit dem du dich deinen Kontakten gegenüber ausweist. **Speichere diese Datei an einem sicheren Ort**! -Rufe nun dem neuen Server die Seite *http://newserver.com/uimport* auf -(es gibt derzeit keinen direkten Link auf diese Seite). +Rufe nun dem neuen Server die Seite *http://newserver.com/uimport* auf (es gibt derzeit keinen direkten Link auf diese Seite). Lege auf dem neuen Server auf keinen Fall einen gleichnamigen Account an! uimport muss anstelle des Registrierens verwendet werden. Wähle die gesicherte Account Datei aus und klicke "Importieren". -Friendica wird nun deinen Account auf dem neuen Server wiederherstellen, mit -all deinen Friendica Kontakten und Gruppen. An deine Friendica Kontakte wird -außerdem eine Nachricht gesendet um sie über deine neue Adresse zu informieren. -Wenn deine Kontakte ihren Account auf einem aktuellen Server haben werden deine -Kontaktdetails automatisch aktualisiert. +Friendica wird nun deinen Account auf dem neuen Server wiederherstellen, mit all deinen Friendica Kontakten und Gruppen. +An deine Friendica Kontakte wird außerdem eine Nachricht gesendet um sie über deine neue Adresse zu informieren. +Wenn deine Kontakte ihren Account auf einem aktuellen Server haben werden deine Kontaktdetails automatisch aktualisiert. -Kontakte auf StatusNet/idendi.ca oder Diaspora werden archiviert, da wir ihnen -keine Information über deinen Umzug zukommen lassen können. -Du solltest sie persönlich anschreiben deinen Eintrag aus ihren Kontaktlisten -zu entfernen und dich neu hinzuzufügen, anschließend solltest du da gleiche mit -ihren Accounts tun.. - -Nach dem Umzug wird dein Account auf dem alten Server nicht mehr zuverlässig -funktionieren und sollte deshalb gelöscht werden. +Kontakte auf StatusNet/idendi.ca oder Diaspora werden archiviert, da wir ihnen keine Information über deinen Umzug zukommen lassen können. +Du solltest sie persönlich anschreiben deinen Eintrag aus ihren Kontaktlisten zu entfernen und dich neu hinzuzufügen, anschließend solltest du da gleiche mit ihren Accounts tun. +Nach dem Umzug wird dein Account auf dem alten Server nicht mehr zuverlässig funktionieren und sollte deshalb gelöscht werden. diff --git a/doc/de/Plugins.md b/doc/de/Plugins.md index 9fa67bd7b7..448eee39bc 100644 --- a/doc/de/Plugins.md +++ b/doc/de/Plugins.md @@ -3,9 +3,16 @@ * [Zur Startseite der Hilfe](help) -Bitte schau dir das Beispiel-Addon "randplace" für ein funktionierendes Beispiel für manche der hier aufgeführten Funktionen an. Das Facebook-Addon bietet ein Beispiel dafür, die "addon"- und "module"-Funktion gemeinsam zu integrieren. Addons arbeiten, indem sie Event Hooks abfangen. Module arbeiten, indem bestimmte Seitenanfragen (durch den URL-Pfad) abgefangen werden +Bitte schau dir das Beispiel-Addon "randplace" für ein funktionierendes Beispiel für manche der hier aufgeführten Funktionen an. +Das Facebook-Addon bietet ein Beispiel dafür, die "addon"- und "module"-Funktion gemeinsam zu integrieren. +Addons arbeiten, indem sie Event Hooks abfangen. Module arbeiten, indem bestimmte Seitenanfragen (durch den URL-Pfad) abgefangen werden -Plugin-Namen können keine Leerstellen oder andere Interpunktionen enthalten und werden als Datei- und Funktionsnamen genutzt. Du kannst einen lesbaren Namen im Kommentarblock eintragen. Jedes Addon muss beides beinhalten - eine Installations- und eine Deinstallationsfunktion, die auf dem Addon-/Plugin-Namen basieren; z.B. "plugin1name_install()". Diese beiden Funktionen haben keine Argumente und sind dafür verantwortlich, Event Hooks zu registrieren und abzumelden (unregistering), die dein Plugin benötigt. Die Installations- und Deinstallationsfunktionfunktionen werden auch ausgeführt (z.B. neu installiert), wenn sich das Plugin nach der Installation ändert - somit sollte deine Deinstallationsfunktion keine Daten zerstört und deine Installationsfunktion sollte bestehende Daten berücksichtigen. Zukünftige Extensions werden möglicherweise "Setup" und "Entfernen" anbieten. +Plugin-Namen können keine Leerstellen oder andere Interpunktionen enthalten und werden als Datei- und Funktionsnamen genutzt. +Du kannst einen lesbaren Namen im Kommentarblock eintragen. +Jedes Addon muss beides beinhalten - eine Installations- und eine Deinstallationsfunktion, die auf dem Addon-/Plugin-Namen basieren; z.B. "plugin1name_install()". +Diese beiden Funktionen haben keine Argumente und sind dafür verantwortlich, Event Hooks zu registrieren und abzumelden (unregistering), die dein Plugin benötigt. +Die Installations- und Deinstallationsfunktionfunktionen werden auch ausgeführt (z.B. neu installiert), wenn sich das Plugin nach der Installation ändert - somit sollte deine Deinstallationsfunktion keine Daten zerstört und deine Installationsfunktion sollte bestehende Daten berücksichtigen. +Zukünftige Extensions werden möglicherweise "Setup" und "Entfernen" anbieten. Plugins sollten einen Kommentarblock mit den folgenden vier Parametern enthalten: @@ -22,7 +29,8 @@ Registriere deine Plugin-Hooks während der Installation. $hookname ist ein String und entspricht einem bekannten Friendica-Hook. -$file steht für den Pfadnamen, der relativ zum Top-Level-Friendicaverzeichnis liegt. Das *sollte* "addon/plugin_name/plugin_name.php' sein. +$file steht für den Pfadnamen, der relativ zum Top-Level-Friendicaverzeichnis liegt. +Das *sollte* "addon/plugin_name/plugin_name.php' sein. $function ist ein String und der Name der Funktion, die ausgeführt wird, wenn der Hook aufgerufen wird. @@ -34,21 +42,29 @@ Deine Hook-Callback-Funktion wird mit mindestens einem und bis zu zwei Argumente Wenn du Änderungen an den aufgerufenen Daten vornehmen willst, musst du diese als Referenzvariable (mit "&") während der Funktionsdeklaration deklarieren. -$a ist die Friendica "App"-Klasse, die eine Menge an Informationen über den aktuellen Friendica-Status beinhaltet, u.a. welche Module genutzt werden, Konfigurationsinformationen, Inhalte der Seite zum Zeitpunkt des Hook-Aufrufs. Es ist empfohlen, diese Funktion "$a" zu nennen, um seine Nutzung an den Gebrauch an anderer Stelle anzugleichen. +$a ist die Friendica "App"-Klasse, die eine Menge an Informationen über den aktuellen Friendica-Status beinhaltet, u.a. welche Module genutzt werden, Konfigurationsinformationen, Inhalte der Seite zum Zeitpunkt des Hook-Aufrufs. +Es ist empfohlen, diese Funktion "$a" zu nennen, um seine Nutzung an den Gebrauch an anderer Stelle anzugleichen. -$b kann frei benannt werden. Diese Information ist speziell auf den Hook bezogen, der aktuell bearbeitet wird, und beinhaltet normalerweise Daten, die du sofort nutzen, anzeigen oder bearbeiten kannst. Achte darauf, diese mit "&" zu deklarieren, wenn du sie bearbeiten willst. +$b kann frei benannt werden. +Diese Information ist speziell auf den Hook bezogen, der aktuell bearbeitet wird, und beinhaltet normalerweise Daten, die du sofort nutzen, anzeigen oder bearbeiten kannst. +Achte darauf, diese mit "&" zu deklarieren, wenn du sie bearbeiten willst. **Module** -Plugins/Addons können auch als "Module" agieren und alle Seitenanfragen für eine bestimte URL abfangen. Um ein Plugin als Modul zu nutzen, ist es nötig, die Funktion "plugin_name_module()" zu definieren, die keine Argumente benötigt und nichts weiter machen muss. +Plugins/Addons können auch als "Module" agieren und alle Seitenanfragen für eine bestimte URL abfangen. +Um ein Plugin als Modul zu nutzen, ist es nötig, die Funktion "plugin_name_module()" zu definieren, die keine Argumente benötigt und nichts weiter machen muss. -Wenn diese Funktion existiert, wirst du nun alle Seitenanfragen für "http://my.web.site/plugin_name" erhalten - mit allen URL-Komponenten als zusätzliche Argumente. Diese werden in ein Array $a->argv geparst und stimmen mit $a->argc überein, wobei sie die Anzahl der URL-Komponenten abbilden. So würde http://my.web.site/plugin/arg1/arg2 nach einem Modul "plugin" suchen und seiner Modulfunktion die $a-App-Strukur übergeben (dies ist für viele Komponenten verfügbar). Das umfasst: +Wenn diese Funktion existiert, wirst du nun alle Seitenanfragen für "http://my.web.site/plugin_name" erhalten - mit allen URL-Komponenten als zusätzliche Argumente. +Diese werden in ein Array $a->argv geparst und stimmen mit $a->argc überein, wobei sie die Anzahl der URL-Komponenten abbilden. +So würde http://my.web.site/plugin/arg1/arg2 nach einem Modul "plugin" suchen und seiner Modulfunktion die $a-App-Strukur übergeben (dies ist für viele Komponenten verfügbar). Das umfasst: $a->argc = 3 $a->argv = array(0 => 'plugin', 1 => 'arg1', 2 => 'arg2'); -Deine Modulfunktionen umfassen oft die Funktion plugin_name_content(&$a), welche den Seiteninhalt definiert und zurückgibt. Sie können auch plugin_name_post(&$a) umfassen, welches vor der content-Funktion aufgerufen wird und normalerweise die Resultate der POST-Formulare handhabt. Du kannst ebenso plugin_name_init(&$a) nutzen, was oft frühzeitig aufgerufen wird und das Modul initialisert. +Deine Modulfunktionen umfassen oft die Funktion plugin_name_content(&$a), welche den Seiteninhalt definiert und zurückgibt. +Sie können auch plugin_name_post(&$a) umfassen, welches vor der content-Funktion aufgerufen wird und normalerweise die Resultate der POST-Formulare handhabt. +Du kannst ebenso plugin_name_init(&$a) nutzen, was oft frühzeitig aufgerufen wird und das Modul initialisert. **Derzeitige Hooks:** diff --git a/doc/de/Profiles.md b/doc/de/Profiles.md index 0da6476d83..311f1c7929 100644 --- a/doc/de/Profiles.md +++ b/doc/de/Profiles.md @@ -3,9 +3,12 @@ Profile * [Zur Startseite der Hilfe](help) -Mit Friendica kann eine unbegrenzte Anzahl an Profilen angelegt werden. Du kannst verschiedene Profile nutzen, um verschiedenen Gruppen verschiedene Seiten von dir zu zeigen. +Mit Friendica kann eine unbegrenzte Anzahl an Profilen angelegt werden. +Du kannst verschiedene Profile nutzen, um verschiedenen Gruppen verschiedene Seiten von dir zu zeigen. -Du hast immer ein Profil, das als dein "Standard"- (default) oder "öffentliches" (public) Profil angelegt ist. Dieses Profil ist immer für die Öffentlichkeit zugänglich und kann nicht versteckt werden (hier mag es einige wenige Ausnahmen auf privaten oder getrennten Seiten geben). Du kannst und solltest die Informationen, die du in deinem öffentlichen Profil veröffentlichst, begrenzen. +Du hast immer ein Profil, das als dein "Standard"- (default) oder "öffentliches" (public) Profil angelegt ist. +Dieses Profil ist immer für die Öffentlichkeit zugänglich und kann nicht versteckt werden (hier mag es einige wenige Ausnahmen auf privaten oder getrennten Seiten geben). +Du kannst und solltest die Informationen, die du in deinem öffentlichen Profil veröffentlichst, begrenzen. Das bedeutet, dass du folgende Informationen in dein öffentlichen Profil eintragen solltest, wenn du willst, dass Freunde dich finden können ... @@ -13,35 +16,64 @@ Das bedeutet, dass du folgende Informationen in dein öffentlichen Profil eintra * Ein Foto von **dir** * Dein geographischer Standort; zumindest das Land, in dem du lebst. -Ohne diese Basisinformationen kannst du hier sehr einsam sein. Die meisten Leute, auch deine besten Freunde, werden nicht versuchen, einen Account mit Spitznamen und ohne Foto zu verbinden. +Ohne diese Basisinformationen kannst du hier sehr einsam sein. +Die meisten Leute, auch deine besten Freunde, werden nicht versuchen, einen Account mit Spitznamen und ohne Foto zu verbinden. -Wenn du außerdem Leute mit gleichen Interessen treffen willst, dann nimm dir etwas Zeit und trage einige Stichworte ein. Zum Beispiel etwas wie "Musik, Linux, Photographie" oder andere Dinge. Du kannst so viele Stichworte eintragen, wie du willst. +Wenn du außerdem Leute mit gleichen Interessen treffen willst, dann nimm dir etwas Zeit und trage einige Stichworte ein. +Zum Beispiel etwas wie "Musik, Linux, Photographie" oder andere Dinge. +Du kannst so viele Stichworte eintragen, wie du willst. -Dein "Standard-" oder "öffentliches" Profil wird außerdem Kontakten in anderen Netzwerken gezeigt, auch wenn sie nicht die Möglichkeit haben, die privaten Profile einzusehen. Nur Mitglieder des Friendica-Netzwerks können alternative oder private Profile sehen. +Dein "Standard-" oder "öffentliches" Profil wird außerdem Kontakten in anderen Netzwerken gezeigt, auch wenn sie nicht die Möglichkeit haben, die privaten Profile einzusehen. +Nur Mitglieder des Friendica-Netzwerks können alternative oder private Profile sehen. -Um ein alternatives Profil zu erstellen, gehe auf "Profil verwalten/editieren". Du kannst entweder ein bestehendes Profil bearbeiten, das Foto ändern, oder ein neues Profil erstellen. Du kannst ebenfalls einen Klon eines bestehenden Profils erstellen, falls du nur einige wenige Einstellungen ändern, aber nicht alle Daten noch mal eingeben willst. +Um ein alternatives Profil zu erstellen, gehe auf "Profil verwalten/editieren". +Du kannst entweder ein bestehendes Profil bearbeiten, das Foto ändern, oder ein neues Profil erstellen. +Du kannst ebenfalls einen Klon eines bestehenden Profils erstellen, falls du nur einige wenige Einstellungen ändern, aber nicht alle Daten noch mal eingeben willst. -Um bestimmten Personen ein Profil zuzuweisen, wähle die Person über "Kontakte" und klicke auf das Bearbeiten-Symbol (Stift). Du wirst ein Auswahlmenü mit verschiedenen vorhandenen Profilen angezeigt bekommen. Wenn diese Auswahl nicht angezeigt wird, dann ist die Person in einem nicht unterstützten Netzwerk und kann dadurch auch kein Profil zugewiesen bekommen. +Um bestimmten Personen ein Profil zuzuweisen, wähle die Person über "Kontakte" und klicke auf das Bearbeiten-Symbol (Stift). +Du wirst ein Auswahlmenü mit verschiedenen vorhandenen Profilen angezeigt bekommen. +Wenn diese Auswahl nicht angezeigt wird, dann ist die Person in einem nicht unterstützten Netzwerk und kann dadurch auch kein Profil zugewiesen bekommen. -Wenn eine befreundete Person auf den "magischen Profillink" klickt, sieht sie das private Profil, das du dieser Person zugewiesen hast. Wenn sie nicht eingeloggt ist oder das Profil von woanders angeschaut wird, wird nur das öffentliche Profil angezeigt. +Wenn eine befreundete Person auf den "magischen Profillink" klickt, sieht sie das private Profil, das du dieser Person zugewiesen hast. +Wenn sie nicht eingeloggt ist oder das Profil von woanders angeschaut wird, wird nur das öffentliche Profil angezeigt. -Ein "magischer Profillink" erscheint, wenn man mit der Maus über den Kontaktnamen oder das Foto geht. Der Cursor wird zur Hand und auf dem Bild erscheint ein Pfeil, der nach unten zeigt. Dieser "magische Cursor" zeigt an, dass du ein spezielles Profil angezeigt bekommst, das nur für Freunde, aber nicht für die Öffentlichkeit sichtbar ist. +Ein "magischer Profillink" erscheint, wenn man mit der Maus über den Kontaktnamen oder das Foto geht. +Der Cursor wird zur Hand und auf dem Bild erscheint ein Pfeil, der nach unten zeigt. +Dieser "magische Cursor" zeigt an, dass du ein spezielles Profil angezeigt bekommst, das nur für Freunde, aber nicht für die Öffentlichkeit sichtbar ist. -Du wirst außerdem möglicherweise entdecken (vorausgesetzt, du hast die nötigen Zugriffsrechte), dass du direkt auf die Seite einer anderen Person schreiben kannst (oft wird diese Beitragsart "wall-to-wall" genannt). Ebenso kannst du die Möglichkeit haben, direkt Beiträge zu kommentieren, während du die Seite der anderen Person besuchst. +Du wirst außerdem möglicherweise entdecken (vorausgesetzt, du hast die nötigen Zugriffsrechte), dass du direkt auf die Seite einer anderen Person schreiben kannst (oft wird diese Beitragsart "wall-to-wall" genannt). +Ebenso kannst du die Möglichkeit haben, direkt Beiträge zu kommentieren, während du die Seite der anderen Person besuchst. -Es gibt zwei Einstellungen, welche erlauben, dein Profil ins Verzeichnis einzutragen, so dass du von anderen Personen gefunden werden kannst. Du kannst diese Einstellungen auf deiner "Einstellungen"-Seite ändern. Die eine Einstellung erlaubt dir, dein Profil im Verzeichnis dieses Servers zu veröffentlichen. Die zweite Option erlaubt es dir, dich in das globale Friendica-Verzeichnis einzutragen. Dies ist ein riesiges Verzeichnis, dass alle Personen von vielen Friendica-Installationen weltweit umfasst. +Es gibt zwei Einstellungen, welche erlauben, dein Profil ins Verzeichnis einzutragen, so dass du von anderen Personen gefunden werden kannst. +Du kannst diese Einstellungen auf deiner "Einstellungen"-Seite ändern. +Die eine Einstellung erlaubt dir, dein Profil im Verzeichnis dieses Servers zu veröffentlichen. +Die zweite Option erlaubt es dir, dich in das globale Friendica-Verzeichnis einzutragen. +Dies ist ein riesiges Verzeichnis, dass alle Personen von vielen Friendica-Installationen weltweit umfasst. Wenn du für andere nicht sichtbar sein willst, dann kannst du dein Profil einfach unveröffentlicht lassen. -Außerdem hast du möglicherweise mehrere Profile, aber nur ein Profilfoto. Dies ist beabsichtigt. In frühen Tests haben wir mit verschiedenen Fotos für jedes Profil experimentiert und herausgefunden, dass es sehr verwirrend für die Nutzer ist. Sie sehen möglicherweise je nach Profil, Seite oder Unterhaltung verschiedene Fotos und merken, dass es unterschiedliche Profile gibt, die sie nicht einsehen können. +Außerdem hast du möglicherweise mehrere Profile, aber nur ein Profilfoto. Dies ist beabsichtigt. +In frühen Tests haben wir mit verschiedenen Fotos für jedes Profil experimentiert und herausgefunden, dass es sehr verwirrend für die Nutzer ist. +Sie sehen möglicherweise je nach Profil, Seite oder Unterhaltung verschiedene Fotos und merken, dass es unterschiedliche Profile gibt, die sie nicht einsehen können. (Du kannst aber die Rich-Text-Infoboxen in deinem Profil nutzen und dort weitere Bilder in das Feld "Erzähle uns ein bisschen von dir …" einfügen.) **Schlüsselwörter und Verzeichnissuche** -Auf der Verzeichnisseite willst du vielleicht nach Personen deines Servers suchen, die ihre Profile veröffentlicht haben. Die Suche richtet sich normalerweise nach deinem Spitznamen oder Teilen deines richtigen Namens. Darüber hinaus wird dieses Feld auch andere Felder deines Profils wie Geschlecht, Ort, "über mich", Arbeit und Bildung finden. Du kannst zudem auch "Schlüsselwörter" in dein Standardprofil eintragen, so dass dich andere Personen über deine Interessen finden können. Du hast zwei Schlüsselwortarten zur Auswahl - öffentlich und privat. Private Schlüsselwörter werden *nicht* jedem angezeigt. Du kannst diese Schlüsselwörter nutzen, um andere Personen zu finden, die ebenfalls in einer bestimmten Gruppe sind oder z.B. das Fischen mögen, ohne dass es jeder in einem öffentlichen Profil sieht. Öffentliche Schlüsselwörter werden auf der "Kontaktvorschläge"-Seite genutzt. Auch wenn die Schlüsselwörter hier nicht direkt angezeigt werden, kann es trotzdem sein, dass diese im HTML-Code der Seite gesehen werden könnten. +Auf der Verzeichnisseite willst du vielleicht nach Personen deines Servers suchen, die ihre Profile veröffentlicht haben. +Die Suche richtet sich normalerweise nach deinem Spitznamen oder Teilen deines richtigen Namens. +Darüber hinaus wird dieses Feld auch andere Felder deines Profils wie Geschlecht, Ort, "über mich", Arbeit und Bildung finden. +Du kannst zudem auch "Schlüsselwörter" in dein Standardprofil eintragen, so dass dich andere Personen über deine Interessen finden können. +Du hast zwei Schlüsselwortarten zur Auswahl - öffentlich und privat. Private Schlüsselwörter werden *nicht* jedem angezeigt. +Du kannst diese Schlüsselwörter nutzen, um andere Personen zu finden, die ebenfalls in einer bestimmten Gruppe sind oder z.B. das Fischen mögen, ohne dass es jeder in einem öffentlichen Profil sieht. +Öffentliche Schlüsselwörter werden auf der "Kontaktvorschläge"-Seite genutzt. +Auch wenn die Schlüsselwörter hier nicht direkt angezeigt werden, kann es trotzdem sein, dass diese im HTML-Code der Seite gesehen werden könnten. -In der Verzeichnis-Suche kannst du ebenfalls die "booleasche"-Logik zu nutzen. Mit "+lesbisch +Florida" kannst du Leute finden, deren sexuelle Einstellung (oder andere Schlüsselwörter) das Wort "lesbisch" enthält und die in Florida leben. Schau dir den Bereich über "Thematische Tags" auf der "[Tags und Erwähnungen-Seite](help/Tags-and-Mentions) für weitere Informationen, um booleansche Suchen durchzuführen. +In der Verzeichnis-Suche kannst du ebenfalls die "booleasche"-Logik zu nutzen. Mit "+lesbisch +Florida" kannst du Leute finden, deren sexuelle Einstellung (oder andere Schlüsselwörter) das Wort "lesbisch" enthält und die in Florida leben. +Schau dir den Bereich über "Thematische Tags" auf der "[Tags und Erwähnungen-Seite](help/Tags-and-Mentions) für weitere Informationen, um booleansche Suchen durchzuführen. -Auf deiner Kontaktseite ist der Link "Ähnliche Interessen", um damit andere Leute zu finden (falls dein Seitenadministrator das globale Verzeichnis nicht ausgeschaltet hat). Hierfür werden die Schlüsselwörter aus deinen öffentlichen und privaten Profilen genutzt, um Personen im globalen Verzeichnis zu finden, die gleiche oder ähnliche Schlüsselwörter haben (deine privaten Schlüsselwörter werden nicht in das globale Verzeichnis übertragen oder gespeichert). Je mehr Schlüsselwörter du einträgst, umso genauer ist die Suche. Das Suchergebnis ist nach Relevanz sortiert. Gegebenenfalls stehst du ganz oben auf der Liste - schließlich bist du die Person, die am besten zu deinen Schlüsselwörtern passt. +Auf deiner Kontaktseite ist der Link "Ähnliche Interessen", um damit andere Leute zu finden (falls dein Seitenadministrator das globale Verzeichnis nicht ausgeschaltet hat). +Hierfür werden die Schlüsselwörter aus deinen öffentlichen und privaten Profilen genutzt, um Personen im globalen Verzeichnis zu finden, die gleiche oder ähnliche Schlüsselwörter haben (deine privaten Schlüsselwörter werden nicht in das globale Verzeichnis übertragen oder gespeichert). +Je mehr Schlüsselwörter du einträgst, umso genauer ist die Suche. Das Suchergebnis ist nach Relevanz sortiert. +Gegebenenfalls stehst du ganz oben auf der Liste - schließlich bist du die Person, die am besten zu deinen Schlüsselwörtern passt. diff --git a/doc/de/Quick-Start-groupsandpages.md b/doc/de/Quick-Start-groupsandpages.md index 9005d45efc..88bf5652fa 100644 --- a/doc/de/Quick-Start-groupsandpages.md +++ b/doc/de/Quick-Start-groupsandpages.md @@ -3,11 +3,19 @@ Gruppen und Seiten * [Zur Startseite der Hilfe](help) -Hier siehst Du das globale Verzeichnis. Wenn Du Dich mal verirrt hast, kannst Du diesen Link klicken und wieder hierher kommen. +Hier siehst Du das globale Verzeichnis. +Wenn Du Dich mal verirrt hast, kannst Du diesen Link klicken und wieder hierher kommen. -Auf dieser Seite findest Du eine Zusammenstellung von Gruppen, Foren und Promi-Seiten. Gruppen sind keine realen Personen. Sich mit diesen zu verbinden ist, als wenn man jemanden auf Facebook "liked" ("gefällt mir") oder wenn man sich in einem Forum anmeldet. Es gibt keinen Anlass zur Unsicherheit, ob Du Dich einfach so mit einer Gruppe verbinden kannst oder nicht, da es sich nicht um Personen handelt. +Auf dieser Seite findest Du eine Zusammenstellung von Gruppen, Foren und Promi-Seiten. Gruppen sind keine realen Personen. +Sich mit diesen zu verbinden ist, als wenn man jemanden auf Facebook "liked" ("gefällt mir") oder wenn man sich in einem Forum anmeldet. +Es gibt keinen Anlass zur Unsicherheit, ob Du Dich einfach so mit einer Gruppe verbinden kannst oder nicht, da es sich nicht um Personen handelt. -Wenn Du Dich mit einer Gruppe verbindest, erscheinen alle Nachrichten der Gruppe in Deinem "Netzwerk"-Tab. Du kannst diese Beiträge kommentieren oder selbst in der Gruppe schreiben, ohne eines der Gruppenmitglieder persönlich hinzuzufügen. Das ist ein großartiger Weg, dynamisch neue Freunde zu gewinnen. Du findest Personen Deines Interesses, anstatt Fremde hinzuzufügen. Suche Dir einfach eine Gruppe und füge sie so hinzu, wie Du auch normale Freunde hinzufügst. Es gibt eine Menge Gruppen. +Wenn Du Dich mit einer Gruppe verbindest, erscheinen alle Nachrichten der Gruppe in Deinem "Netzwerk"-Tab. +Du kannst diese Beiträge kommentieren oder selbst in der Gruppe schreiben, ohne eines der Gruppenmitglieder persönlich hinzuzufügen. +Das ist ein großartiger Weg, dynamisch neue Freunde zu gewinnen. +Du findest Personen Deines Interesses, anstatt Fremde hinzuzufügen. +Suche Dir einfach eine Gruppe und füge sie so hinzu, wie Du auch normale Freunde hinzufügst. +Es gibt eine Menge Gruppen. Solltest Du beim Stöbern durch die vielen Gruppen nicht wieder hierher zurück finden, so nutze einfach den Link oben auf dieser Seite. Wenn Du einige Gruppen hinzugefügt hast, gehe weiter zum nächsten Schritt. diff --git a/doc/de/Quick-Start-guide.md b/doc/de/Quick-Start-guide.md index 73e51aedea..d3dbd6b273 100644 --- a/doc/de/Quick-Start-guide.md +++ b/doc/de/Quick-Start-guide.md @@ -3,12 +3,20 @@ Erste Schritte... * [Zur Startseite der Hilfe](help) -Als Erstes: Gehe sicher, dass Du eingeloggt bist. Wenn Du noch nicht eingeloggt bist, kannst Du das in dem Fenster unten machen. +Als Erstes: Gehe sicher, dass Du eingeloggt bist. +Wenn Du noch nicht eingeloggt bist, kannst Du das in dem Fenster unten machen. -Sobald dies geschehen ist, schaust Du auf die Netzwerkseite Deines Profils. Klicke auf den Reiter "Pinnwand". -Hier sieht es ein wenig wie auf (D)einer Facebook-Seite aus. Du findest hier alle Deine Statusmeldungen und Nachrichten Deiner Freunde, die direkt auf Deine "Pinnwand" ("Wall") geschrieben haben. Um Deinen Status einzutragen, klicke einfach auf die Box oben, in der "Teilen" steht. Wenn Du das machst, vergrößert sich die Box, und Du kannst nun Deinen Text eintragen, mit Hilfe einiger Formatierungsoptionen wie fett, kursiv, unterstrichen formatieren und ebenfalls Bilder und Links hinzufügen. Unten findest Du in diesem Feld weitere Knöpfe, mit denen Du Bilder und Dateien von Deinem Computer hochladen, Webseiten mit einem Kurztext teilen und Video- und Audiodateien aus dem Internet einfügen kannst. Außerdem kannst Du hier eintragen, wo Du gerade bist. +Sobald dies geschehen ist, schaust Du auf die Netzwerkseite Deines Profils. +Klicke auf den Reiter "Pinnwand". +Hier sieht es ein wenig wie auf (D)einer Facebook-Seite aus. +Du findest hier alle Deine Statusmeldungen und Nachrichten Deiner Freunde, die direkt auf Deine "Pinnwand" ("Wall") geschrieben haben. +Um Deinen Status einzutragen, klicke einfach auf die Box oben, in der "Teilen" steht. +Wenn Du das machst, vergrößert sich die Box, und Du kannst nun Deinen Text eintragen, mit Hilfe einiger Formatierungsoptionen wie fett, kursiv, unterstrichen formatieren und ebenfalls Bilder und Links hinzufügen. +Unten findest Du in diesem Feld weitere Knöpfe, mit denen Du Bilder und Dateien von Deinem Computer hochladen, Webseiten mit einem Kurztext teilen und Video- und Audiodateien aus dem Internet einfügen kannst. +Außerdem kannst Du hier eintragen, wo Du gerade bist. -Wenn Du Deinen Beitrag ("Post") geschrieben hast, kannst Du auf das "Schloss"-Symbol klicken und festlegen, wer Deinen Beitrag sehen kann. Wenn Du dieses Symbol nicht anklickst, ist Dein Beitrag öffentlich. +Wenn Du Deinen Beitrag ("Post") geschrieben hast, kannst Du auf das "Schloss"-Symbol klicken und festlegen, wer Deinen Beitrag sehen kann. +Wenn Du dieses Symbol nicht anklickst, ist Dein Beitrag öffentlich. Ein öffentlicher Beitrag ist sichbar für
    • Besucher Deines Profils
    • diff --git a/doc/de/Quick-Start-makingnewfriends.md b/doc/de/Quick-Start-makingnewfriends.md index ab56f03040..1e79a7639c 100644 --- a/doc/de/Quick-Start-makingnewfriends.md +++ b/doc/de/Quick-Start-makingnewfriends.md @@ -3,13 +3,21 @@ Neue Freunde finden * [Zur Startseite der Hilfe](help) -Hier siehst Du die Kontaktvorschläge. Wenn Du Dich mal verirrt hast, kannst Du diesen Link klicken und wieder hierher kommen. +Hier siehst Du die Kontaktvorschläge. +Wenn Du Dich mal verirrt hast, kannst Du diesen Link klicken und wieder hierher kommen. -Diese Seite funktioniert in etwa wie die Kontaktvorschläge in Facebook. Jeder auf dieser Liste hat zugestimmt, als Kontaktvorschlag zu erscheinen. Das bedeutet, das sie Anfragen meist nicht ablehnen, da sie neue Leute kennenlernen wollen. +Diese Seite funktioniert in etwa wie die Kontaktvorschläge in Facebook. +Jeder auf dieser Liste hat zugestimmt, als Kontaktvorschlag zu erscheinen. +Das bedeutet, das sie Anfragen meist nicht ablehnen, da sie neue Leute kennenlernen wollen. -Siehst Du jemanden, der Dir interessant erscheint? Klicke auf den "Verbinden"-Knopf beim Foto. Als nächstes kommst Du zur Seite "Freundschafts-/Kontaktanfrage". Fülle das Formular wie vorgegeben aus und trage optional eine kleine Notiz ein. Nun musst Du nur noch auf die Bestätigung warten. Beachte dabei, dass es sich um reale Personen handelt und es somit etwas dauern kann. +Siehst Du jemanden, der Dir interessant erscheint? Klicke auf den "Verbinden"-Knopf beim Foto. +Als nächstes kommst Du zur Seite "Freundschafts-/Kontaktanfrage". +Fülle das Formular wie vorgegeben aus und trage optional eine kleine Notiz ein. +Nun musst Du nur noch auf die Bestätigung warten. +Beachte dabei, dass es sich um reale Personen handelt und es somit etwas dauern kann. -Jetzt, nachdem Du jemanden hinzugefügt hast, weißt Du vielleicht nicht mehr, wie Du zurückkommst. Klicke einfach auf den Link oben auf dieser Seite und Du gelangst zur Seite mit den Kontaktvorschlägen zurück, um weitere Personen hinzuzufügen. +Jetzt, nachdem Du jemanden hinzugefügt hast, weißt Du vielleicht nicht mehr, wie Du zurückkommst. +Klicke einfach auf den Link oben auf dieser Seite und Du gelangst zur Seite mit den Kontaktvorschlägen zurück, um weitere Personen hinzuzufügen. Du willst nicht einfach Personen hinzufügen, die Du nicht kennst? Kein Problem - an dieser Stelle kommen wir zu den Gruppen und Seiten. diff --git a/doc/de/Quick-Start-network.md b/doc/de/Quick-Start-network.md index 663d03c5e5..9b525ae2ba 100644 --- a/doc/de/Quick-Start-network.md +++ b/doc/de/Quick-Start-network.md @@ -3,11 +3,17 @@ Deine "Netzwerk"-Seite * [Zur Startseite der Hilfe](help) -Dies ist Dein "Netzwerk"-Tab. Wenn Du Dich mal verirrt hast, kannst Du diesen Link klicken, um wieder hierher zu kommen. +Dies ist Dein "Netzwerk"-Tab. +Wenn Du Dich mal verirrt hast, kannst Du diesen Link klicken, um wieder hierher zu kommen. -Diese Seite ist ein wenig wie die News-Seite in Facebook oder der Stream in Diaspora. Hier findest Du alle Beiträge Deiner Kontakte, Gruppen und Feeds, die Du eingetragen hast. Wenn Du neu bist, siehst Du hier noch nichts, falls Du an Deinem Status im letzten Schritt noch nichts geändert haben solltest. Wenn Du bereits ein paar Freunde gefunden hast, so findest Du hier ihre Beiträge. Du kannst ihre Beiträge von hier aus kommentieren, mitteilen, dass Du den Beitrag magst oder ablehnst (Daumen hoch, Daumen runter) oder die Profile durch einen Klick auf deren Namen besuchen und dort auf deren "Pinnwand" ("Wall") Nachrichten schreiben. +Diese Seite ist ein wenig wie die News-Seite in Facebook oder der Stream in Diaspora. +Hier findest Du alle Beiträge Deiner Kontakte, Gruppen und Feeds, die Du eingetragen hast. +Wenn Du neu bist, siehst Du hier noch nichts, falls Du an Deinem Status im letzten Schritt noch nichts geändert haben solltest. +Wenn Du bereits ein paar Freunde gefunden hast, so findest Du hier ihre Beiträge. +Du kannst ihre Beiträge von hier aus kommentieren, mitteilen, dass Du den Beitrag magst oder ablehnst (Daumen hoch, Daumen runter) oder die Profile durch einen Klick auf deren Namen besuchen und dort auf deren "Pinnwand" ("Wall") Nachrichten schreiben. -Nun wollen wir diese Seite mit Inhalt füllen. Der erste Schritt ist es, Leute zu Deinem Account hinzuzufügen. +Nun wollen wir diese Seite mit Inhalt füllen. +Der erste Schritt ist es, Leute zu Deinem Account hinzuzufügen. diff --git a/doc/de/README.md b/doc/de/README.md index 5dc32ee76e..a4e2bdec77 100644 --- a/doc/de/README.md +++ b/doc/de/README.md @@ -3,6 +3,7 @@ Friendica-doc-german Friendica - doc - german -Hier findest du die deutsche Version der Friendica-Hilfedateien. Es handelt sich um eine selbst erstellte, öffentlich freigegebene Arbeit mit dem Ziel, Friendica durch deutsche Hilfedateien für weitere Personen zugänglich zu machen, die dem Englischen nicht ausreichend mächtig sind. +Hier findest du die deutsche Version der Friendica-Hilfedateien. +Es handelt sich um eine selbst erstellte, öffentlich freigegebene Arbeit mit dem Ziel, Friendica durch deutsche Hilfedateien für weitere Personen zugänglich zu machen, die dem Englischen nicht ausreichend mächtig sind. Die Daten basieren auf dem offiziellen Friendica-Github https://github.com/friendica/friendica (Stand: 03.11.12) diff --git a/doc/de/Remove-Account.md b/doc/de/Remove-Account.md index 7762ec9d07..9c6e0403b1 100644 --- a/doc/de/Remove-Account.md +++ b/doc/de/Remove-Account.md @@ -9,16 +9,25 @@ Wir freuen uns nicht, wenn Leute Friendica verlassen, aber wenn du deinen Accoun in deinem Webbrowser. Du musst dabei eingeloggt sein. -Du wirst nach deinem Passwort gefragt, um die Anfrage zu bestätigen. Wenn dieses mit deinem gespeichertem Passwort übereinstimmt, dann wird dein Account sofort gelöscht. Anders als andere Netzwerke, behalten wir die Daten **nicht** für eine gewisse Zeit, falls du deine Meinung noch änderst. Deine Nutzerdetails, deine Unterhaltungen, deine Photos, deine Freunde - alles; wird sofort gelöscht und du wirst ausgeloggt. +Du wirst nach deinem Passwort gefragt, um die Anfrage zu bestätigen. +Wenn dieses mit deinem gespeichertem Passwort übereinstimmt, dann wird dein Account sofort gelöscht. +Anders als andere Netzwerke, behalten wir die Daten **nicht** für eine gewisse Zeit, falls du deine Meinung noch änderst. +Deine Nutzerdetails, deine Unterhaltungen, deine Photos, deine Freunde - alles; wird sofort gelöscht und du wirst ausgeloggt. -Wenn Beiträge ablaufen, schicken wir Mitteilungen an Friendica, um diese zu löschen. Diaspora hat keine automatische Löschfunktion, so dass diese Funktion in dem Netzwerk deaktiviert ist. Und hoffentlich ist klar, dass das Löschen auch in anderen Netzwerken nicht funktioniert. Wenn du manuell einen Beitrag bzw. eine Reihe von Beiträgen löschst, dann senden wir individuelle Mitteilungen zu Friendica und Diaspora für jeden gelöschten Post. +Wenn Beiträge ablaufen, schicken wir Mitteilungen an Friendica, um diese zu löschen. +Diaspora hat keine automatische Löschfunktion, so dass diese Funktion in dem Netzwerk deaktiviert ist. +Und hoffentlich ist klar, dass das Löschen auch in anderen Netzwerken nicht funktioniert. +Wenn du manuell einen Beitrag bzw. eine Reihe von Beiträgen löschst, dann senden wir individuelle Mitteilungen zu Friendica und Diaspora für jeden gelöschten Post. Diaspora versäumt dieses oft. -Wenn du einen Beitrag löscht, aber jemand diesem Beitrag folgt, wird es trotzdem gelöscht. Dein Wunsch hat Priorität. +Wenn du einen Beitrag löscht, aber jemand diesem Beitrag folgt, wird es trotzdem gelöscht. +Dein Wunsch hat Priorität. Wenn du deinen Account löscht, dann löschen wir alle Beiträge, dein Profil, die Nutzerdaten etc. sofort. -Um einen Gesamtlöschauftrag zu versenden, bräuchten wir zunächst noch deinen Account; auch, um deinen Freunden zu zeigen, wer diese Anfrage stellt. Das können wir nicht tun, wenn du keinen Account mehr hast. +Um einen Gesamtlöschauftrag zu versenden, bräuchten wir zunächst noch deinen Account; auch, um deinen Freunden zu zeigen, wer diese Anfrage stellt. +Das können wir nicht tun, wenn du keinen Account mehr hast. -Deine Freunde können möglicherweise noch deine Beiträge sehen, wenn dein Account gelöscht wurde, aber es gibt keinen öffentlichen Ort in Friendica mehr, wo diese angeschaut werden können. Wenn du Freunde bei Diaspora hast, kann es sein, dass deine Beiträge weiterhin vorhanden und für andere aus diesem Netzwerk sichtbar sind. +Deine Freunde können möglicherweise noch deine Beiträge sehen, wenn dein Account gelöscht wurde, aber es gibt keinen öffentlichen Ort in Friendica mehr, wo diese angeschaut werden können. +Wenn du Freunde bei Diaspora hast, kann es sein, dass deine Beiträge weiterhin vorhanden und für andere aus diesem Netzwerk sichtbar sind. diff --git a/doc/de/SSL.md b/doc/de/SSL.md index ecb10d9d3e..dd9b42676e 100644 --- a/doc/de/SSL.md +++ b/doc/de/SSL.md @@ -7,13 +7,19 @@ Wenn du deine eigene Friendica-Seite betreibst, willst du vielleicht SSL (https) Wenn du das auf deiner eigenen Domain machen willst, musst du ein Zertifikat von einer anerkannten Organisation beschaffen (sogenannte selbst-signierte Zertifikate, die unter Computerfreaks beliebt sind, arbeiten nicht sehr gut mit Friendica, weil sie Warnungen im Browser hervorrufen können). -Wenn du dieses Dokument liest, bevor du Friendica installierst, kannst du eine sehr einfache Option in Betracht ziehen: suche dir ein geteiltes Hosting-Angebot (shared hosting) ohne eigene Domain. Dadurch wirst du eine Adresse in der Form deinName.deinAnbietername.de erhalten, was nicht so schön wie deinName.de ist. Aber es wird trotzdem deine ganz persönliche Seite sein und du wirst unter Umständen die Möglichkeit haben, das SSL-Zertifikat deines Anbieters mitzubenutzen. Das bedeutet, dass du SSL überhaupt nicht konfigurieren musst - es wird einfach sofort funktionieren, wenn die Besucher deiner Seite https statt http eingeben. +Wenn du dieses Dokument liest, bevor du Friendica installierst, kannst du eine sehr einfache Option in Betracht ziehen: suche dir ein geteiltes Hosting-Angebot (shared hosting) ohne eigene Domain. +Dadurch wirst du eine Adresse in der Form deinName.deinAnbietername.de erhalten, was nicht so schön wie deinName.de ist. +Aber es wird trotzdem deine ganz persönliche Seite sein und du wirst unter Umständen die Möglichkeit haben, das SSL-Zertifikat deines Anbieters mitzubenutzen. +Das bedeutet, dass du SSL überhaupt nicht konfigurieren musst - es wird einfach sofort funktionieren, wenn die Besucher deiner Seite https statt http eingeben. Wenn dir diese Lösung nicht gefällt, lies weiter... **Geteilte Hosting-Angebote/Shared hosts** -Wenn du ein geteiltes Hosting-Angebot mit einer eigenen Domain nutzt, dann wird dir dein Anbieter ggf. anbieten, dir das Zertifikat zu besorgen und zu installieren. Du musst es nur beantragen und bezahlen und alles wird eingerichtet. Wenn das die Lösung für dich ist, musst du das weitere Dokument nicht lesen. Gehe nur sicher, dass das Zertifikat auch für die Domain gilt, die du für Friendica nutzt: z.B. meinfriendica.de oder friendica.meinserver.de. +Wenn du ein geteiltes Hosting-Angebot mit einer eigenen Domain nutzt, dann wird dir dein Anbieter ggf. anbieten, dir das Zertifikat zu besorgen und zu installieren. +Du musst es nur beantragen und bezahlen und alles wird eingerichtet. +Wenn das die Lösung für dich ist, musst du das weitere Dokument nicht lesen. +Gehe nur sicher, dass das Zertifikat auch für die Domain gilt, die du für Friendica nutzt: z.B. meinfriendica.de oder friendica.meinserver.de. Das Vorangehende wird die häufigste Art sein, eine Friendica-Seite zu betreiben, so dass der Rest des Artikels für die meisten Leute nicht von Bedeutung ist. @@ -21,29 +27,50 @@ Das Vorangehende wird die häufigste Art sein, eine Friendica-Seite zu betreiben Alternativ kannst du dir auch selbst ein Zertifikat besorgen und hochladen, falls dein Anbieter das unterstützt. -Der nächste Abschnitt beschreibt den Ablauf, um ein Zertifikat von StartSSL zu erhalten. Das Gute an StartSSL ist, dass du kostenlos ein einfaches, aber perfekt ausreichendes Zertifikat erhältst. Das ist bei vielen anderen Anbietern nicht so, weshalb wir uns in diesem Dokument auf StartSSL konzentrieren werden. Wenn du ein Zertifikat eines anderen Anbieters nutzen willst, musst du die Vorgaben dieser Organisation befolgen. Wir können hier nicht jede Möglichkeit abdecken. +Der nächste Abschnitt beschreibt den Ablauf, um ein Zertifikat von StartSSL zu erhalten. +Das Gute an StartSSL ist, dass du kostenlos ein einfaches, aber perfekt ausreichendes Zertifikat erhältst. +Das ist bei vielen anderen Anbietern nicht so, weshalb wir uns in diesem Dokument auf StartSSL konzentrieren werden. +Wenn du ein Zertifikat eines anderen Anbieters nutzen willst, musst du die Vorgaben dieser Organisation befolgen. +Wir können hier nicht jede Möglichkeit abdecken. -Die Installation deines erhaltenen Zertifikats hängt von den Vorgaben deines Anbieters ab. Aber generell nutzen solche Anbieter ein einfaches Web-Tool, um die Einrichtung zu unterstützen. +Die Installation deines erhaltenen Zertifikats hängt von den Vorgaben deines Anbieters ab. +Aber generell nutzen solche Anbieter ein einfaches Web-Tool, um die Einrichtung zu unterstützen. -Beachte: dein Zertifikat gilt gewöhnlich nur für eine Subdomain. Wenn du dein Zertifikat beantragst, sorge dafür, dass es für die Domain und die Subdomain gilt, die du für Friendica nutzt: z.B. meinfriendica.de oder friendica.meinserver.de. +Beachte: dein Zertifikat gilt gewöhnlich nur für eine Subdomain. +Wenn du dein Zertifikat beantragst, sorge dafür, dass es für die Domain und die Subdomain gilt, die du für Friendica nutzt: z.B. meinfriendica.de oder friendica.meinserver.de. **Erhalte ein kostenloses StartSSL-Zertifikat** -Die Webseite von StartSSL führt dich durch den Erstellungsprozess, aber manche Leute haben hier trotzdem Probleme. Wir empfehlen dir ausdrücklich, die Installationsanleitung Schritt für Schritt langsam und sorgfältig zu befolgen. Lese dir jedes Wort durch und schließe deinen Browser erst, wenn alles läuft. Es heißt, dass es drei Schritte gibt, die den Nutzer verwirren können: +Die Webseite von StartSSL führt dich durch den Erstellungsprozess, aber manche Leute haben hier trotzdem Probleme. +Wir empfehlen dir ausdrücklich, die Installationsanleitung Schritt für Schritt langsam und sorgfältig zu befolgen. +Lese dir jedes Wort durch und schließe deinen Browser erst, wenn alles läuft. +Es heißt, dass es drei Schritte gibt, die den Nutzer verwirren können: -Wenn du dich erstmals bei StartSSL anmeldest, erhältst du ein erstes Zertifikat, dass sich einfach in deinem Browser installiert. Dieses Zertifikat solltest du zur Sicherheit irgendwo speichern, so dass du es für einen neuen Browser neu installieren kannst, wenn du z.B. etwas erneuern musst. Dieses Authentifizierungszertifikat wird nur für das Login benötigt und hat nichts mit dem Zertifikat zu tun, dass du später für deinen Server benötigst. Als Anfänger mit StartSSL kannst du [hier starten](https://www.startssl.com/?lang=de) und die "Express Lane" nutzen, um dein Browser-Zertifikiat zu erhalten. Im nächsten Schritt kannst du die Einrichtung deines Zertifikats fortsetzen. +Wenn du dich erstmals bei StartSSL anmeldest, erhältst du ein erstes Zertifikat, dass sich einfach in deinem Browser installiert. +Dieses Zertifikat solltest du zur Sicherheit irgendwo speichern, so dass du es für einen neuen Browser neu installieren kannst, wenn du z.B. etwas erneuern musst. +Dieses Authentifizierungszertifikat wird nur für das Login benötigt und hat nichts mit dem Zertifikat zu tun, dass du später für deinen Server benötigst. +Als Anfänger mit StartSSL kannst du [hier starten](https://www.startssl.com/?lang=de) und die "Express Lane" nutzen, um dein Browser-Zertifikiat zu erhalten. +Im nächsten Schritt kannst du die Einrichtung deines Zertifikats fortsetzen. -Wenn du zuerst nach einer Domain für dein Zertifikat gefragt wirst, musst du die Top-Level-Domain angeben, nicht die Subdomain, die Friendica nutzt. Im nächsten Schritt kannst du dann die Subdomain spezifizieren. Wenn du also friendica.deinName.de auf deinem Server hast, musst du zuerst deinName.de angeben. +Wenn du zuerst nach einer Domain für dein Zertifikat gefragt wirst, musst du die Top-Level-Domain angeben, nicht die Subdomain, die Friendica nutzt. +Im nächsten Schritt kannst du dann die Subdomain spezifizieren. +Wenn du also friendica.deinName.de auf deinem Server hast, musst du zuerst deinName.de angeben. -Höre nicht zu früh auf, wenn du am Ende der Einrichtung dein persönliches Server-Zertifikat erhalten hast. Abhängig von deiner Server-Software benötigst du ein oder zwei generische Dateien, die du mit deinem kostenlosen StartSSL-Zertifikat nutzen musst. Diese Dateien sind sub.class1.server.ca.pem und ca.pem. Wenn du diesen Schritt bereits übersprungen hast, kannst du die Dateien hier finden: [http://www.startssl.com/?app=21](http://www.startssl.com/?app=21). Aber am besten funktioniert es, wenn du StartSSL nicht beendest, bevor du den Vorgang komplett abgeschlossen hast und dein https-Zertifikat hochgeladen ist und funktioniert. +Höre nicht zu früh auf, wenn du am Ende der Einrichtung dein persönliches Server-Zertifikat erhalten hast. +Abhängig von deiner Server-Software benötigst du ein oder zwei generische Dateien, die du mit deinem kostenlosen StartSSL-Zertifikat nutzen musst. +Diese Dateien sind sub.class1.server.ca.pem und ca.pem. +Wenn du diesen Schritt bereits übersprungen hast, kannst du die Dateien hier finden: [http://www.startssl.com/?app=21](http://www.startssl.com/?app=21). +Aber am besten funktioniert es, wenn du StartSSL nicht beendest, bevor du den Vorgang komplett abgeschlossen hast und dein https-Zertifikat hochgeladen ist und funktioniert. **Virtuelle private und dedizierte Server (mit StartSSL free)** -Der Rest dieses Dokuments ist etwas komplizierter, aber es ist auch nur für Personen, die Friendica auf einem virtuellen oder dedizierten Server nutzen. Jeder andere kann an dieser Stelle mit dem Lesen aufhören. +Der Rest dieses Dokuments ist etwas komplizierter, aber es ist auch nur für Personen, die Friendica auf einem virtuellen oder dedizierten Server nutzen. +Jeder andere kann an dieser Stelle mit dem Lesen aufhören. Folge den weiteren Anleitungen [hier](http://www.startssl.com/?app=20), um den Webserver, den du benutzt (z.B. Apache), für dein Zertifikat einzurichten. -Um die nötigen Schritte zu verdeutlichen, setzen wir nun voraus, dass Apache aktiv ist. Im Wesentlichen kannst du einfach einen zweiten httpd.conf-Eintrag für Friendica erstellen. +Um die nötigen Schritte zu verdeutlichen, setzen wir nun voraus, dass Apache aktiv ist. +Im Wesentlichen kannst du einfach einen zweiten httpd.conf-Eintrag für Friendica erstellen. Um das zu machen, kopiere den existierenden Eintrag und ändere das Ende der ersten Zeile auf "lesen" :443> anstelle von :80> und trage dann die folgenden Zeilen ein, wie du es auch in der Anleitung von StartSSL finden kannst: @@ -59,17 +86,27 @@ Um das zu machen, kopiere den existierenden Eintrag und ändere das Ende der ers CustomLog /usr/local/apache/logs/ssl_request_log \ "%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b" -(Beachte, dass das Verzeichnis /usr/local/apache/conf/ möglicherweise nicht in deinem System existiert. In Debian ist der Pfad bspw. /etc/apache2/, in dem du ein SSL-Unterverzeichnis erstellen kannst, wenn dieses noch nicht vorhanden ist. Dann hast du /etc/apache2/ssl/… statt /usr/local/apache/conf/…) +(Beachte, dass das Verzeichnis /usr/local/apache/conf/ möglicherweise nicht in deinem System existiert. +In Debian ist der Pfad bspw. /etc/apache2/, in dem du ein SSL-Unterverzeichnis erstellen kannst, wenn dieses noch nicht vorhanden ist. +Dann hast du /etc/apache2/ssl/… statt /usr/local/apache/conf/…) Du solltest nun zwei Einträgen für deine Friendica-Seite haben - einen für einfaches http und eines für https. -Ein Hinweis für diejenigen, die SSL steuern wollen: setze keine Weiterleitung deines SSL in deine Apache-Einstellung. Friendicas Admin-Panel hat eine spezielle Einstellung für die SSL-Methode. Bitte nutze diese Einstellungen. +Ein Hinweis für diejenigen, die SSL steuern wollen: setze keine Weiterleitung deines SSL in deine Apache-Einstellung. Friendicas Admin-Panel hat eine spezielle Einstellung für die SSL-Methode. +Bitte nutze diese Einstellungen. **Vermische Zertifikate in Apache – StartSSL und andere (selbst-signierte)** -Viele Leute nutzen einen virtuellen privaten oder einen dedizierten Server, um mehr als Friendica darauf laufen zu lassen. Sie wollen möglicherweise SSL auch für andere Seiten nutzen, die auf dem Server liegen. Um das zu erreichen, wollen sie mehrere Zertifikate für eine IP nutzen, z.B. ein Zertifikat eines anerkannten Anbieters für Friendica und ein selbst-signiertes für eine persönliche Inhalte (möglw. ein Wildcard-Zertifikat für mehrere Subdomains). +Viele Leute nutzen einen virtuellen privaten oder einen dedizierten Server, um mehr als Friendica darauf laufen zu lassen. +Sie wollen möglicherweise SSL auch für andere Seiten nutzen, die auf dem Server liegen. +Um das zu erreichen, wollen sie mehrere Zertifikate für eine IP nutzen, z.B. ein Zertifikat eines anerkannten Anbieters für Friendica und ein selbst-signiertes für eine persönliche Inhalte (möglw. ein Wildcard-Zertifikat für mehrere Subdomains). -Um das zum Laufen zu bringen, bietet Apache eine NameVirtualHost-Direktive. Du findest Informationen zur Nutzung in httpd.conf in den folgenden Ausschnitten. Beachte, dass Wildcards (*) in httpd.conf dazu führen, dass die NameVirtualHost-Methode nicht funktioniert; du kannst diese in dieser neuen Konfiguration nicht nutzen. Das bedeutet, dass *80> oder *443> nicht funktionieren. Und du musst unbedingt die IP definieren, selbst wenn du nur eine hast. Beachte außerdem, dass du bald zwei Zeilen zu Beginn der Datei hinzufügen musst, um NameVirtualHost für IPv6 vorzubereiten. +Um das zum Laufen zu bringen, bietet Apache eine NameVirtualHost-Direktive. +Du findest Informationen zur Nutzung in httpd.conf in den folgenden Ausschnitten. +Beachte, dass Wildcards (*) in httpd.conf dazu führen, dass die NameVirtualHost-Methode nicht funktioniert; du kannst diese in dieser neuen Konfiguration nicht nutzen. +Das bedeutet, dass *80> oder *443> nicht funktionieren. +Und du musst unbedingt die IP definieren, selbst wenn du nur eine hast. +Beachte außerdem, dass du bald zwei Zeilen zu Beginn der Datei hinzufügen musst, um NameVirtualHost für IPv6 vorzubereiten. NameVirtualHost 12.123.456.1:443 NameVirtualHost 12.123.456.1:80 @@ -102,17 +139,25 @@ Um das zum Laufen zu bringen, bietet Apache eine NameVirtualHost-Direktive. Du f -Natürlich kannst du auch andere Verzeichnisse auf deinem Server nutzen, um Apache zu konfigurieren. In diesem Fall müssen nur einige Zeilen in httpd.conf oder ports.conf angepasst werden - vor allem die NameVirtualHost-Zeilen. Aber wenn du sicher im Umgang mit solchen Alternativen bist, wirst du sicherlich die nötigen Anpassungen herausfinden. +Natürlich kannst du auch andere Verzeichnisse auf deinem Server nutzen, um Apache zu konfigurieren. +In diesem Fall müssen nur einige Zeilen in httpd.conf oder ports.conf angepasst werden - vor allem die NameVirtualHost-Zeilen. +Aber wenn du sicher im Umgang mit solchen Alternativen bist, wirst du sicherlich die nötigen Anpassungen herausfinden. Starte dein Apache abschließend neu. **StartSSL auf Nginx** -Führe zunächst ein Update auf den neuesten Friendica-Code durch. Folge dann der Anleitung oben, um dein kostenloses Zertifikat zu erhalten. Aber statt der Apache-Installationsanleitung zu folgen, mache das Folgende: +Führe zunächst ein Update auf den neuesten Friendica-Code durch. +Folge dann der Anleitung oben, um dein kostenloses Zertifikat zu erhalten. +Aber statt der Apache-Installationsanleitung zu folgen, mache das Folgende: -Lade dein Zertifikat hoch. Es ist nicht wichtig, wohin du es lädst, solange Nginx es finden kann. Einige Leute nutzen /home/verschiedeneNummernundBuchstaben, du kannst aber auch z.B. etwas wie /foo/bar nutzen. +Lade dein Zertifikat hoch. +Es ist nicht wichtig, wohin du es lädst, solange Nginx es finden kann. +Einige Leute nutzen /home/verschiedeneNummernundBuchstaben, du kannst aber auch z.B. etwas wie /foo/bar nutzen. -Du kannst das Passwort entfernen, wenn du willst. Es ist zwar möglicherweise nicht die beste Wahl, aber wenn du es nicht machst, wirst du das Passwort immer wieder eingeben müssen, wenn du Ngingx neustartest. Um es zu entfernen, gebe Folgendes ein: +Du kannst das Passwort entfernen, wenn du willst. +Es ist zwar möglicherweise nicht die beste Wahl, aber wenn du es nicht machst, wirst du das Passwort immer wieder eingeben müssen, wenn du Ngingx neustartest. +Um es zu entfernen, gebe Folgendes ein: openssl rsa -in ssl.key-pass -out ssl.key @@ -124,7 +169,8 @@ Nun vereinige die Dateien: cat ssl.crt sub.class1.server.ca.pem > ssl.crt -In manchen Konfigurationen ist ein Bug enthalten, weshalb diese Schritte nicht ordentlich arbeiten. Du musst daher ggf. ssl.crt bearbeiten: +In manchen Konfigurationen ist ein Bug enthalten, weshalb diese Schritte nicht ordentlich arbeiten. +Du musst daher ggf. ssl.crt bearbeiten: nano /foo/bar/ssl.crt @@ -138,7 +184,9 @@ Das ist schlecht. Du brauchst die folgenden Einträge: -----BEGIN CERTIFICATE----- -Du kannst den Zeilenumbruch manuell eingeben, falls dein System vom Bug betroffen ist. Beachte, dass nach -----BEGIN CERTIFICATE----- nur ein Zeilenumbruch ist. Es gibt keine leere Zeile zwischen beiden Einträgen. +Du kannst den Zeilenumbruch manuell eingeben, falls dein System vom Bug betroffen ist. +Beachte, dass nach -----BEGIN CERTIFICATE----- nur ein Zeilenumbruch ist. +Es gibt keine leere Zeile zwischen beiden Einträgen. Nun musst du Nginx über die Zertifikate informieren. @@ -166,4 +214,5 @@ Nun starte Nginx neu: Und das war es schon. -Für multiple Domains ist es mit Nginx einfacher als mit Apache. Du musst du oben genannten Schritte nur für jedes Zertifikat wiederholen und die spezifischen Informationen im eigenen {server...}-Bereich spezifizieren. \ No newline at end of file +Für multiple Domains ist es mit Nginx einfacher als mit Apache. +Du musst du oben genannten Schritte nur für jedes Zertifikat wiederholen und die spezifischen Informationen im eigenen {server...}-Bereich spezifizieren. diff --git a/doc/de/Settings.md b/doc/de/Settings.md index 68a6c89f8b..6bc238e269 100644 --- a/doc/de/Settings.md +++ b/doc/de/Settings.md @@ -3,7 +3,10 @@ Konfigurationen * [Zur Startseite der Hilfe](help) -Hier findest du einige eingebaute Features, welche kein graphisches Interface haben oder nicht dokumentiert sind. Konfigurationseinstellungen sind in der Datei ".htconfig.php" gespeichert. Bearbeite diese Datei, indem du sie z.B. mit einem Texteditor öffnest. Verschiedene Systemeinstellungen sind bereits in dieser Datei dokumentiert und werden hier nicht weiter erklärt. +Hier findest du einige eingebaute Features, welche kein graphisches Interface haben oder nicht dokumentiert sind. +Konfigurationseinstellungen sind in der Datei ".htconfig.php" gespeichert. +Bearbeite diese Datei, indem du sie z.B. mit einem Texteditor öffnest. +Verschiedene Systemeinstellungen sind bereits in dieser Datei dokumentiert und werden hier nicht weiter erklärt. **Tastaturbefehle** @@ -16,7 +19,9 @@ Friendica erfasst die folgenden Tastaturbefehle: **Geburtstagsbenachrichtigung** -Geburtstage erscheinen auf deiner Startseite für alle Freunde, die in den nächsten 6 Tagen Geburtstag haben. Um deinen Geburtstag für alle sichtbar zu machen, musst du deinen Geburtstag (zumindest Tag und Monat) in dein Standardprofil eintragen. Es ist nicht notwendig, das Jahr einzutragen. +Geburtstage erscheinen auf deiner Startseite für alle Freunde, die in den nächsten 6 Tagen Geburtstag haben. +Um deinen Geburtstag für alle sichtbar zu machen, musst du deinen Geburtstag (zumindest Tag und Monat) in dein Standardprofil eintragen. +Es ist nicht notwendig, das Jahr einzutragen. **Konfigurationseinstellungen** @@ -49,7 +54,13 @@ $a->config['system']['theme'] = 'theme-name'; Sicherheitseinstellungen -Standardmäßig erlaubt Friendica SSL-Kommunikation von Seiten, die "selbstunterzeichnete" SSL-Zertifikate nutzen. Um eine weitreichende Kompatibilität mit anderen Netzwerken und Browsern zu gewährleisten, empfehlen wir, selbstunterzeichnete Zertifikate **nicht** zu nutzen. Aber wir halten dich nicht davon ab, solche zu nutzen. SSL verschlüsselt alle Daten zwischen den Webseiten (und für deinen Browser), was dir eine komplett verschlüsselte Kommunikation erlaubt. Auch schützt es deine Login-Daten vor Datendiebstahl. Selbstunterzeichnete Zertifikate können kostenlos erstellt werden. Diese Zertifikate können allerdings Opfer eines sogenannten ["man-in-the-middle"-Angriffs](http://de.wikipedia.org/wiki/Man-in-the-middle-Angriff) werden, und sind daher weniger bevorzugt. Wenn du es wünscht, kannst du eine strikte Zertifikatabfrage einstellen. Das führt dazu, dass du keinerlei Verbindung zu einer selbstunterzeichneten SSL-Seite erstellen kannst +Standardmäßig erlaubt Friendica SSL-Kommunikation von Seiten, die "selbstunterzeichnete" SSL-Zertifikate nutzen. +Um eine weitreichende Kompatibilität mit anderen Netzwerken und Browsern zu gewährleisten, empfehlen wir, selbstunterzeichnete Zertifikate **nicht** zu nutzen. +Aber wir halten dich nicht davon ab, solche zu nutzen. SSL verschlüsselt alle Daten zwischen den Webseiten (und für deinen Browser), was dir eine komplett verschlüsselte Kommunikation erlaubt. +Auch schützt es deine Login-Daten vor Datendiebstahl. Selbstunterzeichnete Zertifikate können kostenlos erstellt werden. +Diese Zertifikate können allerdings Opfer eines sogenannten ["man-in-the-middle"-Angriffs](http://de.wikipedia.org/wiki/Man-in-the-middle-Angriff) werden, und sind daher weniger bevorzugt. +Wenn du es wünscht, kannst du eine strikte Zertifikatabfrage einstellen. +Das führt dazu, dass du keinerlei Verbindung zu einer selbstunterzeichneten SSL-Seite erstellen kannst Konfiguriere: ``` @@ -61,7 +72,8 @@ $a->config['system']['verifyssl'] = true; Kooperationen/Gemeinschaften/Bildung Erweiterung -Kommagetrennte Liste von Domains, welche eine Freundschaft mit dieser Seite eingehen dürfen. Wildcards werden akzeptiert (Wildcard-Unterstützung unter Windows benötigt PHP5.3) Standardmäßig sind alle gültigen Domains erlaubt. +Kommagetrennte Liste von Domains, welche eine Freundschaft mit dieser Seite eingehen dürfen. +Wildcards werden akzeptiert (Wildcard-Unterstützung unter Windows benötigt PHP5.3) Standardmäßig sind alle gültigen Domains erlaubt. Konfiguriere: ``` @@ -73,7 +85,9 @@ $a->config['system']['allowed_sites'] = "sitea.com, *siteb.com"; Kooperationen/Gemeinschaften/Bildung Erweiterung -Kommagetrennte Liste von Domains, welche bei der Registrierung als Part der Email-Adresse erlaubt sind. Das grenzt Leute aus, die nicht Teil der Gruppe oder Organisation sind. Wildcards werden akzeptiert (Wildcard-Unterstützung unter Windows benötigt PHP5.3) Standardmäßig sind alle gültigen Email-Adressen erlaubt. +Kommagetrennte Liste von Domains, welche bei der Registrierung als Part der Email-Adresse erlaubt sind. +Das grenzt Leute aus, die nicht Teil der Gruppe oder Organisation sind. +Wildcards werden akzeptiert (Wildcard-Unterstützung unter Windows benötigt PHP5.3) Standardmäßig sind alle gültigen Email-Adressen erlaubt. Konfiguriere: ``` @@ -84,7 +98,14 @@ $a->config['system']['allowed_email'] = "sitea.com, *siteb.com"; Kooperationen/Gemeinschaften/Bildung Erweiterung -Setze diese Einstellung auf "true" und sperre den öffentlichen Zugriff auf alle Seiten, solange man nicht eingeloggt ist. Das blockiert die Ansicht von Profilen, Freunden, Fotos, vom Verzeichnis und den Suchseiten. Ein Nebeneffekt ist, dass Einträge dieser Seite nicht im globalen Verzeichnis erscheinen. Wir empfehlen, speziell diese Einstellung auszuschalten (die Einstellung ist an anderer Stelle auf dieser Seite erklärt). Beachte: das ist speziell für Seiten, die beabsichtigen, von anderen Friendica-Netzwerken abgeschottet zu sein. Unautorisierte Personen haben ebenfalls nicht die Möglichkeit, Freundschaftsanfragen von Seitennutzern zu beantworten. Die Standardeinstellung steht auf "false". Verfügbar in Version 2.2 und höher. +Setze diese Einstellung auf "true" und sperre den öffentlichen Zugriff auf alle Seiten, solange man nicht eingeloggt ist. +Das blockiert die Ansicht von Profilen, Freunden, Fotos, vom Verzeichnis und den Suchseiten. +Ein Nebeneffekt ist, dass Einträge dieser Seite nicht im globalen Verzeichnis erscheinen. +Wir empfehlen, speziell diese Einstellung auszuschalten (die Einstellung ist an anderer Stelle auf dieser Seite erklärt). +Beachte: das ist speziell für Seiten, die beabsichtigen, von anderen Friendica-Netzwerken abgeschottet zu sein. +Unautorisierte Personen haben ebenfalls nicht die Möglichkeit, Freundschaftsanfragen von Seitennutzern zu beantworten. +Die Standardeinstellung steht auf "false". +Verfügbar in Version 2.2 und höher. Konfiguriere: ``` @@ -96,7 +117,9 @@ $a->config['system']['block_public'] = true; Kooperationen/Gemeinschaften/Bildung Erweiterung -Standardmäßig können Nutzer selbst auswählen, ob ihr Profil im Seitenverzeichnis erscheint. Diese Einstellung zwingt alle Nutzer dazu, im Verzeichnis zu erscheinen. Diese Einstellung kann vom Nutzer nicht deaktiviert werden. Die Standardeinstellung steht auf "false". +Standardmäßig können Nutzer selbst auswählen, ob ihr Profil im Seitenverzeichnis erscheint. +Diese Einstellung zwingt alle Nutzer dazu, im Verzeichnis zu erscheinen. +Diese Einstellung kann vom Nutzer nicht deaktiviert werden. Die Standardeinstellung steht auf "false". Konfiguriere: ``` @@ -108,7 +131,10 @@ $a->config['system']['publish_all'] = true; Kooperationen/Gemeinschaften/Bildung Erweiterung -Mit diesem Befehl wird die URL eingestellt, die zum Update des globalen Verzeichnisses genutzt wird. Dieser Befehl ist in der Standardkonfiguration enthalten. Der nichtdokumentierte Teil dieser Einstellung ist, dass das globale Verzeichnis gar nicht verfügbar ist, wenn diese Einstellung nicht gesetzt wird. Dies erlaubt eine private Kommunikation, die komplett vom globalen Verzeichnis isoliert ist. +Mit diesem Befehl wird die URL eingestellt, die zum Update des globalen Verzeichnisses genutzt wird. +Dieser Befehl ist in der Standardkonfiguration enthalten. +Der nichtdokumentierte Teil dieser Einstellung ist, dass das globale Verzeichnis gar nicht verfügbar ist, wenn diese Einstellung nicht gesetzt wird. +Dies erlaubt eine private Kommunikation, die komplett vom globalen Verzeichnis isoliert ist. Konfiguriere: ``` @@ -129,9 +155,11 @@ $a->config['system']['proxyuser'] = "username:password"; **Netzwerk-Timeout** -Legt fest, wie lange das Netzwerk warten soll, bevor ein Timeout eintritt. Der Wert wird in Sekunden angegeben. Standardmäßig ist 60 eingestellt; 0 steht für "unbegrenzt" (nicht empfohlen). +Legt fest, wie lange das Netzwerk warten soll, bevor ein Timeout eintritt. +Der Wert wird in Sekunden angegeben. Standardmäßig ist 60 eingestellt; 0 steht für "unbegrenzt" (nicht empfohlen). Konfiguriere: + ``` $a->config['system']['curl_timeout'] = 60; ``` @@ -139,9 +167,11 @@ $a->config['system']['curl_timeout'] = 60; **Banner/Logo** -Hiermit legst du das Banner der Seite fest. Standardmäßig ist das Friendica-Logo und der Name festgelegt. Du kannst hierfür HTML/CSS nutzen, um den Inhalt zu gestalten und/oder die Position zu ändern, wenn es nicht bereits voreingestellt ist. +Hiermit legst du das Banner der Seite fest. Standardmäßig ist das Friendica-Logo und der Name festgelegt. +Du kannst hierfür HTML/CSS nutzen, um den Inhalt zu gestalten und/oder die Position zu ändern, wenn es nicht bereits voreingestellt ist. Konfiguriere: + ``` $a->config['system']['banner'] = 'Meine tolle Webseite'; ``` @@ -152,6 +182,7 @@ $a->config['system']['banner'] = 'Meine tolle Webseiteconfig['system']['maximagesize'] = 1000000; ``` @@ -159,9 +190,13 @@ $a->config['system']['maximagesize'] = 1000000; **UTF-8 Reguläre Ausdrücke** -Während der Registrierung werden die Namen daraufhin geprüft, ob sie reguläre UTF-8-Ausdrücke nutzen. Hierfür wird PHP benötigt, um mit einer speziellen Einstellung kompiliert zu werden, die UTF-8-Ausdrücke benutzt. Wenn du absolut keine Möglichkeit hast, Accounts zu registrieren, setze den Wert von "no_utf" auf "true". Standardmäßig ist "false" eingestellt (das bedeutet, dass UTF-8-Ausdrücke unterstützt werden und funktionieren). +Während der Registrierung werden die Namen daraufhin geprüft, ob sie reguläre UTF-8-Ausdrücke nutzen. +Hierfür wird PHP benötigt, um mit einer speziellen Einstellung kompiliert zu werden, die UTF-8-Ausdrücke benutzt. +Wenn du absolut keine Möglichkeit hast, Accounts zu registrieren, setze den Wert von "no_utf" auf "true". +Standardmäßig ist "false" eingestellt (das bedeutet, dass UTF-8-Ausdrücke unterstützt werden und funktionieren). Konfiguriere: + ``` $a->config['system']['no_utf'] = true; ``` @@ -169,9 +204,13 @@ $a->config['system']['no_utf'] = true; **Prüfe vollständigen Namen** -Es kann vorkommen, dass viele Spammer versuchen, sich auf deiner Seite zu registrieren. In Testphasen haben wir festgestellt, dass diese automatischen Registrierungen das Feld "Vollständiger Name" oft nur mit Namen ausfüllen, die kein Leerzeichen beinhalten. Wenn du Leuten erlauben willst, sich nur mit einem Namen anzumelden, dann setze die Einstellung auf "true". Die Standardeinstellung ist auf "false" gesetzt. +Es kann vorkommen, dass viele Spammer versuchen, sich auf deiner Seite zu registrieren. +In Testphasen haben wir festgestellt, dass diese automatischen Registrierungen das Feld "Vollständiger Name" oft nur mit Namen ausfüllen, die kein Leerzeichen beinhalten. +Wenn du Leuten erlauben willst, sich nur mit einem Namen anzumelden, dann setze die Einstellung auf "true". +Die Standardeinstellung ist auf "false" gesetzt. Konfiguriere: + ``` $a->config['system']['no_regfullname'] = true; ``` @@ -179,7 +218,9 @@ $a->config['system']['no_regfullname'] = true; **OpenID** -Standardmäßig wird OpenID für die Registrierung und für Logins genutzt. Wenn du nicht willst, dass OpenID-Strukturen für dein System übernommen werden, dann setze "no_openid" auf "true". Standardmäßig ist hier "false" gesetzt. +Standardmäßig wird OpenID für die Registrierung und für Logins genutzt. +Wenn du nicht willst, dass OpenID-Strukturen für dein System übernommen werden, dann setze "no_openid" auf "true". +Standardmäßig ist hier "false" gesetzt. Konfiguriere: ``` @@ -189,7 +230,12 @@ $a->config['system']['no_openid'] = true; **Multiple Registrierungen** -Um mehrfache Seiten zu erstellen, muss sich eine Person mehrfach registrieren können. Deine Seiteneinstellung kann Registrierungen komplett blockieren oder an Bedingungen knüpfen. Standardmäßig können eingeloggte Nutzer weitere Accounts für die Seitenerstellung registrieren. Hier ist weiterhin eine Bestätigung notwendig, wenn "REGISTER_APPROVE" ausgewählt ist. Wenn du die Erstellung weiterer Accounts blockieren willst, dann setze die Einstellung "block_extended_register" auf "true". Standardmäßig ist hier "false" gesetzt. +Um mehrfache Seiten zu erstellen, muss sich eine Person mehrfach registrieren können. +Deine Seiteneinstellung kann Registrierungen komplett blockieren oder an Bedingungen knüpfen. +Standardmäßig können eingeloggte Nutzer weitere Accounts für die Seitenerstellung registrieren. +Hier ist weiterhin eine Bestätigung notwendig, wenn "REGISTER_APPROVE" ausgewählt ist. +Wenn du die Erstellung weiterer Accounts blockieren willst, dann setze die Einstellung "block_extended_register" auf "true". +Standardmäßig ist hier "false" gesetzt. Konfiguriere: ``` @@ -207,7 +253,9 @@ $a->config['system']['debugging'] = true; $a->config['system']['logfile'] = 'logfile.out'; $a->config['system']['loglevel'] = LOGGER_DEBUG; ``` -Erstellt detaillierte Debugging-Logfiles, die in der Datei "logfile.out" gespeichert werden (Datei muss auf dem Server mit Schreibrechten versehen sein). "LOGGER_DEBUG" zeigt eine Menge an Systeminformationen, enthält aber keine detaillierten Daten. Du kannst ebenfalls "LOGGER_ALL" auswählen, allerdings empfehlen wir dieses nur, wenn ein spezifisches Problem eingegrenzt werden soll. Andere Log-Level sind möglich, werden aber derzeit noch nicht genutzt. +Erstellt detaillierte Debugging-Logfiles, die in der Datei "logfile.out" gespeichert werden (Datei muss auf dem Server mit Schreibrechten versehen sein). "LOGGER_DEBUG" zeigt eine Menge an Systeminformationen, enthält aber keine detaillierten Daten. +Du kannst ebenfalls "LOGGER_ALL" auswählen, allerdings empfehlen wir dieses nur, wenn ein spezifisches Problem eingegrenzt werden soll. +Andere Log-Level sind möglich, werden aber derzeit noch nicht genutzt. **PHP-Fehler-Logging** @@ -222,5 +270,9 @@ ini_set('log_errors','1'); ini_set('display_errors', '0'); ``` -Diese Befehle erfassen alle PHP-Fehler in der Datei "php.out" (Datei muss auf dem Server mit Schreibrechten versehen sein). Nicht deklarierte Variablen werden manchmal mit einem Verweis versehen, weshalb wir empfehlen, "E_NOTICE" und "E_ALL" nicht zu nutzen. Die Menge an Fehlern, die auf diesem Level gemeldet werden, ist komplett harmlos. Bitte informiere die Entwickler über alle Fehler, die du in deinen Log-Dateien mit den oben genannten Einstellungen erhältst. Sie weisen generell auf Fehler in, die bearbeitet werden müssen. +Diese Befehle erfassen alle PHP-Fehler in der Datei "php.out" (Datei muss auf dem Server mit Schreibrechten versehen sein). +Nicht deklarierte Variablen werden manchmal mit einem Verweis versehen, weshalb wir empfehlen, "E_NOTICE" und "E_ALL" nicht zu nutzen. +Die Menge an Fehlern, die auf diesem Level gemeldet werden, ist komplett harmlos. +Bitte informiere die Entwickler über alle Fehler, die du in deinen Log-Dateien mit den oben genannten Einstellungen erhältst. +Sie weisen generell auf Fehler in, die bearbeitet werden müssen. Wenn du eine leere (weiße) Seite erhältst, schau in die PHP-Log-Datei - dies deutet fast immer darauf hin, dass ein Fehler aufgetreten ist. diff --git a/doc/de/Tags-and-Mentions.md b/doc/de/Tags-and-Mentions.md index 0aef0beaeb..c085db7f4e 100644 --- a/doc/de/Tags-and-Mentions.md +++ b/doc/de/Tags-and-Mentions.md @@ -20,15 +20,24 @@ Personen, die in einem anderen Netzwerk sind oder die sich **NICHT in deiner Kon * @mike@macgirvin.com - diese Schreibweise wird "Fernerwähnung" (remote mention)genannt und kann nur im Email-Stil geschrieben werden, nicht als Internetadresse/URL. -Wenn das System ungewollte Erwähnungen nicht blockiert, erhält diese Person eine Mitteilung oder nimmt direkt an der Diskussion teil, wenn es sich um einen öffentlichen Beitrag handelt. Bitte beachte, dass Friendica eingehende "Erwähnungs"-Nachrichten von Personen blockt, die du nicht zu deinem Profil hinzugefügt hast. Diese Maßnahme dient dazu, Spam zu vermeiden. +Wenn das System ungewollte Erwähnungen nicht blockiert, erhält diese Person eine Mitteilung oder nimmt direkt an der Diskussion teil, wenn es sich um einen öffentlichen Beitrag handelt. +Bitte beachte, dass Friendica eingehende "Erwähnungs"-Nachrichten von Personen blockt, die du nicht zu deinem Profil hinzugefügt hast. +Diese Maßnahme dient dazu, Spam zu vermeiden. -"Fernerwähnungen" werden durch das OStatus-Protokoll übermittelt. Dieses Protokoll wird von Friendica, StatusNet und anderen Systemen genutzt, ist allerdings derzeit nicht in Diaspora eingebaut. +"Fernerwähnungen" werden durch das OStatus-Protokoll übermittelt. +Dieses Protokoll wird von Friendica, StatusNet und anderen Systemen genutzt, ist allerdings derzeit nicht in Diaspora eingebaut. Friendica unterscheidet bei Tags nicht zwischen Personen und Gruppen (einige andere Netzwerke nutzen "!gruppe", um solche zu markieren). **Thematische Tags** -Thematische Tags werden durch eine "#" gekennzeichnet. Dieses Zeichen erstellen einen Link zur allgemeinen Seitensuche mit dem ausgewählten Begriff. So wird z.B. #Autos zu einer Suche führen, die alle Beiträge deiner Seite umfasst, die dieses Wort erwähnen. Thematische Tags haben generell eine Mindestlänge von 3 Stellen. Kürzere Suchbegriffe finden meist keine Suchergebnisse, wobei dieses abhängig von der Datenbankeinstellung ist. Tags mit einem Leerzeichen werden, wie es auch bei Namen der Fall ist, durch einen Unterstrich gekennzeichnet. Es ist hingegen nicht möglich, Tags zu erstellen, deren gesuchtes Wort einen Unterstrich enthält. +Thematische Tags werden durch eine "#" gekennzeichnet. +Dieses Zeichen erstellen einen Link zur allgemeinen Seitensuche mit dem ausgewählten Begriff. +So wird z.B. #Autos zu einer Suche führen, die alle Beiträge deiner Seite umfasst, die dieses Wort erwähnen. +Thematische Tags haben generell eine Mindestlänge von 3 Stellen. +Kürzere Suchbegriffe finden meist keine Suchergebnisse, wobei dieses abhängig von der Datenbankeinstellung ist. +Tags mit einem Leerzeichen werden, wie es auch bei Namen der Fall ist, durch einen Unterstrich gekennzeichnet. +Es ist hingegen nicht möglich, Tags zu erstellen, deren gesuchtes Wort einen Unterstrich enthält. Thematische Tags werden auch dann nicht verlinkt, wenn sie nur aus Nummern bestehen, wie z.B. #1. Wenn du einen numerischen Tag nutzen willst, füge bitte einen Beschreibungstext hinzu wie z.B. #2012_Wahl. diff --git a/doc/de/Text_comment.md b/doc/de/Text_comment.md index 5c3d3d4e46..88e5e0b119 100644 --- a/doc/de/Text_comment.md +++ b/doc/de/Text_comment.md @@ -3,35 +3,49 @@ Beiträge kommentieren, einordnen und löschen * [Zur Startseite der Hilfe](help) -Hier findest du eine Übersicht über die verschiedenen Möglichkeiten, bestehende Beiträge einzuordnen und zu kommentieren. Achtung: für dieses Beispiel wurde das Thema "Diabook" genutzt. Wenn du ein anderes Design benutzt, wirst du manche dieser Symbole gar nicht oder in anderer Form vorfinden. +Hier findest du eine Übersicht über die verschiedenen Möglichkeiten, bestehende Beiträge einzuordnen und zu kommentieren. + +Achtung: für dieses Beispiel wurde das Thema "Diabook" genutzt. +Wenn du ein anderes Design benutzt, wirst du manche dieser Symbole gar nicht oder in anderer Form vorfinden. diabook Die einzelnen Symbole -post_thumbs_up.png Mit diesem Symbol kannst du zeigen, dass dir ein Beitrag gefällt. Falls du diese Eingabe zurücknehmen willst, klicke einfach ein zweites Mal auf das Symbol. +post_thumbs_up.png Mit diesem Symbol kannst du zeigen, dass dir ein Beitrag gefällt. +Falls du diese Eingabe zurücknehmen willst, klicke einfach ein zweites Mal auf das Symbol.

      -post_thumbs_down.png Mit diesem Symbol kannst du zeigen, dass dir ein Beitrag nicht gefällt. Falls du diese Eingabe zurücknehmen willst, klicke einfach ein zweites Mal auf das Symbol. +post_thumbs_down.png Mit diesem Symbol kannst du zeigen, dass dir ein Beitrag nicht gefällt. +Falls du diese Eingabe zurücknehmen willst, klicke einfach ein zweites Mal auf das Symbol.

      -post_share.png Mit diesem Symbol kannst du einen Beitrag weiter verteilen. Einfach anklicken und sofort erscheint der Beitrag in deinem Beitragseditor. Am Ende des eingefügten Beitrags erscheint ein Link zum Originalbeitrag. +post_share.png Mit diesem Symbol kannst du einen Beitrag weiter verteilen. +Einfach anklicken und sofort erscheint der Beitrag in deinem Beitragseditor. +Am Ende des eingefügten Beitrags erscheint ein Link zum Originalbeitrag.

      -post_mark.png Mit diesem Symbol kannst du einen Beitrag für dich markieren. Markierte Beiträge erscheinen in deiner Netzwerk-Seite unter "Markierte". Wenn du die Markierung entfernen willst, klicke einfach ein zweites Mal auf das Symbol. +post_mark.png Mit diesem Symbol kannst du einen Beitrag für dich markieren. +Markierte Beiträge erscheinen in deiner Netzwerk-Seite unter "Markierte". +Wenn du die Markierung entfernen willst, klicke einfach ein zweites Mal auf das Symbol.

      -post_tag.png Mit diesem Symbol kannst du einen tag zum Beitrag hinzufügen und diesen so einem bestimmten Schlagwort zuzuordnen. Anschließend kannst du auf diesen tag klicken und alle Beiträge mit diesem tag ansehen. ACHTUNG: tags können nicht mehr entfernt werden. +post_tag.png Mit diesem Symbol kannst du einen tag zum Beitrag hinzufügen und diesen so einem bestimmten Schlagwort zuzuordnen. +Anschließend kannst du auf diesen tag klicken und alle Beiträge mit diesem tag ansehen. +ACHTUNG: tags können nicht mehr entfernt werden.

      -post_categorize.png Mit diesem Symbol ist es möglich, die Beiträge in bestimmte Gruppen einzuordnen. Dies dient dazu, gewählte Beiträge nach eigenen Vorstellungen zu sortieren und wieder zu finden. Wähle eine vorhandene Gruppe oder gib einen neuen Namen ein. Die erstellten Gruppen findest du unter "Gespeicherte Ordner" in der Netzwerk-Ansicht. +post_categorize.png Mit diesem Symbol ist es möglich, die Beiträge in bestimmte Gruppen einzuordnen. +Dies dient dazu, gewählte Beiträge nach eigenen Vorstellungen zu sortieren und wieder zu finden. +Wähle eine vorhandene Gruppe oder gib einen neuen Namen ein. Die erstellten Gruppen findest du unter "Gespeicherte Ordner" in der Netzwerk-Ansicht.

      post_delete.png Mit diesem Symbol löschst du deinen eigenen Beitrag bzw. entfernst einen Beitrag einer anderen Person aus deinem Stream.

      -post_choose.png Mit diesem Symbol kannst du mehrere Beiträge auswählen und gesammelt löschen. Hierfür gehst du nach dem Markieren aller gewünschten Beiträge auf "Lösche die markierten Beiträge" am Ende der Seite mit allen Beiträgen. +post_choose.png Mit diesem Symbol kannst du mehrere Beiträge auswählen und gesammelt löschen. +Hierfür gehst du nach dem Markieren aller gewünschten Beiträge auf "Lösche die markierten Beiträge" am Ende der Seite mit allen Beiträgen.

      **Im Folgenden findest du Symbole weiterer Themen** diff --git a/doc/de/Text_editor.md b/doc/de/Text_editor.md index 7425ba1ae6..0d9fbb5c74 100644 --- a/doc/de/Text_editor.md +++ b/doc/de/Text_editor.md @@ -3,29 +3,43 @@ Beiträge erstellen * [Zur Startseite der Hilfe](help) -Hier findest du eine Übersicht über die verschiedenen Möglichkeiten, deinen Beitrag zu bearbeiten. Achtung: für dieses Beispiel wurde das Thema "Diabook" genutzt. Wenn du ein anderes Design benutzt, wirst du manche dieser Symbole gar nicht oder in anderer Form vorfinden. +Hier findest du eine Übersicht über die verschiedenen Möglichkeiten, deinen Beitrag zu bearbeiten. + +Achtung: für dieses Beispiel wurde das Thema "Diabook" genutzt. +Wenn du ein anderes Design benutzt, wirst du manche dieser Symbole gar nicht oder in anderer Form vorfinden. editor Die einzelnen Symbole -editor Wenn du auf dieses Symbol klickst, dann kannst du ein Bild von deinem Computer hinzufügen. Wenn du eine Internetadresse (URL) eingeben willst, dann kannst du das "Baum"-Symbol im oberen Teil des Editors nutzen. Wenn du ein Bild ausgewählt hast, dann erscheint eine Miniaturdarstellung des Bildes im Editor.* +editor Wenn du auf dieses Symbol klickst, dann kannst du ein Bild von deinem Computer hinzufügen. +Wenn du eine Internetadresse (URL) eingeben willst, dann kannst du das "Baum"-Symbol im oberen Teil des Editors nutzen. +Wenn du ein Bild ausgewählt hast, dann erscheint eine Miniaturdarstellung des Bildes im Editor.*

      paper_clip Wenn du dieses Symbol anklickst, dann kannst du weitere Dateien von deinem Computer einfügen. Eine Vorschau des Dateiinhalts erfolgt nicht.*

      -chain Wenn du die Kette anklickst, dann kannst du eine Internetadresse (URL) einfügen. Im Editor erscheint automatisch eine kurze Information zum eingefügten Link.* +chain Wenn du die Kette anklickst, dann kannst du eine Internetadresse (URL) einfügen. +Im Editor erscheint automatisch eine kurze Information zum eingefügten Link.*

      -video Mit dieser Funktion kannst du die Internetadresse (URL) einer Videodatei einfügen. Das Video erscheint dann mit einem Player in deinem Beitrag. Da Friendica zur Einbindung [HTML5](http://en.wikipedia.org/wiki/HTML5_video) verwendet, werden je nach Browser verschiedene Videoformate unterstützt (z.B. WebM oder MP4). Außerdem kannst du hier die URLs von Videos auf Youtube, Vimeo und manchen anderen Videohostern eingeben. Die Videos werden dann mit Vorschaubild angezeigt, nach einem Klick öffnet sich ein eingebetteter Player.* +video Mit dieser Funktion kannst du die Internetadresse (URL) einer Videodatei einfügen. +Das Video erscheint dann mit einem Player in deinem Beitrag. +Da Friendica zur Einbindung [HTML5](http://en.wikipedia.org/wiki/HTML5_video) verwendet, werden je nach Browser verschiedene Videoformate unterstützt (z.B. WebM oder MP4). +Außerdem kannst du hier die URLs von Videos auf Youtube, Vimeo und manchen anderen Videohostern eingeben. +Die Videos werden dann mit Vorschaubild angezeigt, nach einem Klick öffnet sich ein eingebetteter Player.*

      -mic Mit dieser Funktion kannst du die Internetadresse (URL) einer Sound-Datei einfügen. Da Friendica zur Einbindung [HTML5](http://en.wikipedia.org/wiki/HTML5_video) verwendet, werden je nach Browser und Betriebssystem MP3, Ogg oder AAC unterstützt. Außerdem kannst du hier auch URLs von manchen Audiohostern wie Soundcloud eingeben, um eine dort gespeicherte Audiodatei mit Player in deinem Beitrag anzuzeigen.* +mic Mit dieser Funktion kannst du die Internetadresse (URL) einer Sound-Datei einfügen. +Da Friendica zur Einbindung [HTML5](http://en.wikipedia.org/wiki/HTML5_video) verwendet, werden je nach Browser und Betriebssystem MP3, Ogg oder AAC unterstützt. +Außerdem kannst du hier auch URLs von manchen Audiohostern wie Soundcloud eingeben, um eine dort gespeicherte Audiodatei mit Player in deinem Beitrag anzuzeigen.*

      -globe Wenn du dieses Symbol wählst, dann kannst du deinen Standort festlegen. Hier reicht schon eine Angabe wie "Berlin" oder "10775". Dieser Eintrag führt anschließend zu einer Suchanfrage bei Google Maps. +globe Wenn du dieses Symbol wählst, dann kannst du deinen Standort festlegen. +Hier reicht schon eine Angabe wie "Berlin" oder "10775". +Dieser Eintrag führt anschließend zu einer Suchanfrage bei Google Maps.

      * wie du Dateien hochladen kannst, erfährst du [hier](help/FAQ#upload) diff --git a/doc/de/groupsandpages.md b/doc/de/groupsandpages.md index 0b5f1fcedd..d5b8e7f691 100644 --- a/doc/de/groupsandpages.md +++ b/doc/de/groupsandpages.md @@ -3,11 +3,21 @@ Gruppen und Seiten * [Zur Startseite der Hilfe](help) -Hier siehst du das globale Verzeichnis. Wenn du dich mal verirrt hast, kannst du diesen Link klicken und wieder hierher kommen. +Hier siehst du das globale Verzeichnis. +Wenn du dich mal verirrt hast, kannst du diesen Link klicken und wieder hierher kommen. -Auf dieser Seite findest du eine Zusammenstellung von Gruppen, Foren und bekannten Seiten. Gruppen sind keine realen Personen. Sich mit diesen zu verbinden ist, als wenn man jemanden auf Facebook "liked" ("gefällt mir") oder wenn man sich in einem Forum anmeldet. Habe keine Sorge, falls du dich unbehaglich fühlst, wenn du dich einer neuen Person vorstellen sollst, da es sich nicht um Personen handelt. +Auf dieser Seite findest du eine Zusammenstellung von Gruppen, Foren und bekannten Seiten. +Gruppen sind keine realen Personen. +Sich mit diesen zu verbinden ist, als wenn man jemanden auf Facebook "liked" ("gefällt mir") oder wenn man sich in einem Forum anmeldet. +Habe keine Sorge, falls du dich unbehaglich fühlst, wenn du dich einer neuen Person vorstellen sollst, da es sich nicht um Personen handelt. -Wenn du dich mit einer Gruppe verbindest, erscheinen alle Nachrichten der Gruppe in deinem "Netzwerk"-Tab. Du kannst diese Beiträge kommentieren oder selbst in der Gruppe schreiben, ohne eine der Gruppenmitglieder persönlich hinzuzufügen. Das ist ein großartiger Weg, dynamisch neue Freunde zu gewinnen. Du findest Personen, die du magst, anstatt Fremde hinzuzufügen. Suche dir einfach eine Gruppe und füge sie so hinzu, wie du auch normale Freunde hinzufügst. Es gibt eine Menge Gruppen und möglicherweise findest du nicht wieder zu dieser Seite zurück. In diesem Fall nutze einfach den Link oben auf dieser Seite. +Wenn du dich mit einer Gruppe verbindest, erscheinen alle Nachrichten der Gruppe in deinem "Netzwerk"-Tab. +Du kannst diese Beiträge kommentieren oder selbst in der Gruppe schreiben, ohne eine der Gruppenmitglieder persönlich hinzuzufügen. +Das ist ein großartiger Weg, dynamisch neue Freunde zu gewinnen. +Du findest Personen, die du magst, anstatt Fremde hinzuzufügen. +Suche dir einfach eine Gruppe und füge sie so hinzu, wie du auch normale Freunde hinzufügst. +Es gibt eine Menge Gruppen und möglicherweise findest du nicht wieder zu dieser Seite zurück. +In diesem Fall nutze einfach den Link oben auf dieser Seite. Wenn du einige Gruppen hinzugefügt hast, gehe weiter zum nächsten Schritt. diff --git a/doc/de/guide.md b/doc/de/guide.md index a5ce54a1dc..fde9cb8ea4 100644 --- a/doc/de/guide.md +++ b/doc/de/guide.md @@ -3,13 +3,22 @@ Erste Schritte... * [Zur Startseite der Hilfe](help) -Das Erste zum Anfang: geh sicher, dass du schon eingeloggt bist. Wenn du noch nicht eingeloggt bist, kannst du das in dem Fenster unten machen. +Das Erste zum Anfang: geh sicher, dass du schon eingeloggt bist. +Wenn du noch nicht eingeloggt bist, kannst du das in dem Fenster unten machen. Sobald du eingeloggt bist (oder wenn du bereits eingeloggt bist), kannst du unten nun auf deine Profilseite schauen. -Hier sieht es ein wenig wie auf deiner Facebook-Seite aus. Hier findest du alle deine Statusmeldungen und Nachrichten deiner Freunde, die direkt auf deine Seite ("Wall") geschrieben haben. Um deinen Status einzutragen, klicke einfach auf die Box oben, in der "Teilen" steht. Wenn du das machst, vergrößert sich die Box. Nun kannst du einige Formatierungsoptionen wie Fett, kursiv, unterstrichen auswählen und ebenfalls Bilder und Links hinzufügen. Unten findest du in diesem Feld weitere Links, mit denen du Bilder und Dateien von deinem Computer hochladen, Webseiten mit einem Kurztext teilen und Video- und Audiodateien aus dem Internet einfügen kannst. Außerdem kannst du hier eintragen, wo du gerade bist. +Hier sieht es ein wenig wie auf deiner Facebook-Seite aus. +Hier findest du alle deine Statusmeldungen und Nachrichten deiner Freunde, die direkt auf deine Seite ("Wall") geschrieben haben. +Um deinen Status einzutragen, klicke einfach auf die Box oben, in der "Teilen" steht. +Wenn du das machst, vergrößert sich die Box. +Nun kannst du einige Formatierungsoptionen wie Fett, kursiv, unterstrichen auswählen und ebenfalls Bilder und Links hinzufügen. +Unten findest du in diesem Feld weitere Links, mit denen du Bilder und Dateien von deinem Computer hochladen, Webseiten mit einem Kurztext teilen und Video- und Audiodateien aus dem Internet einfügen kannst. +Außerdem kannst du hier eintragen, wo du gerade bist. -Wenn du deinen Beitrag ("Post") geschrieben hast, kannst du auf das "Schloss"-Symbol klicken und festlegen, wer deinen Beitrag sehen kann. Wenn du dieses Symbol nicht anklickst, ist dein Beitrag öffentlich. Das bedeutet, dass jeder, der dein Profil ansieht, der auf dem "Community"-Tab deines Servers oder auf dem "Netzwerk"-Tab ("Beiträge deiner Kontakte") eines befreundeten Kontakts ist, den Beitrag sehen kann. +Wenn du deinen Beitrag ("Post") geschrieben hast, kannst du auf das "Schloss"-Symbol klicken und festlegen, wer deinen Beitrag sehen kann. +Wenn du dieses Symbol nicht anklickst, ist dein Beitrag öffentlich. +Das bedeutet, dass jeder, der dein Profil ansieht, der auf dem "Community"-Tab deines Servers oder auf dem "Netzwerk"-Tab ("Beiträge deiner Kontakte") eines befreundeten Kontakts ist, den Beitrag sehen kann. Probiere es doch einfach mal aus. Wenn du fertg bist, schauen wir uns den "Netzwerk"-Tab an. diff --git a/doc/de/makingnewfriends.md b/doc/de/makingnewfriends.md index 911b7f4a89..8b15cec900 100644 --- a/doc/de/makingnewfriends.md +++ b/doc/de/makingnewfriends.md @@ -3,13 +3,24 @@ Neue Freunde finden * [Zur Startseite der Hilfe](help) -Hier siehst du die Kontaktvorschläge. Wenn du dich mal verirrt hast, kannst du diesen Link klicken und wieder hierher kommen. +Hier siehst du die Kontaktvorschläge. +Wenn du dich mal verirrt hast, kannst du diesen Link klicken und wieder hierher kommen. -Diese Seite ist ein wenig wie die Kontaktvorschläge in Facebook. Jeder auf dieser Liste hat zugestimmt, als Kontaktvorschlag zu erscheinen. Das bedeutet, das sie Anfragen meist nicht ablehnen, da sie neue Leute kennenlernen wollen. +Diese Seite ist ein wenig wie die Kontaktvorschläge in Facebook. +Jeder auf dieser Liste hat zugestimmt, als Kontaktvorschlag zu erscheinen. +Das bedeutet, das sie Anfragen meist nicht ablehnen, da sie neue Leute kennenlernen wollen. -Siehst du jemanden, dessen Aussehen du magst? Klicke auf den "Verbinden"-Button beim Foto. Als nächstes kommst du zur Seite "Freundschafts-/Kontaktanfrage". Fülle das Formular wie vorgegeben aus und trage optional eine kleine Notiz ein. Nun musst du nur noch auf die Bestätigung warten. Beachte dabei, dass es sich um reale Personen handelt und es somit etwas dauern kann. Jetzt, nachdem du jemanden hinzugefügt hast, weißt du vielleicht nicht mehr, wie du zurückkommst. Klicke einfach auf den Link oben auf dieser Seite und du kommst zurück zur Seite mit den Kontaktvorschlägen, um weitere Personen hinzuzufügen. +Siehst du jemanden, dessen Aussehen du magst? +Klicke auf den "Verbinden"-Button beim Foto. +Als nächstes kommst du zur Seite "Freundschafts-/Kontaktanfrage". +Fülle das Formular wie vorgegeben aus und trage optional eine kleine Notiz ein. +Nun musst du nur noch auf die Bestätigung warten. +Beachte dabei, dass es sich um reale Personen handelt und es somit etwas dauern kann. +Jetzt, nachdem du jemanden hinzugefügt hast, weißt du vielleicht nicht mehr, wie du zurückkommst. +Klicke einfach auf den Link oben auf dieser Seite und du kommst zurück zur Seite mit den Kontaktvorschlägen, um weitere Personen hinzuzufügen. -Du willst nicht einfach Personen hinzufügen, die du nicht kennst? Kein Problem - an dieser Stelle kommen wir zu den Gruppen und Seiten. +Du willst nicht einfach Personen hinzufügen, die du nicht kennst? +Kein Problem - an dieser Stelle kommen wir zu den Gruppen und Seiten. diff --git a/doc/de/network.md b/doc/de/network.md index 37eeec869d..1544553198 100644 --- a/doc/de/network.md +++ b/doc/de/network.md @@ -3,11 +3,17 @@ Deine "Netzwerk"-Seite * [Zur Startseite der Hilfe](help) -Das ist dein "Netzwerk"-Tab. Wenn du dich mal verirrt hast, kannst du diesen Link klicken, um wieder hierher zu kommen. +Das ist dein "Netzwerk"-Tab. +Wenn du dich mal verirrt hast, kannst du diesen Link klicken, um wieder hierher zu kommen. -Diese Seite ist ein wenig wie die News-Seite in Facebook oder der Stream in Diaspora. Hier findest du alle Beiträge deiner Kontakte, Gruppen und Feeds, die du eingetragen hast. Wenn du neu bist, siehst du hier noch nichts, falls du deinen Status im letzten Schritt noch nicht eingetragen hast. Wenn du bereits ein paar Freunde eingetragen hast, findest du hier ihre Beiträge. Hier kannst du Beiträge kommentieren, eintragen, dass du den Beitrag magst oder ablehnst oder die Profile durch einen Klick auf deren Namen anschauen und auf deren Seite ("Wall") Nachrichten schreiben. +Diese Seite ist ein wenig wie die News-Seite in Facebook oder der Stream in Diaspora. +Hier findest du alle Beiträge deiner Kontakte, Gruppen und Feeds, die du eingetragen hast. +Wenn du neu bist, siehst du hier noch nichts, falls du deinen Status im letzten Schritt noch nicht eingetragen hast. +Wenn du bereits ein paar Freunde eingetragen hast, findest du hier ihre Beiträge. +Hier kannst du Beiträge kommentieren, eintragen, dass du den Beitrag magst oder ablehnst oder die Profile durch einen Klick auf deren Namen anschauen und auf deren Seite ("Wall") Nachrichten schreiben. -Nun wollen wir diese Seite mit Inhalt füllen. Der erste Schritt ist es, Leute zu deinem Account hinzuzufügen. +Nun wollen wir diese Seite mit Inhalt füllen. +Der erste Schritt ist es, Leute zu deinem Account hinzuzufügen. From 20fc0e52851e121ec47eabc5f788116a6e1a74da Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 25 Apr 2015 00:50:48 +0200 Subject: [PATCH 085/306] Don't generate a preview in an item from Diaspora if it is a posting from red matrix. --- include/diaspora.php | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/include/diaspora.php b/include/diaspora.php index 689f5765b3..a6e341729c 100755 --- a/include/diaspora.php +++ b/include/diaspora.php @@ -779,6 +779,10 @@ function diaspora_post_allow($importer,$contact) { return false; } +function diaspora_is_redmatrix($url) { + return(strstr($url, "/channel/")); +} + function diaspora_plink($addr, $guid) { $r = q("SELECT `url`, `nick` FROM `fcontact` WHERE `addr`='%s' LIMIT 1", $addr); @@ -786,7 +790,7 @@ function diaspora_plink($addr, $guid) { if (!$r) return 'https://'.substr($addr,strpos($addr,'@')+1).'/posts/'.$guid; - if (strstr($r[0]["url"], "/channel/")) + if (diaspora_is_redmatrix($r[0]["url"])) return $r[0]["url"]."/?f=&mid=".$guid; return 'https://'.substr($addr,strpos($addr,'@')+1).'/posts/'.$guid; @@ -841,7 +845,8 @@ function diaspora_post($importer,$xml,$msg) { $body = diaspora2bb($xml->raw_message); // Add OEmbed and other information to the body - $body = add_page_info_to_body($body, false, true); + if (!diaspora_is_redmatrix($contact['url'])) + $body = add_page_info_to_body($body, false, true); $datarray = array(); From 8e19d36d27c49dc4e1e18710cce41337fc712e33 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 25 Apr 2015 11:08:53 +0200 Subject: [PATCH 086/306] Exchanged the hard coded comparism with the new function. --- object/Item.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/object/Item.php b/object/Item.php index eac4697f91..aa9792b159 100644 --- a/object/Item.php +++ b/object/Item.php @@ -82,6 +82,7 @@ class Item extends BaseObject { */ public function get_template_data($alike, $dlike, $thread_level=1) { require_once("mod/proxy.php"); + require_once("include/diaspora.php"); $result = array(); @@ -300,7 +301,7 @@ class Item extends BaseObject { // Diaspora isn't able to do likes on comments - but red does if (($item["item_network"] == NETWORK_DIASPORA) AND ($indent == 'comment') AND - !strstr($item["owner-link"], "/channel/") AND isset($buttons["like"])) + !diaspora_is_redmatrix($item["owner-link"]) AND isset($buttons["like"])) unset($buttons["like"]); // Facebook can like comments - but it isn't programmed in the connector yet. From e9dd3b38f31d1aecbd71ccdcf022f2378bf85ece Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Sat, 25 Apr 2015 11:18:30 +0200 Subject: [PATCH 087/306] DE update to the strings --- view/de/messages.po | 4 ++-- view/de/strings.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/view/de/messages.po b/view/de/messages.po index 648f00a12e..860087e670 100644 --- a/view/de/messages.po +++ b/view/de/messages.po @@ -31,7 +31,7 @@ msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-04-04 17:54+0200\n" -"PO-Revision-Date: 2015-04-08 10:03+0000\n" +"PO-Revision-Date: 2015-04-25 08:59+0000\n" "Last-Translator: bavatar \n" "Language-Team: German (http://www.transifex.com/projects/p/friendica/language/de/)\n" "MIME-Version: 1.0\n" @@ -3408,7 +3408,7 @@ 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? \"Freund\" bedeutet, ihr gegenseitig die Beiträge des Anderen lesen dürft. \"Fan/Verehrer\", das du das lesen deiner Beiträge erlaubst aber nicht die Beiträge der anderen Seite lesen möchtest. Genehmigen als:" +msgstr "Soll Deine Beziehung beidseitig sein oder nicht? \"Freund\" 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:" #: ../../mod/notifications.php:185 msgid "" diff --git a/view/de/strings.php b/view/de/strings.php index 6b68f1de2e..d67eb1b79e 100644 --- a/view/de/strings.php +++ b/view/de/strings.php @@ -771,7 +771,7 @@ $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? \"Freund\" bedeutet, ihr gegenseitig die Beiträge des Anderen lesen dürft. \"Fan/Verehrer\", das 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. \"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? \"Freund\" 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? \"Freund\" 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"] = "Freund"; $a->strings["Sharer"] = "Teilenden"; From 5368fbba8243d22488b60e4d3768d48729ef9097 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 26 Apr 2015 13:25:04 +0200 Subject: [PATCH 088/306] Bugfix: The android app will have readable notifications again. --- mod/ping.php | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/mod/ping.php b/mod/ping.php index 15e7dfab15..a475c558c7 100644 --- a/mod/ping.php +++ b/mod/ping.php @@ -13,7 +13,7 @@ function ping_init(&$a) { if(local_user()){ - // Different login session than the page that is calling us. + // Different login session than the page that is calling us. if(intval($_GET['uid']) && intval($_GET['uid']) != local_user()) { echo '1'; @@ -22,7 +22,10 @@ function ping_init(&$a) { $firehose = intval(get_pconfig(local_user(),'system','notify_full')); - $z = ping_get_notifications(local_user()); + // Are the nofications calles from the regular process or via the friendica app? + $regularnotifications = (intval($_GET['uid']) AND intval($_GET['_'])); + + $z = ping_get_notifications(local_user(), $regularnotifications); $sysnotify = 0; // we will update this in a moment $tags = array(); @@ -305,7 +308,7 @@ function ping_init(&$a) { killme(); } -function ping_get_notifications($uid) { +function ping_get_notifications($uid, $regularnotifications) { $result = array(); $offset = 0; @@ -348,9 +351,12 @@ function ping_get_notifications($uid) { // Replace the name with {0} but ensure to make that only once // The {0} is used later and prints the name in bold. + // But don't do it for the android app. $pos = strpos($notification["msg"],$notification['name']); - if ($pos !== false) - $notification["msg"] = substr_replace($notification["msg"],"{0}",$pos,strlen($notification['name'])); + if (($pos !== false) AND $regularnotifications) + $notification["msg"] = substr_replace($notification["msg"],"{0}",$pos,strlen($notification["name"])); + else + $notification["msg"] = str_replace("{0}", $notification["name"], $notification["msg"]); if ($notification["visible"] AND !$notification["spam"] AND !$notification["deleted"] AND !is_array($result[$notification["parent"]])) From 58aeb1879b3fa0b3b1d0757d7c66c2a193dc70f7 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 26 Apr 2015 13:26:48 +0200 Subject: [PATCH 089/306] API: The "conversation" function can now be called with every message id of a post in that conversation. Not only the parent. --- include/api.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/api.php b/include/api.php index dd24a92c9b..06dbca7f14 100644 --- a/include/api.php +++ b/include/api.php @@ -1369,6 +1369,10 @@ logger('API: api_conversation_show: '.$id); + $r = q("SELECT `parent` FROM `item` WHERE `id` = %d", intval($id)); + if ($r) + $id = $r[0]["parent"]; + $sql_extra = ''; if ($max_id > 0) From d8558366aa48486c08e0c69fb0f739b29b3fadc2 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 26 Apr 2015 22:16:38 +0200 Subject: [PATCH 090/306] Redefined the conditions when notifications and introductions are shown. --- include/items.php | 5 +---- include/nav.php | 17 +++++++++-------- 2 files changed, 10 insertions(+), 12 deletions(-) diff --git a/include/items.php b/include/items.php index ff31e84f7c..279169e506 100644 --- a/include/items.php +++ b/include/items.php @@ -4110,9 +4110,7 @@ function new_follower($importer,$contact,$datarray,$item,$sharing = false) { } if(($r[0]['notify-flags'] & NOTIFY_INTRO) && - (($r[0]['page-flags'] == PAGE_NORMAL) OR ($r[0]['page-flags'] == PAGE_SOAPBOX))) { - - + in_array($r[0]['page-flags'], array(PAGE_NORMAL, PAGE_SOAPBOX, PAGE_FREELOVE))) { notification(array( 'type' => NOTIFY_INTRO, @@ -4129,7 +4127,6 @@ function new_follower($importer,$contact,$datarray,$item,$sharing = false) { 'otype' => 'intro' )); - } } } diff --git a/include/nav.php b/include/nav.php index 9ea3b4b7f5..df5e00394e 100644 --- a/include/nav.php +++ b/include/nav.php @@ -147,15 +147,16 @@ function nav_info(&$a) { $nav['home'] = array('profile/' . $a->user['nickname'], t('Home'), "", t('Your posts and conversations')); + if(in_array($_SESSION['page_flags'], array(PAGE_NORMAL, PAGE_SOAPBOX, PAGE_FREELOVE, PAGE_PRVGROUP))) { + /* only show friend requests for normal pages. Other page types have automatic friendship. */ + if(in_array($_SESSION['page_flags'], array(PAGE_NORMAL, PAGE_SOAPBOX, PAGE_PRVGROUP))) + $nav['introductions'] = array('notifications/intros', t('Introductions'), "", t('Friend Requests')); - /* only show friend requests for normal pages. Other page types have automatic friendship. */ - - if($_SESSION['page_flags'] == PAGE_NORMAL || $_SESSION['page_flags'] == PAGE_SOAPBOX || $_SESSION['page_flags'] == PAGE_PRVGROUP) { - $nav['introductions'] = array('notifications/intros', t('Introductions'), "", t('Friend Requests')); - $nav['notifications'] = array('notifications', t('Notifications'), "", t('Notifications')); - $nav['notifications']['all']=array('notifications/system', t('See all notifications'), "", ""); - $nav['notifications']['mark'] = array('', t('Mark all system notifications seen'), '',''); - + if(in_array($_SESSION['page_flags'], array(PAGE_NORMAL, PAGE_SOAPBOX, PAGE_FREELOVE))) { + $nav['notifications'] = array('notifications', t('Notifications'), "", t('Notifications')); + $nav['notifications']['all']=array('notifications/system', t('See all notifications'), "", ""); + $nav['notifications']['mark'] = array('', t('Mark all system notifications seen'), '',''); + } } $nav['messages'] = array('message', t('Messages'), "", t('Private mail')); From 100f6343ad4d5bf5cf51872d149f5439a3f93f63 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Thu, 30 Apr 2015 06:11:05 +0200 Subject: [PATCH 091/306] Highlighting of user names should now work in every case --- mod/ping.php | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/mod/ping.php b/mod/ping.php index a475c558c7..ee5be67f6b 100644 --- a/mod/ping.php +++ b/mod/ping.php @@ -1,5 +1,6 @@ '; } @@ -208,17 +207,17 @@ function ping_init(&$a) { if ($intro>0){ foreach ($intros as $i) { - echo xmlize( $a->get_baseurl().'/notifications/intros/'.$i['id'], $i['name'], $i['url'], $i['photo'], relative_date($i['datetime']), 'notify-unseen',t("{0} wants to be your friend") ); + echo xmlize($a->get_baseurl().'/notifications/intros/'.$i['id'], $i['name'], $i['url'], $i['photo'], relative_date($i['datetime']), 'notify-unseen', "→ ".t("{0} wants to be your friend")); }; } if ($mail>0){ foreach ($mails as $i) { - echo xmlize( $a->get_baseurl().'/message/'.$i['id'], $i['from-name'], $i['from-url'], $i['from-photo'], relative_date($i['created']), 'notify-unseen',t("{0} sent you a message") ); + echo xmlize($a->get_baseurl().'/message/'.$i['id'], $i['from-name'], $i['from-url'], $i['from-photo'], relative_date($i['created']), 'notify-unseen',"→ ".t("{0} sent you a message")); }; } if ($register>0){ foreach ($regs as $i) { - echo xmlize( $a->get_baseurl().'/admin/users/', $i['name'], $i['url'], $i['micro'], relative_date($i['created']), 'notify-unseen',t("{0} requested registration") ); + echo xmlize($a->get_baseurl().'/admin/users/', $i['name'], $i['url'], $i['micro'], relative_date($i['created']), 'notify-unseen', "→ ".t("{0} requested registration")); }; } @@ -349,6 +348,9 @@ function ping_get_notifications($uid, $regularnotifications) { if (is_null($notification["deleted"])) $notification["deleted"] = 0; + $notification["msg"] = strip_tags(bbcode($notification["msg"])); + $notification["name"] = strip_tags(bbcode($notification["name"])); + // Replace the name with {0} but ensure to make that only once // The {0} is used later and prints the name in bold. // But don't do it for the android app. From b5e10329f29014861d8e17fa15e00006feb29f4f Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Thu, 30 Apr 2015 06:12:21 +0200 Subject: [PATCH 092/306] The oembed iframe now has a class name to use it for stylesheets. --- include/oembed.php | 2 +- view/global.css | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/include/oembed.php b/include/oembed.php index 69583167cf..a793bd8006 100755 --- a/include/oembed.php +++ b/include/oembed.php @@ -210,7 +210,7 @@ function oembed_iframe($src,$width,$height) { $a = get_app(); $s = $a->get_baseurl()."/oembed/".base64url_encode($src); - return ''; + return ''; } diff --git a/view/global.css b/view/global.css index c61ded6ae8..628bac7cfc 100644 --- a/view/global.css +++ b/view/global.css @@ -84,6 +84,10 @@ span.connector { position: relative; } +.embed_rich { + display: block; +} + /* Shared Messages */ .shared_header { height: 32px; From be96b1eaa4d9279b51fc19227f5f1b85223f4785 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Fri, 1 May 2015 10:42:43 +0200 Subject: [PATCH 093/306] rich content in oembed now replaces the content in attachments --- include/bbcode.php | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/include/bbcode.php b/include/bbcode.php index ef791d9e7c..1eac012c3e 100644 --- a/include/bbcode.php +++ b/include/bbcode.php @@ -4,7 +4,7 @@ require_once('include/event.php'); function bb_attachment($Text, $plaintext = false, $tryoembed = true) { $Text = preg_replace_callback("/(.*?)\[attachment(.*?)\](.*?)\[\/attachment\]/ism", - function ($match) use ($plaintext){ + function ($match) use ($plaintext, $tryoembed){ $attributes = $match[2]; @@ -83,14 +83,18 @@ function bb_attachment($Text, $plaintext = false, $tryoembed = true) { else $oembed = $bookmark[0]; - if (($image != "") AND !strstr(strtolower($oembed), "
      ', $url, $image, $title); - elseif (($preview != "") AND !strstr(strtolower($oembed), "
      ', $url, $preview, $title); + if (strstr(strtolower($oembed), "'; + return ''; } diff --git a/js/main.js b/js/main.js index d7381c96a4..25029c1b05 100644 --- a/js/main.js +++ b/js/main.js @@ -1,3 +1,7 @@ + function resizeIframe(obj) { + obj.style.height = 0; + obj.style.height = obj.contentWindow.document.body.scrollHeight + 'px'; + } function openClose(theID) { if(document.getElementById(theID).style.display == "block") { From 237b5a6e40378df0353ad3954484ed4053b59a96 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 2 May 2015 22:05:04 +0200 Subject: [PATCH 095/306] New page setting for the maximum frontend load value. --- index.php | 8 ++++---- mod/admin.php | 3 +++ view/templates/admin_site.tpl | 1 + 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/index.php b/index.php index 31af8868d7..02316e1e95 100644 --- a/index.php +++ b/index.php @@ -53,12 +53,12 @@ if(!$install) { load_config('config'); load_config('system'); - $maxsysload = intval(get_config('system','maxloadavg')); - if($maxsysload < 1) - $maxsysload = 50; + $maxsysload_frontend = intval(get_config('system','maxloadavg_frontend')); + if($maxsysload_frontend < 1) + $maxsysload_frontend = 50; if(function_exists('sys_getloadavg')) { $load = sys_getloadavg(); - if(intval($load[0]) > $maxsysload) { + if(intval($load[0]) > $maxsysload_frontend) { logger('system: load ' . $load[0] . ' too high. Service Temporarily Unavailable.'); header($_SERVER["SERVER_PROTOCOL"].' 503 Service Temporarily Unavailable'); header('Retry-After: 300'); diff --git a/mod/admin.php b/mod/admin.php index 0aa9023738..4383406476 100644 --- a/mod/admin.php +++ b/mod/admin.php @@ -357,6 +357,7 @@ function admin_page_site_post(&$a){ $delivery_interval = ((x($_POST,'delivery_interval')) ? intval(trim($_POST['delivery_interval'])) : 0); $poll_interval = ((x($_POST,'poll_interval')) ? intval(trim($_POST['poll_interval'])) : 0); $maxloadavg = ((x($_POST,'maxloadavg')) ? intval(trim($_POST['maxloadavg'])) : 50); + $maxloadavg_frontend = ((x($_POST,'maxloadavg_frontend')) ? intval(trim($_POST['maxloadavg_frontend'])) : 50); $dfrn_only = ((x($_POST,'dfrn_only')) ? True : False); $ostatus_disabled = !((x($_POST,'ostatus_disabled')) ? True : False); $ostatus_poll_interval = ((x($_POST,'ostatus_poll_interval')) ? intval(trim($_POST['ostatus_poll_interval'])) : 0); @@ -423,6 +424,7 @@ function admin_page_site_post(&$a){ set_config('system','delivery_interval',$delivery_interval); set_config('system','poll_interval',$poll_interval); set_config('system','maxloadavg',$maxloadavg); + set_config('system','maxloadavg_frontend',$maxloadavg_frontend); set_config('config','sitename',$sitename); set_config('config','hostname',$hostname); set_config('config','sender_email', $sender_email); @@ -677,6 +679,7 @@ function admin_page_site(&$a) { '$delivery_interval' => array('delivery_interval', t("Delivery interval"), (x(get_config('system','delivery_interval'))?get_config('system','delivery_interval'):2), t("Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers.")), '$poll_interval' => array('poll_interval', t("Poll interval"), (x(get_config('system','poll_interval'))?get_config('system','poll_interval'):2), t("Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval.")), '$maxloadavg' => array('maxloadavg', t("Maximum Load Average"), ((intval(get_config('system','maxloadavg')) > 0)?get_config('system','maxloadavg'):50), t("Maximum system load before delivery and poll processes are deferred - default 50.")), + '$maxloadavg_frontend' => array('maxloadavg_frontend', t("Maximum Load Average (Frontend)"), ((intval(get_config('system','maxloadavg_frontend')) > 0)?get_config('system','maxloadavg_frontend'):50), t("Maximum system load before the frontend quits service - default 50.")), '$use_fulltext_engine' => array('use_fulltext_engine', t("Use MySQL full text engine"), get_config('system','use_fulltext_engine'), t("Activates the full text engine. Speeds up search - but can only search for four and more characters.")), '$suppress_language' => array('suppress_language', t("Suppress Language"), get_config('system','suppress_language'), t("Suppress language information in meta information about a posting.")), diff --git a/view/templates/admin_site.tpl b/view/templates/admin_site.tpl index 6880f0fd91..bcaed585c2 100644 --- a/view/templates/admin_site.tpl +++ b/view/templates/admin_site.tpl @@ -107,6 +107,7 @@ {{include file="field_input.tpl" field=$delivery_interval}} {{include file="field_input.tpl" field=$poll_interval}} {{include file="field_input.tpl" field=$maxloadavg}} + {{include file="field_input.tpl" field=$maxloadavg_frontend}} {{include file="field_input.tpl" field=$abandon_days}} {{include file="field_input.tpl" field=$lockpath}} {{include file="field_input.tpl" field=$temppath}} From d4a172c1421921cc03b4f85e3fd0d4c5c8b9cfa4 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 3 May 2015 21:25:03 +0200 Subject: [PATCH 096/306] Bugfix: Shadow copy. Improvement: Fetching of missing items for pictures --- include/diaspora.php | 62 ++++++++++++++------------------------------ include/threads.php | 34 +++++------------------- 2 files changed, 27 insertions(+), 69 deletions(-) diff --git a/include/diaspora.php b/include/diaspora.php index a6e341729c..294690a48e 100755 --- a/include/diaspora.php +++ b/include/diaspora.php @@ -603,7 +603,7 @@ function diaspora_request($importer,$xml) { if(count($self) && $contact['rel'] == CONTACT_IS_FOLLOWER) { $arr = array(); - $arr['uri'] = $arr['parent-uri'] = item_new_uri($a->get_hostname(), $importer['uid']); + $arr['uri'] = $arr['parent-uri'] = item_new_uri($a->get_hostname(), $importer['uid']); $arr['uid'] = $importer['uid']; $arr['contact-id'] = $self[0]['id']; $arr['wall'] = 1; @@ -827,18 +827,6 @@ function diaspora_post($importer,$xml,$msg) { return; } - // allocate a guid on our system - we aren't fixing any collisions. - // we're ignoring them - - $g = q("select * from guid where guid = '%s' limit 1", - dbesc($guid) - ); - if(! count($g)) { - q("insert into guid ( guid ) values ( '%s' )", - dbesc($guid) - ); - } - $created = unxmlify($xml->created_at); $private = ((unxmlify($xml->public) == 'false') ? 1 : 0); @@ -1041,10 +1029,10 @@ function diaspora_fetch_message($guid, $server, $level = 0) { } else { // Maybe it is a reshare of a photo that will be delivered at a later time (testing) logger('no content found: '.print_r($source_xml,true)); - $body = ""; + return false; } - if ($body == "") + if (trim($body) == "") return false; $item["tag"] = ''; @@ -1150,18 +1138,6 @@ function diaspora_reshare($importer,$xml,$msg) { $person = find_diaspora_person_by_handle($orig_author); - // allocate a guid on our system - we aren't fixing any collisions. - // we're ignoring them - - $g = q("select * from guid where guid = '%s' limit 1", - dbesc($guid) - ); - if(! count($g)) { - q("insert into guid ( guid ) values ( '%s' )", - dbesc($guid) - ); - } - $created = unxmlify($xml->created_at); $private = ((unxmlify($xml->public) == 'false') ? 1 : 0); @@ -1270,18 +1246,6 @@ function diaspora_asphoto($importer,$xml,$msg) { return; } - // allocate a guid on our system - we aren't fixing any collisions. - // we're ignoring them - - $g = q("select * from guid where guid = '%s' limit 1", - dbesc($guid) - ); - if(! count($g)) { - q("insert into guid ( guid ) values ( '%s' )", - dbesc($guid) - ); - } - $created = unxmlify($xml->created_at); $private = ((unxmlify($xml->public) == 'false') ? 1 : 0); @@ -1683,7 +1647,7 @@ function diaspora_conversation($importer,$xml,$msg) { dbesc($person['name']), dbesc($person['photo']), dbesc($person['url']), - intval($contact['id']), + intval($contact['id']), dbesc($subject), dbesc($body), 0, @@ -1705,7 +1669,7 @@ function diaspora_conversation($importer,$xml,$msg) { 'language' => $importer['language'], 'to_name' => $importer['username'], 'to_email' => $importer['email'], - 'uid' =>$importer['importer_uid'], + 'uid' =>$importer['uid'], 'item' => array('subject' => $subject, 'body' => $body), 'source_name' => $person['name'], 'source_link' => $person['url'], @@ -1852,7 +1816,7 @@ function diaspora_photo($importer,$xml,$msg,$attempt=1) { intval($importer['uid']), dbesc($status_message_guid) ); - if(! count($r)) { + if(!count($r)) { if($attempt <= 3) { q("INSERT INTO dsprphotoq (uid, msg, attempt) VALUES (%d, '%s', %d)", intval($importer['uid']), @@ -1860,6 +1824,20 @@ function diaspora_photo($importer,$xml,$msg,$attempt=1) { intval($attempt + 1) ); } + + $r = q("SELECT `id` FROM `item` WHERE `uid` = 0 AND `guid` = '%s' LIMIT 1", dbesc($status_message_guid)); + if(!count($r)) { + // Fetching the missing item as a public shadow + // To-Do: Doing it for every post that is missing + $item = array(); + $item["author-link"] = $contact['url']; + $item["owner-link"] = $contact['url']; + + DiasporaFetchGuidSub($status_message_guid, $item); + + logger("Storing missing item ".$status_message_guid." as public shadow", LOGGER_DEBUG); + } + logger('diaspora_photo: attempt = ' . $attempt . '; status message not found: ' . $status_message_guid . ' for photo: ' . $guid); return; } diff --git a/include/threads.php b/include/threads.php index d88307ecfb..3cfa025640 100644 --- a/include/threads.php +++ b/include/threads.php @@ -112,7 +112,7 @@ function update_thread_uri($itemuri, $uid) { } function update_thread($itemid, $setmention = false) { - $items = q("SELECT `uid`, `uri`, `created`, `edited`, `commented`, `received`, `changed`, `wall`, `private`, `pubmail`, `moderated`, `visible`, `spam`, `starred`, `bookmark`, `contact-id`, + $items = q("SELECT `uid`, `guid`, `title`, `body`, `created`, `edited`, `commented`, `received`, `changed`, `wall`, `private`, `pubmail`, `moderated`, `visible`, `spam`, `starred`, `bookmark`, `contact-id`, `deleted`, `origin`, `forum_mode`, `network` FROM `item` WHERE `id` = %d AND (`parent` = %d OR `parent` = 0) LIMIT 1", intval($itemid), intval($itemid)); if (!$items) @@ -126,7 +126,7 @@ function update_thread($itemid, $setmention = false) { $sql = ""; foreach ($item AS $field => $data) - if ($field != "uri") { + if (!in_array($field, array("guid", "title", "body"))) { if ($sql != "") $sql .= ", "; @@ -135,40 +135,20 @@ function update_thread($itemid, $setmention = false) { $result = q("UPDATE `thread` SET ".$sql." WHERE `iid` = %d", intval($itemid)); - logger("update_thread: Update thread for item ".$itemid." - ".print_r($result, true)." ".print_r($item, true), LOGGER_DEBUG); + logger("Update thread for item ".$itemid." - guid ".$item["guid"]." - ".print_r($result, true)." ".print_r($item, true), LOGGER_DEBUG); // Updating a shadow item entry - $items = q("SELECT `id`, `title`, `body`, `created`, `edited`, `commented`, `received`, `changed`, `wall`, `private`, `pubmail`, - `moderated`, `visible`, `spam`, `starred`, `bookmark`, `deleted`, `origin`, `forum_mode`, `network` - FROM `item` WHERE `uri` = '%s' AND `uid` = 0 LIMIT 1", dbesc($item["uri"])); + $items = q("SELECT `id` FROM `item` WHERE `guid` = '%s' AND `uid` = 0 LIMIT 1", dbesc($item["guid"])); if (!$items) return; - $item = $items[0]; - - $result = q("UPDATE `item` SET `title` = '%s', `body` = '%s', `network` = '%s' WHERE `id` = %d", + $result = q("UPDATE `item` SET `title` = '%s', `body` = '%s' WHERE `id` = %d", dbesc($item["title"]), dbesc($item["body"]), - dbesc($item["network"]), - intval($item["id"]) + intval($items[0]["id"]) ); - logger("update_thread: Updating public shadow for post ".$item["id"]." Result: ".print_r($result, true), LOGGER_DEBUG); - - /* - $sql = ""; - - foreach ($item AS $field => $data) - if ($field != "id") { - if ($sql != "") - $sql .= ", "; - - $sql .= "`".$field."` = '".dbesc($data)."'"; - } - //logger("update_thread: Updating public shadow for post ".$item["id"]." SQL: ".$sql, LOGGER_DEBUG); - $result = q("UPDATE `item` SET ".$sql." WHERE `id` = %d", intval($item["id"])); - logger("update_thread: Updating public shadow for post ".$item["id"]." Result: ".print_r($result, true), LOGGER_DEBUG); - */ + logger("Updating public shadow for post ".$items[0]["id"]." - guid ".$item["guid"]." Result: ".print_r($result, true), LOGGER_DEBUG); } function delete_thread_uri($itemuri, $uid) { From faeae280c7c3b790aa464bb093ead6828aecacba Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 3 May 2015 22:15:26 +0200 Subject: [PATCH 097/306] Bugfix: There should be no problems anymore with empty Diaspora reshares. --- include/diaspora.php | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/include/diaspora.php b/include/diaspora.php index 294690a48e..69beb858ed 100755 --- a/include/diaspora.php +++ b/include/diaspora.php @@ -1081,7 +1081,7 @@ function diaspora_reshare($importer,$xml,$msg) { $create_original_post = false; // Do we already have this item? - $r = q("SELECT `body`, `tag`, `app`, `author-link`, `plink` FROM `item` WHERE `guid` = '%s' AND `visible` AND NOT `deleted` AND `body` != '' LIMIT 1", + $r = q("SELECT `body`, `tag`, `app`, `created`, `author-link`, `plink` FROM `item` WHERE `guid` = '%s' AND `visible` AND NOT `deleted` AND `body` != '' LIMIT 1", dbesc($orig_guid), dbesc(NETWORK_DIASPORA) ); @@ -1093,8 +1093,15 @@ function diaspora_reshare($importer,$xml,$msg) { require_once('include/api.php'); if (api_share_as_retweet($r[0])) $r = array(); - else - $orig_url = $a->get_baseurl().'/display/'.$orig_guid; + else { + $body = $r[0]["body"]; + $str_tags = $r[0]["tag"]; + $app = $r[0]["app"]; + $orig_created = $r[0]["created"]; + $orig_author = $r[0]["author-link"]; + $create_original_post = ($body != ""); + $orig_url = $a->get_baseurl()."/display/".$orig_guid; + } } if (!count($r)) { From b2ecf805ea0b31ae5f3de52b5f2620d0a4596a56 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 3 May 2015 22:40:20 +0200 Subject: [PATCH 098/306] Missing $ --- include/diaspora.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/diaspora.php b/include/diaspora.php index 69beb858ed..7c6a88064e 100755 --- a/include/diaspora.php +++ b/include/diaspora.php @@ -1086,7 +1086,7 @@ function diaspora_reshare($importer,$xml,$msg) { dbesc(NETWORK_DIASPORA) ); if(count($r)) { - logger('reshared message '.orig_guid." reshared by ".$guid.' already exists on system: '.$orig_url); + logger('reshared message '.$orig_guid." reshared by ".$guid.' already exists on system: '.$orig_url); // Maybe it is already a reshared item? // Then refetch the content, since there can be many side effects with reshared posts from other networks or reshares from reshares From fd8c9a9dacce946fd4f5698601c03cb59902f7bf Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Wed, 6 May 2015 13:02:02 +0200 Subject: [PATCH 099/306] avoid some contacts from profile match listing --- mod/match.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/mod/match.php b/mod/match.php index 926df1dfff..96a6efc303 100644 --- a/mod/match.php +++ b/mod/match.php @@ -48,6 +48,11 @@ function match_content(&$a) { $tpl = get_markup_template('match.tpl'); foreach($j->results as $jj) { + $match_nurl = str_replace(array('https:','//www.'), array('http:','//'), $jj->url); + $match = q("SELECT `nurl` FROM `contact` WHERE `uid` = '%d' AND nurl='%s' LIMIT 1", + intval(local_user()), + $match_nurl); + if (!count($match)) { $connlnk = $a->get_baseurl() . '/follow/?url=' . $jj->url; $o .= replace_macros($tpl,array( @@ -59,6 +64,7 @@ function match_content(&$a) { '$connlnk' => $connlnk, '$tags' => $jj->tags )); + } } } else { From 0b8b1fdef328c4e3a0320756ef3d7a538a628553 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Wed, 6 May 2015 16:14:27 +0200 Subject: [PATCH 100/306] add procy_url around the profile images --- mod/match.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod/match.php b/mod/match.php index 96a6efc303..af4b847908 100644 --- a/mod/match.php +++ b/mod/match.php @@ -58,7 +58,7 @@ function match_content(&$a) { $o .= replace_macros($tpl,array( '$url' => zrl($jj->url), '$name' => $jj->name, - '$photo' => $jj->photo, + '$photo' => proxy_url($jj->photo), '$inttxt' => ' ' . t('is interested in:'), '$conntxt' => t('Connect'), '$connlnk' => $connlnk, From 9d257df700dcea74566255494758f0548ccd2034 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 9 May 2015 19:39:47 +0200 Subject: [PATCH 101/306] Fetch missing Diaspora posts --- include/Contact.php | 3 +- include/diaspora.php | 102 +++++++++++++++++++++++++++++++------------ 2 files changed, 76 insertions(+), 29 deletions(-) diff --git a/include/Contact.php b/include/Contact.php index 6339360256..103dbe9add 100644 --- a/include/Contact.php +++ b/include/Contact.php @@ -330,7 +330,8 @@ function get_contact($url, $uid = 0) { if (!$update_photo) return($contactid); - } + } elseif ($uid != 0) + return 0; if (!count($data)) $data = probe_url($url); diff --git a/include/diaspora.php b/include/diaspora.php index 7c6a88064e..c8674e985d 100755 --- a/include/diaspora.php +++ b/include/diaspora.php @@ -894,26 +894,25 @@ function DiasporaFetchGuid($item) { function DiasporaFetchGuidSub($match, $item) { $a = get_app(); - $author = parse_url($item["author-link"]); - $authorserver = $author["scheme"]."://".$author["host"]; - - $owner = parse_url($item["owner-link"]); - $ownerserver = $owner["scheme"]."://".$owner["host"]; - - if (!diaspora_store_by_guid($match[1], $authorserver)) - diaspora_store_by_guid($match[1], $ownerserver); + if (!diaspora_store_by_guid($match[1], $item["author-link"])) + diaspora_store_by_guid($match[1], $item["owner-link"]); } -function diaspora_store_by_guid($guid, $server) { +function diaspora_store_by_guid($guid, $server, $uid = 0) { require_once("include/Contact.php"); - logger("fetching item ".$guid." from ".$server, LOGGER_DEBUG); + $serverparts = parse_url($server); + $server = $serverparts["scheme"]."://".$serverparts["host"]; + + logger("Trying to fetch item ".$guid." from ".$server, LOGGER_DEBUG); $item = diaspora_fetch_message($guid, $server); if (!$item) return false; + logger("Successfully fetched item ".$guid." from ".$server, LOGGER_DEBUG); + $body = $item["body"]; $str_tags = $item["tag"]; $app = $item["app"]; @@ -923,7 +922,8 @@ function diaspora_store_by_guid($guid, $server) { $private = $item["private"]; $message_id = $author.':'.$guid; - $r = q("SELECT `id` FROM `item` WHERE `uid` = 0 AND `uri` = '%s' AND `guid` = '%s' LIMIT 1", + $r = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s' AND `guid` = '%s' LIMIT 1", + intval($uid), dbesc($message_id), dbesc($guid) ); @@ -933,8 +933,8 @@ function diaspora_store_by_guid($guid, $server) { $person = find_diaspora_person_by_handle($author); $datarray = array(); - $datarray['uid'] = 0; - $datarray['contact-id'] = get_contact($person['url'], 0); + $datarray['uid'] = $uid; + $datarray['contact-id'] = get_contact($person['url'], $uid); $datarray['wall'] = 0; $datarray['network'] = NETWORK_DIASPORA; $datarray['guid'] = $guid; @@ -954,6 +954,9 @@ function diaspora_store_by_guid($guid, $server) { $datarray['app'] = $app; $datarray['visible'] = ((strlen($body)) ? 1 : 0); + if ($datarray['contact-id'] == 0) + return false; + DiasporaFetchGuid($datarray); $message_id = item_store($datarray); @@ -1349,6 +1352,25 @@ function diaspora_comment($importer,$xml,$msg) { intval($importer['uid']), dbesc($parent_guid) ); + + if(!count($r)) { + $result = diaspora_store_by_guid($parent_guid, $contact['url'], $importer['uid']); + + if (!$result) { + $person = find_diaspora_person_by_handle($diaspora_handle); + $result = diaspora_store_by_guid($parent_guid, $person['url'], $importer['uid']); + } + + if ($result) { + logger("Fetched missing item ".$parent_guid." - result: ".$result, LOGGER_DEBUG); + + $r = q("SELECT * FROM `item` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1", + intval($importer['uid']), + dbesc($parent_guid) + ); + } + } + if(! count($r)) { logger('diaspora_comment: parent item not found: parent: ' . $parent_guid . ' item: ' . $guid); return; @@ -1823,6 +1845,26 @@ function diaspora_photo($importer,$xml,$msg,$attempt=1) { intval($importer['uid']), dbesc($status_message_guid) ); + +/* deactivated by now since it can lead to multiplicated pictures in posts. + if(!count($r)) { + $result = diaspora_store_by_guid($status_message_guid, $contact['url'], $importer['uid']); + + if (!$result) { + $person = find_diaspora_person_by_handle($diaspora_handle); + $result = diaspora_store_by_guid($status_message_guid, $person['url'], $importer['uid']); + } + + if ($result) { + logger("Fetched missing item ".$status_message_guid." - result: ".$result, LOGGER_DEBUG); + + $r = q("SELECT * FROM `item` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1", + intval($importer['uid']), + dbesc($status_message_guid) + ); + } + } +*/ if(!count($r)) { if($attempt <= 3) { q("INSERT INTO dsprphotoq (uid, msg, attempt) VALUES (%d, '%s', %d)", @@ -1832,19 +1874,6 @@ function diaspora_photo($importer,$xml,$msg,$attempt=1) { ); } - $r = q("SELECT `id` FROM `item` WHERE `uid` = 0 AND `guid` = '%s' LIMIT 1", dbesc($status_message_guid)); - if(!count($r)) { - // Fetching the missing item as a public shadow - // To-Do: Doing it for every post that is missing - $item = array(); - $item["author-link"] = $contact['url']; - $item["owner-link"] = $contact['url']; - - DiasporaFetchGuidSub($status_message_guid, $item); - - logger("Storing missing item ".$status_message_guid." as public shadow", LOGGER_DEBUG); - } - logger('diaspora_photo: attempt = ' . $attempt . '; status message not found: ' . $status_message_guid . ' for photo: ' . $guid); return; } @@ -1903,6 +1932,25 @@ function diaspora_like($importer,$xml,$msg) { intval($importer['uid']), dbesc($parent_guid) ); + + if(!count($r)) { + $result = diaspora_store_by_guid($parent_guid, $contact['url'], $importer['uid']); + + if (!$result) { + $person = find_diaspora_person_by_handle($diaspora_handle); + $result = diaspora_store_by_guid($parent_guid, $person['url'], $importer['uid']); + } + + if ($result) { + logger("Fetched missing item ".$parent_guid." - result: ".$result, LOGGER_DEBUG); + + $r = q("SELECT * FROM `item` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1", + intval($importer['uid']), + dbesc($parent_guid) + ); + } + } + if(! count($r)) { logger('diaspora_like: parent item not found: ' . $guid); return; @@ -2965,5 +3013,3 @@ function diaspora_transmit($owner,$contact,$slap,$public_batch,$queue_run=false) return(($return_code) ? $return_code : (-1)); } - - From 5d1bd960766d72099969f2a6f2dff4e19160ec87 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 9 May 2015 23:47:45 +0200 Subject: [PATCH 102/306] Set the login date for every identity of the user. --- include/security.php | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/include/security.php b/include/security.php index 6e722d673b..2d6db95f4f 100644 --- a/include/security.php +++ b/include/security.php @@ -55,7 +55,7 @@ function authenticate_success($user_record, $login_initial = false, $interactive else $a->identities = array(); - $r = q("select `user`.`uid`, `user`.`username`, `user`.`nickname` + $r = q("select `user`.`uid`, `user`.`username`, `user`.`nickname` from manage INNER JOIN user on manage.mid = user.uid where `user`.`account_removed` = 0 and `manage`.`uid` = %d", intval($master_record['uid']) @@ -86,6 +86,15 @@ function authenticate_success($user_record, $login_initial = false, $interactive dbesc($l), intval($_SESSION['uid']) ); + + // Set the login date for all identities of the user + q("UPDATE `user` SET `login_date` = '%s' WHERE `password` = '%s' AND `email` = '%s' AND `account_removed` = 0", + dbesc(datetime_convert()), + dbesc($master_record['password']), + dbesc($master_record['email']) + ); + + } if($login_initial) { call_hooks('logged_in', $a->user); From 9244e8727d4f57c304624246f7d4f578def1a813 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Sun, 10 May 2015 09:10:27 +0200 Subject: [PATCH 103/306] dbesc and normalise_link --- mod/match.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mod/match.php b/mod/match.php index af4b847908..aa0a69fc95 100644 --- a/mod/match.php +++ b/mod/match.php @@ -1,5 +1,5 @@ results as $jj) { - $match_nurl = str_replace(array('https:','//www.'), array('http:','//'), $jj->url); + $match_nurl = normalise_link($jj->url); $match = q("SELECT `nurl` FROM `contact` WHERE `uid` = '%d' AND nurl='%s' LIMIT 1", intval(local_user()), - $match_nurl); + dbesc($match_nurl)); if (!count($match)) { $connlnk = $a->get_baseurl() . '/follow/?url=' . $jj->url; From 33e572409d403966e18cf90e4af79e89e9b19be0 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 10 May 2015 20:43:41 +0200 Subject: [PATCH 104/306] There was no check for duplicated GUIDs, so doubled posts could occur. --- include/items.php | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/include/items.php b/include/items.php index 279169e506..5a0aa9ed51 100644 --- a/include/items.php +++ b/include/items.php @@ -1237,6 +1237,18 @@ function item_store($arr,$force_parent = false, $notify = false, $dontcache = fa logger("item_store: Set network to ".$arr["network"]." for ".$arr["uri"], LOGGER_DEBUG); } + if ($arr['guid'] != "") { + // Checking if there is already an item with the same guid + logger('checking for an item for user '.$arr['uid'].' on network '.$arr['network'].' with the guid '.$arr['guid'], LOGGER_DEBUG); + $r = q("SELECT `guid` FROM `item` WHERE `guid` = '%s' AND `network` = '%s' AND `uid` = '%d' LIMIT 1", + dbesc($arr['guid']), dbesc($arr['network']), intval($arr['uid'])); + + if(count($r)) { + logger('found item with guid '.$arr['guid'].' for user '.$arr['uid'].' on network '.$arr['network'], LOGGER_DEBUG); + return 0; + } + } + // Check for hashtags in the body and repair or add hashtag links item_body_set_hashtags($arr); From 57c47a8e3660b8b968b36ff7b379f51aa398a684 Mon Sep 17 00:00:00 2001 From: FlxAlbroscheit Date: Tue, 12 May 2015 14:04:42 +0200 Subject: [PATCH 105/306] Add a group with one click --- include/group.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/group.php b/include/group.php index 380c4eecc9..bbfac7ac1d 100644 --- a/include/group.php +++ b/include/group.php @@ -270,6 +270,8 @@ function group_side($every="contacts",$each="group",$edit = false, $group_id = 0 '$title' => t('Groups'), '$edittext' => t('Edit group'), '$createtext' => t('Create a new group'), + '$creategroup' => t('Group Name: '), + '$form_security_token' => get_form_security_token("group_edit"), '$ungrouped' => (($every === 'contacts') ? t('Contacts not in any group') : ''), '$groups' => $groups, '$add' => t('add'), From 4667d0e7e8ccff13e33448c787013400ebc5da56 Mon Sep 17 00:00:00 2001 From: FlxAlbroscheit Date: Tue, 12 May 2015 14:09:51 +0200 Subject: [PATCH 106/306] Add a group with one click --- view/templates/group_side.tpl | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/view/templates/group_side.tpl b/view/templates/group_side.tpl index b304be3b99..fa3a111480 100644 --- a/view/templates/group_side.tpl +++ b/view/templates/group_side.tpl @@ -1,4 +1,3 @@ -

      {{$title}}

      @@ -22,7 +21,11 @@
    {{if $ungrouped}} \ No newline at end of file diff --git a/view/theme/duepuntozero/style.css b/view/theme/duepuntozero/style.css index 1b20042a5d..024e63f5f6 100644 --- a/view/theme/duepuntozero/style.css +++ b/view/theme/duepuntozero/style.css @@ -2026,11 +2026,11 @@ a.mail-list-link { margin-top: 10px; } -.nets-ul, .fileas-ul, .categories-ul { +.nets-ul, .fileas-ul, .categories-ul, .datebrowse-ul { list-style-type: none; } -.nets-ul li, .fileas-ul li, .categories-ul li { +.nets-ul li, .fileas-ul li, .categories-ul li, .datebrowse-ul li { margin-top: 10px; } diff --git a/view/theme/frost/style.css b/view/theme/frost/style.css index aed0dc0ab1..74ae6c90aa 100644 --- a/view/theme/frost/style.css +++ b/view/theme/frost/style.css @@ -2327,11 +2327,11 @@ a.mail-list-link { margin-top: 10px; } -.nets-ul, .fileas-ul, .categories-ul { +.nets-ul, .fileas-ul, .categories-ul, .datebrowse-ul { list-style-type: none; } -.nets-ul li, .fileas-ul li, .categories-ul li { +.nets-ul li, .fileas-ul li, .categories-ul li, .datebrowse-ul li { margin-top: 10px; } diff --git a/view/theme/quattro/dark/style.css b/view/theme/quattro/dark/style.css index 5f4b005c8e..a1555565d2 100644 --- a/view/theme/quattro/dark/style.css +++ b/view/theme/quattro/dark/style.css @@ -840,6 +840,9 @@ aside #dfrn-request-link:hover { aside #profiles-menu { width: 20em; } +aside .posted-date-selector-months { + margin-left: 10px; +} #contact-block { overflow: auto; height: auto; diff --git a/view/theme/quattro/green/style.css b/view/theme/quattro/green/style.css index c2826a3c0c..ef6b16aad3 100644 --- a/view/theme/quattro/green/style.css +++ b/view/theme/quattro/green/style.css @@ -840,6 +840,9 @@ aside #dfrn-request-link:hover { aside #profiles-menu { width: 20em; } +aside .posted-date-selector-months { + margin-left: 10px; +} #contact-block { overflow: auto; height: auto; diff --git a/view/theme/quattro/lilac/style.css b/view/theme/quattro/lilac/style.css index 28c5cd47a9..2d4f7cec6c 100644 --- a/view/theme/quattro/lilac/style.css +++ b/view/theme/quattro/lilac/style.css @@ -840,6 +840,9 @@ aside #dfrn-request-link:hover { aside #profiles-menu { width: 20em; } +aside .posted-date-selector-months { + margin-left: 10px; +} #contact-block { overflow: auto; height: auto; diff --git a/view/theme/smoothly/style.css b/view/theme/smoothly/style.css index d9dba9818c..46d8902aeb 100644 --- a/view/theme/smoothly/style.css +++ b/view/theme/smoothly/style.css @@ -945,13 +945,14 @@ ul .sidebar-group-li .icon { width: 12px; } -.nets-ul, .fileas-ul, .categories-ul { +.nets-ul, .fileas-ul, .categories-ul, .datebrowse-ul { list-style-type: none; } .nets-ul li, .fileas-ul li, -.categories-ul li { +.categories-ul li, +.datebrowse-link { } .nets-link { @@ -4605,10 +4606,6 @@ div #datebrowse-sidebar.widget { #id_npassword {} -#posted-date-selector { - margin-left: 33px; -} - #hide-comments-page-widget { margin-left: 40px; } diff --git a/view/theme/vier/style.css b/view/theme/vier/style.css index 779a194dd8..e75934c8c5 100644 --- a/view/theme/vier/style.css +++ b/view/theme/vier/style.css @@ -427,12 +427,16 @@ a.sidebar-group-element { color: #737373; } -#follow-sidebar form, #peoplefind-sidebar form, #netsearch-box form, #posted-date-selector { +#follow-sidebar form, #peoplefind-sidebar form, #netsearch-box form { margin-left: 10px; margin-top: 3px; margin-bottom: 3px; } +.posted-date-selector-months { + margin-left: 10px; +} + #sidebar-ungrouped, .side-link { padding-top: 5px; } From 101804d505acd20fcb1fc8744d4d79fcb8d350db Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Tue, 19 May 2015 01:07:40 +0200 Subject: [PATCH 118/306] minor polishing --- view/templates/posted_date_widget.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/view/templates/posted_date_widget.tpl b/view/templates/posted_date_widget.tpl index 878b1d3605..c4c9937e66 100644 --- a/view/templates/posted_date_widget.tpl +++ b/view/templates/posted_date_widget.tpl @@ -44,4 +44,4 @@ function showHideDates() { {{/if}} - \ No newline at end of file + From 1c8b9b73f766d83eeb9dc72e5bb14f305b3ba44c Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Wed, 20 May 2015 21:35:57 +0200 Subject: [PATCH 119/306] Issue 1572: Contact requests to a "FREELOVE" account resulted in "read only" contacts --- include/diaspora.php | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/include/diaspora.php b/include/diaspora.php index c8674e985d..04588dffe6 100755 --- a/include/diaspora.php +++ b/include/diaspora.php @@ -724,16 +724,17 @@ function diaspora_request($importer,$xml) { else $new_relation = CONTACT_IS_FOLLOWER; - $r = q("UPDATE `contact` SET - `photo` = '%s', + $r = q("UPDATE `contact` SET + `photo` = '%s', `thumb` = '%s', - `micro` = '%s', - `rel` = %d, - `name-date` = '%s', - `uri-date` = '%s', - `avatar-date` = '%s', - `blocked` = 0, - `pending` = 0 + `micro` = '%s', + `rel` = %d, + `name-date` = '%s', + `uri-date` = '%s', + `avatar-date` = '%s', + `blocked` = 0, + `pending` = 0, + `writable` = 1 WHERE `id` = %d ", dbesc($photos[0]), From 506e745dd2d15a03bbdb5109809c0c589dfa6a44 Mon Sep 17 00:00:00 2001 From: fabrixxm Date: Wed, 20 May 2015 21:55:52 +0200 Subject: [PATCH 120/306] update messages.po --- util/messages.po | 1887 ++++++++++++++++++++++++---------------------- 1 file changed, 992 insertions(+), 895 deletions(-) diff --git a/util/messages.po b/util/messages.po index 390b2c3a36..b51a4c9984 100644 --- a/util/messages.po +++ b/util/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: 3.4.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-04-04 17:54+0200\n" +"POT-Creation-Date: 2015-05-20 21:53+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,21 +18,66 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" +#: ../../view/smarty3/compiled/c019a398ec980bbc7c3aaa08335fce9651dcb225.file.newrepo.tpl.php:42 +#: ../../view/smarty3/compiled/06122f3d4709e72b359275cd40cd821933415fe0.file.clonerepo.tpl.php:53 +msgid "Visibility" +msgstr "" + +#: ../../view/smarty3/compiled/c019a398ec980bbc7c3aaa08335fce9651dcb225.file.newrepo.tpl.php:58 +#: ../../view/smarty3/compiled/06122f3d4709e72b359275cd40cd821933415fe0.file.clonerepo.tpl.php:69 +msgid "Create" +msgstr "" + +#: ../../view/smarty3/compiled/41891c5779c0b5b306eb4631dfa03e39256ed413.file.index.tpl.php:31 +msgid "Projects" +msgstr "" + +#: ../../view/smarty3/compiled/41891c5779c0b5b306eb4631dfa03e39256ed413.file.index.tpl.php:32 +msgid "add new" +msgstr "" + +#: ../../view/smarty3/compiled/41891c5779c0b5b306eb4631dfa03e39256ed413.file.index.tpl.php:51 +msgid "delete" +msgstr "" + +#: ../../view/smarty3/compiled/41891c5779c0b5b306eb4631dfa03e39256ed413.file.index.tpl.php:68 +#, php-format +msgid "" +"Do you want to delete the project '%s'?\\n\\nThis operation cannot be undone." +msgstr "" + +#: ../../view/smarty3/compiled/0396216d64cb7742520aa8262a6a394e89d80c43.file.commit.tpl.php:77 +#: ../../view/smarty3/compiled/29cb6aa326dbca251230b851c0bbe02ce1a1fb7d.file.project.tpl.php:76 +#: ../../view/smarty3/compiled/457647d85063c796c6f472b14e11e0f149ad349e.file.commits.tpl.php:77 +#: ../../view/smarty3/compiled/e4401331124fce3693a6f71f4a53d583842f7c80.file.blob.tpl.php:76 +#: ../../view/smarty3/compiled/4c3c3e0c286a99f48dffd8d4804be0037add3598.file.project_empty.tpl.php:60 +#: ../../view/smarty3/compiled/18078637833aeed88b65c61470b20001d5525b7d.file.tree.tpl.php:76 +msgid "Clone this project:" +msgstr "" + +#: ../../view/smarty3/compiled/e4401331124fce3693a6f71f4a53d583842f7c80.file.blob.tpl.php:112 +msgid "Click here to download" +msgstr "" + +#: ../../view/smarty3/compiled/4c3c3e0c286a99f48dffd8d4804be0037add3598.file.project_empty.tpl.php:73 +msgid "This project is empty!" +msgstr "" + #: ../../view/theme/cleanzero/config.php:80 #: ../../view/theme/vier/config.php:56 #: ../../view/theme/duepuntozero/config.php:59 #: ../../view/theme/diabook/config.php:148 #: ../../view/theme/diabook/theme.php:633 #: ../../view/theme/quattro/config.php:64 ../../view/theme/dispy/config.php:70 -#: ../../object/Item.php:678 ../../mod/contacts.php:492 +#: ../../object/Item.php:681 ../../mod/contacts.php:562 #: ../../mod/manage.php:110 ../../mod/fsuggest.php:107 #: ../../mod/photos.php:1084 ../../mod/photos.php:1203 #: ../../mod/photos.php:1514 ../../mod/photos.php:1565 #: ../../mod/photos.php:1609 ../../mod/photos.php:1697 -#: ../../mod/invite.php:140 ../../mod/events.php:478 ../../mod/mood.php:137 +#: ../../mod/invite.php:140 ../../mod/events.php:491 ../../mod/mood.php:137 #: ../../mod/message.php:335 ../../mod/message.php:564 #: ../../mod/profiles.php:686 ../../mod/install.php:248 -#: ../../mod/install.php:286 ../../mod/crepair.php:186 +#: ../../mod/install.php:286 ../../mod/crepair.php:190 #: ../../mod/content.php:710 ../../mod/poke.php:199 ../../mod/localtime.php:45 msgid "Submit" msgstr "" @@ -68,7 +113,7 @@ msgstr "" msgid "Set style" msgstr "" -#: ../../view/theme/duepuntozero/config.php:44 ../../include/text.php:1719 +#: ../../view/theme/duepuntozero/config.php:44 ../../include/text.php:1729 #: ../../include/user.php:247 msgid "default" msgstr "" @@ -203,9 +248,9 @@ msgstr "" msgid "Your posts and conversations" msgstr "" -#: ../../view/theme/diabook/theme.php:124 ../../boot.php:2133 +#: ../../view/theme/diabook/theme.php:124 ../../boot.php:2132 #: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:87 -#: ../../include/nav.php:77 ../../mod/profperm.php:103 +#: ../../include/nav.php:77 ../../mod/profperm.php:104 #: ../../mod/newmember.php:32 msgid "Profile" msgstr "" @@ -214,8 +259,8 @@ msgstr "" msgid "Your profile page" msgstr "" -#: ../../view/theme/diabook/theme.php:125 ../../include/nav.php:177 -#: ../../mod/contacts.php:718 +#: ../../view/theme/diabook/theme.php:125 ../../include/nav.php:178 +#: ../../mod/contacts.php:788 msgid "Contacts" msgstr "" @@ -223,7 +268,7 @@ msgstr "" msgid "Your contacts" msgstr "" -#: ../../view/theme/diabook/theme.php:126 ../../boot.php:2140 +#: ../../view/theme/diabook/theme.php:126 ../../boot.php:2139 #: ../../include/nav.php:78 ../../mod/fbrowser.php:25 msgid "Photos" msgstr "" @@ -232,8 +277,8 @@ msgstr "" msgid "Your photos" msgstr "" -#: ../../view/theme/diabook/theme.php:127 ../../boot.php:2157 -#: ../../include/nav.php:80 ../../mod/events.php:370 +#: ../../view/theme/diabook/theme.php:127 ../../boot.php:2156 +#: ../../include/nav.php:80 ../../mod/events.php:382 msgid "Events" msgstr "" @@ -255,12 +300,12 @@ msgid "Community" msgstr "" #: ../../view/theme/diabook/theme.php:463 ../../include/conversation.php:118 -#: ../../include/conversation.php:245 ../../include/text.php:1983 +#: ../../include/conversation.php:245 ../../include/text.php:1993 msgid "event" msgstr "" #: ../../view/theme/diabook/theme.php:466 -#: ../../view/theme/diabook/theme.php:475 ../../include/diaspora.php:2011 +#: ../../view/theme/diabook/theme.php:475 ../../include/diaspora.php:2060 #: ../../include/conversation.php:121 ../../include/conversation.php:130 #: ../../include/conversation.php:248 ../../include/conversation.php:257 #: ../../mod/like.php:149 ../../mod/like.php:319 ../../mod/subthread.php:87 @@ -268,14 +313,14 @@ msgstr "" msgid "status" msgstr "" -#: ../../view/theme/diabook/theme.php:471 ../../include/diaspora.php:2011 +#: ../../view/theme/diabook/theme.php:471 ../../include/diaspora.php:2060 #: ../../include/conversation.php:126 ../../include/conversation.php:253 -#: ../../include/text.php:1985 ../../mod/like.php:149 +#: ../../include/text.php:1995 ../../mod/like.php:149 #: ../../mod/subthread.php:87 ../../mod/tagger.php:62 msgid "photo" msgstr "" -#: ../../view/theme/diabook/theme.php:480 ../../include/diaspora.php:2027 +#: ../../view/theme/diabook/theme.php:480 ../../include/diaspora.php:2076 #: ../../include/conversation.php:137 ../../mod/like.php:166 #, php-format msgid "%1$s likes %2$s's %3$s" @@ -320,8 +365,8 @@ msgid "Invite Friends" msgstr "" #: ../../view/theme/diabook/theme.php:544 -#: ../../view/theme/diabook/theme.php:648 ../../include/nav.php:172 -#: ../../mod/settings.php:90 ../../mod/admin.php:1104 ../../mod/admin.php:1325 +#: ../../view/theme/diabook/theme.php:648 ../../include/nav.php:173 +#: ../../mod/settings.php:90 ../../mod/admin.php:1107 ../../mod/admin.php:1328 #: ../../mod/newmember.php:22 msgid "Settings" msgstr "" @@ -358,40 +403,42 @@ msgstr "" msgid "Set colour scheme" msgstr "" -#: ../../index.php:211 ../../mod/apps.php:7 +#: ../../index.php:225 ../../mod/apps.php:7 msgid "You must be logged in to use addons. " msgstr "" -#: ../../index.php:255 ../../mod/help.php:42 +#: ../../index.php:269 ../../mod/p.php:16 ../../mod/p.php:25 +#: ../../mod/help.php:42 msgid "Not Found" msgstr "" -#: ../../index.php:258 ../../mod/help.php:45 +#: ../../index.php:272 ../../mod/help.php:45 msgid "Page not found." msgstr "" -#: ../../index.php:367 ../../mod/group.php:72 ../../mod/profperm.php:19 +#: ../../index.php:381 ../../mod/group.php:72 ../../mod/profperm.php:19 msgid "Permission denied" msgstr "" -#: ../../index.php:368 ../../include/items.php:4815 ../../mod/attach.php:33 +#: ../../index.php:382 ../../include/items.php:4838 ../../mod/attach.php:33 #: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33 #: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103 #: ../../mod/group.php:19 ../../mod/delegate.php:12 #: ../../mod/notifications.php:66 ../../mod/settings.php:20 -#: ../../mod/settings.php:107 ../../mod/settings.php:606 -#: ../../mod/contacts.php:258 ../../mod/wall_attach.php:55 +#: ../../mod/settings.php:107 ../../mod/settings.php:608 +#: ../../mod/contacts.php:322 ../../mod/wall_attach.php:55 #: ../../mod/register.php:42 ../../mod/manage.php:96 ../../mod/editpost.php:10 #: ../../mod/regmod.php:110 ../../mod/api.php:26 ../../mod/api.php:31 #: ../../mod/suggest.php:58 ../../mod/nogroup.php:25 ../../mod/fsuggest.php:78 #: ../../mod/viewcontacts.php:24 ../../mod/wall_upload.php:66 #: ../../mod/notes.php:20 ../../mod/network.php:4 ../../mod/photos.php:134 -#: ../../mod/photos.php:1050 ../../mod/follow.php:9 ../../mod/uimport.php:23 -#: ../../mod/invite.php:15 ../../mod/invite.php:101 ../../mod/events.php:140 -#: ../../mod/mood.php:114 ../../mod/message.php:38 ../../mod/message.php:174 +#: ../../mod/photos.php:1050 ../../mod/follow.php:9 ../../mod/follow.php:39 +#: ../../mod/follow.php:78 ../../mod/uimport.php:23 ../../mod/invite.php:15 +#: ../../mod/invite.php:101 ../../mod/events.php:152 ../../mod/mood.php:114 +#: ../../mod/message.php:38 ../../mod/message.php:174 #: ../../mod/profiles.php:165 ../../mod/profiles.php:618 #: ../../mod/install.php:151 ../../mod/crepair.php:119 ../../mod/poke.php:135 -#: ../../mod/display.php:499 ../../mod/dfrn_confirm.php:55 +#: ../../mod/display.php:501 ../../mod/dfrn_confirm.php:55 #: ../../mod/item.php:169 ../../mod/item.php:185 #: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169 #: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193 @@ -399,7 +446,7 @@ msgstr "" msgid "Permission denied." msgstr "" -#: ../../index.php:427 +#: ../../index.php:441 msgid "toggle mobile" msgstr "" @@ -409,7 +456,7 @@ msgid "Do you wish to confirm your identity (%s) with %s" msgstr "" #: ../../addon-wrk/openidserver/lib/render/trust.php:43 -#: ../../mod/dfrn_request.php:676 +#: ../../mod/dfrn_request.php:674 ../../mod/dfrn_request.php:691 msgid "Confirm" msgstr "" @@ -438,14 +485,14 @@ msgstr "" msgid "Delete this item?" msgstr "" -#: ../../boot.php:750 ../../object/Item.php:361 ../../object/Item.php:677 +#: ../../boot.php:750 ../../object/Item.php:364 ../../object/Item.php:680 #: ../../mod/photos.php:1564 ../../mod/photos.php:1608 #: ../../mod/photos.php:1696 ../../mod/content.php:709 msgid "Comment" msgstr "" #: ../../boot.php:751 ../../include/contact_widgets.php:205 -#: ../../object/Item.php:390 ../../mod/content.php:606 +#: ../../object/Item.php:393 ../../mod/content.php:606 msgid "show more" msgstr "" @@ -528,7 +575,7 @@ msgid "Edit profile" msgstr "" #: ../../boot.php:1557 ../../include/contact_widgets.php:10 -#: ../../mod/suggest.php:90 ../../mod/match.php:58 +#: ../../mod/suggest.php:90 ../../mod/match.php:63 msgid "Connect" msgstr "" @@ -536,7 +583,7 @@ msgstr "" msgid "Message" msgstr "" -#: ../../boot.php:1595 ../../include/nav.php:175 +#: ../../boot.php:1595 ../../include/nav.php:176 msgid "Profiles" msgstr "" @@ -564,8 +611,8 @@ msgstr "" msgid "Edit visibility" msgstr "" -#: ../../boot.php:1637 ../../include/event.php:40 -#: ../../include/bb2diaspora.php:155 ../../mod/events.php:471 +#: ../../boot.php:1637 ../../include/event.php:42 +#: ../../include/bb2diaspora.php:155 ../../mod/events.php:483 #: ../../mod/directory.php:136 msgid "Location:" msgstr "" @@ -590,71 +637,71 @@ msgstr "" msgid "About:" msgstr "" -#: ../../boot.php:1711 +#: ../../boot.php:1710 msgid "Network:" msgstr "" -#: ../../boot.php:1743 ../../boot.php:1829 +#: ../../boot.php:1742 ../../boot.php:1828 msgid "g A l F d" msgstr "" -#: ../../boot.php:1744 ../../boot.php:1830 +#: ../../boot.php:1743 ../../boot.php:1829 msgid "F d" msgstr "" -#: ../../boot.php:1789 ../../boot.php:1877 +#: ../../boot.php:1788 ../../boot.php:1876 msgid "[today]" msgstr "" -#: ../../boot.php:1801 +#: ../../boot.php:1800 msgid "Birthday Reminders" msgstr "" -#: ../../boot.php:1802 +#: ../../boot.php:1801 msgid "Birthdays this week:" msgstr "" -#: ../../boot.php:1864 +#: ../../boot.php:1863 msgid "[No description]" msgstr "" -#: ../../boot.php:1888 +#: ../../boot.php:1887 msgid "Event Reminders" msgstr "" -#: ../../boot.php:1889 +#: ../../boot.php:1888 msgid "Events this week:" msgstr "" -#: ../../boot.php:2126 ../../include/nav.php:76 +#: ../../boot.php:2125 ../../include/nav.php:76 msgid "Status" msgstr "" -#: ../../boot.php:2129 +#: ../../boot.php:2128 msgid "Status Messages and Posts" msgstr "" -#: ../../boot.php:2136 +#: ../../boot.php:2135 msgid "Profile Details" msgstr "" -#: ../../boot.php:2143 ../../mod/photos.php:52 +#: ../../boot.php:2142 ../../mod/photos.php:52 msgid "Photo Albums" msgstr "" -#: ../../boot.php:2147 ../../boot.php:2150 ../../include/nav.php:79 +#: ../../boot.php:2146 ../../boot.php:2149 ../../include/nav.php:79 msgid "Videos" msgstr "" -#: ../../boot.php:2160 +#: ../../boot.php:2159 msgid "Events and Calendar" msgstr "" -#: ../../boot.php:2164 ../../mod/notes.php:44 +#: ../../boot.php:2163 ../../mod/notes.php:44 msgid "Personal Notes" msgstr "" -#: ../../boot.php:2167 +#: ../../boot.php:2166 msgid "Only You Can See This" msgstr "" @@ -832,57 +879,57 @@ msgstr "" msgid "Ability to mute notifications for a thread" msgstr "" -#: ../../include/items.php:2307 ../../include/datetime.php:477 +#: ../../include/items.php:2330 ../../include/datetime.php:477 #, php-format msgid "%s's birthday" msgstr "" -#: ../../include/items.php:2308 ../../include/datetime.php:478 +#: ../../include/items.php:2331 ../../include/datetime.php:478 #, php-format msgid "Happy Birthday %s" msgstr "" -#: ../../include/items.php:4111 ../../mod/dfrn_request.php:717 -#: ../../mod/dfrn_confirm.php:752 +#: ../../include/items.php:4135 ../../mod/dfrn_request.php:732 +#: ../../mod/dfrn_confirm.php:753 msgid "[Name Withheld]" msgstr "" -#: ../../include/items.php:4619 ../../mod/admin.php:169 -#: ../../mod/admin.php:1052 ../../mod/admin.php:1265 ../../mod/viewsrc.php:15 -#: ../../mod/notice.php:15 ../../mod/display.php:82 ../../mod/display.php:284 -#: ../../mod/display.php:503 +#: ../../include/items.php:4642 ../../mod/admin.php:169 +#: ../../mod/admin.php:1055 ../../mod/admin.php:1268 ../../mod/viewsrc.php:15 +#: ../../mod/notice.php:15 ../../mod/display.php:82 ../../mod/display.php:286 +#: ../../mod/display.php:505 msgid "Item not found." msgstr "" -#: ../../include/items.php:4658 +#: ../../include/items.php:4681 msgid "Do you really want to delete this item?" msgstr "" -#: ../../include/items.php:4660 ../../mod/settings.php:1015 -#: ../../mod/settings.php:1021 ../../mod/settings.php:1029 -#: ../../mod/settings.php:1033 ../../mod/settings.php:1038 -#: ../../mod/settings.php:1044 ../../mod/settings.php:1050 -#: ../../mod/settings.php:1056 ../../mod/settings.php:1086 -#: ../../mod/settings.php:1087 ../../mod/settings.php:1088 -#: ../../mod/settings.php:1089 ../../mod/settings.php:1090 -#: ../../mod/contacts.php:341 ../../mod/register.php:233 -#: ../../mod/dfrn_request.php:830 ../../mod/api.php:105 -#: ../../mod/suggest.php:29 ../../mod/message.php:209 +#: ../../include/items.php:4683 ../../mod/settings.php:1035 +#: ../../mod/settings.php:1041 ../../mod/settings.php:1049 +#: ../../mod/settings.php:1053 ../../mod/settings.php:1058 +#: ../../mod/settings.php:1064 ../../mod/settings.php:1070 +#: ../../mod/settings.php:1076 ../../mod/settings.php:1106 +#: ../../mod/settings.php:1107 ../../mod/settings.php:1108 +#: ../../mod/settings.php:1109 ../../mod/settings.php:1110 +#: ../../mod/contacts.php:411 ../../mod/register.php:233 +#: ../../mod/dfrn_request.php:845 ../../mod/api.php:105 +#: ../../mod/suggest.php:29 ../../mod/follow.php:54 ../../mod/message.php:209 #: ../../mod/profiles.php:661 ../../mod/profiles.php:664 msgid "Yes" msgstr "" -#: ../../include/items.php:4663 ../../include/conversation.php:1128 -#: ../../mod/settings.php:620 ../../mod/settings.php:646 -#: ../../mod/contacts.php:344 ../../mod/editpost.php:148 -#: ../../mod/dfrn_request.php:844 ../../mod/fbrowser.php:81 +#: ../../include/items.php:4686 ../../include/conversation.php:1128 +#: ../../mod/settings.php:622 ../../mod/settings.php:648 +#: ../../mod/contacts.php:414 ../../mod/editpost.php:148 +#: ../../mod/dfrn_request.php:859 ../../mod/fbrowser.php:81 #: ../../mod/fbrowser.php:116 ../../mod/suggest.php:32 -#: ../../mod/photos.php:203 ../../mod/photos.php:292 ../../mod/tagrm.php:11 -#: ../../mod/tagrm.php:94 ../../mod/message.php:212 +#: ../../mod/photos.php:203 ../../mod/photos.php:292 ../../mod/follow.php:65 +#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/message.php:212 msgid "Cancel" msgstr "" -#: ../../include/items.php:4881 +#: ../../include/items.php:4904 msgid "Archives" msgstr "" @@ -917,18 +964,22 @@ msgstr "" msgid "Create a new group" msgstr "" -#: ../../include/group.php:273 +#: ../../include/group.php:273 ../../mod/group.php:94 ../../mod/group.php:180 +msgid "Group Name: " +msgstr "" + +#: ../../include/group.php:275 msgid "Contacts not in any group" msgstr "" -#: ../../include/group.php:275 ../../mod/network.php:195 +#: ../../include/group.php:277 ../../mod/network.php:195 msgid "add" msgstr "" #: ../../include/Photo_old.php:911 ../../include/Photo_old.php:926 #: ../../include/Photo_old.php:933 ../../include/Photo_old.php:955 -#: ../../include/Photo.php:933 ../../include/Photo.php:948 -#: ../../include/Photo.php:955 ../../include/Photo.php:977 +#: ../../include/Photo.php:951 ../../include/Photo.php:966 +#: ../../include/Photo.php:973 ../../include/Photo.php:995 #: ../../include/message.php:144 ../../mod/wall_upload.php:169 #: ../../mod/wall_upload.php:178 ../../mod/wall_upload.php:185 #: ../../mod/item.php:485 @@ -975,7 +1026,7 @@ msgstr "" msgid "Examples: Robert Morgenstein, Fishing" msgstr "" -#: ../../include/contact_widgets.php:34 ../../mod/contacts.php:724 +#: ../../include/contact_widgets.php:34 ../../mod/contacts.php:794 #: ../../mod/directory.php:63 msgid "Find" msgstr "" @@ -1000,7 +1051,7 @@ msgstr "" msgid "Categories" msgstr "" -#: ../../include/contact_widgets.php:200 ../../mod/contacts.php:439 +#: ../../include/contact_widgets.php:200 ../../mod/contacts.php:509 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" @@ -1030,233 +1081,233 @@ msgstr "" msgid "%s " msgstr "" -#: ../../include/enotify.php:68 +#: ../../include/enotify.php:78 #, php-format msgid "[Friendica:Notify] New mail received at %s" msgstr "" -#: ../../include/enotify.php:70 +#: ../../include/enotify.php:80 #, php-format msgid "%1$s sent you a new private message at %2$s." msgstr "" -#: ../../include/enotify.php:71 +#: ../../include/enotify.php:81 #, php-format msgid "%1$s sent you %2$s." msgstr "" -#: ../../include/enotify.php:71 +#: ../../include/enotify.php:81 msgid "a private message" msgstr "" -#: ../../include/enotify.php:72 +#: ../../include/enotify.php:82 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "" -#: ../../include/enotify.php:124 +#: ../../include/enotify.php:134 #, php-format msgid "%1$s commented on [url=%2$s]a %3$s[/url]" msgstr "" -#: ../../include/enotify.php:131 +#: ../../include/enotify.php:141 #, php-format msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" msgstr "" -#: ../../include/enotify.php:139 +#: ../../include/enotify.php:149 #, php-format msgid "%1$s commented on [url=%2$s]your %3$s[/url]" msgstr "" -#: ../../include/enotify.php:149 +#: ../../include/enotify.php:159 #, php-format msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" msgstr "" -#: ../../include/enotify.php:150 +#: ../../include/enotify.php:160 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "" -#: ../../include/enotify.php:153 ../../include/enotify.php:168 -#: ../../include/enotify.php:181 ../../include/enotify.php:194 -#: ../../include/enotify.php:212 ../../include/enotify.php:225 +#: ../../include/enotify.php:163 ../../include/enotify.php:178 +#: ../../include/enotify.php:191 ../../include/enotify.php:204 +#: ../../include/enotify.php:222 ../../include/enotify.php:235 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "" -#: ../../include/enotify.php:160 +#: ../../include/enotify.php:170 #, php-format msgid "[Friendica:Notify] %s posted to your profile wall" msgstr "" -#: ../../include/enotify.php:162 +#: ../../include/enotify.php:172 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "" -#: ../../include/enotify.php:164 +#: ../../include/enotify.php:174 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "" -#: ../../include/enotify.php:175 +#: ../../include/enotify.php:185 #, php-format msgid "[Friendica:Notify] %s tagged you" msgstr "" -#: ../../include/enotify.php:176 +#: ../../include/enotify.php:186 #, php-format msgid "%1$s tagged you at %2$s" msgstr "" -#: ../../include/enotify.php:177 +#: ../../include/enotify.php:187 #, php-format msgid "%1$s [url=%2$s]tagged you[/url]." msgstr "" -#: ../../include/enotify.php:188 +#: ../../include/enotify.php:198 #, php-format msgid "[Friendica:Notify] %s shared a new post" msgstr "" -#: ../../include/enotify.php:189 +#: ../../include/enotify.php:199 #, php-format msgid "%1$s shared a new post at %2$s" msgstr "" -#: ../../include/enotify.php:190 +#: ../../include/enotify.php:200 #, php-format msgid "%1$s [url=%2$s]shared a post[/url]." msgstr "" -#: ../../include/enotify.php:202 +#: ../../include/enotify.php:212 #, php-format msgid "[Friendica:Notify] %1$s poked you" msgstr "" -#: ../../include/enotify.php:203 +#: ../../include/enotify.php:213 #, php-format msgid "%1$s poked you at %2$s" msgstr "" -#: ../../include/enotify.php:204 +#: ../../include/enotify.php:214 #, php-format msgid "%1$s [url=%2$s]poked you[/url]." msgstr "" -#: ../../include/enotify.php:219 +#: ../../include/enotify.php:229 #, php-format msgid "[Friendica:Notify] %s tagged your post" msgstr "" -#: ../../include/enotify.php:220 +#: ../../include/enotify.php:230 #, php-format msgid "%1$s tagged your post at %2$s" msgstr "" -#: ../../include/enotify.php:221 +#: ../../include/enotify.php:231 #, php-format msgid "%1$s tagged [url=%2$s]your post[/url]" msgstr "" -#: ../../include/enotify.php:232 +#: ../../include/enotify.php:242 msgid "[Friendica:Notify] Introduction received" msgstr "" -#: ../../include/enotify.php:233 +#: ../../include/enotify.php:243 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "" -#: ../../include/enotify.php:234 +#: ../../include/enotify.php:244 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "" -#: ../../include/enotify.php:237 ../../include/enotify.php:279 +#: ../../include/enotify.php:247 ../../include/enotify.php:289 #, php-format msgid "You may visit their profile at %s" msgstr "" -#: ../../include/enotify.php:239 +#: ../../include/enotify.php:249 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "" -#: ../../include/enotify.php:247 +#: ../../include/enotify.php:257 msgid "[Friendica:Notify] A new person is sharing with you" msgstr "" -#: ../../include/enotify.php:248 ../../include/enotify.php:249 +#: ../../include/enotify.php:258 ../../include/enotify.php:259 #, php-format msgid "%1$s is sharing with you at %2$s" msgstr "" -#: ../../include/enotify.php:255 +#: ../../include/enotify.php:265 msgid "[Friendica:Notify] You have a new follower" msgstr "" -#: ../../include/enotify.php:256 ../../include/enotify.php:257 +#: ../../include/enotify.php:266 ../../include/enotify.php:267 #, php-format msgid "You have a new follower at %2$s : %1$s" msgstr "" -#: ../../include/enotify.php:270 +#: ../../include/enotify.php:280 msgid "[Friendica:Notify] Friend suggestion received" msgstr "" -#: ../../include/enotify.php:271 -#, php-format -msgid "You've received a friend suggestion from '%1$s' at %2$s" -msgstr "" - -#: ../../include/enotify.php:272 -#, php-format -msgid "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." -msgstr "" - -#: ../../include/enotify.php:277 -msgid "Name:" -msgstr "" - -#: ../../include/enotify.php:278 -msgid "Photo:" -msgstr "" - #: ../../include/enotify.php:281 #, php-format +msgid "You've received a friend suggestion from '%1$s' at %2$s" +msgstr "" + +#: ../../include/enotify.php:282 +#, php-format +msgid "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." +msgstr "" + +#: ../../include/enotify.php:287 +msgid "Name:" +msgstr "" + +#: ../../include/enotify.php:288 +msgid "Photo:" +msgstr "" + +#: ../../include/enotify.php:291 +#, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "" -#: ../../include/enotify.php:289 ../../include/enotify.php:302 +#: ../../include/enotify.php:299 ../../include/enotify.php:312 msgid "[Friendica:Notify] Connection accepted" msgstr "" -#: ../../include/enotify.php:290 ../../include/enotify.php:303 +#: ../../include/enotify.php:300 ../../include/enotify.php:313 #, php-format msgid "'%1$s' has acepted your connection request at %2$s" msgstr "" -#: ../../include/enotify.php:291 ../../include/enotify.php:304 +#: ../../include/enotify.php:301 ../../include/enotify.php:314 #, php-format msgid "%2$s has accepted your [url=%1$s]connection request[/url]." msgstr "" -#: ../../include/enotify.php:294 +#: ../../include/enotify.php:304 msgid "" "You are now mutual friends and may exchange status updates, photos, and " "email\n" "\twithout restriction." msgstr "" -#: ../../include/enotify.php:297 ../../include/enotify.php:311 +#: ../../include/enotify.php:307 ../../include/enotify.php:321 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "" -#: ../../include/enotify.php:307 +#: ../../include/enotify.php:317 #, php-format msgid "" "'%1$s' has chosen to accept you a \"fan\", which restricts some forms of " @@ -1265,83 +1316,83 @@ msgid "" "automatically." msgstr "" -#: ../../include/enotify.php:309 +#: ../../include/enotify.php:319 #, php-format msgid "" "'%1$s' may choose to extend this into a two-way or more permissive " "relationship in the future. " msgstr "" -#: ../../include/enotify.php:322 +#: ../../include/enotify.php:332 msgid "[Friendica System:Notify] registration request" msgstr "" -#: ../../include/enotify.php:323 +#: ../../include/enotify.php:333 #, php-format msgid "You've received a registration request from '%1$s' at %2$s" msgstr "" -#: ../../include/enotify.php:324 +#: ../../include/enotify.php:334 #, php-format msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgstr "" -#: ../../include/enotify.php:327 +#: ../../include/enotify.php:337 #, php-format msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" msgstr "" -#: ../../include/enotify.php:330 +#: ../../include/enotify.php:340 #, php-format msgid "Please visit %s to approve or reject the request." msgstr "" -#: ../../include/api.php:304 ../../include/api.php:315 -#: ../../include/api.php:416 ../../include/api.php:1063 -#: ../../include/api.php:1065 +#: ../../include/api.php:310 ../../include/api.php:321 +#: ../../include/api.php:422 ../../include/api.php:1116 +#: ../../include/api.php:1118 msgid "User not found." msgstr "" -#: ../../include/api.php:770 +#: ../../include/api.php:776 #, php-format msgid "Daily posting limit of %d posts reached. The post was rejected." msgstr "" -#: ../../include/api.php:789 +#: ../../include/api.php:795 #, php-format msgid "Weekly posting limit of %d posts reached. The post was rejected." msgstr "" -#: ../../include/api.php:808 +#: ../../include/api.php:814 #, php-format msgid "Monthly posting limit of %d posts reached. The post was rejected." msgstr "" -#: ../../include/api.php:1271 +#: ../../include/api.php:1325 msgid "There is no status with this id." msgstr "" -#: ../../include/api.php:1341 +#: ../../include/api.php:1399 msgid "There is no conversation with this id." msgstr "" -#: ../../include/api.php:1613 +#: ../../include/api.php:1669 msgid "Invalid request." msgstr "" -#: ../../include/api.php:1624 +#: ../../include/api.php:1680 msgid "Invalid item." msgstr "" -#: ../../include/api.php:1634 +#: ../../include/api.php:1690 msgid "Invalid action. " msgstr "" -#: ../../include/api.php:1642 +#: ../../include/api.php:1698 msgid "DB error" msgstr "" -#: ../../include/network.php:890 +#: ../../include/network.php:959 msgid "view full size" msgstr "" @@ -1349,7 +1400,7 @@ msgstr "" msgid " on Last.fm" msgstr "" -#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1133 +#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1153 msgid "Full Name:" msgstr "" @@ -1486,8 +1537,8 @@ msgstr "" msgid "Addon applications, utilities, games" msgstr "" -#: ../../include/nav.php:119 ../../include/text.php:968 -#: ../../include/text.php:969 ../../mod/search.php:99 +#: ../../include/nav.php:119 ../../include/text.php:970 +#: ../../include/text.php:971 ../../mod/search.php:99 msgid "Search" msgstr "" @@ -1535,87 +1586,87 @@ msgstr "" msgid "Load Network page with no filters" msgstr "" -#: ../../include/nav.php:154 ../../mod/notifications.php:98 +#: ../../include/nav.php:153 ../../mod/notifications.php:98 msgid "Introductions" msgstr "" -#: ../../include/nav.php:154 +#: ../../include/nav.php:153 msgid "Friend Requests" msgstr "" -#: ../../include/nav.php:155 ../../mod/notifications.php:224 +#: ../../include/nav.php:156 ../../mod/notifications.php:224 msgid "Notifications" msgstr "" -#: ../../include/nav.php:156 +#: ../../include/nav.php:157 msgid "See all notifications" msgstr "" -#: ../../include/nav.php:157 +#: ../../include/nav.php:158 msgid "Mark all system notifications seen" msgstr "" -#: ../../include/nav.php:161 ../../mod/message.php:182 +#: ../../include/nav.php:162 ../../mod/message.php:182 msgid "Messages" msgstr "" -#: ../../include/nav.php:161 +#: ../../include/nav.php:162 msgid "Private mail" msgstr "" -#: ../../include/nav.php:162 +#: ../../include/nav.php:163 msgid "Inbox" msgstr "" -#: ../../include/nav.php:163 +#: ../../include/nav.php:164 msgid "Outbox" msgstr "" -#: ../../include/nav.php:164 ../../mod/message.php:9 +#: ../../include/nav.php:165 ../../mod/message.php:9 msgid "New Message" msgstr "" -#: ../../include/nav.php:167 +#: ../../include/nav.php:168 msgid "Manage" msgstr "" -#: ../../include/nav.php:167 +#: ../../include/nav.php:168 msgid "Manage other pages" msgstr "" -#: ../../include/nav.php:170 ../../mod/settings.php:67 +#: ../../include/nav.php:171 ../../mod/settings.php:67 msgid "Delegations" msgstr "" -#: ../../include/nav.php:170 ../../mod/delegate.php:130 +#: ../../include/nav.php:171 ../../mod/delegate.php:130 msgid "Delegate Page Management" msgstr "" -#: ../../include/nav.php:172 +#: ../../include/nav.php:173 msgid "Account settings" msgstr "" -#: ../../include/nav.php:175 +#: ../../include/nav.php:176 msgid "Manage/Edit Profiles" msgstr "" -#: ../../include/nav.php:177 +#: ../../include/nav.php:178 msgid "Manage/edit friends and contacts" msgstr "" -#: ../../include/nav.php:184 ../../mod/admin.php:130 +#: ../../include/nav.php:185 ../../mod/admin.php:130 msgid "Admin" msgstr "" -#: ../../include/nav.php:184 +#: ../../include/nav.php:185 msgid "Site setup and configuration" msgstr "" -#: ../../include/nav.php:188 +#: ../../include/nav.php:189 msgid "Navigation" msgstr "" -#: ../../include/nav.php:188 +#: ../../include/nav.php:189 msgid "Site map" msgstr "" @@ -1726,16 +1777,16 @@ msgstr[1] "" msgid "Done. You can now login with your username and password" msgstr "" -#: ../../include/event.php:11 ../../include/bb2diaspora.php:133 +#: ../../include/event.php:13 ../../include/bb2diaspora.php:133 #: ../../mod/localtime.php:12 msgid "l F d, Y \\@ g:i A" msgstr "" -#: ../../include/event.php:20 ../../include/bb2diaspora.php:139 +#: ../../include/event.php:22 ../../include/bb2diaspora.php:139 msgid "Starts:" msgstr "" -#: ../../include/event.php:30 ../../include/bb2diaspora.php:147 +#: ../../include/event.php:32 ../../include/bb2diaspora.php:147 msgid "Finishes:" msgstr "" @@ -1796,11 +1847,11 @@ msgid "" "[pre]%s[/pre]" msgstr "" -#: ../../include/dbstructure.php:150 +#: ../../include/dbstructure.php:152 msgid "Errors encountered creating database tables." msgstr "" -#: ../../include/dbstructure.php:208 +#: ../../include/dbstructure.php:210 msgid "Errors encountered performing database changes." msgstr "" @@ -1909,19 +1960,19 @@ msgstr "" msgid "Reputable, has my trust" msgstr "" -#: ../../include/contact_selectors.php:56 ../../mod/admin.php:571 +#: ../../include/contact_selectors.php:56 ../../mod/admin.php:573 msgid "Frequently" msgstr "" -#: ../../include/contact_selectors.php:57 ../../mod/admin.php:572 +#: ../../include/contact_selectors.php:57 ../../mod/admin.php:574 msgid "Hourly" msgstr "" -#: ../../include/contact_selectors.php:58 ../../mod/admin.php:573 +#: ../../include/contact_selectors.php:58 ../../mod/admin.php:575 msgid "Twice daily" msgstr "" -#: ../../include/contact_selectors.php:59 ../../mod/admin.php:574 +#: ../../include/contact_selectors.php:59 ../../mod/admin.php:576 msgid "Daily" msgstr "" @@ -1933,7 +1984,7 @@ msgstr "" msgid "Monthly" msgstr "" -#: ../../include/contact_selectors.php:76 ../../mod/dfrn_request.php:836 +#: ../../include/contact_selectors.php:76 ../../mod/dfrn_request.php:851 msgid "Friendica" msgstr "" @@ -1946,13 +1997,13 @@ msgid "RSS/Atom" msgstr "" #: ../../include/contact_selectors.php:79 -#: ../../include/contact_selectors.php:86 ../../mod/admin.php:1003 -#: ../../mod/admin.php:1015 ../../mod/admin.php:1016 ../../mod/admin.php:1031 +#: ../../include/contact_selectors.php:86 ../../mod/admin.php:1006 +#: ../../mod/admin.php:1018 ../../mod/admin.php:1019 ../../mod/admin.php:1034 msgid "Email" msgstr "" -#: ../../include/contact_selectors.php:80 ../../mod/settings.php:741 -#: ../../mod/dfrn_request.php:838 +#: ../../include/contact_selectors.php:80 ../../mod/settings.php:761 +#: ../../mod/dfrn_request.php:853 msgid "Diaspora" msgstr "" @@ -2001,17 +2052,17 @@ msgstr "" msgid "App.net" msgstr "" -#: ../../include/diaspora.php:621 ../../include/conversation.php:172 -#: ../../mod/dfrn_confirm.php:486 +#: ../../include/diaspora.php:622 ../../include/conversation.php:172 +#: ../../mod/dfrn_confirm.php:487 #, php-format msgid "%1$s is now friends with %2$s" msgstr "" -#: ../../include/diaspora.php:704 +#: ../../include/diaspora.php:705 msgid "Sharing notification from Diaspora network" msgstr "" -#: ../../include/diaspora.php:2444 +#: ../../include/diaspora.php:2493 msgid "Attachments:" msgstr "" @@ -2044,36 +2095,36 @@ msgstr "" msgid "%1$s marked %2$s's %3$s as favorite" msgstr "" -#: ../../include/conversation.php:612 ../../object/Item.php:129 +#: ../../include/conversation.php:612 ../../object/Item.php:130 #: ../../mod/photos.php:1653 ../../mod/content.php:437 #: ../../mod/content.php:740 msgid "Select" msgstr "" -#: ../../include/conversation.php:613 ../../object/Item.php:130 -#: ../../mod/group.php:171 ../../mod/settings.php:682 -#: ../../mod/contacts.php:733 ../../mod/admin.php:1007 +#: ../../include/conversation.php:613 ../../object/Item.php:131 +#: ../../mod/group.php:171 ../../mod/settings.php:684 +#: ../../mod/contacts.php:803 ../../mod/admin.php:1010 #: ../../mod/photos.php:1654 ../../mod/content.php:438 #: ../../mod/content.php:741 msgid "Delete" msgstr "" -#: ../../include/conversation.php:653 ../../object/Item.php:326 -#: ../../object/Item.php:327 ../../mod/content.php:471 +#: ../../include/conversation.php:653 ../../object/Item.php:329 +#: ../../object/Item.php:330 ../../mod/content.php:471 #: ../../mod/content.php:852 ../../mod/content.php:853 #, php-format msgid "View %s's profile @ %s" msgstr "" -#: ../../include/conversation.php:665 ../../object/Item.php:316 +#: ../../include/conversation.php:665 ../../object/Item.php:319 msgid "Categories:" msgstr "" -#: ../../include/conversation.php:666 ../../object/Item.php:317 +#: ../../include/conversation.php:666 ../../object/Item.php:320 msgid "Filed under:" msgstr "" -#: ../../include/conversation.php:673 ../../object/Item.php:340 +#: ../../include/conversation.php:673 ../../object/Item.php:343 #: ../../mod/content.php:481 ../../mod/content.php:864 #, php-format msgid "%s from %s" @@ -2084,7 +2135,7 @@ msgid "View in context" msgstr "" #: ../../include/conversation.php:691 ../../include/conversation.php:1108 -#: ../../object/Item.php:364 ../../mod/wallmessage.php:156 +#: ../../object/Item.php:367 ../../mod/wallmessage.php:156 #: ../../mod/editpost.php:124 ../../mod/photos.php:1545 #: ../../mod/message.php:334 ../../mod/message.php:565 #: ../../mod/content.php:499 ../../mod/content.php:883 @@ -2187,7 +2238,7 @@ msgstr "" msgid "Connectors disabled, since \"%s\" is enabled." msgstr "" -#: ../../include/conversation.php:1056 ../../mod/settings.php:1033 +#: ../../include/conversation.php:1056 ../../mod/settings.php:1053 msgid "Hide your profile details from unknown viewers?" msgstr "" @@ -2283,10 +2334,10 @@ msgstr "" msgid "Example: bob@example.com, mary@example.com" msgstr "" -#: ../../include/conversation.php:1125 ../../object/Item.php:687 +#: ../../include/conversation.php:1125 ../../object/Item.php:690 #: ../../mod/editpost.php:145 ../../mod/photos.php:1566 #: ../../mod/photos.php:1610 ../../mod/photos.php:1698 -#: ../../mod/content.php:719 +#: ../../mod/events.php:489 ../../mod/content.php:719 msgid "Preview" msgstr "" @@ -2302,299 +2353,299 @@ msgstr "" msgid "Private post" msgstr "" -#: ../../include/text.php:297 +#: ../../include/text.php:299 msgid "newer" msgstr "" -#: ../../include/text.php:299 +#: ../../include/text.php:301 msgid "older" msgstr "" -#: ../../include/text.php:304 +#: ../../include/text.php:306 msgid "prev" msgstr "" -#: ../../include/text.php:306 +#: ../../include/text.php:308 msgid "first" msgstr "" -#: ../../include/text.php:338 +#: ../../include/text.php:340 msgid "last" msgstr "" -#: ../../include/text.php:341 +#: ../../include/text.php:343 msgid "next" msgstr "" -#: ../../include/text.php:396 +#: ../../include/text.php:398 msgid "Loading more entries..." msgstr "" -#: ../../include/text.php:397 +#: ../../include/text.php:399 msgid "The end" msgstr "" -#: ../../include/text.php:870 +#: ../../include/text.php:872 msgid "No contacts" msgstr "" -#: ../../include/text.php:879 +#: ../../include/text.php:881 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" msgstr[0] "" msgstr[1] "" -#: ../../include/text.php:891 ../../mod/viewcontacts.php:78 +#: ../../include/text.php:893 ../../mod/viewcontacts.php:78 msgid "View Contacts" msgstr "" -#: ../../include/text.php:971 ../../mod/editpost.php:109 +#: ../../include/text.php:973 ../../mod/editpost.php:109 #: ../../mod/notes.php:63 ../../mod/filer.php:31 msgid "Save" msgstr "" -#: ../../include/text.php:1020 +#: ../../include/text.php:1022 msgid "poke" msgstr "" -#: ../../include/text.php:1020 +#: ../../include/text.php:1022 msgid "poked" msgstr "" -#: ../../include/text.php:1021 +#: ../../include/text.php:1023 msgid "ping" msgstr "" -#: ../../include/text.php:1021 +#: ../../include/text.php:1023 msgid "pinged" msgstr "" -#: ../../include/text.php:1022 +#: ../../include/text.php:1024 msgid "prod" msgstr "" -#: ../../include/text.php:1022 +#: ../../include/text.php:1024 msgid "prodded" msgstr "" -#: ../../include/text.php:1023 +#: ../../include/text.php:1025 msgid "slap" msgstr "" -#: ../../include/text.php:1023 +#: ../../include/text.php:1025 msgid "slapped" msgstr "" -#: ../../include/text.php:1024 +#: ../../include/text.php:1026 msgid "finger" msgstr "" -#: ../../include/text.php:1024 +#: ../../include/text.php:1026 msgid "fingered" msgstr "" -#: ../../include/text.php:1025 +#: ../../include/text.php:1027 msgid "rebuff" msgstr "" -#: ../../include/text.php:1025 +#: ../../include/text.php:1027 msgid "rebuffed" msgstr "" -#: ../../include/text.php:1039 +#: ../../include/text.php:1041 msgid "happy" msgstr "" -#: ../../include/text.php:1040 +#: ../../include/text.php:1042 msgid "sad" msgstr "" -#: ../../include/text.php:1041 +#: ../../include/text.php:1043 msgid "mellow" msgstr "" -#: ../../include/text.php:1042 +#: ../../include/text.php:1044 msgid "tired" msgstr "" -#: ../../include/text.php:1043 +#: ../../include/text.php:1045 msgid "perky" msgstr "" -#: ../../include/text.php:1044 +#: ../../include/text.php:1046 msgid "angry" msgstr "" -#: ../../include/text.php:1045 +#: ../../include/text.php:1047 msgid "stupified" msgstr "" -#: ../../include/text.php:1046 +#: ../../include/text.php:1048 msgid "puzzled" msgstr "" -#: ../../include/text.php:1047 +#: ../../include/text.php:1049 msgid "interested" msgstr "" -#: ../../include/text.php:1048 +#: ../../include/text.php:1050 msgid "bitter" msgstr "" -#: ../../include/text.php:1049 +#: ../../include/text.php:1051 msgid "cheerful" msgstr "" -#: ../../include/text.php:1050 +#: ../../include/text.php:1052 msgid "alive" msgstr "" -#: ../../include/text.php:1051 +#: ../../include/text.php:1053 msgid "annoyed" msgstr "" -#: ../../include/text.php:1052 +#: ../../include/text.php:1054 msgid "anxious" msgstr "" -#: ../../include/text.php:1053 +#: ../../include/text.php:1055 msgid "cranky" msgstr "" -#: ../../include/text.php:1054 +#: ../../include/text.php:1056 msgid "disturbed" msgstr "" -#: ../../include/text.php:1055 +#: ../../include/text.php:1057 msgid "frustrated" msgstr "" -#: ../../include/text.php:1056 +#: ../../include/text.php:1058 msgid "motivated" msgstr "" -#: ../../include/text.php:1057 +#: ../../include/text.php:1059 msgid "relaxed" msgstr "" -#: ../../include/text.php:1058 +#: ../../include/text.php:1060 msgid "surprised" msgstr "" -#: ../../include/text.php:1228 +#: ../../include/text.php:1230 msgid "Monday" msgstr "" -#: ../../include/text.php:1228 +#: ../../include/text.php:1230 msgid "Tuesday" msgstr "" -#: ../../include/text.php:1228 +#: ../../include/text.php:1230 msgid "Wednesday" msgstr "" -#: ../../include/text.php:1228 +#: ../../include/text.php:1230 msgid "Thursday" msgstr "" -#: ../../include/text.php:1228 +#: ../../include/text.php:1230 msgid "Friday" msgstr "" -#: ../../include/text.php:1228 +#: ../../include/text.php:1230 msgid "Saturday" msgstr "" -#: ../../include/text.php:1228 +#: ../../include/text.php:1230 msgid "Sunday" msgstr "" -#: ../../include/text.php:1232 +#: ../../include/text.php:1234 msgid "January" msgstr "" -#: ../../include/text.php:1232 +#: ../../include/text.php:1234 msgid "February" msgstr "" -#: ../../include/text.php:1232 +#: ../../include/text.php:1234 msgid "March" msgstr "" -#: ../../include/text.php:1232 +#: ../../include/text.php:1234 msgid "April" msgstr "" -#: ../../include/text.php:1232 +#: ../../include/text.php:1234 msgid "May" msgstr "" -#: ../../include/text.php:1232 +#: ../../include/text.php:1234 msgid "June" msgstr "" -#: ../../include/text.php:1232 +#: ../../include/text.php:1234 msgid "July" msgstr "" -#: ../../include/text.php:1232 +#: ../../include/text.php:1234 msgid "August" msgstr "" -#: ../../include/text.php:1232 +#: ../../include/text.php:1234 msgid "September" msgstr "" -#: ../../include/text.php:1232 +#: ../../include/text.php:1234 msgid "October" msgstr "" -#: ../../include/text.php:1232 +#: ../../include/text.php:1234 msgid "November" msgstr "" -#: ../../include/text.php:1232 +#: ../../include/text.php:1234 msgid "December" msgstr "" -#: ../../include/text.php:1422 ../../mod/videos.php:301 +#: ../../include/text.php:1424 ../../mod/videos.php:301 msgid "View Video" msgstr "" -#: ../../include/text.php:1454 +#: ../../include/text.php:1456 msgid "bytes" msgstr "" -#: ../../include/text.php:1478 ../../include/text.php:1490 +#: ../../include/text.php:1488 ../../include/text.php:1500 msgid "Click to open/close" msgstr "" -#: ../../include/text.php:1664 ../../include/text.php:1674 -#: ../../mod/events.php:335 +#: ../../include/text.php:1674 ../../include/text.php:1684 +#: ../../mod/events.php:347 msgid "link to source" msgstr "" -#: ../../include/text.php:1731 +#: ../../include/text.php:1741 msgid "Select an alternate language" msgstr "" -#: ../../include/text.php:1987 +#: ../../include/text.php:1997 msgid "activity" msgstr "" -#: ../../include/text.php:1989 ../../object/Item.php:389 -#: ../../object/Item.php:402 ../../mod/content.php:605 +#: ../../include/text.php:1999 ../../object/Item.php:392 +#: ../../object/Item.php:405 ../../mod/content.php:605 msgid "comment" msgid_plural "comments" msgstr[0] "" msgstr[1] "" -#: ../../include/text.php:1990 +#: ../../include/text.php:2000 msgid "post" msgstr "" -#: ../../include/text.php:2158 +#: ../../include/text.php:2168 msgid "Item filed" msgstr "" @@ -2617,28 +2668,28 @@ msgstr "" msgid "The error message was:" msgstr "" -#: ../../include/bbcode.php:433 ../../include/bbcode.php:1066 -#: ../../include/bbcode.php:1067 +#: ../../include/bbcode.php:448 ../../include/bbcode.php:1094 +#: ../../include/bbcode.php:1095 msgid "Image/photo" msgstr "" -#: ../../include/bbcode.php:531 +#: ../../include/bbcode.php:546 #, php-format msgid "%2$s %3$s" msgstr "" -#: ../../include/bbcode.php:565 +#: ../../include/bbcode.php:580 #, php-format msgid "" "%s wrote the following post" msgstr "" -#: ../../include/bbcode.php:1030 ../../include/bbcode.php:1050 +#: ../../include/bbcode.php:1058 ../../include/bbcode.php:1078 msgid "$1 wrote:" msgstr "" -#: ../../include/bbcode.php:1075 ../../include/bbcode.php:1076 +#: ../../include/bbcode.php:1103 ../../include/bbcode.php:1104 msgid "Encrypted content" msgstr "" @@ -2654,17 +2705,17 @@ msgstr "" msgid "Welcome back " msgstr "" -#: ../../include/security.php:366 +#: ../../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/oembed.php:213 +#: ../../include/oembed.php:218 msgid "Embedded content" msgstr "" -#: ../../include/oembed.php:222 +#: ../../include/oembed.php:227 msgid "Embedding disabled" msgstr "" @@ -3013,7 +3064,7 @@ msgid "" "\t\tThank you and welcome to %2$s." msgstr "" -#: ../../include/user.php:413 ../../mod/admin.php:838 +#: ../../include/user.php:413 ../../mod/admin.php:841 #, php-format msgid "Registration details for %s" msgstr "" @@ -3022,144 +3073,144 @@ msgstr "" msgid "Visible to everybody" msgstr "" -#: ../../object/Item.php:94 +#: ../../object/Item.php:95 msgid "This entry was edited" msgstr "" -#: ../../object/Item.php:116 ../../mod/photos.php:1359 +#: ../../object/Item.php:117 ../../mod/photos.php:1359 #: ../../mod/content.php:620 msgid "Private Message" msgstr "" -#: ../../object/Item.php:120 ../../mod/settings.php:681 +#: ../../object/Item.php:121 ../../mod/settings.php:683 #: ../../mod/content.php:728 msgid "Edit" msgstr "" -#: ../../object/Item.php:133 ../../mod/content.php:763 +#: ../../object/Item.php:134 ../../mod/content.php:763 msgid "save to folder" msgstr "" -#: ../../object/Item.php:195 ../../mod/content.php:753 +#: ../../object/Item.php:196 ../../mod/content.php:753 msgid "add star" msgstr "" -#: ../../object/Item.php:196 ../../mod/content.php:754 +#: ../../object/Item.php:197 ../../mod/content.php:754 msgid "remove star" msgstr "" -#: ../../object/Item.php:197 ../../mod/content.php:755 +#: ../../object/Item.php:198 ../../mod/content.php:755 msgid "toggle star status" msgstr "" -#: ../../object/Item.php:200 ../../mod/content.php:758 +#: ../../object/Item.php:201 ../../mod/content.php:758 msgid "starred" msgstr "" -#: ../../object/Item.php:208 +#: ../../object/Item.php:209 msgid "ignore thread" msgstr "" -#: ../../object/Item.php:209 +#: ../../object/Item.php:210 msgid "unignore thread" msgstr "" -#: ../../object/Item.php:210 +#: ../../object/Item.php:211 msgid "toggle ignore status" msgstr "" -#: ../../object/Item.php:213 +#: ../../object/Item.php:214 msgid "ignored" msgstr "" -#: ../../object/Item.php:220 ../../mod/content.php:759 +#: ../../object/Item.php:221 ../../mod/content.php:759 msgid "add tag" msgstr "" -#: ../../object/Item.php:231 ../../mod/photos.php:1542 +#: ../../object/Item.php:232 ../../mod/photos.php:1542 #: ../../mod/content.php:684 msgid "I like this (toggle)" msgstr "" -#: ../../object/Item.php:231 ../../mod/content.php:684 +#: ../../object/Item.php:232 ../../mod/content.php:684 msgid "like" msgstr "" -#: ../../object/Item.php:232 ../../mod/photos.php:1543 +#: ../../object/Item.php:233 ../../mod/photos.php:1543 #: ../../mod/content.php:685 msgid "I don't like this (toggle)" msgstr "" -#: ../../object/Item.php:232 ../../mod/content.php:685 +#: ../../object/Item.php:233 ../../mod/content.php:685 msgid "dislike" msgstr "" -#: ../../object/Item.php:234 ../../mod/content.php:687 +#: ../../object/Item.php:235 ../../mod/content.php:687 msgid "Share this" msgstr "" -#: ../../object/Item.php:234 ../../mod/content.php:687 +#: ../../object/Item.php:235 ../../mod/content.php:687 msgid "share" msgstr "" -#: ../../object/Item.php:328 ../../mod/content.php:854 +#: ../../object/Item.php:331 ../../mod/content.php:854 msgid "to" msgstr "" -#: ../../object/Item.php:329 +#: ../../object/Item.php:332 msgid "via" msgstr "" -#: ../../object/Item.php:330 ../../mod/content.php:855 +#: ../../object/Item.php:333 ../../mod/content.php:855 msgid "Wall-to-Wall" msgstr "" -#: ../../object/Item.php:331 ../../mod/content.php:856 +#: ../../object/Item.php:334 ../../mod/content.php:856 msgid "via Wall-To-Wall:" msgstr "" -#: ../../object/Item.php:387 ../../mod/content.php:603 +#: ../../object/Item.php:390 ../../mod/content.php:603 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "" msgstr[1] "" -#: ../../object/Item.php:675 ../../mod/photos.php:1562 +#: ../../object/Item.php:678 ../../mod/photos.php:1562 #: ../../mod/photos.php:1606 ../../mod/photos.php:1694 #: ../../mod/content.php:707 msgid "This is you" msgstr "" -#: ../../object/Item.php:679 ../../mod/content.php:711 +#: ../../object/Item.php:682 ../../mod/content.php:711 msgid "Bold" msgstr "" -#: ../../object/Item.php:680 ../../mod/content.php:712 +#: ../../object/Item.php:683 ../../mod/content.php:712 msgid "Italic" msgstr "" -#: ../../object/Item.php:681 ../../mod/content.php:713 +#: ../../object/Item.php:684 ../../mod/content.php:713 msgid "Underline" msgstr "" -#: ../../object/Item.php:682 ../../mod/content.php:714 +#: ../../object/Item.php:685 ../../mod/content.php:714 msgid "Quote" msgstr "" -#: ../../object/Item.php:683 ../../mod/content.php:715 +#: ../../object/Item.php:686 ../../mod/content.php:715 msgid "Code" msgstr "" -#: ../../object/Item.php:684 ../../mod/content.php:716 +#: ../../object/Item.php:687 ../../mod/content.php:716 msgid "Image" msgstr "" -#: ../../object/Item.php:685 ../../mod/content.php:717 +#: ../../object/Item.php:688 ../../mod/content.php:717 msgid "Link" msgstr "" -#: ../../object/Item.php:686 ../../mod/content.php:718 +#: ../../object/Item.php:689 ../../mod/content.php:718 msgid "Video" msgstr "" @@ -3250,10 +3301,6 @@ msgstr "" msgid "Create a group of contacts/friends." msgstr "" -#: ../../mod/group.php:94 ../../mod/group.php:180 -msgid "Group Name: " -msgstr "" - #: ../../mod/group.php:113 msgid "Group removed." msgstr "" @@ -3270,11 +3317,11 @@ msgstr "" msgid "Members" msgstr "" -#: ../../mod/group.php:194 ../../mod/contacts.php:586 +#: ../../mod/group.php:194 ../../mod/contacts.php:656 msgid "All Contacts" msgstr "" -#: ../../mod/group.php:224 ../../mod/profperm.php:105 +#: ../../mod/group.php:224 ../../mod/profperm.php:106 msgid "Click on a contact to add or remove." msgstr "" @@ -3323,8 +3370,8 @@ msgid "Discard" msgstr "" #: ../../mod/notifications.php:51 ../../mod/notifications.php:164 -#: ../../mod/notifications.php:214 ../../mod/contacts.php:455 -#: ../../mod/contacts.php:519 ../../mod/contacts.php:731 +#: ../../mod/notifications.php:214 ../../mod/contacts.php:525 +#: ../../mod/contacts.php:589 ../../mod/contacts.php:801 msgid "Ignore" msgstr "" @@ -3358,7 +3405,7 @@ msgid "suggested by %s" msgstr "" #: ../../mod/notifications.php:157 ../../mod/notifications.php:208 -#: ../../mod/contacts.php:525 +#: ../../mod/contacts.php:595 msgid "Hide this contact from others" msgstr "" @@ -3371,7 +3418,7 @@ msgid "if applicable" msgstr "" #: ../../mod/notifications.php:161 ../../mod/notifications.php:212 -#: ../../mod/admin.php:1005 +#: ../../mod/admin.php:1008 msgid "Approve" msgstr "" @@ -3494,7 +3541,7 @@ msgstr "" msgid "everybody" msgstr "" -#: ../../mod/settings.php:41 ../../mod/admin.php:1016 +#: ../../mod/settings.php:41 ../../mod/admin.php:1019 msgid "Account" msgstr "" @@ -3506,12 +3553,12 @@ msgstr "" msgid "Display" msgstr "" -#: ../../mod/settings.php:57 ../../mod/settings.php:785 +#: ../../mod/settings.php:57 ../../mod/settings.php:805 msgid "Social Networks" msgstr "" -#: ../../mod/settings.php:62 ../../mod/admin.php:106 ../../mod/admin.php:1102 -#: ../../mod/admin.php:1155 +#: ../../mod/settings.php:62 ../../mod/admin.php:106 ../../mod/admin.php:1105 +#: ../../mod/admin.php:1158 msgid "Plugins" msgstr "" @@ -3531,619 +3578,649 @@ msgstr "" msgid "Missing some important data!" msgstr "" -#: ../../mod/settings.php:137 ../../mod/settings.php:645 -#: ../../mod/contacts.php:729 +#: ../../mod/settings.php:137 ../../mod/settings.php:647 +#: ../../mod/contacts.php:799 msgid "Update" msgstr "" -#: ../../mod/settings.php:243 +#: ../../mod/settings.php:245 msgid "Failed to connect with email account using the settings provided." msgstr "" -#: ../../mod/settings.php:248 +#: ../../mod/settings.php:250 msgid "Email settings updated." msgstr "" -#: ../../mod/settings.php:263 +#: ../../mod/settings.php:265 msgid "Features updated" msgstr "" -#: ../../mod/settings.php:326 +#: ../../mod/settings.php:328 msgid "Relocate message has been send to your contacts" msgstr "" -#: ../../mod/settings.php:340 +#: ../../mod/settings.php:342 msgid "Passwords do not match. Password unchanged." msgstr "" -#: ../../mod/settings.php:345 +#: ../../mod/settings.php:347 msgid "Empty passwords are not allowed. Password unchanged." msgstr "" -#: ../../mod/settings.php:353 +#: ../../mod/settings.php:355 msgid "Wrong password." msgstr "" -#: ../../mod/settings.php:364 +#: ../../mod/settings.php:366 msgid "Password changed." msgstr "" -#: ../../mod/settings.php:366 +#: ../../mod/settings.php:368 msgid "Password update failed. Please try again." msgstr "" -#: ../../mod/settings.php:433 +#: ../../mod/settings.php:435 msgid " Please use a shorter name." msgstr "" -#: ../../mod/settings.php:435 +#: ../../mod/settings.php:437 msgid " Name too short." msgstr "" -#: ../../mod/settings.php:444 +#: ../../mod/settings.php:446 msgid "Wrong Password" msgstr "" -#: ../../mod/settings.php:449 +#: ../../mod/settings.php:451 msgid " Not valid email." msgstr "" -#: ../../mod/settings.php:455 +#: ../../mod/settings.php:457 msgid " Cannot change to that email." msgstr "" -#: ../../mod/settings.php:511 +#: ../../mod/settings.php:513 msgid "Private forum has no privacy permissions. Using default privacy group." msgstr "" -#: ../../mod/settings.php:515 +#: ../../mod/settings.php:517 msgid "Private forum has no privacy permissions and no default privacy group." msgstr "" -#: ../../mod/settings.php:545 +#: ../../mod/settings.php:547 msgid "Settings updated." msgstr "" -#: ../../mod/settings.php:618 ../../mod/settings.php:644 -#: ../../mod/settings.php:680 +#: ../../mod/settings.php:620 ../../mod/settings.php:646 +#: ../../mod/settings.php:682 msgid "Add application" msgstr "" -#: ../../mod/settings.php:619 ../../mod/settings.php:729 -#: ../../mod/settings.php:803 ../../mod/settings.php:885 -#: ../../mod/settings.php:1118 ../../mod/admin.php:620 -#: ../../mod/admin.php:1156 ../../mod/admin.php:1358 ../../mod/admin.php:1445 +#: ../../mod/settings.php:621 ../../mod/settings.php:731 +#: ../../mod/settings.php:754 ../../mod/settings.php:823 +#: ../../mod/settings.php:905 ../../mod/settings.php:1138 +#: ../../mod/admin.php:622 ../../mod/admin.php:1159 ../../mod/admin.php:1361 +#: ../../mod/admin.php:1448 msgid "Save Settings" msgstr "" -#: ../../mod/settings.php:621 ../../mod/settings.php:647 -#: ../../mod/admin.php:1003 ../../mod/admin.php:1015 ../../mod/admin.php:1016 -#: ../../mod/admin.php:1029 ../../mod/crepair.php:165 +#: ../../mod/settings.php:623 ../../mod/settings.php:649 +#: ../../mod/admin.php:1006 ../../mod/admin.php:1018 ../../mod/admin.php:1019 +#: ../../mod/admin.php:1032 ../../mod/crepair.php:169 msgid "Name" msgstr "" -#: ../../mod/settings.php:622 ../../mod/settings.php:648 +#: ../../mod/settings.php:624 ../../mod/settings.php:650 msgid "Consumer Key" msgstr "" -#: ../../mod/settings.php:623 ../../mod/settings.php:649 +#: ../../mod/settings.php:625 ../../mod/settings.php:651 msgid "Consumer Secret" msgstr "" -#: ../../mod/settings.php:624 ../../mod/settings.php:650 +#: ../../mod/settings.php:626 ../../mod/settings.php:652 msgid "Redirect" msgstr "" -#: ../../mod/settings.php:625 ../../mod/settings.php:651 +#: ../../mod/settings.php:627 ../../mod/settings.php:653 msgid "Icon url" msgstr "" -#: ../../mod/settings.php:636 +#: ../../mod/settings.php:638 msgid "You can't edit this application." msgstr "" -#: ../../mod/settings.php:679 +#: ../../mod/settings.php:681 msgid "Connected Apps" msgstr "" -#: ../../mod/settings.php:683 +#: ../../mod/settings.php:685 msgid "Client key starts with" msgstr "" -#: ../../mod/settings.php:684 +#: ../../mod/settings.php:686 msgid "No name" msgstr "" -#: ../../mod/settings.php:685 +#: ../../mod/settings.php:687 msgid "Remove authorization" msgstr "" -#: ../../mod/settings.php:697 +#: ../../mod/settings.php:699 msgid "No Plugin settings configured" msgstr "" -#: ../../mod/settings.php:705 +#: ../../mod/settings.php:707 msgid "Plugin Settings" msgstr "" -#: ../../mod/settings.php:719 +#: ../../mod/settings.php:721 msgid "Off" msgstr "" -#: ../../mod/settings.php:719 +#: ../../mod/settings.php:721 msgid "On" msgstr "" -#: ../../mod/settings.php:727 +#: ../../mod/settings.php:729 msgid "Additional Features" msgstr "" -#: ../../mod/settings.php:741 ../../mod/settings.php:742 +#: ../../mod/settings.php:739 ../../mod/settings.php:743 +msgid "General Social Media Settings" +msgstr "" + +#: ../../mod/settings.php:749 +msgid "Disable intelligent shortening" +msgstr "" + +#: ../../mod/settings.php:751 +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:761 ../../mod/settings.php:762 #, php-format msgid "Built-in support for %s connectivity is %s" msgstr "" -#: ../../mod/settings.php:741 ../../mod/settings.php:742 +#: ../../mod/settings.php:761 ../../mod/settings.php:762 msgid "enabled" msgstr "" -#: ../../mod/settings.php:741 ../../mod/settings.php:742 +#: ../../mod/settings.php:761 ../../mod/settings.php:762 msgid "disabled" msgstr "" -#: ../../mod/settings.php:742 +#: ../../mod/settings.php:762 msgid "StatusNet" msgstr "" -#: ../../mod/settings.php:778 +#: ../../mod/settings.php:798 msgid "Email access is disabled on this site." msgstr "" -#: ../../mod/settings.php:790 +#: ../../mod/settings.php:810 msgid "Email/Mailbox Setup" msgstr "" -#: ../../mod/settings.php:791 +#: ../../mod/settings.php:811 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:792 +#: ../../mod/settings.php:812 msgid "Last successful email check:" msgstr "" -#: ../../mod/settings.php:794 +#: ../../mod/settings.php:814 msgid "IMAP server name:" msgstr "" -#: ../../mod/settings.php:795 +#: ../../mod/settings.php:815 msgid "IMAP port:" msgstr "" -#: ../../mod/settings.php:796 +#: ../../mod/settings.php:816 msgid "Security:" msgstr "" -#: ../../mod/settings.php:796 ../../mod/settings.php:801 +#: ../../mod/settings.php:816 ../../mod/settings.php:821 msgid "None" msgstr "" -#: ../../mod/settings.php:797 +#: ../../mod/settings.php:817 msgid "Email login name:" msgstr "" -#: ../../mod/settings.php:798 +#: ../../mod/settings.php:818 msgid "Email password:" msgstr "" -#: ../../mod/settings.php:799 +#: ../../mod/settings.php:819 msgid "Reply-to address:" msgstr "" -#: ../../mod/settings.php:800 +#: ../../mod/settings.php:820 msgid "Send public posts to all email contacts:" msgstr "" -#: ../../mod/settings.php:801 +#: ../../mod/settings.php:821 msgid "Action after import:" msgstr "" -#: ../../mod/settings.php:801 +#: ../../mod/settings.php:821 msgid "Mark as seen" msgstr "" -#: ../../mod/settings.php:801 +#: ../../mod/settings.php:821 msgid "Move to folder" msgstr "" -#: ../../mod/settings.php:802 +#: ../../mod/settings.php:822 msgid "Move to folder:" msgstr "" -#: ../../mod/settings.php:833 ../../mod/admin.php:545 +#: ../../mod/settings.php:853 ../../mod/admin.php:547 msgid "No special theme for mobile devices" msgstr "" -#: ../../mod/settings.php:883 +#: ../../mod/settings.php:903 msgid "Display Settings" msgstr "" -#: ../../mod/settings.php:889 ../../mod/settings.php:904 +#: ../../mod/settings.php:909 ../../mod/settings.php:924 msgid "Display Theme:" msgstr "" -#: ../../mod/settings.php:890 +#: ../../mod/settings.php:910 msgid "Mobile Theme:" msgstr "" -#: ../../mod/settings.php:891 +#: ../../mod/settings.php:911 msgid "Update browser every xx seconds" msgstr "" -#: ../../mod/settings.php:891 +#: ../../mod/settings.php:911 msgid "Minimum of 10 seconds, no maximum" msgstr "" -#: ../../mod/settings.php:892 +#: ../../mod/settings.php:912 msgid "Number of items to display per page:" msgstr "" -#: ../../mod/settings.php:892 ../../mod/settings.php:893 +#: ../../mod/settings.php:912 ../../mod/settings.php:913 msgid "Maximum of 100 items" msgstr "" -#: ../../mod/settings.php:893 +#: ../../mod/settings.php:913 msgid "Number of items to display per page when viewed from mobile device:" msgstr "" -#: ../../mod/settings.php:894 +#: ../../mod/settings.php:914 msgid "Don't show emoticons" msgstr "" -#: ../../mod/settings.php:895 +#: ../../mod/settings.php:915 msgid "Don't show notices" msgstr "" -#: ../../mod/settings.php:896 +#: ../../mod/settings.php:916 msgid "Infinite scroll" msgstr "" -#: ../../mod/settings.php:897 +#: ../../mod/settings.php:917 msgid "Automatic updates only at the top of the network page" msgstr "" -#: ../../mod/settings.php:974 +#: ../../mod/settings.php:994 msgid "User Types" msgstr "" -#: ../../mod/settings.php:975 +#: ../../mod/settings.php:995 msgid "Community Types" msgstr "" -#: ../../mod/settings.php:976 +#: ../../mod/settings.php:996 msgid "Normal Account Page" msgstr "" -#: ../../mod/settings.php:977 +#: ../../mod/settings.php:997 msgid "This account is a normal personal profile" msgstr "" -#: ../../mod/settings.php:980 +#: ../../mod/settings.php:1000 msgid "Soapbox Page" msgstr "" -#: ../../mod/settings.php:981 +#: ../../mod/settings.php:1001 msgid "Automatically approve all connection/friend requests as read-only fans" msgstr "" -#: ../../mod/settings.php:984 +#: ../../mod/settings.php:1004 msgid "Community Forum/Celebrity Account" msgstr "" -#: ../../mod/settings.php:985 +#: ../../mod/settings.php:1005 msgid "Automatically approve all connection/friend requests as read-write fans" msgstr "" -#: ../../mod/settings.php:988 +#: ../../mod/settings.php:1008 msgid "Automatic Friend Page" msgstr "" -#: ../../mod/settings.php:989 +#: ../../mod/settings.php:1009 msgid "Automatically approve all connection/friend requests as friends" msgstr "" -#: ../../mod/settings.php:992 +#: ../../mod/settings.php:1012 msgid "Private Forum [Experimental]" msgstr "" -#: ../../mod/settings.php:993 +#: ../../mod/settings.php:1013 msgid "Private forum - approved members only" msgstr "" -#: ../../mod/settings.php:1005 +#: ../../mod/settings.php:1025 msgid "OpenID:" msgstr "" -#: ../../mod/settings.php:1005 +#: ../../mod/settings.php:1025 msgid "(Optional) Allow this OpenID to login to this account." msgstr "" -#: ../../mod/settings.php:1015 +#: ../../mod/settings.php:1035 msgid "Publish your default profile in your local site directory?" msgstr "" -#: ../../mod/settings.php:1015 ../../mod/settings.php:1021 -#: ../../mod/settings.php:1029 ../../mod/settings.php:1033 -#: ../../mod/settings.php:1038 ../../mod/settings.php:1044 -#: ../../mod/settings.php:1050 ../../mod/settings.php:1056 -#: ../../mod/settings.php:1086 ../../mod/settings.php:1087 -#: ../../mod/settings.php:1088 ../../mod/settings.php:1089 -#: ../../mod/settings.php:1090 ../../mod/register.php:234 -#: ../../mod/dfrn_request.php:830 ../../mod/api.php:106 -#: ../../mod/profiles.php:661 ../../mod/profiles.php:665 +#: ../../mod/settings.php:1035 ../../mod/settings.php:1041 +#: ../../mod/settings.php:1049 ../../mod/settings.php:1053 +#: ../../mod/settings.php:1058 ../../mod/settings.php:1064 +#: ../../mod/settings.php:1070 ../../mod/settings.php:1076 +#: ../../mod/settings.php:1106 ../../mod/settings.php:1107 +#: ../../mod/settings.php:1108 ../../mod/settings.php:1109 +#: ../../mod/settings.php:1110 ../../mod/register.php:234 +#: ../../mod/dfrn_request.php:845 ../../mod/api.php:106 +#: ../../mod/follow.php:54 ../../mod/profiles.php:661 +#: ../../mod/profiles.php:665 msgid "No" msgstr "" -#: ../../mod/settings.php:1021 +#: ../../mod/settings.php:1041 msgid "Publish your default profile in the global social directory?" msgstr "" -#: ../../mod/settings.php:1029 +#: ../../mod/settings.php:1049 msgid "Hide your contact/friend list from viewers of your default profile?" msgstr "" -#: ../../mod/settings.php:1033 +#: ../../mod/settings.php:1053 msgid "" "If enabled, posting public messages to Diaspora and other networks isn't " "possible." msgstr "" -#: ../../mod/settings.php:1038 +#: ../../mod/settings.php:1058 msgid "Allow friends to post to your profile page?" msgstr "" -#: ../../mod/settings.php:1044 +#: ../../mod/settings.php:1064 msgid "Allow friends to tag your posts?" msgstr "" -#: ../../mod/settings.php:1050 +#: ../../mod/settings.php:1070 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "" -#: ../../mod/settings.php:1056 +#: ../../mod/settings.php:1076 msgid "Permit unknown people to send you private mail?" msgstr "" -#: ../../mod/settings.php:1064 +#: ../../mod/settings.php:1084 msgid "Profile is not published." msgstr "" -#: ../../mod/settings.php:1067 ../../mod/profile_photo.php:248 +#: ../../mod/settings.php:1087 ../../mod/profile_photo.php:248 msgid "or" msgstr "" -#: ../../mod/settings.php:1072 +#: ../../mod/settings.php:1092 msgid "Your Identity Address is" msgstr "" -#: ../../mod/settings.php:1083 +#: ../../mod/settings.php:1103 msgid "Automatically expire posts after this many days:" msgstr "" -#: ../../mod/settings.php:1083 +#: ../../mod/settings.php:1103 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "" -#: ../../mod/settings.php:1084 +#: ../../mod/settings.php:1104 msgid "Advanced expiration settings" msgstr "" -#: ../../mod/settings.php:1085 +#: ../../mod/settings.php:1105 msgid "Advanced Expiration" msgstr "" -#: ../../mod/settings.php:1086 +#: ../../mod/settings.php:1106 msgid "Expire posts:" msgstr "" -#: ../../mod/settings.php:1087 +#: ../../mod/settings.php:1107 msgid "Expire personal notes:" msgstr "" -#: ../../mod/settings.php:1088 +#: ../../mod/settings.php:1108 msgid "Expire starred posts:" msgstr "" -#: ../../mod/settings.php:1089 +#: ../../mod/settings.php:1109 msgid "Expire photos:" msgstr "" -#: ../../mod/settings.php:1090 +#: ../../mod/settings.php:1110 msgid "Only expire posts by others:" msgstr "" -#: ../../mod/settings.php:1116 +#: ../../mod/settings.php:1136 msgid "Account Settings" msgstr "" -#: ../../mod/settings.php:1124 +#: ../../mod/settings.php:1144 msgid "Password Settings" msgstr "" -#: ../../mod/settings.php:1125 +#: ../../mod/settings.php:1145 msgid "New Password:" msgstr "" -#: ../../mod/settings.php:1126 +#: ../../mod/settings.php:1146 msgid "Confirm:" msgstr "" -#: ../../mod/settings.php:1126 +#: ../../mod/settings.php:1146 msgid "Leave password fields blank unless changing" msgstr "" -#: ../../mod/settings.php:1127 +#: ../../mod/settings.php:1147 msgid "Current Password:" msgstr "" -#: ../../mod/settings.php:1127 ../../mod/settings.php:1128 +#: ../../mod/settings.php:1147 ../../mod/settings.php:1148 msgid "Your current password to confirm the changes" msgstr "" -#: ../../mod/settings.php:1128 +#: ../../mod/settings.php:1148 msgid "Password:" msgstr "" -#: ../../mod/settings.php:1132 +#: ../../mod/settings.php:1152 msgid "Basic Settings" msgstr "" -#: ../../mod/settings.php:1134 +#: ../../mod/settings.php:1154 msgid "Email Address:" msgstr "" -#: ../../mod/settings.php:1135 +#: ../../mod/settings.php:1155 msgid "Your Timezone:" msgstr "" -#: ../../mod/settings.php:1136 +#: ../../mod/settings.php:1156 msgid "Default Post Location:" msgstr "" -#: ../../mod/settings.php:1137 +#: ../../mod/settings.php:1157 msgid "Use Browser Location:" msgstr "" -#: ../../mod/settings.php:1140 +#: ../../mod/settings.php:1160 msgid "Security and Privacy Settings" msgstr "" -#: ../../mod/settings.php:1142 +#: ../../mod/settings.php:1162 msgid "Maximum Friend Requests/Day:" msgstr "" -#: ../../mod/settings.php:1142 ../../mod/settings.php:1172 +#: ../../mod/settings.php:1162 ../../mod/settings.php:1192 msgid "(to prevent spam abuse)" msgstr "" -#: ../../mod/settings.php:1143 +#: ../../mod/settings.php:1163 msgid "Default Post Permissions" msgstr "" -#: ../../mod/settings.php:1144 +#: ../../mod/settings.php:1164 msgid "(click to open/close)" msgstr "" -#: ../../mod/settings.php:1153 ../../mod/photos.php:1146 +#: ../../mod/settings.php:1173 ../../mod/photos.php:1146 #: ../../mod/photos.php:1519 msgid "Show to Groups" msgstr "" -#: ../../mod/settings.php:1154 ../../mod/photos.php:1147 +#: ../../mod/settings.php:1174 ../../mod/photos.php:1147 #: ../../mod/photos.php:1520 msgid "Show to Contacts" msgstr "" -#: ../../mod/settings.php:1155 +#: ../../mod/settings.php:1175 msgid "Default Private Post" msgstr "" -#: ../../mod/settings.php:1156 +#: ../../mod/settings.php:1176 msgid "Default Public Post" msgstr "" -#: ../../mod/settings.php:1160 +#: ../../mod/settings.php:1180 msgid "Default Permissions for New Posts" msgstr "" -#: ../../mod/settings.php:1172 +#: ../../mod/settings.php:1192 msgid "Maximum private messages per day from unknown people:" msgstr "" -#: ../../mod/settings.php:1175 +#: ../../mod/settings.php:1195 msgid "Notification Settings" msgstr "" -#: ../../mod/settings.php:1176 +#: ../../mod/settings.php:1196 msgid "By default post a status message when:" msgstr "" -#: ../../mod/settings.php:1177 +#: ../../mod/settings.php:1197 msgid "accepting a friend request" msgstr "" -#: ../../mod/settings.php:1178 +#: ../../mod/settings.php:1198 msgid "joining a forum/community" msgstr "" -#: ../../mod/settings.php:1179 +#: ../../mod/settings.php:1199 msgid "making an interesting profile change" msgstr "" -#: ../../mod/settings.php:1180 +#: ../../mod/settings.php:1200 msgid "Send a notification email when:" msgstr "" -#: ../../mod/settings.php:1181 +#: ../../mod/settings.php:1201 msgid "You receive an introduction" msgstr "" -#: ../../mod/settings.php:1182 +#: ../../mod/settings.php:1202 msgid "Your introductions are confirmed" msgstr "" -#: ../../mod/settings.php:1183 +#: ../../mod/settings.php:1203 msgid "Someone writes on your profile wall" msgstr "" -#: ../../mod/settings.php:1184 +#: ../../mod/settings.php:1204 msgid "Someone writes a followup comment" msgstr "" -#: ../../mod/settings.php:1185 +#: ../../mod/settings.php:1205 msgid "You receive a private message" msgstr "" -#: ../../mod/settings.php:1186 +#: ../../mod/settings.php:1206 msgid "You receive a friend suggestion" msgstr "" -#: ../../mod/settings.php:1187 +#: ../../mod/settings.php:1207 msgid "You are tagged in a post" msgstr "" -#: ../../mod/settings.php:1188 +#: ../../mod/settings.php:1208 msgid "You are poked/prodded/etc. in a post" msgstr "" -#: ../../mod/settings.php:1190 +#: ../../mod/settings.php:1210 +msgid "Activate desktop notifications" +msgstr "" + +#: ../../mod/settings.php:1211 +msgid "" +"Note: This is an experimental feature, as being not supported by each browser" +msgstr "" + +#: ../../mod/settings.php:1212 +msgid "You will now receive desktop notifications!" +msgstr "" + +#: ../../mod/settings.php:1214 msgid "Text-only notification emails" msgstr "" -#: ../../mod/settings.php:1192 +#: ../../mod/settings.php:1216 msgid "Send text only notification emails, without the html part" msgstr "" -#: ../../mod/settings.php:1194 +#: ../../mod/settings.php:1218 msgid "Advanced Account/Page Type Settings" msgstr "" -#: ../../mod/settings.php:1195 +#: ../../mod/settings.php:1219 msgid "Change the behaviour of this account for special situations" msgstr "" -#: ../../mod/settings.php:1198 +#: ../../mod/settings.php:1222 msgid "Relocate" msgstr "" -#: ../../mod/settings.php:1199 +#: ../../mod/settings.php:1223 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:1200 +#: ../../mod/settings.php:1224 msgid "Resend relocate message to contacts" msgstr "" @@ -4163,337 +4240,337 @@ msgstr "" msgid "Visible to:" msgstr "" -#: ../../mod/contacts.php:112 +#: ../../mod/contacts.php:114 #, php-format msgid "%d contact edited." msgid_plural "%d contacts edited" msgstr[0] "" msgstr[1] "" -#: ../../mod/contacts.php:143 ../../mod/contacts.php:276 +#: ../../mod/contacts.php:145 ../../mod/contacts.php:340 msgid "Could not access contact record." msgstr "" -#: ../../mod/contacts.php:157 +#: ../../mod/contacts.php:159 msgid "Could not locate selected profile." msgstr "" -#: ../../mod/contacts.php:190 +#: ../../mod/contacts.php:192 msgid "Contact updated." msgstr "" -#: ../../mod/contacts.php:192 ../../mod/dfrn_request.php:576 +#: ../../mod/contacts.php:194 ../../mod/dfrn_request.php:576 msgid "Failed to update contact record." msgstr "" -#: ../../mod/contacts.php:291 +#: ../../mod/contacts.php:361 msgid "Contact has been blocked" msgstr "" -#: ../../mod/contacts.php:291 +#: ../../mod/contacts.php:361 msgid "Contact has been unblocked" msgstr "" -#: ../../mod/contacts.php:302 +#: ../../mod/contacts.php:372 msgid "Contact has been ignored" msgstr "" -#: ../../mod/contacts.php:302 +#: ../../mod/contacts.php:372 msgid "Contact has been unignored" msgstr "" -#: ../../mod/contacts.php:314 +#: ../../mod/contacts.php:384 msgid "Contact has been archived" msgstr "" -#: ../../mod/contacts.php:314 +#: ../../mod/contacts.php:384 msgid "Contact has been unarchived" msgstr "" -#: ../../mod/contacts.php:339 ../../mod/contacts.php:727 +#: ../../mod/contacts.php:409 ../../mod/contacts.php:797 msgid "Do you really want to delete this contact?" msgstr "" -#: ../../mod/contacts.php:356 +#: ../../mod/contacts.php:426 msgid "Contact has been removed." msgstr "" -#: ../../mod/contacts.php:394 +#: ../../mod/contacts.php:464 #, php-format msgid "You are mutual friends with %s" msgstr "" -#: ../../mod/contacts.php:398 +#: ../../mod/contacts.php:468 #, php-format msgid "You are sharing with %s" msgstr "" -#: ../../mod/contacts.php:403 +#: ../../mod/contacts.php:473 #, php-format msgid "%s is sharing with you" msgstr "" -#: ../../mod/contacts.php:423 +#: ../../mod/contacts.php:493 msgid "Private communications are not available for this contact." msgstr "" -#: ../../mod/contacts.php:426 ../../mod/admin.php:569 +#: ../../mod/contacts.php:496 ../../mod/admin.php:571 msgid "Never" msgstr "" -#: ../../mod/contacts.php:430 +#: ../../mod/contacts.php:500 msgid "(Update was successful)" msgstr "" -#: ../../mod/contacts.php:430 +#: ../../mod/contacts.php:500 msgid "(Update was not successful)" msgstr "" -#: ../../mod/contacts.php:432 +#: ../../mod/contacts.php:502 msgid "Suggest friends" msgstr "" -#: ../../mod/contacts.php:436 +#: ../../mod/contacts.php:506 #, php-format msgid "Network type: %s" msgstr "" -#: ../../mod/contacts.php:444 +#: ../../mod/contacts.php:514 msgid "View all contacts" msgstr "" -#: ../../mod/contacts.php:449 ../../mod/contacts.php:518 -#: ../../mod/contacts.php:730 ../../mod/admin.php:1009 +#: ../../mod/contacts.php:519 ../../mod/contacts.php:588 +#: ../../mod/contacts.php:800 ../../mod/admin.php:1012 msgid "Unblock" msgstr "" -#: ../../mod/contacts.php:449 ../../mod/contacts.php:518 -#: ../../mod/contacts.php:730 ../../mod/admin.php:1008 +#: ../../mod/contacts.php:519 ../../mod/contacts.php:588 +#: ../../mod/contacts.php:800 ../../mod/admin.php:1011 msgid "Block" msgstr "" -#: ../../mod/contacts.php:452 +#: ../../mod/contacts.php:522 msgid "Toggle Blocked status" msgstr "" -#: ../../mod/contacts.php:455 ../../mod/contacts.php:519 -#: ../../mod/contacts.php:731 +#: ../../mod/contacts.php:525 ../../mod/contacts.php:589 +#: ../../mod/contacts.php:801 msgid "Unignore" msgstr "" -#: ../../mod/contacts.php:458 +#: ../../mod/contacts.php:528 msgid "Toggle Ignored status" msgstr "" -#: ../../mod/contacts.php:462 ../../mod/contacts.php:732 +#: ../../mod/contacts.php:532 ../../mod/contacts.php:802 msgid "Unarchive" msgstr "" -#: ../../mod/contacts.php:462 ../../mod/contacts.php:732 +#: ../../mod/contacts.php:532 ../../mod/contacts.php:802 msgid "Archive" msgstr "" -#: ../../mod/contacts.php:465 +#: ../../mod/contacts.php:535 msgid "Toggle Archive status" msgstr "" -#: ../../mod/contacts.php:468 +#: ../../mod/contacts.php:538 msgid "Repair" msgstr "" -#: ../../mod/contacts.php:471 +#: ../../mod/contacts.php:541 msgid "Advanced Contact Settings" msgstr "" -#: ../../mod/contacts.php:477 +#: ../../mod/contacts.php:547 msgid "Communications lost with this contact!" msgstr "" -#: ../../mod/contacts.php:480 +#: ../../mod/contacts.php:550 msgid "Fetch further information for feeds" msgstr "" -#: ../../mod/contacts.php:481 +#: ../../mod/contacts.php:551 msgid "Disabled" msgstr "" -#: ../../mod/contacts.php:481 +#: ../../mod/contacts.php:551 msgid "Fetch information" msgstr "" -#: ../../mod/contacts.php:481 +#: ../../mod/contacts.php:551 msgid "Fetch information and keywords" msgstr "" -#: ../../mod/contacts.php:490 +#: ../../mod/contacts.php:560 msgid "Contact Editor" msgstr "" -#: ../../mod/contacts.php:493 +#: ../../mod/contacts.php:563 msgid "Profile Visibility" msgstr "" -#: ../../mod/contacts.php:494 +#: ../../mod/contacts.php:564 #, php-format msgid "" "Please choose the profile you would like to display to %s when viewing your " "profile securely." msgstr "" -#: ../../mod/contacts.php:495 +#: ../../mod/contacts.php:565 msgid "Contact Information / Notes" msgstr "" -#: ../../mod/contacts.php:496 +#: ../../mod/contacts.php:566 msgid "Edit contact notes" msgstr "" -#: ../../mod/contacts.php:501 ../../mod/contacts.php:695 +#: ../../mod/contacts.php:571 ../../mod/contacts.php:765 #: ../../mod/nogroup.php:40 ../../mod/viewcontacts.php:64 #, php-format msgid "Visit %s's profile [%s]" msgstr "" -#: ../../mod/contacts.php:502 +#: ../../mod/contacts.php:572 msgid "Block/Unblock contact" msgstr "" -#: ../../mod/contacts.php:503 +#: ../../mod/contacts.php:573 msgid "Ignore contact" msgstr "" -#: ../../mod/contacts.php:504 +#: ../../mod/contacts.php:574 msgid "Repair URL settings" msgstr "" -#: ../../mod/contacts.php:505 +#: ../../mod/contacts.php:575 msgid "View conversations" msgstr "" -#: ../../mod/contacts.php:507 +#: ../../mod/contacts.php:577 msgid "Delete contact" msgstr "" -#: ../../mod/contacts.php:511 +#: ../../mod/contacts.php:581 msgid "Last update:" msgstr "" -#: ../../mod/contacts.php:513 +#: ../../mod/contacts.php:583 msgid "Update public posts" msgstr "" -#: ../../mod/contacts.php:515 ../../mod/admin.php:1503 +#: ../../mod/contacts.php:585 ../../mod/admin.php:1506 msgid "Update now" msgstr "" -#: ../../mod/contacts.php:522 +#: ../../mod/contacts.php:592 msgid "Currently blocked" msgstr "" -#: ../../mod/contacts.php:523 +#: ../../mod/contacts.php:593 msgid "Currently ignored" msgstr "" -#: ../../mod/contacts.php:524 +#: ../../mod/contacts.php:594 msgid "Currently archived" msgstr "" -#: ../../mod/contacts.php:525 +#: ../../mod/contacts.php:595 msgid "" "Replies/likes to your public posts may still be visible" msgstr "" -#: ../../mod/contacts.php:526 +#: ../../mod/contacts.php:596 msgid "Notification for new posts" msgstr "" -#: ../../mod/contacts.php:526 +#: ../../mod/contacts.php:596 msgid "Send a notification of every new post of this contact" msgstr "" -#: ../../mod/contacts.php:529 +#: ../../mod/contacts.php:599 msgid "Blacklisted keywords" msgstr "" -#: ../../mod/contacts.php:529 +#: ../../mod/contacts.php:599 msgid "" "Comma separated list of keywords that should not be converted to hashtags, " "when \"Fetch information and keywords\" is selected" msgstr "" -#: ../../mod/contacts.php:580 +#: ../../mod/contacts.php:650 msgid "Suggestions" msgstr "" -#: ../../mod/contacts.php:583 +#: ../../mod/contacts.php:653 msgid "Suggest potential friends" msgstr "" -#: ../../mod/contacts.php:589 +#: ../../mod/contacts.php:659 msgid "Show all contacts" msgstr "" -#: ../../mod/contacts.php:592 +#: ../../mod/contacts.php:662 msgid "Unblocked" msgstr "" -#: ../../mod/contacts.php:595 +#: ../../mod/contacts.php:665 msgid "Only show unblocked contacts" msgstr "" -#: ../../mod/contacts.php:599 +#: ../../mod/contacts.php:669 msgid "Blocked" msgstr "" -#: ../../mod/contacts.php:602 +#: ../../mod/contacts.php:672 msgid "Only show blocked contacts" msgstr "" -#: ../../mod/contacts.php:606 +#: ../../mod/contacts.php:676 msgid "Ignored" msgstr "" -#: ../../mod/contacts.php:609 +#: ../../mod/contacts.php:679 msgid "Only show ignored contacts" msgstr "" -#: ../../mod/contacts.php:613 +#: ../../mod/contacts.php:683 msgid "Archived" msgstr "" -#: ../../mod/contacts.php:616 +#: ../../mod/contacts.php:686 msgid "Only show archived contacts" msgstr "" -#: ../../mod/contacts.php:620 +#: ../../mod/contacts.php:690 msgid "Hidden" msgstr "" -#: ../../mod/contacts.php:623 +#: ../../mod/contacts.php:693 msgid "Only show hidden contacts" msgstr "" -#: ../../mod/contacts.php:671 +#: ../../mod/contacts.php:741 msgid "Mutual Friendship" msgstr "" -#: ../../mod/contacts.php:675 +#: ../../mod/contacts.php:745 msgid "is a fan of yours" msgstr "" -#: ../../mod/contacts.php:679 +#: ../../mod/contacts.php:749 msgid "you are a fan of" msgstr "" -#: ../../mod/contacts.php:696 ../../mod/nogroup.php:41 +#: ../../mod/contacts.php:766 ../../mod/nogroup.php:41 msgid "Edit contact" msgstr "" -#: ../../mod/contacts.php:722 +#: ../../mod/contacts.php:792 msgid "Search your contacts" msgstr "" -#: ../../mod/contacts.php:723 ../../mod/directory.php:61 +#: ../../mod/contacts.php:793 ../../mod/directory.php:61 msgid "Finding: " msgstr "" @@ -4595,7 +4672,7 @@ msgstr "" msgid "Your invitation ID: " msgstr "" -#: ../../mod/register.php:255 ../../mod/admin.php:621 +#: ../../mod/register.php:255 ../../mod/admin.php:623 msgid "Registration" msgstr "" @@ -4634,7 +4711,7 @@ msgstr "" msgid "System down for maintenance" msgstr "" -#: ../../mod/profile.php:155 ../../mod/display.php:332 +#: ../../mod/profile.php:155 ../../mod/display.php:334 msgid "Access to this profile has been restricted." msgstr "" @@ -4642,10 +4719,10 @@ msgstr "" msgid "Tips for New Members" msgstr "" -#: ../../mod/videos.php:115 ../../mod/dfrn_request.php:762 +#: ../../mod/videos.php:115 ../../mod/dfrn_request.php:777 #: ../../mod/viewcontacts.php:19 ../../mod/photos.php:920 #: ../../mod/search.php:89 ../../mod/community.php:18 -#: ../../mod/display.php:212 ../../mod/directory.php:33 +#: ../../mod/display.php:214 ../../mod/directory.php:33 msgid "Public access denied." msgstr "" @@ -4695,7 +4772,7 @@ msgstr "" msgid "People Search" msgstr "" -#: ../../mod/dirfind.php:60 ../../mod/match.php:65 +#: ../../mod/dirfind.php:60 ../../mod/match.php:71 msgid "No matches" msgstr "" @@ -4803,72 +4880,72 @@ msgid "" "strong> profile." msgstr "" -#: ../../mod/dfrn_request.php:671 +#: ../../mod/dfrn_request.php:686 msgid "Hide this contact" msgstr "" -#: ../../mod/dfrn_request.php:674 +#: ../../mod/dfrn_request.php:689 #, php-format msgid "Welcome home %s." msgstr "" -#: ../../mod/dfrn_request.php:675 +#: ../../mod/dfrn_request.php:690 #, php-format msgid "Please confirm your introduction/connection request to %s." msgstr "" -#: ../../mod/dfrn_request.php:804 +#: ../../mod/dfrn_request.php:819 msgid "" "Please enter your 'Identity Address' from one of the following supported " "communications networks:" msgstr "" -#: ../../mod/dfrn_request.php:824 +#: ../../mod/dfrn_request.php:839 msgid "" "If you are not yet a member of the free social web, follow this link to find a public Friendica site " "and join us today." msgstr "" -#: ../../mod/dfrn_request.php:827 +#: ../../mod/dfrn_request.php:842 msgid "Friend/Connection Request" msgstr "" -#: ../../mod/dfrn_request.php:828 +#: ../../mod/dfrn_request.php:843 msgid "" "Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " "testuser@identi.ca" msgstr "" -#: ../../mod/dfrn_request.php:829 +#: ../../mod/dfrn_request.php:844 ../../mod/follow.php:53 msgid "Please answer the following:" msgstr "" -#: ../../mod/dfrn_request.php:830 +#: ../../mod/dfrn_request.php:845 ../../mod/follow.php:54 #, php-format msgid "Does %s know you?" msgstr "" -#: ../../mod/dfrn_request.php:834 +#: ../../mod/dfrn_request.php:849 ../../mod/follow.php:55 msgid "Add a personal note:" msgstr "" -#: ../../mod/dfrn_request.php:837 +#: ../../mod/dfrn_request.php:852 msgid "StatusNet/Federated Social Web" msgstr "" -#: ../../mod/dfrn_request.php:839 +#: ../../mod/dfrn_request.php:854 #, php-format msgid "" " - please do not use this form. Instead, enter %s into your Diaspora search " "bar." msgstr "" -#: ../../mod/dfrn_request.php:840 +#: ../../mod/dfrn_request.php:855 ../../mod/follow.php:61 msgid "Your Identity Address:" msgstr "" -#: ../../mod/dfrn_request.php:843 +#: ../../mod/dfrn_request.php:858 ../../mod/follow.php:64 msgid "Submit Request" msgstr "" @@ -4930,7 +5007,7 @@ msgstr "" msgid "Suggest a friend for %s" msgstr "" -#: ../../mod/share.php:44 +#: ../../mod/share.php:38 msgid "link" msgstr "" @@ -4942,15 +5019,15 @@ msgstr "" msgid "Theme settings updated." msgstr "" -#: ../../mod/admin.php:104 ../../mod/admin.php:619 +#: ../../mod/admin.php:104 ../../mod/admin.php:621 msgid "Site" msgstr "" -#: ../../mod/admin.php:105 ../../mod/admin.php:998 ../../mod/admin.php:1013 +#: ../../mod/admin.php:105 ../../mod/admin.php:1001 ../../mod/admin.php:1016 msgid "Users" msgstr "" -#: ../../mod/admin.php:107 ../../mod/admin.php:1323 ../../mod/admin.php:1357 +#: ../../mod/admin.php:107 ../../mod/admin.php:1326 ../../mod/admin.php:1360 msgid "Themes" msgstr "" @@ -4958,7 +5035,7 @@ msgstr "" msgid "DB updates" msgstr "" -#: ../../mod/admin.php:123 ../../mod/admin.php:132 ../../mod/admin.php:1444 +#: ../../mod/admin.php:123 ../../mod/admin.php:132 ../../mod/admin.php:1447 msgid "Logs" msgstr "" @@ -4982,19 +5059,19 @@ msgstr "" msgid "User registrations waiting for confirmation" msgstr "" -#: ../../mod/admin.php:193 ../../mod/admin.php:952 +#: ../../mod/admin.php:193 ../../mod/admin.php:955 msgid "Normal Account" msgstr "" -#: ../../mod/admin.php:194 ../../mod/admin.php:953 +#: ../../mod/admin.php:194 ../../mod/admin.php:956 msgid "Soapbox Account" msgstr "" -#: ../../mod/admin.php:195 ../../mod/admin.php:954 +#: ../../mod/admin.php:195 ../../mod/admin.php:957 msgid "Community/Celebrity Account" msgstr "" -#: ../../mod/admin.php:196 ../../mod/admin.php:955 +#: ../../mod/admin.php:196 ../../mod/admin.php:958 msgid "Automatic Friend Account" msgstr "" @@ -5010,9 +5087,9 @@ msgstr "" msgid "Message queues" msgstr "" -#: ../../mod/admin.php:222 ../../mod/admin.php:618 ../../mod/admin.php:997 -#: ../../mod/admin.php:1101 ../../mod/admin.php:1154 ../../mod/admin.php:1322 -#: ../../mod/admin.php:1356 ../../mod/admin.php:1443 +#: ../../mod/admin.php:222 ../../mod/admin.php:620 ../../mod/admin.php:1000 +#: ../../mod/admin.php:1104 ../../mod/admin.php:1157 ../../mod/admin.php:1325 +#: ../../mod/admin.php:1359 ../../mod/admin.php:1446 msgid "Administration" msgstr "" @@ -5040,649 +5117,657 @@ msgstr "" msgid "Can not parse base url. Must have at least ://" msgstr "" -#: ../../mod/admin.php:516 +#: ../../mod/admin.php:518 msgid "Site settings updated." msgstr "" -#: ../../mod/admin.php:562 +#: ../../mod/admin.php:564 msgid "No community page" msgstr "" -#: ../../mod/admin.php:563 +#: ../../mod/admin.php:565 msgid "Public postings from users of this site" msgstr "" -#: ../../mod/admin.php:564 +#: ../../mod/admin.php:566 msgid "Global community page" msgstr "" -#: ../../mod/admin.php:570 +#: ../../mod/admin.php:572 msgid "At post arrival" msgstr "" -#: ../../mod/admin.php:579 +#: ../../mod/admin.php:581 msgid "Multi user instance" msgstr "" -#: ../../mod/admin.php:602 +#: ../../mod/admin.php:604 msgid "Closed" msgstr "" -#: ../../mod/admin.php:603 +#: ../../mod/admin.php:605 msgid "Requires approval" msgstr "" -#: ../../mod/admin.php:604 +#: ../../mod/admin.php:606 msgid "Open" msgstr "" -#: ../../mod/admin.php:608 +#: ../../mod/admin.php:610 msgid "No SSL policy, links will track page SSL state" msgstr "" -#: ../../mod/admin.php:609 +#: ../../mod/admin.php:611 msgid "Force all links to use SSL" msgstr "" -#: ../../mod/admin.php:610 +#: ../../mod/admin.php:612 msgid "Self-signed certificate, use SSL for local links only (discouraged)" msgstr "" -#: ../../mod/admin.php:622 +#: ../../mod/admin.php:624 msgid "File upload" msgstr "" -#: ../../mod/admin.php:623 +#: ../../mod/admin.php:625 msgid "Policies" msgstr "" -#: ../../mod/admin.php:624 +#: ../../mod/admin.php:626 msgid "Advanced" msgstr "" -#: ../../mod/admin.php:625 +#: ../../mod/admin.php:627 msgid "Performance" msgstr "" -#: ../../mod/admin.php:626 +#: ../../mod/admin.php:628 msgid "" "Relocate - WARNING: advanced function. Could make this server unreachable." msgstr "" -#: ../../mod/admin.php:629 +#: ../../mod/admin.php:631 msgid "Site name" msgstr "" -#: ../../mod/admin.php:630 +#: ../../mod/admin.php:632 msgid "Host name" msgstr "" -#: ../../mod/admin.php:631 +#: ../../mod/admin.php:633 msgid "Sender Email" msgstr "" -#: ../../mod/admin.php:632 +#: ../../mod/admin.php:634 msgid "Banner/Logo" msgstr "" -#: ../../mod/admin.php:633 +#: ../../mod/admin.php:635 msgid "Shortcut icon" msgstr "" -#: ../../mod/admin.php:634 +#: ../../mod/admin.php:636 msgid "Touch icon" msgstr "" -#: ../../mod/admin.php:635 +#: ../../mod/admin.php:637 msgid "Additional Info" msgstr "" -#: ../../mod/admin.php:635 +#: ../../mod/admin.php:637 msgid "" "For public servers: you can add additional information here that will be " "listed at dir.friendica.com/siteinfo." msgstr "" -#: ../../mod/admin.php:636 +#: ../../mod/admin.php:638 msgid "System language" msgstr "" -#: ../../mod/admin.php:637 +#: ../../mod/admin.php:639 msgid "System theme" msgstr "" -#: ../../mod/admin.php:637 +#: ../../mod/admin.php:639 msgid "" "Default system theme - may be over-ridden by user profiles - change theme settings" msgstr "" -#: ../../mod/admin.php:638 +#: ../../mod/admin.php:640 msgid "Mobile system theme" msgstr "" -#: ../../mod/admin.php:638 +#: ../../mod/admin.php:640 msgid "Theme for mobile devices" msgstr "" -#: ../../mod/admin.php:639 +#: ../../mod/admin.php:641 msgid "SSL link policy" msgstr "" -#: ../../mod/admin.php:639 +#: ../../mod/admin.php:641 msgid "Determines whether generated links should be forced to use SSL" msgstr "" -#: ../../mod/admin.php:640 +#: ../../mod/admin.php:642 msgid "Force SSL" msgstr "" -#: ../../mod/admin.php:640 +#: ../../mod/admin.php:642 msgid "" "Force all Non-SSL requests to SSL - Attention: on some systems it could lead " "to endless loops." msgstr "" -#: ../../mod/admin.php:641 +#: ../../mod/admin.php:643 msgid "Old style 'Share'" msgstr "" -#: ../../mod/admin.php:641 +#: ../../mod/admin.php:643 msgid "Deactivates the bbcode element 'share' for repeating items." msgstr "" -#: ../../mod/admin.php:642 +#: ../../mod/admin.php:644 msgid "Hide help entry from navigation menu" msgstr "" -#: ../../mod/admin.php:642 +#: ../../mod/admin.php:644 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:643 +#: ../../mod/admin.php:645 msgid "Single user instance" msgstr "" -#: ../../mod/admin.php:643 +#: ../../mod/admin.php:645 msgid "Make this instance multi-user or single-user for the named user" msgstr "" -#: ../../mod/admin.php:644 +#: ../../mod/admin.php:646 msgid "Maximum image size" msgstr "" -#: ../../mod/admin.php:644 +#: ../../mod/admin.php:646 msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no " "limits." msgstr "" -#: ../../mod/admin.php:645 +#: ../../mod/admin.php:647 msgid "Maximum image length" msgstr "" -#: ../../mod/admin.php:645 +#: ../../mod/admin.php:647 msgid "" "Maximum length in pixels of the longest side of uploaded images. Default is " "-1, which means no limits." msgstr "" -#: ../../mod/admin.php:646 +#: ../../mod/admin.php:648 msgid "JPEG image quality" msgstr "" -#: ../../mod/admin.php:646 +#: ../../mod/admin.php:648 msgid "" "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " "100, which is full quality." msgstr "" -#: ../../mod/admin.php:648 +#: ../../mod/admin.php:650 msgid "Register policy" msgstr "" -#: ../../mod/admin.php:649 +#: ../../mod/admin.php:651 msgid "Maximum Daily Registrations" msgstr "" -#: ../../mod/admin.php:649 +#: ../../mod/admin.php:651 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:650 +#: ../../mod/admin.php:652 msgid "Register text" msgstr "" -#: ../../mod/admin.php:650 +#: ../../mod/admin.php:652 msgid "Will be displayed prominently on the registration page." msgstr "" -#: ../../mod/admin.php:651 +#: ../../mod/admin.php:653 msgid "Accounts abandoned after x days" msgstr "" -#: ../../mod/admin.php:651 +#: ../../mod/admin.php:653 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "" -#: ../../mod/admin.php:652 +#: ../../mod/admin.php:654 msgid "Allowed friend domains" msgstr "" -#: ../../mod/admin.php:652 +#: ../../mod/admin.php:654 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:653 +#: ../../mod/admin.php:655 msgid "Allowed email domains" msgstr "" -#: ../../mod/admin.php:653 +#: ../../mod/admin.php:655 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:654 +#: ../../mod/admin.php:656 msgid "Block public" msgstr "" -#: ../../mod/admin.php:654 +#: ../../mod/admin.php:656 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:655 +#: ../../mod/admin.php:657 msgid "Force publish" msgstr "" -#: ../../mod/admin.php:655 +#: ../../mod/admin.php:657 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "" -#: ../../mod/admin.php:656 +#: ../../mod/admin.php:658 msgid "Global directory update URL" msgstr "" -#: ../../mod/admin.php:656 +#: ../../mod/admin.php:658 msgid "" "URL to update the global directory. If this is not set, the global directory " "is completely unavailable to the application." msgstr "" -#: ../../mod/admin.php:657 +#: ../../mod/admin.php:659 msgid "Allow threaded items" msgstr "" -#: ../../mod/admin.php:657 +#: ../../mod/admin.php:659 msgid "Allow infinite level threading for items on this site." msgstr "" -#: ../../mod/admin.php:658 +#: ../../mod/admin.php:660 msgid "Private posts by default for new users" msgstr "" -#: ../../mod/admin.php:658 +#: ../../mod/admin.php:660 msgid "" "Set default post permissions for all new members to the default privacy " "group rather than public." msgstr "" -#: ../../mod/admin.php:659 +#: ../../mod/admin.php:661 msgid "Don't include post content in email notifications" msgstr "" -#: ../../mod/admin.php:659 +#: ../../mod/admin.php:661 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:660 +#: ../../mod/admin.php:662 msgid "Disallow public access to addons listed in the apps menu." msgstr "" -#: ../../mod/admin.php:660 +#: ../../mod/admin.php:662 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "" -#: ../../mod/admin.php:661 +#: ../../mod/admin.php:663 msgid "Don't embed private images in posts" msgstr "" -#: ../../mod/admin.php:661 +#: ../../mod/admin.php:663 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:662 +#: ../../mod/admin.php:664 msgid "Allow Users to set remote_self" msgstr "" -#: ../../mod/admin.php:662 +#: ../../mod/admin.php:664 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:663 +#: ../../mod/admin.php:665 msgid "Block multiple registrations" msgstr "" -#: ../../mod/admin.php:663 +#: ../../mod/admin.php:665 msgid "Disallow users to register additional accounts for use as pages." msgstr "" -#: ../../mod/admin.php:664 +#: ../../mod/admin.php:666 msgid "OpenID support" msgstr "" -#: ../../mod/admin.php:664 +#: ../../mod/admin.php:666 msgid "OpenID support for registration and logins." msgstr "" -#: ../../mod/admin.php:665 +#: ../../mod/admin.php:667 msgid "Fullname check" msgstr "" -#: ../../mod/admin.php:665 +#: ../../mod/admin.php:667 msgid "" "Force users to register with a space between firstname and lastname in Full " "name, as an antispam measure" msgstr "" -#: ../../mod/admin.php:666 +#: ../../mod/admin.php:668 msgid "UTF-8 Regular expressions" msgstr "" -#: ../../mod/admin.php:666 +#: ../../mod/admin.php:668 msgid "Use PHP UTF8 regular expressions" msgstr "" -#: ../../mod/admin.php:667 +#: ../../mod/admin.php:669 msgid "Community Page Style" msgstr "" -#: ../../mod/admin.php:667 +#: ../../mod/admin.php:669 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:668 +#: ../../mod/admin.php:670 msgid "Posts per user on community page" msgstr "" -#: ../../mod/admin.php:668 +#: ../../mod/admin.php:670 msgid "" "The maximum number of posts per user on the community page. (Not valid for " "'Global Community')" msgstr "" -#: ../../mod/admin.php:669 +#: ../../mod/admin.php:671 msgid "Enable OStatus support" msgstr "" -#: ../../mod/admin.php:669 +#: ../../mod/admin.php:671 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:670 +#: ../../mod/admin.php:672 msgid "OStatus conversation completion interval" msgstr "" -#: ../../mod/admin.php:670 +#: ../../mod/admin.php:672 msgid "" "How often shall the poller check for new entries in OStatus conversations? " "This can be a very ressource task." msgstr "" -#: ../../mod/admin.php:671 +#: ../../mod/admin.php:673 msgid "Enable Diaspora support" msgstr "" -#: ../../mod/admin.php:671 +#: ../../mod/admin.php:673 msgid "Provide built-in Diaspora network compatibility." msgstr "" -#: ../../mod/admin.php:672 +#: ../../mod/admin.php:674 msgid "Only allow Friendica contacts" msgstr "" -#: ../../mod/admin.php:672 +#: ../../mod/admin.php:674 msgid "" "All contacts must use Friendica protocols. All other built-in communication " "protocols disabled." msgstr "" -#: ../../mod/admin.php:673 +#: ../../mod/admin.php:675 msgid "Verify SSL" msgstr "" -#: ../../mod/admin.php:673 +#: ../../mod/admin.php:675 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:674 +#: ../../mod/admin.php:676 msgid "Proxy user" msgstr "" -#: ../../mod/admin.php:675 +#: ../../mod/admin.php:677 msgid "Proxy URL" msgstr "" -#: ../../mod/admin.php:676 +#: ../../mod/admin.php:678 msgid "Network timeout" msgstr "" -#: ../../mod/admin.php:676 +#: ../../mod/admin.php:678 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "" -#: ../../mod/admin.php:677 +#: ../../mod/admin.php:679 msgid "Delivery interval" msgstr "" -#: ../../mod/admin.php:677 +#: ../../mod/admin.php:679 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:678 +#: ../../mod/admin.php:680 msgid "Poll interval" msgstr "" -#: ../../mod/admin.php:678 +#: ../../mod/admin.php:680 msgid "" "Delay background polling processes by this many seconds to reduce system " "load. If 0, use delivery interval." msgstr "" -#: ../../mod/admin.php:679 +#: ../../mod/admin.php:681 msgid "Maximum Load Average" msgstr "" -#: ../../mod/admin.php:679 +#: ../../mod/admin.php:681 msgid "" "Maximum system load before delivery and poll processes are deferred - " "default 50." msgstr "" -#: ../../mod/admin.php:681 +#: ../../mod/admin.php:682 +msgid "Maximum Load Average (Frontend)" +msgstr "" + +#: ../../mod/admin.php:682 +msgid "Maximum system load before the frontend quits service - default 50." +msgstr "" + +#: ../../mod/admin.php:684 msgid "Use MySQL full text engine" msgstr "" -#: ../../mod/admin.php:681 +#: ../../mod/admin.php:684 msgid "" "Activates the full text engine. Speeds up search - but can only search for " "four and more characters." msgstr "" -#: ../../mod/admin.php:682 +#: ../../mod/admin.php:685 msgid "Suppress Language" msgstr "" -#: ../../mod/admin.php:682 +#: ../../mod/admin.php:685 msgid "Suppress language information in meta information about a posting." msgstr "" -#: ../../mod/admin.php:683 +#: ../../mod/admin.php:686 msgid "Suppress Tags" msgstr "" -#: ../../mod/admin.php:683 +#: ../../mod/admin.php:686 msgid "Suppress showing a list of hashtags at the end of the posting." msgstr "" -#: ../../mod/admin.php:684 +#: ../../mod/admin.php:687 msgid "Path to item cache" msgstr "" -#: ../../mod/admin.php:685 +#: ../../mod/admin.php:688 msgid "Cache duration in seconds" msgstr "" -#: ../../mod/admin.php:685 +#: ../../mod/admin.php:688 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:686 +#: ../../mod/admin.php:689 msgid "Maximum numbers of comments per post" msgstr "" -#: ../../mod/admin.php:686 +#: ../../mod/admin.php:689 msgid "How much comments should be shown for each post? Default value is 100." msgstr "" -#: ../../mod/admin.php:687 +#: ../../mod/admin.php:690 msgid "Path for lock file" msgstr "" -#: ../../mod/admin.php:688 +#: ../../mod/admin.php:691 msgid "Temp path" msgstr "" -#: ../../mod/admin.php:689 +#: ../../mod/admin.php:692 msgid "Base path to installation" msgstr "" -#: ../../mod/admin.php:690 +#: ../../mod/admin.php:693 msgid "Disable picture proxy" msgstr "" -#: ../../mod/admin.php:690 +#: ../../mod/admin.php:693 msgid "" "The picture proxy increases performance and privacy. It shouldn't be used on " "systems with very low bandwith." msgstr "" -#: ../../mod/admin.php:691 +#: ../../mod/admin.php:694 msgid "Enable old style pager" msgstr "" -#: ../../mod/admin.php:691 +#: ../../mod/admin.php:694 msgid "" "The old style pager has page numbers but slows down massively the page speed." msgstr "" -#: ../../mod/admin.php:692 +#: ../../mod/admin.php:695 msgid "Only search in tags" msgstr "" -#: ../../mod/admin.php:692 +#: ../../mod/admin.php:695 msgid "On large systems the text search can slow down the system extremely." msgstr "" -#: ../../mod/admin.php:694 +#: ../../mod/admin.php:697 msgid "New base url" msgstr "" -#: ../../mod/admin.php:711 +#: ../../mod/admin.php:714 msgid "Update has been marked successful" msgstr "" -#: ../../mod/admin.php:719 -#, php-format -msgid "Database structure update %s was successfully applied." -msgstr "" - #: ../../mod/admin.php:722 #, php-format -msgid "Executing of database structure update %s failed with error: %s" +msgid "Database structure update %s was successfully applied." msgstr "" -#: ../../mod/admin.php:734 +#: ../../mod/admin.php:725 #, php-format -msgid "Executing %s failed with error: %s" +msgid "Executing of database structure update %s failed with error: %s" msgstr "" #: ../../mod/admin.php:737 #, php-format +msgid "Executing %s failed with error: %s" +msgstr "" + +#: ../../mod/admin.php:740 +#, php-format msgid "Update %s was successfully applied." msgstr "" -#: ../../mod/admin.php:741 +#: ../../mod/admin.php:744 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "" -#: ../../mod/admin.php:743 +#: ../../mod/admin.php:746 #, php-format msgid "There was no additional update function %s that needed to be called." msgstr "" -#: ../../mod/admin.php:762 +#: ../../mod/admin.php:765 msgid "No failed updates." msgstr "" -#: ../../mod/admin.php:763 +#: ../../mod/admin.php:766 msgid "Check database structure" msgstr "" -#: ../../mod/admin.php:768 +#: ../../mod/admin.php:771 msgid "Failed Updates" msgstr "" -#: ../../mod/admin.php:769 +#: ../../mod/admin.php:772 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "" -#: ../../mod/admin.php:770 +#: ../../mod/admin.php:773 msgid "Mark success (if update was manually applied)" msgstr "" -#: ../../mod/admin.php:771 +#: ../../mod/admin.php:774 msgid "Attempt to execute this update step automatically" msgstr "" -#: ../../mod/admin.php:803 +#: ../../mod/admin.php:806 #, php-format msgid "" "\n" @@ -5690,7 +5775,7 @@ msgid "" "\t\t\t\tthe administrator of %2$s has set up an account for you." msgstr "" -#: ../../mod/admin.php:806 +#: ../../mod/admin.php:809 #, php-format msgid "" "\n" @@ -5726,208 +5811,208 @@ msgid "" "\t\t\tThank you and welcome to %4$s." msgstr "" -#: ../../mod/admin.php:850 +#: ../../mod/admin.php:853 #, php-format msgid "%s user blocked/unblocked" msgid_plural "%s users blocked/unblocked" msgstr[0] "" msgstr[1] "" -#: ../../mod/admin.php:857 +#: ../../mod/admin.php:860 #, php-format msgid "%s user deleted" msgid_plural "%s users deleted" msgstr[0] "" msgstr[1] "" -#: ../../mod/admin.php:896 +#: ../../mod/admin.php:899 #, php-format msgid "User '%s' deleted" msgstr "" -#: ../../mod/admin.php:904 +#: ../../mod/admin.php:907 #, php-format msgid "User '%s' unblocked" msgstr "" -#: ../../mod/admin.php:904 +#: ../../mod/admin.php:907 #, php-format msgid "User '%s' blocked" msgstr "" -#: ../../mod/admin.php:999 +#: ../../mod/admin.php:1002 msgid "Add User" msgstr "" -#: ../../mod/admin.php:1000 +#: ../../mod/admin.php:1003 msgid "select all" msgstr "" -#: ../../mod/admin.php:1001 +#: ../../mod/admin.php:1004 msgid "User registrations waiting for confirm" msgstr "" -#: ../../mod/admin.php:1002 +#: ../../mod/admin.php:1005 msgid "User waiting for permanent deletion" msgstr "" -#: ../../mod/admin.php:1003 +#: ../../mod/admin.php:1006 msgid "Request date" msgstr "" -#: ../../mod/admin.php:1004 +#: ../../mod/admin.php:1007 msgid "No registrations." msgstr "" -#: ../../mod/admin.php:1006 +#: ../../mod/admin.php:1009 msgid "Deny" msgstr "" -#: ../../mod/admin.php:1010 +#: ../../mod/admin.php:1013 msgid "Site admin" msgstr "" -#: ../../mod/admin.php:1011 +#: ../../mod/admin.php:1014 msgid "Account expired" msgstr "" -#: ../../mod/admin.php:1014 +#: ../../mod/admin.php:1017 msgid "New User" msgstr "" -#: ../../mod/admin.php:1015 ../../mod/admin.php:1016 +#: ../../mod/admin.php:1018 ../../mod/admin.php:1019 msgid "Register date" msgstr "" -#: ../../mod/admin.php:1015 ../../mod/admin.php:1016 +#: ../../mod/admin.php:1018 ../../mod/admin.php:1019 msgid "Last login" msgstr "" -#: ../../mod/admin.php:1015 ../../mod/admin.php:1016 +#: ../../mod/admin.php:1018 ../../mod/admin.php:1019 msgid "Last item" msgstr "" -#: ../../mod/admin.php:1015 +#: ../../mod/admin.php:1018 msgid "Deleted since" msgstr "" -#: ../../mod/admin.php:1018 +#: ../../mod/admin.php:1021 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:1019 +#: ../../mod/admin.php:1022 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:1029 +#: ../../mod/admin.php:1032 msgid "Name of the new user." msgstr "" -#: ../../mod/admin.php:1030 +#: ../../mod/admin.php:1033 msgid "Nickname" msgstr "" -#: ../../mod/admin.php:1030 +#: ../../mod/admin.php:1033 msgid "Nickname of the new user." msgstr "" -#: ../../mod/admin.php:1031 +#: ../../mod/admin.php:1034 msgid "Email address of the new user." msgstr "" -#: ../../mod/admin.php:1064 +#: ../../mod/admin.php:1067 #, php-format msgid "Plugin %s disabled." msgstr "" -#: ../../mod/admin.php:1068 +#: ../../mod/admin.php:1071 #, php-format msgid "Plugin %s enabled." msgstr "" -#: ../../mod/admin.php:1078 ../../mod/admin.php:1294 +#: ../../mod/admin.php:1081 ../../mod/admin.php:1297 msgid "Disable" msgstr "" -#: ../../mod/admin.php:1080 ../../mod/admin.php:1296 +#: ../../mod/admin.php:1083 ../../mod/admin.php:1299 msgid "Enable" msgstr "" -#: ../../mod/admin.php:1103 ../../mod/admin.php:1324 +#: ../../mod/admin.php:1106 ../../mod/admin.php:1327 msgid "Toggle" msgstr "" -#: ../../mod/admin.php:1111 ../../mod/admin.php:1334 +#: ../../mod/admin.php:1114 ../../mod/admin.php:1337 msgid "Author: " msgstr "" -#: ../../mod/admin.php:1112 ../../mod/admin.php:1335 +#: ../../mod/admin.php:1115 ../../mod/admin.php:1338 msgid "Maintainer: " msgstr "" -#: ../../mod/admin.php:1254 +#: ../../mod/admin.php:1257 msgid "No themes found." msgstr "" -#: ../../mod/admin.php:1316 +#: ../../mod/admin.php:1319 msgid "Screenshot" msgstr "" -#: ../../mod/admin.php:1362 +#: ../../mod/admin.php:1365 msgid "[Experimental]" msgstr "" -#: ../../mod/admin.php:1363 +#: ../../mod/admin.php:1366 msgid "[Unsupported]" msgstr "" -#: ../../mod/admin.php:1390 +#: ../../mod/admin.php:1393 msgid "Log settings updated." msgstr "" -#: ../../mod/admin.php:1446 +#: ../../mod/admin.php:1449 msgid "Clear" msgstr "" -#: ../../mod/admin.php:1452 +#: ../../mod/admin.php:1455 msgid "Enable Debugging" msgstr "" -#: ../../mod/admin.php:1453 +#: ../../mod/admin.php:1456 msgid "Log file" msgstr "" -#: ../../mod/admin.php:1453 +#: ../../mod/admin.php:1456 msgid "" "Must be writable by web server. Relative to your Friendica top-level " "directory." msgstr "" -#: ../../mod/admin.php:1454 +#: ../../mod/admin.php:1457 msgid "Log level" msgstr "" -#: ../../mod/admin.php:1504 +#: ../../mod/admin.php:1507 msgid "Close" msgstr "" -#: ../../mod/admin.php:1510 +#: ../../mod/admin.php:1513 msgid "FTP Host" msgstr "" -#: ../../mod/admin.php:1511 +#: ../../mod/admin.php:1514 msgid "FTP Path" msgstr "" -#: ../../mod/admin.php:1512 +#: ../../mod/admin.php:1515 msgid "FTP User" msgstr "" -#: ../../mod/admin.php:1513 +#: ../../mod/admin.php:1516 msgid "FTP Password" msgstr "" @@ -6012,7 +6097,7 @@ msgstr "" msgid "Favourite Posts" msgstr "" -#: ../../mod/network.php:463 +#: ../../mod/network.php:458 #, php-format msgid "Warning: This group contains %s member from an insecure network." msgid_plural "" @@ -6020,31 +6105,31 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: ../../mod/network.php:466 +#: ../../mod/network.php:461 msgid "Private messages to this group are at risk of public disclosure." msgstr "" -#: ../../mod/network.php:520 ../../mod/content.php:119 +#: ../../mod/network.php:524 ../../mod/content.php:119 msgid "No such group" msgstr "" -#: ../../mod/network.php:537 ../../mod/content.php:130 +#: ../../mod/network.php:541 ../../mod/content.php:130 msgid "Group is empty" msgstr "" -#: ../../mod/network.php:544 ../../mod/content.php:134 +#: ../../mod/network.php:548 ../../mod/content.php:134 msgid "Group: " msgstr "" -#: ../../mod/network.php:554 +#: ../../mod/network.php:558 msgid "Contact: " msgstr "" -#: ../../mod/network.php:556 +#: ../../mod/network.php:560 msgid "Private messages to this person are at risk of public disclosure." msgstr "" -#: ../../mod/network.php:561 +#: ../../mod/network.php:565 msgid "Invalid contact." msgstr "" @@ -6262,7 +6347,11 @@ msgstr "" msgid "The post was created" msgstr "" -#: ../../mod/follow.php:27 +#: ../../mod/follow.php:21 +msgid "You already added this contact." +msgstr "" + +#: ../../mod/follow.php:103 msgid "Contact added" msgstr "" @@ -6567,6 +6656,10 @@ msgstr "" msgid "diaspora2bb: " msgstr "" +#: ../../mod/p.php:9 +msgid "Not Extended" +msgstr "" + #: ../../mod/tagrm.php:41 msgid "Tag removed" msgstr "" @@ -6593,19 +6686,19 @@ msgstr "" msgid "Please enter your password for verification:" msgstr "" -#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 +#: ../../mod/profperm.php:25 ../../mod/profperm.php:56 msgid "Invalid profile identifier." msgstr "" -#: ../../mod/profperm.php:101 +#: ../../mod/profperm.php:102 msgid "Profile Visibility Editor" msgstr "" -#: ../../mod/profperm.php:114 +#: ../../mod/profperm.php:115 msgid "Visible To" msgstr "" -#: ../../mod/profperm.php:130 +#: ../../mod/profperm.php:131 msgid "All Contacts (with secure profile access)" msgstr "" @@ -6617,121 +6710,121 @@ msgstr "" msgid "No keywords to match. Please add keywords to your default profile." msgstr "" -#: ../../mod/match.php:57 +#: ../../mod/match.php:62 msgid "is interested in:" msgstr "" -#: ../../mod/events.php:66 +#: ../../mod/events.php:68 ../../mod/events.php:70 msgid "Event title and start time are required." msgstr "" -#: ../../mod/events.php:291 +#: ../../mod/events.php:303 msgid "l, F j" msgstr "" -#: ../../mod/events.php:313 +#: ../../mod/events.php:325 msgid "Edit event" msgstr "" -#: ../../mod/events.php:371 +#: ../../mod/events.php:383 msgid "Create New Event" msgstr "" -#: ../../mod/events.php:372 +#: ../../mod/events.php:384 msgid "Previous" msgstr "" -#: ../../mod/events.php:373 ../../mod/install.php:207 +#: ../../mod/events.php:385 ../../mod/install.php:207 msgid "Next" msgstr "" -#: ../../mod/events.php:446 +#: ../../mod/events.php:458 msgid "hour:minute" msgstr "" -#: ../../mod/events.php:456 +#: ../../mod/events.php:468 msgid "Event details" msgstr "" -#: ../../mod/events.php:457 +#: ../../mod/events.php:469 #, php-format msgid "Format is %s %s. Starting date and Title are required." msgstr "" -#: ../../mod/events.php:459 +#: ../../mod/events.php:471 msgid "Event Starts:" msgstr "" -#: ../../mod/events.php:459 ../../mod/events.php:473 +#: ../../mod/events.php:471 ../../mod/events.php:485 msgid "Required" msgstr "" -#: ../../mod/events.php:462 +#: ../../mod/events.php:474 msgid "Finish date/time is not known or not relevant" msgstr "" -#: ../../mod/events.php:464 +#: ../../mod/events.php:476 msgid "Event Finishes:" msgstr "" -#: ../../mod/events.php:467 +#: ../../mod/events.php:479 msgid "Adjust for viewer timezone" msgstr "" -#: ../../mod/events.php:469 +#: ../../mod/events.php:481 msgid "Description:" msgstr "" -#: ../../mod/events.php:473 +#: ../../mod/events.php:485 msgid "Title:" msgstr "" -#: ../../mod/events.php:475 +#: ../../mod/events.php:487 msgid "Share this event" msgstr "" -#: ../../mod/ping.php:240 +#: ../../mod/ping.php:210 ../../mod/ping.php:234 msgid "{0} wants to be your friend" msgstr "" -#: ../../mod/ping.php:245 +#: ../../mod/ping.php:215 ../../mod/ping.php:239 msgid "{0} sent you a message" msgstr "" -#: ../../mod/ping.php:250 +#: ../../mod/ping.php:220 ../../mod/ping.php:244 msgid "{0} requested registration" msgstr "" -#: ../../mod/ping.php:256 +#: ../../mod/ping.php:250 #, php-format msgid "{0} commented %s's post" msgstr "" -#: ../../mod/ping.php:261 +#: ../../mod/ping.php:255 #, php-format msgid "{0} liked %s's post" msgstr "" -#: ../../mod/ping.php:266 +#: ../../mod/ping.php:260 #, php-format msgid "{0} disliked %s's post" msgstr "" -#: ../../mod/ping.php:271 +#: ../../mod/ping.php:265 #, php-format msgid "{0} is now friends with %s" msgstr "" -#: ../../mod/ping.php:276 +#: ../../mod/ping.php:270 msgid "{0} posted" msgstr "" -#: ../../mod/ping.php:281 +#: ../../mod/ping.php:275 #, php-format msgid "{0} tagged %s's post with #%s" msgstr "" -#: ../../mod/ping.php:287 +#: ../../mod/ping.php:281 msgid "{0} mentioned you in a post" msgstr "" @@ -7455,47 +7548,51 @@ msgstr "" msgid "Mirror as my own posting" 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" +msgid "Refetch contact data" msgstr "" #: ../../mod/crepair.php:170 -msgid "Friend Confirm URL" +msgid "Account Nickname" msgstr "" #: ../../mod/crepair.php:171 -msgid "Notification Endpoint URL" +msgid "@Tagname - overrides Name/Nickname" msgstr "" #: ../../mod/crepair.php:172 -msgid "Poll/Feed URL" +msgid "Account URL" msgstr "" #: ../../mod/crepair.php:173 -msgid "New photo from this URL" +msgid "Friend Request URL" msgstr "" #: ../../mod/crepair.php:174 +msgid "Friend Confirm URL" +msgstr "" + +#: ../../mod/crepair.php:175 +msgid "Notification Endpoint URL" +msgstr "" + +#: ../../mod/crepair.php:176 +msgid "Poll/Feed URL" +msgstr "" + +#: ../../mod/crepair.php:177 +msgid "New photo from this URL" +msgstr "" + +#: ../../mod/crepair.php:178 msgid "Remote Self" msgstr "" -#: ../../mod/crepair.php:176 +#: ../../mod/crepair.php:180 msgid "Mirror postings from this contact" msgstr "" -#: ../../mod/crepair.php:176 +#: ../../mod/crepair.php:180 msgid "" "Mark this contact as remote_self, this will cause friendica to repost new " "entries from this contact." @@ -7698,7 +7795,7 @@ msgstr "" msgid "Make this post private" msgstr "" -#: ../../mod/display.php:496 +#: ../../mod/display.php:498 msgid "Item has been removed." msgstr "" @@ -7743,47 +7840,47 @@ msgstr "" msgid "Introduction failed or was revoked." msgstr "" -#: ../../mod/dfrn_confirm.php:429 +#: ../../mod/dfrn_confirm.php:430 msgid "Unable to set contact photo." msgstr "" -#: ../../mod/dfrn_confirm.php:571 +#: ../../mod/dfrn_confirm.php:572 #, php-format msgid "No user record found for '%s' " msgstr "" -#: ../../mod/dfrn_confirm.php:581 +#: ../../mod/dfrn_confirm.php:582 msgid "Our site encryption key is apparently messed up." msgstr "" -#: ../../mod/dfrn_confirm.php:592 +#: ../../mod/dfrn_confirm.php:593 msgid "Empty site URL was provided or URL could not be decrypted by us." msgstr "" -#: ../../mod/dfrn_confirm.php:613 +#: ../../mod/dfrn_confirm.php:614 msgid "Contact record was not found for you on our site." msgstr "" -#: ../../mod/dfrn_confirm.php:627 +#: ../../mod/dfrn_confirm.php:628 #, php-format msgid "Site public key not available in contact record for URL %s." msgstr "" -#: ../../mod/dfrn_confirm.php:647 +#: ../../mod/dfrn_confirm.php:648 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:658 +#: ../../mod/dfrn_confirm.php:659 msgid "Unable to set your contact credentials on our system." msgstr "" -#: ../../mod/dfrn_confirm.php:725 +#: ../../mod/dfrn_confirm.php:726 msgid "Unable to update your contact profile details on our system" msgstr "" -#: ../../mod/dfrn_confirm.php:797 +#: ../../mod/dfrn_confirm.php:798 #, php-format msgid "%1$s has joined %2$s" msgstr "" From 914fa4c420179f6a1c944d4fbda696c6e4169c11 Mon Sep 17 00:00:00 2001 From: fabrixxm Date: Thu, 21 May 2015 10:45:17 +0200 Subject: [PATCH 121/306] fix run_xgettext.sh ignore smarty3/compiled folder --- util/run_xgettext.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/util/run_xgettext.sh b/util/run_xgettext.sh index 0ceda68133..75f85786a8 100755 --- a/util/run_xgettext.sh +++ b/util/run_xgettext.sh @@ -12,7 +12,7 @@ then fi if [ $ADDONMODE ] -then +then cd "$FULLPATH/../addon/$ADDONNAME" mkdir -p "$FULLPATH/../addon/$ADDONNAME/lang/C" OUTFILE="$FULLPATH/../addon/$ADDONNAME/lang/C/messages.po" @@ -23,7 +23,7 @@ else OUTFILE="$FULLPATH/messages.po" FINDSTARTDIR="../../" # skip addon folder - FINDOPTS="-wholename */addon -prune -o" + FINDOPTS="( -wholename */addon -or -wholename */smarty3 ) -prune -o" fi F9KVERSION=$(sed -n "s/.*'FRIENDICA_VERSION'.*'\([0-9.]*\)'.*/\1/p" ../../boot.php); @@ -45,7 +45,7 @@ done echo "setup base info.." if [ $ADDONMODE ] -then +then sed -i "s/SOME DESCRIPTIVE TITLE./ADDON $ADDONNAME/g" "$OUTFILE" sed -i "s/YEAR THE PACKAGE'S COPYRIGHT HOLDER//g" "$OUTFILE" sed -i "s/FIRST AUTHOR , YEAR.//g" "$OUTFILE" From fd8f25007b046afee7096e5e69c77e8e719575ce Mon Sep 17 00:00:00 2001 From: fabrixxm Date: Thu, 21 May 2015 10:47:59 +0200 Subject: [PATCH 122/306] update message.po --- util/messages.po | 82 +++--------------------------------------------- 1 file changed, 5 insertions(+), 77 deletions(-) diff --git a/util/messages.po b/util/messages.po index b51a4c9984..8303b778be 100644 --- a/util/messages.po +++ b/util/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: 3.4.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-05-20 21:53+0200\n" +"POT-Creation-Date: 2015-05-21 10:43+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,51 +18,6 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" -#: ../../view/smarty3/compiled/c019a398ec980bbc7c3aaa08335fce9651dcb225.file.newrepo.tpl.php:42 -#: ../../view/smarty3/compiled/06122f3d4709e72b359275cd40cd821933415fe0.file.clonerepo.tpl.php:53 -msgid "Visibility" -msgstr "" - -#: ../../view/smarty3/compiled/c019a398ec980bbc7c3aaa08335fce9651dcb225.file.newrepo.tpl.php:58 -#: ../../view/smarty3/compiled/06122f3d4709e72b359275cd40cd821933415fe0.file.clonerepo.tpl.php:69 -msgid "Create" -msgstr "" - -#: ../../view/smarty3/compiled/41891c5779c0b5b306eb4631dfa03e39256ed413.file.index.tpl.php:31 -msgid "Projects" -msgstr "" - -#: ../../view/smarty3/compiled/41891c5779c0b5b306eb4631dfa03e39256ed413.file.index.tpl.php:32 -msgid "add new" -msgstr "" - -#: ../../view/smarty3/compiled/41891c5779c0b5b306eb4631dfa03e39256ed413.file.index.tpl.php:51 -msgid "delete" -msgstr "" - -#: ../../view/smarty3/compiled/41891c5779c0b5b306eb4631dfa03e39256ed413.file.index.tpl.php:68 -#, php-format -msgid "" -"Do you want to delete the project '%s'?\\n\\nThis operation cannot be undone." -msgstr "" - -#: ../../view/smarty3/compiled/0396216d64cb7742520aa8262a6a394e89d80c43.file.commit.tpl.php:77 -#: ../../view/smarty3/compiled/29cb6aa326dbca251230b851c0bbe02ce1a1fb7d.file.project.tpl.php:76 -#: ../../view/smarty3/compiled/457647d85063c796c6f472b14e11e0f149ad349e.file.commits.tpl.php:77 -#: ../../view/smarty3/compiled/e4401331124fce3693a6f71f4a53d583842f7c80.file.blob.tpl.php:76 -#: ../../view/smarty3/compiled/4c3c3e0c286a99f48dffd8d4804be0037add3598.file.project_empty.tpl.php:60 -#: ../../view/smarty3/compiled/18078637833aeed88b65c61470b20001d5525b7d.file.tree.tpl.php:76 -msgid "Clone this project:" -msgstr "" - -#: ../../view/smarty3/compiled/e4401331124fce3693a6f71f4a53d583842f7c80.file.blob.tpl.php:112 -msgid "Click here to download" -msgstr "" - -#: ../../view/smarty3/compiled/4c3c3e0c286a99f48dffd8d4804be0037add3598.file.project_empty.tpl.php:73 -msgid "This project is empty!" -msgstr "" - #: ../../view/theme/cleanzero/config.php:80 #: ../../view/theme/vier/config.php:56 #: ../../view/theme/duepuntozero/config.php:59 @@ -450,37 +405,6 @@ msgstr "" msgid "toggle mobile" msgstr "" -#: ../../addon-wrk/openidserver/lib/render/trust.php:30 -#, php-format -msgid "Do you wish to confirm your identity (%s) with %s" -msgstr "" - -#: ../../addon-wrk/openidserver/lib/render/trust.php:43 -#: ../../mod/dfrn_request.php:674 ../../mod/dfrn_request.php:691 -msgid "Confirm" -msgstr "" - -#: ../../addon-wrk/openidserver/lib/render/trust.php:44 -msgid "Do not confirm" -msgstr "" - -#: ../../addon-wrk/openidserver/lib/render/trust.php:48 -msgid "Trust This Site" -msgstr "" - -#: ../../addon-wrk/openidserver/lib/render/trust.php:53 -msgid "No Identifier Sent" -msgstr "" - -#: ../../addon-wrk/openidserver/lib/render/wronguser.php:5 -msgid "Requested identity don't match logged in user." -msgstr "" - -#: ../../addon-wrk/openidserver/lib/render.php:27 -#, php-format -msgid "Please wait; you are being redirected to <%s>" -msgstr "" - #: ../../boot.php:749 msgid "Delete this item?" msgstr "" @@ -4880,6 +4804,10 @@ msgid "" "strong> profile." msgstr "" +#: ../../mod/dfrn_request.php:674 ../../mod/dfrn_request.php:691 +msgid "Confirm" +msgstr "" + #: ../../mod/dfrn_request.php:686 msgid "Hide this contact" msgstr "" From 8bbffe0a541cdf2d42f9fba7063d1aa0458bce9a Mon Sep 17 00:00:00 2001 From: fabrixxm Date: Thu, 21 May 2015 10:50:29 +0200 Subject: [PATCH 123/306] update IT --- view/it/messages.po | 11854 +++++++++++++++++++++--------------------- 1 file changed, 5953 insertions(+), 5901 deletions(-) diff --git a/view/it/messages.po b/view/it/messages.po index 41def27aaa..93fb60cf59 100644 --- a/view/it/messages.po +++ b/view/it/messages.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-09 08:57+0100\n" -"PO-Revision-Date: 2015-02-09 10:48+0000\n" +"POT-Creation-Date: 2015-04-04 17:54+0200\n" +"PO-Revision-Date: 2015-05-21 07:06+0000\n" "Last-Translator: fabrixxm \n" "Language-Team: Italian (http://www.transifex.com/projects/p/friendica/language/it/)\n" "MIME-Version: 1.0\n" @@ -24,919 +24,3207 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../../mod/contacts.php:108 +#: ../../view/theme/cleanzero/config.php:80 +#: ../../view/theme/vier/config.php:56 +#: ../../view/theme/duepuntozero/config.php:59 +#: ../../view/theme/diabook/config.php:148 +#: ../../view/theme/diabook/theme.php:633 +#: ../../view/theme/quattro/config.php:64 ../../view/theme/dispy/config.php:70 +#: ../../object/Item.php:678 ../../mod/contacts.php:492 +#: ../../mod/manage.php:110 ../../mod/fsuggest.php:107 +#: ../../mod/photos.php:1084 ../../mod/photos.php:1203 +#: ../../mod/photos.php:1514 ../../mod/photos.php:1565 +#: ../../mod/photos.php:1609 ../../mod/photos.php:1697 +#: ../../mod/invite.php:140 ../../mod/events.php:478 ../../mod/mood.php:137 +#: ../../mod/message.php:335 ../../mod/message.php:564 +#: ../../mod/profiles.php:686 ../../mod/install.php:248 +#: ../../mod/install.php:286 ../../mod/crepair.php:186 +#: ../../mod/content.php:710 ../../mod/poke.php:199 ../../mod/localtime.php:45 +msgid "Submit" +msgstr "Invia" + +#: ../../view/theme/cleanzero/config.php:82 +#: ../../view/theme/vier/config.php:58 +#: ../../view/theme/duepuntozero/config.php:61 +#: ../../view/theme/diabook/config.php:150 +#: ../../view/theme/quattro/config.php:66 ../../view/theme/dispy/config.php:72 +msgid "Theme settings" +msgstr "Impostazioni tema" + +#: ../../view/theme/cleanzero/config.php:83 +msgid "Set resize level for images in posts and comments (width and height)" +msgstr "Dimensione immagini in messaggi e commenti (larghezza e altezza)" + +#: ../../view/theme/cleanzero/config.php:84 +#: ../../view/theme/diabook/config.php:151 +#: ../../view/theme/dispy/config.php:73 +msgid "Set font-size for posts and comments" +msgstr "Dimensione del carattere di messaggi e commenti" + +#: ../../view/theme/cleanzero/config.php:85 +msgid "Set theme width" +msgstr "Imposta la larghezza del tema" + +#: ../../view/theme/cleanzero/config.php:86 +#: ../../view/theme/quattro/config.php:68 +msgid "Color scheme" +msgstr "Schema colori" + +#: ../../view/theme/vier/config.php:59 +msgid "Set style" +msgstr "Imposta stile" + +#: ../../view/theme/duepuntozero/config.php:44 ../../include/text.php:1719 +#: ../../include/user.php:247 +msgid "default" +msgstr "default" + +#: ../../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 "Varianti" + +#: ../../view/theme/diabook/config.php:142 +#: ../../view/theme/diabook/theme.php:621 ../../include/acl_selectors.php:335 +msgid "don't show" +msgstr "non mostrare" + +#: ../../view/theme/diabook/config.php:142 +#: ../../view/theme/diabook/theme.php:621 ../../include/acl_selectors.php:334 +msgid "show" +msgstr "mostra" + +#: ../../view/theme/diabook/config.php:152 +#: ../../view/theme/dispy/config.php:74 +msgid "Set line-height for posts and comments" +msgstr "Altezza della linea di testo di messaggi e commenti" + +#: ../../view/theme/diabook/config.php:153 +msgid "Set resolution for middle column" +msgstr "Imposta la dimensione della colonna centrale" + +#: ../../view/theme/diabook/config.php:154 +msgid "Set color scheme" +msgstr "Imposta lo schema dei colori" + +#: ../../view/theme/diabook/config.php:155 +msgid "Set zoomfactor for Earth Layer" +msgstr "Livello di zoom per Earth Layer" + +#: ../../view/theme/diabook/config.php:156 +#: ../../view/theme/diabook/theme.php:585 +msgid "Set longitude (X) for Earth Layers" +msgstr "Longitudine (X) per Earth Layers" + +#: ../../view/theme/diabook/config.php:157 +#: ../../view/theme/diabook/theme.php:586 +msgid "Set latitude (Y) for Earth Layers" +msgstr "Latitudine (Y) per Earth Layers" + +#: ../../view/theme/diabook/config.php:158 +#: ../../view/theme/diabook/theme.php:130 +#: ../../view/theme/diabook/theme.php:544 +#: ../../view/theme/diabook/theme.php:624 +msgid "Community Pages" +msgstr "Pagine Comunitarie" + +#: ../../view/theme/diabook/config.php:159 +#: ../../view/theme/diabook/theme.php:579 +#: ../../view/theme/diabook/theme.php:625 +msgid "Earth Layers" +msgstr "Earth Layers" + +#: ../../view/theme/diabook/config.php:160 +#: ../../view/theme/diabook/theme.php:391 +#: ../../view/theme/diabook/theme.php:626 +msgid "Community Profiles" +msgstr "Profili Comunità" + +#: ../../view/theme/diabook/config.php:161 +#: ../../view/theme/diabook/theme.php:599 +#: ../../view/theme/diabook/theme.php:627 +msgid "Help or @NewHere ?" +msgstr "Serve aiuto? Sei nuovo?" + +#: ../../view/theme/diabook/config.php:162 +#: ../../view/theme/diabook/theme.php:606 +#: ../../view/theme/diabook/theme.php:628 +msgid "Connect Services" +msgstr "Servizi di conessione" + +#: ../../view/theme/diabook/config.php:163 +#: ../../view/theme/diabook/theme.php:523 +#: ../../view/theme/diabook/theme.php:629 +msgid "Find Friends" +msgstr "Trova Amici" + +#: ../../view/theme/diabook/config.php:164 +#: ../../view/theme/diabook/theme.php:412 +#: ../../view/theme/diabook/theme.php:630 +msgid "Last users" +msgstr "Ultimi utenti" + +#: ../../view/theme/diabook/config.php:165 +#: ../../view/theme/diabook/theme.php:486 +#: ../../view/theme/diabook/theme.php:631 +msgid "Last photos" +msgstr "Ultime foto" + +#: ../../view/theme/diabook/config.php:166 +#: ../../view/theme/diabook/theme.php:441 +#: ../../view/theme/diabook/theme.php:632 +msgid "Last likes" +msgstr "Ultimi \"mi piace\"" + +#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:105 +#: ../../include/nav.php:148 ../../mod/notifications.php:93 +msgid "Home" +msgstr "Home" + +#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76 +#: ../../include/nav.php:148 +msgid "Your posts and conversations" +msgstr "I tuoi messaggi e le tue conversazioni" + +#: ../../view/theme/diabook/theme.php:124 ../../boot.php:2133 +#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:87 +#: ../../include/nav.php:77 ../../mod/profperm.php:103 +#: ../../mod/newmember.php:32 +msgid "Profile" +msgstr "Profilo" + +#: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77 +msgid "Your profile page" +msgstr "Pagina del tuo profilo" + +#: ../../view/theme/diabook/theme.php:125 ../../include/nav.php:177 +#: ../../mod/contacts.php:718 +msgid "Contacts" +msgstr "Contatti" + +#: ../../view/theme/diabook/theme.php:125 +msgid "Your contacts" +msgstr "I tuoi contatti" + +#: ../../view/theme/diabook/theme.php:126 ../../boot.php:2140 +#: ../../include/nav.php:78 ../../mod/fbrowser.php:25 +msgid "Photos" +msgstr "Foto" + +#: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:78 +msgid "Your photos" +msgstr "Le tue foto" + +#: ../../view/theme/diabook/theme.php:127 ../../boot.php:2157 +#: ../../include/nav.php:80 ../../mod/events.php:370 +msgid "Events" +msgstr "Eventi" + +#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:80 +msgid "Your events" +msgstr "I tuoi eventi" + +#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:81 +msgid "Personal notes" +msgstr "Note personali" + +#: ../../view/theme/diabook/theme.php:128 +msgid "Your personal photos" +msgstr "Le tue foto personali" + +#: ../../view/theme/diabook/theme.php:129 ../../include/nav.php:129 +#: ../../include/nav.php:131 ../../mod/community.php:32 +msgid "Community" +msgstr "Comunità" + +#: ../../view/theme/diabook/theme.php:463 ../../include/conversation.php:118 +#: ../../include/conversation.php:245 ../../include/text.php:1983 +msgid "event" +msgstr "l'evento" + +#: ../../view/theme/diabook/theme.php:466 +#: ../../view/theme/diabook/theme.php:475 ../../include/diaspora.php:2011 +#: ../../include/conversation.php:121 ../../include/conversation.php:130 +#: ../../include/conversation.php:248 ../../include/conversation.php:257 +#: ../../mod/like.php:149 ../../mod/like.php:319 ../../mod/subthread.php:87 +#: ../../mod/tagger.php:62 +msgid "status" +msgstr "stato" + +#: ../../view/theme/diabook/theme.php:471 ../../include/diaspora.php:2011 +#: ../../include/conversation.php:126 ../../include/conversation.php:253 +#: ../../include/text.php:1985 ../../mod/like.php:149 +#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 +msgid "photo" +msgstr "foto" + +#: ../../view/theme/diabook/theme.php:480 ../../include/diaspora.php:2027 +#: ../../include/conversation.php:137 ../../mod/like.php:166 #, php-format -msgid "%d contact edited." -msgid_plural "%d contacts edited" -msgstr[0] "%d contatto modificato" -msgstr[1] "%d contatti modificati" +msgid "%1$s likes %2$s's %3$s" +msgstr "A %1$s piace %3$s di %2$s" -#: ../../mod/contacts.php:139 ../../mod/contacts.php:272 -msgid "Could not access contact record." -msgstr "Non è possibile accedere al contatto." +#: ../../view/theme/diabook/theme.php:499 ../../mod/photos.php:60 +#: ../../mod/photos.php:155 ../../mod/photos.php:1064 +#: ../../mod/photos.php:1187 ../../mod/photos.php:1210 +#: ../../mod/photos.php:1760 ../../mod/photos.php:1772 +msgid "Contact Photos" +msgstr "Foto dei contatti" -#: ../../mod/contacts.php:153 -msgid "Could not locate selected profile." -msgstr "Non riesco a trovare il profilo selezionato." +#: ../../view/theme/diabook/theme.php:500 ../../include/user.php:335 +#: ../../include/user.php:342 ../../include/user.php:349 +#: ../../mod/photos.php:155 ../../mod/photos.php:731 ../../mod/photos.php:1187 +#: ../../mod/photos.php:1210 ../../mod/profile_photo.php:74 +#: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88 +#: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296 +#: ../../mod/profile_photo.php:305 +msgid "Profile Photos" +msgstr "Foto del profilo" -#: ../../mod/contacts.php:186 -msgid "Contact updated." -msgstr "Contatto aggiornato." +#: ../../view/theme/diabook/theme.php:524 +msgid "Local Directory" +msgstr "Elenco Locale" -#: ../../mod/contacts.php:188 ../../mod/dfrn_request.php:576 -msgid "Failed to update contact record." -msgstr "Errore nell'aggiornamento del contatto." +#: ../../view/theme/diabook/theme.php:525 ../../mod/directory.php:51 +msgid "Global Directory" +msgstr "Elenco globale" -#: ../../mod/contacts.php:254 ../../mod/manage.php:96 -#: ../../mod/display.php:499 ../../mod/profile_photo.php:19 -#: ../../mod/profile_photo.php:169 ../../mod/profile_photo.php:180 -#: ../../mod/profile_photo.php:193 ../../mod/follow.php:9 -#: ../../mod/item.php:168 ../../mod/item.php:184 ../../mod/group.php:19 -#: ../../mod/dfrn_confirm.php:55 ../../mod/fsuggest.php:78 -#: ../../mod/wall_upload.php:66 ../../mod/viewcontacts.php:24 -#: ../../mod/notifications.php:66 ../../mod/message.php:38 -#: ../../mod/message.php:174 ../../mod/crepair.php:119 -#: ../../mod/nogroup.php:25 ../../mod/network.php:4 ../../mod/allfriends.php:9 -#: ../../mod/events.php:140 ../../mod/install.php:151 +#: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:36 +msgid "Similar Interests" +msgstr "Interessi simili" + +#: ../../view/theme/diabook/theme.php:527 ../../include/contact_widgets.php:35 +#: ../../mod/suggest.php:68 +msgid "Friend Suggestions" +msgstr "Contatti suggeriti" + +#: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:38 +msgid "Invite Friends" +msgstr "Invita amici" + +#: ../../view/theme/diabook/theme.php:544 +#: ../../view/theme/diabook/theme.php:648 ../../include/nav.php:172 +#: ../../mod/settings.php:90 ../../mod/admin.php:1104 ../../mod/admin.php:1325 +#: ../../mod/newmember.php:22 +msgid "Settings" +msgstr "Impostazioni" + +#: ../../view/theme/diabook/theme.php:584 +msgid "Set zoomfactor for Earth Layers" +msgstr "Livello di zoom per Earth Layers" + +#: ../../view/theme/diabook/theme.php:622 +msgid "Show/hide boxes at right-hand column:" +msgstr "Mostra/Nascondi riquadri nella colonna destra" + +#: ../../view/theme/quattro/config.php:67 +msgid "Alignment" +msgstr "Allineamento" + +#: ../../view/theme/quattro/config.php:67 +msgid "Left" +msgstr "Sinistra" + +#: ../../view/theme/quattro/config.php:67 +msgid "Center" +msgstr "Centrato" + +#: ../../view/theme/quattro/config.php:69 +msgid "Posts font size" +msgstr "Dimensione caratteri post" + +#: ../../view/theme/quattro/config.php:70 +msgid "Textareas font size" +msgstr "Dimensione caratteri nelle aree di testo" + +#: ../../view/theme/dispy/config.php:75 +msgid "Set colour scheme" +msgstr "Imposta schema colori" + +#: ../../index.php:211 ../../mod/apps.php:7 +msgid "You must be logged in to use addons. " +msgstr "Devi aver effettuato il login per usare gli addons." + +#: ../../index.php:255 ../../mod/help.php:42 +msgid "Not Found" +msgstr "Non trovato" + +#: ../../index.php:258 ../../mod/help.php:45 +msgid "Page not found." +msgstr "Pagina non trovata." + +#: ../../index.php:367 ../../mod/group.php:72 ../../mod/profperm.php:19 +msgid "Permission denied" +msgstr "Permesso negato" + +#: ../../index.php:368 ../../include/items.php:4815 ../../mod/attach.php:33 #: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33 #: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103 -#: ../../mod/wall_attach.php:55 ../../mod/settings.php:102 -#: ../../mod/settings.php:596 ../../mod/settings.php:601 -#: ../../mod/register.php:42 ../../mod/delegate.php:12 ../../mod/mood.php:114 -#: ../../mod/suggest.php:58 ../../mod/profiles.php:165 -#: ../../mod/profiles.php:618 ../../mod/editpost.php:10 ../../mod/api.php:26 -#: ../../mod/api.php:31 ../../mod/notes.php:20 ../../mod/poke.php:135 -#: ../../mod/invite.php:15 ../../mod/invite.php:101 ../../mod/photos.php:134 -#: ../../mod/photos.php:1050 ../../mod/regmod.php:110 ../../mod/uimport.php:23 -#: ../../mod/attach.php:33 ../../include/items.php:4712 ../../index.php:369 +#: ../../mod/group.php:19 ../../mod/delegate.php:12 +#: ../../mod/notifications.php:66 ../../mod/settings.php:20 +#: ../../mod/settings.php:107 ../../mod/settings.php:606 +#: ../../mod/contacts.php:258 ../../mod/wall_attach.php:55 +#: ../../mod/register.php:42 ../../mod/manage.php:96 ../../mod/editpost.php:10 +#: ../../mod/regmod.php:110 ../../mod/api.php:26 ../../mod/api.php:31 +#: ../../mod/suggest.php:58 ../../mod/nogroup.php:25 ../../mod/fsuggest.php:78 +#: ../../mod/viewcontacts.php:24 ../../mod/wall_upload.php:66 +#: ../../mod/notes.php:20 ../../mod/network.php:4 ../../mod/photos.php:134 +#: ../../mod/photos.php:1050 ../../mod/follow.php:9 ../../mod/uimport.php:23 +#: ../../mod/invite.php:15 ../../mod/invite.php:101 ../../mod/events.php:140 +#: ../../mod/mood.php:114 ../../mod/message.php:38 ../../mod/message.php:174 +#: ../../mod/profiles.php:165 ../../mod/profiles.php:618 +#: ../../mod/install.php:151 ../../mod/crepair.php:119 ../../mod/poke.php:135 +#: ../../mod/display.php:499 ../../mod/dfrn_confirm.php:55 +#: ../../mod/item.php:169 ../../mod/item.php:185 +#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169 +#: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193 +#: ../../mod/allfriends.php:9 msgid "Permission denied." msgstr "Permesso negato." -#: ../../mod/contacts.php:287 -msgid "Contact has been blocked" -msgstr "Il contatto è stato bloccato" +#: ../../index.php:427 +msgid "toggle mobile" +msgstr "commuta tema mobile" -#: ../../mod/contacts.php:287 -msgid "Contact has been unblocked" -msgstr "Il contatto è stato sbloccato" +#: ../../addon-wrk/openidserver/lib/render/trust.php:30 +#, php-format +msgid "Do you wish to confirm your identity (%s) with %s" +msgstr "" -#: ../../mod/contacts.php:298 -msgid "Contact has been ignored" -msgstr "Il contatto è ignorato" +#: ../../addon-wrk/openidserver/lib/render/trust.php:43 +#: ../../mod/dfrn_request.php:676 +msgid "Confirm" +msgstr "Conferma" -#: ../../mod/contacts.php:298 -msgid "Contact has been unignored" -msgstr "Il contatto non è più ignorato" +#: ../../addon-wrk/openidserver/lib/render/trust.php:44 +msgid "Do not confirm" +msgstr "" -#: ../../mod/contacts.php:310 -msgid "Contact has been archived" -msgstr "Il contatto è stato archiviato" +#: ../../addon-wrk/openidserver/lib/render/trust.php:48 +msgid "Trust This Site" +msgstr "" -#: ../../mod/contacts.php:310 -msgid "Contact has been unarchived" -msgstr "Il contatto è stato dearchiviato" +#: ../../addon-wrk/openidserver/lib/render/trust.php:53 +msgid "No Identifier Sent" +msgstr "" -#: ../../mod/contacts.php:335 ../../mod/contacts.php:711 -msgid "Do you really want to delete this contact?" -msgstr "Vuoi veramente cancellare questo contatto?" +#: ../../addon-wrk/openidserver/lib/render/wronguser.php:5 +msgid "Requested identity don't match logged in user." +msgstr "" -#: ../../mod/contacts.php:337 ../../mod/message.php:209 -#: ../../mod/settings.php:1010 ../../mod/settings.php:1016 -#: ../../mod/settings.php:1024 ../../mod/settings.php:1028 -#: ../../mod/settings.php:1033 ../../mod/settings.php:1039 -#: ../../mod/settings.php:1045 ../../mod/settings.php:1051 -#: ../../mod/settings.php:1081 ../../mod/settings.php:1082 -#: ../../mod/settings.php:1083 ../../mod/settings.php:1084 -#: ../../mod/settings.php:1085 ../../mod/dfrn_request.php:830 -#: ../../mod/register.php:233 ../../mod/suggest.php:29 -#: ../../mod/profiles.php:661 ../../mod/profiles.php:664 ../../mod/api.php:105 -#: ../../include/items.php:4557 +#: ../../addon-wrk/openidserver/lib/render.php:27 +#, php-format +msgid "Please wait; you are being redirected to <%s>" +msgstr "" + +#: ../../boot.php:749 +msgid "Delete this item?" +msgstr "Cancellare questo elemento?" + +#: ../../boot.php:750 ../../object/Item.php:361 ../../object/Item.php:677 +#: ../../mod/photos.php:1564 ../../mod/photos.php:1608 +#: ../../mod/photos.php:1696 ../../mod/content.php:709 +msgid "Comment" +msgstr "Commento" + +#: ../../boot.php:751 ../../include/contact_widgets.php:205 +#: ../../object/Item.php:390 ../../mod/content.php:606 +msgid "show more" +msgstr "mostra di più" + +#: ../../boot.php:752 +msgid "show fewer" +msgstr "mostra di meno" + +#: ../../boot.php:1122 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "aggiornamento %s fallito. Guarda i log di errore." + +#: ../../boot.php:1229 +msgid "Create a New Account" +msgstr "Crea un nuovo account" + +#: ../../boot.php:1230 ../../include/nav.php:109 ../../mod/register.php:269 +msgid "Register" +msgstr "Registrati" + +#: ../../boot.php:1254 ../../include/nav.php:73 +msgid "Logout" +msgstr "Esci" + +#: ../../boot.php:1255 ../../include/nav.php:92 ../../mod/bookmarklet.php:12 +msgid "Login" +msgstr "Accedi" + +#: ../../boot.php:1257 +msgid "Nickname or Email address: " +msgstr "Nome utente o indirizzo email: " + +#: ../../boot.php:1258 +msgid "Password: " +msgstr "Password: " + +#: ../../boot.php:1259 +msgid "Remember me" +msgstr "Ricordati di me" + +#: ../../boot.php:1262 +msgid "Or login using OpenID: " +msgstr "O entra con OpenID:" + +#: ../../boot.php:1268 +msgid "Forgot your password?" +msgstr "Hai dimenticato la password?" + +#: ../../boot.php:1269 ../../mod/lostpass.php:109 +msgid "Password Reset" +msgstr "Reimpostazione password" + +#: ../../boot.php:1271 +msgid "Website Terms of Service" +msgstr "Condizioni di servizio del sito web " + +#: ../../boot.php:1272 +msgid "terms of service" +msgstr "condizioni del servizio" + +#: ../../boot.php:1274 +msgid "Website Privacy Policy" +msgstr "Politiche di privacy del sito" + +#: ../../boot.php:1275 +msgid "privacy policy" +msgstr "politiche di privacy" + +#: ../../boot.php:1408 +msgid "Requested account is not available." +msgstr "L'account richiesto non è disponibile." + +#: ../../boot.php:1447 ../../mod/profile.php:21 +msgid "Requested profile is not available." +msgstr "Profilo richiesto non disponibile." + +#: ../../boot.php:1490 ../../boot.php:1624 +#: ../../include/profile_advanced.php:84 +msgid "Edit profile" +msgstr "Modifica il profilo" + +#: ../../boot.php:1557 ../../include/contact_widgets.php:10 +#: ../../mod/suggest.php:90 ../../mod/match.php:58 +msgid "Connect" +msgstr "Connetti" + +#: ../../boot.php:1589 +msgid "Message" +msgstr "Messaggio" + +#: ../../boot.php:1595 ../../include/nav.php:175 +msgid "Profiles" +msgstr "Profili" + +#: ../../boot.php:1595 +msgid "Manage/edit profiles" +msgstr "Gestisci/modifica i profili" + +#: ../../boot.php:1600 ../../boot.php:1626 ../../mod/profiles.php:804 +msgid "Change profile photo" +msgstr "Cambia la foto del profilo" + +#: ../../boot.php:1601 ../../mod/profiles.php:805 +msgid "Create New Profile" +msgstr "Crea un nuovo profilo" + +#: ../../boot.php:1611 ../../mod/profiles.php:816 +msgid "Profile Image" +msgstr "Immagine del Profilo" + +#: ../../boot.php:1614 ../../mod/profiles.php:818 +msgid "visible to everybody" +msgstr "visibile a tutti" + +#: ../../boot.php:1615 ../../mod/profiles.php:819 +msgid "Edit visibility" +msgstr "Modifica visibilità" + +#: ../../boot.php:1637 ../../include/event.php:40 +#: ../../include/bb2diaspora.php:155 ../../mod/events.php:471 +#: ../../mod/directory.php:136 +msgid "Location:" +msgstr "Posizione:" + +#: ../../boot.php:1639 ../../include/profile_advanced.php:17 +#: ../../mod/directory.php:138 +msgid "Gender:" +msgstr "Genere:" + +#: ../../boot.php:1642 ../../include/profile_advanced.php:37 +#: ../../mod/directory.php:140 +msgid "Status:" +msgstr "Stato:" + +#: ../../boot.php:1644 ../../include/profile_advanced.php:48 +#: ../../mod/directory.php:142 +msgid "Homepage:" +msgstr "Homepage:" + +#: ../../boot.php:1646 ../../include/profile_advanced.php:58 +#: ../../mod/directory.php:144 +msgid "About:" +msgstr "Informazioni:" + +#: ../../boot.php:1711 +msgid "Network:" +msgstr "Rete:" + +#: ../../boot.php:1743 ../../boot.php:1829 +msgid "g A l F d" +msgstr "g A l d F" + +#: ../../boot.php:1744 ../../boot.php:1830 +msgid "F d" +msgstr "d F" + +#: ../../boot.php:1789 ../../boot.php:1877 +msgid "[today]" +msgstr "[oggi]" + +#: ../../boot.php:1801 +msgid "Birthday Reminders" +msgstr "Promemoria compleanni" + +#: ../../boot.php:1802 +msgid "Birthdays this week:" +msgstr "Compleanni questa settimana:" + +#: ../../boot.php:1864 +msgid "[No description]" +msgstr "[Nessuna descrizione]" + +#: ../../boot.php:1888 +msgid "Event Reminders" +msgstr "Promemoria" + +#: ../../boot.php:1889 +msgid "Events this week:" +msgstr "Eventi di questa settimana:" + +#: ../../boot.php:2126 ../../include/nav.php:76 +msgid "Status" +msgstr "Stato" + +#: ../../boot.php:2129 +msgid "Status Messages and Posts" +msgstr "Messaggi di stato e post" + +#: ../../boot.php:2136 +msgid "Profile Details" +msgstr "Dettagli del profilo" + +#: ../../boot.php:2143 ../../mod/photos.php:52 +msgid "Photo Albums" +msgstr "Album foto" + +#: ../../boot.php:2147 ../../boot.php:2150 ../../include/nav.php:79 +msgid "Videos" +msgstr "Video" + +#: ../../boot.php:2160 +msgid "Events and Calendar" +msgstr "Eventi e calendario" + +#: ../../boot.php:2164 ../../mod/notes.php:44 +msgid "Personal Notes" +msgstr "Note personali" + +#: ../../boot.php:2167 +msgid "Only You Can See This" +msgstr "Solo tu puoi vedere questo" + +#: ../../include/features.php:23 +msgid "General Features" +msgstr "Funzionalità generali" + +#: ../../include/features.php:25 +msgid "Multiple Profiles" +msgstr "Profili multipli" + +#: ../../include/features.php:25 +msgid "Ability to create multiple profiles" +msgstr "Possibilità di creare profili multipli" + +#: ../../include/features.php:30 +msgid "Post Composition Features" +msgstr "Funzionalità di composizione dei post" + +#: ../../include/features.php:31 +msgid "Richtext Editor" +msgstr "Editor visuale" + +#: ../../include/features.php:31 +msgid "Enable richtext editor" +msgstr "Abilita l'editor visuale" + +#: ../../include/features.php:32 +msgid "Post Preview" +msgstr "Anteprima dei post" + +#: ../../include/features.php:32 +msgid "Allow previewing posts and comments before publishing them" +msgstr "Permetti di avere un'anteprima di messaggi e commenti prima di pubblicarli" + +#: ../../include/features.php:33 +msgid "Auto-mention Forums" +msgstr "Auto-cita i Forum" + +#: ../../include/features.php:33 +msgid "" +"Add/remove mention when a fourm page is selected/deselected in ACL window." +msgstr "Aggiunge o rimuove una citazione quando un forum è selezionato o deselezionato nella finestra dei permessi." + +#: ../../include/features.php:38 +msgid "Network Sidebar Widgets" +msgstr "Widget della barra laterale nella pagina Rete" + +#: ../../include/features.php:39 +msgid "Search by Date" +msgstr "Cerca per data" + +#: ../../include/features.php:39 +msgid "Ability to select posts by date ranges" +msgstr "Permette di filtrare i post per data" + +#: ../../include/features.php:40 +msgid "Group Filter" +msgstr "Filtra gruppi" + +#: ../../include/features.php:40 +msgid "Enable widget to display Network posts only from selected group" +msgstr "Abilita il widget per filtrare i post solo per il gruppo selezionato" + +#: ../../include/features.php:41 +msgid "Network Filter" +msgstr "Filtro reti" + +#: ../../include/features.php:41 +msgid "Enable widget to display Network posts only from selected network" +msgstr "Abilita il widget per mostare i post solo per la rete selezionata" + +#: ../../include/features.php:42 ../../mod/network.php:194 +#: ../../mod/search.php:30 +msgid "Saved Searches" +msgstr "Ricerche salvate" + +#: ../../include/features.php:42 +msgid "Save search terms for re-use" +msgstr "Salva i termini cercati per riutilizzarli" + +#: ../../include/features.php:47 +msgid "Network Tabs" +msgstr "Schede pagina Rete" + +#: ../../include/features.php:48 +msgid "Network Personal Tab" +msgstr "Scheda Personali" + +#: ../../include/features.php:48 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "Abilita la scheda per mostrare solo i post a cui hai partecipato" + +#: ../../include/features.php:49 +msgid "Network New Tab" +msgstr "Scheda Nuovi" + +#: ../../include/features.php:49 +msgid "Enable tab to display only new Network posts (from the last 12 hours)" +msgstr "Abilita la scheda per mostrare solo i post nuovi (nelle ultime 12 ore)" + +#: ../../include/features.php:50 +msgid "Network Shared Links Tab" +msgstr "Scheda Link Condivisi" + +#: ../../include/features.php:50 +msgid "Enable tab to display only Network posts with links in them" +msgstr "Abilita la scheda per mostrare solo i post che contengono link" + +#: ../../include/features.php:55 +msgid "Post/Comment Tools" +msgstr "Strumenti per messaggi/commenti" + +#: ../../include/features.php:56 +msgid "Multiple Deletion" +msgstr "Eliminazione multipla" + +#: ../../include/features.php:56 +msgid "Select and delete multiple posts/comments at once" +msgstr "Seleziona ed elimina vari messagi e commenti in una volta sola" + +#: ../../include/features.php:57 +msgid "Edit Sent Posts" +msgstr "Modifica i post inviati" + +#: ../../include/features.php:57 +msgid "Edit and correct posts and comments after sending" +msgstr "Modifica e correggi messaggi e commenti dopo averli inviati" + +#: ../../include/features.php:58 +msgid "Tagging" +msgstr "Aggiunta tag" + +#: ../../include/features.php:58 +msgid "Ability to tag existing posts" +msgstr "Permette di aggiungere tag ai post già esistenti" + +#: ../../include/features.php:59 +msgid "Post Categories" +msgstr "Cateorie post" + +#: ../../include/features.php:59 +msgid "Add categories to your posts" +msgstr "Aggiungi categorie ai tuoi post" + +#: ../../include/features.php:60 ../../include/contact_widgets.php:104 +msgid "Saved Folders" +msgstr "Cartelle Salvate" + +#: ../../include/features.php:60 +msgid "Ability to file posts under folders" +msgstr "Permette di archiviare i post in cartelle" + +#: ../../include/features.php:61 +msgid "Dislike Posts" +msgstr "Non mi piace" + +#: ../../include/features.php:61 +msgid "Ability to dislike posts/comments" +msgstr "Permetti di inviare \"non mi piace\" ai messaggi" + +#: ../../include/features.php:62 +msgid "Star Posts" +msgstr "Post preferiti" + +#: ../../include/features.php:62 +msgid "Ability to mark special posts with a star indicator" +msgstr "Permette di segnare i post preferiti con una stella" + +#: ../../include/features.php:63 +msgid "Mute Post Notifications" +msgstr "Silenzia le notifiche di nuovi post" + +#: ../../include/features.php:63 +msgid "Ability to mute notifications for a thread" +msgstr "Permette di silenziare le notifiche di nuovi post in una discussione" + +#: ../../include/items.php:2307 ../../include/datetime.php:477 +#, php-format +msgid "%s's birthday" +msgstr "Compleanno di %s" + +#: ../../include/items.php:2308 ../../include/datetime.php:478 +#, php-format +msgid "Happy Birthday %s" +msgstr "Buon compleanno %s" + +#: ../../include/items.php:4111 ../../mod/dfrn_request.php:717 +#: ../../mod/dfrn_confirm.php:752 +msgid "[Name Withheld]" +msgstr "[Nome Nascosto]" + +#: ../../include/items.php:4619 ../../mod/admin.php:169 +#: ../../mod/admin.php:1052 ../../mod/admin.php:1265 ../../mod/viewsrc.php:15 +#: ../../mod/notice.php:15 ../../mod/display.php:82 ../../mod/display.php:284 +#: ../../mod/display.php:503 +msgid "Item not found." +msgstr "Elemento non trovato." + +#: ../../include/items.php:4658 +msgid "Do you really want to delete this item?" +msgstr "Vuoi veramente cancellare questo elemento?" + +#: ../../include/items.php:4660 ../../mod/settings.php:1015 +#: ../../mod/settings.php:1021 ../../mod/settings.php:1029 +#: ../../mod/settings.php:1033 ../../mod/settings.php:1038 +#: ../../mod/settings.php:1044 ../../mod/settings.php:1050 +#: ../../mod/settings.php:1056 ../../mod/settings.php:1086 +#: ../../mod/settings.php:1087 ../../mod/settings.php:1088 +#: ../../mod/settings.php:1089 ../../mod/settings.php:1090 +#: ../../mod/contacts.php:341 ../../mod/register.php:233 +#: ../../mod/dfrn_request.php:830 ../../mod/api.php:105 +#: ../../mod/suggest.php:29 ../../mod/message.php:209 +#: ../../mod/profiles.php:661 ../../mod/profiles.php:664 msgid "Yes" msgstr "Si" -#: ../../mod/contacts.php:340 ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 -#: ../../mod/message.php:212 ../../mod/fbrowser.php:81 -#: ../../mod/fbrowser.php:116 ../../mod/settings.php:615 -#: ../../mod/settings.php:641 ../../mod/dfrn_request.php:844 -#: ../../mod/suggest.php:32 ../../mod/editpost.php:148 -#: ../../mod/photos.php:203 ../../mod/photos.php:292 -#: ../../include/conversation.php:1129 ../../include/items.php:4560 +#: ../../include/items.php:4663 ../../include/conversation.php:1128 +#: ../../mod/settings.php:620 ../../mod/settings.php:646 +#: ../../mod/contacts.php:344 ../../mod/editpost.php:148 +#: ../../mod/dfrn_request.php:844 ../../mod/fbrowser.php:81 +#: ../../mod/fbrowser.php:116 ../../mod/suggest.php:32 +#: ../../mod/photos.php:203 ../../mod/photos.php:292 ../../mod/tagrm.php:11 +#: ../../mod/tagrm.php:94 ../../mod/message.php:212 msgid "Cancel" msgstr "Annulla" -#: ../../mod/contacts.php:352 -msgid "Contact has been removed." -msgstr "Il contatto è stato rimosso." +#: ../../include/items.php:4881 +msgid "Archives" +msgstr "Archivi" -#: ../../mod/contacts.php:390 +#: ../../include/group.php:25 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "Un gruppo eliminato con questo nome è stato ricreato. I permessi esistenti su un elemento possono essere applicati a questo gruppo e tutti i membri futuri. Se questo non è ciò che si intende, si prega di creare un altro gruppo con un nome diverso." + +#: ../../include/group.php:207 +msgid "Default privacy group for new contacts" +msgstr "Gruppo predefinito per i nuovi contatti" + +#: ../../include/group.php:226 +msgid "Everybody" +msgstr "Tutti" + +#: ../../include/group.php:249 +msgid "edit" +msgstr "modifica" + +#: ../../include/group.php:270 ../../mod/newmember.php:66 +msgid "Groups" +msgstr "Gruppi" + +#: ../../include/group.php:271 +msgid "Edit group" +msgstr "Modifica gruppo" + +#: ../../include/group.php:272 +msgid "Create a new group" +msgstr "Crea un nuovo gruppo" + +#: ../../include/group.php:273 +msgid "Contacts not in any group" +msgstr "Contatti in nessun gruppo." + +#: ../../include/group.php:275 ../../mod/network.php:195 +msgid "add" +msgstr "aggiungi" + +#: ../../include/Photo_old.php:911 ../../include/Photo_old.php:926 +#: ../../include/Photo_old.php:933 ../../include/Photo_old.php:955 +#: ../../include/Photo.php:933 ../../include/Photo.php:948 +#: ../../include/Photo.php:955 ../../include/Photo.php:977 +#: ../../include/message.php:144 ../../mod/wall_upload.php:169 +#: ../../mod/wall_upload.php:178 ../../mod/wall_upload.php:185 +#: ../../mod/item.php:485 +msgid "Wall Photos" +msgstr "Foto della bacheca" + +#: ../../include/dba.php:56 ../../include/dba_pdo.php:72 #, php-format -msgid "You are mutual friends with %s" -msgstr "Sei amico reciproco con %s" +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Non trovo le informazioni DNS per il database server '%s'" -#: ../../mod/contacts.php:394 +#: ../../include/contact_widgets.php:6 +msgid "Add New Contact" +msgstr "Aggiungi nuovo contatto" + +#: ../../include/contact_widgets.php:7 +msgid "Enter address or web location" +msgstr "Inserisci posizione o indirizzo web" + +#: ../../include/contact_widgets.php:8 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Esempio: bob@example.com, http://example.com/barbara" + +#: ../../include/contact_widgets.php:24 #, php-format -msgid "You are sharing with %s" -msgstr "Stai condividendo con %s" +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d invito disponibile" +msgstr[1] "%d inviti disponibili" -#: ../../mod/contacts.php:399 -#, php-format -msgid "%s is sharing with you" -msgstr "%s sta condividendo con te" +#: ../../include/contact_widgets.php:30 +msgid "Find People" +msgstr "Trova persone" -#: ../../mod/contacts.php:416 -msgid "Private communications are not available for this contact." -msgstr "Le comunicazioni private non sono disponibili per questo contatto." +#: ../../include/contact_widgets.php:31 +msgid "Enter name or interest" +msgstr "Inserisci un nome o un interesse" -#: ../../mod/contacts.php:419 ../../mod/admin.php:569 -msgid "Never" -msgstr "Mai" +#: ../../include/contact_widgets.php:32 +msgid "Connect/Follow" +msgstr "Connetti/segui" -#: ../../mod/contacts.php:423 -msgid "(Update was successful)" -msgstr "(L'aggiornamento è stato completato)" +#: ../../include/contact_widgets.php:33 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Esempi: Mario Rossi, Pesca" -#: ../../mod/contacts.php:423 -msgid "(Update was not successful)" -msgstr "(L'aggiornamento non è stato completato)" +#: ../../include/contact_widgets.php:34 ../../mod/contacts.php:724 +#: ../../mod/directory.php:63 +msgid "Find" +msgstr "Trova" -#: ../../mod/contacts.php:425 -msgid "Suggest friends" -msgstr "Suggerisci amici" +#: ../../include/contact_widgets.php:37 +msgid "Random Profile" +msgstr "Profilo causale" -#: ../../mod/contacts.php:429 -#, php-format -msgid "Network type: %s" -msgstr "Tipo di rete: %s" +#: ../../include/contact_widgets.php:71 +msgid "Networks" +msgstr "Reti" -#: ../../mod/contacts.php:432 ../../include/contact_widgets.php:200 +#: ../../include/contact_widgets.php:74 +msgid "All Networks" +msgstr "Tutte le Reti" + +#: ../../include/contact_widgets.php:107 ../../include/contact_widgets.php:139 +msgid "Everything" +msgstr "Tutto" + +#: ../../include/contact_widgets.php:136 +msgid "Categories" +msgstr "Categorie" + +#: ../../include/contact_widgets.php:200 ../../mod/contacts.php:439 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" msgstr[0] "%d contatto in comune" msgstr[1] "%d contatti in comune" -#: ../../mod/contacts.php:437 -msgid "View all contacts" -msgstr "Vedi tutti i contatti" +#: ../../include/enotify.php:18 +msgid "Friendica Notification" +msgstr "Notifica Friendica" -#: ../../mod/contacts.php:442 ../../mod/contacts.php:501 -#: ../../mod/contacts.php:714 ../../mod/admin.php:1009 -msgid "Unblock" -msgstr "Sblocca" +#: ../../include/enotify.php:21 +msgid "Thank You," +msgstr "Grazie," -#: ../../mod/contacts.php:442 ../../mod/contacts.php:501 -#: ../../mod/contacts.php:714 ../../mod/admin.php:1008 -msgid "Block" -msgstr "Blocca" +#: ../../include/enotify.php:23 +#, php-format +msgid "%s Administrator" +msgstr "Amministratore %s" -#: ../../mod/contacts.php:445 -msgid "Toggle Blocked status" -msgstr "Inverti stato \"Blocca\"" +#: ../../include/enotify.php:33 ../../include/delivery.php:467 +#: ../../include/notifier.php:796 +msgid "noreply" +msgstr "nessuna risposta" -#: ../../mod/contacts.php:448 ../../mod/contacts.php:502 -#: ../../mod/contacts.php:715 -msgid "Unignore" -msgstr "Non ignorare" +#: ../../include/enotify.php:64 +#, php-format +msgid "%s " +msgstr "%s " -#: ../../mod/contacts.php:448 ../../mod/contacts.php:502 -#: ../../mod/contacts.php:715 ../../mod/notifications.php:51 -#: ../../mod/notifications.php:164 ../../mod/notifications.php:210 -msgid "Ignore" -msgstr "Ignora" +#: ../../include/enotify.php:68 +#, php-format +msgid "[Friendica:Notify] New mail received at %s" +msgstr "[Friendica:Notifica] Nuovo messaggio privato ricevuto su %s" -#: ../../mod/contacts.php:451 -msgid "Toggle Ignored status" -msgstr "Inverti stato \"Ignora\"" +#: ../../include/enotify.php:70 +#, php-format +msgid "%1$s sent you a new private message at %2$s." +msgstr "%1$s ti ha inviato un nuovo messaggio privato su %2$s." -#: ../../mod/contacts.php:455 ../../mod/contacts.php:716 -msgid "Unarchive" -msgstr "Dearchivia" +#: ../../include/enotify.php:71 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s ti ha inviato %2$s" -#: ../../mod/contacts.php:455 ../../mod/contacts.php:716 -msgid "Archive" -msgstr "Archivia" +#: ../../include/enotify.php:71 +msgid "a private message" +msgstr "un messaggio privato" -#: ../../mod/contacts.php:458 -msgid "Toggle Archive status" -msgstr "Inverti stato \"Archiviato\"" +#: ../../include/enotify.php:72 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Visita %s per vedere e/o rispodere ai tuoi messaggi privati." -#: ../../mod/contacts.php:461 -msgid "Repair" -msgstr "Ripara" +#: ../../include/enotify.php:124 +#, php-format +msgid "%1$s commented on [url=%2$s]a %3$s[/url]" +msgstr "%1$s ha commentato [url=%2$s]%3$s[/url]" -#: ../../mod/contacts.php:464 -msgid "Advanced Contact Settings" -msgstr "Impostazioni avanzate Contatto" +#: ../../include/enotify.php:131 +#, php-format +msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" +msgstr "%1$s ha commentato [url=%2$s]%4$s di %3$s[/url]" -#: ../../mod/contacts.php:470 -msgid "Communications lost with this contact!" -msgstr "Comunicazione con questo contatto persa!" +#: ../../include/enotify.php:139 +#, php-format +msgid "%1$s commented on [url=%2$s]your %3$s[/url]" +msgstr "%1$s ha commentato un [url=%2$s]tuo %3$s[/url]" -#: ../../mod/contacts.php:473 -msgid "Contact Editor" -msgstr "Editor dei Contatti" +#: ../../include/enotify.php:149 +#, php-format +msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" +msgstr "[Friendica:Notifica] Commento di %2$s alla conversazione #%1$d" -#: ../../mod/contacts.php:475 ../../mod/manage.php:110 -#: ../../mod/fsuggest.php:107 ../../mod/message.php:335 -#: ../../mod/message.php:564 ../../mod/crepair.php:186 -#: ../../mod/events.php:478 ../../mod/content.php:710 -#: ../../mod/install.php:248 ../../mod/install.php:286 ../../mod/mood.php:137 -#: ../../mod/profiles.php:686 ../../mod/localtime.php:45 -#: ../../mod/poke.php:199 ../../mod/invite.php:140 ../../mod/photos.php:1084 -#: ../../mod/photos.php:1203 ../../mod/photos.php:1514 -#: ../../mod/photos.php:1565 ../../mod/photos.php:1609 -#: ../../mod/photos.php:1697 ../../object/Item.php:678 -#: ../../view/theme/cleanzero/config.php:80 -#: ../../view/theme/dispy/config.php:70 ../../view/theme/quattro/config.php:64 -#: ../../view/theme/diabook/config.php:148 -#: ../../view/theme/diabook/theme.php:633 ../../view/theme/vier/config.php:53 -#: ../../view/theme/duepuntozero/config.php:59 -msgid "Submit" -msgstr "Invia" +#: ../../include/enotify.php:150 +#, php-format +msgid "%s commented on an item/conversation you have been following." +msgstr "%s ha commentato un elemento che stavi seguendo." -#: ../../mod/contacts.php:476 -msgid "Profile Visibility" -msgstr "Visibilità del profilo" +#: ../../include/enotify.php:153 ../../include/enotify.php:168 +#: ../../include/enotify.php:181 ../../include/enotify.php:194 +#: ../../include/enotify.php:212 ../../include/enotify.php:225 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Visita %s per vedere e/o commentare la conversazione" -#: ../../mod/contacts.php:477 +#: ../../include/enotify.php:160 +#, php-format +msgid "[Friendica:Notify] %s posted to your profile wall" +msgstr "[Friendica:Notifica] %s ha scritto sulla tua bacheca" + +#: ../../include/enotify.php:162 +#, php-format +msgid "%1$s posted to your profile wall at %2$s" +msgstr "%1$s ha scritto sulla tua bacheca su %2$s" + +#: ../../include/enotify.php:164 +#, php-format +msgid "%1$s posted to [url=%2$s]your wall[/url]" +msgstr "%1$s ha inviato un messaggio sulla [url=%2$s]tua bacheca[/url]" + +#: ../../include/enotify.php:175 +#, php-format +msgid "[Friendica:Notify] %s tagged you" +msgstr "[Friendica:Notifica] %s ti ha taggato" + +#: ../../include/enotify.php:176 +#, php-format +msgid "%1$s tagged you at %2$s" +msgstr "%1$s ti ha taggato su %2$s" + +#: ../../include/enotify.php:177 +#, php-format +msgid "%1$s [url=%2$s]tagged you[/url]." +msgstr "%1$s [url=%2$s]ti ha taggato[/url]." + +#: ../../include/enotify.php:188 +#, php-format +msgid "[Friendica:Notify] %s shared a new post" +msgstr "[Friendica:Notifica] %s ha condiviso un nuovo messaggio" + +#: ../../include/enotify.php:189 +#, php-format +msgid "%1$s shared a new post at %2$s" +msgstr "%1$s ha condiviso un nuovo messaggio su %2$s" + +#: ../../include/enotify.php:190 +#, php-format +msgid "%1$s [url=%2$s]shared a post[/url]." +msgstr "%1$s [url=%2$s]ha condiviso un messaggio[/url]." + +#: ../../include/enotify.php:202 +#, php-format +msgid "[Friendica:Notify] %1$s poked you" +msgstr "[Friendica:Notifica] %1$s ti ha stuzzicato" + +#: ../../include/enotify.php:203 +#, php-format +msgid "%1$s poked you at %2$s" +msgstr "%1$s ti ha stuzzicato su %2$s" + +#: ../../include/enotify.php:204 +#, php-format +msgid "%1$s [url=%2$s]poked you[/url]." +msgstr "%1$s [url=%2$s]ti ha stuzzicato[/url]." + +#: ../../include/enotify.php:219 +#, php-format +msgid "[Friendica:Notify] %s tagged your post" +msgstr "[Friendica:Notifica] %s ha taggato un tuo messaggio" + +#: ../../include/enotify.php:220 +#, php-format +msgid "%1$s tagged your post at %2$s" +msgstr "%1$s ha taggato il tuo post su %2$s" + +#: ../../include/enotify.php:221 +#, php-format +msgid "%1$s tagged [url=%2$s]your post[/url]" +msgstr "%1$s ha taggato [url=%2$s]il tuo post[/url]" + +#: ../../include/enotify.php:232 +msgid "[Friendica:Notify] Introduction received" +msgstr "[Friendica:Notifica] Hai ricevuto una presentazione" + +#: ../../include/enotify.php:233 +#, php-format +msgid "You've received an introduction from '%1$s' at %2$s" +msgstr "Hai ricevuto un'introduzione da '%1$s' su %2$s" + +#: ../../include/enotify.php:234 +#, php-format +msgid "You've received [url=%1$s]an introduction[/url] from %2$s." +msgstr "Hai ricevuto [url=%1$s]un'introduzione[/url] da %2$s." + +#: ../../include/enotify.php:237 ../../include/enotify.php:279 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Puoi visitare il suo profilo presso %s" + +#: ../../include/enotify.php:239 +#, php-format +msgid "Please visit %s to approve or reject the introduction." +msgstr "Visita %s per approvare o rifiutare la presentazione." + +#: ../../include/enotify.php:247 +msgid "[Friendica:Notify] A new person is sharing with you" +msgstr "[Friendica:Notifica] Una nuova persona sta condividendo con te" + +#: ../../include/enotify.php:248 ../../include/enotify.php:249 +#, php-format +msgid "%1$s is sharing with you at %2$s" +msgstr "%1$s sta condividendo con te su %2$s" + +#: ../../include/enotify.php:255 +msgid "[Friendica:Notify] You have a new follower" +msgstr "[Friendica:Notifica] Una nuova persona ti segue" + +#: ../../include/enotify.php:256 ../../include/enotify.php:257 +#, php-format +msgid "You have a new follower at %2$s : %1$s" +msgstr "Un nuovo utente ha iniziato a seguirti su %2$s : %1$s" + +#: ../../include/enotify.php:270 +msgid "[Friendica:Notify] Friend suggestion received" +msgstr "[Friendica:Notifica] Hai ricevuto un suggerimento di amicizia" + +#: ../../include/enotify.php:271 +#, php-format +msgid "You've received a friend suggestion from '%1$s' at %2$s" +msgstr "Hai ricevuto un suggerimento di amicizia da '%1$s' su %2$s" + +#: ../../include/enotify.php:272 #, php-format msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Seleziona il profilo che vuoi mostrare a %s quando visita il tuo profilo in modo sicuro." +"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." +msgstr "Hai ricevuto [url=%1$s]un suggerimento di amicizia[/url] per %2$s su %3$s" -#: ../../mod/contacts.php:478 -msgid "Contact Information / Notes" -msgstr "Informazioni / Note sul contatto" +#: ../../include/enotify.php:277 +msgid "Name:" +msgstr "Nome:" -#: ../../mod/contacts.php:479 -msgid "Edit contact notes" -msgstr "Modifica note contatto" +#: ../../include/enotify.php:278 +msgid "Photo:" +msgstr "Foto:" -#: ../../mod/contacts.php:484 ../../mod/contacts.php:679 -#: ../../mod/viewcontacts.php:64 ../../mod/nogroup.php:40 +#: ../../include/enotify.php:281 #, php-format -msgid "Visit %s's profile [%s]" -msgstr "Visita il profilo di %s [%s]" +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Visita %s per approvare o rifiutare il suggerimento." -#: ../../mod/contacts.php:485 -msgid "Block/Unblock contact" -msgstr "Blocca/Sblocca contatto" +#: ../../include/enotify.php:289 ../../include/enotify.php:302 +msgid "[Friendica:Notify] Connection accepted" +msgstr "[Friendica:Notifica] Connessione accettata" -#: ../../mod/contacts.php:486 -msgid "Ignore contact" -msgstr "Ignora il contatto" +#: ../../include/enotify.php:290 ../../include/enotify.php:303 +#, php-format +msgid "'%1$s' has acepted your connection request at %2$s" +msgstr "'%1$s' ha accettato la tua richiesta di connessione su %2$s" -#: ../../mod/contacts.php:487 -msgid "Repair URL settings" -msgstr "Impostazioni riparazione URL" +#: ../../include/enotify.php:291 ../../include/enotify.php:304 +#, php-format +msgid "%2$s has accepted your [url=%1$s]connection request[/url]." +msgstr "%2$s ha accettato la tua [url=%1$s]richiesta di connessione[/url]" -#: ../../mod/contacts.php:488 -msgid "View conversations" -msgstr "Vedi conversazioni" +#: ../../include/enotify.php:294 +msgid "" +"You are now mutual friends and may exchange status updates, photos, and email\n" +"\twithout restriction." +msgstr "Ora siete connessi reciprocamente e potete scambiarvi aggiornamenti di stato, foto e email\nsenza restrizioni" -#: ../../mod/contacts.php:490 -msgid "Delete contact" +#: ../../include/enotify.php:297 ../../include/enotify.php:311 +#, php-format +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr "Visita %s se desideri modificare questo collegamento." + +#: ../../include/enotify.php:307 +#, php-format +msgid "" +"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of " +"communication - such as private messaging and some profile interactions. If " +"this is a celebrity or community page, these settings were applied " +"automatically." +msgstr "'%1$s' ha scelto di accettarti come \"fan\", il che limita alcune forme di comunicazione, come i messaggi privati, e alcune possibiltà di interazione col profilo. Se è una pagina di una comunità o di una celebrità, queste impostazioni sono state applicate automaticamente." + +#: ../../include/enotify.php:309 +#, php-format +msgid "" +"'%1$s' may choose to extend this into a two-way or more permissive " +"relationship in the future. " +msgstr "'%1$s' può decidere in futuro di estendere la connessione in una reciproca o più permissiva." + +#: ../../include/enotify.php:322 +msgid "[Friendica System:Notify] registration request" +msgstr "[Friendica System:Notifica] richiesta di registrazione" + +#: ../../include/enotify.php:323 +#, php-format +msgid "You've received a registration request from '%1$s' at %2$s" +msgstr "Hai ricevuto una richiesta di registrazione da '%1$s' su %2$s" + +#: ../../include/enotify.php:324 +#, php-format +msgid "You've received a [url=%1$s]registration request[/url] from %2$s." +msgstr "Hai ricevuto una [url=%1$s]richiesta di registrazione[/url] da %2$s." + +#: ../../include/enotify.php:327 +#, php-format +msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" +msgstr "Nome completo: %1$s\nIndirizzo del sito: %2$s\nNome utente: %3$s (%4$s)" + +#: ../../include/enotify.php:330 +#, php-format +msgid "Please visit %s to approve or reject the request." +msgstr "Visita %s per approvare o rifiutare la richiesta." + +#: ../../include/api.php:304 ../../include/api.php:315 +#: ../../include/api.php:416 ../../include/api.php:1063 +#: ../../include/api.php:1065 +msgid "User not found." +msgstr "Utente non trovato." + +#: ../../include/api.php:770 +#, php-format +msgid "Daily posting limit of %d posts reached. The post was rejected." +msgstr "Limite giornaliero di %d messaggi raggiunto. Il messaggio è stato rifiutato" + +#: ../../include/api.php:789 +#, php-format +msgid "Weekly posting limit of %d posts reached. The post was rejected." +msgstr "Limite settimanale di %d messaggi raggiunto. Il messaggio è stato rifiutato" + +#: ../../include/api.php:808 +#, php-format +msgid "Monthly posting limit of %d posts reached. The post was rejected." +msgstr "Limite mensile di %d messaggi raggiunto. Il messaggio è stato rifiutato" + +#: ../../include/api.php:1271 +msgid "There is no status with this id." +msgstr "Non c'è nessuno status con questo id." + +#: ../../include/api.php:1341 +msgid "There is no conversation with this id." +msgstr "Non c'è nessuna conversazione con questo id" + +#: ../../include/api.php:1613 +msgid "Invalid request." +msgstr "Richiesta non valida." + +#: ../../include/api.php:1624 +msgid "Invalid item." +msgstr "Elemento non valido." + +#: ../../include/api.php:1634 +msgid "Invalid action. " +msgstr "Azione non valida." + +#: ../../include/api.php:1642 +msgid "DB error" +msgstr "Errore database" + +#: ../../include/network.php:890 +msgid "view full size" +msgstr "vedi a schermo intero" + +#: ../../include/Scrape.php:608 +msgid " on Last.fm" +msgstr "su Last.fm" + +#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1133 +msgid "Full Name:" +msgstr "Nome completo:" + +#: ../../include/profile_advanced.php:22 +msgid "j F, Y" +msgstr "j F Y" + +#: ../../include/profile_advanced.php:23 +msgid "j F" +msgstr "j F" + +#: ../../include/profile_advanced.php:30 +msgid "Birthday:" +msgstr "Compleanno:" + +#: ../../include/profile_advanced.php:34 +msgid "Age:" +msgstr "Età:" + +#: ../../include/profile_advanced.php:43 +#, php-format +msgid "for %1$d %2$s" +msgstr "per %1$d %2$s" + +#: ../../include/profile_advanced.php:46 ../../mod/profiles.php:714 +msgid "Sexual Preference:" +msgstr "Preferenze sessuali:" + +#: ../../include/profile_advanced.php:50 ../../mod/profiles.php:716 +msgid "Hometown:" +msgstr "Paese natale:" + +#: ../../include/profile_advanced.php:52 +msgid "Tags:" +msgstr "Tag:" + +#: ../../include/profile_advanced.php:54 ../../mod/profiles.php:717 +msgid "Political Views:" +msgstr "Orientamento politico:" + +#: ../../include/profile_advanced.php:56 +msgid "Religion:" +msgstr "Religione:" + +#: ../../include/profile_advanced.php:60 +msgid "Hobbies/Interests:" +msgstr "Hobby/Interessi:" + +#: ../../include/profile_advanced.php:62 ../../mod/profiles.php:721 +msgid "Likes:" +msgstr "Mi piace:" + +#: ../../include/profile_advanced.php:64 ../../mod/profiles.php:722 +msgid "Dislikes:" +msgstr "Non mi piace:" + +#: ../../include/profile_advanced.php:67 +msgid "Contact information and Social Networks:" +msgstr "Informazioni su contatti e social network:" + +#: ../../include/profile_advanced.php:69 +msgid "Musical interests:" +msgstr "Interessi musicali:" + +#: ../../include/profile_advanced.php:71 +msgid "Books, literature:" +msgstr "Libri, letteratura:" + +#: ../../include/profile_advanced.php:73 +msgid "Television:" +msgstr "Televisione:" + +#: ../../include/profile_advanced.php:75 +msgid "Film/dance/culture/entertainment:" +msgstr "Film/danza/cultura/intrattenimento:" + +#: ../../include/profile_advanced.php:77 +msgid "Love/Romance:" +msgstr "Amore:" + +#: ../../include/profile_advanced.php:79 +msgid "Work/employment:" +msgstr "Lavoro:" + +#: ../../include/profile_advanced.php:81 +msgid "School/education:" +msgstr "Scuola:" + +#: ../../include/nav.php:34 ../../mod/navigation.php:20 +msgid "Nothing new here" +msgstr "Niente di nuovo qui" + +#: ../../include/nav.php:38 ../../mod/navigation.php:24 +msgid "Clear notifications" +msgstr "Pulisci le notifiche" + +#: ../../include/nav.php:73 +msgid "End this session" +msgstr "Finisci questa sessione" + +#: ../../include/nav.php:79 +msgid "Your videos" +msgstr "I tuoi video" + +#: ../../include/nav.php:81 +msgid "Your personal notes" +msgstr "Le tue note personali" + +#: ../../include/nav.php:92 +msgid "Sign in" +msgstr "Entra" + +#: ../../include/nav.php:105 +msgid "Home Page" +msgstr "Home Page" + +#: ../../include/nav.php:109 +msgid "Create an account" +msgstr "Crea un account" + +#: ../../include/nav.php:114 ../../mod/help.php:36 +msgid "Help" +msgstr "Guida" + +#: ../../include/nav.php:114 +msgid "Help and documentation" +msgstr "Guida e documentazione" + +#: ../../include/nav.php:117 +msgid "Apps" +msgstr "Applicazioni" + +#: ../../include/nav.php:117 +msgid "Addon applications, utilities, games" +msgstr "Applicazioni, utilità e giochi aggiuntivi" + +#: ../../include/nav.php:119 ../../include/text.php:968 +#: ../../include/text.php:969 ../../mod/search.php:99 +msgid "Search" +msgstr "Cerca" + +#: ../../include/nav.php:119 +msgid "Search site content" +msgstr "Cerca nel contenuto del sito" + +#: ../../include/nav.php:129 +msgid "Conversations on this site" +msgstr "Conversazioni su questo sito" + +#: ../../include/nav.php:131 +msgid "Conversations on the network" +msgstr "Conversazioni nella rete" + +#: ../../include/nav.php:133 +msgid "Directory" +msgstr "Elenco" + +#: ../../include/nav.php:133 +msgid "People directory" +msgstr "Elenco delle persone" + +#: ../../include/nav.php:135 +msgid "Information" +msgstr "Informazioni" + +#: ../../include/nav.php:135 +msgid "Information about this friendica instance" +msgstr "Informazioni su questo server friendica" + +#: ../../include/nav.php:145 ../../mod/notifications.php:83 +msgid "Network" +msgstr "Rete" + +#: ../../include/nav.php:145 +msgid "Conversations from your friends" +msgstr "Conversazioni dai tuoi amici" + +#: ../../include/nav.php:146 +msgid "Network Reset" +msgstr "Reset pagina Rete" + +#: ../../include/nav.php:146 +msgid "Load Network page with no filters" +msgstr "Carica la pagina Rete senza nessun filtro" + +#: ../../include/nav.php:154 ../../mod/notifications.php:98 +msgid "Introductions" +msgstr "Presentazioni" + +#: ../../include/nav.php:154 +msgid "Friend Requests" +msgstr "Richieste di amicizia" + +#: ../../include/nav.php:155 ../../mod/notifications.php:224 +msgid "Notifications" +msgstr "Notifiche" + +#: ../../include/nav.php:156 +msgid "See all notifications" +msgstr "Vedi tutte le notifiche" + +#: ../../include/nav.php:157 +msgid "Mark all system notifications seen" +msgstr "Segna tutte le notifiche come viste" + +#: ../../include/nav.php:161 ../../mod/message.php:182 +msgid "Messages" +msgstr "Messaggi" + +#: ../../include/nav.php:161 +msgid "Private mail" +msgstr "Posta privata" + +#: ../../include/nav.php:162 +msgid "Inbox" +msgstr "In arrivo" + +#: ../../include/nav.php:163 +msgid "Outbox" +msgstr "Inviati" + +#: ../../include/nav.php:164 ../../mod/message.php:9 +msgid "New Message" +msgstr "Nuovo messaggio" + +#: ../../include/nav.php:167 +msgid "Manage" +msgstr "Gestisci" + +#: ../../include/nav.php:167 +msgid "Manage other pages" +msgstr "Gestisci altre pagine" + +#: ../../include/nav.php:170 ../../mod/settings.php:67 +msgid "Delegations" +msgstr "Delegazioni" + +#: ../../include/nav.php:170 ../../mod/delegate.php:130 +msgid "Delegate Page Management" +msgstr "Gestione delegati per la pagina" + +#: ../../include/nav.php:172 +msgid "Account settings" +msgstr "Parametri account" + +#: ../../include/nav.php:175 +msgid "Manage/Edit Profiles" +msgstr "Gestisci/Modifica i profili" + +#: ../../include/nav.php:177 +msgid "Manage/edit friends and contacts" +msgstr "Gestisci/modifica amici e contatti" + +#: ../../include/nav.php:184 ../../mod/admin.php:130 +msgid "Admin" +msgstr "Amministrazione" + +#: ../../include/nav.php:184 +msgid "Site setup and configuration" +msgstr "Configurazione del sito" + +#: ../../include/nav.php:188 +msgid "Navigation" +msgstr "Navigazione" + +#: ../../include/nav.php:188 +msgid "Site map" +msgstr "Mappa del sito" + +#: ../../include/plugin.php:455 ../../include/plugin.php:457 +msgid "Click here to upgrade." +msgstr "Clicca qui per aggiornare." + +#: ../../include/plugin.php:463 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Questa azione eccede i limiti del tuo piano di sottoscrizione." + +#: ../../include/plugin.php:468 +msgid "This action is not available under your subscription plan." +msgstr "Questa azione non è disponibile nel tuo piano di sottoscrizione." + +#: ../../include/follow.php:27 ../../mod/dfrn_request.php:507 +msgid "Disallowed profile URL." +msgstr "Indirizzo profilo non permesso." + +#: ../../include/follow.php:32 +msgid "Connect URL missing." +msgstr "URL di connessione mancante." + +#: ../../include/follow.php:59 +msgid "" +"This site is not configured to allow communications with other networks." +msgstr "Questo sito non è configurato per permettere la comunicazione con altri network." + +#: ../../include/follow.php:60 ../../include/follow.php:80 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "Non sono stati trovati protocolli di comunicazione o feed compatibili." + +#: ../../include/follow.php:78 +msgid "The profile address specified does not provide adequate information." +msgstr "L'indirizzo del profilo specificato non fornisce adeguate informazioni." + +#: ../../include/follow.php:82 +msgid "An author or name was not found." +msgstr "Non è stato trovato un nome o un autore" + +#: ../../include/follow.php:84 +msgid "No browser URL could be matched to this address." +msgstr "Nessun URL puo' essere associato a questo indirizzo." + +#: ../../include/follow.php:86 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "Impossibile l'indirizzo identità con un protocollo conosciuto o con un contatto email." + +#: ../../include/follow.php:87 +msgid "Use mailto: in front of address to force email check." +msgstr "Usa \"mailto:\" davanti all'indirizzo per forzare un controllo nelle email." + +#: ../../include/follow.php:93 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "L'indirizzo del profilo specificato appartiene a un network che è stato disabilitato su questo sito." + +#: ../../include/follow.php:103 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "Profilo limitato. Questa persona non sarà in grado di ricevere notifiche personali da te." + +#: ../../include/follow.php:205 +msgid "Unable to retrieve contact information." +msgstr "Impossibile recuperare informazioni sul contatto." + +#: ../../include/follow.php:258 +msgid "following" +msgstr "segue" + +#: ../../include/uimport.php:94 +msgid "Error decoding account file" +msgstr "Errore decodificando il file account" + +#: ../../include/uimport.php:100 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "Errore! Nessuna informazione di versione nel file! Potrebbe non essere un file account di Friendica?" + +#: ../../include/uimport.php:116 ../../include/uimport.php:127 +msgid "Error! Cannot check nickname" +msgstr "Errore! Non posso controllare il nickname" + +#: ../../include/uimport.php:120 ../../include/uimport.php:131 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "L'utente '%s' esiste già su questo server!" + +#: ../../include/uimport.php:153 +msgid "User creation error" +msgstr "Errore creando l'utente" + +#: ../../include/uimport.php:171 +msgid "User profile creation error" +msgstr "Errore creando il profile dell'utente" + +#: ../../include/uimport.php:220 +#, php-format +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "%d contatto non importato" +msgstr[1] "%d contatti non importati" + +#: ../../include/uimport.php:290 +msgid "Done. You can now login with your username and password" +msgstr "Fatto. Ora puoi entrare con il tuo nome utente e la tua password" + +#: ../../include/event.php:11 ../../include/bb2diaspora.php:133 +#: ../../mod/localtime.php:12 +msgid "l F d, Y \\@ g:i A" +msgstr "l d F Y \\@ G:i" + +#: ../../include/event.php:20 ../../include/bb2diaspora.php:139 +msgid "Starts:" +msgstr "Inizia:" + +#: ../../include/event.php:30 ../../include/bb2diaspora.php:147 +msgid "Finishes:" +msgstr "Finisce:" + +#: ../../include/Contact.php:119 +msgid "stopped following" +msgstr "tolto dai seguiti" + +#: ../../include/Contact.php:232 ../../include/conversation.php:881 +msgid "Poke" +msgstr "Stuzzica" + +#: ../../include/Contact.php:233 ../../include/conversation.php:875 +msgid "View Status" +msgstr "Visualizza stato" + +#: ../../include/Contact.php:234 ../../include/conversation.php:876 +msgid "View Profile" +msgstr "Visualizza profilo" + +#: ../../include/Contact.php:235 ../../include/conversation.php:877 +msgid "View Photos" +msgstr "Visualizza foto" + +#: ../../include/Contact.php:236 ../../include/Contact.php:259 +#: ../../include/conversation.php:878 +msgid "Network Posts" +msgstr "Post della Rete" + +#: ../../include/Contact.php:237 ../../include/Contact.php:259 +#: ../../include/conversation.php:879 +msgid "Edit Contact" +msgstr "Modifica contatti" + +#: ../../include/Contact.php:238 +msgid "Drop Contact" msgstr "Rimuovi contatto" -#: ../../mod/contacts.php:494 -msgid "Last update:" -msgstr "Ultimo aggiornamento:" +#: ../../include/Contact.php:239 ../../include/Contact.php:259 +#: ../../include/conversation.php:880 +msgid "Send PM" +msgstr "Invia messaggio privato" -#: ../../mod/contacts.php:496 -msgid "Update public posts" -msgstr "Aggiorna messaggi pubblici" - -#: ../../mod/contacts.php:498 ../../mod/admin.php:1503 -msgid "Update now" -msgstr "Aggiorna adesso" - -#: ../../mod/contacts.php:505 -msgid "Currently blocked" -msgstr "Bloccato" - -#: ../../mod/contacts.php:506 -msgid "Currently ignored" -msgstr "Ignorato" - -#: ../../mod/contacts.php:507 -msgid "Currently archived" -msgstr "Al momento archiviato" - -#: ../../mod/contacts.php:508 ../../mod/notifications.php:157 -#: ../../mod/notifications.php:204 -msgid "Hide this contact from others" -msgstr "Nascondi questo contatto agli altri" - -#: ../../mod/contacts.php:508 +#: ../../include/dbstructure.php:26 +#, php-format msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "Risposte ai tuoi post pubblici possono essere comunque visibili" +"\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 "\nGli sviluppatori di Friendica hanno rilasciato l'aggiornamento %s\nrecentemente, ma quando ho provato a installarlo, qualcosa è \nandato terribilmente storto.\nBisogna sistemare le cose e non posso farlo da solo.\nContatta uno sviluppatore se non puoi aiutarmi da solo. Il mio database potrebbe essere invalido." -#: ../../mod/contacts.php:509 -msgid "Notification for new posts" -msgstr "Notifica per i nuovi messaggi" - -#: ../../mod/contacts.php:509 -msgid "Send a notification of every new post of this contact" -msgstr "Invia una notifica per ogni nuovo messaggio di questo contatto" - -#: ../../mod/contacts.php:510 -msgid "Fetch further information for feeds" -msgstr "Recupera maggiori infomazioni per i feed" - -#: ../../mod/contacts.php:511 -msgid "Disabled" -msgstr "" - -#: ../../mod/contacts.php:511 -msgid "Fetch information" -msgstr "" - -#: ../../mod/contacts.php:511 -msgid "Fetch information and keywords" -msgstr "" - -#: ../../mod/contacts.php:513 -msgid "Blacklisted keywords" -msgstr "" - -#: ../../mod/contacts.php:513 +#: ../../include/dbstructure.php:31 +#, php-format msgid "" -"Comma separated list of keywords that should not be converted to hashtags, " -"when \"Fetch information and keywords\" is selected" -msgstr "" +"The error message is\n" +"[pre]%s[/pre]" +msgstr "Il messaggio di errore è\n[pre]%s[/pre]" -#: ../../mod/contacts.php:564 -msgid "Suggestions" -msgstr "Suggerimenti" +#: ../../include/dbstructure.php:150 +msgid "Errors encountered creating database tables." +msgstr "La creazione delle tabelle del database ha generato errori." -#: ../../mod/contacts.php:567 -msgid "Suggest potential friends" -msgstr "Suggerisci potenziali amici" +#: ../../include/dbstructure.php:208 +msgid "Errors encountered performing database changes." +msgstr "Riscontrati errori applicando le modifiche al database." -#: ../../mod/contacts.php:570 ../../mod/group.php:194 -msgid "All Contacts" -msgstr "Tutti i contatti" +#: ../../include/datetime.php:43 ../../include/datetime.php:45 +msgid "Miscellaneous" +msgstr "Varie" -#: ../../mod/contacts.php:573 -msgid "Show all contacts" -msgstr "Mostra tutti i contatti" +#: ../../include/datetime.php:153 ../../include/datetime.php:290 +msgid "year" +msgstr "anno" -#: ../../mod/contacts.php:576 -msgid "Unblocked" -msgstr "Sbloccato" +#: ../../include/datetime.php:158 ../../include/datetime.php:291 +msgid "month" +msgstr "mese" -#: ../../mod/contacts.php:579 -msgid "Only show unblocked contacts" -msgstr "Mostra solo contatti non bloccati" +#: ../../include/datetime.php:163 ../../include/datetime.php:293 +msgid "day" +msgstr "giorno" -#: ../../mod/contacts.php:583 -msgid "Blocked" -msgstr "Bloccato" +#: ../../include/datetime.php:276 +msgid "never" +msgstr "mai" -#: ../../mod/contacts.php:586 -msgid "Only show blocked contacts" -msgstr "Mostra solo contatti bloccati" +#: ../../include/datetime.php:282 +msgid "less than a second ago" +msgstr "meno di un secondo fa" -#: ../../mod/contacts.php:590 -msgid "Ignored" -msgstr "Ignorato" +#: ../../include/datetime.php:290 +msgid "years" +msgstr "anni" -#: ../../mod/contacts.php:593 -msgid "Only show ignored contacts" -msgstr "Mostra solo contatti ignorati" +#: ../../include/datetime.php:291 +msgid "months" +msgstr "mesi" -#: ../../mod/contacts.php:597 -msgid "Archived" -msgstr "Achiviato" +#: ../../include/datetime.php:292 +msgid "week" +msgstr "settimana" -#: ../../mod/contacts.php:600 -msgid "Only show archived contacts" -msgstr "Mostra solo contatti archiviati" +#: ../../include/datetime.php:292 +msgid "weeks" +msgstr "settimane" -#: ../../mod/contacts.php:604 -msgid "Hidden" -msgstr "Nascosto" +#: ../../include/datetime.php:293 +msgid "days" +msgstr "giorni" -#: ../../mod/contacts.php:607 -msgid "Only show hidden contacts" -msgstr "Mostra solo contatti nascosti" +#: ../../include/datetime.php:294 +msgid "hour" +msgstr "ora" -#: ../../mod/contacts.php:655 -msgid "Mutual Friendship" -msgstr "Amicizia reciproca" +#: ../../include/datetime.php:294 +msgid "hours" +msgstr "ore" -#: ../../mod/contacts.php:659 -msgid "is a fan of yours" -msgstr "è un tuo fan" +#: ../../include/datetime.php:295 +msgid "minute" +msgstr "minuto" -#: ../../mod/contacts.php:663 -msgid "you are a fan of" -msgstr "sei un fan di" +#: ../../include/datetime.php:295 +msgid "minutes" +msgstr "minuti" -#: ../../mod/contacts.php:680 ../../mod/nogroup.php:41 -msgid "Edit contact" -msgstr "Modifca contatto" +#: ../../include/datetime.php:296 +msgid "second" +msgstr "secondo" -#: ../../mod/contacts.php:702 ../../include/nav.php:177 -#: ../../view/theme/diabook/theme.php:125 -msgid "Contacts" -msgstr "Contatti" +#: ../../include/datetime.php:296 +msgid "seconds" +msgstr "secondi" -#: ../../mod/contacts.php:706 -msgid "Search your contacts" -msgstr "Cerca nei tuoi contatti" +#: ../../include/datetime.php:305 +#, php-format +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s fa" -#: ../../mod/contacts.php:707 ../../mod/directory.php:61 -msgid "Finding: " -msgstr "Ricerca: " +#: ../../include/message.php:15 ../../include/message.php:172 +msgid "[no subject]" +msgstr "[nessun oggetto]" -#: ../../mod/contacts.php:708 ../../mod/directory.php:63 -#: ../../include/contact_widgets.php:34 -msgid "Find" -msgstr "Trova" +#: ../../include/delivery.php:456 ../../include/notifier.php:786 +msgid "(no subject)" +msgstr "(nessun oggetto)" -#: ../../mod/contacts.php:713 ../../mod/settings.php:132 -#: ../../mod/settings.php:640 -msgid "Update" -msgstr "Aggiorna" +#: ../../include/contact_selectors.php:32 +msgid "Unknown | Not categorised" +msgstr "Sconosciuto | non categorizzato" -#: ../../mod/contacts.php:717 ../../mod/group.php:171 ../../mod/admin.php:1007 -#: ../../mod/content.php:438 ../../mod/content.php:741 -#: ../../mod/settings.php:677 ../../mod/photos.php:1654 -#: ../../object/Item.php:130 ../../include/conversation.php:614 -msgid "Delete" -msgstr "Rimuovi" +#: ../../include/contact_selectors.php:33 +msgid "Block immediately" +msgstr "Blocca immediatamente" -#: ../../mod/hcard.php:10 -msgid "No profile" -msgstr "Nessun profilo" +#: ../../include/contact_selectors.php:34 +msgid "Shady, spammer, self-marketer" +msgstr "Shady, spammer, self-marketer" -#: ../../mod/manage.php:106 -msgid "Manage Identities and/or Pages" -msgstr "Gestisci indentità e/o pagine" +#: ../../include/contact_selectors.php:35 +msgid "Known to me, but no opinion" +msgstr "Lo conosco, ma non ho un'opinione particolare" -#: ../../mod/manage.php:107 -msgid "" -"Toggle between different identities or community/group pages which share " -"your account details or which you have been granted \"manage\" permissions" -msgstr "Cambia tra differenti identità o pagine comunità/gruppi che condividono il tuo account o per cui hai i permessi di gestione" +#: ../../include/contact_selectors.php:36 +msgid "OK, probably harmless" +msgstr "E' ok, probabilmente innocuo" -#: ../../mod/manage.php:108 -msgid "Select an identity to manage: " -msgstr "Seleziona un'identità da gestire:" +#: ../../include/contact_selectors.php:37 +msgid "Reputable, has my trust" +msgstr "Rispettabile, ha la mia fiducia" -#: ../../mod/oexchange.php:25 -msgid "Post successful." -msgstr "Inviato!" +#: ../../include/contact_selectors.php:56 ../../mod/admin.php:571 +msgid "Frequently" +msgstr "Frequentemente" -#: ../../mod/profperm.php:19 ../../mod/group.php:72 ../../index.php:368 -msgid "Permission denied" -msgstr "Permesso negato" +#: ../../include/contact_selectors.php:57 ../../mod/admin.php:572 +msgid "Hourly" +msgstr "Ogni ora" -#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 -msgid "Invalid profile identifier." -msgstr "Indentificativo del profilo non valido." +#: ../../include/contact_selectors.php:58 ../../mod/admin.php:573 +msgid "Twice daily" +msgstr "Due volte al dì" -#: ../../mod/profperm.php:101 -msgid "Profile Visibility Editor" -msgstr "Modifica visibilità del profilo" +#: ../../include/contact_selectors.php:59 ../../mod/admin.php:574 +msgid "Daily" +msgstr "Giornalmente" -#: ../../mod/profperm.php:103 ../../mod/newmember.php:32 ../../boot.php:2119 -#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:87 -#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:124 -msgid "Profile" -msgstr "Profilo" +#: ../../include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Settimanalmente" -#: ../../mod/profperm.php:105 ../../mod/group.php:224 -msgid "Click on a contact to add or remove." -msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo." +#: ../../include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Mensilmente" -#: ../../mod/profperm.php:114 -msgid "Visible To" -msgstr "Visibile a" +#: ../../include/contact_selectors.php:76 ../../mod/dfrn_request.php:836 +msgid "Friendica" +msgstr "Friendica" -#: ../../mod/profperm.php:130 -msgid "All Contacts (with secure profile access)" -msgstr "Tutti i contatti (con profilo ad accesso sicuro)" +#: ../../include/contact_selectors.php:77 +msgid "OStatus" +msgstr "Ostatus" -#: ../../mod/display.php:82 ../../mod/display.php:284 -#: ../../mod/display.php:503 ../../mod/viewsrc.php:15 ../../mod/admin.php:169 -#: ../../mod/admin.php:1052 ../../mod/admin.php:1265 ../../mod/notice.php:15 -#: ../../include/items.php:4516 -msgid "Item not found." -msgstr "Elemento non trovato." +#: ../../include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS / Atom" -#: ../../mod/display.php:212 ../../mod/videos.php:115 -#: ../../mod/viewcontacts.php:19 ../../mod/community.php:18 -#: ../../mod/dfrn_request.php:762 ../../mod/search.php:89 -#: ../../mod/directory.php:33 ../../mod/photos.php:920 -msgid "Public access denied." -msgstr "Accesso negato." +#: ../../include/contact_selectors.php:79 +#: ../../include/contact_selectors.php:86 ../../mod/admin.php:1003 +#: ../../mod/admin.php:1015 ../../mod/admin.php:1016 ../../mod/admin.php:1031 +msgid "Email" +msgstr "Email" -#: ../../mod/display.php:332 ../../mod/profile.php:155 -msgid "Access to this profile has been restricted." -msgstr "L'accesso a questo profilo è stato limitato." +#: ../../include/contact_selectors.php:80 ../../mod/settings.php:741 +#: ../../mod/dfrn_request.php:838 +msgid "Diaspora" +msgstr "Diaspora" -#: ../../mod/display.php:496 -msgid "Item has been removed." -msgstr "L'oggetto è stato rimosso." - -#: ../../mod/newmember.php:6 -msgid "Welcome to Friendica" -msgstr "Benvenuto su Friendica" - -#: ../../mod/newmember.php:8 -msgid "New Member Checklist" -msgstr "Cose da fare per i Nuovi Utenti" - -#: ../../mod/newmember.php:12 -msgid "" -"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." -msgstr "Vorremmo offrirti qualche trucco e dei link alla guida per aiutarti ad avere un'esperienza divertente. Clicca su un qualsiasi elemento per visitare la relativa pagina. Un link a questa pagina sarà visibile nella tua home per due settimane dopo la tua registrazione." - -#: ../../mod/newmember.php:14 -msgid "Getting Started" -msgstr "Come Iniziare" - -#: ../../mod/newmember.php:18 -msgid "Friendica Walk-Through" -msgstr "Friendica Passo-Passo" - -#: ../../mod/newmember.php:18 -msgid "" -"On your Quick Start page - find a brief introduction to your " -"profile and network tabs, make some new connections, and find some groups to" -" join." -msgstr "Sulla tua pagina Quick Start - veloce introduzione alla tua pagina profilo e alla pagina Rete, fai qualche nuova amicizia, e trova qualche gruppo a cui unirti." - -#: ../../mod/newmember.php:22 ../../mod/admin.php:1104 -#: ../../mod/admin.php:1325 ../../mod/settings.php:85 -#: ../../include/nav.php:172 ../../view/theme/diabook/theme.php:544 -#: ../../view/theme/diabook/theme.php:648 -msgid "Settings" -msgstr "Impostazioni" - -#: ../../mod/newmember.php:26 -msgid "Go to Your Settings" -msgstr "Vai alle tue Impostazioni" - -#: ../../mod/newmember.php:26 -msgid "" -"On your Settings page - change your initial password. Also make a " -"note of your Identity Address. This looks just like an email address - and " -"will be useful in making friends on the free social web." -msgstr "Nella tua pagina Impostazioni - cambia la tua password iniziale. Prendi anche nota del tuo Indirizzo Identità. Assomiglia a un indirizzo email e sarà utile per stringere amicizie nel web sociale libero." - -#: ../../mod/newmember.php:28 -msgid "" -"Review the other settings, particularly the privacy settings. An unpublished" -" directory listing is like having an unlisted phone number. In general, you " -"should probably publish your listing - unless all of your friends and " -"potential friends know exactly how to find you." -msgstr "Guarda le altre impostazioni, in particolare le impostazioni della privacy. Un profilo non pubblicato è come un numero di telefono non in elenco. In genere, dovresti pubblicare il tuo profilo - a meno che tutti i tuoi amici e potenziali tali sappiano esattamente come trovarti." - -#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244 -#: ../../mod/profiles.php:699 -msgid "Upload Profile Photo" -msgstr "Carica la foto del profilo" - -#: ../../mod/newmember.php:36 -msgid "" -"Upload a profile photo if you have not done so already. Studies have shown " -"that people with real photos of themselves are ten times more likely to make" -" friends than people who do not." -msgstr "Carica una foto del profilo se non l'hai ancora fatto. Studi hanno mostrato che persone che hanno vere foto di se stessi hanno dieci volte più probabilità di fare amicizie rispetto alle persone che non ce l'hanno." - -#: ../../mod/newmember.php:38 -msgid "Edit Your Profile" -msgstr "Modifica il tuo Profilo" - -#: ../../mod/newmember.php:38 -msgid "" -"Edit your default profile to your liking. Review the " -"settings for hiding your list of friends and hiding the profile from unknown" -" visitors." -msgstr "Modifica il tuo profilo predefinito a piacimento. Rivedi le impostazioni per nascondere la tua lista di amici e nascondere il profilo ai visitatori sconosciuti." - -#: ../../mod/newmember.php:40 -msgid "Profile Keywords" -msgstr "Parole chiave del profilo" - -#: ../../mod/newmember.php:40 -msgid "" -"Set some public keywords for your default profile which describe your " -"interests. We may be able to find other people with similar interests and " -"suggest friendships." -msgstr "Inserisci qualche parola chiave pubblica nel tuo profilo predefinito che descriva i tuoi interessi. Potremmo essere in grado di trovare altre persone con interessi similari e suggerirti delle amicizie." - -#: ../../mod/newmember.php:44 -msgid "Connecting" -msgstr "Collegarsi" - -#: ../../mod/newmember.php:49 ../../mod/newmember.php:51 -#: ../../include/contact_selectors.php:81 +#: ../../include/contact_selectors.php:81 ../../mod/newmember.php:49 +#: ../../mod/newmember.php:51 msgid "Facebook" msgstr "Facebook" -#: ../../mod/newmember.php:49 -msgid "" -"Authorise the Facebook Connector if you currently have a Facebook account " -"and we will (optionally) import all your Facebook friends and conversations." -msgstr "Autorizza il Facebook Connector se hai un account Facebook, e noi (opzionalmente) importeremo tuti i tuoi amici e le tue conversazioni da Facebook." +#: ../../include/contact_selectors.php:82 +msgid "Zot!" +msgstr "Zot!" -#: ../../mod/newmember.php:51 -msgid "" -"If this is your own personal server, installing the Facebook addon " -"may ease your transition to the free social web." -msgstr "SeAdd New Contact dialog." -msgstr "La tua pagina Contatti è il mezzo per gestire le amicizie e collegarsi con amici su altre reti. Di solito, basta inserire l'indirizzo nel campo Aggiungi Nuovo Contatto" +#: ../../include/contact_selectors.php:88 +msgid "pump.io" +msgstr "pump.io" -#: ../../mod/newmember.php:60 -msgid "Go to Your Site's Directory" -msgstr "Vai all'Elenco del tuo sito" +#: ../../include/contact_selectors.php:89 +msgid "Twitter" +msgstr "Twitter" -#: ../../mod/newmember.php:60 -msgid "" -"The Directory page lets you find other people in this network or other " -"federated sites. Look for a Connect or Follow link on " -"their profile page. Provide your own Identity Address if requested." -msgstr "La pagina Elenco ti permette di trovare altre persone in questa rete o in altri siti. Cerca un link Connetti o Segui nella loro pagina del profilo. Inserisci il tuo Indirizzo Identità, se richiesto." +#: ../../include/contact_selectors.php:90 +msgid "Diaspora Connector" +msgstr "Connettore Diaspora" -#: ../../mod/newmember.php:62 -msgid "Finding New People" -msgstr "Trova nuove persone" +#: ../../include/contact_selectors.php:91 +msgid "Statusnet" +msgstr "Statusnet" -#: ../../mod/newmember.php:62 -msgid "" -"On the side panel of the Contacts page are several tools to find new " -"friends. We can match people by interest, look up people by name or " -"interest, and provide suggestions based on network relationships. On a brand" -" new site, friend suggestions will usually begin to be populated within 24 " -"hours." -msgstr "Nel pannello laterale nella pagina \"Contatti\", ci sono diversi strumenti per trovare nuovi amici. Possiamo confrontare le persone per interessi, cercare le persone per nome e fornire suggerimenti basati sui tuoi contatti esistenti. Su un sito nuovo, i suggerimenti sono di solito presenti dopo 24 ore." +#: ../../include/contact_selectors.php:92 +msgid "App.net" +msgstr "App.net" -#: ../../mod/newmember.php:66 ../../include/group.php:270 -msgid "Groups" -msgstr "Gruppi" - -#: ../../mod/newmember.php:70 -msgid "Group Your Contacts" -msgstr "Raggruppa i tuoi contatti" - -#: ../../mod/newmember.php:70 -msgid "" -"Once you have made some friends, organize them into private conversation " -"groups from the sidebar of your Contacts page and then you can interact with" -" each group privately on your Network page." -msgstr "Quando avrai alcuni amici, organizzali in gruppi di conversazioni private dalla barra laterale della tua pagina Contatti. Potrai interagire privatamente con ogni gruppo nella tua pagina Rete" - -#: ../../mod/newmember.php:73 -msgid "Why Aren't My Posts Public?" -msgstr "Perchè i miei post non sono pubblici?" - -#: ../../mod/newmember.php:73 -msgid "" -"Friendica respects your privacy. By default, your posts will only show up to" -" people you've added as friends. For more information, see the help section " -"from the link above." -msgstr "Friendica rispetta la tua provacy. Per impostazione predefinita, i tuoi post sono mostrati solo alle persone che hai aggiunto come amici. Per maggiori informazioni guarda la sezione della guida dal link qui sopra." - -#: ../../mod/newmember.php:78 -msgid "Getting Help" -msgstr "Ottenere Aiuto" - -#: ../../mod/newmember.php:82 -msgid "Go to the Help Section" -msgstr "Vai alla sezione Guida" - -#: ../../mod/newmember.php:82 -msgid "" -"Our help pages may be consulted for detail on other program" -" features and resources." -msgstr "Le nostre pagine della guida possono essere consultate per avere dettagli su altre caratteristiche del programma e altre risorse." - -#: ../../mod/openid.php:24 -msgid "OpenID protocol error. No ID returned." -msgstr "Errore protocollo OpenID. Nessun ID ricevuto." - -#: ../../mod/openid.php:53 -msgid "" -"Account not found and OpenID registration is not permitted on this site." -msgstr "L'account non è stato trovato, e la registrazione via OpenID non è permessa su questo sito." - -#: ../../mod/openid.php:93 ../../include/auth.php:112 -#: ../../include/auth.php:175 -msgid "Login failed." -msgstr "Accesso fallito." - -#: ../../mod/profile_photo.php:44 -msgid "Image uploaded but image cropping failed." -msgstr "L'immagine è stata caricata, ma il non è stato possibile ritagliarla." - -#: ../../mod/profile_photo.php:74 ../../mod/profile_photo.php:81 -#: ../../mod/profile_photo.php:88 ../../mod/profile_photo.php:204 -#: ../../mod/profile_photo.php:296 ../../mod/profile_photo.php:305 -#: ../../mod/photos.php:155 ../../mod/photos.php:731 ../../mod/photos.php:1187 -#: ../../mod/photos.php:1210 ../../include/user.php:335 -#: ../../include/user.php:342 ../../include/user.php:349 -#: ../../view/theme/diabook/theme.php:500 -msgid "Profile Photos" -msgstr "Foto del profilo" - -#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84 -#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308 +#: ../../include/diaspora.php:621 ../../include/conversation.php:172 +#: ../../mod/dfrn_confirm.php:486 #, php-format -msgid "Image size reduction [%s] failed." -msgstr "Il ridimensionamento del'immagine [%s] è fallito." +msgid "%1$s is now friends with %2$s" +msgstr "%1$s e %2$s adesso sono amici" -#: ../../mod/profile_photo.php:118 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Ricarica la pagina con shift+F5 o cancella la cache del browser se la nuova foto non viene mostrata immediatamente." +#: ../../include/diaspora.php:704 +msgid "Sharing notification from Diaspora network" +msgstr "Notifica di condivisione dal network Diaspora*" -#: ../../mod/profile_photo.php:128 -msgid "Unable to process image" -msgstr "Impossibile elaborare l'immagine" +#: ../../include/diaspora.php:2444 +msgid "Attachments:" +msgstr "Allegati:" -#: ../../mod/profile_photo.php:144 ../../mod/wall_upload.php:122 +#: ../../include/conversation.php:140 ../../mod/like.php:168 #, php-format -msgid "Image exceeds size limit of %d" -msgstr "La dimensione dell'immagine supera il limite di %d" +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "A %1$s non piace %3$s di %2$s" -#: ../../mod/profile_photo.php:153 ../../mod/wall_upload.php:144 -#: ../../mod/photos.php:807 -msgid "Unable to process image." -msgstr "Impossibile caricare l'immagine." - -#: ../../mod/profile_photo.php:242 -msgid "Upload File:" -msgstr "Carica un file:" - -#: ../../mod/profile_photo.php:243 -msgid "Select a profile:" -msgstr "Seleziona un profilo:" - -#: ../../mod/profile_photo.php:245 -msgid "Upload" -msgstr "Carica" - -#: ../../mod/profile_photo.php:248 ../../mod/settings.php:1062 -msgid "or" -msgstr "o" - -#: ../../mod/profile_photo.php:248 -msgid "skip this step" -msgstr "salta questo passaggio" - -#: ../../mod/profile_photo.php:248 -msgid "select a photo from your photo albums" -msgstr "seleziona una foto dai tuoi album" - -#: ../../mod/profile_photo.php:262 -msgid "Crop Image" -msgstr "Ritaglia immagine" - -#: ../../mod/profile_photo.php:263 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Ritaglia l'imagine per una visualizzazione migliore." - -#: ../../mod/profile_photo.php:265 -msgid "Done Editing" -msgstr "Finito" - -#: ../../mod/profile_photo.php:299 -msgid "Image uploaded successfully." -msgstr "Immagine caricata con successo." - -#: ../../mod/profile_photo.php:301 ../../mod/wall_upload.php:172 -#: ../../mod/photos.php:834 -msgid "Image upload failed." -msgstr "Caricamento immagine fallito." - -#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:149 -#: ../../include/conversation.php:126 ../../include/conversation.php:254 -#: ../../include/text.php:1968 ../../include/diaspora.php:2087 -#: ../../view/theme/diabook/theme.php:471 -msgid "photo" -msgstr "foto" - -#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:149 -#: ../../mod/like.php:319 ../../include/conversation.php:121 -#: ../../include/conversation.php:130 ../../include/conversation.php:249 -#: ../../include/conversation.php:258 ../../include/diaspora.php:2087 -#: ../../view/theme/diabook/theme.php:466 -#: ../../view/theme/diabook/theme.php:475 -msgid "status" -msgstr "stato" - -#: ../../mod/subthread.php:103 +#: ../../include/conversation.php:206 #, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s sta seguendo %3$s di %2$s" +msgid "%1$s poked %2$s" +msgstr "%1$s ha stuzzicato %2$s" -#: ../../mod/tagrm.php:41 -msgid "Tag removed" -msgstr "Tag rimosso" +#: ../../include/conversation.php:226 ../../mod/mood.php:62 +#, php-format +msgid "%1$s is currently %2$s" +msgstr "%1$s al momento è %2$s" -#: ../../mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "Rimuovi il tag" +#: ../../include/conversation.php:265 ../../mod/tagger.php:95 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s ha taggato %3$s di %2$s con %4$s" -#: ../../mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "Seleziona un tag da rimuovere: " +#: ../../include/conversation.php:290 +msgid "post/item" +msgstr "post/elemento" -#: ../../mod/tagrm.php:93 ../../mod/delegate.php:139 -msgid "Remove" +#: ../../include/conversation.php:291 +#, php-format +msgid "%1$s marked %2$s's %3$s as favorite" +msgstr "%1$s ha segnato il/la %3$s di %2$s come preferito" + +#: ../../include/conversation.php:612 ../../object/Item.php:129 +#: ../../mod/photos.php:1653 ../../mod/content.php:437 +#: ../../mod/content.php:740 +msgid "Select" +msgstr "Seleziona" + +#: ../../include/conversation.php:613 ../../object/Item.php:130 +#: ../../mod/group.php:171 ../../mod/settings.php:682 +#: ../../mod/contacts.php:733 ../../mod/admin.php:1007 +#: ../../mod/photos.php:1654 ../../mod/content.php:438 +#: ../../mod/content.php:741 +msgid "Delete" msgstr "Rimuovi" -#: ../../mod/filer.php:30 ../../include/conversation.php:1006 -#: ../../include/conversation.php:1024 +#: ../../include/conversation.php:653 ../../object/Item.php:326 +#: ../../object/Item.php:327 ../../mod/content.php:471 +#: ../../mod/content.php:852 ../../mod/content.php:853 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Vedi il profilo di %s @ %s" + +#: ../../include/conversation.php:665 ../../object/Item.php:316 +msgid "Categories:" +msgstr "Categorie:" + +#: ../../include/conversation.php:666 ../../object/Item.php:317 +msgid "Filed under:" +msgstr "Archiviato in:" + +#: ../../include/conversation.php:673 ../../object/Item.php:340 +#: ../../mod/content.php:481 ../../mod/content.php:864 +#, php-format +msgid "%s from %s" +msgstr "%s da %s" + +#: ../../include/conversation.php:689 ../../mod/content.php:497 +msgid "View in context" +msgstr "Vedi nel contesto" + +#: ../../include/conversation.php:691 ../../include/conversation.php:1108 +#: ../../object/Item.php:364 ../../mod/wallmessage.php:156 +#: ../../mod/editpost.php:124 ../../mod/photos.php:1545 +#: ../../mod/message.php:334 ../../mod/message.php:565 +#: ../../mod/content.php:499 ../../mod/content.php:883 +msgid "Please wait" +msgstr "Attendi" + +#: ../../include/conversation.php:771 +msgid "remove" +msgstr "rimuovi" + +#: ../../include/conversation.php:775 +msgid "Delete Selected Items" +msgstr "Cancella elementi selezionati" + +#: ../../include/conversation.php:874 +msgid "Follow Thread" +msgstr "Segui la discussione" + +#: ../../include/conversation.php:943 +#, php-format +msgid "%s likes this." +msgstr "Piace a %s." + +#: ../../include/conversation.php:943 +#, php-format +msgid "%s doesn't like this." +msgstr "Non piace a %s." + +#: ../../include/conversation.php:948 +#, php-format +msgid "%2$d people like this" +msgstr "Piace a %2$d persone." + +#: ../../include/conversation.php:951 +#, php-format +msgid "%2$d people don't like this" +msgstr "Non piace a %2$d persone." + +#: ../../include/conversation.php:965 +msgid "and" +msgstr "e" + +#: ../../include/conversation.php:971 +#, php-format +msgid ", and %d other people" +msgstr "e altre %d persone" + +#: ../../include/conversation.php:973 +#, php-format +msgid "%s like this." +msgstr "Piace a %s." + +#: ../../include/conversation.php:973 +#, php-format +msgid "%s don't like this." +msgstr "Non piace a %s." + +#: ../../include/conversation.php:1000 ../../include/conversation.php:1018 +msgid "Visible to everybody" +msgstr "Visibile a tutti" + +#: ../../include/conversation.php:1001 ../../include/conversation.php:1019 +#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135 +#: ../../mod/message.php:283 ../../mod/message.php:291 +#: ../../mod/message.php:466 ../../mod/message.php:474 +msgid "Please enter a link URL:" +msgstr "Inserisci l'indirizzo del link:" + +#: ../../include/conversation.php:1002 ../../include/conversation.php:1020 +msgid "Please enter a video link/URL:" +msgstr "Inserisci un collegamento video / URL:" + +#: ../../include/conversation.php:1003 ../../include/conversation.php:1021 +msgid "Please enter an audio link/URL:" +msgstr "Inserisci un collegamento audio / URL:" + +#: ../../include/conversation.php:1004 ../../include/conversation.php:1022 +msgid "Tag term:" +msgstr "Tag:" + +#: ../../include/conversation.php:1005 ../../include/conversation.php:1023 +#: ../../mod/filer.php:30 msgid "Save to Folder:" msgstr "Salva nella Cartella:" -#: ../../mod/filer.php:30 -msgid "- select -" -msgstr "- seleziona -" +#: ../../include/conversation.php:1006 ../../include/conversation.php:1024 +msgid "Where are you right now?" +msgstr "Dove sei ora?" -#: ../../mod/filer.php:31 ../../mod/editpost.php:109 ../../mod/notes.php:63 -#: ../../include/text.php:956 +#: ../../include/conversation.php:1007 +msgid "Delete item(s)?" +msgstr "Cancellare questo elemento/i?" + +#: ../../include/conversation.php:1050 +msgid "Post to Email" +msgstr "Invia a email" + +#: ../../include/conversation.php:1055 +#, php-format +msgid "Connectors disabled, since \"%s\" is enabled." +msgstr "Connettore disabilitato, dato che \"%s\" è abilitato." + +#: ../../include/conversation.php:1056 ../../mod/settings.php:1033 +msgid "Hide your profile details from unknown viewers?" +msgstr "Nascondi i dettagli del tuo profilo ai visitatori sconosciuti?" + +#: ../../include/conversation.php:1089 ../../mod/photos.php:1544 +msgid "Share" +msgstr "Condividi" + +#: ../../include/conversation.php:1090 ../../mod/wallmessage.php:154 +#: ../../mod/editpost.php:110 ../../mod/message.php:332 +#: ../../mod/message.php:562 +msgid "Upload photo" +msgstr "Carica foto" + +#: ../../include/conversation.php:1091 ../../mod/editpost.php:111 +msgid "upload photo" +msgstr "carica foto" + +#: ../../include/conversation.php:1092 ../../mod/editpost.php:112 +msgid "Attach file" +msgstr "Allega file" + +#: ../../include/conversation.php:1093 ../../mod/editpost.php:113 +msgid "attach file" +msgstr "allega file" + +#: ../../include/conversation.php:1094 ../../mod/wallmessage.php:155 +#: ../../mod/editpost.php:114 ../../mod/message.php:333 +#: ../../mod/message.php:563 +msgid "Insert web link" +msgstr "Inserisci link" + +#: ../../include/conversation.php:1095 ../../mod/editpost.php:115 +msgid "web link" +msgstr "link web" + +#: ../../include/conversation.php:1096 ../../mod/editpost.php:116 +msgid "Insert video link" +msgstr "Inserire collegamento video" + +#: ../../include/conversation.php:1097 ../../mod/editpost.php:117 +msgid "video link" +msgstr "link video" + +#: ../../include/conversation.php:1098 ../../mod/editpost.php:118 +msgid "Insert audio link" +msgstr "Inserisci collegamento audio" + +#: ../../include/conversation.php:1099 ../../mod/editpost.php:119 +msgid "audio link" +msgstr "link audio" + +#: ../../include/conversation.php:1100 ../../mod/editpost.php:120 +msgid "Set your location" +msgstr "La tua posizione" + +#: ../../include/conversation.php:1101 ../../mod/editpost.php:121 +msgid "set location" +msgstr "posizione" + +#: ../../include/conversation.php:1102 ../../mod/editpost.php:122 +msgid "Clear browser location" +msgstr "Rimuovi la localizzazione data dal browser" + +#: ../../include/conversation.php:1103 ../../mod/editpost.php:123 +msgid "clear location" +msgstr "canc. pos." + +#: ../../include/conversation.php:1105 ../../mod/editpost.php:137 +msgid "Set title" +msgstr "Scegli un titolo" + +#: ../../include/conversation.php:1107 ../../mod/editpost.php:139 +msgid "Categories (comma-separated list)" +msgstr "Categorie (lista separata da virgola)" + +#: ../../include/conversation.php:1109 ../../mod/editpost.php:125 +msgid "Permission settings" +msgstr "Impostazioni permessi" + +#: ../../include/conversation.php:1110 +msgid "permissions" +msgstr "permessi" + +#: ../../include/conversation.php:1118 ../../mod/editpost.php:133 +msgid "CC: email addresses" +msgstr "CC: indirizzi email" + +#: ../../include/conversation.php:1119 ../../mod/editpost.php:134 +msgid "Public post" +msgstr "Messaggio pubblico" + +#: ../../include/conversation.php:1121 ../../mod/editpost.php:140 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Esempio: bob@example.com, mary@example.com" + +#: ../../include/conversation.php:1125 ../../object/Item.php:687 +#: ../../mod/editpost.php:145 ../../mod/photos.php:1566 +#: ../../mod/photos.php:1610 ../../mod/photos.php:1698 +#: ../../mod/content.php:719 +msgid "Preview" +msgstr "Anteprima" + +#: ../../include/conversation.php:1134 +msgid "Post to Groups" +msgstr "Invia ai Gruppi" + +#: ../../include/conversation.php:1135 +msgid "Post to Contacts" +msgstr "Invia ai Contatti" + +#: ../../include/conversation.php:1136 +msgid "Private post" +msgstr "Post privato" + +#: ../../include/text.php:297 +msgid "newer" +msgstr "nuovi" + +#: ../../include/text.php:299 +msgid "older" +msgstr "vecchi" + +#: ../../include/text.php:304 +msgid "prev" +msgstr "prec" + +#: ../../include/text.php:306 +msgid "first" +msgstr "primo" + +#: ../../include/text.php:338 +msgid "last" +msgstr "ultimo" + +#: ../../include/text.php:341 +msgid "next" +msgstr "succ" + +#: ../../include/text.php:396 +msgid "Loading more entries..." +msgstr "Carico più elementi..." + +#: ../../include/text.php:397 +msgid "The end" +msgstr "Fine" + +#: ../../include/text.php:870 +msgid "No contacts" +msgstr "Nessun contatto" + +#: ../../include/text.php:879 +#, php-format +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "%d contatto" +msgstr[1] "%d contatti" + +#: ../../include/text.php:891 ../../mod/viewcontacts.php:78 +msgid "View Contacts" +msgstr "Visualizza i contatti" + +#: ../../include/text.php:971 ../../mod/editpost.php:109 +#: ../../mod/notes.php:63 ../../mod/filer.php:31 msgid "Save" msgstr "Salva" -#: ../../mod/follow.php:27 -msgid "Contact added" -msgstr "Contatto aggiunto" +#: ../../include/text.php:1020 +msgid "poke" +msgstr "stuzzica" -#: ../../mod/item.php:113 -msgid "Unable to locate original post." -msgstr "Impossibile trovare il messaggio originale." +#: ../../include/text.php:1020 +msgid "poked" +msgstr "ha stuzzicato" -#: ../../mod/item.php:345 -msgid "Empty post discarded." -msgstr "Messaggio vuoto scartato." +#: ../../include/text.php:1021 +msgid "ping" +msgstr "invia un ping" -#: ../../mod/item.php:484 ../../mod/wall_upload.php:169 -#: ../../mod/wall_upload.php:178 ../../mod/wall_upload.php:185 -#: ../../include/Photo.php:916 ../../include/Photo.php:931 -#: ../../include/Photo.php:938 ../../include/Photo.php:960 -#: ../../include/message.php:144 -msgid "Wall Photos" -msgstr "Foto della bacheca" +#: ../../include/text.php:1021 +msgid "pinged" +msgstr "ha inviato un ping" -#: ../../mod/item.php:938 -msgid "System error. Post not saved." -msgstr "Errore di sistema. Messaggio non salvato." +#: ../../include/text.php:1022 +msgid "prod" +msgstr "pungola" -#: ../../mod/item.php:964 +#: ../../include/text.php:1022 +msgid "prodded" +msgstr "ha pungolato" + +#: ../../include/text.php:1023 +msgid "slap" +msgstr "schiaffeggia" + +#: ../../include/text.php:1023 +msgid "slapped" +msgstr "ha schiaffeggiato" + +#: ../../include/text.php:1024 +msgid "finger" +msgstr "tocca" + +#: ../../include/text.php:1024 +msgid "fingered" +msgstr "ha toccato" + +#: ../../include/text.php:1025 +msgid "rebuff" +msgstr "respingi" + +#: ../../include/text.php:1025 +msgid "rebuffed" +msgstr "ha respinto" + +#: ../../include/text.php:1039 +msgid "happy" +msgstr "felice" + +#: ../../include/text.php:1040 +msgid "sad" +msgstr "triste" + +#: ../../include/text.php:1041 +msgid "mellow" +msgstr "rilassato" + +#: ../../include/text.php:1042 +msgid "tired" +msgstr "stanco" + +#: ../../include/text.php:1043 +msgid "perky" +msgstr "vivace" + +#: ../../include/text.php:1044 +msgid "angry" +msgstr "arrabbiato" + +#: ../../include/text.php:1045 +msgid "stupified" +msgstr "stupefatto" + +#: ../../include/text.php:1046 +msgid "puzzled" +msgstr "confuso" + +#: ../../include/text.php:1047 +msgid "interested" +msgstr "interessato" + +#: ../../include/text.php:1048 +msgid "bitter" +msgstr "risentito" + +#: ../../include/text.php:1049 +msgid "cheerful" +msgstr "giocoso" + +#: ../../include/text.php:1050 +msgid "alive" +msgstr "vivo" + +#: ../../include/text.php:1051 +msgid "annoyed" +msgstr "annoiato" + +#: ../../include/text.php:1052 +msgid "anxious" +msgstr "ansioso" + +#: ../../include/text.php:1053 +msgid "cranky" +msgstr "irritabile" + +#: ../../include/text.php:1054 +msgid "disturbed" +msgstr "disturbato" + +#: ../../include/text.php:1055 +msgid "frustrated" +msgstr "frustato" + +#: ../../include/text.php:1056 +msgid "motivated" +msgstr "motivato" + +#: ../../include/text.php:1057 +msgid "relaxed" +msgstr "rilassato" + +#: ../../include/text.php:1058 +msgid "surprised" +msgstr "sorpreso" + +#: ../../include/text.php:1228 +msgid "Monday" +msgstr "Lunedì" + +#: ../../include/text.php:1228 +msgid "Tuesday" +msgstr "Martedì" + +#: ../../include/text.php:1228 +msgid "Wednesday" +msgstr "Mercoledì" + +#: ../../include/text.php:1228 +msgid "Thursday" +msgstr "Giovedì" + +#: ../../include/text.php:1228 +msgid "Friday" +msgstr "Venerdì" + +#: ../../include/text.php:1228 +msgid "Saturday" +msgstr "Sabato" + +#: ../../include/text.php:1228 +msgid "Sunday" +msgstr "Domenica" + +#: ../../include/text.php:1232 +msgid "January" +msgstr "Gennaio" + +#: ../../include/text.php:1232 +msgid "February" +msgstr "Febbraio" + +#: ../../include/text.php:1232 +msgid "March" +msgstr "Marzo" + +#: ../../include/text.php:1232 +msgid "April" +msgstr "Aprile" + +#: ../../include/text.php:1232 +msgid "May" +msgstr "Maggio" + +#: ../../include/text.php:1232 +msgid "June" +msgstr "Giugno" + +#: ../../include/text.php:1232 +msgid "July" +msgstr "Luglio" + +#: ../../include/text.php:1232 +msgid "August" +msgstr "Agosto" + +#: ../../include/text.php:1232 +msgid "September" +msgstr "Settembre" + +#: ../../include/text.php:1232 +msgid "October" +msgstr "Ottobre" + +#: ../../include/text.php:1232 +msgid "November" +msgstr "Novembre" + +#: ../../include/text.php:1232 +msgid "December" +msgstr "Dicembre" + +#: ../../include/text.php:1422 ../../mod/videos.php:301 +msgid "View Video" +msgstr "Guarda Video" + +#: ../../include/text.php:1454 +msgid "bytes" +msgstr "bytes" + +#: ../../include/text.php:1478 ../../include/text.php:1490 +msgid "Click to open/close" +msgstr "Clicca per aprire/chiudere" + +#: ../../include/text.php:1664 ../../include/text.php:1674 +#: ../../mod/events.php:335 +msgid "link to source" +msgstr "Collegamento all'originale" + +#: ../../include/text.php:1731 +msgid "Select an alternate language" +msgstr "Seleziona una diversa lingua" + +#: ../../include/text.php:1987 +msgid "activity" +msgstr "attività" + +#: ../../include/text.php:1989 ../../object/Item.php:389 +#: ../../object/Item.php:402 ../../mod/content.php:605 +msgid "comment" +msgid_plural "comments" +msgstr[0] "" +msgstr[1] "commento" + +#: ../../include/text.php:1990 +msgid "post" +msgstr "messaggio" + +#: ../../include/text.php:2158 +msgid "Item filed" +msgstr "Messaggio salvato" + +#: ../../include/auth.php:38 +msgid "Logged out." +msgstr "Uscita effettuata." + +#: ../../include/auth.php:112 ../../include/auth.php:175 +#: ../../mod/openid.php:93 +msgid "Login failed." +msgstr "Accesso fallito." + +#: ../../include/auth.php:128 ../../include/user.php:67 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "Abbiamo incontrato un problema mentre contattavamo il server OpenID che ci hai fornito. Controlla di averlo scritto giusto." + +#: ../../include/auth.php:128 ../../include/user.php:67 +msgid "The error message was:" +msgstr "Il messaggio riportato era:" + +#: ../../include/bbcode.php:433 ../../include/bbcode.php:1066 +#: ../../include/bbcode.php:1067 +msgid "Image/photo" +msgstr "Immagine/foto" + +#: ../../include/bbcode.php:531 +#, php-format +msgid "%2$s %3$s" +msgstr "%2$s %3$s" + +#: ../../include/bbcode.php:565 #, php-format msgid "" -"This message was sent to you by %s, a member of the Friendica social " -"network." -msgstr "Questo messaggio ti è stato inviato da %s, un membro del social network Friendica." +"%s wrote the following post" +msgstr "%s ha scritto il seguente messaggio" -#: ../../mod/item.php:966 -#, php-format -msgid "You may visit them online at %s" -msgstr "Puoi visitarli online su %s" +#: ../../include/bbcode.php:1030 ../../include/bbcode.php:1050 +msgid "$1 wrote:" +msgstr "$1 ha scritto:" -#: ../../mod/item.php:967 +#: ../../include/bbcode.php:1075 ../../include/bbcode.php:1076 +msgid "Encrypted content" +msgstr "Contenuto criptato" + +#: ../../include/security.php:22 +msgid "Welcome " +msgstr "Ciao" + +#: ../../include/security.php:23 +msgid "Please upload a profile photo." +msgstr "Carica una foto per il profilo." + +#: ../../include/security.php:26 +msgid "Welcome back " +msgstr "Ciao " + +#: ../../include/security.php:366 msgid "" -"Please contact the sender by replying to this post if you do not wish to " -"receive these messages." -msgstr "Contatta il mittente rispondendo a questo post se non vuoi ricevere questi messaggi." +"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 "Il token di sicurezza della form non era corretto. Probabilmente la form è rimasta aperta troppo a lunto (più di tre ore) prima di inviarla." -#: ../../mod/item.php:971 +#: ../../include/oembed.php:213 +msgid "Embedded content" +msgstr "Contenuto incorporato" + +#: ../../include/oembed.php:222 +msgid "Embedding disabled" +msgstr "Embed disabilitato" + +#: ../../include/profile_selectors.php:6 +msgid "Male" +msgstr "Maschio" + +#: ../../include/profile_selectors.php:6 +msgid "Female" +msgstr "Femmina" + +#: ../../include/profile_selectors.php:6 +msgid "Currently Male" +msgstr "Al momento maschio" + +#: ../../include/profile_selectors.php:6 +msgid "Currently Female" +msgstr "Al momento femmina" + +#: ../../include/profile_selectors.php:6 +msgid "Mostly Male" +msgstr "Prevalentemente maschio" + +#: ../../include/profile_selectors.php:6 +msgid "Mostly Female" +msgstr "Prevalentemente femmina" + +#: ../../include/profile_selectors.php:6 +msgid "Transgender" +msgstr "Transgender" + +#: ../../include/profile_selectors.php:6 +msgid "Intersex" +msgstr "Intersex" + +#: ../../include/profile_selectors.php:6 +msgid "Transsexual" +msgstr "Transessuale" + +#: ../../include/profile_selectors.php:6 +msgid "Hermaphrodite" +msgstr "Ermafrodito" + +#: ../../include/profile_selectors.php:6 +msgid "Neuter" +msgstr "Neutro" + +#: ../../include/profile_selectors.php:6 +msgid "Non-specific" +msgstr "Non specificato" + +#: ../../include/profile_selectors.php:6 +msgid "Other" +msgstr "Altro" + +#: ../../include/profile_selectors.php:6 +msgid "Undecided" +msgstr "Indeciso" + +#: ../../include/profile_selectors.php:23 +msgid "Males" +msgstr "Maschi" + +#: ../../include/profile_selectors.php:23 +msgid "Females" +msgstr "Femmine" + +#: ../../include/profile_selectors.php:23 +msgid "Gay" +msgstr "Gay" + +#: ../../include/profile_selectors.php:23 +msgid "Lesbian" +msgstr "Lesbica" + +#: ../../include/profile_selectors.php:23 +msgid "No Preference" +msgstr "Nessuna preferenza" + +#: ../../include/profile_selectors.php:23 +msgid "Bisexual" +msgstr "Bisessuale" + +#: ../../include/profile_selectors.php:23 +msgid "Autosexual" +msgstr "Autosessuale" + +#: ../../include/profile_selectors.php:23 +msgid "Abstinent" +msgstr "Astinente" + +#: ../../include/profile_selectors.php:23 +msgid "Virgin" +msgstr "Vergine" + +#: ../../include/profile_selectors.php:23 +msgid "Deviant" +msgstr "Deviato" + +#: ../../include/profile_selectors.php:23 +msgid "Fetish" +msgstr "Fetish" + +#: ../../include/profile_selectors.php:23 +msgid "Oodles" +msgstr "Un sacco" + +#: ../../include/profile_selectors.php:23 +msgid "Nonsexual" +msgstr "Asessuato" + +#: ../../include/profile_selectors.php:42 +msgid "Single" +msgstr "Single" + +#: ../../include/profile_selectors.php:42 +msgid "Lonely" +msgstr "Solitario" + +#: ../../include/profile_selectors.php:42 +msgid "Available" +msgstr "Disponibile" + +#: ../../include/profile_selectors.php:42 +msgid "Unavailable" +msgstr "Non disponibile" + +#: ../../include/profile_selectors.php:42 +msgid "Has crush" +msgstr "è cotto/a" + +#: ../../include/profile_selectors.php:42 +msgid "Infatuated" +msgstr "infatuato/a" + +#: ../../include/profile_selectors.php:42 +msgid "Dating" +msgstr "Disponibile a un incontro" + +#: ../../include/profile_selectors.php:42 +msgid "Unfaithful" +msgstr "Infedele" + +#: ../../include/profile_selectors.php:42 +msgid "Sex Addict" +msgstr "Sesso-dipendente" + +#: ../../include/profile_selectors.php:42 ../../include/user.php:289 +#: ../../include/user.php:293 +msgid "Friends" +msgstr "Amici" + +#: ../../include/profile_selectors.php:42 +msgid "Friends/Benefits" +msgstr "Amici con benefici" + +#: ../../include/profile_selectors.php:42 +msgid "Casual" +msgstr "Casual" + +#: ../../include/profile_selectors.php:42 +msgid "Engaged" +msgstr "Impegnato" + +#: ../../include/profile_selectors.php:42 +msgid "Married" +msgstr "Sposato" + +#: ../../include/profile_selectors.php:42 +msgid "Imaginarily married" +msgstr "immaginariamente sposato/a" + +#: ../../include/profile_selectors.php:42 +msgid "Partners" +msgstr "Partners" + +#: ../../include/profile_selectors.php:42 +msgid "Cohabiting" +msgstr "Coinquilino" + +#: ../../include/profile_selectors.php:42 +msgid "Common law" +msgstr "diritto comune" + +#: ../../include/profile_selectors.php:42 +msgid "Happy" +msgstr "Felice" + +#: ../../include/profile_selectors.php:42 +msgid "Not looking" +msgstr "Non guarda" + +#: ../../include/profile_selectors.php:42 +msgid "Swinger" +msgstr "Scambista" + +#: ../../include/profile_selectors.php:42 +msgid "Betrayed" +msgstr "Tradito" + +#: ../../include/profile_selectors.php:42 +msgid "Separated" +msgstr "Separato" + +#: ../../include/profile_selectors.php:42 +msgid "Unstable" +msgstr "Instabile" + +#: ../../include/profile_selectors.php:42 +msgid "Divorced" +msgstr "Divorziato" + +#: ../../include/profile_selectors.php:42 +msgid "Imaginarily divorced" +msgstr "immaginariamente divorziato/a" + +#: ../../include/profile_selectors.php:42 +msgid "Widowed" +msgstr "Vedovo" + +#: ../../include/profile_selectors.php:42 +msgid "Uncertain" +msgstr "Incerto" + +#: ../../include/profile_selectors.php:42 +msgid "It's complicated" +msgstr "E' complicato" + +#: ../../include/profile_selectors.php:42 +msgid "Don't care" +msgstr "Non interessa" + +#: ../../include/profile_selectors.php:42 +msgid "Ask me" +msgstr "Chiedimelo" + +#: ../../include/user.php:40 +msgid "An invitation is required." +msgstr "E' richiesto un invito." + +#: ../../include/user.php:45 +msgid "Invitation could not be verified." +msgstr "L'invito non puo' essere verificato." + +#: ../../include/user.php:53 +msgid "Invalid OpenID url" +msgstr "Url OpenID non valido" + +#: ../../include/user.php:74 +msgid "Please enter the required information." +msgstr "Inserisci le informazioni richieste." + +#: ../../include/user.php:88 +msgid "Please use a shorter name." +msgstr "Usa un nome più corto." + +#: ../../include/user.php:90 +msgid "Name too short." +msgstr "Il nome è troppo corto." + +#: ../../include/user.php:105 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "Questo non sembra essere il tuo nome completo (Nome Cognome)." + +#: ../../include/user.php:110 +msgid "Your email domain is not among those allowed on this site." +msgstr "Il dominio della tua email non è tra quelli autorizzati su questo sito." + +#: ../../include/user.php:113 +msgid "Not a valid email address." +msgstr "L'indirizzo email non è valido." + +#: ../../include/user.php:126 +msgid "Cannot use that email." +msgstr "Non puoi usare quell'email." + +#: ../../include/user.php:132 +msgid "" +"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " +"must also begin with a letter." +msgstr "Il tuo nome utente puo' contenere solo \"a-z\", \"0-9\", \"-\", e \"_\", e deve cominciare con una lettera." + +#: ../../include/user.php:138 ../../include/user.php:236 +msgid "Nickname is already registered. Please choose another." +msgstr "Nome utente già registrato. Scegline un altro." + +#: ../../include/user.php:148 +msgid "" +"Nickname was once registered here and may not be re-used. Please choose " +"another." +msgstr "Questo nome utente stato già registrato. Per favore, sceglierne uno nuovo." + +#: ../../include/user.php:164 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "ERRORE GRAVE: La generazione delle chiavi di sicurezza è fallita." + +#: ../../include/user.php:222 +msgid "An error occurred during registration. Please try again." +msgstr "C'è stato un errore durante la registrazione. Prova ancora." + +#: ../../include/user.php:257 +msgid "An error occurred creating your default profile. Please try again." +msgstr "C'è stato un errore nella creazione del tuo profilo. Prova ancora." + +#: ../../include/user.php:377 #, php-format -msgid "%s posted an update." -msgstr "%s ha inviato un aggiornamento." +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tThank you for registering at %2$s. Your account has been created.\n" +"\t" +msgstr "\nGentile %1$s,\nGrazie per esserti registrato su %2$s. Il tuo account è stato creato." + +#: ../../include/user.php:381 +#, php-format +msgid "" +"\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." +msgstr "\nI dettagli del tuo utente sono:\n Indirizzo del sito: %3$s\n Nome utente: %1$s\n Password: %5$s\n\nPuoi cambiare la tua password dalla pagina delle impostazioni del tuo account dopo esserti autenticato.\n\nPer favore, prenditi qualche momento per esaminare tutte le impostazioni presenti.\n\nPotresti voler aggiungere qualche informazione di base al tuo profilo predefinito (nella pagina \"Profili\"), così che le altre persone possano trovarti più facilmente.\n\nTi raccomandiamo di inserire il tuo nome completo, aggiungere una foto, aggiungere qualche parola chiave del profilo (molto utili per trovare nuovi contatti), e magari in quale nazione vivi, se non vuoi essere più specifico di così.\n\nNoi rispettiamo appieno la tua privacy, e nessuna di queste informazioni è necessaria o obbligatoria.\nSe sei nuovo e non conosci nessuno qui, possono aiutarti a trovare qualche nuovo e interessante contatto.\n\nGrazie e benvenuto su %2$s" + +#: ../../include/user.php:413 ../../mod/admin.php:838 +#, php-format +msgid "Registration details for %s" +msgstr "Dettagli della registrazione di %s" + +#: ../../include/acl_selectors.php:333 +msgid "Visible to everybody" +msgstr "Visibile a tutti" + +#: ../../object/Item.php:94 +msgid "This entry was edited" +msgstr "Questa voce è stata modificata" + +#: ../../object/Item.php:116 ../../mod/photos.php:1359 +#: ../../mod/content.php:620 +msgid "Private Message" +msgstr "Messaggio privato" + +#: ../../object/Item.php:120 ../../mod/settings.php:681 +#: ../../mod/content.php:728 +msgid "Edit" +msgstr "Modifica" + +#: ../../object/Item.php:133 ../../mod/content.php:763 +msgid "save to folder" +msgstr "salva nella cartella" + +#: ../../object/Item.php:195 ../../mod/content.php:753 +msgid "add star" +msgstr "aggiungi a speciali" + +#: ../../object/Item.php:196 ../../mod/content.php:754 +msgid "remove star" +msgstr "rimuovi da speciali" + +#: ../../object/Item.php:197 ../../mod/content.php:755 +msgid "toggle star status" +msgstr "Inverti stato preferito" + +#: ../../object/Item.php:200 ../../mod/content.php:758 +msgid "starred" +msgstr "preferito" + +#: ../../object/Item.php:208 +msgid "ignore thread" +msgstr "ignora la discussione" + +#: ../../object/Item.php:209 +msgid "unignore thread" +msgstr "non ignorare la discussione" + +#: ../../object/Item.php:210 +msgid "toggle ignore status" +msgstr "inverti stato \"Ignora\"" + +#: ../../object/Item.php:213 +msgid "ignored" +msgstr "ignorato" + +#: ../../object/Item.php:220 ../../mod/content.php:759 +msgid "add tag" +msgstr "aggiungi tag" + +#: ../../object/Item.php:231 ../../mod/photos.php:1542 +#: ../../mod/content.php:684 +msgid "I like this (toggle)" +msgstr "Mi piace (clic per cambiare)" + +#: ../../object/Item.php:231 ../../mod/content.php:684 +msgid "like" +msgstr "mi piace" + +#: ../../object/Item.php:232 ../../mod/photos.php:1543 +#: ../../mod/content.php:685 +msgid "I don't like this (toggle)" +msgstr "Non mi piace (clic per cambiare)" + +#: ../../object/Item.php:232 ../../mod/content.php:685 +msgid "dislike" +msgstr "non mi piace" + +#: ../../object/Item.php:234 ../../mod/content.php:687 +msgid "Share this" +msgstr "Condividi questo" + +#: ../../object/Item.php:234 ../../mod/content.php:687 +msgid "share" +msgstr "condividi" + +#: ../../object/Item.php:328 ../../mod/content.php:854 +msgid "to" +msgstr "a" + +#: ../../object/Item.php:329 +msgid "via" +msgstr "via" + +#: ../../object/Item.php:330 ../../mod/content.php:855 +msgid "Wall-to-Wall" +msgstr "Da bacheca a bacheca" + +#: ../../object/Item.php:331 ../../mod/content.php:856 +msgid "via Wall-To-Wall:" +msgstr "da bacheca a bacheca" + +#: ../../object/Item.php:387 ../../mod/content.php:603 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d commento" +msgstr[1] "%d commenti" + +#: ../../object/Item.php:675 ../../mod/photos.php:1562 +#: ../../mod/photos.php:1606 ../../mod/photos.php:1694 +#: ../../mod/content.php:707 +msgid "This is you" +msgstr "Questo sei tu" + +#: ../../object/Item.php:679 ../../mod/content.php:711 +msgid "Bold" +msgstr "Grassetto" + +#: ../../object/Item.php:680 ../../mod/content.php:712 +msgid "Italic" +msgstr "Corsivo" + +#: ../../object/Item.php:681 ../../mod/content.php:713 +msgid "Underline" +msgstr "Sottolineato" + +#: ../../object/Item.php:682 ../../mod/content.php:714 +msgid "Quote" +msgstr "Citazione" + +#: ../../object/Item.php:683 ../../mod/content.php:715 +msgid "Code" +msgstr "Codice" + +#: ../../object/Item.php:684 ../../mod/content.php:716 +msgid "Image" +msgstr "Immagine" + +#: ../../object/Item.php:685 ../../mod/content.php:717 +msgid "Link" +msgstr "Link" + +#: ../../object/Item.php:686 ../../mod/content.php:718 +msgid "Video" +msgstr "Video" + +#: ../../mod/attach.php:8 +msgid "Item not available." +msgstr "Oggetto non disponibile." + +#: ../../mod/attach.php:20 +msgid "Item was not found." +msgstr "Oggetto non trovato." + +#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "Numero giornaliero di messaggi per %s superato. Invio fallito." + +#: ../../mod/wallmessage.php:56 ../../mod/message.php:63 +msgid "No recipient selected." +msgstr "Nessun destinatario selezionato." + +#: ../../mod/wallmessage.php:59 +msgid "Unable to check your home location." +msgstr "Impossibile controllare la tua posizione di origine." + +#: ../../mod/wallmessage.php:62 ../../mod/message.php:70 +msgid "Message could not be sent." +msgstr "Il messaggio non puo' essere inviato." + +#: ../../mod/wallmessage.php:65 ../../mod/message.php:73 +msgid "Message collection failure." +msgstr "Errore recuperando il messaggio." + +#: ../../mod/wallmessage.php:68 ../../mod/message.php:76 +msgid "Message sent." +msgstr "Messaggio inviato." + +#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 +msgid "No recipient." +msgstr "Nessun destinatario." + +#: ../../mod/wallmessage.php:142 ../../mod/message.php:319 +msgid "Send Private Message" +msgstr "Invia un messaggio privato" + +#: ../../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 "Se vuoi che %s ti risponda, controlla che le tue impostazioni di privacy permettano la ricezione di messaggi privati da mittenti sconosciuti." + +#: ../../mod/wallmessage.php:144 ../../mod/message.php:320 +#: ../../mod/message.php:553 +msgid "To:" +msgstr "A:" + +#: ../../mod/wallmessage.php:145 ../../mod/message.php:325 +#: ../../mod/message.php:555 +msgid "Subject:" +msgstr "Oggetto:" + +#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134 +#: ../../mod/message.php:329 ../../mod/message.php:558 +msgid "Your message:" +msgstr "Il tuo messaggio:" #: ../../mod/group.php:29 msgid "Group created." @@ -982,386 +3270,72 @@ msgstr "Modifica gruppo" msgid "Members" msgstr "Membri" -#: ../../mod/apps.php:7 ../../index.php:212 -msgid "You must be logged in to use addons. " -msgstr "Devi aver effettuato il login per usare gli addons." +#: ../../mod/group.php:194 ../../mod/contacts.php:586 +msgid "All Contacts" +msgstr "Tutti i contatti" -#: ../../mod/apps.php:11 -msgid "Applications" -msgstr "Applicazioni" +#: ../../mod/group.php:224 ../../mod/profperm.php:105 +msgid "Click on a contact to add or remove." +msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo." -#: ../../mod/apps.php:14 -msgid "No installed applications." -msgstr "Nessuna applicazione installata." +#: ../../mod/delegate.php:101 +msgid "No potential page delegates located." +msgstr "Nessun potenziale delegato per la pagina è stato trovato." -#: ../../mod/dfrn_confirm.php:64 ../../mod/profiles.php:18 -#: ../../mod/profiles.php:133 ../../mod/profiles.php:179 -#: ../../mod/profiles.php:630 -msgid "Profile not found." -msgstr "Profilo non trovato." - -#: ../../mod/dfrn_confirm.php:120 ../../mod/fsuggest.php:20 -#: ../../mod/fsuggest.php:92 ../../mod/crepair.php:133 -msgid "Contact not found." -msgstr "Contatto non trovato." - -#: ../../mod/dfrn_confirm.php:121 +#: ../../mod/delegate.php:132 msgid "" -"This may occasionally happen if contact was requested by both persons and it" -" has already been approved." -msgstr "Questo puo' accadere occasionalmente se la richiesta di contatto era stata inviata da entrambe le persone e già approvata." +"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 "I Delegati sono in grando di gestire tutti gli aspetti di questa pagina, tranne per i settaggi di base dell'account. Non delegare il tuo account personale a nessuno di cui non ti fidi ciecamente." -#: ../../mod/dfrn_confirm.php:240 -msgid "Response from remote site was not understood." -msgstr "Errore di comunicazione con l'altro sito." +#: ../../mod/delegate.php:133 +msgid "Existing Page Managers" +msgstr "Gestori Pagina Esistenti" -#: ../../mod/dfrn_confirm.php:249 ../../mod/dfrn_confirm.php:254 -msgid "Unexpected response from remote site: " -msgstr "La risposta dell'altro sito non può essere gestita: " +#: ../../mod/delegate.php:135 +msgid "Existing Page Delegates" +msgstr "Delegati Pagina Esistenti" -#: ../../mod/dfrn_confirm.php:263 -msgid "Confirmation completed successfully." -msgstr "Conferma completata con successo." +#: ../../mod/delegate.php:137 +msgid "Potential Delegates" +msgstr "Delegati Potenziali" -#: ../../mod/dfrn_confirm.php:265 ../../mod/dfrn_confirm.php:279 -#: ../../mod/dfrn_confirm.php:286 -msgid "Remote site reported: " -msgstr "Il sito remoto riporta: " +#: ../../mod/delegate.php:139 ../../mod/tagrm.php:93 +msgid "Remove" +msgstr "Rimuovi" -#: ../../mod/dfrn_confirm.php:277 -msgid "Temporary failure. Please wait and try again." -msgstr "Problema temporaneo. Attendi e riprova." +#: ../../mod/delegate.php:140 +msgid "Add" +msgstr "Aggiungi" -#: ../../mod/dfrn_confirm.php:284 -msgid "Introduction failed or was revoked." -msgstr "La presentazione ha generato un errore o è stata revocata." - -#: ../../mod/dfrn_confirm.php:429 -msgid "Unable to set contact photo." -msgstr "Impossibile impostare la foto del contatto." - -#: ../../mod/dfrn_confirm.php:486 ../../include/conversation.php:172 -#: ../../include/diaspora.php:620 -#, php-format -msgid "%1$s is now friends with %2$s" -msgstr "%1$s e %2$s adesso sono amici" - -#: ../../mod/dfrn_confirm.php:571 -#, php-format -msgid "No user record found for '%s' " -msgstr "Nessun utente trovato '%s'" - -#: ../../mod/dfrn_confirm.php:581 -msgid "Our site encryption key is apparently messed up." -msgstr "La nostra chiave di criptazione del sito sembra essere corrotta." - -#: ../../mod/dfrn_confirm.php:592 -msgid "Empty site URL was provided or URL could not be decrypted by us." -msgstr "E' stato fornito un indirizzo vuoto o non possiamo decrittare l'indirizzo." - -#: ../../mod/dfrn_confirm.php:613 -msgid "Contact record was not found for you on our site." -msgstr "Il contatto non è stato trovato sul nostro sito." - -#: ../../mod/dfrn_confirm.php:627 -#, php-format -msgid "Site public key not available in contact record for URL %s." -msgstr "La chiave pubblica del sito non è disponibile per l'URL %s" - -#: ../../mod/dfrn_confirm.php:647 -msgid "" -"The ID provided by your system is a duplicate on our system. It should work " -"if you try again." -msgstr "L'ID fornito dal tuo sistema è duplicato sul nostro sistema. Se riprovi dovrebbe funzionare." - -#: ../../mod/dfrn_confirm.php:658 -msgid "Unable to set your contact credentials on our system." -msgstr "Impossibile impostare le credenziali del tuo contatto sul nostro sistema." - -#: ../../mod/dfrn_confirm.php:725 -msgid "Unable to update your contact profile details on our system" -msgstr "Impossibile aggiornare i dettagli del tuo contatto sul nostro sistema" - -#: ../../mod/dfrn_confirm.php:752 ../../mod/dfrn_request.php:717 -#: ../../include/items.php:4008 -msgid "[Name Withheld]" -msgstr "[Nome Nascosto]" - -#: ../../mod/dfrn_confirm.php:797 -#, php-format -msgid "%1$s has joined %2$s" -msgstr "%1$s si è unito a %2$s" - -#: ../../mod/profile.php:21 ../../boot.php:1458 -msgid "Requested profile is not available." -msgstr "Profilo richiesto non disponibile." - -#: ../../mod/profile.php:180 -msgid "Tips for New Members" -msgstr "Consigli per i Nuovi Utenti" - -#: ../../mod/videos.php:125 -msgid "No videos selected" -msgstr "Nessun video selezionato" - -#: ../../mod/videos.php:226 ../../mod/photos.php:1031 -msgid "Access to this item is restricted." -msgstr "Questo oggetto non è visibile a tutti." - -#: ../../mod/videos.php:301 ../../include/text.php:1405 -msgid "View Video" -msgstr "Guarda Video" - -#: ../../mod/videos.php:308 ../../mod/photos.php:1808 -msgid "View Album" -msgstr "Sfoglia l'album" - -#: ../../mod/videos.php:317 -msgid "Recent Videos" -msgstr "Video Recenti" - -#: ../../mod/videos.php:319 -msgid "Upload New Videos" -msgstr "Carica Nuovo Video" - -#: ../../mod/tagger.php:95 ../../include/conversation.php:266 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s ha taggato %3$s di %2$s con %4$s" - -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Suggerimento di amicizia inviato." - -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Suggerisci amici" - -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Suggerisci un amico a %s" - -#: ../../mod/lostpass.php:19 -msgid "No valid account found." -msgstr "Nessun account valido trovato." - -#: ../../mod/lostpass.php:35 -msgid "Password reset request issued. Check your email." -msgstr "La richiesta per reimpostare la password è stata inviata. Controlla la tua email." - -#: ../../mod/lostpass.php:42 -#, php-format -msgid "" -"\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." -msgstr "\nGentile %1$s,\n abbiamo ricevuto su \"%2$s\" una richiesta di resettare la password del tuo account. Per confermare questa richiesta, selezionate il link di conferma qui sotto o incollatelo nella barra indirizzo del vostro browser.\n\nSe NON hai richiesto questa modifica, NON selezionare il link e ignora o cancella questa email.\n\nLa tua password non verrà modificata a meno che non possiamo verificare che tu abbia effettivamente richiesto la modifica." - -#: ../../mod/lostpass.php:53 -#, php-format -msgid "" -"\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" -msgstr "\nSegui questo link per verificare la tua identità:\n\n%1$s\n\nRiceverai in un successivo messaggio la nuova password.\nPotrai cambiarla dalla pagina \"Impostazioni\" del tuo account dopo esserti autenticato.\n\nI dettagli del tuo account sono:\n Indirizzo del sito: %2$s\n Nome utente: %3$s" - -#: ../../mod/lostpass.php:72 -#, php-format -msgid "Password reset requested at %s" -msgstr "Richiesta reimpostazione password su %s" - -#: ../../mod/lostpass.php:92 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "La richiesta non può essere verificata. (Puoi averla già richiesta precendentemente). Reimpostazione password fallita." - -#: ../../mod/lostpass.php:109 ../../boot.php:1280 -msgid "Password Reset" -msgstr "Reimpostazione password" - -#: ../../mod/lostpass.php:110 -msgid "Your password has been reset as requested." -msgstr "La tua password è stata reimpostata come richiesto." - -#: ../../mod/lostpass.php:111 -msgid "Your new password is" -msgstr "La tua nuova password è" - -#: ../../mod/lostpass.php:112 -msgid "Save or copy your new password - and then" -msgstr "Salva o copia la tua nuova password, quindi" - -#: ../../mod/lostpass.php:113 -msgid "click here to login" -msgstr "clicca qui per entrare" - -#: ../../mod/lostpass.php:114 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Puoi cambiare la tua password dalla pagina Impostazioni dopo aver effettuato l'accesso." - -#: ../../mod/lostpass.php:125 -#, php-format -msgid "" -"\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" -msgstr "\nGentile %1$s,\n La tua password è stata modificata come richiesto.\nSalva questa password, o sostituiscila immediatamente con qualcosa che puoi ricordare." - -#: ../../mod/lostpass.php:131 -#, php-format -msgid "" -"\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" -msgstr "\nI dettagli del tuo account sono:\n\n Indirizzo del sito: %1$s\n Nome utente: %2$s\n Password: %3$s\n\nPuoi cambiare questa password dalla pagina \"Impostazioni\" del tuo account dopo esserti autenticato." - -#: ../../mod/lostpass.php:147 -#, php-format -msgid "Your password has been changed at %s" -msgstr "La tua password presso %s è stata cambiata" - -#: ../../mod/lostpass.php:159 -msgid "Forgot your Password?" -msgstr "Hai dimenticato la password?" - -#: ../../mod/lostpass.php:160 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Inserisci il tuo indirizzo email per reimpostare la password." - -#: ../../mod/lostpass.php:161 -msgid "Nickname or Email: " -msgstr "Nome utente o email: " - -#: ../../mod/lostpass.php:162 -msgid "Reset" -msgstr "Reimposta" - -#: ../../mod/like.php:166 ../../include/conversation.php:137 -#: ../../include/diaspora.php:2103 ../../view/theme/diabook/theme.php:480 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "A %1$s piace %3$s di %2$s" - -#: ../../mod/like.php:168 ../../include/conversation.php:140 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "A %1$s non piace %3$s di %2$s" - -#: ../../mod/ping.php:240 -msgid "{0} wants to be your friend" -msgstr "{0} vuole essere tuo amico" - -#: ../../mod/ping.php:245 -msgid "{0} sent you a message" -msgstr "{0} ti ha inviato un messaggio" - -#: ../../mod/ping.php:250 -msgid "{0} requested registration" -msgstr "{0} chiede la registrazione" - -#: ../../mod/ping.php:256 -#, php-format -msgid "{0} commented %s's post" -msgstr "{0} ha commentato il post di %s" - -#: ../../mod/ping.php:261 -#, php-format -msgid "{0} liked %s's post" -msgstr "a {0} piace il post di %s" - -#: ../../mod/ping.php:266 -#, php-format -msgid "{0} disliked %s's post" -msgstr "a {0} non piace il post di %s" - -#: ../../mod/ping.php:271 -#, php-format -msgid "{0} is now friends with %s" -msgstr "{0} ora è amico di %s" - -#: ../../mod/ping.php:276 -msgid "{0} posted" -msgstr "{0} ha inviato un nuovo messaggio" - -#: ../../mod/ping.php:281 -#, php-format -msgid "{0} tagged %s's post with #%s" -msgstr "{0} ha taggato il post di %s con #%s" - -#: ../../mod/ping.php:287 -msgid "{0} mentioned you in a post" -msgstr "{0} ti ha citato in un post" - -#: ../../mod/viewcontacts.php:41 -msgid "No contacts." -msgstr "Nessun contatto." - -#: ../../mod/viewcontacts.php:78 ../../include/text.php:876 -msgid "View Contacts" -msgstr "Visualizza i contatti" +#: ../../mod/delegate.php:141 +msgid "No entries." +msgstr "Nessun articolo." #: ../../mod/notifications.php:26 msgid "Invalid request identifier." msgstr "L'identificativo della richiesta non è valido." #: ../../mod/notifications.php:35 ../../mod/notifications.php:165 -#: ../../mod/notifications.php:211 +#: ../../mod/notifications.php:215 msgid "Discard" msgstr "Scarta" +#: ../../mod/notifications.php:51 ../../mod/notifications.php:164 +#: ../../mod/notifications.php:214 ../../mod/contacts.php:455 +#: ../../mod/contacts.php:519 ../../mod/contacts.php:731 +msgid "Ignore" +msgstr "Ignora" + #: ../../mod/notifications.php:78 msgid "System" msgstr "Sistema" -#: ../../mod/notifications.php:83 ../../include/nav.php:145 -msgid "Network" -msgstr "Rete" - #: ../../mod/notifications.php:88 ../../mod/network.php:371 msgid "Personal" msgstr "Personale" -#: ../../mod/notifications.php:93 ../../include/nav.php:105 -#: ../../include/nav.php:148 ../../view/theme/diabook/theme.php:123 -msgid "Home" -msgstr "Home" - -#: ../../mod/notifications.php:98 ../../include/nav.php:154 -msgid "Introductions" -msgstr "Presentazioni" - #: ../../mod/notifications.php:122 msgid "Show Ignored Requests" msgstr "Mostra richieste ignorate" @@ -1370,7 +3344,7 @@ msgstr "Mostra richieste ignorate" msgid "Hide Ignored Requests" msgstr "Nascondi richieste ignorate" -#: ../../mod/notifications.php:149 ../../mod/notifications.php:195 +#: ../../mod/notifications.php:149 ../../mod/notifications.php:199 msgid "Notification type: " msgstr "Tipo di notifica: " @@ -1383,15 +3357,20 @@ msgstr "Amico suggerito" msgid "suggested by %s" msgstr "sugerito da %s" -#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 +#: ../../mod/notifications.php:157 ../../mod/notifications.php:208 +#: ../../mod/contacts.php:525 +msgid "Hide this contact from others" +msgstr "Nascondi questo contatto agli altri" + +#: ../../mod/notifications.php:158 ../../mod/notifications.php:209 msgid "Post a new friend activity" msgstr "Invia una attività \"è ora amico con\"" -#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 +#: ../../mod/notifications.php:158 ../../mod/notifications.php:209 msgid "if applicable" msgstr "se applicabile" -#: ../../mod/notifications.php:161 ../../mod/notifications.php:208 +#: ../../mod/notifications.php:161 ../../mod/notifications.php:212 #: ../../mod/admin.php:1005 msgid "Approve" msgstr "Approva" @@ -1408,403 +3387,1311 @@ msgstr "si" msgid "no" msgstr "no" -#: ../../mod/notifications.php:188 -msgid "Approve as: " -msgstr "Approva come: " +#: ../../mod/notifications.php:182 +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 "La connessione dovrà essere bidirezionale o no? \"Amici\" implica che tu permetti al contatto di leggere i tuoi post e tu leggerai i suoi. \"Fan/Ammiratore\" significa che permetti al contatto di leggere i tuoi posto ma tu non vuoi leggere i suoi. Approva come:" -#: ../../mod/notifications.php:189 +#: ../../mod/notifications.php:185 +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 "La connessione dovrà essere bidirezionale o no? \"Amici\" implica che tu permetti al contatto di leggere i tuoi post e tu leggerai i suoi. \"Condivisore\" significa che permetti al contatto di leggere i tuoi posto ma tu non vuoi leggere i suoi. Approva come:" + +#: ../../mod/notifications.php:193 msgid "Friend" msgstr "Amico" -#: ../../mod/notifications.php:190 +#: ../../mod/notifications.php:194 msgid "Sharer" msgstr "Condivisore" -#: ../../mod/notifications.php:190 +#: ../../mod/notifications.php:194 msgid "Fan/Admirer" msgstr "Fan/Ammiratore" -#: ../../mod/notifications.php:196 +#: ../../mod/notifications.php:200 msgid "Friend/Connect Request" msgstr "Richiesta amicizia/connessione" -#: ../../mod/notifications.php:196 +#: ../../mod/notifications.php:200 msgid "New Follower" msgstr "Qualcuno inizia a seguirti" -#: ../../mod/notifications.php:217 +#: ../../mod/notifications.php:221 msgid "No introductions." msgstr "Nessuna presentazione." -#: ../../mod/notifications.php:220 ../../include/nav.php:155 -msgid "Notifications" -msgstr "Notifiche" - -#: ../../mod/notifications.php:258 ../../mod/notifications.php:387 -#: ../../mod/notifications.php:478 +#: ../../mod/notifications.php:262 ../../mod/notifications.php:391 +#: ../../mod/notifications.php:482 #, php-format msgid "%s liked %s's post" msgstr "a %s è piaciuto il messaggio di %s" -#: ../../mod/notifications.php:268 ../../mod/notifications.php:397 -#: ../../mod/notifications.php:488 +#: ../../mod/notifications.php:272 ../../mod/notifications.php:401 +#: ../../mod/notifications.php:492 #, php-format msgid "%s disliked %s's post" msgstr "a %s non è piaciuto il messaggio di %s" -#: ../../mod/notifications.php:283 ../../mod/notifications.php:412 -#: ../../mod/notifications.php:503 +#: ../../mod/notifications.php:287 ../../mod/notifications.php:416 +#: ../../mod/notifications.php:507 #, php-format msgid "%s is now friends with %s" msgstr "%s è ora amico di %s" -#: ../../mod/notifications.php:290 ../../mod/notifications.php:419 +#: ../../mod/notifications.php:294 ../../mod/notifications.php:423 #, php-format msgid "%s created a new post" msgstr "%s a creato un nuovo messaggio" -#: ../../mod/notifications.php:291 ../../mod/notifications.php:420 -#: ../../mod/notifications.php:513 +#: ../../mod/notifications.php:295 ../../mod/notifications.php:424 +#: ../../mod/notifications.php:517 #, php-format msgid "%s commented on %s's post" msgstr "%s ha commentato il messaggio di %s" -#: ../../mod/notifications.php:306 +#: ../../mod/notifications.php:310 msgid "No more network notifications." msgstr "Nessuna nuova." -#: ../../mod/notifications.php:310 +#: ../../mod/notifications.php:314 msgid "Network Notifications" msgstr "Notifiche dalla rete" -#: ../../mod/notifications.php:336 ../../mod/notify.php:75 +#: ../../mod/notifications.php:340 ../../mod/notify.php:75 msgid "No more system notifications." msgstr "Nessuna nuova notifica di sistema." -#: ../../mod/notifications.php:340 ../../mod/notify.php:79 +#: ../../mod/notifications.php:344 ../../mod/notify.php:79 msgid "System Notifications" msgstr "Notifiche di sistema" -#: ../../mod/notifications.php:435 +#: ../../mod/notifications.php:439 msgid "No more personal notifications." msgstr "Nessuna nuova." -#: ../../mod/notifications.php:439 +#: ../../mod/notifications.php:443 msgid "Personal Notifications" msgstr "Notifiche personali" -#: ../../mod/notifications.php:520 +#: ../../mod/notifications.php:524 msgid "No more home notifications." msgstr "Nessuna nuova." -#: ../../mod/notifications.php:524 +#: ../../mod/notifications.php:528 msgid "Home Notifications" msgstr "Notifiche bacheca" -#: ../../mod/babel.php:17 -msgid "Source (bbcode) text:" -msgstr "Testo sorgente (bbcode):" +#: ../../mod/hcard.php:10 +msgid "No profile" +msgstr "Nessun profilo" -#: ../../mod/babel.php:23 -msgid "Source (Diaspora) text to convert to BBcode:" -msgstr "Testo sorgente (da Diaspora) da convertire in BBcode:" +#: ../../mod/settings.php:34 ../../mod/photos.php:80 +msgid "everybody" +msgstr "tutti" -#: ../../mod/babel.php:31 -msgid "Source input: " -msgstr "Sorgente:" +#: ../../mod/settings.php:41 ../../mod/admin.php:1016 +msgid "Account" +msgstr "Account" -#: ../../mod/babel.php:35 -msgid "bb2html (raw HTML): " -msgstr "bb2html (HTML grezzo):" +#: ../../mod/settings.php:46 +msgid "Additional features" +msgstr "Funzionalità aggiuntive" -#: ../../mod/babel.php:39 -msgid "bb2html: " -msgstr "bb2html:" +#: ../../mod/settings.php:51 +msgid "Display" +msgstr "Visualizzazione" -#: ../../mod/babel.php:43 -msgid "bb2html2bb: " -msgstr "bb2html2bb: " +#: ../../mod/settings.php:57 ../../mod/settings.php:785 +msgid "Social Networks" +msgstr "Social Networks" -#: ../../mod/babel.php:47 -msgid "bb2md: " -msgstr "bb2md: " +#: ../../mod/settings.php:62 ../../mod/admin.php:106 ../../mod/admin.php:1102 +#: ../../mod/admin.php:1155 +msgid "Plugins" +msgstr "Plugin" -#: ../../mod/babel.php:51 -msgid "bb2md2html: " -msgstr "bb2md2html: " +#: ../../mod/settings.php:72 +msgid "Connected apps" +msgstr "Applicazioni collegate" -#: ../../mod/babel.php:55 -msgid "bb2dia2bb: " -msgstr "bb2dia2bb: " +#: ../../mod/settings.php:77 ../../mod/uexport.php:85 +msgid "Export personal data" +msgstr "Esporta dati personali" -#: ../../mod/babel.php:59 -msgid "bb2md2html2bb: " -msgstr "bb2md2html2bb: " +#: ../../mod/settings.php:82 +msgid "Remove account" +msgstr "Rimuovi account" -#: ../../mod/babel.php:69 -msgid "Source input (Diaspora format): " -msgstr "Sorgente (formato Diaspora):" +#: ../../mod/settings.php:134 +msgid "Missing some important data!" +msgstr "Mancano alcuni dati importanti!" -#: ../../mod/babel.php:74 -msgid "diaspora2bb: " -msgstr "diaspora2bb: " +#: ../../mod/settings.php:137 ../../mod/settings.php:645 +#: ../../mod/contacts.php:729 +msgid "Update" +msgstr "Aggiorna" -#: ../../mod/navigation.php:20 ../../include/nav.php:34 -msgid "Nothing new here" -msgstr "Niente di nuovo qui" +#: ../../mod/settings.php:243 +msgid "Failed to connect with email account using the settings provided." +msgstr "Impossibile collegarsi all'account email con i parametri forniti." -#: ../../mod/navigation.php:24 ../../include/nav.php:38 -msgid "Clear notifications" -msgstr "Pulisci le notifiche" +#: ../../mod/settings.php:248 +msgid "Email settings updated." +msgstr "Impostazioni e-mail aggiornate." -#: ../../mod/message.php:9 ../../include/nav.php:164 -msgid "New Message" -msgstr "Nuovo messaggio" +#: ../../mod/settings.php:263 +msgid "Features updated" +msgstr "Funzionalità aggiornate" -#: ../../mod/message.php:63 ../../mod/wallmessage.php:56 -msgid "No recipient selected." -msgstr "Nessun destinatario selezionato." +#: ../../mod/settings.php:326 +msgid "Relocate message has been send to your contacts" +msgstr "Il messaggio di trasloco è stato inviato ai tuoi contatti" -#: ../../mod/message.php:67 -msgid "Unable to locate contact information." -msgstr "Impossibile trovare le informazioni del contatto." +#: ../../mod/settings.php:340 +msgid "Passwords do not match. Password unchanged." +msgstr "Le password non corrispondono. Password non cambiata." -#: ../../mod/message.php:70 ../../mod/wallmessage.php:62 -msgid "Message could not be sent." -msgstr "Il messaggio non puo' essere inviato." +#: ../../mod/settings.php:345 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Le password non possono essere vuote. Password non cambiata." -#: ../../mod/message.php:73 ../../mod/wallmessage.php:65 -msgid "Message collection failure." -msgstr "Errore recuperando il messaggio." +#: ../../mod/settings.php:353 +msgid "Wrong password." +msgstr "Password sbagliata." -#: ../../mod/message.php:76 ../../mod/wallmessage.php:68 -msgid "Message sent." -msgstr "Messaggio inviato." +#: ../../mod/settings.php:364 +msgid "Password changed." +msgstr "Password cambiata." -#: ../../mod/message.php:182 ../../include/nav.php:161 -msgid "Messages" -msgstr "Messaggi" +#: ../../mod/settings.php:366 +msgid "Password update failed. Please try again." +msgstr "Aggiornamento password fallito. Prova ancora." -#: ../../mod/message.php:207 -msgid "Do you really want to delete this message?" -msgstr "Vuoi veramente cancellare questo messaggio?" +#: ../../mod/settings.php:433 +msgid " Please use a shorter name." +msgstr " Usa un nome più corto." -#: ../../mod/message.php:227 -msgid "Message deleted." -msgstr "Messaggio eliminato." +#: ../../mod/settings.php:435 +msgid " Name too short." +msgstr " Nome troppo corto." -#: ../../mod/message.php:258 -msgid "Conversation removed." -msgstr "Conversazione rimossa." +#: ../../mod/settings.php:444 +msgid "Wrong Password" +msgstr "Password Sbagliata" -#: ../../mod/message.php:283 ../../mod/message.php:291 -#: ../../mod/message.php:466 ../../mod/message.php:474 -#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135 -#: ../../include/conversation.php:1002 ../../include/conversation.php:1020 -msgid "Please enter a link URL:" -msgstr "Inserisci l'indirizzo del link:" +#: ../../mod/settings.php:449 +msgid " Not valid email." +msgstr " Email non valida." -#: ../../mod/message.php:319 ../../mod/wallmessage.php:142 -msgid "Send Private Message" -msgstr "Invia un messaggio privato" +#: ../../mod/settings.php:455 +msgid " Cannot change to that email." +msgstr "Non puoi usare quella email." -#: ../../mod/message.php:320 ../../mod/message.php:553 -#: ../../mod/wallmessage.php:144 -msgid "To:" -msgstr "A:" +#: ../../mod/settings.php:511 +msgid "Private forum has no privacy permissions. Using default privacy group." +msgstr "Il forum privato non ha permessi di privacy. Uso il gruppo di privacy predefinito." -#: ../../mod/message.php:325 ../../mod/message.php:555 -#: ../../mod/wallmessage.php:145 -msgid "Subject:" -msgstr "Oggetto:" +#: ../../mod/settings.php:515 +msgid "Private forum has no privacy permissions and no default privacy group." +msgstr "Il gruppo privato non ha permessi di privacy e nessun gruppo di privacy predefinito." -#: ../../mod/message.php:329 ../../mod/message.php:558 -#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134 -msgid "Your message:" -msgstr "Il tuo messaggio:" +#: ../../mod/settings.php:545 +msgid "Settings updated." +msgstr "Impostazioni aggiornate." -#: ../../mod/message.php:332 ../../mod/message.php:562 -#: ../../mod/wallmessage.php:154 ../../mod/editpost.php:110 -#: ../../include/conversation.php:1091 -msgid "Upload photo" -msgstr "Carica foto" +#: ../../mod/settings.php:618 ../../mod/settings.php:644 +#: ../../mod/settings.php:680 +msgid "Add application" +msgstr "Aggiungi applicazione" -#: ../../mod/message.php:333 ../../mod/message.php:563 -#: ../../mod/wallmessage.php:155 ../../mod/editpost.php:114 -#: ../../include/conversation.php:1095 -msgid "Insert web link" -msgstr "Inserisci link" +#: ../../mod/settings.php:619 ../../mod/settings.php:729 +#: ../../mod/settings.php:803 ../../mod/settings.php:885 +#: ../../mod/settings.php:1118 ../../mod/admin.php:620 +#: ../../mod/admin.php:1156 ../../mod/admin.php:1358 ../../mod/admin.php:1445 +msgid "Save Settings" +msgstr "Salva Impostazioni" -#: ../../mod/message.php:334 ../../mod/message.php:565 -#: ../../mod/content.php:499 ../../mod/content.php:883 -#: ../../mod/wallmessage.php:156 ../../mod/editpost.php:124 -#: ../../mod/photos.php:1545 ../../object/Item.php:364 -#: ../../include/conversation.php:692 ../../include/conversation.php:1109 -msgid "Please wait" -msgstr "Attendi" - -#: ../../mod/message.php:371 -msgid "No messages." -msgstr "Nessun messaggio." - -#: ../../mod/message.php:378 -#, php-format -msgid "Unknown sender - %s" -msgstr "Mittente sconosciuto - %s" - -#: ../../mod/message.php:381 -#, php-format -msgid "You and %s" -msgstr "Tu e %s" - -#: ../../mod/message.php:384 -#, php-format -msgid "%s and You" -msgstr "%s e Tu" - -#: ../../mod/message.php:405 ../../mod/message.php:546 -msgid "Delete conversation" -msgstr "Elimina la conversazione" - -#: ../../mod/message.php:408 -msgid "D, d M Y - g:i A" -msgstr "D d M Y - G:i" - -#: ../../mod/message.php:411 -#, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "%d messaggio" -msgstr[1] "%d messaggi" - -#: ../../mod/message.php:450 -msgid "Message not available." -msgstr "Messaggio non disponibile." - -#: ../../mod/message.php:520 -msgid "Delete message" -msgstr "Elimina il messaggio" - -#: ../../mod/message.php:548 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Nessuna comunicazione sicura disponibile, Potresti essere in grado di rispondere dalla pagina del profilo del mittente." - -#: ../../mod/message.php:552 -msgid "Send Reply" -msgstr "Invia la risposta" - -#: ../../mod/update_display.php:22 ../../mod/update_community.php:18 -#: ../../mod/update_notes.php:37 ../../mod/update_profile.php:41 -#: ../../mod/update_network.php:25 -msgid "[Embedded content - reload page to view]" -msgstr "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]" - -#: ../../mod/crepair.php:106 -msgid "Contact settings applied." -msgstr "Contatto modificato." - -#: ../../mod/crepair.php:108 -msgid "Contact update failed." -msgstr "Le modifiche al contatto non sono state salvate." - -#: ../../mod/crepair.php:139 -msgid "Repair Contact Settings" -msgstr "Ripara il contatto" - -#: ../../mod/crepair.php:141 -msgid "" -"WARNING: This is highly advanced and if you enter incorrect" -" information your communications with this contact may stop working." -msgstr "ATTENZIONE: Queste sono impostazioni avanzate e se inserisci informazioni errate le tue comunicazioni con questo contatto potrebbero non funzionare più" - -#: ../../mod/crepair.php:142 -msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." -msgstr "Usa ora il tasto 'Indietro' del tuo browser se non sei sicuro di cosa fare in questa pagina." - -#: ../../mod/crepair.php:148 -msgid "Return to contact editor" -msgstr "Ritorna alla modifica contatto" - -#: ../../mod/crepair.php:159 ../../mod/crepair.php:161 -msgid "No mirroring" -msgstr "Non duplicare" - -#: ../../mod/crepair.php:159 -msgid "Mirror as forwarded posting" -msgstr "Duplica come messaggi ricondivisi" - -#: ../../mod/crepair.php:159 ../../mod/crepair.php:161 -msgid "Mirror as my own posting" -msgstr "Duplica come miei messaggi" - -#: ../../mod/crepair.php:165 ../../mod/admin.php:1003 ../../mod/admin.php:1015 -#: ../../mod/admin.php:1016 ../../mod/admin.php:1029 -#: ../../mod/settings.php:616 ../../mod/settings.php:642 +#: ../../mod/settings.php:621 ../../mod/settings.php:647 +#: ../../mod/admin.php:1003 ../../mod/admin.php:1015 ../../mod/admin.php:1016 +#: ../../mod/admin.php:1029 ../../mod/crepair.php:165 msgid "Name" msgstr "Nome" -#: ../../mod/crepair.php:166 -msgid "Account Nickname" -msgstr "Nome utente" +#: ../../mod/settings.php:622 ../../mod/settings.php:648 +msgid "Consumer Key" +msgstr "Consumer Key" -#: ../../mod/crepair.php:167 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@TagName - al posto del nome utente" +#: ../../mod/settings.php:623 ../../mod/settings.php:649 +msgid "Consumer Secret" +msgstr "Consumer Secret" -#: ../../mod/crepair.php:168 -msgid "Account URL" -msgstr "URL dell'utente" +#: ../../mod/settings.php:624 ../../mod/settings.php:650 +msgid "Redirect" +msgstr "Redirect" -#: ../../mod/crepair.php:169 -msgid "Friend Request URL" -msgstr "URL Richiesta Amicizia" +#: ../../mod/settings.php:625 ../../mod/settings.php:651 +msgid "Icon url" +msgstr "Url icona" -#: ../../mod/crepair.php:170 -msgid "Friend Confirm URL" -msgstr "URL Conferma Amicizia" +#: ../../mod/settings.php:636 +msgid "You can't edit this application." +msgstr "Non puoi modificare questa applicazione." -#: ../../mod/crepair.php:171 -msgid "Notification Endpoint URL" -msgstr "URL Notifiche" +#: ../../mod/settings.php:679 +msgid "Connected Apps" +msgstr "Applicazioni Collegate" -#: ../../mod/crepair.php:172 -msgid "Poll/Feed URL" -msgstr "URL Feed" +#: ../../mod/settings.php:683 +msgid "Client key starts with" +msgstr "Chiave del client inizia con" -#: ../../mod/crepair.php:173 -msgid "New photo from this URL" -msgstr "Nuova foto da questo URL" +#: ../../mod/settings.php:684 +msgid "No name" +msgstr "Nessun nome" -#: ../../mod/crepair.php:174 -msgid "Remote Self" -msgstr "Io remoto" +#: ../../mod/settings.php:685 +msgid "Remove authorization" +msgstr "Rimuovi l'autorizzazione" -#: ../../mod/crepair.php:176 -msgid "Mirror postings from this contact" -msgstr "Ripeti i messaggi di questo contatto" +#: ../../mod/settings.php:697 +msgid "No Plugin settings configured" +msgstr "Nessun plugin ha impostazioni modificabili" -#: ../../mod/crepair.php:176 +#: ../../mod/settings.php:705 +msgid "Plugin Settings" +msgstr "Impostazioni plugin" + +#: ../../mod/settings.php:719 +msgid "Off" +msgstr "Spento" + +#: ../../mod/settings.php:719 +msgid "On" +msgstr "Acceso" + +#: ../../mod/settings.php:727 +msgid "Additional Features" +msgstr "Funzionalità aggiuntive" + +#: ../../mod/settings.php:741 ../../mod/settings.php:742 +#, php-format +msgid "Built-in support for %s connectivity is %s" +msgstr "Il supporto integrato per la connettività con %s è %s" + +#: ../../mod/settings.php:741 ../../mod/settings.php:742 +msgid "enabled" +msgstr "abilitato" + +#: ../../mod/settings.php:741 ../../mod/settings.php:742 +msgid "disabled" +msgstr "disabilitato" + +#: ../../mod/settings.php:742 +msgid "StatusNet" +msgstr "StatusNet" + +#: ../../mod/settings.php:778 +msgid "Email access is disabled on this site." +msgstr "L'accesso email è disabilitato su questo sito." + +#: ../../mod/settings.php:790 +msgid "Email/Mailbox Setup" +msgstr "Impostazioni email" + +#: ../../mod/settings.php:791 msgid "" -"Mark this contact as remote_self, this will cause friendica to repost new " -"entries from this contact." -msgstr "Imposta questo contatto come 'io remoto', questo farà si che friendica reinvii i nuovi messaggi da questo contatto." +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "Se vuoi comunicare con i contatti email usando questo servizio, specifica come collegarti alla tua casella di posta. (opzionale)" -#: ../../mod/bookmarklet.php:12 ../../boot.php:1266 ../../include/nav.php:92 -msgid "Login" -msgstr "Accedi" +#: ../../mod/settings.php:792 +msgid "Last successful email check:" +msgstr "Ultimo controllo email eseguito con successo:" -#: ../../mod/bookmarklet.php:41 -msgid "The post was created" -msgstr "" +#: ../../mod/settings.php:794 +msgid "IMAP server name:" +msgstr "Nome server IMAP:" -#: ../../mod/viewsrc.php:7 -msgid "Access denied." +#: ../../mod/settings.php:795 +msgid "IMAP port:" +msgstr "Porta IMAP:" + +#: ../../mod/settings.php:796 +msgid "Security:" +msgstr "Sicurezza:" + +#: ../../mod/settings.php:796 ../../mod/settings.php:801 +msgid "None" +msgstr "Nessuna" + +#: ../../mod/settings.php:797 +msgid "Email login name:" +msgstr "Nome utente email:" + +#: ../../mod/settings.php:798 +msgid "Email password:" +msgstr "Password email:" + +#: ../../mod/settings.php:799 +msgid "Reply-to address:" +msgstr "Indirizzo di risposta:" + +#: ../../mod/settings.php:800 +msgid "Send public posts to all email contacts:" +msgstr "Invia i messaggi pubblici ai contatti email:" + +#: ../../mod/settings.php:801 +msgid "Action after import:" +msgstr "Azione post importazione:" + +#: ../../mod/settings.php:801 +msgid "Mark as seen" +msgstr "Segna come letto" + +#: ../../mod/settings.php:801 +msgid "Move to folder" +msgstr "Sposta nella cartella" + +#: ../../mod/settings.php:802 +msgid "Move to folder:" +msgstr "Sposta nella cartella:" + +#: ../../mod/settings.php:833 ../../mod/admin.php:545 +msgid "No special theme for mobile devices" +msgstr "Nessun tema speciale per i dispositivi mobili" + +#: ../../mod/settings.php:883 +msgid "Display Settings" +msgstr "Impostazioni Grafiche" + +#: ../../mod/settings.php:889 ../../mod/settings.php:904 +msgid "Display Theme:" +msgstr "Tema:" + +#: ../../mod/settings.php:890 +msgid "Mobile Theme:" +msgstr "Tema mobile:" + +#: ../../mod/settings.php:891 +msgid "Update browser every xx seconds" +msgstr "Aggiorna il browser ogni x secondi" + +#: ../../mod/settings.php:891 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Minimo 10 secondi, nessun limite massimo" + +#: ../../mod/settings.php:892 +msgid "Number of items to display per page:" +msgstr "Numero di elementi da mostrare per pagina:" + +#: ../../mod/settings.php:892 ../../mod/settings.php:893 +msgid "Maximum of 100 items" +msgstr "Massimo 100 voci" + +#: ../../mod/settings.php:893 +msgid "Number of items to display per page when viewed from mobile device:" +msgstr "Numero di voci da visualizzare per pagina quando si utilizza un dispositivo mobile:" + +#: ../../mod/settings.php:894 +msgid "Don't show emoticons" +msgstr "Non mostrare le emoticons" + +#: ../../mod/settings.php:895 +msgid "Don't show notices" +msgstr "Non mostrare gli avvisi" + +#: ../../mod/settings.php:896 +msgid "Infinite scroll" +msgstr "Scroll infinito" + +#: ../../mod/settings.php:897 +msgid "Automatic updates only at the top of the network page" +msgstr "Aggiornamenti automatici solo in cima alla pagina \"rete\"" + +#: ../../mod/settings.php:974 +msgid "User Types" +msgstr "Tipi di Utenti" + +#: ../../mod/settings.php:975 +msgid "Community Types" +msgstr "Tipi di Comunità" + +#: ../../mod/settings.php:976 +msgid "Normal Account Page" +msgstr "Pagina Account Normale" + +#: ../../mod/settings.php:977 +msgid "This account is a normal personal profile" +msgstr "Questo account è un normale profilo personale" + +#: ../../mod/settings.php:980 +msgid "Soapbox Page" +msgstr "Pagina Sandbox" + +#: ../../mod/settings.php:981 +msgid "Automatically approve all connection/friend requests as read-only fans" +msgstr "Chi richiede la connessione/amicizia sarà accettato automaticamente come fan che potrà solamente leggere la bacheca" + +#: ../../mod/settings.php:984 +msgid "Community Forum/Celebrity Account" +msgstr "Account Celebrità/Forum comunitario" + +#: ../../mod/settings.php:985 +msgid "" +"Automatically approve all connection/friend requests as read-write fans" +msgstr "Chi richiede la connessione/amicizia sarà accettato automaticamente come fan che potrà leggere e scrivere sulla bacheca" + +#: ../../mod/settings.php:988 +msgid "Automatic Friend Page" +msgstr "Pagina con amicizia automatica" + +#: ../../mod/settings.php:989 +msgid "Automatically approve all connection/friend requests as friends" +msgstr "Chi richiede la connessione/amicizia sarà accettato automaticamente come amico" + +#: ../../mod/settings.php:992 +msgid "Private Forum [Experimental]" +msgstr "Forum privato [sperimentale]" + +#: ../../mod/settings.php:993 +msgid "Private forum - approved members only" +msgstr "Forum privato - solo membri approvati" + +#: ../../mod/settings.php:1005 +msgid "OpenID:" +msgstr "OpenID:" + +#: ../../mod/settings.php:1005 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "(Opzionale) Consente di loggarti in questo account con questo OpenID" + +#: ../../mod/settings.php:1015 +msgid "Publish your default profile in your local site directory?" +msgstr "Pubblica il tuo profilo predefinito nell'elenco locale del sito" + +#: ../../mod/settings.php:1015 ../../mod/settings.php:1021 +#: ../../mod/settings.php:1029 ../../mod/settings.php:1033 +#: ../../mod/settings.php:1038 ../../mod/settings.php:1044 +#: ../../mod/settings.php:1050 ../../mod/settings.php:1056 +#: ../../mod/settings.php:1086 ../../mod/settings.php:1087 +#: ../../mod/settings.php:1088 ../../mod/settings.php:1089 +#: ../../mod/settings.php:1090 ../../mod/register.php:234 +#: ../../mod/dfrn_request.php:830 ../../mod/api.php:106 +#: ../../mod/profiles.php:661 ../../mod/profiles.php:665 +msgid "No" +msgstr "No" + +#: ../../mod/settings.php:1021 +msgid "Publish your default profile in the global social directory?" +msgstr "Pubblica il tuo profilo predefinito nell'elenco sociale globale" + +#: ../../mod/settings.php:1029 +msgid "Hide your contact/friend list from viewers of your default profile?" +msgstr "Nascondi la lista dei tuoi contatti/amici dai visitatori del tuo profilo predefinito" + +#: ../../mod/settings.php:1033 +msgid "" +"If enabled, posting public messages to Diaspora and other networks isn't " +"possible." +msgstr "Se abilitato, l'invio di messaggi pubblici verso Diaspora e altri network non sarà possibile" + +#: ../../mod/settings.php:1038 +msgid "Allow friends to post to your profile page?" +msgstr "Permetti agli amici di scrivere sulla tua pagina profilo?" + +#: ../../mod/settings.php:1044 +msgid "Allow friends to tag your posts?" +msgstr "Permetti agli amici di taggare i tuoi messaggi?" + +#: ../../mod/settings.php:1050 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "Ci permetti di suggerirti come potenziale amico ai nuovi membri?" + +#: ../../mod/settings.php:1056 +msgid "Permit unknown people to send you private mail?" +msgstr "Permetti a utenti sconosciuti di inviarti messaggi privati?" + +#: ../../mod/settings.php:1064 +msgid "Profile is not published." +msgstr "Il profilo non è pubblicato." + +#: ../../mod/settings.php:1067 ../../mod/profile_photo.php:248 +msgid "or" +msgstr "o" + +#: ../../mod/settings.php:1072 +msgid "Your Identity Address is" +msgstr "L'indirizzo della tua identità è" + +#: ../../mod/settings.php:1083 +msgid "Automatically expire posts after this many days:" +msgstr "Fai scadere i post automaticamente dopo x giorni:" + +#: ../../mod/settings.php:1083 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "Se lasciato vuoto, i messaggi non verranno cancellati." + +#: ../../mod/settings.php:1084 +msgid "Advanced expiration settings" +msgstr "Impostazioni avanzate di scandenza" + +#: ../../mod/settings.php:1085 +msgid "Advanced Expiration" +msgstr "Scadenza avanzata" + +#: ../../mod/settings.php:1086 +msgid "Expire posts:" +msgstr "Fai scadere i post:" + +#: ../../mod/settings.php:1087 +msgid "Expire personal notes:" +msgstr "Fai scadere le Note personali:" + +#: ../../mod/settings.php:1088 +msgid "Expire starred posts:" +msgstr "Fai scadere i post Speciali:" + +#: ../../mod/settings.php:1089 +msgid "Expire photos:" +msgstr "Fai scadere le foto:" + +#: ../../mod/settings.php:1090 +msgid "Only expire posts by others:" +msgstr "Fai scadere solo i post degli altri:" + +#: ../../mod/settings.php:1116 +msgid "Account Settings" +msgstr "Impostazioni account" + +#: ../../mod/settings.php:1124 +msgid "Password Settings" +msgstr "Impostazioni password" + +#: ../../mod/settings.php:1125 +msgid "New Password:" +msgstr "Nuova password:" + +#: ../../mod/settings.php:1126 +msgid "Confirm:" +msgstr "Conferma:" + +#: ../../mod/settings.php:1126 +msgid "Leave password fields blank unless changing" +msgstr "Lascia questi campi in bianco per non effettuare variazioni alla password" + +#: ../../mod/settings.php:1127 +msgid "Current Password:" +msgstr "Password Attuale:" + +#: ../../mod/settings.php:1127 ../../mod/settings.php:1128 +msgid "Your current password to confirm the changes" +msgstr "La tua password attuale per confermare le modifiche" + +#: ../../mod/settings.php:1128 +msgid "Password:" +msgstr "Password:" + +#: ../../mod/settings.php:1132 +msgid "Basic Settings" +msgstr "Impostazioni base" + +#: ../../mod/settings.php:1134 +msgid "Email Address:" +msgstr "Indirizzo Email:" + +#: ../../mod/settings.php:1135 +msgid "Your Timezone:" +msgstr "Il tuo fuso orario:" + +#: ../../mod/settings.php:1136 +msgid "Default Post Location:" +msgstr "Località predefinita:" + +#: ../../mod/settings.php:1137 +msgid "Use Browser Location:" +msgstr "Usa la località rilevata dal browser:" + +#: ../../mod/settings.php:1140 +msgid "Security and Privacy Settings" +msgstr "Impostazioni di sicurezza e privacy" + +#: ../../mod/settings.php:1142 +msgid "Maximum Friend Requests/Day:" +msgstr "Numero massimo di richieste di amicizia al giorno:" + +#: ../../mod/settings.php:1142 ../../mod/settings.php:1172 +msgid "(to prevent spam abuse)" +msgstr "(per prevenire lo spam)" + +#: ../../mod/settings.php:1143 +msgid "Default Post Permissions" +msgstr "Permessi predefiniti per i messaggi" + +#: ../../mod/settings.php:1144 +msgid "(click to open/close)" +msgstr "(clicca per aprire/chiudere)" + +#: ../../mod/settings.php:1153 ../../mod/photos.php:1146 +#: ../../mod/photos.php:1519 +msgid "Show to Groups" +msgstr "Mostra ai gruppi" + +#: ../../mod/settings.php:1154 ../../mod/photos.php:1147 +#: ../../mod/photos.php:1520 +msgid "Show to Contacts" +msgstr "Mostra ai contatti" + +#: ../../mod/settings.php:1155 +msgid "Default Private Post" +msgstr "Default Post Privato" + +#: ../../mod/settings.php:1156 +msgid "Default Public Post" +msgstr "Default Post Pubblico" + +#: ../../mod/settings.php:1160 +msgid "Default Permissions for New Posts" +msgstr "Permessi predefiniti per i nuovi post" + +#: ../../mod/settings.php:1172 +msgid "Maximum private messages per day from unknown people:" +msgstr "Numero massimo di messaggi privati da utenti sconosciuti per giorno:" + +#: ../../mod/settings.php:1175 +msgid "Notification Settings" +msgstr "Impostazioni notifiche" + +#: ../../mod/settings.php:1176 +msgid "By default post a status message when:" +msgstr "Invia un messaggio di stato quando:" + +#: ../../mod/settings.php:1177 +msgid "accepting a friend request" +msgstr "accetti una richiesta di amicizia" + +#: ../../mod/settings.php:1178 +msgid "joining a forum/community" +msgstr "ti unisci a un forum/comunità" + +#: ../../mod/settings.php:1179 +msgid "making an interesting profile change" +msgstr "fai un interessante modifica al profilo" + +#: ../../mod/settings.php:1180 +msgid "Send a notification email when:" +msgstr "Invia una mail di notifica quando:" + +#: ../../mod/settings.php:1181 +msgid "You receive an introduction" +msgstr "Ricevi una presentazione" + +#: ../../mod/settings.php:1182 +msgid "Your introductions are confirmed" +msgstr "Le tue presentazioni sono confermate" + +#: ../../mod/settings.php:1183 +msgid "Someone writes on your profile wall" +msgstr "Qualcuno scrive sulla bacheca del tuo profilo" + +#: ../../mod/settings.php:1184 +msgid "Someone writes a followup comment" +msgstr "Qualcuno scrive un commento a un tuo messaggio" + +#: ../../mod/settings.php:1185 +msgid "You receive a private message" +msgstr "Ricevi un messaggio privato" + +#: ../../mod/settings.php:1186 +msgid "You receive a friend suggestion" +msgstr "Hai ricevuto un suggerimento di amicizia" + +#: ../../mod/settings.php:1187 +msgid "You are tagged in a post" +msgstr "Sei stato taggato in un post" + +#: ../../mod/settings.php:1188 +msgid "You are poked/prodded/etc. in a post" +msgstr "Sei 'toccato'/'spronato'/ecc. in un post" + +#: ../../mod/settings.php:1190 +msgid "Text-only notification emails" +msgstr "Email di notifica in solo testo" + +#: ../../mod/settings.php:1192 +msgid "Send text only notification emails, without the html part" +msgstr "Invia le email di notifica in solo testo, senza la parte in html" + +#: ../../mod/settings.php:1194 +msgid "Advanced Account/Page Type Settings" +msgstr "Impostazioni avanzate Account/Tipo di pagina" + +#: ../../mod/settings.php:1195 +msgid "Change the behaviour of this account for special situations" +msgstr "Modifica il comportamento di questo account in situazioni speciali" + +#: ../../mod/settings.php:1198 +msgid "Relocate" +msgstr "Trasloca" + +#: ../../mod/settings.php:1199 +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 "Se hai spostato questo profilo da un'altro server, e alcuni dei tuoi contatti non ricevono i tuoi aggiornamenti, prova a premere questo bottone." + +#: ../../mod/settings.php:1200 +msgid "Resend relocate message to contacts" +msgstr "Reinvia il messaggio di trasloco" + +#: ../../mod/common.php:42 +msgid "Common Friends" +msgstr "Amici in comune" + +#: ../../mod/common.php:78 +msgid "No contacts in common." +msgstr "Nessun contatto in comune." + +#: ../../mod/lockview.php:31 ../../mod/lockview.php:39 +msgid "Remote privacy information not available." +msgstr "Informazioni remote sulla privacy non disponibili." + +#: ../../mod/lockview.php:48 +msgid "Visible to:" +msgstr "Visibile a:" + +#: ../../mod/contacts.php:112 +#, php-format +msgid "%d contact edited." +msgid_plural "%d contacts edited" +msgstr[0] "%d contatto modificato" +msgstr[1] "%d contatti modificati" + +#: ../../mod/contacts.php:143 ../../mod/contacts.php:276 +msgid "Could not access contact record." +msgstr "Non è possibile accedere al contatto." + +#: ../../mod/contacts.php:157 +msgid "Could not locate selected profile." +msgstr "Non riesco a trovare il profilo selezionato." + +#: ../../mod/contacts.php:190 +msgid "Contact updated." +msgstr "Contatto aggiornato." + +#: ../../mod/contacts.php:192 ../../mod/dfrn_request.php:576 +msgid "Failed to update contact record." +msgstr "Errore nell'aggiornamento del contatto." + +#: ../../mod/contacts.php:291 +msgid "Contact has been blocked" +msgstr "Il contatto è stato bloccato" + +#: ../../mod/contacts.php:291 +msgid "Contact has been unblocked" +msgstr "Il contatto è stato sbloccato" + +#: ../../mod/contacts.php:302 +msgid "Contact has been ignored" +msgstr "Il contatto è ignorato" + +#: ../../mod/contacts.php:302 +msgid "Contact has been unignored" +msgstr "Il contatto non è più ignorato" + +#: ../../mod/contacts.php:314 +msgid "Contact has been archived" +msgstr "Il contatto è stato archiviato" + +#: ../../mod/contacts.php:314 +msgid "Contact has been unarchived" +msgstr "Il contatto è stato dearchiviato" + +#: ../../mod/contacts.php:339 ../../mod/contacts.php:727 +msgid "Do you really want to delete this contact?" +msgstr "Vuoi veramente cancellare questo contatto?" + +#: ../../mod/contacts.php:356 +msgid "Contact has been removed." +msgstr "Il contatto è stato rimosso." + +#: ../../mod/contacts.php:394 +#, php-format +msgid "You are mutual friends with %s" +msgstr "Sei amico reciproco con %s" + +#: ../../mod/contacts.php:398 +#, php-format +msgid "You are sharing with %s" +msgstr "Stai condividendo con %s" + +#: ../../mod/contacts.php:403 +#, php-format +msgid "%s is sharing with you" +msgstr "%s sta condividendo con te" + +#: ../../mod/contacts.php:423 +msgid "Private communications are not available for this contact." +msgstr "Le comunicazioni private non sono disponibili per questo contatto." + +#: ../../mod/contacts.php:426 ../../mod/admin.php:569 +msgid "Never" +msgstr "Mai" + +#: ../../mod/contacts.php:430 +msgid "(Update was successful)" +msgstr "(L'aggiornamento è stato completato)" + +#: ../../mod/contacts.php:430 +msgid "(Update was not successful)" +msgstr "(L'aggiornamento non è stato completato)" + +#: ../../mod/contacts.php:432 +msgid "Suggest friends" +msgstr "Suggerisci amici" + +#: ../../mod/contacts.php:436 +#, php-format +msgid "Network type: %s" +msgstr "Tipo di rete: %s" + +#: ../../mod/contacts.php:444 +msgid "View all contacts" +msgstr "Vedi tutti i contatti" + +#: ../../mod/contacts.php:449 ../../mod/contacts.php:518 +#: ../../mod/contacts.php:730 ../../mod/admin.php:1009 +msgid "Unblock" +msgstr "Sblocca" + +#: ../../mod/contacts.php:449 ../../mod/contacts.php:518 +#: ../../mod/contacts.php:730 ../../mod/admin.php:1008 +msgid "Block" +msgstr "Blocca" + +#: ../../mod/contacts.php:452 +msgid "Toggle Blocked status" +msgstr "Inverti stato \"Blocca\"" + +#: ../../mod/contacts.php:455 ../../mod/contacts.php:519 +#: ../../mod/contacts.php:731 +msgid "Unignore" +msgstr "Non ignorare" + +#: ../../mod/contacts.php:458 +msgid "Toggle Ignored status" +msgstr "Inverti stato \"Ignora\"" + +#: ../../mod/contacts.php:462 ../../mod/contacts.php:732 +msgid "Unarchive" +msgstr "Dearchivia" + +#: ../../mod/contacts.php:462 ../../mod/contacts.php:732 +msgid "Archive" +msgstr "Archivia" + +#: ../../mod/contacts.php:465 +msgid "Toggle Archive status" +msgstr "Inverti stato \"Archiviato\"" + +#: ../../mod/contacts.php:468 +msgid "Repair" +msgstr "Ripara" + +#: ../../mod/contacts.php:471 +msgid "Advanced Contact Settings" +msgstr "Impostazioni avanzate Contatto" + +#: ../../mod/contacts.php:477 +msgid "Communications lost with this contact!" +msgstr "Comunicazione con questo contatto persa!" + +#: ../../mod/contacts.php:480 +msgid "Fetch further information for feeds" +msgstr "Recupera maggiori infomazioni per i feed" + +#: ../../mod/contacts.php:481 +msgid "Disabled" +msgstr "Disabilitato" + +#: ../../mod/contacts.php:481 +msgid "Fetch information" +msgstr "Recupera informazioni" + +#: ../../mod/contacts.php:481 +msgid "Fetch information and keywords" +msgstr "Recupera informazioni e parole chiave" + +#: ../../mod/contacts.php:490 +msgid "Contact Editor" +msgstr "Editor dei Contatti" + +#: ../../mod/contacts.php:493 +msgid "Profile Visibility" +msgstr "Visibilità del profilo" + +#: ../../mod/contacts.php:494 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Seleziona il profilo che vuoi mostrare a %s quando visita il tuo profilo in modo sicuro." + +#: ../../mod/contacts.php:495 +msgid "Contact Information / Notes" +msgstr "Informazioni / Note sul contatto" + +#: ../../mod/contacts.php:496 +msgid "Edit contact notes" +msgstr "Modifica note contatto" + +#: ../../mod/contacts.php:501 ../../mod/contacts.php:695 +#: ../../mod/nogroup.php:40 ../../mod/viewcontacts.php:64 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Visita il profilo di %s [%s]" + +#: ../../mod/contacts.php:502 +msgid "Block/Unblock contact" +msgstr "Blocca/Sblocca contatto" + +#: ../../mod/contacts.php:503 +msgid "Ignore contact" +msgstr "Ignora il contatto" + +#: ../../mod/contacts.php:504 +msgid "Repair URL settings" +msgstr "Impostazioni riparazione URL" + +#: ../../mod/contacts.php:505 +msgid "View conversations" +msgstr "Vedi conversazioni" + +#: ../../mod/contacts.php:507 +msgid "Delete contact" +msgstr "Rimuovi contatto" + +#: ../../mod/contacts.php:511 +msgid "Last update:" +msgstr "Ultimo aggiornamento:" + +#: ../../mod/contacts.php:513 +msgid "Update public posts" +msgstr "Aggiorna messaggi pubblici" + +#: ../../mod/contacts.php:515 ../../mod/admin.php:1503 +msgid "Update now" +msgstr "Aggiorna adesso" + +#: ../../mod/contacts.php:522 +msgid "Currently blocked" +msgstr "Bloccato" + +#: ../../mod/contacts.php:523 +msgid "Currently ignored" +msgstr "Ignorato" + +#: ../../mod/contacts.php:524 +msgid "Currently archived" +msgstr "Al momento archiviato" + +#: ../../mod/contacts.php:525 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "Risposte ai tuoi post pubblici possono essere comunque visibili" + +#: ../../mod/contacts.php:526 +msgid "Notification for new posts" +msgstr "Notifica per i nuovi messaggi" + +#: ../../mod/contacts.php:526 +msgid "Send a notification of every new post of this contact" +msgstr "Invia una notifica per ogni nuovo messaggio di questo contatto" + +#: ../../mod/contacts.php:529 +msgid "Blacklisted keywords" +msgstr "Parole chiave in blacklist" + +#: ../../mod/contacts.php:529 +msgid "" +"Comma separated list of keywords that should not be converted to hashtags, " +"when \"Fetch information and keywords\" is selected" +msgstr "Lista separata da virgola di parole chiave che non dovranno essere convertite in hastag, quando \"Recupera informazioni e parole chiave\" è selezionato" + +#: ../../mod/contacts.php:580 +msgid "Suggestions" +msgstr "Suggerimenti" + +#: ../../mod/contacts.php:583 +msgid "Suggest potential friends" +msgstr "Suggerisci potenziali amici" + +#: ../../mod/contacts.php:589 +msgid "Show all contacts" +msgstr "Mostra tutti i contatti" + +#: ../../mod/contacts.php:592 +msgid "Unblocked" +msgstr "Sbloccato" + +#: ../../mod/contacts.php:595 +msgid "Only show unblocked contacts" +msgstr "Mostra solo contatti non bloccati" + +#: ../../mod/contacts.php:599 +msgid "Blocked" +msgstr "Bloccato" + +#: ../../mod/contacts.php:602 +msgid "Only show blocked contacts" +msgstr "Mostra solo contatti bloccati" + +#: ../../mod/contacts.php:606 +msgid "Ignored" +msgstr "Ignorato" + +#: ../../mod/contacts.php:609 +msgid "Only show ignored contacts" +msgstr "Mostra solo contatti ignorati" + +#: ../../mod/contacts.php:613 +msgid "Archived" +msgstr "Achiviato" + +#: ../../mod/contacts.php:616 +msgid "Only show archived contacts" +msgstr "Mostra solo contatti archiviati" + +#: ../../mod/contacts.php:620 +msgid "Hidden" +msgstr "Nascosto" + +#: ../../mod/contacts.php:623 +msgid "Only show hidden contacts" +msgstr "Mostra solo contatti nascosti" + +#: ../../mod/contacts.php:671 +msgid "Mutual Friendship" +msgstr "Amicizia reciproca" + +#: ../../mod/contacts.php:675 +msgid "is a fan of yours" +msgstr "è un tuo fan" + +#: ../../mod/contacts.php:679 +msgid "you are a fan of" +msgstr "sei un fan di" + +#: ../../mod/contacts.php:696 ../../mod/nogroup.php:41 +msgid "Edit contact" +msgstr "Modifca contatto" + +#: ../../mod/contacts.php:722 +msgid "Search your contacts" +msgstr "Cerca nei tuoi contatti" + +#: ../../mod/contacts.php:723 ../../mod/directory.php:61 +msgid "Finding: " +msgstr "Ricerca: " + +#: ../../mod/wall_attach.php:75 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "Mi spiace, forse il fie che stai caricando è più grosso di quanto la configurazione di PHP permetta" + +#: ../../mod/wall_attach.php:75 +msgid "Or - did you try to upload an empty file?" +msgstr "O.. non avrai provato a caricare un file vuoto?" + +#: ../../mod/wall_attach.php:81 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "Il file supera la dimensione massima di %d" + +#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133 +msgid "File upload failed." +msgstr "Caricamento del file non riuscito." + +#: ../../mod/update_community.php:18 ../../mod/update_network.php:25 +#: ../../mod/update_notes.php:37 ../../mod/update_display.php:22 +#: ../../mod/update_profile.php:41 +msgid "[Embedded content - reload page to view]" +msgstr "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]" + +#: ../../mod/uexport.php:77 +msgid "Export account" +msgstr "Esporta account" + +#: ../../mod/uexport.php:77 +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 "Esporta le informazioni del tuo account e dei contatti. Usa questa funzione per fare un backup del tuo account o per spostarlo in un altro server." + +#: ../../mod/uexport.php:78 +msgid "Export all" +msgstr "Esporta tutto" + +#: ../../mod/uexport.php:78 +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 "Esporta le informazioni del tuo account, i tuoi contatti e tutti i tuoi elementi in json. Puo' diventare un file veramente molto grosso e metterci un sacco di tempo. Usa questa funzione per fare un backup completo del tuo account (le foto non sono esportate)" + +#: ../../mod/register.php:90 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "Registrazione completata. Controlla la tua mail per ulteriori informazioni." + +#: ../../mod/register.php:96 +#, php-format +msgid "" +"Failed to send email message. Here your accout details:
    login: %s
    " +"password: %s

    You can change your password after login." +msgstr "Si è verificato un errore inviando l'email. I dettagli del tuo account:
    login: %s
    password: %s

    Puoi cambiare la password dopo il login." + +#: ../../mod/register.php:105 +msgid "Your registration can not be processed." +msgstr "La tua registrazione non puo' essere elaborata." + +#: ../../mod/register.php:148 +msgid "Your registration is pending approval by the site owner." +msgstr "La tua richiesta è in attesa di approvazione da parte del prorietario del sito." + +#: ../../mod/register.php:186 ../../mod/uimport.php:50 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Questo sito ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani." + +#: ../../mod/register.php:214 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking 'Register'." +msgstr "Se vuoi, puoi riempire questo modulo tramite OpenID, inserendo il tuo OpenID e cliccando 'Registra'." + +#: ../../mod/register.php:215 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "Se non hai familiarità con OpenID, lascia il campo vuoto e riempi il resto della maschera." + +#: ../../mod/register.php:216 +msgid "Your OpenID (optional): " +msgstr "Il tuo OpenID (opzionale): " + +#: ../../mod/register.php:230 +msgid "Include your profile in member directory?" +msgstr "Includi il tuo profilo nell'elenco pubblico?" + +#: ../../mod/register.php:251 +msgid "Membership on this site is by invitation only." +msgstr "La registrazione su questo sito è solo su invito." + +#: ../../mod/register.php:252 +msgid "Your invitation ID: " +msgstr "L'ID del tuo invito:" + +#: ../../mod/register.php:255 ../../mod/admin.php:621 +msgid "Registration" +msgstr "Registrazione" + +#: ../../mod/register.php:263 +msgid "Your Full Name (e.g. Joe Smith): " +msgstr "Il tuo nome completo (es. Mario Rossi): " + +#: ../../mod/register.php:264 +msgid "Your Email Address: " +msgstr "Il tuo indirizzo email: " + +#: ../../mod/register.php:265 +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be " +"'nickname@$sitename'." +msgstr "Scegli un nome utente. Deve cominciare con una lettera. L'indirizzo del tuo profilo sarà 'soprannome@$sitename'." + +#: ../../mod/register.php:266 +msgid "Choose a nickname: " +msgstr "Scegli un nome utente: " + +#: ../../mod/register.php:275 ../../mod/uimport.php:64 +msgid "Import" +msgstr "Importa" + +#: ../../mod/register.php:276 +msgid "Import your profile to this friendica instance" +msgstr "Importa il tuo profilo in questo server friendica" + +#: ../../mod/oexchange.php:25 +msgid "Post successful." +msgstr "Inviato!" + +#: ../../mod/maintenance.php:5 +msgid "System down for maintenance" +msgstr "Sistema in manutenzione" + +#: ../../mod/profile.php:155 ../../mod/display.php:332 +msgid "Access to this profile has been restricted." +msgstr "L'accesso a questo profilo è stato limitato." + +#: ../../mod/profile.php:180 +msgid "Tips for New Members" +msgstr "Consigli per i Nuovi Utenti" + +#: ../../mod/videos.php:115 ../../mod/dfrn_request.php:762 +#: ../../mod/viewcontacts.php:19 ../../mod/photos.php:920 +#: ../../mod/search.php:89 ../../mod/community.php:18 +#: ../../mod/display.php:212 ../../mod/directory.php:33 +msgid "Public access denied." msgstr "Accesso negato." +#: ../../mod/videos.php:125 +msgid "No videos selected" +msgstr "Nessun video selezionato" + +#: ../../mod/videos.php:226 ../../mod/photos.php:1031 +msgid "Access to this item is restricted." +msgstr "Questo oggetto non è visibile a tutti." + +#: ../../mod/videos.php:308 ../../mod/photos.php:1808 +msgid "View Album" +msgstr "Sfoglia l'album" + +#: ../../mod/videos.php:317 +msgid "Recent Videos" +msgstr "Video Recenti" + +#: ../../mod/videos.php:319 +msgid "Upload New Videos" +msgstr "Carica Nuovo Video" + +#: ../../mod/manage.php:106 +msgid "Manage Identities and/or Pages" +msgstr "Gestisci indentità e/o pagine" + +#: ../../mod/manage.php:107 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "Cambia tra differenti identità o pagine comunità/gruppi che condividono il tuo account o per cui hai i permessi di gestione" + +#: ../../mod/manage.php:108 +msgid "Select an identity to manage: " +msgstr "Seleziona un'identità da gestire:" + +#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 +msgid "Item not found" +msgstr "Oggetto non trovato" + +#: ../../mod/editpost.php:39 +msgid "Edit post" +msgstr "Modifica messaggio" + #: ../../mod/dirfind.php:26 msgid "People Search" msgstr "Cerca persone" @@ -1813,19 +4700,245 @@ msgstr "Cerca persone" msgid "No matches" msgstr "Nessun risultato" -#: ../../mod/fbrowser.php:25 ../../boot.php:2126 ../../include/nav.php:78 -#: ../../view/theme/diabook/theme.php:126 -msgid "Photos" -msgstr "Foto" +#: ../../mod/regmod.php:55 +msgid "Account approved." +msgstr "Account approvato." + +#: ../../mod/regmod.php:92 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registrazione revocata per %s" + +#: ../../mod/regmod.php:104 +msgid "Please login." +msgstr "Accedi." + +#: ../../mod/dfrn_request.php:95 +msgid "This introduction has already been accepted." +msgstr "Questa presentazione è già stata accettata." + +#: ../../mod/dfrn_request.php:120 ../../mod/dfrn_request.php:518 +msgid "Profile location is not valid or does not contain profile information." +msgstr "L'indirizzo del profilo non è valido o non contiene un profilo." + +#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:523 +msgid "Warning: profile location has no identifiable owner name." +msgstr "Attenzione: l'indirizzo del profilo non riporta il nome del proprietario." + +#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:525 +msgid "Warning: profile location has no profile photo." +msgstr "Attenzione: l'indirizzo del profilo non ha una foto." + +#: ../../mod/dfrn_request.php:130 ../../mod/dfrn_request.php:528 +#, 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 parametro richiesto non è stato trovato all'indirizzo dato" +msgstr[1] "%d parametri richiesti non sono stati trovati all'indirizzo dato" + +#: ../../mod/dfrn_request.php:172 +msgid "Introduction complete." +msgstr "Presentazione completa." + +#: ../../mod/dfrn_request.php:214 +msgid "Unrecoverable protocol error." +msgstr "Errore di comunicazione." + +#: ../../mod/dfrn_request.php:242 +msgid "Profile unavailable." +msgstr "Profilo non disponibile." + +#: ../../mod/dfrn_request.php:267 +#, php-format +msgid "%s has received too many connection requests today." +msgstr "%s ha ricevuto troppe richieste di connessione per oggi." + +#: ../../mod/dfrn_request.php:268 +msgid "Spam protection measures have been invoked." +msgstr "Sono state attivate le misure di protezione contro lo spam." + +#: ../../mod/dfrn_request.php:269 +msgid "Friends are advised to please try again in 24 hours." +msgstr "Gli amici sono pregati di riprovare tra 24 ore." + +#: ../../mod/dfrn_request.php:331 +msgid "Invalid locator" +msgstr "Invalid locator" + +#: ../../mod/dfrn_request.php:340 +msgid "Invalid email address." +msgstr "Indirizzo email non valido." + +#: ../../mod/dfrn_request.php:367 +msgid "This account has not been configured for email. Request failed." +msgstr "Questo account non è stato configurato per l'email. Richiesta fallita." + +#: ../../mod/dfrn_request.php:463 +msgid "Unable to resolve your name at the provided location." +msgstr "Impossibile risolvere il tuo nome nella posizione indicata." + +#: ../../mod/dfrn_request.php:476 +msgid "You have already introduced yourself here." +msgstr "Ti sei già presentato qui." + +#: ../../mod/dfrn_request.php:480 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "Pare che tu e %s siate già amici." + +#: ../../mod/dfrn_request.php:501 +msgid "Invalid profile URL." +msgstr "Indirizzo profilo non valido." + +#: ../../mod/dfrn_request.php:597 +msgid "Your introduction has been sent." +msgstr "La tua presentazione è stata inviata." + +#: ../../mod/dfrn_request.php:650 +msgid "Please login to confirm introduction." +msgstr "Accedi per confermare la presentazione." + +#: ../../mod/dfrn_request.php:660 +msgid "" +"Incorrect identity currently logged in. Please login to " +"this profile." +msgstr "Non hai fatto accesso con l'identità corretta. Accedi a questo profilo." + +#: ../../mod/dfrn_request.php:671 +msgid "Hide this contact" +msgstr "Nascondi questo contatto" + +#: ../../mod/dfrn_request.php:674 +#, php-format +msgid "Welcome home %s." +msgstr "Bentornato a casa %s." + +#: ../../mod/dfrn_request.php:675 +#, php-format +msgid "Please confirm your introduction/connection request to %s." +msgstr "Conferma la tua richiesta di connessione con %s." + +#: ../../mod/dfrn_request.php:804 +msgid "" +"Please enter your 'Identity Address' from one of the following supported " +"communications networks:" +msgstr "Inserisci il tuo 'Indirizzo Identità' da uno dei seguenti network supportati:" + +#: ../../mod/dfrn_request.php:824 +msgid "" +"If you are not yet a member of the free social web, follow this link to find a public" +" Friendica site and join us today." +msgstr "Se non sei un membro del web sociale libero, segui questo link per trovare un sito Friendica pubblico e unisciti a noi oggi" + +#: ../../mod/dfrn_request.php:827 +msgid "Friend/Connection Request" +msgstr "Richieste di amicizia/connessione" + +#: ../../mod/dfrn_request.php:828 +msgid "" +"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " +"testuser@identi.ca" +msgstr "Esempi: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" + +#: ../../mod/dfrn_request.php:829 +msgid "Please answer the following:" +msgstr "Rispondi:" + +#: ../../mod/dfrn_request.php:830 +#, php-format +msgid "Does %s know you?" +msgstr "%s ti conosce?" + +#: ../../mod/dfrn_request.php:834 +msgid "Add a personal note:" +msgstr "Aggiungi una nota personale:" + +#: ../../mod/dfrn_request.php:837 +msgid "StatusNet/Federated Social Web" +msgstr "StatusNet/Federated Social Web" + +#: ../../mod/dfrn_request.php:839 +#, php-format +msgid "" +" - please do not use this form. Instead, enter %s into your Diaspora search" +" bar." +msgstr " - per favore non usare questa form. Invece, inserisci %s nella tua barra di ricerca su Diaspora." + +#: ../../mod/dfrn_request.php:840 +msgid "Your Identity Address:" +msgstr "L'indirizzo della tua identità:" + +#: ../../mod/dfrn_request.php:843 +msgid "Submit Request" +msgstr "Invia richiesta" #: ../../mod/fbrowser.php:113 msgid "Files" msgstr "File" +#: ../../mod/api.php:76 ../../mod/api.php:102 +msgid "Authorize application connection" +msgstr "Autorizza la connessione dell'applicazione" + +#: ../../mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "Torna alla tua applicazione e inserisci questo codice di sicurezza:" + +#: ../../mod/api.php:89 +msgid "Please login to continue." +msgstr "Effettua il login per continuare." + +#: ../../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 "Vuoi autorizzare questa applicazione per accedere ai messaggi e ai contatti, e / o creare nuovi messaggi per te?" + +#: ../../mod/suggest.php:27 +msgid "Do you really want to delete this suggestion?" +msgstr "Vuoi veramente cancellare questo suggerimento?" + +#: ../../mod/suggest.php:74 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Nessun suggerimento disponibile. Se questo è un sito nuovo, riprova tra 24 ore." + +#: ../../mod/suggest.php:92 +msgid "Ignore/Hide" +msgstr "Ignora / Nascondi" + #: ../../mod/nogroup.php:59 msgid "Contacts who are not members of a group" msgstr "Contatti che non sono membri di un gruppo" +#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 +#: ../../mod/crepair.php:133 ../../mod/dfrn_confirm.php:120 +msgid "Contact not found." +msgstr "Contatto non trovato." + +#: ../../mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "Suggerimento di amicizia inviato." + +#: ../../mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Suggerisci amici" + +#: ../../mod/fsuggest.php:99 +#, php-format +msgid "Suggest a friend for %s" +msgstr "Suggerisci un amico a %s" + +#: ../../mod/share.php:44 +msgid "link" +msgstr "collegamento" + +#: ../../mod/viewcontacts.php:41 +msgid "No contacts." +msgstr "Nessun contatto." + #: ../../mod/admin.php:57 msgid "Theme settings updated." msgstr "Impostazioni del tema aggiornate." @@ -1838,11 +4951,6 @@ msgstr "Sito" msgid "Users" msgstr "Utenti" -#: ../../mod/admin.php:106 ../../mod/admin.php:1102 ../../mod/admin.php:1155 -#: ../../mod/settings.php:57 -msgid "Plugins" -msgstr "Plugin" - #: ../../mod/admin.php:107 ../../mod/admin.php:1323 ../../mod/admin.php:1357 msgid "Themes" msgstr "Temi" @@ -1857,15 +4965,11 @@ msgstr "Log" #: ../../mod/admin.php:124 msgid "probe address" -msgstr "" +msgstr "controlla indirizzo" #: ../../mod/admin.php:125 msgid "check webfinger" -msgstr "" - -#: ../../mod/admin.php:130 ../../include/nav.php:184 -msgid "Admin" -msgstr "Amministrazione" +msgstr "verifica webfinger" #: ../../mod/admin.php:131 msgid "Plugin Features" @@ -1873,7 +4977,7 @@ msgstr "Impostazioni Plugins" #: ../../mod/admin.php:133 msgid "diagnostics" -msgstr "" +msgstr "diagnostiche" #: ../../mod/admin.php:134 msgid "User registrations waiting for confirmation" @@ -1941,42 +5045,22 @@ msgstr "Impossibile analizzare l'url base. Deve avere almeno [schema]://[dominio msgid "Site settings updated." msgstr "Impostazioni del sito aggiornate." -#: ../../mod/admin.php:545 ../../mod/settings.php:828 -msgid "No special theme for mobile devices" -msgstr "Nessun tema speciale per i dispositivi mobili" - #: ../../mod/admin.php:562 msgid "No community page" -msgstr "" +msgstr "Nessuna pagina Comunità" #: ../../mod/admin.php:563 msgid "Public postings from users of this site" -msgstr "" +msgstr "Messaggi pubblici dagli utenti di questo sito" #: ../../mod/admin.php:564 msgid "Global community page" -msgstr "" +msgstr "Pagina Comunità globale" #: ../../mod/admin.php:570 msgid "At post arrival" msgstr "All'arrivo di un messaggio" -#: ../../mod/admin.php:571 ../../include/contact_selectors.php:56 -msgid "Frequently" -msgstr "Frequentemente" - -#: ../../mod/admin.php:572 ../../include/contact_selectors.php:57 -msgid "Hourly" -msgstr "Ogni ora" - -#: ../../mod/admin.php:573 ../../include/contact_selectors.php:58 -msgid "Twice daily" -msgstr "Due volte al dì" - -#: ../../mod/admin.php:574 ../../include/contact_selectors.php:59 -msgid "Daily" -msgstr "Giornalmente" - #: ../../mod/admin.php:579 msgid "Multi user instance" msgstr "Istanza multi utente" @@ -2005,17 +5089,6 @@ msgstr "Forza tutti i linki ad usare SSL" msgid "Self-signed certificate, use SSL for local links only (discouraged)" msgstr "Certificato auto-firmato, usa SSL solo per i link locali (sconsigliato)" -#: ../../mod/admin.php:620 ../../mod/admin.php:1156 ../../mod/admin.php:1358 -#: ../../mod/admin.php:1445 ../../mod/settings.php:614 -#: ../../mod/settings.php:724 ../../mod/settings.php:798 -#: ../../mod/settings.php:880 ../../mod/settings.php:1113 -msgid "Save Settings" -msgstr "Salva Impostazioni" - -#: ../../mod/admin.php:621 ../../mod/register.php:255 -msgid "Registration" -msgstr "Registrazione" - #: ../../mod/admin.php:622 msgid "File upload" msgstr "Caricamento file" @@ -2043,11 +5116,11 @@ msgstr "Nome del sito" #: ../../mod/admin.php:630 msgid "Host name" -msgstr "" +msgstr "Nome host" #: ../../mod/admin.php:631 msgid "Sender Email" -msgstr "" +msgstr "Mittente email" #: ../../mod/admin.php:632 msgid "Banner/Logo" @@ -2055,11 +5128,11 @@ msgstr "Banner/Logo" #: ../../mod/admin.php:633 msgid "Shortcut icon" -msgstr "" +msgstr "Icona shortcut" #: ../../mod/admin.php:634 msgid "Touch icon" -msgstr "" +msgstr "Icona touch" #: ../../mod/admin.php:635 msgid "Additional Info" @@ -2103,13 +5176,13 @@ msgstr "Determina se i link generati devono essere forzati a usare SSL" #: ../../mod/admin.php:640 msgid "Force SSL" -msgstr "" +msgstr "Forza SSL" #: ../../mod/admin.php:640 msgid "" "Force all Non-SSL requests to SSL - Attention: on some systems it could lead" " to endless loops." -msgstr "" +msgstr "Forza tutte le richieste non SSL su SSL - Attenzione: su alcuni sistemi puo' portare a loop senza fine" #: ../../mod/admin.php:641 msgid "Old style 'Share'" @@ -2347,23 +5420,23 @@ msgstr "Usa le espressioni regolari PHP in UTF8" #: ../../mod/admin.php:667 msgid "Community Page Style" -msgstr "" +msgstr "Stile pagina Comunità" #: ../../mod/admin.php:667 msgid "" "Type of community page to show. 'Global community' shows every public " "posting from an open distributed network that arrived on this server." -msgstr "" +msgstr "Tipo di pagina Comunità da mostrare. 'Comunità Globale' mostra tutti i messaggi pubblici arrivati su questo server da network aperti distribuiti." #: ../../mod/admin.php:668 msgid "Posts per user on community page" -msgstr "" +msgstr "Messaggi per utente nella pagina Comunità" #: ../../mod/admin.php:668 msgid "" "The maximum number of posts per user on the community page. (Not valid for " "'Global Community')" -msgstr "" +msgstr "Il numero massimo di messaggi per utente mostrato nella pagina Comuntà (non valido per 'Comunità globale')" #: ../../mod/admin.php:669 msgid "Enable OStatus support" @@ -2481,11 +5554,11 @@ msgstr "Disattiva le informazioni sulla lingua nei meta di un post." #: ../../mod/admin.php:683 msgid "Suppress Tags" -msgstr "" +msgstr "Sopprimi Tags" #: ../../mod/admin.php:683 msgid "Suppress showing a list of hashtags at the end of the posting." -msgstr "" +msgstr "Non mostra la lista di hashtag in coda al messaggio" #: ../../mod/admin.php:684 msgid "Path to item cache" @@ -2533,21 +5606,21 @@ msgstr "Il proxy immagini aumenta le performace e la privacy. Non dovrebbe esser #: ../../mod/admin.php:691 msgid "Enable old style pager" -msgstr "" +msgstr "Abilita la paginazione vecchio stile" #: ../../mod/admin.php:691 msgid "" "The old style pager has page numbers but slows down massively the page " "speed." -msgstr "" +msgstr "La paginazione vecchio stile mostra i numeri delle pagine, ma rallenta la velocità di caricamento della pagina." #: ../../mod/admin.php:692 msgid "Only search in tags" -msgstr "" +msgstr "Cerca solo nei tag" #: ../../mod/admin.php:692 msgid "On large systems the text search can slow down the system extremely." -msgstr "" +msgstr "Su server con molti dati, la ricerca nel testo può estremamente rallentare il sistema." #: ../../mod/admin.php:694 msgid "New base url" @@ -2650,11 +5723,6 @@ msgid "" "\t\t\tThank you and welcome to %4$s." msgstr "\nI dettagli del tuo utente sono:\n Indirizzo del sito: %1$s\n Nome utente: %2$s\n Password: %3$s\n\nPuoi cambiare la tua password dalla pagina delle impostazioni del tuo account dopo esserti autenticato.\n\nPer favore, prenditi qualche momento per esaminare tutte le impostazioni presenti.\n\nPotresti voler aggiungere qualche informazione di base al tuo profilo predefinito (nella pagina \"Profili\"), così che le altre persone possano trovarti più facilmente.\n\nTi raccomandiamo di inserire il tuo nome completo, aggiungere una foto, aggiungere qualche parola chiave del profilo (molto utili per trovare nuovi contatti), e magari in quale nazione vivi, se non vuoi essere più specifico di così.\n\nNoi rispettiamo appieno la tua privacy, e nessuna di queste informazioni è necessaria o obbligatoria.\nSe sei nuovo e non conosci nessuno qui, possono aiutarti a trovare qualche nuovo e interessante contatto.\n\nGrazie e benvenuto su %4$s" -#: ../../mod/admin.php:838 ../../include/user.php:413 -#, php-format -msgid "Registration details for %s" -msgstr "Dettagli della registrazione di %s" - #: ../../mod/admin.php:850 #, php-format msgid "%s user blocked/unblocked" @@ -2704,12 +5772,6 @@ msgstr "Utente in attesa di cancellazione definitiva" msgid "Request date" msgstr "Data richiesta" -#: ../../mod/admin.php:1003 ../../mod/admin.php:1015 ../../mod/admin.php:1016 -#: ../../mod/admin.php:1031 ../../include/contact_selectors.php:79 -#: ../../include/contact_selectors.php:86 -msgid "Email" -msgstr "Email" - #: ../../mod/admin.php:1004 msgid "No registrations." msgstr "Nessuna registrazione." @@ -2746,10 +5808,6 @@ msgstr "Ultimo elemento" msgid "Deleted since" msgstr "Rimosso da" -#: ../../mod/admin.php:1016 ../../mod/settings.php:36 -msgid "Account" -msgstr "Account" - #: ../../mod/admin.php:1018 msgid "" "Selected users will be deleted!\\n\\nEverything these users had posted on " @@ -2870,6 +5928,35 @@ msgstr "Utente FTP" msgid "FTP Password" msgstr "Pasword FTP" +#: ../../mod/wall_upload.php:122 ../../mod/profile_photo.php:144 +#, php-format +msgid "Image exceeds size limit of %d" +msgstr "La dimensione dell'immagine supera il limite di %d" + +#: ../../mod/wall_upload.php:144 ../../mod/photos.php:807 +#: ../../mod/profile_photo.php:153 +msgid "Unable to process image." +msgstr "Impossibile caricare l'immagine." + +#: ../../mod/wall_upload.php:172 ../../mod/photos.php:834 +#: ../../mod/profile_photo.php:301 +msgid "Image upload failed." +msgstr "Caricamento immagine fallito." + +#: ../../mod/home.php:35 +#, php-format +msgid "Welcome to %s" +msgstr "Benvenuto su %s" + +#: ../../mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "Errore protocollo OpenID. Nessun ID ricevuto." + +#: ../../mod/openid.php:53 +msgid "" +"Account not found and OpenID registration is not permitted on this site." +msgstr "L'account non è stato trovato, e la registrazione via OpenID non è permessa su questo sito." + #: ../../mod/network.php:142 msgid "Search Results For:" msgstr "Cerca risultati per:" @@ -2878,15 +5965,6 @@ msgstr "Cerca risultati per:" msgid "Remove term" msgstr "Rimuovi termine" -#: ../../mod/network.php:194 ../../mod/search.php:30 -#: ../../include/features.php:42 -msgid "Saved Searches" -msgstr "Ricerche salvate" - -#: ../../mod/network.php:195 ../../include/group.php:275 -msgid "add" -msgstr "aggiungi" - #: ../../mod/network.php:356 msgid "Commented Order" msgstr "Ordina per commento" @@ -2967,14 +6045,575 @@ msgstr "I messaggi privati a questa persona potrebbero risultare visibili anche msgid "Invalid contact." msgstr "Contatto non valido." -#: ../../mod/allfriends.php:34 -#, php-format -msgid "Friends of %s" -msgstr "Amici di %s" +#: ../../mod/filer.php:30 +msgid "- select -" +msgstr "- seleziona -" -#: ../../mod/allfriends.php:40 -msgid "No friends to display." -msgstr "Nessun amico da visualizzare." +#: ../../mod/friendica.php:59 +msgid "This is Friendica, version" +msgstr "Questo è Friendica, versione" + +#: ../../mod/friendica.php:60 +msgid "running at web location" +msgstr "in esecuzione all'indirizzo web" + +#: ../../mod/friendica.php:62 +msgid "" +"Please visit Friendica.com to learn " +"more about the Friendica project." +msgstr "Visita Friendica.com per saperne di più sul progetto Friendica." + +#: ../../mod/friendica.php:64 +msgid "Bug reports and issues: please visit" +msgstr "Segnalazioni di bug e problemi: visita" + +#: ../../mod/friendica.php:65 +msgid "" +"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " +"dot com" +msgstr "Suggerimenti, lodi, donazioni, ecc - e-mail a \"Info\" at Friendica punto com" + +#: ../../mod/friendica.php:79 +msgid "Installed plugins/addons/apps:" +msgstr "Plugin/addon/applicazioni instalate" + +#: ../../mod/friendica.php:92 +msgid "No installed plugins/addons/apps" +msgstr "Nessun plugin/addons/applicazione installata" + +#: ../../mod/apps.php:11 +msgid "Applications" +msgstr "Applicazioni" + +#: ../../mod/apps.php:14 +msgid "No installed applications." +msgstr "Nessuna applicazione installata." + +#: ../../mod/photos.php:67 ../../mod/photos.php:1262 ../../mod/photos.php:1819 +msgid "Upload New Photos" +msgstr "Carica nuove foto" + +#: ../../mod/photos.php:144 +msgid "Contact information unavailable" +msgstr "I dati di questo contatto non sono disponibili" + +#: ../../mod/photos.php:165 +msgid "Album not found." +msgstr "Album non trovato." + +#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204 +msgid "Delete Album" +msgstr "Rimuovi album" + +#: ../../mod/photos.php:198 +msgid "Do you really want to delete this photo album and all its photos?" +msgstr "Vuoi davvero cancellare questo album e tutte le sue foto?" + +#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1515 +msgid "Delete Photo" +msgstr "Rimuovi foto" + +#: ../../mod/photos.php:287 +msgid "Do you really want to delete this photo?" +msgstr "Vuoi veramente cancellare questa foto?" + +#: ../../mod/photos.php:662 +#, php-format +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "%1$s è stato taggato in %2$s da %3$s" + +#: ../../mod/photos.php:662 +msgid "a photo" +msgstr "una foto" + +#: ../../mod/photos.php:767 +msgid "Image exceeds size limit of " +msgstr "L'immagine supera il limite di" + +#: ../../mod/photos.php:775 +msgid "Image file is empty." +msgstr "Il file dell'immagine è vuoto." + +#: ../../mod/photos.php:930 +msgid "No photos selected" +msgstr "Nessuna foto selezionata" + +#: ../../mod/photos.php:1094 +#, php-format +msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." +msgstr "Hai usato %1$.2f MBytes su %2$.2f disponibili." + +#: ../../mod/photos.php:1129 +msgid "Upload Photos" +msgstr "Carica foto" + +#: ../../mod/photos.php:1133 ../../mod/photos.php:1199 +msgid "New album name: " +msgstr "Nome nuovo album: " + +#: ../../mod/photos.php:1134 +msgid "or existing album name: " +msgstr "o nome di un album esistente: " + +#: ../../mod/photos.php:1135 +msgid "Do not show a status post for this upload" +msgstr "Non creare un post per questo upload" + +#: ../../mod/photos.php:1137 ../../mod/photos.php:1510 +msgid "Permissions" +msgstr "Permessi" + +#: ../../mod/photos.php:1148 +msgid "Private Photo" +msgstr "Foto privata" + +#: ../../mod/photos.php:1149 +msgid "Public Photo" +msgstr "Foto pubblica" + +#: ../../mod/photos.php:1212 +msgid "Edit Album" +msgstr "Modifica album" + +#: ../../mod/photos.php:1218 +msgid "Show Newest First" +msgstr "Mostra nuove foto per prime" + +#: ../../mod/photos.php:1220 +msgid "Show Oldest First" +msgstr "Mostra vecchie foto per prime" + +#: ../../mod/photos.php:1248 ../../mod/photos.php:1802 +msgid "View Photo" +msgstr "Vedi foto" + +#: ../../mod/photos.php:1294 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Permesso negato. L'accesso a questo elemento può essere limitato." + +#: ../../mod/photos.php:1296 +msgid "Photo not available" +msgstr "Foto non disponibile" + +#: ../../mod/photos.php:1352 +msgid "View photo" +msgstr "Vedi foto" + +#: ../../mod/photos.php:1352 +msgid "Edit photo" +msgstr "Modifica foto" + +#: ../../mod/photos.php:1353 +msgid "Use as profile photo" +msgstr "Usa come foto del profilo" + +#: ../../mod/photos.php:1378 +msgid "View Full Size" +msgstr "Vedi dimensione intera" + +#: ../../mod/photos.php:1457 +msgid "Tags: " +msgstr "Tag: " + +#: ../../mod/photos.php:1460 +msgid "[Remove any tag]" +msgstr "[Rimuovi tutti i tag]" + +#: ../../mod/photos.php:1500 +msgid "Rotate CW (right)" +msgstr "Ruota a destra" + +#: ../../mod/photos.php:1501 +msgid "Rotate CCW (left)" +msgstr "Ruota a sinistra" + +#: ../../mod/photos.php:1503 +msgid "New album name" +msgstr "Nuovo nome dell'album" + +#: ../../mod/photos.php:1506 +msgid "Caption" +msgstr "Titolo" + +#: ../../mod/photos.php:1508 +msgid "Add a Tag" +msgstr "Aggiungi tag" + +#: ../../mod/photos.php:1512 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" + +#: ../../mod/photos.php:1521 +msgid "Private photo" +msgstr "Foto privata" + +#: ../../mod/photos.php:1522 +msgid "Public photo" +msgstr "Foto pubblica" + +#: ../../mod/photos.php:1817 +msgid "Recent Photos" +msgstr "Foto recenti" + +#: ../../mod/bookmarklet.php:41 +msgid "The post was created" +msgstr "Il messaggio è stato creato" + +#: ../../mod/follow.php:27 +msgid "Contact added" +msgstr "Contatto aggiunto" + +#: ../../mod/uimport.php:66 +msgid "Move account" +msgstr "Muovi account" + +#: ../../mod/uimport.php:67 +msgid "You can import an account from another Friendica server." +msgstr "Puoi importare un account da un altro server Friendica." + +#: ../../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 "Devi esportare il tuo account dal vecchio server e caricarlo qui. Noi ricreeremo il tuo vecchio account qui, con tutti i tuoi contatti. Proveremo anche a informare i tuoi amici che ti sei spostato qui." + +#: ../../mod/uimport.php:69 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (statusnet/identi.ca) or from Diaspora" +msgstr "Questa funzione è sperimentale. Non possiamo importare i contatti dalla rete OStatus (status.net/identi.ca) o da Diaspora" + +#: ../../mod/uimport.php:70 +msgid "Account file" +msgstr "File account" + +#: ../../mod/uimport.php:70 +msgid "" +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" +msgstr "Per esportare il tuo account, vai su \"Impostazioni -> Esporta i tuoi dati personali\" e seleziona \"Esporta account\"" + +#: ../../mod/invite.php:27 +msgid "Total invitation limit exceeded." +msgstr "Limite totale degli inviti superato." + +#: ../../mod/invite.php:49 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s: non è un indirizzo email valido." + +#: ../../mod/invite.php:73 +msgid "Please join us on Friendica" +msgstr "Unisiciti a noi su Friendica" + +#: ../../mod/invite.php:84 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Limite degli inviti superato. Contatta l'amministratore del tuo sito." + +#: ../../mod/invite.php:89 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s: la consegna del messaggio fallita." + +#: ../../mod/invite.php:93 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d messaggio inviato." +msgstr[1] "%d messaggi inviati." + +#: ../../mod/invite.php:112 +msgid "You have no more invitations available" +msgstr "Non hai altri inviti disponibili" + +#: ../../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 "Visita %s per una lista di siti pubblici a cui puoi iscriverti. I membri Friendica su altri siti possono collegarsi uno con l'altro, come con membri di molti altri social network." + +#: ../../mod/invite.php:122 +#, php-format +msgid "" +"To accept this invitation, please visit and register at %s or any other " +"public Friendica website." +msgstr "Per accettare questo invito, visita e resitrati su %s o su un'altro sito web Friendica aperto al pubblico." + +#: ../../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 "I siti Friendica son tutti collegati tra loro per creare una grossa rete sociale rispettosa della privacy, posseduta e controllata dai suoi membri. I siti Friendica possono anche collegarsi a molti altri social network tradizionali. Vai su %s per una lista di siti Friendica alternativi a cui puoi iscriverti." + +#: ../../mod/invite.php:126 +msgid "" +"Our apologies. This system is not currently configured to connect with other" +" public sites or invite members." +msgstr "Ci scusiamo, questo sistema non è configurato per collegarsi con altri siti pubblici o per invitare membri." + +#: ../../mod/invite.php:132 +msgid "Send invitations" +msgstr "Invia inviti" + +#: ../../mod/invite.php:133 +msgid "Enter email addresses, one per line:" +msgstr "Inserisci gli indirizzi email, uno per riga:" + +#: ../../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 "Sei cordialmente invitato a unirti a me ed ad altri amici su Friendica, e ad aiutarci a creare una rete sociale migliore." + +#: ../../mod/invite.php:137 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "Sarà necessario fornire questo codice invito: $invite_code" + +#: ../../mod/invite.php:137 +msgid "" +"Once you have registered, please connect with me via my profile page at:" +msgstr "Una volta registrato, connettiti con me dal mio profilo:" + +#: ../../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 "Per maggiori informazioni sul progetto Friendica e perchè pensiamo sia importante, visita http://friendica.com" + +#: ../../mod/viewsrc.php:7 +msgid "Access denied." +msgstr "Accesso negato." + +#: ../../mod/lostpass.php:19 +msgid "No valid account found." +msgstr "Nessun account valido trovato." + +#: ../../mod/lostpass.php:35 +msgid "Password reset request issued. Check your email." +msgstr "La richiesta per reimpostare la password è stata inviata. Controlla la tua email." + +#: ../../mod/lostpass.php:42 +#, php-format +msgid "" +"\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." +msgstr "\nGentile %1$s,\n abbiamo ricevuto su \"%2$s\" una richiesta di resettare la password del tuo account. Per confermare questa richiesta, selezionate il link di conferma qui sotto o incollatelo nella barra indirizzo del vostro browser.\n\nSe NON hai richiesto questa modifica, NON selezionare il link e ignora o cancella questa email.\n\nLa tua password non verrà modificata a meno che non possiamo verificare che tu abbia effettivamente richiesto la modifica." + +#: ../../mod/lostpass.php:53 +#, php-format +msgid "" +"\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" +msgstr "\nSegui questo link per verificare la tua identità:\n\n%1$s\n\nRiceverai in un successivo messaggio la nuova password.\nPotrai cambiarla dalla pagina \"Impostazioni\" del tuo account dopo esserti autenticato.\n\nI dettagli del tuo account sono:\n Indirizzo del sito: %2$s\n Nome utente: %3$s" + +#: ../../mod/lostpass.php:72 +#, php-format +msgid "Password reset requested at %s" +msgstr "Richiesta reimpostazione password su %s" + +#: ../../mod/lostpass.php:92 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "La richiesta non può essere verificata. (Puoi averla già richiesta precendentemente). Reimpostazione password fallita." + +#: ../../mod/lostpass.php:110 +msgid "Your password has been reset as requested." +msgstr "La tua password è stata reimpostata come richiesto." + +#: ../../mod/lostpass.php:111 +msgid "Your new password is" +msgstr "La tua nuova password è" + +#: ../../mod/lostpass.php:112 +msgid "Save or copy your new password - and then" +msgstr "Salva o copia la tua nuova password, quindi" + +#: ../../mod/lostpass.php:113 +msgid "click here to login" +msgstr "clicca qui per entrare" + +#: ../../mod/lostpass.php:114 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Puoi cambiare la tua password dalla pagina Impostazioni dopo aver effettuato l'accesso." + +#: ../../mod/lostpass.php:125 +#, php-format +msgid "" +"\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" +msgstr "\nGentile %1$s,\n La tua password è stata modificata come richiesto.\nSalva questa password, o sostituiscila immediatamente con qualcosa che puoi ricordare." + +#: ../../mod/lostpass.php:131 +#, php-format +msgid "" +"\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" +msgstr "\nI dettagli del tuo account sono:\n\n Indirizzo del sito: %1$s\n Nome utente: %2$s\n Password: %3$s\n\nPuoi cambiare questa password dalla pagina \"Impostazioni\" del tuo account dopo esserti autenticato." + +#: ../../mod/lostpass.php:147 +#, php-format +msgid "Your password has been changed at %s" +msgstr "La tua password presso %s è stata cambiata" + +#: ../../mod/lostpass.php:159 +msgid "Forgot your Password?" +msgstr "Hai dimenticato la password?" + +#: ../../mod/lostpass.php:160 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Inserisci il tuo indirizzo email per reimpostare la password." + +#: ../../mod/lostpass.php:161 +msgid "Nickname or Email: " +msgstr "Nome utente o email: " + +#: ../../mod/lostpass.php:162 +msgid "Reset" +msgstr "Reimposta" + +#: ../../mod/babel.php:17 +msgid "Source (bbcode) text:" +msgstr "Testo sorgente (bbcode):" + +#: ../../mod/babel.php:23 +msgid "Source (Diaspora) text to convert to BBcode:" +msgstr "Testo sorgente (da Diaspora) da convertire in BBcode:" + +#: ../../mod/babel.php:31 +msgid "Source input: " +msgstr "Sorgente:" + +#: ../../mod/babel.php:35 +msgid "bb2html (raw HTML): " +msgstr "bb2html (HTML grezzo):" + +#: ../../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 "Sorgente (formato Diaspora):" + +#: ../../mod/babel.php:74 +msgid "diaspora2bb: " +msgstr "diaspora2bb: " + +#: ../../mod/tagrm.php:41 +msgid "Tag removed" +msgstr "Tag rimosso" + +#: ../../mod/tagrm.php:79 +msgid "Remove Item Tag" +msgstr "Rimuovi il tag" + +#: ../../mod/tagrm.php:81 +msgid "Select a tag to remove: " +msgstr "Seleziona un tag da rimuovere: " + +#: ../../mod/removeme.php:46 ../../mod/removeme.php:49 +msgid "Remove My Account" +msgstr "Rimuovi il mio account" + +#: ../../mod/removeme.php:47 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "Questo comando rimuoverà completamente il tuo account. Una volta rimosso non potrai più recuperarlo." + +#: ../../mod/removeme.php:48 +msgid "Please enter your password for verification:" +msgstr "Inserisci la tua password per verifica:" + +#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 +msgid "Invalid profile identifier." +msgstr "Indentificativo del profilo non valido." + +#: ../../mod/profperm.php:101 +msgid "Profile Visibility Editor" +msgstr "Modifica visibilità del profilo" + +#: ../../mod/profperm.php:114 +msgid "Visible To" +msgstr "Visibile a" + +#: ../../mod/profperm.php:130 +msgid "All Contacts (with secure profile access)" +msgstr "Tutti i contatti (con profilo ad accesso sicuro)" + +#: ../../mod/match.php:12 +msgid "Profile Match" +msgstr "Profili corrispondenti" + +#: ../../mod/match.php:20 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Nessuna parola chiave per l'abbinamento. Aggiungi parole chiave al tuo profilo predefinito." + +#: ../../mod/match.php:57 +msgid "is interested in:" +msgstr "è interessato a:" #: ../../mod/events.php:66 msgid "Event title and start time are required." @@ -2988,16 +6627,6 @@ msgstr "l j F" msgid "Edit event" msgstr "Modifca l'evento" -#: ../../mod/events.php:335 ../../include/text.php:1647 -#: ../../include/text.php:1657 -msgid "link to source" -msgstr "Collegamento all'originale" - -#: ../../mod/events.php:370 ../../boot.php:2143 ../../include/nav.php:80 -#: ../../view/theme/diabook/theme.php:127 -msgid "Events" -msgstr "Eventi" - #: ../../mod/events.php:371 msgid "Create New Event" msgstr "Crea un nuovo evento" @@ -3047,11 +6676,6 @@ msgstr "Visualizza con il fuso orario di chi legge" msgid "Description:" msgstr "Descrizione:" -#: ../../mod/events.php:471 ../../mod/directory.php:136 ../../boot.php:1648 -#: ../../include/bb2diaspora.php:170 ../../include/event.php:40 -msgid "Location:" -msgstr "Posizione:" - #: ../../mod/events.php:473 msgid "Title:" msgstr "Titolo:" @@ -3060,184 +6684,436 @@ msgstr "Titolo:" msgid "Share this event" msgstr "Condividi questo evento" -#: ../../mod/content.php:437 ../../mod/content.php:740 -#: ../../mod/photos.php:1653 ../../object/Item.php:129 -#: ../../include/conversation.php:613 -msgid "Select" -msgstr "Seleziona" +#: ../../mod/ping.php:240 +msgid "{0} wants to be your friend" +msgstr "{0} vuole essere tuo amico" -#: ../../mod/content.php:471 ../../mod/content.php:852 -#: ../../mod/content.php:853 ../../object/Item.php:326 -#: ../../object/Item.php:327 ../../include/conversation.php:654 +#: ../../mod/ping.php:245 +msgid "{0} sent you a message" +msgstr "{0} ti ha inviato un messaggio" + +#: ../../mod/ping.php:250 +msgid "{0} requested registration" +msgstr "{0} chiede la registrazione" + +#: ../../mod/ping.php:256 #, php-format -msgid "View %s's profile @ %s" -msgstr "Vedi il profilo di %s @ %s" +msgid "{0} commented %s's post" +msgstr "{0} ha commentato il post di %s" -#: ../../mod/content.php:481 ../../mod/content.php:864 -#: ../../object/Item.php:340 ../../include/conversation.php:674 +#: ../../mod/ping.php:261 #, php-format -msgid "%s from %s" -msgstr "%s da %s" +msgid "{0} liked %s's post" +msgstr "a {0} piace il post di %s" -#: ../../mod/content.php:497 ../../include/conversation.php:690 -msgid "View in context" -msgstr "Vedi nel contesto" - -#: ../../mod/content.php:603 ../../object/Item.php:387 +#: ../../mod/ping.php:266 #, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d commento" -msgstr[1] "%d commenti" +msgid "{0} disliked %s's post" +msgstr "a {0} non piace il post di %s" -#: ../../mod/content.php:605 ../../object/Item.php:389 -#: ../../object/Item.php:402 ../../include/text.php:1972 -msgid "comment" -msgid_plural "comments" -msgstr[0] "" -msgstr[1] "commento" +#: ../../mod/ping.php:271 +#, php-format +msgid "{0} is now friends with %s" +msgstr "{0} ora è amico di %s" -#: ../../mod/content.php:606 ../../boot.php:751 ../../object/Item.php:390 -#: ../../include/contact_widgets.php:205 -msgid "show more" -msgstr "mostra di più" +#: ../../mod/ping.php:276 +msgid "{0} posted" +msgstr "{0} ha inviato un nuovo messaggio" -#: ../../mod/content.php:620 ../../mod/photos.php:1359 -#: ../../object/Item.php:116 -msgid "Private Message" -msgstr "Messaggio privato" +#: ../../mod/ping.php:281 +#, php-format +msgid "{0} tagged %s's post with #%s" +msgstr "{0} ha taggato il post di %s con #%s" -#: ../../mod/content.php:684 ../../mod/photos.php:1542 -#: ../../object/Item.php:231 -msgid "I like this (toggle)" -msgstr "Mi piace (clic per cambiare)" +#: ../../mod/ping.php:287 +msgid "{0} mentioned you in a post" +msgstr "{0} ti ha citato in un post" -#: ../../mod/content.php:684 ../../object/Item.php:231 -msgid "like" -msgstr "mi piace" +#: ../../mod/mood.php:133 +msgid "Mood" +msgstr "Umore" -#: ../../mod/content.php:685 ../../mod/photos.php:1543 -#: ../../object/Item.php:232 -msgid "I don't like this (toggle)" -msgstr "Non mi piace (clic per cambiare)" +#: ../../mod/mood.php:134 +msgid "Set your current mood and tell your friends" +msgstr "Condividi il tuo umore con i tuoi amici" -#: ../../mod/content.php:685 ../../object/Item.php:232 -msgid "dislike" -msgstr "non mi piace" +#: ../../mod/search.php:174 ../../mod/community.php:62 +#: ../../mod/community.php:71 +msgid "No results." +msgstr "Nessun risultato." -#: ../../mod/content.php:687 ../../object/Item.php:234 -msgid "Share this" -msgstr "Condividi questo" +#: ../../mod/message.php:67 +msgid "Unable to locate contact information." +msgstr "Impossibile trovare le informazioni del contatto." -#: ../../mod/content.php:687 ../../object/Item.php:234 -msgid "share" -msgstr "condividi" +#: ../../mod/message.php:207 +msgid "Do you really want to delete this message?" +msgstr "Vuoi veramente cancellare questo messaggio?" -#: ../../mod/content.php:707 ../../mod/photos.php:1562 -#: ../../mod/photos.php:1606 ../../mod/photos.php:1694 -#: ../../object/Item.php:675 -msgid "This is you" -msgstr "Questo sei tu" +#: ../../mod/message.php:227 +msgid "Message deleted." +msgstr "Messaggio eliminato." -#: ../../mod/content.php:709 ../../mod/photos.php:1564 -#: ../../mod/photos.php:1608 ../../mod/photos.php:1696 ../../boot.php:750 -#: ../../object/Item.php:361 ../../object/Item.php:677 -msgid "Comment" -msgstr "Commento" +#: ../../mod/message.php:258 +msgid "Conversation removed." +msgstr "Conversazione rimossa." -#: ../../mod/content.php:711 ../../object/Item.php:679 -msgid "Bold" -msgstr "Grassetto" +#: ../../mod/message.php:371 +msgid "No messages." +msgstr "Nessun messaggio." -#: ../../mod/content.php:712 ../../object/Item.php:680 -msgid "Italic" -msgstr "Corsivo" +#: ../../mod/message.php:378 +#, php-format +msgid "Unknown sender - %s" +msgstr "Mittente sconosciuto - %s" -#: ../../mod/content.php:713 ../../object/Item.php:681 -msgid "Underline" -msgstr "Sottolineato" +#: ../../mod/message.php:381 +#, php-format +msgid "You and %s" +msgstr "Tu e %s" -#: ../../mod/content.php:714 ../../object/Item.php:682 -msgid "Quote" -msgstr "Citazione" +#: ../../mod/message.php:384 +#, php-format +msgid "%s and You" +msgstr "%s e Tu" -#: ../../mod/content.php:715 ../../object/Item.php:683 -msgid "Code" -msgstr "Codice" +#: ../../mod/message.php:405 ../../mod/message.php:546 +msgid "Delete conversation" +msgstr "Elimina la conversazione" -#: ../../mod/content.php:716 ../../object/Item.php:684 -msgid "Image" -msgstr "Immagine" +#: ../../mod/message.php:408 +msgid "D, d M Y - g:i A" +msgstr "D d M Y - G:i" -#: ../../mod/content.php:717 ../../object/Item.php:685 -msgid "Link" -msgstr "Link" +#: ../../mod/message.php:411 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d messaggio" +msgstr[1] "%d messaggi" -#: ../../mod/content.php:718 ../../object/Item.php:686 -msgid "Video" -msgstr "Video" +#: ../../mod/message.php:450 +msgid "Message not available." +msgstr "Messaggio non disponibile." -#: ../../mod/content.php:719 ../../mod/editpost.php:145 -#: ../../mod/photos.php:1566 ../../mod/photos.php:1610 -#: ../../mod/photos.php:1698 ../../object/Item.php:687 -#: ../../include/conversation.php:1126 -msgid "Preview" -msgstr "Anteprima" +#: ../../mod/message.php:520 +msgid "Delete message" +msgstr "Elimina il messaggio" -#: ../../mod/content.php:728 ../../mod/settings.php:676 -#: ../../object/Item.php:120 -msgid "Edit" -msgstr "Modifica" - -#: ../../mod/content.php:753 ../../object/Item.php:195 -msgid "add star" -msgstr "aggiungi a speciali" - -#: ../../mod/content.php:754 ../../object/Item.php:196 -msgid "remove star" -msgstr "rimuovi da speciali" - -#: ../../mod/content.php:755 ../../object/Item.php:197 -msgid "toggle star status" -msgstr "Inverti stato preferito" - -#: ../../mod/content.php:758 ../../object/Item.php:200 -msgid "starred" -msgstr "preferito" - -#: ../../mod/content.php:759 ../../object/Item.php:220 -msgid "add tag" -msgstr "aggiungi tag" - -#: ../../mod/content.php:763 ../../object/Item.php:133 -msgid "save to folder" -msgstr "salva nella cartella" - -#: ../../mod/content.php:854 ../../object/Item.php:328 -msgid "to" -msgstr "a" - -#: ../../mod/content.php:855 ../../object/Item.php:330 -msgid "Wall-to-Wall" -msgstr "Da bacheca a bacheca" - -#: ../../mod/content.php:856 ../../object/Item.php:331 -msgid "via Wall-To-Wall:" -msgstr "da bacheca a bacheca" - -#: ../../mod/removeme.php:46 ../../mod/removeme.php:49 -msgid "Remove My Account" -msgstr "Rimuovi il mio account" - -#: ../../mod/removeme.php:47 +#: ../../mod/message.php:548 msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "Questo comando rimuoverà completamente il tuo account. Una volta rimosso non potrai più recuperarlo." +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Nessuna comunicazione sicura disponibile, Potresti essere in grado di rispondere dalla pagina del profilo del mittente." -#: ../../mod/removeme.php:48 -msgid "Please enter your password for verification:" -msgstr "Inserisci la tua password per verifica:" +#: ../../mod/message.php:552 +msgid "Send Reply" +msgstr "Invia la risposta" + +#: ../../mod/community.php:23 +msgid "Not available." +msgstr "Non disponibile." + +#: ../../mod/profiles.php:18 ../../mod/profiles.php:133 +#: ../../mod/profiles.php:179 ../../mod/profiles.php:630 +#: ../../mod/dfrn_confirm.php:64 +msgid "Profile not found." +msgstr "Profilo non trovato." + +#: ../../mod/profiles.php:37 +msgid "Profile deleted." +msgstr "Profilo elminato." + +#: ../../mod/profiles.php:55 ../../mod/profiles.php:89 +msgid "Profile-" +msgstr "Profilo-" + +#: ../../mod/profiles.php:74 ../../mod/profiles.php:117 +msgid "New profile created." +msgstr "Il nuovo profilo è stato creato." + +#: ../../mod/profiles.php:95 +msgid "Profile unavailable to clone." +msgstr "Impossibile duplicare il profilo." + +#: ../../mod/profiles.php:189 +msgid "Profile Name is required." +msgstr "Il nome profilo è obbligatorio ." + +#: ../../mod/profiles.php:340 +msgid "Marital Status" +msgstr "Stato civile" + +#: ../../mod/profiles.php:344 +msgid "Romantic Partner" +msgstr "Partner romantico" + +#: ../../mod/profiles.php:348 +msgid "Likes" +msgstr "Mi piace" + +#: ../../mod/profiles.php:352 +msgid "Dislikes" +msgstr "Non mi piace" + +#: ../../mod/profiles.php:356 +msgid "Work/Employment" +msgstr "Lavoro/Impiego" + +#: ../../mod/profiles.php:359 +msgid "Religion" +msgstr "Religione" + +#: ../../mod/profiles.php:363 +msgid "Political Views" +msgstr "Orientamento Politico" + +#: ../../mod/profiles.php:367 +msgid "Gender" +msgstr "Sesso" + +#: ../../mod/profiles.php:371 +msgid "Sexual Preference" +msgstr "Preferenza sessuale" + +#: ../../mod/profiles.php:375 +msgid "Homepage" +msgstr "Homepage" + +#: ../../mod/profiles.php:379 ../../mod/profiles.php:698 +msgid "Interests" +msgstr "Interessi" + +#: ../../mod/profiles.php:383 +msgid "Address" +msgstr "Indirizzo" + +#: ../../mod/profiles.php:390 ../../mod/profiles.php:694 +msgid "Location" +msgstr "Posizione" + +#: ../../mod/profiles.php:473 +msgid "Profile updated." +msgstr "Profilo aggiornato." + +#: ../../mod/profiles.php:568 +msgid " and " +msgstr "e " + +#: ../../mod/profiles.php:576 +msgid "public profile" +msgstr "profilo pubblico" + +#: ../../mod/profiles.php:579 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s ha cambiato %2$s in “%3$s”" + +#: ../../mod/profiles.php:580 +#, php-format +msgid " - Visit %1$s's %2$s" +msgstr "- Visita %2$s di %1$s" + +#: ../../mod/profiles.php:583 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s ha un %2$s aggiornato. Ha cambiato %3$s" + +#: ../../mod/profiles.php:658 +msgid "Hide contacts and friends:" +msgstr "Nascondi contatti:" + +#: ../../mod/profiles.php:663 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "Nascondi la tua lista di contatti/amici ai visitatori di questo profilo?" + +#: ../../mod/profiles.php:685 +msgid "Edit Profile Details" +msgstr "Modifica i dettagli del profilo" + +#: ../../mod/profiles.php:687 +msgid "Change Profile Photo" +msgstr "Cambia la foto del profilo" + +#: ../../mod/profiles.php:688 +msgid "View this profile" +msgstr "Visualizza questo profilo" + +#: ../../mod/profiles.php:689 +msgid "Create a new profile using these settings" +msgstr "Crea un nuovo profilo usando queste impostazioni" + +#: ../../mod/profiles.php:690 +msgid "Clone this profile" +msgstr "Clona questo profilo" + +#: ../../mod/profiles.php:691 +msgid "Delete this profile" +msgstr "Elimina questo profilo" + +#: ../../mod/profiles.php:692 +msgid "Basic information" +msgstr "Informazioni di base" + +#: ../../mod/profiles.php:693 +msgid "Profile picture" +msgstr "Immagine del profilo" + +#: ../../mod/profiles.php:695 +msgid "Preferences" +msgstr "Preferenze" + +#: ../../mod/profiles.php:696 +msgid "Status information" +msgstr "Informazioni stato" + +#: ../../mod/profiles.php:697 +msgid "Additional information" +msgstr "Informazioni aggiuntive" + +#: ../../mod/profiles.php:699 ../../mod/newmember.php:36 +#: ../../mod/profile_photo.php:244 +msgid "Upload Profile Photo" +msgstr "Carica la foto del profilo" + +#: ../../mod/profiles.php:700 +msgid "Profile Name:" +msgstr "Nome del profilo:" + +#: ../../mod/profiles.php:701 +msgid "Your Full Name:" +msgstr "Il tuo nome completo:" + +#: ../../mod/profiles.php:702 +msgid "Title/Description:" +msgstr "Breve descrizione (es. titolo, posizione, altro):" + +#: ../../mod/profiles.php:703 +msgid "Your Gender:" +msgstr "Il tuo sesso:" + +#: ../../mod/profiles.php:704 +#, php-format +msgid "Birthday (%s):" +msgstr "Compleanno (%s)" + +#: ../../mod/profiles.php:705 +msgid "Street Address:" +msgstr "Indirizzo (via/piazza):" + +#: ../../mod/profiles.php:706 +msgid "Locality/City:" +msgstr "Località:" + +#: ../../mod/profiles.php:707 +msgid "Postal/Zip Code:" +msgstr "CAP:" + +#: ../../mod/profiles.php:708 +msgid "Country:" +msgstr "Nazione:" + +#: ../../mod/profiles.php:709 +msgid "Region/State:" +msgstr "Regione/Stato:" + +#: ../../mod/profiles.php:710 +msgid " Marital Status:" +msgstr " Stato sentimentale:" + +#: ../../mod/profiles.php:711 +msgid "Who: (if applicable)" +msgstr "Con chi: (se possibile)" + +#: ../../mod/profiles.php:712 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Esempio: cathy123, Cathy Williams, cathy@example.com" + +#: ../../mod/profiles.php:713 +msgid "Since [date]:" +msgstr "Dal [data]:" + +#: ../../mod/profiles.php:715 +msgid "Homepage URL:" +msgstr "Homepage:" + +#: ../../mod/profiles.php:718 +msgid "Religious Views:" +msgstr "Orientamento religioso:" + +#: ../../mod/profiles.php:719 +msgid "Public Keywords:" +msgstr "Parole chiave visibili a tutti:" + +#: ../../mod/profiles.php:720 +msgid "Private Keywords:" +msgstr "Parole chiave private:" + +#: ../../mod/profiles.php:723 +msgid "Example: fishing photography software" +msgstr "Esempio: pesca fotografia programmazione" + +#: ../../mod/profiles.php:724 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "(E' utilizzato per suggerire potenziali amici, può essere visto da altri)" + +#: ../../mod/profiles.php:725 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Usato per cercare tra i profili, non è mai visibile agli altri)" + +#: ../../mod/profiles.php:726 +msgid "Tell us about yourself..." +msgstr "Raccontaci di te..." + +#: ../../mod/profiles.php:727 +msgid "Hobbies/Interests" +msgstr "Hobby/interessi" + +#: ../../mod/profiles.php:728 +msgid "Contact information and Social Networks" +msgstr "Informazioni su contatti e social network" + +#: ../../mod/profiles.php:729 +msgid "Musical interests" +msgstr "Interessi musicali" + +#: ../../mod/profiles.php:730 +msgid "Books, literature" +msgstr "Libri, letteratura" + +#: ../../mod/profiles.php:731 +msgid "Television" +msgstr "Televisione" + +#: ../../mod/profiles.php:732 +msgid "Film/dance/culture/entertainment" +msgstr "Film/danza/cultura/intrattenimento" + +#: ../../mod/profiles.php:733 +msgid "Love/romance" +msgstr "Amore" + +#: ../../mod/profiles.php:734 +msgid "Work/employment" +msgstr "Lavoro/impiego" + +#: ../../mod/profiles.php:735 +msgid "School/education" +msgstr "Scuola/educazione" + +#: ../../mod/profiles.php:740 +msgid "" +"This is your public profile.
    It may " +"be visible to anybody using the internet." +msgstr "Questo è il tuo profilo publico.
    Potrebbe essere visto da chiunque attraverso internet." + +#: ../../mod/profiles.php:750 ../../mod/directory.php:113 +msgid "Age: " +msgstr "Età : " + +#: ../../mod/profiles.php:803 +msgid "Edit/Manage Profiles" +msgstr "Modifica / Gestisci profili" #: ../../mod/install.php:117 msgid "Friendica Communications Server - Setup" @@ -3530,1013 +7406,482 @@ msgid "" "poller." msgstr "IMPORTANTE: Devi impostare [manualmente] la pianificazione del poller." -#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112 -#, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "Numero giornaliero di messaggi per %s superato. Invio fallito." - -#: ../../mod/wallmessage.php:59 -msgid "Unable to check your home location." -msgstr "Impossibile controllare la tua posizione di origine." - -#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 -msgid "No recipient." -msgstr "Nessun destinatario." - -#: ../../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 "Se vuoi che %s ti risponda, controlla che le tue impostazioni di privacy permettano la ricezione di messaggi privati da mittenti sconosciuti." - -#: ../../mod/help.php:79 +#: ../../mod/help.php:31 msgid "Help:" msgstr "Guida:" -#: ../../mod/help.php:84 ../../include/nav.php:114 -msgid "Help" -msgstr "Guida" +#: ../../mod/crepair.php:106 +msgid "Contact settings applied." +msgstr "Contatto modificato." -#: ../../mod/help.php:90 ../../index.php:256 -msgid "Not Found" -msgstr "Non trovato" +#: ../../mod/crepair.php:108 +msgid "Contact update failed." +msgstr "Le modifiche al contatto non sono state salvate." -#: ../../mod/help.php:93 ../../index.php:259 -msgid "Page not found." -msgstr "Pagina non trovata." +#: ../../mod/crepair.php:139 +msgid "Repair Contact Settings" +msgstr "Ripara il contatto" + +#: ../../mod/crepair.php:141 +msgid "" +"WARNING: This is highly advanced and if you enter incorrect" +" information your communications with this contact may stop working." +msgstr "ATTENZIONE: Queste sono impostazioni avanzate e se inserisci informazioni errate le tue comunicazioni con questo contatto potrebbero non funzionare più" + +#: ../../mod/crepair.php:142 +msgid "" +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "Usa ora il tasto 'Indietro' del tuo browser se non sei sicuro di cosa fare in questa pagina." + +#: ../../mod/crepair.php:148 +msgid "Return to contact editor" +msgstr "Ritorna alla modifica contatto" + +#: ../../mod/crepair.php:159 ../../mod/crepair.php:161 +msgid "No mirroring" +msgstr "Non duplicare" + +#: ../../mod/crepair.php:159 +msgid "Mirror as forwarded posting" +msgstr "Duplica come messaggi ricondivisi" + +#: ../../mod/crepair.php:159 ../../mod/crepair.php:161 +msgid "Mirror as my own posting" +msgstr "Duplica come miei messaggi" + +#: ../../mod/crepair.php:166 +msgid "Account Nickname" +msgstr "Nome utente" + +#: ../../mod/crepair.php:167 +msgid "@Tagname - overrides Name/Nickname" +msgstr "@TagName - al posto del nome utente" + +#: ../../mod/crepair.php:168 +msgid "Account URL" +msgstr "URL dell'utente" + +#: ../../mod/crepair.php:169 +msgid "Friend Request URL" +msgstr "URL Richiesta Amicizia" + +#: ../../mod/crepair.php:170 +msgid "Friend Confirm URL" +msgstr "URL Conferma Amicizia" + +#: ../../mod/crepair.php:171 +msgid "Notification Endpoint URL" +msgstr "URL Notifiche" + +#: ../../mod/crepair.php:172 +msgid "Poll/Feed URL" +msgstr "URL Feed" + +#: ../../mod/crepair.php:173 +msgid "New photo from this URL" +msgstr "Nuova foto da questo URL" + +#: ../../mod/crepair.php:174 +msgid "Remote Self" +msgstr "Io remoto" + +#: ../../mod/crepair.php:176 +msgid "Mirror postings from this contact" +msgstr "Ripeti i messaggi di questo contatto" + +#: ../../mod/crepair.php:176 +msgid "" +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." +msgstr "Imposta questo contatto come 'io remoto', questo farà si che friendica reinvii i nuovi messaggi da questo contatto." + +#: ../../mod/newmember.php:6 +msgid "Welcome to Friendica" +msgstr "Benvenuto su Friendica" + +#: ../../mod/newmember.php:8 +msgid "New Member Checklist" +msgstr "Cose da fare per i Nuovi Utenti" + +#: ../../mod/newmember.php:12 +msgid "" +"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." +msgstr "Vorremmo offrirti qualche trucco e dei link alla guida per aiutarti ad avere un'esperienza divertente. Clicca su un qualsiasi elemento per visitare la relativa pagina. Un link a questa pagina sarà visibile nella tua home per due settimane dopo la tua registrazione." + +#: ../../mod/newmember.php:14 +msgid "Getting Started" +msgstr "Come Iniziare" + +#: ../../mod/newmember.php:18 +msgid "Friendica Walk-Through" +msgstr "Friendica Passo-Passo" + +#: ../../mod/newmember.php:18 +msgid "" +"On your Quick Start page - find a brief introduction to your " +"profile and network tabs, make some new connections, and find some groups to" +" join." +msgstr "Sulla tua pagina Quick Start - veloce introduzione alla tua pagina profilo e alla pagina Rete, fai qualche nuova amicizia, e trova qualche gruppo a cui unirti." + +#: ../../mod/newmember.php:26 +msgid "Go to Your Settings" +msgstr "Vai alle tue Impostazioni" + +#: ../../mod/newmember.php:26 +msgid "" +"On your Settings page - change your initial password. Also make a " +"note of your Identity Address. This looks just like an email address - and " +"will be useful in making friends on the free social web." +msgstr "Nella tua pagina Impostazioni - cambia la tua password iniziale. Prendi anche nota del tuo Indirizzo Identità. Assomiglia a un indirizzo email e sarà utile per stringere amicizie nel web sociale libero." + +#: ../../mod/newmember.php:28 +msgid "" +"Review the other settings, particularly the privacy settings. An unpublished" +" directory listing is like having an unlisted phone number. In general, you " +"should probably publish your listing - unless all of your friends and " +"potential friends know exactly how to find you." +msgstr "Guarda le altre impostazioni, in particolare le impostazioni della privacy. Un profilo non pubblicato è come un numero di telefono non in elenco. In genere, dovresti pubblicare il tuo profilo - a meno che tutti i tuoi amici e potenziali tali sappiano esattamente come trovarti." + +#: ../../mod/newmember.php:36 +msgid "" +"Upload a profile photo if you have not done so already. Studies have shown " +"that people with real photos of themselves are ten times more likely to make" +" friends than people who do not." +msgstr "Carica una foto del profilo se non l'hai ancora fatto. Studi hanno mostrato che persone che hanno vere foto di se stessi hanno dieci volte più probabilità di fare amicizie rispetto alle persone che non ce l'hanno." + +#: ../../mod/newmember.php:38 +msgid "Edit Your Profile" +msgstr "Modifica il tuo Profilo" + +#: ../../mod/newmember.php:38 +msgid "" +"Edit your default profile to your liking. Review the " +"settings for hiding your list of friends and hiding the profile from unknown" +" visitors." +msgstr "Modifica il tuo profilo predefinito a piacimento. Rivedi le impostazioni per nascondere la tua lista di amici e nascondere il profilo ai visitatori sconosciuti." + +#: ../../mod/newmember.php:40 +msgid "Profile Keywords" +msgstr "Parole chiave del profilo" + +#: ../../mod/newmember.php:40 +msgid "" +"Set some public keywords for your default profile which describe your " +"interests. We may be able to find other people with similar interests and " +"suggest friendships." +msgstr "Inserisci qualche parola chiave pubblica nel tuo profilo predefinito che descriva i tuoi interessi. Potremmo essere in grado di trovare altre persone con interessi similari e suggerirti delle amicizie." + +#: ../../mod/newmember.php:44 +msgid "Connecting" +msgstr "Collegarsi" + +#: ../../mod/newmember.php:49 +msgid "" +"Authorise the Facebook Connector if you currently have a Facebook account " +"and we will (optionally) import all your Facebook friends and conversations." +msgstr "Autorizza il Facebook Connector se hai un account Facebook, e noi (opzionalmente) importeremo tuti i tuoi amici e le tue conversazioni da Facebook." + +#: ../../mod/newmember.php:51 +msgid "" +"If this is your own personal server, installing the Facebook addon " +"may ease your transition to the free social web." +msgstr "SeAdd New Contact dialog." +msgstr "La tua pagina Contatti è il mezzo per gestire le amicizie e collegarsi con amici su altre reti. Di solito, basta inserire l'indirizzo nel campo Aggiungi Nuovo Contatto" + +#: ../../mod/newmember.php:60 +msgid "Go to Your Site's Directory" +msgstr "Vai all'Elenco del tuo sito" + +#: ../../mod/newmember.php:60 +msgid "" +"The Directory page lets you find other people in this network or other " +"federated sites. Look for a Connect or Follow link on " +"their profile page. Provide your own Identity Address if requested." +msgstr "La pagina Elenco ti permette di trovare altre persone in questa rete o in altri siti. Cerca un link Connetti o Segui nella loro pagina del profilo. Inserisci il tuo Indirizzo Identità, se richiesto." + +#: ../../mod/newmember.php:62 +msgid "Finding New People" +msgstr "Trova nuove persone" + +#: ../../mod/newmember.php:62 +msgid "" +"On the side panel of the Contacts page are several tools to find new " +"friends. We can match people by interest, look up people by name or " +"interest, and provide suggestions based on network relationships. On a brand" +" new site, friend suggestions will usually begin to be populated within 24 " +"hours." +msgstr "Nel pannello laterale nella pagina \"Contatti\", ci sono diversi strumenti per trovare nuovi amici. Possiamo confrontare le persone per interessi, cercare le persone per nome e fornire suggerimenti basati sui tuoi contatti esistenti. Su un sito nuovo, i suggerimenti sono di solito presenti dopo 24 ore." + +#: ../../mod/newmember.php:70 +msgid "Group Your Contacts" +msgstr "Raggruppa i tuoi contatti" + +#: ../../mod/newmember.php:70 +msgid "" +"Once you have made some friends, organize them into private conversation " +"groups from the sidebar of your Contacts page and then you can interact with" +" each group privately on your Network page." +msgstr "Quando avrai alcuni amici, organizzali in gruppi di conversazioni private dalla barra laterale della tua pagina Contatti. Potrai interagire privatamente con ogni gruppo nella tua pagina Rete" + +#: ../../mod/newmember.php:73 +msgid "Why Aren't My Posts Public?" +msgstr "Perchè i miei post non sono pubblici?" + +#: ../../mod/newmember.php:73 +msgid "" +"Friendica respects your privacy. By default, your posts will only show up to" +" people you've added as friends. For more information, see the help section " +"from the link above." +msgstr "Friendica rispetta la tua provacy. Per impostazione predefinita, i tuoi post sono mostrati solo alle persone che hai aggiunto come amici. Per maggiori informazioni guarda la sezione della guida dal link qui sopra." + +#: ../../mod/newmember.php:78 +msgid "Getting Help" +msgstr "Ottenere Aiuto" + +#: ../../mod/newmember.php:82 +msgid "Go to the Help Section" +msgstr "Vai alla sezione Guida" + +#: ../../mod/newmember.php:82 +msgid "" +"Our help pages may be consulted for detail on other program" +" features and resources." +msgstr "Le nostre pagine della guida possono essere consultate per avere dettagli su altre caratteristiche del programma e altre risorse." + +#: ../../mod/poke.php:192 +msgid "Poke/Prod" +msgstr "Tocca/Pungola" + +#: ../../mod/poke.php:193 +msgid "poke, prod or do other things to somebody" +msgstr "tocca, pungola o fai altre cose a qualcuno" + +#: ../../mod/poke.php:194 +msgid "Recipient" +msgstr "Destinatario" + +#: ../../mod/poke.php:195 +msgid "Choose what you wish to do to recipient" +msgstr "Scegli cosa vuoi fare al destinatario" + +#: ../../mod/poke.php:198 +msgid "Make this post private" +msgstr "Rendi questo post privato" + +#: ../../mod/display.php:496 +msgid "Item has been removed." +msgstr "L'oggetto è stato rimosso." + +#: ../../mod/subthread.php:103 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s sta seguendo %3$s di %2$s" #: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536 #, php-format msgid "%1$s welcomes %2$s" msgstr "%s dà il benvenuto a %s" -#: ../../mod/home.php:35 -#, php-format -msgid "Welcome to %s" -msgstr "Benvenuto su %s" - -#: ../../mod/wall_attach.php:75 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "Mi spiace, forse il fie che stai caricando è più grosso di quanto la configurazione di PHP permetta" - -#: ../../mod/wall_attach.php:75 -msgid "Or - did you try to upload an empty file?" -msgstr "O.. non avrai provato a caricare un file vuoto?" - -#: ../../mod/wall_attach.php:81 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "Il file supera la dimensione massima di %d" - -#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133 -msgid "File upload failed." -msgstr "Caricamento del file non riuscito." - -#: ../../mod/match.php:12 -msgid "Profile Match" -msgstr "Profili corrispondenti" - -#: ../../mod/match.php:20 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Nessuna parola chiave per l'abbinamento. Aggiungi parole chiave al tuo profilo predefinito." - -#: ../../mod/match.php:57 -msgid "is interested in:" -msgstr "è interessato a:" - -#: ../../mod/match.php:58 ../../mod/suggest.php:90 ../../boot.php:1568 -#: ../../include/contact_widgets.php:10 -msgid "Connect" -msgstr "Connetti" - -#: ../../mod/share.php:44 -msgid "link" -msgstr "collegamento" - -#: ../../mod/community.php:23 -msgid "Not available." -msgstr "Non disponibile." - -#: ../../mod/community.php:32 ../../include/nav.php:129 -#: ../../include/nav.php:131 ../../view/theme/diabook/theme.php:129 -msgid "Community" -msgstr "Comunità" - -#: ../../mod/community.php:62 ../../mod/community.php:71 -#: ../../mod/search.php:168 ../../mod/search.php:192 -msgid "No results." -msgstr "Nessun risultato." - -#: ../../mod/settings.php:29 ../../mod/photos.php:80 -msgid "everybody" -msgstr "tutti" - -#: ../../mod/settings.php:41 -msgid "Additional features" -msgstr "Funzionalità aggiuntive" - -#: ../../mod/settings.php:46 -msgid "Display" -msgstr "Visualizzazione" - -#: ../../mod/settings.php:52 ../../mod/settings.php:780 -msgid "Social Networks" -msgstr "Social Networks" - -#: ../../mod/settings.php:62 ../../include/nav.php:170 -msgid "Delegations" -msgstr "Delegazioni" - -#: ../../mod/settings.php:67 -msgid "Connected apps" -msgstr "Applicazioni collegate" - -#: ../../mod/settings.php:72 ../../mod/uexport.php:85 -msgid "Export personal data" -msgstr "Esporta dati personali" - -#: ../../mod/settings.php:77 -msgid "Remove account" -msgstr "Rimuovi account" - -#: ../../mod/settings.php:129 -msgid "Missing some important data!" -msgstr "Mancano alcuni dati importanti!" - -#: ../../mod/settings.php:238 -msgid "Failed to connect with email account using the settings provided." -msgstr "Impossibile collegarsi all'account email con i parametri forniti." - -#: ../../mod/settings.php:243 -msgid "Email settings updated." -msgstr "Impostazioni e-mail aggiornate." - -#: ../../mod/settings.php:258 -msgid "Features updated" -msgstr "Funzionalità aggiornate" - -#: ../../mod/settings.php:321 -msgid "Relocate message has been send to your contacts" -msgstr "Il messaggio di trasloco è stato inviato ai tuoi contatti" - -#: ../../mod/settings.php:335 -msgid "Passwords do not match. Password unchanged." -msgstr "Le password non corrispondono. Password non cambiata." - -#: ../../mod/settings.php:340 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Le password non possono essere vuote. Password non cambiata." - -#: ../../mod/settings.php:348 -msgid "Wrong password." -msgstr "Password sbagliata." - -#: ../../mod/settings.php:359 -msgid "Password changed." -msgstr "Password cambiata." - -#: ../../mod/settings.php:361 -msgid "Password update failed. Please try again." -msgstr "Aggiornamento password fallito. Prova ancora." - -#: ../../mod/settings.php:428 -msgid " Please use a shorter name." -msgstr " Usa un nome più corto." - -#: ../../mod/settings.php:430 -msgid " Name too short." -msgstr " Nome troppo corto." - -#: ../../mod/settings.php:439 -msgid "Wrong Password" -msgstr "Password Sbagliata" - -#: ../../mod/settings.php:444 -msgid " Not valid email." -msgstr " Email non valida." - -#: ../../mod/settings.php:450 -msgid " Cannot change to that email." -msgstr "Non puoi usare quella email." - -#: ../../mod/settings.php:506 -msgid "Private forum has no privacy permissions. Using default privacy group." -msgstr "Il forum privato non ha permessi di privacy. Uso il gruppo di privacy predefinito." - -#: ../../mod/settings.php:510 -msgid "Private forum has no privacy permissions and no default privacy group." -msgstr "Il gruppo privato non ha permessi di privacy e nessun gruppo di privacy predefinito." - -#: ../../mod/settings.php:540 -msgid "Settings updated." -msgstr "Impostazioni aggiornate." - -#: ../../mod/settings.php:613 ../../mod/settings.php:639 -#: ../../mod/settings.php:675 -msgid "Add application" -msgstr "Aggiungi applicazione" - -#: ../../mod/settings.php:617 ../../mod/settings.php:643 -msgid "Consumer Key" -msgstr "Consumer Key" - -#: ../../mod/settings.php:618 ../../mod/settings.php:644 -msgid "Consumer Secret" -msgstr "Consumer Secret" - -#: ../../mod/settings.php:619 ../../mod/settings.php:645 -msgid "Redirect" -msgstr "Redirect" - -#: ../../mod/settings.php:620 ../../mod/settings.php:646 -msgid "Icon url" -msgstr "Url icona" - -#: ../../mod/settings.php:631 -msgid "You can't edit this application." -msgstr "Non puoi modificare questa applicazione." - -#: ../../mod/settings.php:674 -msgid "Connected Apps" -msgstr "Applicazioni Collegate" - -#: ../../mod/settings.php:678 -msgid "Client key starts with" -msgstr "Chiave del client inizia con" - -#: ../../mod/settings.php:679 -msgid "No name" -msgstr "Nessun nome" - -#: ../../mod/settings.php:680 -msgid "Remove authorization" -msgstr "Rimuovi l'autorizzazione" - -#: ../../mod/settings.php:692 -msgid "No Plugin settings configured" -msgstr "Nessun plugin ha impostazioni modificabili" - -#: ../../mod/settings.php:700 -msgid "Plugin Settings" -msgstr "Impostazioni plugin" - -#: ../../mod/settings.php:714 -msgid "Off" -msgstr "Spento" - -#: ../../mod/settings.php:714 -msgid "On" -msgstr "Acceso" - -#: ../../mod/settings.php:722 -msgid "Additional Features" -msgstr "Funzionalità aggiuntive" - -#: ../../mod/settings.php:736 ../../mod/settings.php:737 -#, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "Il supporto integrato per la connettività con %s è %s" - -#: ../../mod/settings.php:736 ../../mod/dfrn_request.php:838 -#: ../../include/contact_selectors.php:80 -msgid "Diaspora" -msgstr "Diaspora" - -#: ../../mod/settings.php:736 ../../mod/settings.php:737 -msgid "enabled" -msgstr "abilitato" - -#: ../../mod/settings.php:736 ../../mod/settings.php:737 -msgid "disabled" -msgstr "disabilitato" - -#: ../../mod/settings.php:737 -msgid "StatusNet" -msgstr "StatusNet" - -#: ../../mod/settings.php:773 -msgid "Email access is disabled on this site." -msgstr "L'accesso email è disabilitato su questo sito." - -#: ../../mod/settings.php:785 -msgid "Email/Mailbox Setup" -msgstr "Impostazioni email" - -#: ../../mod/settings.php:786 +#: ../../mod/dfrn_confirm.php:121 msgid "" -"If you wish to communicate with email contacts using this service " -"(optional), please specify how to connect to your mailbox." -msgstr "Se vuoi comunicare con i contatti email usando questo servizio, specifica come collegarti alla tua casella di posta. (opzionale)" +"This may occasionally happen if contact was requested by both persons and it" +" has already been approved." +msgstr "Questo puo' accadere occasionalmente se la richiesta di contatto era stata inviata da entrambe le persone e già approvata." -#: ../../mod/settings.php:787 -msgid "Last successful email check:" -msgstr "Ultimo controllo email eseguito con successo:" +#: ../../mod/dfrn_confirm.php:240 +msgid "Response from remote site was not understood." +msgstr "Errore di comunicazione con l'altro sito." -#: ../../mod/settings.php:789 -msgid "IMAP server name:" -msgstr "Nome server IMAP:" +#: ../../mod/dfrn_confirm.php:249 ../../mod/dfrn_confirm.php:254 +msgid "Unexpected response from remote site: " +msgstr "La risposta dell'altro sito non può essere gestita: " -#: ../../mod/settings.php:790 -msgid "IMAP port:" -msgstr "Porta IMAP:" +#: ../../mod/dfrn_confirm.php:263 +msgid "Confirmation completed successfully." +msgstr "Conferma completata con successo." -#: ../../mod/settings.php:791 -msgid "Security:" -msgstr "Sicurezza:" +#: ../../mod/dfrn_confirm.php:265 ../../mod/dfrn_confirm.php:279 +#: ../../mod/dfrn_confirm.php:286 +msgid "Remote site reported: " +msgstr "Il sito remoto riporta: " -#: ../../mod/settings.php:791 ../../mod/settings.php:796 -msgid "None" -msgstr "Nessuna" +#: ../../mod/dfrn_confirm.php:277 +msgid "Temporary failure. Please wait and try again." +msgstr "Problema temporaneo. Attendi e riprova." -#: ../../mod/settings.php:792 -msgid "Email login name:" -msgstr "Nome utente email:" +#: ../../mod/dfrn_confirm.php:284 +msgid "Introduction failed or was revoked." +msgstr "La presentazione ha generato un errore o è stata revocata." -#: ../../mod/settings.php:793 -msgid "Email password:" -msgstr "Password email:" +#: ../../mod/dfrn_confirm.php:429 +msgid "Unable to set contact photo." +msgstr "Impossibile impostare la foto del contatto." -#: ../../mod/settings.php:794 -msgid "Reply-to address:" -msgstr "Indirizzo di risposta:" - -#: ../../mod/settings.php:795 -msgid "Send public posts to all email contacts:" -msgstr "Invia i messaggi pubblici ai contatti email:" - -#: ../../mod/settings.php:796 -msgid "Action after import:" -msgstr "Azione post importazione:" - -#: ../../mod/settings.php:796 -msgid "Mark as seen" -msgstr "Segna come letto" - -#: ../../mod/settings.php:796 -msgid "Move to folder" -msgstr "Sposta nella cartella" - -#: ../../mod/settings.php:797 -msgid "Move to folder:" -msgstr "Sposta nella cartella:" - -#: ../../mod/settings.php:878 -msgid "Display Settings" -msgstr "Impostazioni Grafiche" - -#: ../../mod/settings.php:884 ../../mod/settings.php:899 -msgid "Display Theme:" -msgstr "Tema:" - -#: ../../mod/settings.php:885 -msgid "Mobile Theme:" -msgstr "Tema mobile:" - -#: ../../mod/settings.php:886 -msgid "Update browser every xx seconds" -msgstr "Aggiorna il browser ogni x secondi" - -#: ../../mod/settings.php:886 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Minimo 10 secondi, nessun limite massimo" - -#: ../../mod/settings.php:887 -msgid "Number of items to display per page:" -msgstr "Numero di elementi da mostrare per pagina:" - -#: ../../mod/settings.php:887 ../../mod/settings.php:888 -msgid "Maximum of 100 items" -msgstr "Massimo 100 voci" - -#: ../../mod/settings.php:888 -msgid "Number of items to display per page when viewed from mobile device:" -msgstr "Numero di voci da visualizzare per pagina quando si utilizza un dispositivo mobile:" - -#: ../../mod/settings.php:889 -msgid "Don't show emoticons" -msgstr "Non mostrare le emoticons" - -#: ../../mod/settings.php:890 -msgid "Don't show notices" -msgstr "Non mostrare gli avvisi" - -#: ../../mod/settings.php:891 -msgid "Infinite scroll" -msgstr "Scroll infinito" - -#: ../../mod/settings.php:892 -msgid "Automatic updates only at the top of the network page" -msgstr "Aggiornamenti automatici solo in cima alla pagina \"rete\"" - -#: ../../mod/settings.php:969 -msgid "User Types" -msgstr "Tipi di Utenti" - -#: ../../mod/settings.php:970 -msgid "Community Types" -msgstr "Tipi di Comunità" - -#: ../../mod/settings.php:971 -msgid "Normal Account Page" -msgstr "Pagina Account Normale" - -#: ../../mod/settings.php:972 -msgid "This account is a normal personal profile" -msgstr "Questo account è un normale profilo personale" - -#: ../../mod/settings.php:975 -msgid "Soapbox Page" -msgstr "Pagina Sandbox" - -#: ../../mod/settings.php:976 -msgid "Automatically approve all connection/friend requests as read-only fans" -msgstr "Chi richiede la connessione/amicizia sarà accettato automaticamente come fan che potrà solamente leggere la bacheca" - -#: ../../mod/settings.php:979 -msgid "Community Forum/Celebrity Account" -msgstr "Account Celebrità/Forum comunitario" - -#: ../../mod/settings.php:980 -msgid "" -"Automatically approve all connection/friend requests as read-write fans" -msgstr "Chi richiede la connessione/amicizia sarà accettato automaticamente come fan che potrà leggere e scrivere sulla bacheca" - -#: ../../mod/settings.php:983 -msgid "Automatic Friend Page" -msgstr "Pagina con amicizia automatica" - -#: ../../mod/settings.php:984 -msgid "Automatically approve all connection/friend requests as friends" -msgstr "Chi richiede la connessione/amicizia sarà accettato automaticamente come amico" - -#: ../../mod/settings.php:987 -msgid "Private Forum [Experimental]" -msgstr "Forum privato [sperimentale]" - -#: ../../mod/settings.php:988 -msgid "Private forum - approved members only" -msgstr "Forum privato - solo membri approvati" - -#: ../../mod/settings.php:1000 -msgid "OpenID:" -msgstr "OpenID:" - -#: ../../mod/settings.php:1000 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "(Opzionale) Consente di loggarti in questo account con questo OpenID" - -#: ../../mod/settings.php:1010 -msgid "Publish your default profile in your local site directory?" -msgstr "Pubblica il tuo profilo predefinito nell'elenco locale del sito" - -#: ../../mod/settings.php:1010 ../../mod/settings.php:1016 -#: ../../mod/settings.php:1024 ../../mod/settings.php:1028 -#: ../../mod/settings.php:1033 ../../mod/settings.php:1039 -#: ../../mod/settings.php:1045 ../../mod/settings.php:1051 -#: ../../mod/settings.php:1081 ../../mod/settings.php:1082 -#: ../../mod/settings.php:1083 ../../mod/settings.php:1084 -#: ../../mod/settings.php:1085 ../../mod/dfrn_request.php:830 -#: ../../mod/register.php:234 ../../mod/profiles.php:661 -#: ../../mod/profiles.php:665 ../../mod/api.php:106 -msgid "No" -msgstr "No" - -#: ../../mod/settings.php:1016 -msgid "Publish your default profile in the global social directory?" -msgstr "Pubblica il tuo profilo predefinito nell'elenco sociale globale" - -#: ../../mod/settings.php:1024 -msgid "Hide your contact/friend list from viewers of your default profile?" -msgstr "Nascondi la lista dei tuoi contatti/amici dai visitatori del tuo profilo predefinito" - -#: ../../mod/settings.php:1028 ../../include/conversation.php:1057 -msgid "Hide your profile details from unknown viewers?" -msgstr "Nascondi i dettagli del tuo profilo ai visitatori sconosciuti?" - -#: ../../mod/settings.php:1028 -msgid "" -"If enabled, posting public messages to Diaspora and other networks isn't " -"possible." -msgstr "" - -#: ../../mod/settings.php:1033 -msgid "Allow friends to post to your profile page?" -msgstr "Permetti agli amici di scrivere sulla tua pagina profilo?" - -#: ../../mod/settings.php:1039 -msgid "Allow friends to tag your posts?" -msgstr "Permetti agli amici di taggare i tuoi messaggi?" - -#: ../../mod/settings.php:1045 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "Ci permetti di suggerirti come potenziale amico ai nuovi membri?" - -#: ../../mod/settings.php:1051 -msgid "Permit unknown people to send you private mail?" -msgstr "Permetti a utenti sconosciuti di inviarti messaggi privati?" - -#: ../../mod/settings.php:1059 -msgid "Profile is not published." -msgstr "Il profilo non è pubblicato." - -#: ../../mod/settings.php:1067 -msgid "Your Identity Address is" -msgstr "L'indirizzo della tua identità è" - -#: ../../mod/settings.php:1078 -msgid "Automatically expire posts after this many days:" -msgstr "Fai scadere i post automaticamente dopo x giorni:" - -#: ../../mod/settings.php:1078 -msgid "If empty, posts will not expire. Expired posts will be deleted" -msgstr "Se lasciato vuoto, i messaggi non verranno cancellati." - -#: ../../mod/settings.php:1079 -msgid "Advanced expiration settings" -msgstr "Impostazioni avanzate di scandenza" - -#: ../../mod/settings.php:1080 -msgid "Advanced Expiration" -msgstr "Scadenza avanzata" - -#: ../../mod/settings.php:1081 -msgid "Expire posts:" -msgstr "Fai scadere i post:" - -#: ../../mod/settings.php:1082 -msgid "Expire personal notes:" -msgstr "Fai scadere le Note personali:" - -#: ../../mod/settings.php:1083 -msgid "Expire starred posts:" -msgstr "Fai scadere i post Speciali:" - -#: ../../mod/settings.php:1084 -msgid "Expire photos:" -msgstr "Fai scadere le foto:" - -#: ../../mod/settings.php:1085 -msgid "Only expire posts by others:" -msgstr "Fai scadere solo i post degli altri:" - -#: ../../mod/settings.php:1111 -msgid "Account Settings" -msgstr "Impostazioni account" - -#: ../../mod/settings.php:1119 -msgid "Password Settings" -msgstr "Impostazioni password" - -#: ../../mod/settings.php:1120 -msgid "New Password:" -msgstr "Nuova password:" - -#: ../../mod/settings.php:1121 -msgid "Confirm:" -msgstr "Conferma:" - -#: ../../mod/settings.php:1121 -msgid "Leave password fields blank unless changing" -msgstr "Lascia questi campi in bianco per non effettuare variazioni alla password" - -#: ../../mod/settings.php:1122 -msgid "Current Password:" -msgstr "Password Attuale:" - -#: ../../mod/settings.php:1122 ../../mod/settings.php:1123 -msgid "Your current password to confirm the changes" -msgstr "La tua password attuale per confermare le modifiche" - -#: ../../mod/settings.php:1123 -msgid "Password:" -msgstr "Password:" - -#: ../../mod/settings.php:1127 -msgid "Basic Settings" -msgstr "Impostazioni base" - -#: ../../mod/settings.php:1128 ../../include/profile_advanced.php:15 -msgid "Full Name:" -msgstr "Nome completo:" - -#: ../../mod/settings.php:1129 -msgid "Email Address:" -msgstr "Indirizzo Email:" - -#: ../../mod/settings.php:1130 -msgid "Your Timezone:" -msgstr "Il tuo fuso orario:" - -#: ../../mod/settings.php:1131 -msgid "Default Post Location:" -msgstr "Località predefinita:" - -#: ../../mod/settings.php:1132 -msgid "Use Browser Location:" -msgstr "Usa la località rilevata dal browser:" - -#: ../../mod/settings.php:1135 -msgid "Security and Privacy Settings" -msgstr "Impostazioni di sicurezza e privacy" - -#: ../../mod/settings.php:1137 -msgid "Maximum Friend Requests/Day:" -msgstr "Numero massimo di richieste di amicizia al giorno:" - -#: ../../mod/settings.php:1137 ../../mod/settings.php:1167 -msgid "(to prevent spam abuse)" -msgstr "(per prevenire lo spam)" - -#: ../../mod/settings.php:1138 -msgid "Default Post Permissions" -msgstr "Permessi predefiniti per i messaggi" - -#: ../../mod/settings.php:1139 -msgid "(click to open/close)" -msgstr "(clicca per aprire/chiudere)" - -#: ../../mod/settings.php:1148 ../../mod/photos.php:1146 -#: ../../mod/photos.php:1519 -msgid "Show to Groups" -msgstr "Mostra ai gruppi" - -#: ../../mod/settings.php:1149 ../../mod/photos.php:1147 -#: ../../mod/photos.php:1520 -msgid "Show to Contacts" -msgstr "Mostra ai contatti" - -#: ../../mod/settings.php:1150 -msgid "Default Private Post" -msgstr "Default Post Privato" - -#: ../../mod/settings.php:1151 -msgid "Default Public Post" -msgstr "Default Post Pubblico" - -#: ../../mod/settings.php:1155 -msgid "Default Permissions for New Posts" -msgstr "Permessi predefiniti per i nuovi post" - -#: ../../mod/settings.php:1167 -msgid "Maximum private messages per day from unknown people:" -msgstr "Numero massimo di messaggi privati da utenti sconosciuti per giorno:" - -#: ../../mod/settings.php:1170 -msgid "Notification Settings" -msgstr "Impostazioni notifiche" - -#: ../../mod/settings.php:1171 -msgid "By default post a status message when:" -msgstr "Invia un messaggio di stato quando:" - -#: ../../mod/settings.php:1172 -msgid "accepting a friend request" -msgstr "accetti una richiesta di amicizia" - -#: ../../mod/settings.php:1173 -msgid "joining a forum/community" -msgstr "ti unisci a un forum/comunità" - -#: ../../mod/settings.php:1174 -msgid "making an interesting profile change" -msgstr "fai un interessante modifica al profilo" - -#: ../../mod/settings.php:1175 -msgid "Send a notification email when:" -msgstr "Invia una mail di notifica quando:" - -#: ../../mod/settings.php:1176 -msgid "You receive an introduction" -msgstr "Ricevi una presentazione" - -#: ../../mod/settings.php:1177 -msgid "Your introductions are confirmed" -msgstr "Le tue presentazioni sono confermate" - -#: ../../mod/settings.php:1178 -msgid "Someone writes on your profile wall" -msgstr "Qualcuno scrive sulla bacheca del tuo profilo" - -#: ../../mod/settings.php:1179 -msgid "Someone writes a followup comment" -msgstr "Qualcuno scrive un commento a un tuo messaggio" - -#: ../../mod/settings.php:1180 -msgid "You receive a private message" -msgstr "Ricevi un messaggio privato" - -#: ../../mod/settings.php:1181 -msgid "You receive a friend suggestion" -msgstr "Hai ricevuto un suggerimento di amicizia" - -#: ../../mod/settings.php:1182 -msgid "You are tagged in a post" -msgstr "Sei stato taggato in un post" - -#: ../../mod/settings.php:1183 -msgid "You are poked/prodded/etc. in a post" -msgstr "Sei 'toccato'/'spronato'/ecc. in un post" - -#: ../../mod/settings.php:1185 -msgid "Text-only notification emails" -msgstr "" - -#: ../../mod/settings.php:1187 -msgid "Send text only notification emails, without the html part" -msgstr "" - -#: ../../mod/settings.php:1189 -msgid "Advanced Account/Page Type Settings" -msgstr "Impostazioni avanzate Account/Tipo di pagina" - -#: ../../mod/settings.php:1190 -msgid "Change the behaviour of this account for special situations" -msgstr "Modifica il comportamento di questo account in situazioni speciali" - -#: ../../mod/settings.php:1193 -msgid "Relocate" -msgstr "Trasloca" - -#: ../../mod/settings.php:1194 -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 "Se hai spostato questo profilo da un'altro server, e alcuni dei tuoi contatti non ricevono i tuoi aggiornamenti, prova a premere questo bottone." - -#: ../../mod/settings.php:1195 -msgid "Resend relocate message to contacts" -msgstr "Reinvia il messaggio di trasloco" - -#: ../../mod/dfrn_request.php:95 -msgid "This introduction has already been accepted." -msgstr "Questa presentazione è già stata accettata." - -#: ../../mod/dfrn_request.php:120 ../../mod/dfrn_request.php:518 -msgid "Profile location is not valid or does not contain profile information." -msgstr "L'indirizzo del profilo non è valido o non contiene un profilo." - -#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:523 -msgid "Warning: profile location has no identifiable owner name." -msgstr "Attenzione: l'indirizzo del profilo non riporta il nome del proprietario." - -#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:525 -msgid "Warning: profile location has no profile photo." -msgstr "Attenzione: l'indirizzo del profilo non ha una foto." - -#: ../../mod/dfrn_request.php:130 ../../mod/dfrn_request.php:528 +#: ../../mod/dfrn_confirm.php:571 #, 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 parametro richiesto non è stato trovato all'indirizzo dato" -msgstr[1] "%d parametri richiesti non sono stati trovati all'indirizzo dato" +msgid "No user record found for '%s' " +msgstr "Nessun utente trovato '%s'" -#: ../../mod/dfrn_request.php:172 -msgid "Introduction complete." -msgstr "Presentazione completa." +#: ../../mod/dfrn_confirm.php:581 +msgid "Our site encryption key is apparently messed up." +msgstr "La nostra chiave di criptazione del sito sembra essere corrotta." -#: ../../mod/dfrn_request.php:214 -msgid "Unrecoverable protocol error." -msgstr "Errore di comunicazione." +#: ../../mod/dfrn_confirm.php:592 +msgid "Empty site URL was provided or URL could not be decrypted by us." +msgstr "E' stato fornito un indirizzo vuoto o non possiamo decrittare l'indirizzo." -#: ../../mod/dfrn_request.php:242 -msgid "Profile unavailable." -msgstr "Profilo non disponibile." +#: ../../mod/dfrn_confirm.php:613 +msgid "Contact record was not found for you on our site." +msgstr "Il contatto non è stato trovato sul nostro sito." -#: ../../mod/dfrn_request.php:267 +#: ../../mod/dfrn_confirm.php:627 #, php-format -msgid "%s has received too many connection requests today." -msgstr "%s ha ricevuto troppe richieste di connessione per oggi." +msgid "Site public key not available in contact record for URL %s." +msgstr "La chiave pubblica del sito non è disponibile per l'URL %s" -#: ../../mod/dfrn_request.php:268 -msgid "Spam protection measures have been invoked." -msgstr "Sono state attivate le misure di protezione contro lo spam." - -#: ../../mod/dfrn_request.php:269 -msgid "Friends are advised to please try again in 24 hours." -msgstr "Gli amici sono pregati di riprovare tra 24 ore." - -#: ../../mod/dfrn_request.php:331 -msgid "Invalid locator" -msgstr "Invalid locator" - -#: ../../mod/dfrn_request.php:340 -msgid "Invalid email address." -msgstr "Indirizzo email non valido." - -#: ../../mod/dfrn_request.php:367 -msgid "This account has not been configured for email. Request failed." -msgstr "Questo account non è stato configurato per l'email. Richiesta fallita." - -#: ../../mod/dfrn_request.php:463 -msgid "Unable to resolve your name at the provided location." -msgstr "Impossibile risolvere il tuo nome nella posizione indicata." - -#: ../../mod/dfrn_request.php:476 -msgid "You have already introduced yourself here." -msgstr "Ti sei già presentato qui." - -#: ../../mod/dfrn_request.php:480 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Pare che tu e %s siate già amici." - -#: ../../mod/dfrn_request.php:501 -msgid "Invalid profile URL." -msgstr "Indirizzo profilo non valido." - -#: ../../mod/dfrn_request.php:507 ../../include/follow.php:27 -msgid "Disallowed profile URL." -msgstr "Indirizzo profilo non permesso." - -#: ../../mod/dfrn_request.php:597 -msgid "Your introduction has been sent." -msgstr "La tua presentazione è stata inviata." - -#: ../../mod/dfrn_request.php:650 -msgid "Please login to confirm introduction." -msgstr "Accedi per confermare la presentazione." - -#: ../../mod/dfrn_request.php:660 +#: ../../mod/dfrn_confirm.php:647 msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "Non hai fatto accesso con l'identità corretta. Accedi a questo profilo." +"The ID provided by your system is a duplicate on our system. It should work " +"if you try again." +msgstr "L'ID fornito dal tuo sistema è duplicato sul nostro sistema. Se riprovi dovrebbe funzionare." -#: ../../mod/dfrn_request.php:671 -msgid "Hide this contact" -msgstr "Nascondi questo contatto" +#: ../../mod/dfrn_confirm.php:658 +msgid "Unable to set your contact credentials on our system." +msgstr "Impossibile impostare le credenziali del tuo contatto sul nostro sistema." -#: ../../mod/dfrn_request.php:674 +#: ../../mod/dfrn_confirm.php:725 +msgid "Unable to update your contact profile details on our system" +msgstr "Impossibile aggiornare i dettagli del tuo contatto sul nostro sistema" + +#: ../../mod/dfrn_confirm.php:797 #, php-format -msgid "Welcome home %s." -msgstr "Bentornato a casa %s." +msgid "%1$s has joined %2$s" +msgstr "%1$s si è unito a %2$s" -#: ../../mod/dfrn_request.php:675 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Conferma la tua richiesta di connessione con %s." +#: ../../mod/item.php:114 +msgid "Unable to locate original post." +msgstr "Impossibile trovare il messaggio originale." -#: ../../mod/dfrn_request.php:676 -msgid "Confirm" -msgstr "Conferma" +#: ../../mod/item.php:346 +msgid "Empty post discarded." +msgstr "Messaggio vuoto scartato." -#: ../../mod/dfrn_request.php:804 -msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"communications networks:" -msgstr "Inserisci il tuo 'Indirizzo Identità' da uno dei seguenti network supportati:" +#: ../../mod/item.php:839 +msgid "System error. Post not saved." +msgstr "Errore di sistema. Messaggio non salvato." -#: ../../mod/dfrn_request.php:824 -msgid "" -"If you are not yet a member of the free social web, follow this link to find a public" -" Friendica site and join us today." -msgstr "Se non sei un membro del web sociale libero, segui questo link per trovare un sito Friendica pubblico e unisciti a noi oggi" - -#: ../../mod/dfrn_request.php:827 -msgid "Friend/Connection Request" -msgstr "Richieste di amicizia/connessione" - -#: ../../mod/dfrn_request.php:828 -msgid "" -"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " -"testuser@identi.ca" -msgstr "Esempi: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" - -#: ../../mod/dfrn_request.php:829 -msgid "Please answer the following:" -msgstr "Rispondi:" - -#: ../../mod/dfrn_request.php:830 -#, php-format -msgid "Does %s know you?" -msgstr "%s ti conosce?" - -#: ../../mod/dfrn_request.php:834 -msgid "Add a personal note:" -msgstr "Aggiungi una nota personale:" - -#: ../../mod/dfrn_request.php:836 ../../include/contact_selectors.php:76 -msgid "Friendica" -msgstr "Friendica" - -#: ../../mod/dfrn_request.php:837 -msgid "StatusNet/Federated Social Web" -msgstr "StatusNet/Federated Social Web" - -#: ../../mod/dfrn_request.php:839 +#: ../../mod/item.php:965 #, php-format msgid "" -" - please do not use this form. Instead, enter %s into your Diaspora search" -" bar." -msgstr " - per favore non usare questa form. Invece, inserisci %s nella tua barra di ricerca su Diaspora." +"This message was sent to you by %s, a member of the Friendica social " +"network." +msgstr "Questo messaggio ti è stato inviato da %s, un membro del social network Friendica." -#: ../../mod/dfrn_request.php:840 -msgid "Your Identity Address:" -msgstr "L'indirizzo della tua identità:" - -#: ../../mod/dfrn_request.php:843 -msgid "Submit Request" -msgstr "Invia richiesta" - -#: ../../mod/register.php:90 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "Registrazione completata. Controlla la tua mail per ulteriori informazioni." - -#: ../../mod/register.php:96 +#: ../../mod/item.php:967 #, php-format +msgid "You may visit them online at %s" +msgstr "Puoi visitarli online su %s" + +#: ../../mod/item.php:968 msgid "" -"Failed to send email message. Here your accout details:
    login: %s
    " -"password: %s

    You can change your password after login." -msgstr "" +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." +msgstr "Contatta il mittente rispondendo a questo post se non vuoi ricevere questi messaggi." -#: ../../mod/register.php:105 -msgid "Your registration can not be processed." -msgstr "La tua registrazione non puo' essere elaborata." +#: ../../mod/item.php:972 +#, php-format +msgid "%s posted an update." +msgstr "%s ha inviato un aggiornamento." -#: ../../mod/register.php:148 -msgid "Your registration is pending approval by the site owner." -msgstr "La tua richiesta è in attesa di approvazione da parte del prorietario del sito." +#: ../../mod/profile_photo.php:44 +msgid "Image uploaded but image cropping failed." +msgstr "L'immagine è stata caricata, ma il non è stato possibile ritagliarla." -#: ../../mod/register.php:186 ../../mod/uimport.php:50 +#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84 +#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "Il ridimensionamento del'immagine [%s] è fallito." + +#: ../../mod/profile_photo.php:118 msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Questo sito ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani." +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Ricarica la pagina con shift+F5 o cancella la cache del browser se la nuova foto non viene mostrata immediatamente." -#: ../../mod/register.php:214 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking 'Register'." -msgstr "Se vuoi, puoi riempire questo modulo tramite OpenID, inserendo il tuo OpenID e cliccando 'Registra'." +#: ../../mod/profile_photo.php:128 +msgid "Unable to process image" +msgstr "Impossibile elaborare l'immagine" -#: ../../mod/register.php:215 -msgid "" -"If you are not familiar with OpenID, please leave that field blank and fill " -"in the rest of the items." -msgstr "Se non hai familiarità con OpenID, lascia il campo vuoto e riempi il resto della maschera." +#: ../../mod/profile_photo.php:242 +msgid "Upload File:" +msgstr "Carica un file:" -#: ../../mod/register.php:216 -msgid "Your OpenID (optional): " -msgstr "Il tuo OpenID (opzionale): " +#: ../../mod/profile_photo.php:243 +msgid "Select a profile:" +msgstr "Seleziona un profilo:" -#: ../../mod/register.php:230 -msgid "Include your profile in member directory?" -msgstr "Includi il tuo profilo nell'elenco pubblico?" +#: ../../mod/profile_photo.php:245 +msgid "Upload" +msgstr "Carica" -#: ../../mod/register.php:251 -msgid "Membership on this site is by invitation only." -msgstr "La registrazione su questo sito è solo su invito." +#: ../../mod/profile_photo.php:248 +msgid "skip this step" +msgstr "salta questo passaggio" -#: ../../mod/register.php:252 -msgid "Your invitation ID: " -msgstr "L'ID del tuo invito:" +#: ../../mod/profile_photo.php:248 +msgid "select a photo from your photo albums" +msgstr "seleziona una foto dai tuoi album" -#: ../../mod/register.php:263 -msgid "Your Full Name (e.g. Joe Smith): " -msgstr "Il tuo nome completo (es. Mario Rossi): " +#: ../../mod/profile_photo.php:262 +msgid "Crop Image" +msgstr "Ritaglia immagine" -#: ../../mod/register.php:264 -msgid "Your Email Address: " -msgstr "Il tuo indirizzo email: " +#: ../../mod/profile_photo.php:263 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Ritaglia l'imagine per una visualizzazione migliore." -#: ../../mod/register.php:265 -msgid "" -"Choose a profile nickname. This must begin with a text character. Your " -"profile address on this site will then be " -"'nickname@$sitename'." -msgstr "Scegli un nome utente. Deve cominciare con una lettera. L'indirizzo del tuo profilo sarà 'soprannome@$sitename'." +#: ../../mod/profile_photo.php:265 +msgid "Done Editing" +msgstr "Finito" -#: ../../mod/register.php:266 -msgid "Choose a nickname: " -msgstr "Scegli un nome utente: " +#: ../../mod/profile_photo.php:299 +msgid "Image uploaded successfully." +msgstr "Immagine caricata con successo." -#: ../../mod/register.php:269 ../../boot.php:1241 ../../include/nav.php:109 -msgid "Register" -msgstr "Registrati" +#: ../../mod/allfriends.php:34 +#, php-format +msgid "Friends of %s" +msgstr "Amici di %s" -#: ../../mod/register.php:275 ../../mod/uimport.php:64 -msgid "Import" -msgstr "Importa" - -#: ../../mod/register.php:276 -msgid "Import your profile to this friendica instance" -msgstr "Importa il tuo profilo in questo server friendica" - -#: ../../mod/maintenance.php:5 -msgid "System down for maintenance" -msgstr "Sistema in manutenzione" - -#: ../../mod/search.php:99 ../../include/text.php:953 -#: ../../include/text.php:954 ../../include/nav.php:119 -msgid "Search" -msgstr "Cerca" - -#: ../../mod/directory.php:51 ../../view/theme/diabook/theme.php:525 -msgid "Global Directory" -msgstr "Elenco globale" +#: ../../mod/allfriends.php:40 +msgid "No friends to display." +msgstr "Nessun amico da visualizzare." #: ../../mod/directory.php:59 msgid "Find on this site" @@ -4546,607 +7891,14 @@ msgstr "Cerca nel sito" msgid "Site Directory" msgstr "Elenco del sito" -#: ../../mod/directory.php:113 ../../mod/profiles.php:750 -msgid "Age: " -msgstr "Età : " - #: ../../mod/directory.php:116 msgid "Gender: " msgstr "Genere:" -#: ../../mod/directory.php:138 ../../boot.php:1650 -#: ../../include/profile_advanced.php:17 -msgid "Gender:" -msgstr "Genere:" - -#: ../../mod/directory.php:140 ../../boot.php:1653 -#: ../../include/profile_advanced.php:37 -msgid "Status:" -msgstr "Stato:" - -#: ../../mod/directory.php:142 ../../boot.php:1655 -#: ../../include/profile_advanced.php:48 -msgid "Homepage:" -msgstr "Homepage:" - -#: ../../mod/directory.php:144 ../../boot.php:1657 -#: ../../include/profile_advanced.php:58 -msgid "About:" -msgstr "Informazioni:" - #: ../../mod/directory.php:189 msgid "No entries (some entries may be hidden)." msgstr "Nessuna voce (qualche voce potrebbe essere nascosta)." -#: ../../mod/delegate.php:101 -msgid "No potential page delegates located." -msgstr "Nessun potenziale delegato per la pagina è stato trovato." - -#: ../../mod/delegate.php:130 ../../include/nav.php:170 -msgid "Delegate Page Management" -msgstr "Gestione delegati per la pagina" - -#: ../../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 "I Delegati sono in grando di gestire tutti gli aspetti di questa pagina, tranne per i settaggi di base dell'account. Non delegare il tuo account personale a nessuno di cui non ti fidi ciecamente." - -#: ../../mod/delegate.php:133 -msgid "Existing Page Managers" -msgstr "Gestori Pagina Esistenti" - -#: ../../mod/delegate.php:135 -msgid "Existing Page Delegates" -msgstr "Delegati Pagina Esistenti" - -#: ../../mod/delegate.php:137 -msgid "Potential Delegates" -msgstr "Delegati Potenziali" - -#: ../../mod/delegate.php:140 -msgid "Add" -msgstr "Aggiungi" - -#: ../../mod/delegate.php:141 -msgid "No entries." -msgstr "Nessun articolo." - -#: ../../mod/common.php:42 -msgid "Common Friends" -msgstr "Amici in comune" - -#: ../../mod/common.php:78 -msgid "No contacts in common." -msgstr "Nessun contatto in comune." - -#: ../../mod/uexport.php:77 -msgid "Export account" -msgstr "Esporta account" - -#: ../../mod/uexport.php:77 -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 "Esporta le informazioni del tuo account e dei contatti. Usa questa funzione per fare un backup del tuo account o per spostarlo in un altro server." - -#: ../../mod/uexport.php:78 -msgid "Export all" -msgstr "Esporta tutto" - -#: ../../mod/uexport.php:78 -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 "Esporta le informazioni del tuo account, i tuoi contatti e tutti i tuoi elementi in json. Puo' diventare un file veramente molto grosso e metterci un sacco di tempo. Usa questa funzione per fare un backup completo del tuo account (le foto non sono esportate)" - -#: ../../mod/mood.php:62 ../../include/conversation.php:227 -#, php-format -msgid "%1$s is currently %2$s" -msgstr "%1$s al momento è %2$s" - -#: ../../mod/mood.php:133 -msgid "Mood" -msgstr "Umore" - -#: ../../mod/mood.php:134 -msgid "Set your current mood and tell your friends" -msgstr "Condividi il tuo umore con i tuoi amici" - -#: ../../mod/suggest.php:27 -msgid "Do you really want to delete this suggestion?" -msgstr "Vuoi veramente cancellare questo suggerimento?" - -#: ../../mod/suggest.php:68 ../../include/contact_widgets.php:35 -#: ../../view/theme/diabook/theme.php:527 -msgid "Friend Suggestions" -msgstr "Contatti suggeriti" - -#: ../../mod/suggest.php:74 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Nessun suggerimento disponibile. Se questo è un sito nuovo, riprova tra 24 ore." - -#: ../../mod/suggest.php:92 -msgid "Ignore/Hide" -msgstr "Ignora / Nascondi" - -#: ../../mod/profiles.php:37 -msgid "Profile deleted." -msgstr "Profilo elminato." - -#: ../../mod/profiles.php:55 ../../mod/profiles.php:89 -msgid "Profile-" -msgstr "Profilo-" - -#: ../../mod/profiles.php:74 ../../mod/profiles.php:117 -msgid "New profile created." -msgstr "Il nuovo profilo è stato creato." - -#: ../../mod/profiles.php:95 -msgid "Profile unavailable to clone." -msgstr "Impossibile duplicare il profilo." - -#: ../../mod/profiles.php:189 -msgid "Profile Name is required." -msgstr "Il nome profilo è obbligatorio ." - -#: ../../mod/profiles.php:340 -msgid "Marital Status" -msgstr "Stato civile" - -#: ../../mod/profiles.php:344 -msgid "Romantic Partner" -msgstr "Partner romantico" - -#: ../../mod/profiles.php:348 -msgid "Likes" -msgstr "Mi piace" - -#: ../../mod/profiles.php:352 -msgid "Dislikes" -msgstr "Non mi piace" - -#: ../../mod/profiles.php:356 -msgid "Work/Employment" -msgstr "Lavoro/Impiego" - -#: ../../mod/profiles.php:359 -msgid "Religion" -msgstr "Religione" - -#: ../../mod/profiles.php:363 -msgid "Political Views" -msgstr "Orientamento Politico" - -#: ../../mod/profiles.php:367 -msgid "Gender" -msgstr "Sesso" - -#: ../../mod/profiles.php:371 -msgid "Sexual Preference" -msgstr "Preferenza sessuale" - -#: ../../mod/profiles.php:375 -msgid "Homepage" -msgstr "Homepage" - -#: ../../mod/profiles.php:379 ../../mod/profiles.php:698 -msgid "Interests" -msgstr "Interessi" - -#: ../../mod/profiles.php:383 -msgid "Address" -msgstr "Indirizzo" - -#: ../../mod/profiles.php:390 ../../mod/profiles.php:694 -msgid "Location" -msgstr "Posizione" - -#: ../../mod/profiles.php:473 -msgid "Profile updated." -msgstr "Profilo aggiornato." - -#: ../../mod/profiles.php:568 -msgid " and " -msgstr "e " - -#: ../../mod/profiles.php:576 -msgid "public profile" -msgstr "profilo pubblico" - -#: ../../mod/profiles.php:579 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s ha cambiato %2$s in “%3$s”" - -#: ../../mod/profiles.php:580 -#, php-format -msgid " - Visit %1$s's %2$s" -msgstr "- Visita %2$s di %1$s" - -#: ../../mod/profiles.php:583 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s ha un %2$s aggiornato. Ha cambiato %3$s" - -#: ../../mod/profiles.php:658 -msgid "Hide contacts and friends:" -msgstr "Nascondi contatti:" - -#: ../../mod/profiles.php:663 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "Nascondi la tua lista di contatti/amici ai visitatori di questo profilo?" - -#: ../../mod/profiles.php:685 -msgid "Edit Profile Details" -msgstr "Modifica i dettagli del profilo" - -#: ../../mod/profiles.php:687 -msgid "Change Profile Photo" -msgstr "Cambia la foto del profilo" - -#: ../../mod/profiles.php:688 -msgid "View this profile" -msgstr "Visualizza questo profilo" - -#: ../../mod/profiles.php:689 -msgid "Create a new profile using these settings" -msgstr "Crea un nuovo profilo usando queste impostazioni" - -#: ../../mod/profiles.php:690 -msgid "Clone this profile" -msgstr "Clona questo profilo" - -#: ../../mod/profiles.php:691 -msgid "Delete this profile" -msgstr "Elimina questo profilo" - -#: ../../mod/profiles.php:692 -msgid "Basic information" -msgstr "Informazioni di base" - -#: ../../mod/profiles.php:693 -msgid "Profile picture" -msgstr "Immagine del profilo" - -#: ../../mod/profiles.php:695 -msgid "Preferences" -msgstr "Preferenze" - -#: ../../mod/profiles.php:696 -msgid "Status information" -msgstr "Informazioni stato" - -#: ../../mod/profiles.php:697 -msgid "Additional information" -msgstr "Informazioni aggiuntive" - -#: ../../mod/profiles.php:700 -msgid "Profile Name:" -msgstr "Nome del profilo:" - -#: ../../mod/profiles.php:701 -msgid "Your Full Name:" -msgstr "Il tuo nome completo:" - -#: ../../mod/profiles.php:702 -msgid "Title/Description:" -msgstr "Breve descrizione (es. titolo, posizione, altro):" - -#: ../../mod/profiles.php:703 -msgid "Your Gender:" -msgstr "Il tuo sesso:" - -#: ../../mod/profiles.php:704 -#, php-format -msgid "Birthday (%s):" -msgstr "Compleanno (%s)" - -#: ../../mod/profiles.php:705 -msgid "Street Address:" -msgstr "Indirizzo (via/piazza):" - -#: ../../mod/profiles.php:706 -msgid "Locality/City:" -msgstr "Località:" - -#: ../../mod/profiles.php:707 -msgid "Postal/Zip Code:" -msgstr "CAP:" - -#: ../../mod/profiles.php:708 -msgid "Country:" -msgstr "Nazione:" - -#: ../../mod/profiles.php:709 -msgid "Region/State:" -msgstr "Regione/Stato:" - -#: ../../mod/profiles.php:710 -msgid " Marital Status:" -msgstr " Stato sentimentale:" - -#: ../../mod/profiles.php:711 -msgid "Who: (if applicable)" -msgstr "Con chi: (se possibile)" - -#: ../../mod/profiles.php:712 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Esempio: cathy123, Cathy Williams, cathy@example.com" - -#: ../../mod/profiles.php:713 -msgid "Since [date]:" -msgstr "Dal [data]:" - -#: ../../mod/profiles.php:714 ../../include/profile_advanced.php:46 -msgid "Sexual Preference:" -msgstr "Preferenze sessuali:" - -#: ../../mod/profiles.php:715 -msgid "Homepage URL:" -msgstr "Homepage:" - -#: ../../mod/profiles.php:716 ../../include/profile_advanced.php:50 -msgid "Hometown:" -msgstr "Paese natale:" - -#: ../../mod/profiles.php:717 ../../include/profile_advanced.php:54 -msgid "Political Views:" -msgstr "Orientamento politico:" - -#: ../../mod/profiles.php:718 -msgid "Religious Views:" -msgstr "Orientamento religioso:" - -#: ../../mod/profiles.php:719 -msgid "Public Keywords:" -msgstr "Parole chiave visibili a tutti:" - -#: ../../mod/profiles.php:720 -msgid "Private Keywords:" -msgstr "Parole chiave private:" - -#: ../../mod/profiles.php:721 ../../include/profile_advanced.php:62 -msgid "Likes:" -msgstr "Mi piace:" - -#: ../../mod/profiles.php:722 ../../include/profile_advanced.php:64 -msgid "Dislikes:" -msgstr "Non mi piace:" - -#: ../../mod/profiles.php:723 -msgid "Example: fishing photography software" -msgstr "Esempio: pesca fotografia programmazione" - -#: ../../mod/profiles.php:724 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "(E' utilizzato per suggerire potenziali amici, può essere visto da altri)" - -#: ../../mod/profiles.php:725 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(Usato per cercare tra i profili, non è mai visibile agli altri)" - -#: ../../mod/profiles.php:726 -msgid "Tell us about yourself..." -msgstr "Raccontaci di te..." - -#: ../../mod/profiles.php:727 -msgid "Hobbies/Interests" -msgstr "Hobby/interessi" - -#: ../../mod/profiles.php:728 -msgid "Contact information and Social Networks" -msgstr "Informazioni su contatti e social network" - -#: ../../mod/profiles.php:729 -msgid "Musical interests" -msgstr "Interessi musicali" - -#: ../../mod/profiles.php:730 -msgid "Books, literature" -msgstr "Libri, letteratura" - -#: ../../mod/profiles.php:731 -msgid "Television" -msgstr "Televisione" - -#: ../../mod/profiles.php:732 -msgid "Film/dance/culture/entertainment" -msgstr "Film/danza/cultura/intrattenimento" - -#: ../../mod/profiles.php:733 -msgid "Love/romance" -msgstr "Amore" - -#: ../../mod/profiles.php:734 -msgid "Work/employment" -msgstr "Lavoro/impiego" - -#: ../../mod/profiles.php:735 -msgid "School/education" -msgstr "Scuola/educazione" - -#: ../../mod/profiles.php:740 -msgid "" -"This is your public profile.
    It may " -"be visible to anybody using the internet." -msgstr "Questo è il tuo profilo publico.
    Potrebbe essere visto da chiunque attraverso internet." - -#: ../../mod/profiles.php:803 -msgid "Edit/Manage Profiles" -msgstr "Modifica / Gestisci profili" - -#: ../../mod/profiles.php:804 ../../boot.php:1611 ../../boot.php:1637 -msgid "Change profile photo" -msgstr "Cambia la foto del profilo" - -#: ../../mod/profiles.php:805 ../../boot.php:1612 -msgid "Create New Profile" -msgstr "Crea un nuovo profilo" - -#: ../../mod/profiles.php:816 ../../boot.php:1622 -msgid "Profile Image" -msgstr "Immagine del Profilo" - -#: ../../mod/profiles.php:818 ../../boot.php:1625 -msgid "visible to everybody" -msgstr "visibile a tutti" - -#: ../../mod/profiles.php:819 ../../boot.php:1626 -msgid "Edit visibility" -msgstr "Modifica visibilità" - -#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 -msgid "Item not found" -msgstr "Oggetto non trovato" - -#: ../../mod/editpost.php:39 -msgid "Edit post" -msgstr "Modifica messaggio" - -#: ../../mod/editpost.php:111 ../../include/conversation.php:1092 -msgid "upload photo" -msgstr "carica foto" - -#: ../../mod/editpost.php:112 ../../include/conversation.php:1093 -msgid "Attach file" -msgstr "Allega file" - -#: ../../mod/editpost.php:113 ../../include/conversation.php:1094 -msgid "attach file" -msgstr "allega file" - -#: ../../mod/editpost.php:115 ../../include/conversation.php:1096 -msgid "web link" -msgstr "link web" - -#: ../../mod/editpost.php:116 ../../include/conversation.php:1097 -msgid "Insert video link" -msgstr "Inserire collegamento video" - -#: ../../mod/editpost.php:117 ../../include/conversation.php:1098 -msgid "video link" -msgstr "link video" - -#: ../../mod/editpost.php:118 ../../include/conversation.php:1099 -msgid "Insert audio link" -msgstr "Inserisci collegamento audio" - -#: ../../mod/editpost.php:119 ../../include/conversation.php:1100 -msgid "audio link" -msgstr "link audio" - -#: ../../mod/editpost.php:120 ../../include/conversation.php:1101 -msgid "Set your location" -msgstr "La tua posizione" - -#: ../../mod/editpost.php:121 ../../include/conversation.php:1102 -msgid "set location" -msgstr "posizione" - -#: ../../mod/editpost.php:122 ../../include/conversation.php:1103 -msgid "Clear browser location" -msgstr "Rimuovi la localizzazione data dal browser" - -#: ../../mod/editpost.php:123 ../../include/conversation.php:1104 -msgid "clear location" -msgstr "canc. pos." - -#: ../../mod/editpost.php:125 ../../include/conversation.php:1110 -msgid "Permission settings" -msgstr "Impostazioni permessi" - -#: ../../mod/editpost.php:133 ../../include/conversation.php:1119 -msgid "CC: email addresses" -msgstr "CC: indirizzi email" - -#: ../../mod/editpost.php:134 ../../include/conversation.php:1120 -msgid "Public post" -msgstr "Messaggio pubblico" - -#: ../../mod/editpost.php:137 ../../include/conversation.php:1106 -msgid "Set title" -msgstr "Scegli un titolo" - -#: ../../mod/editpost.php:139 ../../include/conversation.php:1108 -msgid "Categories (comma-separated list)" -msgstr "Categorie (lista separata da virgola)" - -#: ../../mod/editpost.php:140 ../../include/conversation.php:1122 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Esempio: bob@example.com, mary@example.com" - -#: ../../mod/friendica.php:59 -msgid "This is Friendica, version" -msgstr "Questo è Friendica, versione" - -#: ../../mod/friendica.php:60 -msgid "running at web location" -msgstr "in esecuzione all'indirizzo web" - -#: ../../mod/friendica.php:62 -msgid "" -"Please visit Friendica.com to learn " -"more about the Friendica project." -msgstr "Visita Friendica.com per saperne di più sul progetto Friendica." - -#: ../../mod/friendica.php:64 -msgid "Bug reports and issues: please visit" -msgstr "Segnalazioni di bug e problemi: visita" - -#: ../../mod/friendica.php:65 -msgid "" -"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " -"dot com" -msgstr "Suggerimenti, lodi, donazioni, ecc - e-mail a \"Info\" at Friendica punto com" - -#: ../../mod/friendica.php:79 -msgid "Installed plugins/addons/apps:" -msgstr "Plugin/addon/applicazioni instalate" - -#: ../../mod/friendica.php:92 -msgid "No installed plugins/addons/apps" -msgstr "Nessun plugin/addons/applicazione installata" - -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" -msgstr "Autorizza la connessione dell'applicazione" - -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "Torna alla tua applicazione e inserisci questo codice di sicurezza:" - -#: ../../mod/api.php:89 -msgid "Please login to continue." -msgstr "Effettua il login per continuare." - -#: ../../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 "Vuoi autorizzare questa applicazione per accedere ai messaggi e ai contatti, e / o creare nuovi messaggi per te?" - -#: ../../mod/lockview.php:31 ../../mod/lockview.php:39 -msgid "Remote privacy information not available." -msgstr "Informazioni remote sulla privacy non disponibili." - -#: ../../mod/lockview.php:48 -msgid "Visible to:" -msgstr "Visibile a:" - -#: ../../mod/notes.php:44 ../../boot.php:2150 -msgid "Personal Notes" -msgstr "Note personali" - -#: ../../mod/localtime.php:12 ../../include/bb2diaspora.php:148 -#: ../../include/event.php:11 -msgid "l F d, Y \\@ g:i A" -msgstr "l d F Y \\@ G:i" - #: ../../mod/localtime.php:24 msgid "Time Conversion" msgstr "Conversione Ora" @@ -5175,2703 +7927,3 @@ msgstr "Ora locale convertita: %s" #: ../../mod/localtime.php:41 msgid "Please select your timezone:" msgstr "Selezionare il tuo fuso orario:" - -#: ../../mod/poke.php:192 -msgid "Poke/Prod" -msgstr "Tocca/Pungola" - -#: ../../mod/poke.php:193 -msgid "poke, prod or do other things to somebody" -msgstr "tocca, pungola o fai altre cose a qualcuno" - -#: ../../mod/poke.php:194 -msgid "Recipient" -msgstr "Destinatario" - -#: ../../mod/poke.php:195 -msgid "Choose what you wish to do to recipient" -msgstr "Scegli cosa vuoi fare al destinatario" - -#: ../../mod/poke.php:198 -msgid "Make this post private" -msgstr "Rendi questo post privato" - -#: ../../mod/invite.php:27 -msgid "Total invitation limit exceeded." -msgstr "Limite totale degli inviti superato." - -#: ../../mod/invite.php:49 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s: non è un indirizzo email valido." - -#: ../../mod/invite.php:73 -msgid "Please join us on Friendica" -msgstr "Unisiciti a noi su Friendica" - -#: ../../mod/invite.php:84 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Limite degli inviti superato. Contatta l'amministratore del tuo sito." - -#: ../../mod/invite.php:89 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s: la consegna del messaggio fallita." - -#: ../../mod/invite.php:93 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d messaggio inviato." -msgstr[1] "%d messaggi inviati." - -#: ../../mod/invite.php:112 -msgid "You have no more invitations available" -msgstr "Non hai altri inviti disponibili" - -#: ../../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 "Visita %s per una lista di siti pubblici a cui puoi iscriverti. I membri Friendica su altri siti possono collegarsi uno con l'altro, come con membri di molti altri social network." - -#: ../../mod/invite.php:122 -#, php-format -msgid "" -"To accept this invitation, please visit and register at %s or any other " -"public Friendica website." -msgstr "Per accettare questo invito, visita e resitrati su %s o su un'altro sito web Friendica aperto al pubblico." - -#: ../../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 "I siti Friendica son tutti collegati tra loro per creare una grossa rete sociale rispettosa della privacy, posseduta e controllata dai suoi membri. I siti Friendica possono anche collegarsi a molti altri social network tradizionali. Vai su %s per una lista di siti Friendica alternativi a cui puoi iscriverti." - -#: ../../mod/invite.php:126 -msgid "" -"Our apologies. This system is not currently configured to connect with other" -" public sites or invite members." -msgstr "Ci scusiamo, questo sistema non è configurato per collegarsi con altri siti pubblici o per invitare membri." - -#: ../../mod/invite.php:132 -msgid "Send invitations" -msgstr "Invia inviti" - -#: ../../mod/invite.php:133 -msgid "Enter email addresses, one per line:" -msgstr "Inserisci gli indirizzi email, uno per riga:" - -#: ../../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 "Sei cordialmente invitato a unirti a me ed ad altri amici su Friendica, e ad aiutarci a creare una rete sociale migliore." - -#: ../../mod/invite.php:137 -msgid "You will need to supply this invitation code: $invite_code" -msgstr "Sarà necessario fornire questo codice invito: $invite_code" - -#: ../../mod/invite.php:137 -msgid "" -"Once you have registered, please connect with me via my profile page at:" -msgstr "Una volta registrato, connettiti con me dal mio profilo:" - -#: ../../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 "Per maggiori informazioni sul progetto Friendica e perchè pensiamo sia importante, visita http://friendica.com" - -#: ../../mod/photos.php:52 ../../boot.php:2129 -msgid "Photo Albums" -msgstr "Album foto" - -#: ../../mod/photos.php:60 ../../mod/photos.php:155 ../../mod/photos.php:1064 -#: ../../mod/photos.php:1187 ../../mod/photos.php:1210 -#: ../../mod/photos.php:1760 ../../mod/photos.php:1772 -#: ../../view/theme/diabook/theme.php:499 -msgid "Contact Photos" -msgstr "Foto dei contatti" - -#: ../../mod/photos.php:67 ../../mod/photos.php:1262 ../../mod/photos.php:1819 -msgid "Upload New Photos" -msgstr "Carica nuove foto" - -#: ../../mod/photos.php:144 -msgid "Contact information unavailable" -msgstr "I dati di questo contatto non sono disponibili" - -#: ../../mod/photos.php:165 -msgid "Album not found." -msgstr "Album non trovato." - -#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204 -msgid "Delete Album" -msgstr "Rimuovi album" - -#: ../../mod/photos.php:198 -msgid "Do you really want to delete this photo album and all its photos?" -msgstr "Vuoi davvero cancellare questo album e tutte le sue foto?" - -#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1515 -msgid "Delete Photo" -msgstr "Rimuovi foto" - -#: ../../mod/photos.php:287 -msgid "Do you really want to delete this photo?" -msgstr "Vuoi veramente cancellare questa foto?" - -#: ../../mod/photos.php:662 -#, php-format -msgid "%1$s was tagged in %2$s by %3$s" -msgstr "%1$s è stato taggato in %2$s da %3$s" - -#: ../../mod/photos.php:662 -msgid "a photo" -msgstr "una foto" - -#: ../../mod/photos.php:767 -msgid "Image exceeds size limit of " -msgstr "L'immagine supera il limite di" - -#: ../../mod/photos.php:775 -msgid "Image file is empty." -msgstr "Il file dell'immagine è vuoto." - -#: ../../mod/photos.php:930 -msgid "No photos selected" -msgstr "Nessuna foto selezionata" - -#: ../../mod/photos.php:1094 -#, php-format -msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." -msgstr "Hai usato %1$.2f MBytes su %2$.2f disponibili." - -#: ../../mod/photos.php:1129 -msgid "Upload Photos" -msgstr "Carica foto" - -#: ../../mod/photos.php:1133 ../../mod/photos.php:1199 -msgid "New album name: " -msgstr "Nome nuovo album: " - -#: ../../mod/photos.php:1134 -msgid "or existing album name: " -msgstr "o nome di un album esistente: " - -#: ../../mod/photos.php:1135 -msgid "Do not show a status post for this upload" -msgstr "Non creare un post per questo upload" - -#: ../../mod/photos.php:1137 ../../mod/photos.php:1510 -msgid "Permissions" -msgstr "Permessi" - -#: ../../mod/photos.php:1148 -msgid "Private Photo" -msgstr "Foto privata" - -#: ../../mod/photos.php:1149 -msgid "Public Photo" -msgstr "Foto pubblica" - -#: ../../mod/photos.php:1212 -msgid "Edit Album" -msgstr "Modifica album" - -#: ../../mod/photos.php:1218 -msgid "Show Newest First" -msgstr "Mostra nuove foto per prime" - -#: ../../mod/photos.php:1220 -msgid "Show Oldest First" -msgstr "Mostra vecchie foto per prime" - -#: ../../mod/photos.php:1248 ../../mod/photos.php:1802 -msgid "View Photo" -msgstr "Vedi foto" - -#: ../../mod/photos.php:1294 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Permesso negato. L'accesso a questo elemento può essere limitato." - -#: ../../mod/photos.php:1296 -msgid "Photo not available" -msgstr "Foto non disponibile" - -#: ../../mod/photos.php:1352 -msgid "View photo" -msgstr "Vedi foto" - -#: ../../mod/photos.php:1352 -msgid "Edit photo" -msgstr "Modifica foto" - -#: ../../mod/photos.php:1353 -msgid "Use as profile photo" -msgstr "Usa come foto del profilo" - -#: ../../mod/photos.php:1378 -msgid "View Full Size" -msgstr "Vedi dimensione intera" - -#: ../../mod/photos.php:1457 -msgid "Tags: " -msgstr "Tag: " - -#: ../../mod/photos.php:1460 -msgid "[Remove any tag]" -msgstr "[Rimuovi tutti i tag]" - -#: ../../mod/photos.php:1500 -msgid "Rotate CW (right)" -msgstr "Ruota a destra" - -#: ../../mod/photos.php:1501 -msgid "Rotate CCW (left)" -msgstr "Ruota a sinistra" - -#: ../../mod/photos.php:1503 -msgid "New album name" -msgstr "Nuovo nome dell'album" - -#: ../../mod/photos.php:1506 -msgid "Caption" -msgstr "Titolo" - -#: ../../mod/photos.php:1508 -msgid "Add a Tag" -msgstr "Aggiungi tag" - -#: ../../mod/photos.php:1512 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" - -#: ../../mod/photos.php:1521 -msgid "Private photo" -msgstr "Foto privata" - -#: ../../mod/photos.php:1522 -msgid "Public photo" -msgstr "Foto pubblica" - -#: ../../mod/photos.php:1544 ../../include/conversation.php:1090 -msgid "Share" -msgstr "Condividi" - -#: ../../mod/photos.php:1817 -msgid "Recent Photos" -msgstr "Foto recenti" - -#: ../../mod/regmod.php:55 -msgid "Account approved." -msgstr "Account approvato." - -#: ../../mod/regmod.php:92 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registrazione revocata per %s" - -#: ../../mod/regmod.php:104 -msgid "Please login." -msgstr "Accedi." - -#: ../../mod/uimport.php:66 -msgid "Move account" -msgstr "Muovi account" - -#: ../../mod/uimport.php:67 -msgid "You can import an account from another Friendica server." -msgstr "Puoi importare un account da un altro server Friendica." - -#: ../../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 "Devi esportare il tuo account dal vecchio server e caricarlo qui. Noi ricreeremo il tuo vecchio account qui, con tutti i tuoi contatti. Proveremo anche a informare i tuoi amici che ti sei spostato qui." - -#: ../../mod/uimport.php:69 -msgid "" -"This feature is experimental. We can't import contacts from the OStatus " -"network (statusnet/identi.ca) or from Diaspora" -msgstr "Questa funzione è sperimentale. Non possiamo importare i contatti dalla rete OStatus (status.net/identi.ca) o da Diaspora" - -#: ../../mod/uimport.php:70 -msgid "Account file" -msgstr "File account" - -#: ../../mod/uimport.php:70 -msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" -msgstr "Per esportare il tuo account, vai su \"Impostazioni -> Esporta i tuoi dati personali\" e seleziona \"Esporta account\"" - -#: ../../mod/attach.php:8 -msgid "Item not available." -msgstr "Oggetto non disponibile." - -#: ../../mod/attach.php:20 -msgid "Item was not found." -msgstr "Oggetto non trovato." - -#: ../../boot.php:749 -msgid "Delete this item?" -msgstr "Cancellare questo elemento?" - -#: ../../boot.php:752 -msgid "show fewer" -msgstr "mostra di meno" - -#: ../../boot.php:1122 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "aggiornamento %s fallito. Guarda i log di errore." - -#: ../../boot.php:1240 -msgid "Create a New Account" -msgstr "Crea un nuovo account" - -#: ../../boot.php:1265 ../../include/nav.php:73 -msgid "Logout" -msgstr "Esci" - -#: ../../boot.php:1268 -msgid "Nickname or Email address: " -msgstr "Nome utente o indirizzo email: " - -#: ../../boot.php:1269 -msgid "Password: " -msgstr "Password: " - -#: ../../boot.php:1270 -msgid "Remember me" -msgstr "Ricordati di me" - -#: ../../boot.php:1273 -msgid "Or login using OpenID: " -msgstr "O entra con OpenID:" - -#: ../../boot.php:1279 -msgid "Forgot your password?" -msgstr "Hai dimenticato la password?" - -#: ../../boot.php:1282 -msgid "Website Terms of Service" -msgstr "Condizioni di servizio del sito web " - -#: ../../boot.php:1283 -msgid "terms of service" -msgstr "condizioni del servizio" - -#: ../../boot.php:1285 -msgid "Website Privacy Policy" -msgstr "Politiche di privacy del sito" - -#: ../../boot.php:1286 -msgid "privacy policy" -msgstr "politiche di privacy" - -#: ../../boot.php:1419 -msgid "Requested account is not available." -msgstr "L'account richiesto non è disponibile." - -#: ../../boot.php:1501 ../../boot.php:1635 -#: ../../include/profile_advanced.php:84 -msgid "Edit profile" -msgstr "Modifica il profilo" - -#: ../../boot.php:1600 -msgid "Message" -msgstr "Messaggio" - -#: ../../boot.php:1606 ../../include/nav.php:175 -msgid "Profiles" -msgstr "Profili" - -#: ../../boot.php:1606 -msgid "Manage/edit profiles" -msgstr "Gestisci/modifica i profili" - -#: ../../boot.php:1706 -msgid "Network:" -msgstr "Rete:" - -#: ../../boot.php:1736 ../../boot.php:1822 -msgid "g A l F d" -msgstr "g A l d F" - -#: ../../boot.php:1737 ../../boot.php:1823 -msgid "F d" -msgstr "d F" - -#: ../../boot.php:1782 ../../boot.php:1863 -msgid "[today]" -msgstr "[oggi]" - -#: ../../boot.php:1794 -msgid "Birthday Reminders" -msgstr "Promemoria compleanni" - -#: ../../boot.php:1795 -msgid "Birthdays this week:" -msgstr "Compleanni questa settimana:" - -#: ../../boot.php:1856 -msgid "[No description]" -msgstr "[Nessuna descrizione]" - -#: ../../boot.php:1874 -msgid "Event Reminders" -msgstr "Promemoria" - -#: ../../boot.php:1875 -msgid "Events this week:" -msgstr "Eventi di questa settimana:" - -#: ../../boot.php:2112 ../../include/nav.php:76 -msgid "Status" -msgstr "Stato" - -#: ../../boot.php:2115 -msgid "Status Messages and Posts" -msgstr "Messaggi di stato e post" - -#: ../../boot.php:2122 -msgid "Profile Details" -msgstr "Dettagli del profilo" - -#: ../../boot.php:2133 ../../boot.php:2136 ../../include/nav.php:79 -msgid "Videos" -msgstr "Video" - -#: ../../boot.php:2146 -msgid "Events and Calendar" -msgstr "Eventi e calendario" - -#: ../../boot.php:2153 -msgid "Only You Can See This" -msgstr "Solo tu puoi vedere questo" - -#: ../../object/Item.php:94 -msgid "This entry was edited" -msgstr "Questa voce è stata modificata" - -#: ../../object/Item.php:208 -msgid "ignore thread" -msgstr "ignora la discussione" - -#: ../../object/Item.php:209 -msgid "unignore thread" -msgstr "non ignorare la discussione" - -#: ../../object/Item.php:210 -msgid "toggle ignore status" -msgstr "inverti stato \"Ignora\"" - -#: ../../object/Item.php:213 -msgid "ignored" -msgstr "ignorato" - -#: ../../object/Item.php:316 ../../include/conversation.php:666 -msgid "Categories:" -msgstr "Categorie:" - -#: ../../object/Item.php:317 ../../include/conversation.php:667 -msgid "Filed under:" -msgstr "Archiviato in:" - -#: ../../object/Item.php:329 -msgid "via" -msgstr "via" - -#: ../../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 "\nGli sviluppatori di Friendica hanno rilasciato l'aggiornamento %s\nrecentemente, ma quando ho provato a installarlo, qualcosa è \nandato terribilmente storto.\nBisogna sistemare le cose e non posso farlo da solo.\nContatta uno sviluppatore se non puoi aiutarmi da solo. Il mio database potrebbe essere invalido." - -#: ../../include/dbstructure.php:31 -#, php-format -msgid "" -"The error message is\n" -"[pre]%s[/pre]" -msgstr "Il messaggio di errore è\n[pre]%s[/pre]" - -#: ../../include/dbstructure.php:162 -msgid "Errors encountered creating database tables." -msgstr "La creazione delle tabelle del database ha generato errori." - -#: ../../include/dbstructure.php:220 -msgid "Errors encountered performing database changes." -msgstr "Riscontrati errori applicando le modifiche al database." - -#: ../../include/auth.php:38 -msgid "Logged out." -msgstr "Uscita effettuata." - -#: ../../include/auth.php:128 ../../include/user.php:67 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Abbiamo incontrato un problema mentre contattavamo il server OpenID che ci hai fornito. Controlla di averlo scritto giusto." - -#: ../../include/auth.php:128 ../../include/user.php:67 -msgid "The error message was:" -msgstr "Il messaggio riportato era:" - -#: ../../include/contact_widgets.php:6 -msgid "Add New Contact" -msgstr "Aggiungi nuovo contatto" - -#: ../../include/contact_widgets.php:7 -msgid "Enter address or web location" -msgstr "Inserisci posizione o indirizzo web" - -#: ../../include/contact_widgets.php:8 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Esempio: bob@example.com, http://example.com/barbara" - -#: ../../include/contact_widgets.php:24 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d invito disponibile" -msgstr[1] "%d inviti disponibili" - -#: ../../include/contact_widgets.php:30 -msgid "Find People" -msgstr "Trova persone" - -#: ../../include/contact_widgets.php:31 -msgid "Enter name or interest" -msgstr "Inserisci un nome o un interesse" - -#: ../../include/contact_widgets.php:32 -msgid "Connect/Follow" -msgstr "Connetti/segui" - -#: ../../include/contact_widgets.php:33 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Esempi: Mario Rossi, Pesca" - -#: ../../include/contact_widgets.php:36 ../../view/theme/diabook/theme.php:526 -msgid "Similar Interests" -msgstr "Interessi simili" - -#: ../../include/contact_widgets.php:37 -msgid "Random Profile" -msgstr "Profilo causale" - -#: ../../include/contact_widgets.php:38 ../../view/theme/diabook/theme.php:528 -msgid "Invite Friends" -msgstr "Invita amici" - -#: ../../include/contact_widgets.php:71 -msgid "Networks" -msgstr "Reti" - -#: ../../include/contact_widgets.php:74 -msgid "All Networks" -msgstr "Tutte le Reti" - -#: ../../include/contact_widgets.php:104 ../../include/features.php:60 -msgid "Saved Folders" -msgstr "Cartelle Salvate" - -#: ../../include/contact_widgets.php:107 ../../include/contact_widgets.php:139 -msgid "Everything" -msgstr "Tutto" - -#: ../../include/contact_widgets.php:136 -msgid "Categories" -msgstr "Categorie" - -#: ../../include/features.php:23 -msgid "General Features" -msgstr "Funzionalità generali" - -#: ../../include/features.php:25 -msgid "Multiple Profiles" -msgstr "Profili multipli" - -#: ../../include/features.php:25 -msgid "Ability to create multiple profiles" -msgstr "Possibilità di creare profili multipli" - -#: ../../include/features.php:30 -msgid "Post Composition Features" -msgstr "Funzionalità di composizione dei post" - -#: ../../include/features.php:31 -msgid "Richtext Editor" -msgstr "Editor visuale" - -#: ../../include/features.php:31 -msgid "Enable richtext editor" -msgstr "Abilita l'editor visuale" - -#: ../../include/features.php:32 -msgid "Post Preview" -msgstr "Anteprima dei post" - -#: ../../include/features.php:32 -msgid "Allow previewing posts and comments before publishing them" -msgstr "Permetti di avere un'anteprima di messaggi e commenti prima di pubblicarli" - -#: ../../include/features.php:33 -msgid "Auto-mention Forums" -msgstr "Auto-cita i Forum" - -#: ../../include/features.php:33 -msgid "" -"Add/remove mention when a fourm page is selected/deselected in ACL window." -msgstr "Aggiunge o rimuove una citazione quando un forum è selezionato o deselezionato nella finestra dei permessi." - -#: ../../include/features.php:38 -msgid "Network Sidebar Widgets" -msgstr "Widget della barra laterale nella pagina Rete" - -#: ../../include/features.php:39 -msgid "Search by Date" -msgstr "Cerca per data" - -#: ../../include/features.php:39 -msgid "Ability to select posts by date ranges" -msgstr "Permette di filtrare i post per data" - -#: ../../include/features.php:40 -msgid "Group Filter" -msgstr "Filtra gruppi" - -#: ../../include/features.php:40 -msgid "Enable widget to display Network posts only from selected group" -msgstr "Abilita il widget per filtrare i post solo per il gruppo selezionato" - -#: ../../include/features.php:41 -msgid "Network Filter" -msgstr "Filtro reti" - -#: ../../include/features.php:41 -msgid "Enable widget to display Network posts only from selected network" -msgstr "Abilita il widget per mostare i post solo per la rete selezionata" - -#: ../../include/features.php:42 -msgid "Save search terms for re-use" -msgstr "Salva i termini cercati per riutilizzarli" - -#: ../../include/features.php:47 -msgid "Network Tabs" -msgstr "Schede pagina Rete" - -#: ../../include/features.php:48 -msgid "Network Personal Tab" -msgstr "Scheda Personali" - -#: ../../include/features.php:48 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "Abilita la scheda per mostrare solo i post a cui hai partecipato" - -#: ../../include/features.php:49 -msgid "Network New Tab" -msgstr "Scheda Nuovi" - -#: ../../include/features.php:49 -msgid "Enable tab to display only new Network posts (from the last 12 hours)" -msgstr "Abilita la scheda per mostrare solo i post nuovi (nelle ultime 12 ore)" - -#: ../../include/features.php:50 -msgid "Network Shared Links Tab" -msgstr "Scheda Link Condivisi" - -#: ../../include/features.php:50 -msgid "Enable tab to display only Network posts with links in them" -msgstr "Abilita la scheda per mostrare solo i post che contengono link" - -#: ../../include/features.php:55 -msgid "Post/Comment Tools" -msgstr "Strumenti per messaggi/commenti" - -#: ../../include/features.php:56 -msgid "Multiple Deletion" -msgstr "Eliminazione multipla" - -#: ../../include/features.php:56 -msgid "Select and delete multiple posts/comments at once" -msgstr "Seleziona ed elimina vari messagi e commenti in una volta sola" - -#: ../../include/features.php:57 -msgid "Edit Sent Posts" -msgstr "Modifica i post inviati" - -#: ../../include/features.php:57 -msgid "Edit and correct posts and comments after sending" -msgstr "Modifica e correggi messaggi e commenti dopo averli inviati" - -#: ../../include/features.php:58 -msgid "Tagging" -msgstr "Aggiunta tag" - -#: ../../include/features.php:58 -msgid "Ability to tag existing posts" -msgstr "Permette di aggiungere tag ai post già esistenti" - -#: ../../include/features.php:59 -msgid "Post Categories" -msgstr "Cateorie post" - -#: ../../include/features.php:59 -msgid "Add categories to your posts" -msgstr "Aggiungi categorie ai tuoi post" - -#: ../../include/features.php:60 -msgid "Ability to file posts under folders" -msgstr "Permette di archiviare i post in cartelle" - -#: ../../include/features.php:61 -msgid "Dislike Posts" -msgstr "Non mi piace" - -#: ../../include/features.php:61 -msgid "Ability to dislike posts/comments" -msgstr "Permetti di inviare \"non mi piace\" ai messaggi" - -#: ../../include/features.php:62 -msgid "Star Posts" -msgstr "Post preferiti" - -#: ../../include/features.php:62 -msgid "Ability to mark special posts with a star indicator" -msgstr "Permette di segnare i post preferiti con una stella" - -#: ../../include/features.php:63 -msgid "Mute Post Notifications" -msgstr "Silenzia le notifiche di nuovi post" - -#: ../../include/features.php:63 -msgid "Ability to mute notifications for a thread" -msgstr "Permette di silenziare le notifiche di nuovi post in una discussione" - -#: ../../include/follow.php:32 -msgid "Connect URL missing." -msgstr "URL di connessione mancante." - -#: ../../include/follow.php:59 -msgid "" -"This site is not configured to allow communications with other networks." -msgstr "Questo sito non è configurato per permettere la comunicazione con altri network." - -#: ../../include/follow.php:60 ../../include/follow.php:80 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "Non sono stati trovati protocolli di comunicazione o feed compatibili." - -#: ../../include/follow.php:78 -msgid "The profile address specified does not provide adequate information." -msgstr "L'indirizzo del profilo specificato non fornisce adeguate informazioni." - -#: ../../include/follow.php:82 -msgid "An author or name was not found." -msgstr "Non è stato trovato un nome o un autore" - -#: ../../include/follow.php:84 -msgid "No browser URL could be matched to this address." -msgstr "Nessun URL puo' essere associato a questo indirizzo." - -#: ../../include/follow.php:86 -msgid "" -"Unable to match @-style Identity Address with a known protocol or email " -"contact." -msgstr "Impossibile l'indirizzo identità con un protocollo conosciuto o con un contatto email." - -#: ../../include/follow.php:87 -msgid "Use mailto: in front of address to force email check." -msgstr "Usa \"mailto:\" davanti all'indirizzo per forzare un controllo nelle email." - -#: ../../include/follow.php:93 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "L'indirizzo del profilo specificato appartiene a un network che è stato disabilitato su questo sito." - -#: ../../include/follow.php:103 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "Profilo limitato. Questa persona non sarà in grado di ricevere notifiche personali da te." - -#: ../../include/follow.php:205 -msgid "Unable to retrieve contact information." -msgstr "Impossibile recuperare informazioni sul contatto." - -#: ../../include/follow.php:258 -msgid "following" -msgstr "segue" - -#: ../../include/group.php:25 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "Un gruppo eliminato con questo nome è stato ricreato. I permessi esistenti su un elemento possono essere applicati a questo gruppo e tutti i membri futuri. Se questo non è ciò che si intende, si prega di creare un altro gruppo con un nome diverso." - -#: ../../include/group.php:207 -msgid "Default privacy group for new contacts" -msgstr "Gruppo predefinito per i nuovi contatti" - -#: ../../include/group.php:226 -msgid "Everybody" -msgstr "Tutti" - -#: ../../include/group.php:249 -msgid "edit" -msgstr "modifica" - -#: ../../include/group.php:271 -msgid "Edit group" -msgstr "Modifica gruppo" - -#: ../../include/group.php:272 -msgid "Create a new group" -msgstr "Crea un nuovo gruppo" - -#: ../../include/group.php:273 -msgid "Contacts not in any group" -msgstr "Contatti in nessun gruppo." - -#: ../../include/datetime.php:43 ../../include/datetime.php:45 -msgid "Miscellaneous" -msgstr "Varie" - -#: ../../include/datetime.php:153 ../../include/datetime.php:290 -msgid "year" -msgstr "anno" - -#: ../../include/datetime.php:158 ../../include/datetime.php:291 -msgid "month" -msgstr "mese" - -#: ../../include/datetime.php:163 ../../include/datetime.php:293 -msgid "day" -msgstr "giorno" - -#: ../../include/datetime.php:276 -msgid "never" -msgstr "mai" - -#: ../../include/datetime.php:282 -msgid "less than a second ago" -msgstr "meno di un secondo fa" - -#: ../../include/datetime.php:290 -msgid "years" -msgstr "anni" - -#: ../../include/datetime.php:291 -msgid "months" -msgstr "mesi" - -#: ../../include/datetime.php:292 -msgid "week" -msgstr "settimana" - -#: ../../include/datetime.php:292 -msgid "weeks" -msgstr "settimane" - -#: ../../include/datetime.php:293 -msgid "days" -msgstr "giorni" - -#: ../../include/datetime.php:294 -msgid "hour" -msgstr "ora" - -#: ../../include/datetime.php:294 -msgid "hours" -msgstr "ore" - -#: ../../include/datetime.php:295 -msgid "minute" -msgstr "minuto" - -#: ../../include/datetime.php:295 -msgid "minutes" -msgstr "minuti" - -#: ../../include/datetime.php:296 -msgid "second" -msgstr "secondo" - -#: ../../include/datetime.php:296 -msgid "seconds" -msgstr "secondi" - -#: ../../include/datetime.php:305 -#, php-format -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s fa" - -#: ../../include/datetime.php:477 ../../include/items.php:2211 -#, php-format -msgid "%s's birthday" -msgstr "Compleanno di %s" - -#: ../../include/datetime.php:478 ../../include/items.php:2212 -#, php-format -msgid "Happy Birthday %s" -msgstr "Buon compleanno %s" - -#: ../../include/acl_selectors.php:333 -msgid "Visible to everybody" -msgstr "Visibile a tutti" - -#: ../../include/acl_selectors.php:334 ../../view/theme/diabook/config.php:142 -#: ../../view/theme/diabook/theme.php:621 -msgid "show" -msgstr "mostra" - -#: ../../include/acl_selectors.php:335 ../../view/theme/diabook/config.php:142 -#: ../../view/theme/diabook/theme.php:621 -msgid "don't show" -msgstr "non mostrare" - -#: ../../include/message.php:15 ../../include/message.php:172 -msgid "[no subject]" -msgstr "[nessun oggetto]" - -#: ../../include/Contact.php:115 -msgid "stopped following" -msgstr "tolto dai seguiti" - -#: ../../include/Contact.php:228 ../../include/conversation.php:882 -msgid "Poke" -msgstr "Stuzzica" - -#: ../../include/Contact.php:229 ../../include/conversation.php:876 -msgid "View Status" -msgstr "Visualizza stato" - -#: ../../include/Contact.php:230 ../../include/conversation.php:877 -msgid "View Profile" -msgstr "Visualizza profilo" - -#: ../../include/Contact.php:231 ../../include/conversation.php:878 -msgid "View Photos" -msgstr "Visualizza foto" - -#: ../../include/Contact.php:232 ../../include/Contact.php:255 -#: ../../include/conversation.php:879 -msgid "Network Posts" -msgstr "Post della Rete" - -#: ../../include/Contact.php:233 ../../include/Contact.php:255 -#: ../../include/conversation.php:880 -msgid "Edit Contact" -msgstr "Modifica contatti" - -#: ../../include/Contact.php:234 -msgid "Drop Contact" -msgstr "Rimuovi contatto" - -#: ../../include/Contact.php:235 ../../include/Contact.php:255 -#: ../../include/conversation.php:881 -msgid "Send PM" -msgstr "Invia messaggio privato" - -#: ../../include/security.php:22 -msgid "Welcome " -msgstr "Ciao" - -#: ../../include/security.php:23 -msgid "Please upload a profile photo." -msgstr "Carica una foto per il profilo." - -#: ../../include/security.php:26 -msgid "Welcome back " -msgstr "Ciao " - -#: ../../include/security.php:366 -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 "Il token di sicurezza della form non era corretto. Probabilmente la form è rimasta aperta troppo a lunto (più di tre ore) prima di inviarla." - -#: ../../include/conversation.php:118 ../../include/conversation.php:246 -#: ../../include/text.php:1966 ../../view/theme/diabook/theme.php:463 -msgid "event" -msgstr "l'evento" - -#: ../../include/conversation.php:207 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s ha stuzzicato %2$s" - -#: ../../include/conversation.php:211 ../../include/text.php:1005 -msgid "poked" -msgstr "ha stuzzicato" - -#: ../../include/conversation.php:291 -msgid "post/item" -msgstr "post/elemento" - -#: ../../include/conversation.php:292 -#, php-format -msgid "%1$s marked %2$s's %3$s as favorite" -msgstr "%1$s ha segnato il/la %3$s di %2$s come preferito" - -#: ../../include/conversation.php:772 -msgid "remove" -msgstr "rimuovi" - -#: ../../include/conversation.php:776 -msgid "Delete Selected Items" -msgstr "Cancella elementi selezionati" - -#: ../../include/conversation.php:875 -msgid "Follow Thread" -msgstr "Segui la discussione" - -#: ../../include/conversation.php:944 -#, php-format -msgid "%s likes this." -msgstr "Piace a %s." - -#: ../../include/conversation.php:944 -#, php-format -msgid "%s doesn't like this." -msgstr "Non piace a %s." - -#: ../../include/conversation.php:949 -#, php-format -msgid "%2$d people like this" -msgstr "Piace a %2$d persone." - -#: ../../include/conversation.php:952 -#, php-format -msgid "%2$d people don't like this" -msgstr "Non piace a %2$d persone." - -#: ../../include/conversation.php:966 -msgid "and" -msgstr "e" - -#: ../../include/conversation.php:972 -#, php-format -msgid ", and %d other people" -msgstr "e altre %d persone" - -#: ../../include/conversation.php:974 -#, php-format -msgid "%s like this." -msgstr "Piace a %s." - -#: ../../include/conversation.php:974 -#, php-format -msgid "%s don't like this." -msgstr "Non piace a %s." - -#: ../../include/conversation.php:1001 ../../include/conversation.php:1019 -msgid "Visible to everybody" -msgstr "Visibile a tutti" - -#: ../../include/conversation.php:1003 ../../include/conversation.php:1021 -msgid "Please enter a video link/URL:" -msgstr "Inserisci un collegamento video / URL:" - -#: ../../include/conversation.php:1004 ../../include/conversation.php:1022 -msgid "Please enter an audio link/URL:" -msgstr "Inserisci un collegamento audio / URL:" - -#: ../../include/conversation.php:1005 ../../include/conversation.php:1023 -msgid "Tag term:" -msgstr "Tag:" - -#: ../../include/conversation.php:1007 ../../include/conversation.php:1025 -msgid "Where are you right now?" -msgstr "Dove sei ora?" - -#: ../../include/conversation.php:1008 -msgid "Delete item(s)?" -msgstr "Cancellare questo elemento/i?" - -#: ../../include/conversation.php:1051 -msgid "Post to Email" -msgstr "Invia a email" - -#: ../../include/conversation.php:1056 -#, php-format -msgid "Connectors disabled, since \"%s\" is enabled." -msgstr "Connettore disabilitato, dato che \"%s\" è abilitato." - -#: ../../include/conversation.php:1111 -msgid "permissions" -msgstr "permessi" - -#: ../../include/conversation.php:1135 -msgid "Post to Groups" -msgstr "Invia ai Gruppi" - -#: ../../include/conversation.php:1136 -msgid "Post to Contacts" -msgstr "Invia ai Contatti" - -#: ../../include/conversation.php:1137 -msgid "Private post" -msgstr "Post privato" - -#: ../../include/network.php:895 -msgid "view full size" -msgstr "vedi a schermo intero" - -#: ../../include/text.php:297 -msgid "newer" -msgstr "nuovi" - -#: ../../include/text.php:299 -msgid "older" -msgstr "vecchi" - -#: ../../include/text.php:304 -msgid "prev" -msgstr "prec" - -#: ../../include/text.php:306 -msgid "first" -msgstr "primo" - -#: ../../include/text.php:338 -msgid "last" -msgstr "ultimo" - -#: ../../include/text.php:341 -msgid "next" -msgstr "succ" - -#: ../../include/text.php:855 -msgid "No contacts" -msgstr "Nessun contatto" - -#: ../../include/text.php:864 -#, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" -msgstr[0] "%d contatto" -msgstr[1] "%d contatti" - -#: ../../include/text.php:1005 -msgid "poke" -msgstr "stuzzica" - -#: ../../include/text.php:1006 -msgid "ping" -msgstr "invia un ping" - -#: ../../include/text.php:1006 -msgid "pinged" -msgstr "ha inviato un ping" - -#: ../../include/text.php:1007 -msgid "prod" -msgstr "pungola" - -#: ../../include/text.php:1007 -msgid "prodded" -msgstr "ha pungolato" - -#: ../../include/text.php:1008 -msgid "slap" -msgstr "schiaffeggia" - -#: ../../include/text.php:1008 -msgid "slapped" -msgstr "ha schiaffeggiato" - -#: ../../include/text.php:1009 -msgid "finger" -msgstr "tocca" - -#: ../../include/text.php:1009 -msgid "fingered" -msgstr "ha toccato" - -#: ../../include/text.php:1010 -msgid "rebuff" -msgstr "respingi" - -#: ../../include/text.php:1010 -msgid "rebuffed" -msgstr "ha respinto" - -#: ../../include/text.php:1024 -msgid "happy" -msgstr "felice" - -#: ../../include/text.php:1025 -msgid "sad" -msgstr "triste" - -#: ../../include/text.php:1026 -msgid "mellow" -msgstr "rilassato" - -#: ../../include/text.php:1027 -msgid "tired" -msgstr "stanco" - -#: ../../include/text.php:1028 -msgid "perky" -msgstr "vivace" - -#: ../../include/text.php:1029 -msgid "angry" -msgstr "arrabbiato" - -#: ../../include/text.php:1030 -msgid "stupified" -msgstr "stupefatto" - -#: ../../include/text.php:1031 -msgid "puzzled" -msgstr "confuso" - -#: ../../include/text.php:1032 -msgid "interested" -msgstr "interessato" - -#: ../../include/text.php:1033 -msgid "bitter" -msgstr "risentito" - -#: ../../include/text.php:1034 -msgid "cheerful" -msgstr "giocoso" - -#: ../../include/text.php:1035 -msgid "alive" -msgstr "vivo" - -#: ../../include/text.php:1036 -msgid "annoyed" -msgstr "annoiato" - -#: ../../include/text.php:1037 -msgid "anxious" -msgstr "ansioso" - -#: ../../include/text.php:1038 -msgid "cranky" -msgstr "irritabile" - -#: ../../include/text.php:1039 -msgid "disturbed" -msgstr "disturbato" - -#: ../../include/text.php:1040 -msgid "frustrated" -msgstr "frustato" - -#: ../../include/text.php:1041 -msgid "motivated" -msgstr "motivato" - -#: ../../include/text.php:1042 -msgid "relaxed" -msgstr "rilassato" - -#: ../../include/text.php:1043 -msgid "surprised" -msgstr "sorpreso" - -#: ../../include/text.php:1213 -msgid "Monday" -msgstr "Lunedì" - -#: ../../include/text.php:1213 -msgid "Tuesday" -msgstr "Martedì" - -#: ../../include/text.php:1213 -msgid "Wednesday" -msgstr "Mercoledì" - -#: ../../include/text.php:1213 -msgid "Thursday" -msgstr "Giovedì" - -#: ../../include/text.php:1213 -msgid "Friday" -msgstr "Venerdì" - -#: ../../include/text.php:1213 -msgid "Saturday" -msgstr "Sabato" - -#: ../../include/text.php:1213 -msgid "Sunday" -msgstr "Domenica" - -#: ../../include/text.php:1217 -msgid "January" -msgstr "Gennaio" - -#: ../../include/text.php:1217 -msgid "February" -msgstr "Febbraio" - -#: ../../include/text.php:1217 -msgid "March" -msgstr "Marzo" - -#: ../../include/text.php:1217 -msgid "April" -msgstr "Aprile" - -#: ../../include/text.php:1217 -msgid "May" -msgstr "Maggio" - -#: ../../include/text.php:1217 -msgid "June" -msgstr "Giugno" - -#: ../../include/text.php:1217 -msgid "July" -msgstr "Luglio" - -#: ../../include/text.php:1217 -msgid "August" -msgstr "Agosto" - -#: ../../include/text.php:1217 -msgid "September" -msgstr "Settembre" - -#: ../../include/text.php:1217 -msgid "October" -msgstr "Ottobre" - -#: ../../include/text.php:1217 -msgid "November" -msgstr "Novembre" - -#: ../../include/text.php:1217 -msgid "December" -msgstr "Dicembre" - -#: ../../include/text.php:1437 -msgid "bytes" -msgstr "bytes" - -#: ../../include/text.php:1461 ../../include/text.php:1473 -msgid "Click to open/close" -msgstr "Clicca per aprire/chiudere" - -#: ../../include/text.php:1702 ../../include/user.php:247 -#: ../../view/theme/duepuntozero/config.php:44 -msgid "default" -msgstr "default" - -#: ../../include/text.php:1714 -msgid "Select an alternate language" -msgstr "Seleziona una diversa lingua" - -#: ../../include/text.php:1970 -msgid "activity" -msgstr "attività" - -#: ../../include/text.php:1973 -msgid "post" -msgstr "messaggio" - -#: ../../include/text.php:2141 -msgid "Item filed" -msgstr "Messaggio salvato" - -#: ../../include/bbcode.php:428 ../../include/bbcode.php:1047 -#: ../../include/bbcode.php:1048 -msgid "Image/photo" -msgstr "Immagine/foto" - -#: ../../include/bbcode.php:528 -#, php-format -msgid "%2$s %3$s" -msgstr "" - -#: ../../include/bbcode.php:562 -#, php-format -msgid "" -"%s wrote the following post" -msgstr "%s ha scritto il seguente messaggio" - -#: ../../include/bbcode.php:1011 ../../include/bbcode.php:1031 -msgid "$1 wrote:" -msgstr "$1 ha scritto:" - -#: ../../include/bbcode.php:1056 ../../include/bbcode.php:1057 -msgid "Encrypted content" -msgstr "Contenuto criptato" - -#: ../../include/notifier.php:786 ../../include/delivery.php:456 -msgid "(no subject)" -msgstr "(nessun oggetto)" - -#: ../../include/notifier.php:796 ../../include/delivery.php:467 -#: ../../include/enotify.php:33 -msgid "noreply" -msgstr "nessuna risposta" - -#: ../../include/dba_pdo.php:72 ../../include/dba.php:56 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Non trovo le informazioni DNS per il database server '%s'" - -#: ../../include/contact_selectors.php:32 -msgid "Unknown | Not categorised" -msgstr "Sconosciuto | non categorizzato" - -#: ../../include/contact_selectors.php:33 -msgid "Block immediately" -msgstr "Blocca immediatamente" - -#: ../../include/contact_selectors.php:34 -msgid "Shady, spammer, self-marketer" -msgstr "Shady, spammer, self-marketer" - -#: ../../include/contact_selectors.php:35 -msgid "Known to me, but no opinion" -msgstr "Lo conosco, ma non ho un'opinione particolare" - -#: ../../include/contact_selectors.php:36 -msgid "OK, probably harmless" -msgstr "E' ok, probabilmente innocuo" - -#: ../../include/contact_selectors.php:37 -msgid "Reputable, has my trust" -msgstr "Rispettabile, ha la mia fiducia" - -#: ../../include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Settimanalmente" - -#: ../../include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Mensilmente" - -#: ../../include/contact_selectors.php:77 -msgid "OStatus" -msgstr "Ostatus" - -#: ../../include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS / Atom" - -#: ../../include/contact_selectors.php:82 -msgid "Zot!" -msgstr "Zot!" - -#: ../../include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: ../../include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: ../../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 "Connettore Diaspora" - -#: ../../include/contact_selectors.php:91 -msgid "Statusnet" -msgstr "Statusnet" - -#: ../../include/contact_selectors.php:92 -msgid "App.net" -msgstr "App.net" - -#: ../../include/Scrape.php:614 -msgid " on Last.fm" -msgstr "su Last.fm" - -#: ../../include/bb2diaspora.php:154 ../../include/event.php:20 -msgid "Starts:" -msgstr "Inizia:" - -#: ../../include/bb2diaspora.php:162 ../../include/event.php:30 -msgid "Finishes:" -msgstr "Finisce:" - -#: ../../include/profile_advanced.php:22 -msgid "j F, Y" -msgstr "j F Y" - -#: ../../include/profile_advanced.php:23 -msgid "j F" -msgstr "j F" - -#: ../../include/profile_advanced.php:30 -msgid "Birthday:" -msgstr "Compleanno:" - -#: ../../include/profile_advanced.php:34 -msgid "Age:" -msgstr "Età:" - -#: ../../include/profile_advanced.php:43 -#, php-format -msgid "for %1$d %2$s" -msgstr "per %1$d %2$s" - -#: ../../include/profile_advanced.php:52 -msgid "Tags:" -msgstr "Tag:" - -#: ../../include/profile_advanced.php:56 -msgid "Religion:" -msgstr "Religione:" - -#: ../../include/profile_advanced.php:60 -msgid "Hobbies/Interests:" -msgstr "Hobby/Interessi:" - -#: ../../include/profile_advanced.php:67 -msgid "Contact information and Social Networks:" -msgstr "Informazioni su contatti e social network:" - -#: ../../include/profile_advanced.php:69 -msgid "Musical interests:" -msgstr "Interessi musicali:" - -#: ../../include/profile_advanced.php:71 -msgid "Books, literature:" -msgstr "Libri, letteratura:" - -#: ../../include/profile_advanced.php:73 -msgid "Television:" -msgstr "Televisione:" - -#: ../../include/profile_advanced.php:75 -msgid "Film/dance/culture/entertainment:" -msgstr "Film/danza/cultura/intrattenimento:" - -#: ../../include/profile_advanced.php:77 -msgid "Love/Romance:" -msgstr "Amore:" - -#: ../../include/profile_advanced.php:79 -msgid "Work/employment:" -msgstr "Lavoro:" - -#: ../../include/profile_advanced.php:81 -msgid "School/education:" -msgstr "Scuola:" - -#: ../../include/plugin.php:455 ../../include/plugin.php:457 -msgid "Click here to upgrade." -msgstr "Clicca qui per aggiornare." - -#: ../../include/plugin.php:463 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Questa azione eccede i limiti del tuo piano di sottoscrizione." - -#: ../../include/plugin.php:468 -msgid "This action is not available under your subscription plan." -msgstr "Questa azione non è disponibile nel tuo piano di sottoscrizione." - -#: ../../include/nav.php:73 -msgid "End this session" -msgstr "Finisci questa sessione" - -#: ../../include/nav.php:76 ../../include/nav.php:148 -#: ../../view/theme/diabook/theme.php:123 -msgid "Your posts and conversations" -msgstr "I tuoi messaggi e le tue conversazioni" - -#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:124 -msgid "Your profile page" -msgstr "Pagina del tuo profilo" - -#: ../../include/nav.php:78 ../../view/theme/diabook/theme.php:126 -msgid "Your photos" -msgstr "Le tue foto" - -#: ../../include/nav.php:79 -msgid "Your videos" -msgstr "I tuoi video" - -#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:127 -msgid "Your events" -msgstr "I tuoi eventi" - -#: ../../include/nav.php:81 ../../view/theme/diabook/theme.php:128 -msgid "Personal notes" -msgstr "Note personali" - -#: ../../include/nav.php:81 -msgid "Your personal notes" -msgstr "Le tue note personali" - -#: ../../include/nav.php:92 -msgid "Sign in" -msgstr "Entra" - -#: ../../include/nav.php:105 -msgid "Home Page" -msgstr "Home Page" - -#: ../../include/nav.php:109 -msgid "Create an account" -msgstr "Crea un account" - -#: ../../include/nav.php:114 -msgid "Help and documentation" -msgstr "Guida e documentazione" - -#: ../../include/nav.php:117 -msgid "Apps" -msgstr "Applicazioni" - -#: ../../include/nav.php:117 -msgid "Addon applications, utilities, games" -msgstr "Applicazioni, utilità e giochi aggiuntivi" - -#: ../../include/nav.php:119 -msgid "Search site content" -msgstr "Cerca nel contenuto del sito" - -#: ../../include/nav.php:129 -msgid "Conversations on this site" -msgstr "Conversazioni su questo sito" - -#: ../../include/nav.php:131 -msgid "Conversations on the network" -msgstr "" - -#: ../../include/nav.php:133 -msgid "Directory" -msgstr "Elenco" - -#: ../../include/nav.php:133 -msgid "People directory" -msgstr "Elenco delle persone" - -#: ../../include/nav.php:135 -msgid "Information" -msgstr "Informazioni" - -#: ../../include/nav.php:135 -msgid "Information about this friendica instance" -msgstr "Informazioni su questo server friendica" - -#: ../../include/nav.php:145 -msgid "Conversations from your friends" -msgstr "Conversazioni dai tuoi amici" - -#: ../../include/nav.php:146 -msgid "Network Reset" -msgstr "Reset pagina Rete" - -#: ../../include/nav.php:146 -msgid "Load Network page with no filters" -msgstr "Carica la pagina Rete senza nessun filtro" - -#: ../../include/nav.php:154 -msgid "Friend Requests" -msgstr "Richieste di amicizia" - -#: ../../include/nav.php:156 -msgid "See all notifications" -msgstr "Vedi tutte le notifiche" - -#: ../../include/nav.php:157 -msgid "Mark all system notifications seen" -msgstr "Segna tutte le notifiche come viste" - -#: ../../include/nav.php:161 -msgid "Private mail" -msgstr "Posta privata" - -#: ../../include/nav.php:162 -msgid "Inbox" -msgstr "In arrivo" - -#: ../../include/nav.php:163 -msgid "Outbox" -msgstr "Inviati" - -#: ../../include/nav.php:167 -msgid "Manage" -msgstr "Gestisci" - -#: ../../include/nav.php:167 -msgid "Manage other pages" -msgstr "Gestisci altre pagine" - -#: ../../include/nav.php:172 -msgid "Account settings" -msgstr "Parametri account" - -#: ../../include/nav.php:175 -msgid "Manage/Edit Profiles" -msgstr "Gestisci/Modifica i profili" - -#: ../../include/nav.php:177 -msgid "Manage/edit friends and contacts" -msgstr "Gestisci/modifica amici e contatti" - -#: ../../include/nav.php:184 -msgid "Site setup and configuration" -msgstr "Configurazione del sito" - -#: ../../include/nav.php:188 -msgid "Navigation" -msgstr "Navigazione" - -#: ../../include/nav.php:188 -msgid "Site map" -msgstr "Mappa del sito" - -#: ../../include/api.php:304 ../../include/api.php:315 -#: ../../include/api.php:416 ../../include/api.php:1063 -#: ../../include/api.php:1065 -msgid "User not found." -msgstr "Utente non trovato." - -#: ../../include/api.php:771 -#, php-format -msgid "Daily posting limit of %d posts reached. The post was rejected." -msgstr "" - -#: ../../include/api.php:790 -#, php-format -msgid "Weekly posting limit of %d posts reached. The post was rejected." -msgstr "" - -#: ../../include/api.php:809 -#, php-format -msgid "Monthly posting limit of %d posts reached. The post was rejected." -msgstr "" - -#: ../../include/api.php:1272 -msgid "There is no status with this id." -msgstr "Non c'è nessuno status con questo id." - -#: ../../include/api.php:1342 -msgid "There is no conversation with this id." -msgstr "Non c'è nessuna conversazione con questo id" - -#: ../../include/api.php:1614 -msgid "Invalid request." -msgstr "" - -#: ../../include/api.php:1625 -msgid "Invalid item." -msgstr "" - -#: ../../include/api.php:1635 -msgid "Invalid action. " -msgstr "" - -#: ../../include/api.php:1643 -msgid "DB error" -msgstr "" - -#: ../../include/user.php:40 -msgid "An invitation is required." -msgstr "E' richiesto un invito." - -#: ../../include/user.php:45 -msgid "Invitation could not be verified." -msgstr "L'invito non puo' essere verificato." - -#: ../../include/user.php:53 -msgid "Invalid OpenID url" -msgstr "Url OpenID non valido" - -#: ../../include/user.php:74 -msgid "Please enter the required information." -msgstr "Inserisci le informazioni richieste." - -#: ../../include/user.php:88 -msgid "Please use a shorter name." -msgstr "Usa un nome più corto." - -#: ../../include/user.php:90 -msgid "Name too short." -msgstr "Il nome è troppo corto." - -#: ../../include/user.php:105 -msgid "That doesn't appear to be your full (First Last) name." -msgstr "Questo non sembra essere il tuo nome completo (Nome Cognome)." - -#: ../../include/user.php:110 -msgid "Your email domain is not among those allowed on this site." -msgstr "Il dominio della tua email non è tra quelli autorizzati su questo sito." - -#: ../../include/user.php:113 -msgid "Not a valid email address." -msgstr "L'indirizzo email non è valido." - -#: ../../include/user.php:126 -msgid "Cannot use that email." -msgstr "Non puoi usare quell'email." - -#: ../../include/user.php:132 -msgid "" -"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " -"must also begin with a letter." -msgstr "Il tuo nome utente puo' contenere solo \"a-z\", \"0-9\", \"-\", e \"_\", e deve cominciare con una lettera." - -#: ../../include/user.php:138 ../../include/user.php:236 -msgid "Nickname is already registered. Please choose another." -msgstr "Nome utente già registrato. Scegline un altro." - -#: ../../include/user.php:148 -msgid "" -"Nickname was once registered here and may not be re-used. Please choose " -"another." -msgstr "Questo nome utente stato già registrato. Per favore, sceglierne uno nuovo." - -#: ../../include/user.php:164 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "ERRORE GRAVE: La generazione delle chiavi di sicurezza è fallita." - -#: ../../include/user.php:222 -msgid "An error occurred during registration. Please try again." -msgstr "C'è stato un errore durante la registrazione. Prova ancora." - -#: ../../include/user.php:257 -msgid "An error occurred creating your default profile. Please try again." -msgstr "C'è stato un errore nella creazione del tuo profilo. Prova ancora." - -#: ../../include/user.php:289 ../../include/user.php:293 -#: ../../include/profile_selectors.php:42 -msgid "Friends" -msgstr "Amici" - -#: ../../include/user.php:377 -#, php-format -msgid "" -"\n" -"\t\tDear %1$s,\n" -"\t\t\tThank you for registering at %2$s. Your account has been created.\n" -"\t" -msgstr "\nGentile %1$s,\nGrazie per esserti registrato su %2$s. Il tuo account è stato creato." - -#: ../../include/user.php:381 -#, php-format -msgid "" -"\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." -msgstr "" - -#: ../../include/diaspora.php:703 -msgid "Sharing notification from Diaspora network" -msgstr "Notifica di condivisione dal network Diaspora*" - -#: ../../include/diaspora.php:2520 -msgid "Attachments:" -msgstr "Allegati:" - -#: ../../include/items.php:4555 -msgid "Do you really want to delete this item?" -msgstr "Vuoi veramente cancellare questo elemento?" - -#: ../../include/items.php:4778 -msgid "Archives" -msgstr "Archivi" - -#: ../../include/profile_selectors.php:6 -msgid "Male" -msgstr "Maschio" - -#: ../../include/profile_selectors.php:6 -msgid "Female" -msgstr "Femmina" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Male" -msgstr "Al momento maschio" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Female" -msgstr "Al momento femmina" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Male" -msgstr "Prevalentemente maschio" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Female" -msgstr "Prevalentemente femmina" - -#: ../../include/profile_selectors.php:6 -msgid "Transgender" -msgstr "Transgender" - -#: ../../include/profile_selectors.php:6 -msgid "Intersex" -msgstr "Intersex" - -#: ../../include/profile_selectors.php:6 -msgid "Transsexual" -msgstr "Transessuale" - -#: ../../include/profile_selectors.php:6 -msgid "Hermaphrodite" -msgstr "Ermafrodito" - -#: ../../include/profile_selectors.php:6 -msgid "Neuter" -msgstr "Neutro" - -#: ../../include/profile_selectors.php:6 -msgid "Non-specific" -msgstr "Non specificato" - -#: ../../include/profile_selectors.php:6 -msgid "Other" -msgstr "Altro" - -#: ../../include/profile_selectors.php:6 -msgid "Undecided" -msgstr "Indeciso" - -#: ../../include/profile_selectors.php:23 -msgid "Males" -msgstr "Maschi" - -#: ../../include/profile_selectors.php:23 -msgid "Females" -msgstr "Femmine" - -#: ../../include/profile_selectors.php:23 -msgid "Gay" -msgstr "Gay" - -#: ../../include/profile_selectors.php:23 -msgid "Lesbian" -msgstr "Lesbica" - -#: ../../include/profile_selectors.php:23 -msgid "No Preference" -msgstr "Nessuna preferenza" - -#: ../../include/profile_selectors.php:23 -msgid "Bisexual" -msgstr "Bisessuale" - -#: ../../include/profile_selectors.php:23 -msgid "Autosexual" -msgstr "Autosessuale" - -#: ../../include/profile_selectors.php:23 -msgid "Abstinent" -msgstr "Astinente" - -#: ../../include/profile_selectors.php:23 -msgid "Virgin" -msgstr "Vergine" - -#: ../../include/profile_selectors.php:23 -msgid "Deviant" -msgstr "Deviato" - -#: ../../include/profile_selectors.php:23 -msgid "Fetish" -msgstr "Fetish" - -#: ../../include/profile_selectors.php:23 -msgid "Oodles" -msgstr "Un sacco" - -#: ../../include/profile_selectors.php:23 -msgid "Nonsexual" -msgstr "Asessuato" - -#: ../../include/profile_selectors.php:42 -msgid "Single" -msgstr "Single" - -#: ../../include/profile_selectors.php:42 -msgid "Lonely" -msgstr "Solitario" - -#: ../../include/profile_selectors.php:42 -msgid "Available" -msgstr "Disponibile" - -#: ../../include/profile_selectors.php:42 -msgid "Unavailable" -msgstr "Non disponibile" - -#: ../../include/profile_selectors.php:42 -msgid "Has crush" -msgstr "è cotto/a" - -#: ../../include/profile_selectors.php:42 -msgid "Infatuated" -msgstr "infatuato/a" - -#: ../../include/profile_selectors.php:42 -msgid "Dating" -msgstr "Disponibile a un incontro" - -#: ../../include/profile_selectors.php:42 -msgid "Unfaithful" -msgstr "Infedele" - -#: ../../include/profile_selectors.php:42 -msgid "Sex Addict" -msgstr "Sesso-dipendente" - -#: ../../include/profile_selectors.php:42 -msgid "Friends/Benefits" -msgstr "Amici con benefici" - -#: ../../include/profile_selectors.php:42 -msgid "Casual" -msgstr "Casual" - -#: ../../include/profile_selectors.php:42 -msgid "Engaged" -msgstr "Impegnato" - -#: ../../include/profile_selectors.php:42 -msgid "Married" -msgstr "Sposato" - -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily married" -msgstr "immaginariamente sposato/a" - -#: ../../include/profile_selectors.php:42 -msgid "Partners" -msgstr "Partners" - -#: ../../include/profile_selectors.php:42 -msgid "Cohabiting" -msgstr "Coinquilino" - -#: ../../include/profile_selectors.php:42 -msgid "Common law" -msgstr "diritto comune" - -#: ../../include/profile_selectors.php:42 -msgid "Happy" -msgstr "Felice" - -#: ../../include/profile_selectors.php:42 -msgid "Not looking" -msgstr "Non guarda" - -#: ../../include/profile_selectors.php:42 -msgid "Swinger" -msgstr "Scambista" - -#: ../../include/profile_selectors.php:42 -msgid "Betrayed" -msgstr "Tradito" - -#: ../../include/profile_selectors.php:42 -msgid "Separated" -msgstr "Separato" - -#: ../../include/profile_selectors.php:42 -msgid "Unstable" -msgstr "Instabile" - -#: ../../include/profile_selectors.php:42 -msgid "Divorced" -msgstr "Divorziato" - -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily divorced" -msgstr "immaginariamente divorziato/a" - -#: ../../include/profile_selectors.php:42 -msgid "Widowed" -msgstr "Vedovo" - -#: ../../include/profile_selectors.php:42 -msgid "Uncertain" -msgstr "Incerto" - -#: ../../include/profile_selectors.php:42 -msgid "It's complicated" -msgstr "E' complicato" - -#: ../../include/profile_selectors.php:42 -msgid "Don't care" -msgstr "Non interessa" - -#: ../../include/profile_selectors.php:42 -msgid "Ask me" -msgstr "Chiedimelo" - -#: ../../include/enotify.php:18 -msgid "Friendica Notification" -msgstr "Notifica Friendica" - -#: ../../include/enotify.php:21 -msgid "Thank You," -msgstr "Grazie," - -#: ../../include/enotify.php:23 -#, php-format -msgid "%s Administrator" -msgstr "Amministratore %s" - -#: ../../include/enotify.php:64 -#, php-format -msgid "%s " -msgstr "%s " - -#: ../../include/enotify.php:68 -#, php-format -msgid "[Friendica:Notify] New mail received at %s" -msgstr "[Friendica:Notifica] Nuovo messaggio privato ricevuto su %s" - -#: ../../include/enotify.php:70 -#, php-format -msgid "%1$s sent you a new private message at %2$s." -msgstr "%1$s ti ha inviato un nuovo messaggio privato su %2$s." - -#: ../../include/enotify.php:71 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s ti ha inviato %2$s" - -#: ../../include/enotify.php:71 -msgid "a private message" -msgstr "un messaggio privato" - -#: ../../include/enotify.php:72 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Visita %s per vedere e/o rispodere ai tuoi messaggi privati." - -#: ../../include/enotify.php:124 -#, php-format -msgid "%1$s commented on [url=%2$s]a %3$s[/url]" -msgstr "%1$s ha commentato [url=%2$s]%3$s[/url]" - -#: ../../include/enotify.php:131 -#, php-format -msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" -msgstr "%1$s ha commentato [url=%2$s]%4$s di %3$s[/url]" - -#: ../../include/enotify.php:139 -#, php-format -msgid "%1$s commented on [url=%2$s]your %3$s[/url]" -msgstr "%1$s ha commentato un [url=%2$s]tuo %3$s[/url]" - -#: ../../include/enotify.php:149 -#, php-format -msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[Friendica:Notifica] Commento di %2$s alla conversazione #%1$d" - -#: ../../include/enotify.php:150 -#, php-format -msgid "%s commented on an item/conversation you have been following." -msgstr "%s ha commentato un elemento che stavi seguendo." - -#: ../../include/enotify.php:153 ../../include/enotify.php:168 -#: ../../include/enotify.php:181 ../../include/enotify.php:194 -#: ../../include/enotify.php:212 ../../include/enotify.php:225 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Visita %s per vedere e/o commentare la conversazione" - -#: ../../include/enotify.php:160 -#, php-format -msgid "[Friendica:Notify] %s posted to your profile wall" -msgstr "[Friendica:Notifica] %s ha scritto sulla tua bacheca" - -#: ../../include/enotify.php:162 -#, php-format -msgid "%1$s posted to your profile wall at %2$s" -msgstr "%1$s ha scritto sulla tua bacheca su %2$s" - -#: ../../include/enotify.php:164 -#, php-format -msgid "%1$s posted to [url=%2$s]your wall[/url]" -msgstr "%1$s ha inviato un messaggio sulla [url=%2$s]tua bacheca[/url]" - -#: ../../include/enotify.php:175 -#, php-format -msgid "[Friendica:Notify] %s tagged you" -msgstr "[Friendica:Notifica] %s ti ha taggato" - -#: ../../include/enotify.php:176 -#, php-format -msgid "%1$s tagged you at %2$s" -msgstr "%1$s ti ha taggato su %2$s" - -#: ../../include/enotify.php:177 -#, php-format -msgid "%1$s [url=%2$s]tagged you[/url]." -msgstr "%1$s [url=%2$s]ti ha taggato[/url]." - -#: ../../include/enotify.php:188 -#, php-format -msgid "[Friendica:Notify] %s shared a new post" -msgstr "[Friendica:Notifica] %s ha condiviso un nuovo messaggio" - -#: ../../include/enotify.php:189 -#, php-format -msgid "%1$s shared a new post at %2$s" -msgstr "%1$s ha condiviso un nuovo messaggio su %2$s" - -#: ../../include/enotify.php:190 -#, php-format -msgid "%1$s [url=%2$s]shared a post[/url]." -msgstr "%1$s [url=%2$s]ha condiviso un messaggio[/url]." - -#: ../../include/enotify.php:202 -#, php-format -msgid "[Friendica:Notify] %1$s poked you" -msgstr "[Friendica:Notifica] %1$s ti ha stuzzicato" - -#: ../../include/enotify.php:203 -#, php-format -msgid "%1$s poked you at %2$s" -msgstr "%1$s ti ha stuzzicato su %2$s" - -#: ../../include/enotify.php:204 -#, php-format -msgid "%1$s [url=%2$s]poked you[/url]." -msgstr "%1$s [url=%2$s]ti ha stuzzicato[/url]." - -#: ../../include/enotify.php:219 -#, php-format -msgid "[Friendica:Notify] %s tagged your post" -msgstr "[Friendica:Notifica] %s ha taggato un tuo messaggio" - -#: ../../include/enotify.php:220 -#, php-format -msgid "%1$s tagged your post at %2$s" -msgstr "%1$s ha taggato il tuo post su %2$s" - -#: ../../include/enotify.php:221 -#, php-format -msgid "%1$s tagged [url=%2$s]your post[/url]" -msgstr "%1$s ha taggato [url=%2$s]il tuo post[/url]" - -#: ../../include/enotify.php:232 -msgid "[Friendica:Notify] Introduction received" -msgstr "[Friendica:Notifica] Hai ricevuto una presentazione" - -#: ../../include/enotify.php:233 -#, php-format -msgid "You've received an introduction from '%1$s' at %2$s" -msgstr "Hai ricevuto un'introduzione da '%1$s' su %2$s" - -#: ../../include/enotify.php:234 -#, php-format -msgid "You've received [url=%1$s]an introduction[/url] from %2$s." -msgstr "Hai ricevuto [url=%1$s]un'introduzione[/url] da %2$s." - -#: ../../include/enotify.php:237 ../../include/enotify.php:279 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Puoi visitare il suo profilo presso %s" - -#: ../../include/enotify.php:239 -#, php-format -msgid "Please visit %s to approve or reject the introduction." -msgstr "Visita %s per approvare o rifiutare la presentazione." - -#: ../../include/enotify.php:247 -msgid "[Friendica:Notify] A new person is sharing with you" -msgstr "[Friendica:Notifica] Una nuova persona sta condividendo con te" - -#: ../../include/enotify.php:248 ../../include/enotify.php:249 -#, php-format -msgid "%1$s is sharing with you at %2$s" -msgstr "%1$s sta condividendo con te su %2$s" - -#: ../../include/enotify.php:255 -msgid "[Friendica:Notify] You have a new follower" -msgstr "[Friendica:Notifica] Una nuova persona ti segue" - -#: ../../include/enotify.php:256 ../../include/enotify.php:257 -#, php-format -msgid "You have a new follower at %2$s : %1$s" -msgstr "Un nuovo utente ha iniziato a seguirti su %2$s : %1$s" - -#: ../../include/enotify.php:270 -msgid "[Friendica:Notify] Friend suggestion received" -msgstr "[Friendica:Notifica] Hai ricevuto un suggerimento di amicizia" - -#: ../../include/enotify.php:271 -#, php-format -msgid "You've received a friend suggestion from '%1$s' at %2$s" -msgstr "Hai ricevuto un suggerimento di amicizia da '%1$s' su %2$s" - -#: ../../include/enotify.php:272 -#, php-format -msgid "" -"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." -msgstr "Hai ricevuto [url=%1$s]un suggerimento di amicizia[/url] per %2$s su %3$s" - -#: ../../include/enotify.php:277 -msgid "Name:" -msgstr "Nome:" - -#: ../../include/enotify.php:278 -msgid "Photo:" -msgstr "Foto:" - -#: ../../include/enotify.php:281 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Visita %s per approvare o rifiutare il suggerimento." - -#: ../../include/enotify.php:289 ../../include/enotify.php:302 -msgid "[Friendica:Notify] Connection accepted" -msgstr "[Friendica:Notifica] Connessione accettata" - -#: ../../include/enotify.php:290 ../../include/enotify.php:303 -#, php-format -msgid "'%1$s' has acepted your connection request at %2$s" -msgstr "'%1$s' ha accettato la tua richiesta di connessione su %2$s" - -#: ../../include/enotify.php:291 ../../include/enotify.php:304 -#, php-format -msgid "%2$s has accepted your [url=%1$s]connection request[/url]." -msgstr "%2$s ha accettato la tua [url=%1$s]richiesta di connessione[/url]" - -#: ../../include/enotify.php:294 -msgid "" -"You are now mutual friends and may exchange status updates, photos, and email\n" -"\twithout restriction." -msgstr "Ora siete connessi reciprocamente e potete scambiarvi aggiornamenti di stato, foto e email\nsenza restrizioni" - -#: ../../include/enotify.php:297 ../../include/enotify.php:311 -#, php-format -msgid "Please visit %s if you wish to make any changes to this relationship." -msgstr "Visita %s se desideri modificare questo collegamento." - -#: ../../include/enotify.php:307 -#, php-format -msgid "" -"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of " -"communication - such as private messaging and some profile interactions. If " -"this is a celebrity or community page, these settings were applied " -"automatically." -msgstr "'%1$s' ha scelto di accettarti come \"fan\", il che limita alcune forme di comunicazione, come i messaggi privati, e alcune possibiltà di interazione col profilo. Se è una pagina di una comunità o di una celebrità, queste impostazioni sono state applicate automaticamente." - -#: ../../include/enotify.php:309 -#, php-format -msgid "" -"'%1$s' may choose to extend this into a two-way or more permissive " -"relationship in the future. " -msgstr "'%1$s' può decidere in futuro di estendere la connessione in una reciproca o più permissiva." - -#: ../../include/enotify.php:322 -msgid "[Friendica System:Notify] registration request" -msgstr "[Friendica System:Notifica] richiesta di registrazione" - -#: ../../include/enotify.php:323 -#, php-format -msgid "You've received a registration request from '%1$s' at %2$s" -msgstr "Hai ricevuto una richiesta di registrazione da '%1$s' su %2$s" - -#: ../../include/enotify.php:324 -#, php-format -msgid "You've received a [url=%1$s]registration request[/url] from %2$s." -msgstr "Hai ricevuto una [url=%1$s]richiesta di registrazione[/url] da %2$s." - -#: ../../include/enotify.php:327 -#, php-format -msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" -msgstr "Nome completo: %1$s\nIndirizzo del sito: %2$s\nNome utente: %3$s (%4$s)" - -#: ../../include/enotify.php:330 -#, php-format -msgid "Please visit %s to approve or reject the request." -msgstr "Visita %s per approvare o rifiutare la richiesta." - -#: ../../include/oembed.php:212 -msgid "Embedded content" -msgstr "Contenuto incorporato" - -#: ../../include/oembed.php:221 -msgid "Embedding disabled" -msgstr "Embed disabilitato" - -#: ../../include/uimport.php:94 -msgid "Error decoding account file" -msgstr "Errore decodificando il file account" - -#: ../../include/uimport.php:100 -msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "Errore! Nessuna informazione di versione nel file! Potrebbe non essere un file account di Friendica?" - -#: ../../include/uimport.php:116 ../../include/uimport.php:127 -msgid "Error! Cannot check nickname" -msgstr "Errore! Non posso controllare il nickname" - -#: ../../include/uimport.php:120 ../../include/uimport.php:131 -#, php-format -msgid "User '%s' already exists on this server!" -msgstr "L'utente '%s' esiste già su questo server!" - -#: ../../include/uimport.php:153 -msgid "User creation error" -msgstr "Errore creando l'utente" - -#: ../../include/uimport.php:171 -msgid "User profile creation error" -msgstr "Errore creando il profile dell'utente" - -#: ../../include/uimport.php:220 -#, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "%d contatto non importato" -msgstr[1] "%d contatti non importati" - -#: ../../include/uimport.php:290 -msgid "Done. You can now login with your username and password" -msgstr "Fatto. Ora puoi entrare con il tuo nome utente e la tua password" - -#: ../../index.php:428 -msgid "toggle mobile" -msgstr "commuta tema mobile" - -#: ../../view/theme/cleanzero/config.php:82 -#: ../../view/theme/dispy/config.php:72 ../../view/theme/quattro/config.php:66 -#: ../../view/theme/diabook/config.php:150 ../../view/theme/vier/config.php:55 -#: ../../view/theme/duepuntozero/config.php:61 -msgid "Theme settings" -msgstr "Impostazioni tema" - -#: ../../view/theme/cleanzero/config.php:83 -msgid "Set resize level for images in posts and comments (width and height)" -msgstr "Dimensione immagini in messaggi e commenti (larghezza e altezza)" - -#: ../../view/theme/cleanzero/config.php:84 -#: ../../view/theme/dispy/config.php:73 -#: ../../view/theme/diabook/config.php:151 -msgid "Set font-size for posts and comments" -msgstr "Dimensione del carattere di messaggi e commenti" - -#: ../../view/theme/cleanzero/config.php:85 -msgid "Set theme width" -msgstr "Imposta la larghezza del tema" - -#: ../../view/theme/cleanzero/config.php:86 -#: ../../view/theme/quattro/config.php:68 -msgid "Color scheme" -msgstr "Schema colori" - -#: ../../view/theme/dispy/config.php:74 -#: ../../view/theme/diabook/config.php:152 -msgid "Set line-height for posts and comments" -msgstr "Altezza della linea di testo di messaggi e commenti" - -#: ../../view/theme/dispy/config.php:75 -msgid "Set colour scheme" -msgstr "Imposta schema colori" - -#: ../../view/theme/quattro/config.php:67 -msgid "Alignment" -msgstr "Allineamento" - -#: ../../view/theme/quattro/config.php:67 -msgid "Left" -msgstr "Sinistra" - -#: ../../view/theme/quattro/config.php:67 -msgid "Center" -msgstr "Centrato" - -#: ../../view/theme/quattro/config.php:69 -msgid "Posts font size" -msgstr "Dimensione caratteri post" - -#: ../../view/theme/quattro/config.php:70 -msgid "Textareas font size" -msgstr "Dimensione caratteri nelle aree di testo" - -#: ../../view/theme/diabook/config.php:153 -msgid "Set resolution for middle column" -msgstr "Imposta la dimensione della colonna centrale" - -#: ../../view/theme/diabook/config.php:154 -msgid "Set color scheme" -msgstr "Imposta lo schema dei colori" - -#: ../../view/theme/diabook/config.php:155 -msgid "Set zoomfactor for Earth Layer" -msgstr "Livello di zoom per Earth Layer" - -#: ../../view/theme/diabook/config.php:156 -#: ../../view/theme/diabook/theme.php:585 -msgid "Set longitude (X) for Earth Layers" -msgstr "Longitudine (X) per Earth Layers" - -#: ../../view/theme/diabook/config.php:157 -#: ../../view/theme/diabook/theme.php:586 -msgid "Set latitude (Y) for Earth Layers" -msgstr "Latitudine (Y) per Earth Layers" - -#: ../../view/theme/diabook/config.php:158 -#: ../../view/theme/diabook/theme.php:130 -#: ../../view/theme/diabook/theme.php:544 -#: ../../view/theme/diabook/theme.php:624 -msgid "Community Pages" -msgstr "Pagine Comunitarie" - -#: ../../view/theme/diabook/config.php:159 -#: ../../view/theme/diabook/theme.php:579 -#: ../../view/theme/diabook/theme.php:625 -msgid "Earth Layers" -msgstr "Earth Layers" - -#: ../../view/theme/diabook/config.php:160 -#: ../../view/theme/diabook/theme.php:391 -#: ../../view/theme/diabook/theme.php:626 -msgid "Community Profiles" -msgstr "Profili Comunità" - -#: ../../view/theme/diabook/config.php:161 -#: ../../view/theme/diabook/theme.php:599 -#: ../../view/theme/diabook/theme.php:627 -msgid "Help or @NewHere ?" -msgstr "Serve aiuto? Sei nuovo?" - -#: ../../view/theme/diabook/config.php:162 -#: ../../view/theme/diabook/theme.php:606 -#: ../../view/theme/diabook/theme.php:628 -msgid "Connect Services" -msgstr "Servizi di conessione" - -#: ../../view/theme/diabook/config.php:163 -#: ../../view/theme/diabook/theme.php:523 -#: ../../view/theme/diabook/theme.php:629 -msgid "Find Friends" -msgstr "Trova Amici" - -#: ../../view/theme/diabook/config.php:164 -#: ../../view/theme/diabook/theme.php:412 -#: ../../view/theme/diabook/theme.php:630 -msgid "Last users" -msgstr "Ultimi utenti" - -#: ../../view/theme/diabook/config.php:165 -#: ../../view/theme/diabook/theme.php:486 -#: ../../view/theme/diabook/theme.php:631 -msgid "Last photos" -msgstr "Ultime foto" - -#: ../../view/theme/diabook/config.php:166 -#: ../../view/theme/diabook/theme.php:441 -#: ../../view/theme/diabook/theme.php:632 -msgid "Last likes" -msgstr "Ultimi \"mi piace\"" - -#: ../../view/theme/diabook/theme.php:125 -msgid "Your contacts" -msgstr "I tuoi contatti" - -#: ../../view/theme/diabook/theme.php:128 -msgid "Your personal photos" -msgstr "Le tue foto personali" - -#: ../../view/theme/diabook/theme.php:524 -msgid "Local Directory" -msgstr "Elenco Locale" - -#: ../../view/theme/diabook/theme.php:584 -msgid "Set zoomfactor for Earth Layers" -msgstr "Livello di zoom per Earth Layers" - -#: ../../view/theme/diabook/theme.php:622 -msgid "Show/hide boxes at right-hand column:" -msgstr "Mostra/Nascondi riquadri nella colonna destra" - -#: ../../view/theme/vier/config.php:56 -msgid "Set style" -msgstr "Imposta stile" - -#: ../../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" -msgstr "" From dbafc917c2bb57e4ca7240614e73c5eaf08bf7b3 Mon Sep 17 00:00:00 2001 From: fabrixxm Date: Thu, 21 May 2015 10:54:03 +0200 Subject: [PATCH 124/306] update IT --- view/it/strings.php | 2785 ++++++++++++++++++++++--------------------- 1 file changed, 1397 insertions(+), 1388 deletions(-) diff --git a/view/it/strings.php b/view/it/strings.php index f602406d5b..e9909effd4 100644 --- a/view/it/strings.php +++ b/view/it/strings.php @@ -5,6 +5,956 @@ function string_plural_select_it($n){ return ($n != 1);; }} ; +$a->strings["Submit"] = "Invia"; +$a->strings["Theme settings"] = "Impostazioni tema"; +$a->strings["Set resize level for images in posts and comments (width and height)"] = "Dimensione immagini in messaggi e commenti (larghezza e altezza)"; +$a->strings["Set font-size for posts and comments"] = "Dimensione del carattere di messaggi e commenti"; +$a->strings["Set theme width"] = "Imposta la larghezza del tema"; +$a->strings["Color scheme"] = "Schema colori"; +$a->strings["Set style"] = "Imposta stile"; +$a->strings["default"] = "default"; +$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"] = "Varianti"; +$a->strings["don't show"] = "non mostrare"; +$a->strings["show"] = "mostra"; +$a->strings["Set line-height for posts and comments"] = "Altezza della linea di testo di messaggi e commenti"; +$a->strings["Set resolution for middle column"] = "Imposta la dimensione della colonna centrale"; +$a->strings["Set color scheme"] = "Imposta lo schema dei colori"; +$a->strings["Set zoomfactor for Earth Layer"] = "Livello di zoom per Earth Layer"; +$a->strings["Set longitude (X) for Earth Layers"] = "Longitudine (X) per Earth Layers"; +$a->strings["Set latitude (Y) for Earth Layers"] = "Latitudine (Y) per Earth Layers"; +$a->strings["Community Pages"] = "Pagine Comunitarie"; +$a->strings["Earth Layers"] = "Earth Layers"; +$a->strings["Community Profiles"] = "Profili Comunità"; +$a->strings["Help or @NewHere ?"] = "Serve aiuto? Sei nuovo?"; +$a->strings["Connect Services"] = "Servizi di conessione"; +$a->strings["Find Friends"] = "Trova Amici"; +$a->strings["Last users"] = "Ultimi utenti"; +$a->strings["Last photos"] = "Ultime foto"; +$a->strings["Last likes"] = "Ultimi \"mi piace\""; +$a->strings["Home"] = "Home"; +$a->strings["Your posts and conversations"] = "I tuoi messaggi e le tue conversazioni"; +$a->strings["Profile"] = "Profilo"; +$a->strings["Your profile page"] = "Pagina del tuo profilo"; +$a->strings["Contacts"] = "Contatti"; +$a->strings["Your contacts"] = "I tuoi contatti"; +$a->strings["Photos"] = "Foto"; +$a->strings["Your photos"] = "Le tue foto"; +$a->strings["Events"] = "Eventi"; +$a->strings["Your events"] = "I tuoi eventi"; +$a->strings["Personal notes"] = "Note personali"; +$a->strings["Your personal photos"] = "Le tue foto personali"; +$a->strings["Community"] = "Comunità"; +$a->strings["event"] = "l'evento"; +$a->strings["status"] = "stato"; +$a->strings["photo"] = "foto"; +$a->strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s piace %3\$s di %2\$s"; +$a->strings["Contact Photos"] = "Foto dei contatti"; +$a->strings["Profile Photos"] = "Foto del profilo"; +$a->strings["Local Directory"] = "Elenco Locale"; +$a->strings["Global Directory"] = "Elenco globale"; +$a->strings["Similar Interests"] = "Interessi simili"; +$a->strings["Friend Suggestions"] = "Contatti suggeriti"; +$a->strings["Invite Friends"] = "Invita amici"; +$a->strings["Settings"] = "Impostazioni"; +$a->strings["Set zoomfactor for Earth Layers"] = "Livello di zoom per Earth Layers"; +$a->strings["Show/hide boxes at right-hand column:"] = "Mostra/Nascondi riquadri nella colonna destra"; +$a->strings["Alignment"] = "Allineamento"; +$a->strings["Left"] = "Sinistra"; +$a->strings["Center"] = "Centrato"; +$a->strings["Posts font size"] = "Dimensione caratteri post"; +$a->strings["Textareas font size"] = "Dimensione caratteri nelle aree di testo"; +$a->strings["Set colour scheme"] = "Imposta schema colori"; +$a->strings["You must be logged in to use addons. "] = "Devi aver effettuato il login per usare gli addons."; +$a->strings["Not Found"] = "Non trovato"; +$a->strings["Page not found."] = "Pagina non trovata."; +$a->strings["Permission denied"] = "Permesso negato"; +$a->strings["Permission denied."] = "Permesso negato."; +$a->strings["toggle mobile"] = "commuta tema mobile"; +$a->strings["Do you wish to confirm your identity (%s) with %s"] = ""; +$a->strings["Confirm"] = "Conferma"; +$a->strings["Do not confirm"] = ""; +$a->strings["Trust This Site"] = ""; +$a->strings["No Identifier Sent"] = ""; +$a->strings["Requested identity don't match logged in user."] = ""; +$a->strings["Please wait; you are being redirected to <%s>"] = ""; +$a->strings["Delete this item?"] = "Cancellare questo elemento?"; +$a->strings["Comment"] = "Commento"; +$a->strings["show more"] = "mostra di più"; +$a->strings["show fewer"] = "mostra di meno"; +$a->strings["Update %s failed. See error logs."] = "aggiornamento %s fallito. Guarda i log di errore."; +$a->strings["Create a New Account"] = "Crea un nuovo account"; +$a->strings["Register"] = "Registrati"; +$a->strings["Logout"] = "Esci"; +$a->strings["Login"] = "Accedi"; +$a->strings["Nickname or Email address: "] = "Nome utente o indirizzo email: "; +$a->strings["Password: "] = "Password: "; +$a->strings["Remember me"] = "Ricordati di me"; +$a->strings["Or login using OpenID: "] = "O entra con OpenID:"; +$a->strings["Forgot your password?"] = "Hai dimenticato la password?"; +$a->strings["Password Reset"] = "Reimpostazione password"; +$a->strings["Website Terms of Service"] = "Condizioni di servizio del sito web "; +$a->strings["terms of service"] = "condizioni del servizio"; +$a->strings["Website Privacy Policy"] = "Politiche di privacy del sito"; +$a->strings["privacy policy"] = "politiche di privacy"; +$a->strings["Requested account is not available."] = "L'account richiesto non è disponibile."; +$a->strings["Requested profile is not available."] = "Profilo richiesto non disponibile."; +$a->strings["Edit profile"] = "Modifica il profilo"; +$a->strings["Connect"] = "Connetti"; +$a->strings["Message"] = "Messaggio"; +$a->strings["Profiles"] = "Profili"; +$a->strings["Manage/edit profiles"] = "Gestisci/modifica i profili"; +$a->strings["Change profile photo"] = "Cambia la foto del profilo"; +$a->strings["Create New Profile"] = "Crea un nuovo profilo"; +$a->strings["Profile Image"] = "Immagine del Profilo"; +$a->strings["visible to everybody"] = "visibile a tutti"; +$a->strings["Edit visibility"] = "Modifica visibilità"; +$a->strings["Location:"] = "Posizione:"; +$a->strings["Gender:"] = "Genere:"; +$a->strings["Status:"] = "Stato:"; +$a->strings["Homepage:"] = "Homepage:"; +$a->strings["About:"] = "Informazioni:"; +$a->strings["Network:"] = "Rete:"; +$a->strings["g A l F d"] = "g A l d F"; +$a->strings["F d"] = "d F"; +$a->strings["[today]"] = "[oggi]"; +$a->strings["Birthday Reminders"] = "Promemoria compleanni"; +$a->strings["Birthdays this week:"] = "Compleanni questa settimana:"; +$a->strings["[No description]"] = "[Nessuna descrizione]"; +$a->strings["Event Reminders"] = "Promemoria"; +$a->strings["Events this week:"] = "Eventi di questa settimana:"; +$a->strings["Status"] = "Stato"; +$a->strings["Status Messages and Posts"] = "Messaggi di stato e post"; +$a->strings["Profile Details"] = "Dettagli del profilo"; +$a->strings["Photo Albums"] = "Album foto"; +$a->strings["Videos"] = "Video"; +$a->strings["Events and Calendar"] = "Eventi e calendario"; +$a->strings["Personal Notes"] = "Note personali"; +$a->strings["Only You Can See This"] = "Solo tu puoi vedere questo"; +$a->strings["General Features"] = "Funzionalità generali"; +$a->strings["Multiple Profiles"] = "Profili multipli"; +$a->strings["Ability to create multiple profiles"] = "Possibilità di creare profili multipli"; +$a->strings["Post Composition Features"] = "Funzionalità di composizione dei post"; +$a->strings["Richtext Editor"] = "Editor visuale"; +$a->strings["Enable richtext editor"] = "Abilita l'editor visuale"; +$a->strings["Post Preview"] = "Anteprima dei post"; +$a->strings["Allow previewing posts and comments before publishing them"] = "Permetti di avere un'anteprima di messaggi e commenti prima di pubblicarli"; +$a->strings["Auto-mention Forums"] = "Auto-cita i Forum"; +$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = "Aggiunge o rimuove una citazione quando un forum è selezionato o deselezionato nella finestra dei permessi."; +$a->strings["Network Sidebar Widgets"] = "Widget della barra laterale nella pagina Rete"; +$a->strings["Search by Date"] = "Cerca per data"; +$a->strings["Ability to select posts by date ranges"] = "Permette di filtrare i post per data"; +$a->strings["Group Filter"] = "Filtra gruppi"; +$a->strings["Enable widget to display Network posts only from selected group"] = "Abilita il widget per filtrare i post solo per il gruppo selezionato"; +$a->strings["Network Filter"] = "Filtro reti"; +$a->strings["Enable widget to display Network posts only from selected network"] = "Abilita il widget per mostare i post solo per la rete selezionata"; +$a->strings["Saved Searches"] = "Ricerche salvate"; +$a->strings["Save search terms for re-use"] = "Salva i termini cercati per riutilizzarli"; +$a->strings["Network Tabs"] = "Schede pagina Rete"; +$a->strings["Network Personal Tab"] = "Scheda Personali"; +$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Abilita la scheda per mostrare solo i post a cui hai partecipato"; +$a->strings["Network New Tab"] = "Scheda Nuovi"; +$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Abilita la scheda per mostrare solo i post nuovi (nelle ultime 12 ore)"; +$a->strings["Network Shared Links Tab"] = "Scheda Link Condivisi"; +$a->strings["Enable tab to display only Network posts with links in them"] = "Abilita la scheda per mostrare solo i post che contengono link"; +$a->strings["Post/Comment Tools"] = "Strumenti per messaggi/commenti"; +$a->strings["Multiple Deletion"] = "Eliminazione multipla"; +$a->strings["Select and delete multiple posts/comments at once"] = "Seleziona ed elimina vari messagi e commenti in una volta sola"; +$a->strings["Edit Sent Posts"] = "Modifica i post inviati"; +$a->strings["Edit and correct posts and comments after sending"] = "Modifica e correggi messaggi e commenti dopo averli inviati"; +$a->strings["Tagging"] = "Aggiunta tag"; +$a->strings["Ability to tag existing posts"] = "Permette di aggiungere tag ai post già esistenti"; +$a->strings["Post Categories"] = "Cateorie post"; +$a->strings["Add categories to your posts"] = "Aggiungi categorie ai tuoi post"; +$a->strings["Saved Folders"] = "Cartelle Salvate"; +$a->strings["Ability to file posts under folders"] = "Permette di archiviare i post in cartelle"; +$a->strings["Dislike Posts"] = "Non mi piace"; +$a->strings["Ability to dislike posts/comments"] = "Permetti di inviare \"non mi piace\" ai messaggi"; +$a->strings["Star Posts"] = "Post preferiti"; +$a->strings["Ability to mark special posts with a star indicator"] = "Permette di segnare i post preferiti con una stella"; +$a->strings["Mute Post Notifications"] = "Silenzia le notifiche di nuovi post"; +$a->strings["Ability to mute notifications for a thread"] = "Permette di silenziare le notifiche di nuovi post in una discussione"; +$a->strings["%s's birthday"] = "Compleanno di %s"; +$a->strings["Happy Birthday %s"] = "Buon compleanno %s"; +$a->strings["[Name Withheld]"] = "[Nome Nascosto]"; +$a->strings["Item not found."] = "Elemento non trovato."; +$a->strings["Do you really want to delete this item?"] = "Vuoi veramente cancellare questo elemento?"; +$a->strings["Yes"] = "Si"; +$a->strings["Cancel"] = "Annulla"; +$a->strings["Archives"] = "Archivi"; +$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un gruppo eliminato con questo nome è stato ricreato. I permessi esistenti su un elemento possono essere applicati a questo gruppo e tutti i membri futuri. Se questo non è ciò che si intende, si prega di creare un altro gruppo con un nome diverso."; +$a->strings["Default privacy group for new contacts"] = "Gruppo predefinito per i nuovi contatti"; +$a->strings["Everybody"] = "Tutti"; +$a->strings["edit"] = "modifica"; +$a->strings["Groups"] = "Gruppi"; +$a->strings["Edit group"] = "Modifica gruppo"; +$a->strings["Create a new group"] = "Crea un nuovo gruppo"; +$a->strings["Contacts not in any group"] = "Contatti in nessun gruppo."; +$a->strings["add"] = "aggiungi"; +$a->strings["Wall Photos"] = "Foto della bacheca"; +$a->strings["Cannot locate DNS info for database server '%s'"] = "Non trovo le informazioni DNS per il database server '%s'"; +$a->strings["Add New Contact"] = "Aggiungi nuovo contatto"; +$a->strings["Enter address or web location"] = "Inserisci posizione o indirizzo web"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Esempio: bob@example.com, http://example.com/barbara"; +$a->strings["%d invitation available"] = array( + 0 => "%d invito disponibile", + 1 => "%d inviti disponibili", +); +$a->strings["Find People"] = "Trova persone"; +$a->strings["Enter name or interest"] = "Inserisci un nome o un interesse"; +$a->strings["Connect/Follow"] = "Connetti/segui"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "Esempi: Mario Rossi, Pesca"; +$a->strings["Find"] = "Trova"; +$a->strings["Random Profile"] = "Profilo causale"; +$a->strings["Networks"] = "Reti"; +$a->strings["All Networks"] = "Tutte le Reti"; +$a->strings["Everything"] = "Tutto"; +$a->strings["Categories"] = "Categorie"; +$a->strings["%d contact in common"] = array( + 0 => "%d contatto in comune", + 1 => "%d contatti in comune", +); +$a->strings["Friendica Notification"] = "Notifica Friendica"; +$a->strings["Thank You,"] = "Grazie,"; +$a->strings["%s Administrator"] = "Amministratore %s"; +$a->strings["noreply"] = "nessuna risposta"; +$a->strings["%s "] = "%s "; +$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notifica] Nuovo messaggio privato ricevuto su %s"; +$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s ti ha inviato un nuovo messaggio privato su %2\$s."; +$a->strings["%1\$s sent you %2\$s."] = "%1\$s ti ha inviato %2\$s"; +$a->strings["a private message"] = "un messaggio privato"; +$a->strings["Please visit %s to view and/or reply to your private messages."] = "Visita %s per vedere e/o rispodere ai tuoi messaggi privati."; +$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s ha commentato [url=%2\$s]%3\$s[/url]"; +$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s ha commentato [url=%2\$s]%4\$s di %3\$s[/url]"; +$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s ha commentato un [url=%2\$s]tuo %3\$s[/url]"; +$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Notifica] Commento di %2\$s alla conversazione #%1\$d"; +$a->strings["%s commented on an item/conversation you have been following."] = "%s ha commentato un elemento che stavi seguendo."; +$a->strings["Please visit %s to view and/or reply to the conversation."] = "Visita %s per vedere e/o commentare la conversazione"; +$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notifica] %s ha scritto sulla tua bacheca"; +$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s ha scritto sulla tua bacheca su %2\$s"; +$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s ha inviato un messaggio sulla [url=%2\$s]tua bacheca[/url]"; +$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notifica] %s ti ha taggato"; +$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s ti ha taggato su %2\$s"; +$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]ti ha taggato[/url]."; +$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Notifica] %s ha condiviso un nuovo messaggio"; +$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s ha condiviso un nuovo messaggio su %2\$s"; +$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]ha condiviso un messaggio[/url]."; +$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notifica] %1\$s ti ha stuzzicato"; +$a->strings["%1\$s poked you at %2\$s"] = "%1\$s ti ha stuzzicato su %2\$s"; +$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]ti ha stuzzicato[/url]."; +$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notifica] %s ha taggato un tuo messaggio"; +$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s ha taggato il tuo post su %2\$s"; +$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s ha taggato [url=%2\$s]il tuo post[/url]"; +$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notifica] Hai ricevuto una presentazione"; +$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Hai ricevuto un'introduzione da '%1\$s' su %2\$s"; +$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Hai ricevuto [url=%1\$s]un'introduzione[/url] da %2\$s."; +$a->strings["You may visit their profile at %s"] = "Puoi visitare il suo profilo presso %s"; +$a->strings["Please visit %s to approve or reject the introduction."] = "Visita %s per approvare o rifiutare la presentazione."; +$a->strings["[Friendica:Notify] A new person is sharing with you"] = "[Friendica:Notifica] Una nuova persona sta condividendo con te"; +$a->strings["%1\$s is sharing with you at %2\$s"] = "%1\$s sta condividendo con te su %2\$s"; +$a->strings["[Friendica:Notify] You have a new follower"] = "[Friendica:Notifica] Una nuova persona ti segue"; +$a->strings["You have a new follower at %2\$s : %1\$s"] = "Un nuovo utente ha iniziato a seguirti su %2\$s : %1\$s"; +$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Notifica] Hai ricevuto un suggerimento di amicizia"; +$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Hai ricevuto un suggerimento di amicizia da '%1\$s' su %2\$s"; +$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Hai ricevuto [url=%1\$s]un suggerimento di amicizia[/url] per %2\$s su %3\$s"; +$a->strings["Name:"] = "Nome:"; +$a->strings["Photo:"] = "Foto:"; +$a->strings["Please visit %s to approve or reject the suggestion."] = "Visita %s per approvare o rifiutare il suggerimento."; +$a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica:Notifica] Connessione accettata"; +$a->strings["'%1\$s' has acepted your connection request at %2\$s"] = "'%1\$s' ha accettato la tua richiesta di connessione su %2\$s"; +$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$s ha accettato la tua [url=%1\$s]richiesta di connessione[/url]"; +$a->strings["You are now mutual friends and may exchange status updates, photos, and email\n\twithout restriction."] = "Ora siete connessi reciprocamente e potete scambiarvi aggiornamenti di stato, foto e email\nsenza restrizioni"; +$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Visita %s se desideri modificare questo collegamento."; +$a->strings["'%1\$s' has chosen to accept you a \"fan\", which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = "'%1\$s' ha scelto di accettarti come \"fan\", il che limita alcune forme di comunicazione, come i messaggi privati, e alcune possibiltà di interazione col profilo. Se è una pagina di una comunità o di una celebrità, queste impostazioni sono state applicate automaticamente."; +$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future. "] = "'%1\$s' può decidere in futuro di estendere la connessione in una reciproca o più permissiva."; +$a->strings["[Friendica System:Notify] registration request"] = "[Friendica System:Notifica] richiesta di registrazione"; +$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Hai ricevuto una richiesta di registrazione da '%1\$s' su %2\$s"; +$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Hai ricevuto una [url=%1\$s]richiesta di registrazione[/url] da %2\$s."; +$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Nome completo: %1\$s\nIndirizzo del sito: %2\$s\nNome utente: %3\$s (%4\$s)"; +$a->strings["Please visit %s to approve or reject the request."] = "Visita %s per approvare o rifiutare la richiesta."; +$a->strings["User not found."] = "Utente non trovato."; +$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "Limite giornaliero di %d messaggi raggiunto. Il messaggio è stato rifiutato"; +$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Limite settimanale di %d messaggi raggiunto. Il messaggio è stato rifiutato"; +$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "Limite mensile di %d messaggi raggiunto. Il messaggio è stato rifiutato"; +$a->strings["There is no status with this id."] = "Non c'è nessuno status con questo id."; +$a->strings["There is no conversation with this id."] = "Non c'è nessuna conversazione con questo id"; +$a->strings["Invalid request."] = "Richiesta non valida."; +$a->strings["Invalid item."] = "Elemento non valido."; +$a->strings["Invalid action. "] = "Azione non valida."; +$a->strings["DB error"] = "Errore database"; +$a->strings["view full size"] = "vedi a schermo intero"; +$a->strings[" on Last.fm"] = "su Last.fm"; +$a->strings["Full Name:"] = "Nome completo:"; +$a->strings["j F, Y"] = "j F Y"; +$a->strings["j F"] = "j F"; +$a->strings["Birthday:"] = "Compleanno:"; +$a->strings["Age:"] = "Età:"; +$a->strings["for %1\$d %2\$s"] = "per %1\$d %2\$s"; +$a->strings["Sexual Preference:"] = "Preferenze sessuali:"; +$a->strings["Hometown:"] = "Paese natale:"; +$a->strings["Tags:"] = "Tag:"; +$a->strings["Political Views:"] = "Orientamento politico:"; +$a->strings["Religion:"] = "Religione:"; +$a->strings["Hobbies/Interests:"] = "Hobby/Interessi:"; +$a->strings["Likes:"] = "Mi piace:"; +$a->strings["Dislikes:"] = "Non mi piace:"; +$a->strings["Contact information and Social Networks:"] = "Informazioni su contatti e social network:"; +$a->strings["Musical interests:"] = "Interessi musicali:"; +$a->strings["Books, literature:"] = "Libri, letteratura:"; +$a->strings["Television:"] = "Televisione:"; +$a->strings["Film/dance/culture/entertainment:"] = "Film/danza/cultura/intrattenimento:"; +$a->strings["Love/Romance:"] = "Amore:"; +$a->strings["Work/employment:"] = "Lavoro:"; +$a->strings["School/education:"] = "Scuola:"; +$a->strings["Nothing new here"] = "Niente di nuovo qui"; +$a->strings["Clear notifications"] = "Pulisci le notifiche"; +$a->strings["End this session"] = "Finisci questa sessione"; +$a->strings["Your videos"] = "I tuoi video"; +$a->strings["Your personal notes"] = "Le tue note personali"; +$a->strings["Sign in"] = "Entra"; +$a->strings["Home Page"] = "Home Page"; +$a->strings["Create an account"] = "Crea un account"; +$a->strings["Help"] = "Guida"; +$a->strings["Help and documentation"] = "Guida e documentazione"; +$a->strings["Apps"] = "Applicazioni"; +$a->strings["Addon applications, utilities, games"] = "Applicazioni, utilità e giochi aggiuntivi"; +$a->strings["Search"] = "Cerca"; +$a->strings["Search site content"] = "Cerca nel contenuto del sito"; +$a->strings["Conversations on this site"] = "Conversazioni su questo sito"; +$a->strings["Conversations on the network"] = "Conversazioni nella rete"; +$a->strings["Directory"] = "Elenco"; +$a->strings["People directory"] = "Elenco delle persone"; +$a->strings["Information"] = "Informazioni"; +$a->strings["Information about this friendica instance"] = "Informazioni su questo server friendica"; +$a->strings["Network"] = "Rete"; +$a->strings["Conversations from your friends"] = "Conversazioni dai tuoi amici"; +$a->strings["Network Reset"] = "Reset pagina Rete"; +$a->strings["Load Network page with no filters"] = "Carica la pagina Rete senza nessun filtro"; +$a->strings["Introductions"] = "Presentazioni"; +$a->strings["Friend Requests"] = "Richieste di amicizia"; +$a->strings["Notifications"] = "Notifiche"; +$a->strings["See all notifications"] = "Vedi tutte le notifiche"; +$a->strings["Mark all system notifications seen"] = "Segna tutte le notifiche come viste"; +$a->strings["Messages"] = "Messaggi"; +$a->strings["Private mail"] = "Posta privata"; +$a->strings["Inbox"] = "In arrivo"; +$a->strings["Outbox"] = "Inviati"; +$a->strings["New Message"] = "Nuovo messaggio"; +$a->strings["Manage"] = "Gestisci"; +$a->strings["Manage other pages"] = "Gestisci altre pagine"; +$a->strings["Delegations"] = "Delegazioni"; +$a->strings["Delegate Page Management"] = "Gestione delegati per la pagina"; +$a->strings["Account settings"] = "Parametri account"; +$a->strings["Manage/Edit Profiles"] = "Gestisci/Modifica i profili"; +$a->strings["Manage/edit friends and contacts"] = "Gestisci/modifica amici e contatti"; +$a->strings["Admin"] = "Amministrazione"; +$a->strings["Site setup and configuration"] = "Configurazione del sito"; +$a->strings["Navigation"] = "Navigazione"; +$a->strings["Site map"] = "Mappa del sito"; +$a->strings["Click here to upgrade."] = "Clicca qui per aggiornare."; +$a->strings["This action exceeds the limits set by your subscription plan."] = "Questa azione eccede i limiti del tuo piano di sottoscrizione."; +$a->strings["This action is not available under your subscription plan."] = "Questa azione non è disponibile nel tuo piano di sottoscrizione."; +$a->strings["Disallowed profile URL."] = "Indirizzo profilo non permesso."; +$a->strings["Connect URL missing."] = "URL di connessione mancante."; +$a->strings["This site is not configured to allow communications with other networks."] = "Questo sito non è configurato per permettere la comunicazione con altri network."; +$a->strings["No compatible communication protocols or feeds were discovered."] = "Non sono stati trovati protocolli di comunicazione o feed compatibili."; +$a->strings["The profile address specified does not provide adequate information."] = "L'indirizzo del profilo specificato non fornisce adeguate informazioni."; +$a->strings["An author or name was not found."] = "Non è stato trovato un nome o un autore"; +$a->strings["No browser URL could be matched to this address."] = "Nessun URL puo' essere associato a questo indirizzo."; +$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Impossibile l'indirizzo identità con un protocollo conosciuto o con un contatto email."; +$a->strings["Use mailto: in front of address to force email check."] = "Usa \"mailto:\" davanti all'indirizzo per forzare un controllo nelle email."; +$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "L'indirizzo del profilo specificato appartiene a un network che è stato disabilitato su questo sito."; +$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Profilo limitato. Questa persona non sarà in grado di ricevere notifiche personali da te."; +$a->strings["Unable to retrieve contact information."] = "Impossibile recuperare informazioni sul contatto."; +$a->strings["following"] = "segue"; +$a->strings["Error decoding account file"] = "Errore decodificando il file account"; +$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Errore! Nessuna informazione di versione nel file! Potrebbe non essere un file account di Friendica?"; +$a->strings["Error! Cannot check nickname"] = "Errore! Non posso controllare il nickname"; +$a->strings["User '%s' already exists on this server!"] = "L'utente '%s' esiste già su questo server!"; +$a->strings["User creation error"] = "Errore creando l'utente"; +$a->strings["User profile creation error"] = "Errore creando il profile dell'utente"; +$a->strings["%d contact not imported"] = array( + 0 => "%d contatto non importato", + 1 => "%d contatti non importati", +); +$a->strings["Done. You can now login with your username and password"] = "Fatto. Ora puoi entrare con il tuo nome utente e la tua password"; +$a->strings["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i"; +$a->strings["Starts:"] = "Inizia:"; +$a->strings["Finishes:"] = "Finisce:"; +$a->strings["stopped following"] = "tolto dai seguiti"; +$a->strings["Poke"] = "Stuzzica"; +$a->strings["View Status"] = "Visualizza stato"; +$a->strings["View Profile"] = "Visualizza profilo"; +$a->strings["View Photos"] = "Visualizza foto"; +$a->strings["Network Posts"] = "Post della Rete"; +$a->strings["Edit Contact"] = "Modifica contatti"; +$a->strings["Drop Contact"] = "Rimuovi contatto"; +$a->strings["Send PM"] = "Invia messaggio privato"; +$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."] = "\nGli sviluppatori di Friendica hanno rilasciato l'aggiornamento %s\nrecentemente, ma quando ho provato a installarlo, qualcosa è \nandato terribilmente storto.\nBisogna sistemare le cose e non posso farlo da solo.\nContatta uno sviluppatore se non puoi aiutarmi da solo. Il mio database potrebbe essere invalido."; +$a->strings["The error message is\n[pre]%s[/pre]"] = "Il messaggio di errore è\n[pre]%s[/pre]"; +$a->strings["Errors encountered creating database tables."] = "La creazione delle tabelle del database ha generato errori."; +$a->strings["Errors encountered performing database changes."] = "Riscontrati errori applicando le modifiche al database."; +$a->strings["Miscellaneous"] = "Varie"; +$a->strings["year"] = "anno"; +$a->strings["month"] = "mese"; +$a->strings["day"] = "giorno"; +$a->strings["never"] = "mai"; +$a->strings["less than a second ago"] = "meno di un secondo fa"; +$a->strings["years"] = "anni"; +$a->strings["months"] = "mesi"; +$a->strings["week"] = "settimana"; +$a->strings["weeks"] = "settimane"; +$a->strings["days"] = "giorni"; +$a->strings["hour"] = "ora"; +$a->strings["hours"] = "ore"; +$a->strings["minute"] = "minuto"; +$a->strings["minutes"] = "minuti"; +$a->strings["second"] = "secondo"; +$a->strings["seconds"] = "secondi"; +$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s fa"; +$a->strings["[no subject]"] = "[nessun oggetto]"; +$a->strings["(no subject)"] = "(nessun oggetto)"; +$a->strings["Unknown | Not categorised"] = "Sconosciuto | non categorizzato"; +$a->strings["Block immediately"] = "Blocca immediatamente"; +$a->strings["Shady, spammer, self-marketer"] = "Shady, spammer, self-marketer"; +$a->strings["Known to me, but no opinion"] = "Lo conosco, ma non ho un'opinione particolare"; +$a->strings["OK, probably harmless"] = "E' ok, probabilmente innocuo"; +$a->strings["Reputable, has my trust"] = "Rispettabile, ha la mia fiducia"; +$a->strings["Frequently"] = "Frequentemente"; +$a->strings["Hourly"] = "Ogni ora"; +$a->strings["Twice daily"] = "Due volte al dì"; +$a->strings["Daily"] = "Giornalmente"; +$a->strings["Weekly"] = "Settimanalmente"; +$a->strings["Monthly"] = "Mensilmente"; +$a->strings["Friendica"] = "Friendica"; +$a->strings["OStatus"] = "Ostatus"; +$a->strings["RSS/Atom"] = "RSS / Atom"; +$a->strings["Email"] = "Email"; +$a->strings["Diaspora"] = "Diaspora"; +$a->strings["Facebook"] = "Facebook"; +$a->strings["Zot!"] = "Zot!"; +$a->strings["LinkedIn"] = "LinkedIn"; +$a->strings["XMPP/IM"] = "XMPP/IM"; +$a->strings["MySpace"] = "MySpace"; +$a->strings["Google+"] = "Google+"; +$a->strings["pump.io"] = "pump.io"; +$a->strings["Twitter"] = "Twitter"; +$a->strings["Diaspora Connector"] = "Connettore Diaspora"; +$a->strings["Statusnet"] = "Statusnet"; +$a->strings["App.net"] = "App.net"; +$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s e %2\$s adesso sono amici"; +$a->strings["Sharing notification from Diaspora network"] = "Notifica di condivisione dal network Diaspora*"; +$a->strings["Attachments:"] = "Allegati:"; +$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "A %1\$s non piace %3\$s di %2\$s"; +$a->strings["%1\$s poked %2\$s"] = "%1\$s ha stuzzicato %2\$s"; +$a->strings["%1\$s is currently %2\$s"] = "%1\$s al momento è %2\$s"; +$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha taggato %3\$s di %2\$s con %4\$s"; +$a->strings["post/item"] = "post/elemento"; +$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s ha segnato il/la %3\$s di %2\$s come preferito"; +$a->strings["Select"] = "Seleziona"; +$a->strings["Delete"] = "Rimuovi"; +$a->strings["View %s's profile @ %s"] = "Vedi il profilo di %s @ %s"; +$a->strings["Categories:"] = "Categorie:"; +$a->strings["Filed under:"] = "Archiviato in:"; +$a->strings["%s from %s"] = "%s da %s"; +$a->strings["View in context"] = "Vedi nel contesto"; +$a->strings["Please wait"] = "Attendi"; +$a->strings["remove"] = "rimuovi"; +$a->strings["Delete Selected Items"] = "Cancella elementi selezionati"; +$a->strings["Follow Thread"] = "Segui la discussione"; +$a->strings["%s likes this."] = "Piace a %s."; +$a->strings["%s doesn't like this."] = "Non piace a %s."; +$a->strings["%2\$d people like this"] = "Piace a %2\$d persone."; +$a->strings["%2\$d people don't like this"] = "Non piace a %2\$d persone."; +$a->strings["and"] = "e"; +$a->strings[", and %d other people"] = "e altre %d persone"; +$a->strings["%s like this."] = "Piace a %s."; +$a->strings["%s don't like this."] = "Non piace a %s."; +$a->strings["Visible to everybody"] = "Visibile a tutti"; +$a->strings["Please enter a link URL:"] = "Inserisci l'indirizzo del link:"; +$a->strings["Please enter a video link/URL:"] = "Inserisci un collegamento video / URL:"; +$a->strings["Please enter an audio link/URL:"] = "Inserisci un collegamento audio / URL:"; +$a->strings["Tag term:"] = "Tag:"; +$a->strings["Save to Folder:"] = "Salva nella Cartella:"; +$a->strings["Where are you right now?"] = "Dove sei ora?"; +$a->strings["Delete item(s)?"] = "Cancellare questo elemento/i?"; +$a->strings["Post to Email"] = "Invia a email"; +$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Connettore disabilitato, dato che \"%s\" è abilitato."; +$a->strings["Hide your profile details from unknown viewers?"] = "Nascondi i dettagli del tuo profilo ai visitatori sconosciuti?"; +$a->strings["Share"] = "Condividi"; +$a->strings["Upload photo"] = "Carica foto"; +$a->strings["upload photo"] = "carica foto"; +$a->strings["Attach file"] = "Allega file"; +$a->strings["attach file"] = "allega file"; +$a->strings["Insert web link"] = "Inserisci link"; +$a->strings["web link"] = "link web"; +$a->strings["Insert video link"] = "Inserire collegamento video"; +$a->strings["video link"] = "link video"; +$a->strings["Insert audio link"] = "Inserisci collegamento audio"; +$a->strings["audio link"] = "link audio"; +$a->strings["Set your location"] = "La tua posizione"; +$a->strings["set location"] = "posizione"; +$a->strings["Clear browser location"] = "Rimuovi la localizzazione data dal browser"; +$a->strings["clear location"] = "canc. pos."; +$a->strings["Set title"] = "Scegli un titolo"; +$a->strings["Categories (comma-separated list)"] = "Categorie (lista separata da virgola)"; +$a->strings["Permission settings"] = "Impostazioni permessi"; +$a->strings["permissions"] = "permessi"; +$a->strings["CC: email addresses"] = "CC: indirizzi email"; +$a->strings["Public post"] = "Messaggio pubblico"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Esempio: bob@example.com, mary@example.com"; +$a->strings["Preview"] = "Anteprima"; +$a->strings["Post to Groups"] = "Invia ai Gruppi"; +$a->strings["Post to Contacts"] = "Invia ai Contatti"; +$a->strings["Private post"] = "Post privato"; +$a->strings["newer"] = "nuovi"; +$a->strings["older"] = "vecchi"; +$a->strings["prev"] = "prec"; +$a->strings["first"] = "primo"; +$a->strings["last"] = "ultimo"; +$a->strings["next"] = "succ"; +$a->strings["Loading more entries..."] = "Carico più elementi..."; +$a->strings["The end"] = "Fine"; +$a->strings["No contacts"] = "Nessun contatto"; +$a->strings["%d Contact"] = array( + 0 => "%d contatto", + 1 => "%d contatti", +); +$a->strings["View Contacts"] = "Visualizza i contatti"; +$a->strings["Save"] = "Salva"; +$a->strings["poke"] = "stuzzica"; +$a->strings["poked"] = "ha stuzzicato"; +$a->strings["ping"] = "invia un ping"; +$a->strings["pinged"] = "ha inviato un ping"; +$a->strings["prod"] = "pungola"; +$a->strings["prodded"] = "ha pungolato"; +$a->strings["slap"] = "schiaffeggia"; +$a->strings["slapped"] = "ha schiaffeggiato"; +$a->strings["finger"] = "tocca"; +$a->strings["fingered"] = "ha toccato"; +$a->strings["rebuff"] = "respingi"; +$a->strings["rebuffed"] = "ha respinto"; +$a->strings["happy"] = "felice"; +$a->strings["sad"] = "triste"; +$a->strings["mellow"] = "rilassato"; +$a->strings["tired"] = "stanco"; +$a->strings["perky"] = "vivace"; +$a->strings["angry"] = "arrabbiato"; +$a->strings["stupified"] = "stupefatto"; +$a->strings["puzzled"] = "confuso"; +$a->strings["interested"] = "interessato"; +$a->strings["bitter"] = "risentito"; +$a->strings["cheerful"] = "giocoso"; +$a->strings["alive"] = "vivo"; +$a->strings["annoyed"] = "annoiato"; +$a->strings["anxious"] = "ansioso"; +$a->strings["cranky"] = "irritabile"; +$a->strings["disturbed"] = "disturbato"; +$a->strings["frustrated"] = "frustato"; +$a->strings["motivated"] = "motivato"; +$a->strings["relaxed"] = "rilassato"; +$a->strings["surprised"] = "sorpreso"; +$a->strings["Monday"] = "Lunedì"; +$a->strings["Tuesday"] = "Martedì"; +$a->strings["Wednesday"] = "Mercoledì"; +$a->strings["Thursday"] = "Giovedì"; +$a->strings["Friday"] = "Venerdì"; +$a->strings["Saturday"] = "Sabato"; +$a->strings["Sunday"] = "Domenica"; +$a->strings["January"] = "Gennaio"; +$a->strings["February"] = "Febbraio"; +$a->strings["March"] = "Marzo"; +$a->strings["April"] = "Aprile"; +$a->strings["May"] = "Maggio"; +$a->strings["June"] = "Giugno"; +$a->strings["July"] = "Luglio"; +$a->strings["August"] = "Agosto"; +$a->strings["September"] = "Settembre"; +$a->strings["October"] = "Ottobre"; +$a->strings["November"] = "Novembre"; +$a->strings["December"] = "Dicembre"; +$a->strings["View Video"] = "Guarda Video"; +$a->strings["bytes"] = "bytes"; +$a->strings["Click to open/close"] = "Clicca per aprire/chiudere"; +$a->strings["link to source"] = "Collegamento all'originale"; +$a->strings["Select an alternate language"] = "Seleziona una diversa lingua"; +$a->strings["activity"] = "attività"; +$a->strings["comment"] = array( + 0 => "", + 1 => "commento", +); +$a->strings["post"] = "messaggio"; +$a->strings["Item filed"] = "Messaggio salvato"; +$a->strings["Logged out."] = "Uscita effettuata."; +$a->strings["Login failed."] = "Accesso fallito."; +$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Abbiamo incontrato un problema mentre contattavamo il server OpenID che ci hai fornito. Controlla di averlo scritto giusto."; +$a->strings["The error message was:"] = "Il messaggio riportato era:"; +$a->strings["Image/photo"] = "Immagine/foto"; +$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s"; +$a->strings["%s wrote the following post"] = "%s ha scritto il seguente messaggio"; +$a->strings["$1 wrote:"] = "$1 ha scritto:"; +$a->strings["Encrypted content"] = "Contenuto criptato"; +$a->strings["Welcome "] = "Ciao"; +$a->strings["Please upload a profile photo."] = "Carica una foto per il profilo."; +$a->strings["Welcome back "] = "Ciao "; +$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."] = "Il token di sicurezza della form non era corretto. Probabilmente la form è rimasta aperta troppo a lunto (più di tre ore) prima di inviarla."; +$a->strings["Embedded content"] = "Contenuto incorporato"; +$a->strings["Embedding disabled"] = "Embed disabilitato"; +$a->strings["Male"] = "Maschio"; +$a->strings["Female"] = "Femmina"; +$a->strings["Currently Male"] = "Al momento maschio"; +$a->strings["Currently Female"] = "Al momento femmina"; +$a->strings["Mostly Male"] = "Prevalentemente maschio"; +$a->strings["Mostly Female"] = "Prevalentemente femmina"; +$a->strings["Transgender"] = "Transgender"; +$a->strings["Intersex"] = "Intersex"; +$a->strings["Transsexual"] = "Transessuale"; +$a->strings["Hermaphrodite"] = "Ermafrodito"; +$a->strings["Neuter"] = "Neutro"; +$a->strings["Non-specific"] = "Non specificato"; +$a->strings["Other"] = "Altro"; +$a->strings["Undecided"] = "Indeciso"; +$a->strings["Males"] = "Maschi"; +$a->strings["Females"] = "Femmine"; +$a->strings["Gay"] = "Gay"; +$a->strings["Lesbian"] = "Lesbica"; +$a->strings["No Preference"] = "Nessuna preferenza"; +$a->strings["Bisexual"] = "Bisessuale"; +$a->strings["Autosexual"] = "Autosessuale"; +$a->strings["Abstinent"] = "Astinente"; +$a->strings["Virgin"] = "Vergine"; +$a->strings["Deviant"] = "Deviato"; +$a->strings["Fetish"] = "Fetish"; +$a->strings["Oodles"] = "Un sacco"; +$a->strings["Nonsexual"] = "Asessuato"; +$a->strings["Single"] = "Single"; +$a->strings["Lonely"] = "Solitario"; +$a->strings["Available"] = "Disponibile"; +$a->strings["Unavailable"] = "Non disponibile"; +$a->strings["Has crush"] = "è cotto/a"; +$a->strings["Infatuated"] = "infatuato/a"; +$a->strings["Dating"] = "Disponibile a un incontro"; +$a->strings["Unfaithful"] = "Infedele"; +$a->strings["Sex Addict"] = "Sesso-dipendente"; +$a->strings["Friends"] = "Amici"; +$a->strings["Friends/Benefits"] = "Amici con benefici"; +$a->strings["Casual"] = "Casual"; +$a->strings["Engaged"] = "Impegnato"; +$a->strings["Married"] = "Sposato"; +$a->strings["Imaginarily married"] = "immaginariamente sposato/a"; +$a->strings["Partners"] = "Partners"; +$a->strings["Cohabiting"] = "Coinquilino"; +$a->strings["Common law"] = "diritto comune"; +$a->strings["Happy"] = "Felice"; +$a->strings["Not looking"] = "Non guarda"; +$a->strings["Swinger"] = "Scambista"; +$a->strings["Betrayed"] = "Tradito"; +$a->strings["Separated"] = "Separato"; +$a->strings["Unstable"] = "Instabile"; +$a->strings["Divorced"] = "Divorziato"; +$a->strings["Imaginarily divorced"] = "immaginariamente divorziato/a"; +$a->strings["Widowed"] = "Vedovo"; +$a->strings["Uncertain"] = "Incerto"; +$a->strings["It's complicated"] = "E' complicato"; +$a->strings["Don't care"] = "Non interessa"; +$a->strings["Ask me"] = "Chiedimelo"; +$a->strings["An invitation is required."] = "E' richiesto un invito."; +$a->strings["Invitation could not be verified."] = "L'invito non puo' essere verificato."; +$a->strings["Invalid OpenID url"] = "Url OpenID non valido"; +$a->strings["Please enter the required information."] = "Inserisci le informazioni richieste."; +$a->strings["Please use a shorter name."] = "Usa un nome più corto."; +$a->strings["Name too short."] = "Il nome è troppo corto."; +$a->strings["That doesn't appear to be your full (First Last) name."] = "Questo non sembra essere il tuo nome completo (Nome Cognome)."; +$a->strings["Your email domain is not among those allowed on this site."] = "Il dominio della tua email non è tra quelli autorizzati su questo sito."; +$a->strings["Not a valid email address."] = "L'indirizzo email non è valido."; +$a->strings["Cannot use that email."] = "Non puoi usare quell'email."; +$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Il tuo nome utente puo' contenere solo \"a-z\", \"0-9\", \"-\", e \"_\", e deve cominciare con una lettera."; +$a->strings["Nickname is already registered. Please choose another."] = "Nome utente già registrato. Scegline un altro."; +$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Questo nome utente stato già registrato. Per favore, sceglierne uno nuovo."; +$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERRORE GRAVE: La generazione delle chiavi di sicurezza è fallita."; +$a->strings["An error occurred during registration. Please try again."] = "C'è stato un errore durante la registrazione. Prova ancora."; +$a->strings["An error occurred creating your default profile. Please try again."] = "C'è stato un errore nella creazione del tuo profilo. Prova ancora."; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\nGentile %1\$s,\nGrazie per esserti registrato su %2\$s. Il tuo account è stato creato."; +$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."] = "\nI dettagli del tuo utente sono:\n Indirizzo del sito: %3\$s\n Nome utente: %1\$s\n Password: %5\$s\n\nPuoi cambiare la tua password dalla pagina delle impostazioni del tuo account dopo esserti autenticato.\n\nPer favore, prenditi qualche momento per esaminare tutte le impostazioni presenti.\n\nPotresti voler aggiungere qualche informazione di base al tuo profilo predefinito (nella pagina \"Profili\"), così che le altre persone possano trovarti più facilmente.\n\nTi raccomandiamo di inserire il tuo nome completo, aggiungere una foto, aggiungere qualche parola chiave del profilo (molto utili per trovare nuovi contatti), e magari in quale nazione vivi, se non vuoi essere più specifico di così.\n\nNoi rispettiamo appieno la tua privacy, e nessuna di queste informazioni è necessaria o obbligatoria.\nSe sei nuovo e non conosci nessuno qui, possono aiutarti a trovare qualche nuovo e interessante contatto.\n\nGrazie e benvenuto su %2\$s"; +$a->strings["Registration details for %s"] = "Dettagli della registrazione di %s"; +$a->strings["Visible to everybody"] = "Visibile a tutti"; +$a->strings["This entry was edited"] = "Questa voce è stata modificata"; +$a->strings["Private Message"] = "Messaggio privato"; +$a->strings["Edit"] = "Modifica"; +$a->strings["save to folder"] = "salva nella cartella"; +$a->strings["add star"] = "aggiungi a speciali"; +$a->strings["remove star"] = "rimuovi da speciali"; +$a->strings["toggle star status"] = "Inverti stato preferito"; +$a->strings["starred"] = "preferito"; +$a->strings["ignore thread"] = "ignora la discussione"; +$a->strings["unignore thread"] = "non ignorare la discussione"; +$a->strings["toggle ignore status"] = "inverti stato \"Ignora\""; +$a->strings["ignored"] = "ignorato"; +$a->strings["add tag"] = "aggiungi tag"; +$a->strings["I like this (toggle)"] = "Mi piace (clic per cambiare)"; +$a->strings["like"] = "mi piace"; +$a->strings["I don't like this (toggle)"] = "Non mi piace (clic per cambiare)"; +$a->strings["dislike"] = "non mi piace"; +$a->strings["Share this"] = "Condividi questo"; +$a->strings["share"] = "condividi"; +$a->strings["to"] = "a"; +$a->strings["via"] = "via"; +$a->strings["Wall-to-Wall"] = "Da bacheca a bacheca"; +$a->strings["via Wall-To-Wall:"] = "da bacheca a bacheca"; +$a->strings["%d comment"] = array( + 0 => "%d commento", + 1 => "%d commenti", +); +$a->strings["This is you"] = "Questo sei tu"; +$a->strings["Bold"] = "Grassetto"; +$a->strings["Italic"] = "Corsivo"; +$a->strings["Underline"] = "Sottolineato"; +$a->strings["Quote"] = "Citazione"; +$a->strings["Code"] = "Codice"; +$a->strings["Image"] = "Immagine"; +$a->strings["Link"] = "Link"; +$a->strings["Video"] = "Video"; +$a->strings["Item not available."] = "Oggetto non disponibile."; +$a->strings["Item was not found."] = "Oggetto non trovato."; +$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Numero giornaliero di messaggi per %s superato. Invio fallito."; +$a->strings["No recipient selected."] = "Nessun destinatario selezionato."; +$a->strings["Unable to check your home location."] = "Impossibile controllare la tua posizione di origine."; +$a->strings["Message could not be sent."] = "Il messaggio non puo' essere inviato."; +$a->strings["Message collection failure."] = "Errore recuperando il messaggio."; +$a->strings["Message sent."] = "Messaggio inviato."; +$a->strings["No recipient."] = "Nessun destinatario."; +$a->strings["Send Private Message"] = "Invia un messaggio privato"; +$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Se vuoi che %s ti risponda, controlla che le tue impostazioni di privacy permettano la ricezione di messaggi privati da mittenti sconosciuti."; +$a->strings["To:"] = "A:"; +$a->strings["Subject:"] = "Oggetto:"; +$a->strings["Your message:"] = "Il tuo messaggio:"; +$a->strings["Group created."] = "Gruppo creato."; +$a->strings["Could not create group."] = "Impossibile creare il gruppo."; +$a->strings["Group not found."] = "Gruppo non trovato."; +$a->strings["Group name changed."] = "Il nome del gruppo è cambiato."; +$a->strings["Save Group"] = "Salva gruppo"; +$a->strings["Create a group of contacts/friends."] = "Crea un gruppo di amici/contatti."; +$a->strings["Group Name: "] = "Nome del gruppo:"; +$a->strings["Group removed."] = "Gruppo rimosso."; +$a->strings["Unable to remove group."] = "Impossibile rimuovere il gruppo."; +$a->strings["Group Editor"] = "Modifica gruppo"; +$a->strings["Members"] = "Membri"; +$a->strings["All Contacts"] = "Tutti i contatti"; +$a->strings["Click on a contact to add or remove."] = "Clicca su un contatto per aggiungerlo o rimuoverlo."; +$a->strings["No potential page delegates located."] = "Nessun potenziale delegato per la pagina è stato trovato."; +$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."] = "I Delegati sono in grando di gestire tutti gli aspetti di questa pagina, tranne per i settaggi di base dell'account. Non delegare il tuo account personale a nessuno di cui non ti fidi ciecamente."; +$a->strings["Existing Page Managers"] = "Gestori Pagina Esistenti"; +$a->strings["Existing Page Delegates"] = "Delegati Pagina Esistenti"; +$a->strings["Potential Delegates"] = "Delegati Potenziali"; +$a->strings["Remove"] = "Rimuovi"; +$a->strings["Add"] = "Aggiungi"; +$a->strings["No entries."] = "Nessun articolo."; +$a->strings["Invalid request identifier."] = "L'identificativo della richiesta non è valido."; +$a->strings["Discard"] = "Scarta"; +$a->strings["Ignore"] = "Ignora"; +$a->strings["System"] = "Sistema"; +$a->strings["Personal"] = "Personale"; +$a->strings["Show Ignored Requests"] = "Mostra richieste ignorate"; +$a->strings["Hide Ignored Requests"] = "Nascondi richieste ignorate"; +$a->strings["Notification type: "] = "Tipo di notifica: "; +$a->strings["Friend Suggestion"] = "Amico suggerito"; +$a->strings["suggested by %s"] = "sugerito da %s"; +$a->strings["Hide this contact from others"] = "Nascondi questo contatto agli altri"; +$a->strings["Post a new friend activity"] = "Invia una attività \"è ora amico con\""; +$a->strings["if applicable"] = "se applicabile"; +$a->strings["Approve"] = "Approva"; +$a->strings["Claims to be known to you: "] = "Dice di conoscerti: "; +$a->strings["yes"] = "si"; +$a->strings["no"] = "no"; +$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: "] = "La connessione dovrà essere bidirezionale o no? \"Amici\" implica che tu permetti al contatto di leggere i tuoi post e tu leggerai i suoi. \"Fan/Ammiratore\" significa che permetti al contatto di leggere i tuoi posto ma tu non vuoi leggere i suoi. Approva come:"; +$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: "] = "La connessione dovrà essere bidirezionale o no? \"Amici\" implica che tu permetti al contatto di leggere i tuoi post e tu leggerai i suoi. \"Condivisore\" significa che permetti al contatto di leggere i tuoi posto ma tu non vuoi leggere i suoi. Approva come:"; +$a->strings["Friend"] = "Amico"; +$a->strings["Sharer"] = "Condivisore"; +$a->strings["Fan/Admirer"] = "Fan/Ammiratore"; +$a->strings["Friend/Connect Request"] = "Richiesta amicizia/connessione"; +$a->strings["New Follower"] = "Qualcuno inizia a seguirti"; +$a->strings["No introductions."] = "Nessuna presentazione."; +$a->strings["%s liked %s's post"] = "a %s è piaciuto il messaggio di %s"; +$a->strings["%s disliked %s's post"] = "a %s non è piaciuto il messaggio di %s"; +$a->strings["%s is now friends with %s"] = "%s è ora amico di %s"; +$a->strings["%s created a new post"] = "%s a creato un nuovo messaggio"; +$a->strings["%s commented on %s's post"] = "%s ha commentato il messaggio di %s"; +$a->strings["No more network notifications."] = "Nessuna nuova."; +$a->strings["Network Notifications"] = "Notifiche dalla rete"; +$a->strings["No more system notifications."] = "Nessuna nuova notifica di sistema."; +$a->strings["System Notifications"] = "Notifiche di sistema"; +$a->strings["No more personal notifications."] = "Nessuna nuova."; +$a->strings["Personal Notifications"] = "Notifiche personali"; +$a->strings["No more home notifications."] = "Nessuna nuova."; +$a->strings["Home Notifications"] = "Notifiche bacheca"; +$a->strings["No profile"] = "Nessun profilo"; +$a->strings["everybody"] = "tutti"; +$a->strings["Account"] = "Account"; +$a->strings["Additional features"] = "Funzionalità aggiuntive"; +$a->strings["Display"] = "Visualizzazione"; +$a->strings["Social Networks"] = "Social Networks"; +$a->strings["Plugins"] = "Plugin"; +$a->strings["Connected apps"] = "Applicazioni collegate"; +$a->strings["Export personal data"] = "Esporta dati personali"; +$a->strings["Remove account"] = "Rimuovi account"; +$a->strings["Missing some important data!"] = "Mancano alcuni dati importanti!"; +$a->strings["Update"] = "Aggiorna"; +$a->strings["Failed to connect with email account using the settings provided."] = "Impossibile collegarsi all'account email con i parametri forniti."; +$a->strings["Email settings updated."] = "Impostazioni e-mail aggiornate."; +$a->strings["Features updated"] = "Funzionalità aggiornate"; +$a->strings["Relocate message has been send to your contacts"] = "Il messaggio di trasloco è stato inviato ai tuoi contatti"; +$a->strings["Passwords do not match. Password unchanged."] = "Le password non corrispondono. Password non cambiata."; +$a->strings["Empty passwords are not allowed. Password unchanged."] = "Le password non possono essere vuote. Password non cambiata."; +$a->strings["Wrong password."] = "Password sbagliata."; +$a->strings["Password changed."] = "Password cambiata."; +$a->strings["Password update failed. Please try again."] = "Aggiornamento password fallito. Prova ancora."; +$a->strings[" Please use a shorter name."] = " Usa un nome più corto."; +$a->strings[" Name too short."] = " Nome troppo corto."; +$a->strings["Wrong Password"] = "Password Sbagliata"; +$a->strings[" Not valid email."] = " Email non valida."; +$a->strings[" Cannot change to that email."] = "Non puoi usare quella email."; +$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Il forum privato non ha permessi di privacy. Uso il gruppo di privacy predefinito."; +$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Il gruppo privato non ha permessi di privacy e nessun gruppo di privacy predefinito."; +$a->strings["Settings updated."] = "Impostazioni aggiornate."; +$a->strings["Add application"] = "Aggiungi applicazione"; +$a->strings["Save Settings"] = "Salva Impostazioni"; +$a->strings["Name"] = "Nome"; +$a->strings["Consumer Key"] = "Consumer Key"; +$a->strings["Consumer Secret"] = "Consumer Secret"; +$a->strings["Redirect"] = "Redirect"; +$a->strings["Icon url"] = "Url icona"; +$a->strings["You can't edit this application."] = "Non puoi modificare questa applicazione."; +$a->strings["Connected Apps"] = "Applicazioni Collegate"; +$a->strings["Client key starts with"] = "Chiave del client inizia con"; +$a->strings["No name"] = "Nessun nome"; +$a->strings["Remove authorization"] = "Rimuovi l'autorizzazione"; +$a->strings["No Plugin settings configured"] = "Nessun plugin ha impostazioni modificabili"; +$a->strings["Plugin Settings"] = "Impostazioni plugin"; +$a->strings["Off"] = "Spento"; +$a->strings["On"] = "Acceso"; +$a->strings["Additional Features"] = "Funzionalità aggiuntive"; +$a->strings["Built-in support for %s connectivity is %s"] = "Il supporto integrato per la connettività con %s è %s"; +$a->strings["enabled"] = "abilitato"; +$a->strings["disabled"] = "disabilitato"; +$a->strings["StatusNet"] = "StatusNet"; +$a->strings["Email access is disabled on this site."] = "L'accesso email è disabilitato su questo sito."; +$a->strings["Email/Mailbox Setup"] = "Impostazioni email"; +$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Se vuoi comunicare con i contatti email usando questo servizio, specifica come collegarti alla tua casella di posta. (opzionale)"; +$a->strings["Last successful email check:"] = "Ultimo controllo email eseguito con successo:"; +$a->strings["IMAP server name:"] = "Nome server IMAP:"; +$a->strings["IMAP port:"] = "Porta IMAP:"; +$a->strings["Security:"] = "Sicurezza:"; +$a->strings["None"] = "Nessuna"; +$a->strings["Email login name:"] = "Nome utente email:"; +$a->strings["Email password:"] = "Password email:"; +$a->strings["Reply-to address:"] = "Indirizzo di risposta:"; +$a->strings["Send public posts to all email contacts:"] = "Invia i messaggi pubblici ai contatti email:"; +$a->strings["Action after import:"] = "Azione post importazione:"; +$a->strings["Mark as seen"] = "Segna come letto"; +$a->strings["Move to folder"] = "Sposta nella cartella"; +$a->strings["Move to folder:"] = "Sposta nella cartella:"; +$a->strings["No special theme for mobile devices"] = "Nessun tema speciale per i dispositivi mobili"; +$a->strings["Display Settings"] = "Impostazioni Grafiche"; +$a->strings["Display Theme:"] = "Tema:"; +$a->strings["Mobile Theme:"] = "Tema mobile:"; +$a->strings["Update browser every xx seconds"] = "Aggiorna il browser ogni x secondi"; +$a->strings["Minimum of 10 seconds, no maximum"] = "Minimo 10 secondi, nessun limite massimo"; +$a->strings["Number of items to display per page:"] = "Numero di elementi da mostrare per pagina:"; +$a->strings["Maximum of 100 items"] = "Massimo 100 voci"; +$a->strings["Number of items to display per page when viewed from mobile device:"] = "Numero di voci da visualizzare per pagina quando si utilizza un dispositivo mobile:"; +$a->strings["Don't show emoticons"] = "Non mostrare le emoticons"; +$a->strings["Don't show notices"] = "Non mostrare gli avvisi"; +$a->strings["Infinite scroll"] = "Scroll infinito"; +$a->strings["Automatic updates only at the top of the network page"] = "Aggiornamenti automatici solo in cima alla pagina \"rete\""; +$a->strings["User Types"] = "Tipi di Utenti"; +$a->strings["Community Types"] = "Tipi di Comunità"; +$a->strings["Normal Account Page"] = "Pagina Account Normale"; +$a->strings["This account is a normal personal profile"] = "Questo account è un normale profilo personale"; +$a->strings["Soapbox Page"] = "Pagina Sandbox"; +$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Chi richiede la connessione/amicizia sarà accettato automaticamente come fan che potrà solamente leggere la bacheca"; +$a->strings["Community Forum/Celebrity Account"] = "Account Celebrità/Forum comunitario"; +$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Chi richiede la connessione/amicizia sarà accettato automaticamente come fan che potrà leggere e scrivere sulla bacheca"; +$a->strings["Automatic Friend Page"] = "Pagina con amicizia automatica"; +$a->strings["Automatically approve all connection/friend requests as friends"] = "Chi richiede la connessione/amicizia sarà accettato automaticamente come amico"; +$a->strings["Private Forum [Experimental]"] = "Forum privato [sperimentale]"; +$a->strings["Private forum - approved members only"] = "Forum privato - solo membri approvati"; +$a->strings["OpenID:"] = "OpenID:"; +$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Opzionale) Consente di loggarti in questo account con questo OpenID"; +$a->strings["Publish your default profile in your local site directory?"] = "Pubblica il tuo profilo predefinito nell'elenco locale del sito"; +$a->strings["No"] = "No"; +$a->strings["Publish your default profile in the global social directory?"] = "Pubblica il tuo profilo predefinito nell'elenco sociale globale"; +$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Nascondi la lista dei tuoi contatti/amici dai visitatori del tuo profilo predefinito"; +$a->strings["If enabled, posting public messages to Diaspora and other networks isn't possible."] = "Se abilitato, l'invio di messaggi pubblici verso Diaspora e altri network non sarà possibile"; +$a->strings["Allow friends to post to your profile page?"] = "Permetti agli amici di scrivere sulla tua pagina profilo?"; +$a->strings["Allow friends to tag your posts?"] = "Permetti agli amici di taggare i tuoi messaggi?"; +$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Ci permetti di suggerirti come potenziale amico ai nuovi membri?"; +$a->strings["Permit unknown people to send you private mail?"] = "Permetti a utenti sconosciuti di inviarti messaggi privati?"; +$a->strings["Profile is not published."] = "Il profilo non è pubblicato."; +$a->strings["or"] = "o"; +$a->strings["Your Identity Address is"] = "L'indirizzo della tua identità è"; +$a->strings["Automatically expire posts after this many days:"] = "Fai scadere i post automaticamente dopo x giorni:"; +$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Se lasciato vuoto, i messaggi non verranno cancellati."; +$a->strings["Advanced expiration settings"] = "Impostazioni avanzate di scandenza"; +$a->strings["Advanced Expiration"] = "Scadenza avanzata"; +$a->strings["Expire posts:"] = "Fai scadere i post:"; +$a->strings["Expire personal notes:"] = "Fai scadere le Note personali:"; +$a->strings["Expire starred posts:"] = "Fai scadere i post Speciali:"; +$a->strings["Expire photos:"] = "Fai scadere le foto:"; +$a->strings["Only expire posts by others:"] = "Fai scadere solo i post degli altri:"; +$a->strings["Account Settings"] = "Impostazioni account"; +$a->strings["Password Settings"] = "Impostazioni password"; +$a->strings["New Password:"] = "Nuova password:"; +$a->strings["Confirm:"] = "Conferma:"; +$a->strings["Leave password fields blank unless changing"] = "Lascia questi campi in bianco per non effettuare variazioni alla password"; +$a->strings["Current Password:"] = "Password Attuale:"; +$a->strings["Your current password to confirm the changes"] = "La tua password attuale per confermare le modifiche"; +$a->strings["Password:"] = "Password:"; +$a->strings["Basic Settings"] = "Impostazioni base"; +$a->strings["Email Address:"] = "Indirizzo Email:"; +$a->strings["Your Timezone:"] = "Il tuo fuso orario:"; +$a->strings["Default Post Location:"] = "Località predefinita:"; +$a->strings["Use Browser Location:"] = "Usa la località rilevata dal browser:"; +$a->strings["Security and Privacy Settings"] = "Impostazioni di sicurezza e privacy"; +$a->strings["Maximum Friend Requests/Day:"] = "Numero massimo di richieste di amicizia al giorno:"; +$a->strings["(to prevent spam abuse)"] = "(per prevenire lo spam)"; +$a->strings["Default Post Permissions"] = "Permessi predefiniti per i messaggi"; +$a->strings["(click to open/close)"] = "(clicca per aprire/chiudere)"; +$a->strings["Show to Groups"] = "Mostra ai gruppi"; +$a->strings["Show to Contacts"] = "Mostra ai contatti"; +$a->strings["Default Private Post"] = "Default Post Privato"; +$a->strings["Default Public Post"] = "Default Post Pubblico"; +$a->strings["Default Permissions for New Posts"] = "Permessi predefiniti per i nuovi post"; +$a->strings["Maximum private messages per day from unknown people:"] = "Numero massimo di messaggi privati da utenti sconosciuti per giorno:"; +$a->strings["Notification Settings"] = "Impostazioni notifiche"; +$a->strings["By default post a status message when:"] = "Invia un messaggio di stato quando:"; +$a->strings["accepting a friend request"] = "accetti una richiesta di amicizia"; +$a->strings["joining a forum/community"] = "ti unisci a un forum/comunità"; +$a->strings["making an interesting profile change"] = "fai un interessante modifica al profilo"; +$a->strings["Send a notification email when:"] = "Invia una mail di notifica quando:"; +$a->strings["You receive an introduction"] = "Ricevi una presentazione"; +$a->strings["Your introductions are confirmed"] = "Le tue presentazioni sono confermate"; +$a->strings["Someone writes on your profile wall"] = "Qualcuno scrive sulla bacheca del tuo profilo"; +$a->strings["Someone writes a followup comment"] = "Qualcuno scrive un commento a un tuo messaggio"; +$a->strings["You receive a private message"] = "Ricevi un messaggio privato"; +$a->strings["You receive a friend suggestion"] = "Hai ricevuto un suggerimento di amicizia"; +$a->strings["You are tagged in a post"] = "Sei stato taggato in un post"; +$a->strings["You are poked/prodded/etc. in a post"] = "Sei 'toccato'/'spronato'/ecc. in un post"; +$a->strings["Text-only notification emails"] = "Email di notifica in solo testo"; +$a->strings["Send text only notification emails, without the html part"] = "Invia le email di notifica in solo testo, senza la parte in html"; +$a->strings["Advanced Account/Page Type Settings"] = "Impostazioni avanzate Account/Tipo di pagina"; +$a->strings["Change the behaviour of this account for special situations"] = "Modifica il comportamento di questo account in situazioni speciali"; +$a->strings["Relocate"] = "Trasloca"; +$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."] = "Se hai spostato questo profilo da un'altro server, e alcuni dei tuoi contatti non ricevono i tuoi aggiornamenti, prova a premere questo bottone."; +$a->strings["Resend relocate message to contacts"] = "Reinvia il messaggio di trasloco"; +$a->strings["Common Friends"] = "Amici in comune"; +$a->strings["No contacts in common."] = "Nessun contatto in comune."; +$a->strings["Remote privacy information not available."] = "Informazioni remote sulla privacy non disponibili."; +$a->strings["Visible to:"] = "Visibile a:"; $a->strings["%d contact edited."] = array( 0 => "%d contatto modificato", 1 => "%d contatti modificati", @@ -13,7 +963,6 @@ $a->strings["Could not access contact record."] = "Non è possibile accedere al $a->strings["Could not locate selected profile."] = "Non riesco a trovare il profilo selezionato."; $a->strings["Contact updated."] = "Contatto aggiornato."; $a->strings["Failed to update contact record."] = "Errore nell'aggiornamento del contatto."; -$a->strings["Permission denied."] = "Permesso negato."; $a->strings["Contact has been blocked"] = "Il contatto è stato bloccato"; $a->strings["Contact has been unblocked"] = "Il contatto è stato sbloccato"; $a->strings["Contact has been ignored"] = "Il contatto è ignorato"; @@ -21,8 +970,6 @@ $a->strings["Contact has been unignored"] = "Il contatto non è più ignorato"; $a->strings["Contact has been archived"] = "Il contatto è stato archiviato"; $a->strings["Contact has been unarchived"] = "Il contatto è stato dearchiviato"; $a->strings["Do you really want to delete this contact?"] = "Vuoi veramente cancellare questo contatto?"; -$a->strings["Yes"] = "Si"; -$a->strings["Cancel"] = "Annulla"; $a->strings["Contact has been removed."] = "Il contatto è stato rimosso."; $a->strings["You are mutual friends with %s"] = "Sei amico reciproco con %s"; $a->strings["You are sharing with %s"] = "Stai condividendo con %s"; @@ -33,16 +980,11 @@ $a->strings["(Update was successful)"] = "(L'aggiornamento è stato completato)" $a->strings["(Update was not successful)"] = "(L'aggiornamento non è stato completato)"; $a->strings["Suggest friends"] = "Suggerisci amici"; $a->strings["Network type: %s"] = "Tipo di rete: %s"; -$a->strings["%d contact in common"] = array( - 0 => "%d contatto in comune", - 1 => "%d contatti in comune", -); $a->strings["View all contacts"] = "Vedi tutti i contatti"; $a->strings["Unblock"] = "Sblocca"; $a->strings["Block"] = "Blocca"; $a->strings["Toggle Blocked status"] = "Inverti stato \"Blocca\""; $a->strings["Unignore"] = "Non ignorare"; -$a->strings["Ignore"] = "Ignora"; $a->strings["Toggle Ignored status"] = "Inverti stato \"Ignora\""; $a->strings["Unarchive"] = "Dearchivia"; $a->strings["Archive"] = "Archivia"; @@ -50,8 +992,11 @@ $a->strings["Toggle Archive status"] = "Inverti stato \"Archiviato\""; $a->strings["Repair"] = "Ripara"; $a->strings["Advanced Contact Settings"] = "Impostazioni avanzate Contatto"; $a->strings["Communications lost with this contact!"] = "Comunicazione con questo contatto persa!"; +$a->strings["Fetch further information for feeds"] = "Recupera maggiori infomazioni per i feed"; +$a->strings["Disabled"] = "Disabilitato"; +$a->strings["Fetch information"] = "Recupera informazioni"; +$a->strings["Fetch information and keywords"] = "Recupera informazioni e parole chiave"; $a->strings["Contact Editor"] = "Editor dei Contatti"; -$a->strings["Submit"] = "Invia"; $a->strings["Profile Visibility"] = "Visibilità del profilo"; $a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Seleziona il profilo che vuoi mostrare a %s quando visita il tuo profilo in modo sicuro."; $a->strings["Contact Information / Notes"] = "Informazioni / Note sul contatto"; @@ -68,19 +1013,13 @@ $a->strings["Update now"] = "Aggiorna adesso"; $a->strings["Currently blocked"] = "Bloccato"; $a->strings["Currently ignored"] = "Ignorato"; $a->strings["Currently archived"] = "Al momento archiviato"; -$a->strings["Hide this contact from others"] = "Nascondi questo contatto agli altri"; $a->strings["Replies/likes to your public posts may still be visible"] = "Risposte ai tuoi post pubblici possono essere comunque visibili"; $a->strings["Notification for new posts"] = "Notifica per i nuovi messaggi"; $a->strings["Send a notification of every new post of this contact"] = "Invia una notifica per ogni nuovo messaggio di questo contatto"; -$a->strings["Fetch further information for feeds"] = "Recupera maggiori infomazioni per i feed"; -$a->strings["Disabled"] = ""; -$a->strings["Fetch information"] = ""; -$a->strings["Fetch information and keywords"] = ""; -$a->strings["Blacklisted keywords"] = ""; -$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = ""; +$a->strings["Blacklisted keywords"] = "Parole chiave in blacklist"; +$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Lista separata da virgola di parole chiave che non dovranno essere convertite in hastag, quando \"Recupera informazioni e parole chiave\" è selezionato"; $a->strings["Suggestions"] = "Suggerimenti"; $a->strings["Suggest potential friends"] = "Suggerisci potenziali amici"; -$a->strings["All Contacts"] = "Tutti i contatti"; $a->strings["Show all contacts"] = "Mostra tutti i contatti"; $a->strings["Unblocked"] = "Sbloccato"; $a->strings["Only show unblocked contacts"] = "Mostra solo contatti non bloccati"; @@ -96,311 +1035,118 @@ $a->strings["Mutual Friendship"] = "Amicizia reciproca"; $a->strings["is a fan of yours"] = "è un tuo fan"; $a->strings["you are a fan of"] = "sei un fan di"; $a->strings["Edit contact"] = "Modifca contatto"; -$a->strings["Contacts"] = "Contatti"; $a->strings["Search your contacts"] = "Cerca nei tuoi contatti"; $a->strings["Finding: "] = "Ricerca: "; -$a->strings["Find"] = "Trova"; -$a->strings["Update"] = "Aggiorna"; -$a->strings["Delete"] = "Rimuovi"; -$a->strings["No profile"] = "Nessun profilo"; -$a->strings["Manage Identities and/or Pages"] = "Gestisci indentità e/o pagine"; -$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Cambia tra differenti identità o pagine comunità/gruppi che condividono il tuo account o per cui hai i permessi di gestione"; -$a->strings["Select an identity to manage: "] = "Seleziona un'identità da gestire:"; +$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Mi spiace, forse il fie che stai caricando è più grosso di quanto la configurazione di PHP permetta"; +$a->strings["Or - did you try to upload an empty file?"] = "O.. non avrai provato a caricare un file vuoto?"; +$a->strings["File exceeds size limit of %d"] = "Il file supera la dimensione massima di %d"; +$a->strings["File upload failed."] = "Caricamento del file non riuscito."; +$a->strings["[Embedded content - reload page to view]"] = "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]"; +$a->strings["Export account"] = "Esporta account"; +$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."] = "Esporta le informazioni del tuo account e dei contatti. Usa questa funzione per fare un backup del tuo account o per spostarlo in un altro server."; +$a->strings["Export all"] = "Esporta tutto"; +$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)"] = "Esporta le informazioni del tuo account, i tuoi contatti e tutti i tuoi elementi in json. Puo' diventare un file veramente molto grosso e metterci un sacco di tempo. Usa questa funzione per fare un backup completo del tuo account (le foto non sono esportate)"; +$a->strings["Registration successful. Please check your email for further instructions."] = "Registrazione completata. Controlla la tua mail per ulteriori informazioni."; +$a->strings["Failed to send email message. Here your accout details:
    login: %s
    password: %s

    You can change your password after login."] = "Si è verificato un errore inviando l'email. I dettagli del tuo account:
    login: %s
    password: %s

    Puoi cambiare la password dopo il login."; +$a->strings["Your registration can not be processed."] = "La tua registrazione non puo' essere elaborata."; +$a->strings["Your registration is pending approval by the site owner."] = "La tua richiesta è in attesa di approvazione da parte del prorietario del sito."; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Questo sito ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani."; +$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Se vuoi, puoi riempire questo modulo tramite OpenID, inserendo il tuo OpenID e cliccando 'Registra'."; +$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Se non hai familiarità con OpenID, lascia il campo vuoto e riempi il resto della maschera."; +$a->strings["Your OpenID (optional): "] = "Il tuo OpenID (opzionale): "; +$a->strings["Include your profile in member directory?"] = "Includi il tuo profilo nell'elenco pubblico?"; +$a->strings["Membership on this site is by invitation only."] = "La registrazione su questo sito è solo su invito."; +$a->strings["Your invitation ID: "] = "L'ID del tuo invito:"; +$a->strings["Registration"] = "Registrazione"; +$a->strings["Your Full Name (e.g. Joe Smith): "] = "Il tuo nome completo (es. Mario Rossi): "; +$a->strings["Your Email Address: "] = "Il tuo indirizzo email: "; +$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Scegli un nome utente. Deve cominciare con una lettera. L'indirizzo del tuo profilo sarà 'soprannome@\$sitename'."; +$a->strings["Choose a nickname: "] = "Scegli un nome utente: "; +$a->strings["Import"] = "Importa"; +$a->strings["Import your profile to this friendica instance"] = "Importa il tuo profilo in questo server friendica"; $a->strings["Post successful."] = "Inviato!"; -$a->strings["Permission denied"] = "Permesso negato"; -$a->strings["Invalid profile identifier."] = "Indentificativo del profilo non valido."; -$a->strings["Profile Visibility Editor"] = "Modifica visibilità del profilo"; -$a->strings["Profile"] = "Profilo"; -$a->strings["Click on a contact to add or remove."] = "Clicca su un contatto per aggiungerlo o rimuoverlo."; -$a->strings["Visible To"] = "Visibile a"; -$a->strings["All Contacts (with secure profile access)"] = "Tutti i contatti (con profilo ad accesso sicuro)"; -$a->strings["Item not found."] = "Elemento non trovato."; -$a->strings["Public access denied."] = "Accesso negato."; +$a->strings["System down for maintenance"] = "Sistema in manutenzione"; $a->strings["Access to this profile has been restricted."] = "L'accesso a questo profilo è stato limitato."; -$a->strings["Item has been removed."] = "L'oggetto è stato rimosso."; -$a->strings["Welcome to Friendica"] = "Benvenuto su Friendica"; -$a->strings["New Member Checklist"] = "Cose da fare per i Nuovi Utenti"; -$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."] = "Vorremmo offrirti qualche trucco e dei link alla guida per aiutarti ad avere un'esperienza divertente. Clicca su un qualsiasi elemento per visitare la relativa pagina. Un link a questa pagina sarà visibile nella tua home per due settimane dopo la tua registrazione."; -$a->strings["Getting Started"] = "Come Iniziare"; -$a->strings["Friendica Walk-Through"] = "Friendica Passo-Passo"; -$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Sulla tua pagina Quick Start - veloce introduzione alla tua pagina profilo e alla pagina Rete, fai qualche nuova amicizia, e trova qualche gruppo a cui unirti."; -$a->strings["Settings"] = "Impostazioni"; -$a->strings["Go to Your Settings"] = "Vai alle tue Impostazioni"; -$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Nella tua pagina Impostazioni - cambia la tua password iniziale. Prendi anche nota del tuo Indirizzo Identità. Assomiglia a un indirizzo email e sarà utile per stringere amicizie nel web sociale libero."; -$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Guarda le altre impostazioni, in particolare le impostazioni della privacy. Un profilo non pubblicato è come un numero di telefono non in elenco. In genere, dovresti pubblicare il tuo profilo - a meno che tutti i tuoi amici e potenziali tali sappiano esattamente come trovarti."; -$a->strings["Upload Profile Photo"] = "Carica la foto del profilo"; -$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Carica una foto del profilo se non l'hai ancora fatto. Studi hanno mostrato che persone che hanno vere foto di se stessi hanno dieci volte più probabilità di fare amicizie rispetto alle persone che non ce l'hanno."; -$a->strings["Edit Your Profile"] = "Modifica il tuo Profilo"; -$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Modifica il tuo profilo predefinito a piacimento. Rivedi le impostazioni per nascondere la tua lista di amici e nascondere il profilo ai visitatori sconosciuti."; -$a->strings["Profile Keywords"] = "Parole chiave del profilo"; -$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Inserisci qualche parola chiave pubblica nel tuo profilo predefinito che descriva i tuoi interessi. Potremmo essere in grado di trovare altre persone con interessi similari e suggerirti delle amicizie."; -$a->strings["Connecting"] = "Collegarsi"; -$a->strings["Facebook"] = "Facebook"; -$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Autorizza il Facebook Connector se hai un account Facebook, e noi (opzionalmente) importeremo tuti i tuoi amici e le tue conversazioni da Facebook."; -$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Sestrings["Importing Emails"] = "Importare le Email"; -$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Inserisci i tuoi dati di accesso all'email nella tua pagina Impostazioni Connettori se vuoi importare e interagire con amici o mailing list dalla tua casella di posta in arrivo"; -$a->strings["Go to Your Contacts Page"] = "Vai alla tua pagina Contatti"; -$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = "La tua pagina Contatti è il mezzo per gestire le amicizie e collegarsi con amici su altre reti. Di solito, basta inserire l'indirizzo nel campo Aggiungi Nuovo Contatto"; -$a->strings["Go to Your Site's Directory"] = "Vai all'Elenco del tuo sito"; -$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "La pagina Elenco ti permette di trovare altre persone in questa rete o in altri siti. Cerca un link Connetti o Segui nella loro pagina del profilo. Inserisci il tuo Indirizzo Identità, se richiesto."; -$a->strings["Finding New People"] = "Trova nuove persone"; -$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Nel pannello laterale nella pagina \"Contatti\", ci sono diversi strumenti per trovare nuovi amici. Possiamo confrontare le persone per interessi, cercare le persone per nome e fornire suggerimenti basati sui tuoi contatti esistenti. Su un sito nuovo, i suggerimenti sono di solito presenti dopo 24 ore."; -$a->strings["Groups"] = "Gruppi"; -$a->strings["Group Your Contacts"] = "Raggruppa i tuoi contatti"; -$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Quando avrai alcuni amici, organizzali in gruppi di conversazioni private dalla barra laterale della tua pagina Contatti. Potrai interagire privatamente con ogni gruppo nella tua pagina Rete"; -$a->strings["Why Aren't My Posts Public?"] = "Perchè i miei post non sono pubblici?"; -$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica rispetta la tua provacy. Per impostazione predefinita, i tuoi post sono mostrati solo alle persone che hai aggiunto come amici. Per maggiori informazioni guarda la sezione della guida dal link qui sopra."; -$a->strings["Getting Help"] = "Ottenere Aiuto"; -$a->strings["Go to the Help Section"] = "Vai alla sezione Guida"; -$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Le nostre pagine della guida possono essere consultate per avere dettagli su altre caratteristiche del programma e altre risorse."; -$a->strings["OpenID protocol error. No ID returned."] = "Errore protocollo OpenID. Nessun ID ricevuto."; -$a->strings["Account not found and OpenID registration is not permitted on this site."] = "L'account non è stato trovato, e la registrazione via OpenID non è permessa su questo sito."; -$a->strings["Login failed."] = "Accesso fallito."; -$a->strings["Image uploaded but image cropping failed."] = "L'immagine è stata caricata, ma il non è stato possibile ritagliarla."; -$a->strings["Profile Photos"] = "Foto del profilo"; -$a->strings["Image size reduction [%s] failed."] = "Il ridimensionamento del'immagine [%s] è fallito."; -$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Ricarica la pagina con shift+F5 o cancella la cache del browser se la nuova foto non viene mostrata immediatamente."; -$a->strings["Unable to process image"] = "Impossibile elaborare l'immagine"; -$a->strings["Image exceeds size limit of %d"] = "La dimensione dell'immagine supera il limite di %d"; -$a->strings["Unable to process image."] = "Impossibile caricare l'immagine."; -$a->strings["Upload File:"] = "Carica un file:"; -$a->strings["Select a profile:"] = "Seleziona un profilo:"; -$a->strings["Upload"] = "Carica"; -$a->strings["or"] = "o"; -$a->strings["skip this step"] = "salta questo passaggio"; -$a->strings["select a photo from your photo albums"] = "seleziona una foto dai tuoi album"; -$a->strings["Crop Image"] = "Ritaglia immagine"; -$a->strings["Please adjust the image cropping for optimum viewing."] = "Ritaglia l'imagine per una visualizzazione migliore."; -$a->strings["Done Editing"] = "Finito"; -$a->strings["Image uploaded successfully."] = "Immagine caricata con successo."; -$a->strings["Image upload failed."] = "Caricamento immagine fallito."; -$a->strings["photo"] = "foto"; -$a->strings["status"] = "stato"; -$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s sta seguendo %3\$s di %2\$s"; -$a->strings["Tag removed"] = "Tag rimosso"; -$a->strings["Remove Item Tag"] = "Rimuovi il tag"; -$a->strings["Select a tag to remove: "] = "Seleziona un tag da rimuovere: "; -$a->strings["Remove"] = "Rimuovi"; -$a->strings["Save to Folder:"] = "Salva nella Cartella:"; -$a->strings["- select -"] = "- seleziona -"; -$a->strings["Save"] = "Salva"; -$a->strings["Contact added"] = "Contatto aggiunto"; -$a->strings["Unable to locate original post."] = "Impossibile trovare il messaggio originale."; -$a->strings["Empty post discarded."] = "Messaggio vuoto scartato."; -$a->strings["Wall Photos"] = "Foto della bacheca"; -$a->strings["System error. Post not saved."] = "Errore di sistema. Messaggio non salvato."; -$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Questo messaggio ti è stato inviato da %s, un membro del social network Friendica."; -$a->strings["You may visit them online at %s"] = "Puoi visitarli online su %s"; -$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Contatta il mittente rispondendo a questo post se non vuoi ricevere questi messaggi."; -$a->strings["%s posted an update."] = "%s ha inviato un aggiornamento."; -$a->strings["Group created."] = "Gruppo creato."; -$a->strings["Could not create group."] = "Impossibile creare il gruppo."; -$a->strings["Group not found."] = "Gruppo non trovato."; -$a->strings["Group name changed."] = "Il nome del gruppo è cambiato."; -$a->strings["Save Group"] = "Salva gruppo"; -$a->strings["Create a group of contacts/friends."] = "Crea un gruppo di amici/contatti."; -$a->strings["Group Name: "] = "Nome del gruppo:"; -$a->strings["Group removed."] = "Gruppo rimosso."; -$a->strings["Unable to remove group."] = "Impossibile rimuovere il gruppo."; -$a->strings["Group Editor"] = "Modifica gruppo"; -$a->strings["Members"] = "Membri"; -$a->strings["You must be logged in to use addons. "] = "Devi aver effettuato il login per usare gli addons."; -$a->strings["Applications"] = "Applicazioni"; -$a->strings["No installed applications."] = "Nessuna applicazione installata."; -$a->strings["Profile not found."] = "Profilo non trovato."; -$a->strings["Contact not found."] = "Contatto non trovato."; -$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Questo puo' accadere occasionalmente se la richiesta di contatto era stata inviata da entrambe le persone e già approvata."; -$a->strings["Response from remote site was not understood."] = "Errore di comunicazione con l'altro sito."; -$a->strings["Unexpected response from remote site: "] = "La risposta dell'altro sito non può essere gestita: "; -$a->strings["Confirmation completed successfully."] = "Conferma completata con successo."; -$a->strings["Remote site reported: "] = "Il sito remoto riporta: "; -$a->strings["Temporary failure. Please wait and try again."] = "Problema temporaneo. Attendi e riprova."; -$a->strings["Introduction failed or was revoked."] = "La presentazione ha generato un errore o è stata revocata."; -$a->strings["Unable to set contact photo."] = "Impossibile impostare la foto del contatto."; -$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s e %2\$s adesso sono amici"; -$a->strings["No user record found for '%s' "] = "Nessun utente trovato '%s'"; -$a->strings["Our site encryption key is apparently messed up."] = "La nostra chiave di criptazione del sito sembra essere corrotta."; -$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "E' stato fornito un indirizzo vuoto o non possiamo decrittare l'indirizzo."; -$a->strings["Contact record was not found for you on our site."] = "Il contatto non è stato trovato sul nostro sito."; -$a->strings["Site public key not available in contact record for URL %s."] = "La chiave pubblica del sito non è disponibile per l'URL %s"; -$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "L'ID fornito dal tuo sistema è duplicato sul nostro sistema. Se riprovi dovrebbe funzionare."; -$a->strings["Unable to set your contact credentials on our system."] = "Impossibile impostare le credenziali del tuo contatto sul nostro sistema."; -$a->strings["Unable to update your contact profile details on our system"] = "Impossibile aggiornare i dettagli del tuo contatto sul nostro sistema"; -$a->strings["[Name Withheld]"] = "[Nome Nascosto]"; -$a->strings["%1\$s has joined %2\$s"] = "%1\$s si è unito a %2\$s"; -$a->strings["Requested profile is not available."] = "Profilo richiesto non disponibile."; $a->strings["Tips for New Members"] = "Consigli per i Nuovi Utenti"; +$a->strings["Public access denied."] = "Accesso negato."; $a->strings["No videos selected"] = "Nessun video selezionato"; $a->strings["Access to this item is restricted."] = "Questo oggetto non è visibile a tutti."; -$a->strings["View Video"] = "Guarda Video"; $a->strings["View Album"] = "Sfoglia l'album"; $a->strings["Recent Videos"] = "Video Recenti"; $a->strings["Upload New Videos"] = "Carica Nuovo Video"; -$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha taggato %3\$s di %2\$s con %4\$s"; +$a->strings["Manage Identities and/or Pages"] = "Gestisci indentità e/o pagine"; +$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Cambia tra differenti identità o pagine comunità/gruppi che condividono il tuo account o per cui hai i permessi di gestione"; +$a->strings["Select an identity to manage: "] = "Seleziona un'identità da gestire:"; +$a->strings["Item not found"] = "Oggetto non trovato"; +$a->strings["Edit post"] = "Modifica messaggio"; +$a->strings["People Search"] = "Cerca persone"; +$a->strings["No matches"] = "Nessun risultato"; +$a->strings["Account approved."] = "Account approvato."; +$a->strings["Registration revoked for %s"] = "Registrazione revocata per %s"; +$a->strings["Please login."] = "Accedi."; +$a->strings["This introduction has already been accepted."] = "Questa presentazione è già stata accettata."; +$a->strings["Profile location is not valid or does not contain profile information."] = "L'indirizzo del profilo non è valido o non contiene un profilo."; +$a->strings["Warning: profile location has no identifiable owner name."] = "Attenzione: l'indirizzo del profilo non riporta il nome del proprietario."; +$a->strings["Warning: profile location has no profile photo."] = "Attenzione: l'indirizzo del profilo non ha una foto."; +$a->strings["%d required parameter was not found at the given location"] = array( + 0 => "%d parametro richiesto non è stato trovato all'indirizzo dato", + 1 => "%d parametri richiesti non sono stati trovati all'indirizzo dato", +); +$a->strings["Introduction complete."] = "Presentazione completa."; +$a->strings["Unrecoverable protocol error."] = "Errore di comunicazione."; +$a->strings["Profile unavailable."] = "Profilo non disponibile."; +$a->strings["%s has received too many connection requests today."] = "%s ha ricevuto troppe richieste di connessione per oggi."; +$a->strings["Spam protection measures have been invoked."] = "Sono state attivate le misure di protezione contro lo spam."; +$a->strings["Friends are advised to please try again in 24 hours."] = "Gli amici sono pregati di riprovare tra 24 ore."; +$a->strings["Invalid locator"] = "Invalid locator"; +$a->strings["Invalid email address."] = "Indirizzo email non valido."; +$a->strings["This account has not been configured for email. Request failed."] = "Questo account non è stato configurato per l'email. Richiesta fallita."; +$a->strings["Unable to resolve your name at the provided location."] = "Impossibile risolvere il tuo nome nella posizione indicata."; +$a->strings["You have already introduced yourself here."] = "Ti sei già presentato qui."; +$a->strings["Apparently you are already friends with %s."] = "Pare che tu e %s siate già amici."; +$a->strings["Invalid profile URL."] = "Indirizzo profilo non valido."; +$a->strings["Your introduction has been sent."] = "La tua presentazione è stata inviata."; +$a->strings["Please login to confirm introduction."] = "Accedi per confermare la presentazione."; +$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Non hai fatto accesso con l'identità corretta. Accedi a questo profilo."; +$a->strings["Hide this contact"] = "Nascondi questo contatto"; +$a->strings["Welcome home %s."] = "Bentornato a casa %s."; +$a->strings["Please confirm your introduction/connection request to %s."] = "Conferma la tua richiesta di connessione con %s."; +$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Inserisci il tuo 'Indirizzo Identità' da uno dei seguenti network supportati:"; +$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = "Se non sei un membro del web sociale libero, segui questo link per trovare un sito Friendica pubblico e unisciti a noi oggi"; +$a->strings["Friend/Connection Request"] = "Richieste di amicizia/connessione"; +$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Esempi: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; +$a->strings["Please answer the following:"] = "Rispondi:"; +$a->strings["Does %s know you?"] = "%s ti conosce?"; +$a->strings["Add a personal note:"] = "Aggiungi una nota personale:"; +$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."] = " - per favore non usare questa form. Invece, inserisci %s nella tua barra di ricerca su Diaspora."; +$a->strings["Your Identity Address:"] = "L'indirizzo della tua identità:"; +$a->strings["Submit Request"] = "Invia richiesta"; +$a->strings["Files"] = "File"; +$a->strings["Authorize application connection"] = "Autorizza la connessione dell'applicazione"; +$a->strings["Return to your app and insert this Securty Code:"] = "Torna alla tua applicazione e inserisci questo codice di sicurezza:"; +$a->strings["Please login to continue."] = "Effettua il login per continuare."; +$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vuoi autorizzare questa applicazione per accedere ai messaggi e ai contatti, e / o creare nuovi messaggi per te?"; +$a->strings["Do you really want to delete this suggestion?"] = "Vuoi veramente cancellare questo suggerimento?"; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Nessun suggerimento disponibile. Se questo è un sito nuovo, riprova tra 24 ore."; +$a->strings["Ignore/Hide"] = "Ignora / Nascondi"; +$a->strings["Contacts who are not members of a group"] = "Contatti che non sono membri di un gruppo"; +$a->strings["Contact not found."] = "Contatto non trovato."; $a->strings["Friend suggestion sent."] = "Suggerimento di amicizia inviato."; $a->strings["Suggest Friends"] = "Suggerisci amici"; $a->strings["Suggest a friend for %s"] = "Suggerisci un amico a %s"; -$a->strings["No valid account found."] = "Nessun account valido trovato."; -$a->strings["Password reset request issued. Check your email."] = "La richiesta per reimpostare la password è stata inviata. Controlla la tua email."; -$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."] = "\nGentile %1\$s,\n abbiamo ricevuto su \"%2\$s\" una richiesta di resettare la password del tuo account. Per confermare questa richiesta, selezionate il link di conferma qui sotto o incollatelo nella barra indirizzo del vostro browser.\n\nSe NON hai richiesto questa modifica, NON selezionare il link e ignora o cancella questa email.\n\nLa tua password non verrà modificata a meno che non possiamo verificare che tu abbia effettivamente richiesto la modifica."; -$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"] = "\nSegui questo link per verificare la tua identità:\n\n%1\$s\n\nRiceverai in un successivo messaggio la nuova password.\nPotrai cambiarla dalla pagina \"Impostazioni\" del tuo account dopo esserti autenticato.\n\nI dettagli del tuo account sono:\n Indirizzo del sito: %2\$s\n Nome utente: %3\$s"; -$a->strings["Password reset requested at %s"] = "Richiesta reimpostazione password su %s"; -$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La richiesta non può essere verificata. (Puoi averla già richiesta precendentemente). Reimpostazione password fallita."; -$a->strings["Password Reset"] = "Reimpostazione password"; -$a->strings["Your password has been reset as requested."] = "La tua password è stata reimpostata come richiesto."; -$a->strings["Your new password is"] = "La tua nuova password è"; -$a->strings["Save or copy your new password - and then"] = "Salva o copia la tua nuova password, quindi"; -$a->strings["click here to login"] = "clicca qui per entrare"; -$a->strings["Your password may be changed from the Settings page after successful login."] = "Puoi cambiare la tua password dalla pagina Impostazioni dopo aver effettuato l'accesso."; -$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"] = "\nGentile %1\$s,\n La tua password è stata modificata come richiesto.\nSalva questa password, o sostituiscila immediatamente con qualcosa che puoi ricordare."; -$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"] = "\nI dettagli del tuo account sono:\n\n Indirizzo del sito: %1\$s\n Nome utente: %2\$s\n Password: %3\$s\n\nPuoi cambiare questa password dalla pagina \"Impostazioni\" del tuo account dopo esserti autenticato."; -$a->strings["Your password has been changed at %s"] = "La tua password presso %s è stata cambiata"; -$a->strings["Forgot your Password?"] = "Hai dimenticato la password?"; -$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Inserisci il tuo indirizzo email per reimpostare la password."; -$a->strings["Nickname or Email: "] = "Nome utente o email: "; -$a->strings["Reset"] = "Reimposta"; -$a->strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s piace %3\$s di %2\$s"; -$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "A %1\$s non piace %3\$s di %2\$s"; -$a->strings["{0} wants to be your friend"] = "{0} vuole essere tuo amico"; -$a->strings["{0} sent you a message"] = "{0} ti ha inviato un messaggio"; -$a->strings["{0} requested registration"] = "{0} chiede la registrazione"; -$a->strings["{0} commented %s's post"] = "{0} ha commentato il post di %s"; -$a->strings["{0} liked %s's post"] = "a {0} piace il post di %s"; -$a->strings["{0} disliked %s's post"] = "a {0} non piace il post di %s"; -$a->strings["{0} is now friends with %s"] = "{0} ora è amico di %s"; -$a->strings["{0} posted"] = "{0} ha inviato un nuovo messaggio"; -$a->strings["{0} tagged %s's post with #%s"] = "{0} ha taggato il post di %s con #%s"; -$a->strings["{0} mentioned you in a post"] = "{0} ti ha citato in un post"; +$a->strings["link"] = "collegamento"; $a->strings["No contacts."] = "Nessun contatto."; -$a->strings["View Contacts"] = "Visualizza i contatti"; -$a->strings["Invalid request identifier."] = "L'identificativo della richiesta non è valido."; -$a->strings["Discard"] = "Scarta"; -$a->strings["System"] = "Sistema"; -$a->strings["Network"] = "Rete"; -$a->strings["Personal"] = "Personale"; -$a->strings["Home"] = "Home"; -$a->strings["Introductions"] = "Presentazioni"; -$a->strings["Show Ignored Requests"] = "Mostra richieste ignorate"; -$a->strings["Hide Ignored Requests"] = "Nascondi richieste ignorate"; -$a->strings["Notification type: "] = "Tipo di notifica: "; -$a->strings["Friend Suggestion"] = "Amico suggerito"; -$a->strings["suggested by %s"] = "sugerito da %s"; -$a->strings["Post a new friend activity"] = "Invia una attività \"è ora amico con\""; -$a->strings["if applicable"] = "se applicabile"; -$a->strings["Approve"] = "Approva"; -$a->strings["Claims to be known to you: "] = "Dice di conoscerti: "; -$a->strings["yes"] = "si"; -$a->strings["no"] = "no"; -$a->strings["Approve as: "] = "Approva come: "; -$a->strings["Friend"] = "Amico"; -$a->strings["Sharer"] = "Condivisore"; -$a->strings["Fan/Admirer"] = "Fan/Ammiratore"; -$a->strings["Friend/Connect Request"] = "Richiesta amicizia/connessione"; -$a->strings["New Follower"] = "Qualcuno inizia a seguirti"; -$a->strings["No introductions."] = "Nessuna presentazione."; -$a->strings["Notifications"] = "Notifiche"; -$a->strings["%s liked %s's post"] = "a %s è piaciuto il messaggio di %s"; -$a->strings["%s disliked %s's post"] = "a %s non è piaciuto il messaggio di %s"; -$a->strings["%s is now friends with %s"] = "%s è ora amico di %s"; -$a->strings["%s created a new post"] = "%s a creato un nuovo messaggio"; -$a->strings["%s commented on %s's post"] = "%s ha commentato il messaggio di %s"; -$a->strings["No more network notifications."] = "Nessuna nuova."; -$a->strings["Network Notifications"] = "Notifiche dalla rete"; -$a->strings["No more system notifications."] = "Nessuna nuova notifica di sistema."; -$a->strings["System Notifications"] = "Notifiche di sistema"; -$a->strings["No more personal notifications."] = "Nessuna nuova."; -$a->strings["Personal Notifications"] = "Notifiche personali"; -$a->strings["No more home notifications."] = "Nessuna nuova."; -$a->strings["Home Notifications"] = "Notifiche bacheca"; -$a->strings["Source (bbcode) text:"] = "Testo sorgente (bbcode):"; -$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Testo sorgente (da Diaspora) da convertire in BBcode:"; -$a->strings["Source input: "] = "Sorgente:"; -$a->strings["bb2html (raw HTML): "] = "bb2html (HTML grezzo):"; -$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): "] = "Sorgente (formato Diaspora):"; -$a->strings["diaspora2bb: "] = "diaspora2bb: "; -$a->strings["Nothing new here"] = "Niente di nuovo qui"; -$a->strings["Clear notifications"] = "Pulisci le notifiche"; -$a->strings["New Message"] = "Nuovo messaggio"; -$a->strings["No recipient selected."] = "Nessun destinatario selezionato."; -$a->strings["Unable to locate contact information."] = "Impossibile trovare le informazioni del contatto."; -$a->strings["Message could not be sent."] = "Il messaggio non puo' essere inviato."; -$a->strings["Message collection failure."] = "Errore recuperando il messaggio."; -$a->strings["Message sent."] = "Messaggio inviato."; -$a->strings["Messages"] = "Messaggi"; -$a->strings["Do you really want to delete this message?"] = "Vuoi veramente cancellare questo messaggio?"; -$a->strings["Message deleted."] = "Messaggio eliminato."; -$a->strings["Conversation removed."] = "Conversazione rimossa."; -$a->strings["Please enter a link URL:"] = "Inserisci l'indirizzo del link:"; -$a->strings["Send Private Message"] = "Invia un messaggio privato"; -$a->strings["To:"] = "A:"; -$a->strings["Subject:"] = "Oggetto:"; -$a->strings["Your message:"] = "Il tuo messaggio:"; -$a->strings["Upload photo"] = "Carica foto"; -$a->strings["Insert web link"] = "Inserisci link"; -$a->strings["Please wait"] = "Attendi"; -$a->strings["No messages."] = "Nessun messaggio."; -$a->strings["Unknown sender - %s"] = "Mittente sconosciuto - %s"; -$a->strings["You and %s"] = "Tu e %s"; -$a->strings["%s and You"] = "%s e Tu"; -$a->strings["Delete conversation"] = "Elimina la conversazione"; -$a->strings["D, d M Y - g:i A"] = "D d M Y - G:i"; -$a->strings["%d message"] = array( - 0 => "%d messaggio", - 1 => "%d messaggi", -); -$a->strings["Message not available."] = "Messaggio non disponibile."; -$a->strings["Delete message"] = "Elimina il messaggio"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Nessuna comunicazione sicura disponibile, Potresti essere in grado di rispondere dalla pagina del profilo del mittente."; -$a->strings["Send Reply"] = "Invia la risposta"; -$a->strings["[Embedded content - reload page to view]"] = "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]"; -$a->strings["Contact settings applied."] = "Contatto modificato."; -$a->strings["Contact update failed."] = "Le modifiche al contatto non sono state salvate."; -$a->strings["Repair Contact Settings"] = "Ripara il contatto"; -$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ATTENZIONE: Queste sono impostazioni avanzate e se inserisci informazioni errate le tue comunicazioni con questo contatto potrebbero non funzionare più"; -$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Usa ora il tasto 'Indietro' del tuo browser se non sei sicuro di cosa fare in questa pagina."; -$a->strings["Return to contact editor"] = "Ritorna alla modifica contatto"; -$a->strings["No mirroring"] = "Non duplicare"; -$a->strings["Mirror as forwarded posting"] = "Duplica come messaggi ricondivisi"; -$a->strings["Mirror as my own posting"] = "Duplica come miei messaggi"; -$a->strings["Name"] = "Nome"; -$a->strings["Account Nickname"] = "Nome utente"; -$a->strings["@Tagname - overrides Name/Nickname"] = "@TagName - al posto del nome utente"; -$a->strings["Account URL"] = "URL dell'utente"; -$a->strings["Friend Request URL"] = "URL Richiesta Amicizia"; -$a->strings["Friend Confirm URL"] = "URL Conferma Amicizia"; -$a->strings["Notification Endpoint URL"] = "URL Notifiche"; -$a->strings["Poll/Feed URL"] = "URL Feed"; -$a->strings["New photo from this URL"] = "Nuova foto da questo URL"; -$a->strings["Remote Self"] = "Io remoto"; -$a->strings["Mirror postings from this contact"] = "Ripeti i messaggi di questo contatto"; -$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Imposta questo contatto come 'io remoto', questo farà si che friendica reinvii i nuovi messaggi da questo contatto."; -$a->strings["Login"] = "Accedi"; -$a->strings["The post was created"] = ""; -$a->strings["Access denied."] = "Accesso negato."; -$a->strings["People Search"] = "Cerca persone"; -$a->strings["No matches"] = "Nessun risultato"; -$a->strings["Photos"] = "Foto"; -$a->strings["Files"] = "File"; -$a->strings["Contacts who are not members of a group"] = "Contatti che non sono membri di un gruppo"; $a->strings["Theme settings updated."] = "Impostazioni del tema aggiornate."; $a->strings["Site"] = "Sito"; $a->strings["Users"] = "Utenti"; -$a->strings["Plugins"] = "Plugin"; $a->strings["Themes"] = "Temi"; $a->strings["DB updates"] = "Aggiornamenti Database"; $a->strings["Logs"] = "Log"; -$a->strings["probe address"] = ""; -$a->strings["check webfinger"] = ""; -$a->strings["Admin"] = "Amministrazione"; +$a->strings["probe address"] = "controlla indirizzo"; +$a->strings["check webfinger"] = "verifica webfinger"; $a->strings["Plugin Features"] = "Impostazioni Plugins"; -$a->strings["diagnostics"] = ""; +$a->strings["diagnostics"] = "diagnostiche"; $a->strings["User registrations waiting for confirmation"] = "Utenti registrati in attesa di conferma"; $a->strings["Normal Account"] = "Account normale"; $a->strings["Soapbox Account"] = "Account per comunicati e annunci"; @@ -417,15 +1163,10 @@ $a->strings["Version"] = "Versione"; $a->strings["Active plugins"] = "Plugin attivi"; $a->strings["Can not parse base url. Must have at least ://"] = "Impossibile analizzare l'url base. Deve avere almeno [schema]://[dominio]"; $a->strings["Site settings updated."] = "Impostazioni del sito aggiornate."; -$a->strings["No special theme for mobile devices"] = "Nessun tema speciale per i dispositivi mobili"; -$a->strings["No community page"] = ""; -$a->strings["Public postings from users of this site"] = ""; -$a->strings["Global community page"] = ""; +$a->strings["No community page"] = "Nessuna pagina Comunità"; +$a->strings["Public postings from users of this site"] = "Messaggi pubblici dagli utenti di questo sito"; +$a->strings["Global community page"] = "Pagina Comunità globale"; $a->strings["At post arrival"] = "All'arrivo di un messaggio"; -$a->strings["Frequently"] = "Frequentemente"; -$a->strings["Hourly"] = "Ogni ora"; -$a->strings["Twice daily"] = "Due volte al dì"; -$a->strings["Daily"] = "Giornalmente"; $a->strings["Multi user instance"] = "Istanza multi utente"; $a->strings["Closed"] = "Chiusa"; $a->strings["Requires approval"] = "Richiede l'approvazione"; @@ -433,19 +1174,17 @@ $a->strings["Open"] = "Aperta"; $a->strings["No SSL policy, links will track page SSL state"] = "Nessuna gestione SSL, i link seguiranno lo stato SSL della pagina"; $a->strings["Force all links to use SSL"] = "Forza tutti i linki ad usare SSL"; $a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Certificato auto-firmato, usa SSL solo per i link locali (sconsigliato)"; -$a->strings["Save Settings"] = "Salva Impostazioni"; -$a->strings["Registration"] = "Registrazione"; $a->strings["File upload"] = "Caricamento file"; $a->strings["Policies"] = "Politiche"; $a->strings["Advanced"] = "Avanzate"; $a->strings["Performance"] = "Performance"; $a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "Trasloca - ATTENZIONE: funzione avanzata! Puo' rendere questo server irraggiungibile."; $a->strings["Site name"] = "Nome del sito"; -$a->strings["Host name"] = ""; -$a->strings["Sender Email"] = ""; +$a->strings["Host name"] = "Nome host"; +$a->strings["Sender Email"] = "Mittente email"; $a->strings["Banner/Logo"] = "Banner/Logo"; -$a->strings["Shortcut icon"] = ""; -$a->strings["Touch icon"] = ""; +$a->strings["Shortcut icon"] = "Icona shortcut"; +$a->strings["Touch icon"] = "Icona touch"; $a->strings["Additional Info"] = "Informazioni aggiuntive"; $a->strings["For public servers: you can add additional information here that will be listed at dir.friendica.com/siteinfo."] = "Per server pubblici: puoi aggiungere informazioni extra che verrano mostrate su dir.friendica.com/siteinfo."; $a->strings["System language"] = "Lingua di sistema"; @@ -455,8 +1194,8 @@ $a->strings["Mobile system theme"] = "Tema mobile di sistema"; $a->strings["Theme for mobile devices"] = "Tema per dispositivi mobili"; $a->strings["SSL link policy"] = "Gestione link SSL"; $a->strings["Determines whether generated links should be forced to use SSL"] = "Determina se i link generati devono essere forzati a usare SSL"; -$a->strings["Force SSL"] = ""; -$a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = ""; +$a->strings["Force SSL"] = "Forza SSL"; +$a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = "Forza tutte le richieste non SSL su SSL - Attenzione: su alcuni sistemi puo' portare a loop senza fine"; $a->strings["Old style 'Share'"] = "Ricondivisione vecchio stile"; $a->strings["Deactivates the bbcode element 'share' for repeating items."] = "Disattiva l'elemento bbcode 'share' con elementi ripetuti"; $a->strings["Hide help entry from navigation menu"] = "Nascondi la voce 'Guida' dal menu di navigazione"; @@ -506,10 +1245,10 @@ $a->strings["Fullname check"] = "Controllo nome completo"; $a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Forza gli utenti a registrarsi con uno spazio tra il nome e il cognome in \"Nome completo\", come misura antispam"; $a->strings["UTF-8 Regular expressions"] = "Espressioni regolari UTF-8"; $a->strings["Use PHP UTF8 regular expressions"] = "Usa le espressioni regolari PHP in UTF8"; -$a->strings["Community Page Style"] = ""; -$a->strings["Type of community page to show. 'Global community' shows every public posting from an open distributed network that arrived on this server."] = ""; -$a->strings["Posts per user on community page"] = ""; -$a->strings["The maximum number of posts per user on the community page. (Not valid for 'Global Community')"] = ""; +$a->strings["Community Page Style"] = "Stile pagina Comunità"; +$a->strings["Type of community page to show. 'Global community' shows every public posting from an open distributed network that arrived on this server."] = "Tipo di pagina Comunità da mostrare. 'Comunità Globale' mostra tutti i messaggi pubblici arrivati su questo server da network aperti distribuiti."; +$a->strings["Posts per user on community page"] = "Messaggi per utente nella pagina Comunità"; +$a->strings["The maximum number of posts per user on the community page. (Not valid for 'Global Community')"] = "Il numero massimo di messaggi per utente mostrato nella pagina Comuntà (non valido per 'Comunità globale')"; $a->strings["Enable OStatus support"] = "Abilita supporto OStatus"; $a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "Fornisce la compatibilità integrata a OStatus (StatusNet, Gnu Social, etc.). Tutte le comunicazioni su OStatus sono pubbliche, quindi un avviso di privacy verrà mostrato occasionalmente."; $a->strings["OStatus conversation completion interval"] = "Intervallo completamento conversazioni OStatus"; @@ -534,8 +1273,8 @@ $a->strings["Use MySQL full text engine"] = "Usa il motore MySQL full text"; $a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "Attiva il motore full text. Velocizza la ricerca, ma puo' cercare solo per quattro o più caratteri."; $a->strings["Suppress Language"] = "Disattiva lingua"; $a->strings["Suppress language information in meta information about a posting."] = "Disattiva le informazioni sulla lingua nei meta di un post."; -$a->strings["Suppress Tags"] = ""; -$a->strings["Suppress showing a list of hashtags at the end of the posting."] = ""; +$a->strings["Suppress Tags"] = "Sopprimi Tags"; +$a->strings["Suppress showing a list of hashtags at the end of the posting."] = "Non mostra la lista di hashtag in coda al messaggio"; $a->strings["Path to item cache"] = "Percorso cache elementi"; $a->strings["Cache duration in seconds"] = "Durata della cache in secondi"; $a->strings["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."] = "Quanto a lungo devono essere mantenuti i file di cache? Il valore predefinito è 86400 secondi (un giorno). Per disabilitare la cache, imposta il valore a -1."; @@ -546,10 +1285,10 @@ $a->strings["Temp path"] = "Percorso file temporanei"; $a->strings["Base path to installation"] = "Percorso base all'installazione"; $a->strings["Disable picture proxy"] = "Disabilita il proxy immagini"; $a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "Il proxy immagini aumenta le performace e la privacy. Non dovrebbe essere usato su server con poca banda disponibile."; -$a->strings["Enable old style pager"] = ""; -$a->strings["The old style pager has page numbers but slows down massively the page speed."] = ""; -$a->strings["Only search in tags"] = ""; -$a->strings["On large systems the text search can slow down the system extremely."] = ""; +$a->strings["Enable old style pager"] = "Abilita la paginazione vecchio stile"; +$a->strings["The old style pager has page numbers but slows down massively the page speed."] = "La paginazione vecchio stile mostra i numeri delle pagine, ma rallenta la velocità di caricamento della pagina."; +$a->strings["Only search in tags"] = "Cerca solo nei tag"; +$a->strings["On large systems the text search can slow down the system extremely."] = "Su server con molti dati, la ricerca nel testo può estremamente rallentare il sistema."; $a->strings["New base url"] = "Nuovo url base"; $a->strings["Update has been marked successful"] = "L'aggiornamento è stato segnato come di successo"; $a->strings["Database structure update %s was successfully applied."] = "Aggiornamento struttura database %s applicata con successo."; @@ -566,7 +1305,6 @@ $a->strings["Mark success (if update was manually applied)"] = "Segna completato $a->strings["Attempt to execute this update step automatically"] = "Cerco di eseguire questo aggiornamento in automatico"; $a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tthe administrator of %2\$s has set up an account for you."] = "\nGentile %1\$s,\n l'amministratore di %2\$s ha impostato un account per te."; $a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t\t%2\$s\n\t\t\tPassword:\t\t%3\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tThank you and welcome to %4\$s."] = "\nI dettagli del tuo utente sono:\n Indirizzo del sito: %1\$s\n Nome utente: %2\$s\n Password: %3\$s\n\nPuoi cambiare la tua password dalla pagina delle impostazioni del tuo account dopo esserti autenticato.\n\nPer favore, prenditi qualche momento per esaminare tutte le impostazioni presenti.\n\nPotresti voler aggiungere qualche informazione di base al tuo profilo predefinito (nella pagina \"Profili\"), così che le altre persone possano trovarti più facilmente.\n\nTi raccomandiamo di inserire il tuo nome completo, aggiungere una foto, aggiungere qualche parola chiave del profilo (molto utili per trovare nuovi contatti), e magari in quale nazione vivi, se non vuoi essere più specifico di così.\n\nNoi rispettiamo appieno la tua privacy, e nessuna di queste informazioni è necessaria o obbligatoria.\nSe sei nuovo e non conosci nessuno qui, possono aiutarti a trovare qualche nuovo e interessante contatto.\n\nGrazie e benvenuto su %4\$s"; -$a->strings["Registration details for %s"] = "Dettagli della registrazione di %s"; $a->strings["%s user blocked/unblocked"] = array( 0 => "%s utente bloccato/sbloccato", 1 => "%s utenti bloccati/sbloccati", @@ -583,7 +1321,6 @@ $a->strings["select all"] = "seleziona tutti"; $a->strings["User registrations waiting for confirm"] = "Richieste di registrazione in attesa di conferma"; $a->strings["User waiting for permanent deletion"] = "Utente in attesa di cancellazione definitiva"; $a->strings["Request date"] = "Data richiesta"; -$a->strings["Email"] = "Email"; $a->strings["No registrations."] = "Nessuna registrazione."; $a->strings["Deny"] = "Nega"; $a->strings["Site admin"] = "Amministrazione sito"; @@ -593,7 +1330,6 @@ $a->strings["Register date"] = "Data registrazione"; $a->strings["Last login"] = "Ultimo accesso"; $a->strings["Last item"] = "Ultimo elemento"; $a->strings["Deleted since"] = "Rimosso da"; -$a->strings["Account"] = "Account"; $a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Gli utenti selezionati saranno cancellati!\\n\\nTutto quello che gli utenti hanno inviato su questo sito sarà permanentemente canellato!\\n\\nSei sicuro?"; $a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "L'utente {0} sarà cancellato!\\n\\nTutto quello che ha inviato su questo sito sarà permanentemente cancellato!\\n\\nSei sicuro?"; $a->strings["Name of the new user."] = "Nome del nuovo utente."; @@ -622,10 +1358,14 @@ $a->strings["FTP Host"] = "Indirizzo FTP"; $a->strings["FTP Path"] = "Percorso FTP"; $a->strings["FTP User"] = "Utente FTP"; $a->strings["FTP Password"] = "Pasword FTP"; +$a->strings["Image exceeds size limit of %d"] = "La dimensione dell'immagine supera il limite di %d"; +$a->strings["Unable to process image."] = "Impossibile caricare l'immagine."; +$a->strings["Image upload failed."] = "Caricamento immagine fallito."; +$a->strings["Welcome to %s"] = "Benvenuto su %s"; +$a->strings["OpenID protocol error. No ID returned."] = "Errore protocollo OpenID. Nessun ID ricevuto."; +$a->strings["Account not found and OpenID registration is not permitted on this site."] = "L'account non è stato trovato, e la registrazione via OpenID non è permessa su questo sito."; $a->strings["Search Results For:"] = "Cerca risultati per:"; $a->strings["Remove term"] = "Rimuovi termine"; -$a->strings["Saved Searches"] = "Ricerche salvate"; -$a->strings["add"] = "aggiungi"; $a->strings["Commented Order"] = "Ordina per commento"; $a->strings["Sort by Comment Date"] = "Ordina per data commento"; $a->strings["Posted Order"] = "Ordina per invio"; @@ -648,13 +1388,132 @@ $a->strings["Group: "] = "Gruppo: "; $a->strings["Contact: "] = "Contatto:"; $a->strings["Private messages to this person are at risk of public disclosure."] = "I messaggi privati a questa persona potrebbero risultare visibili anche pubblicamente."; $a->strings["Invalid contact."] = "Contatto non valido."; -$a->strings["Friends of %s"] = "Amici di %s"; -$a->strings["No friends to display."] = "Nessun amico da visualizzare."; +$a->strings["- select -"] = "- seleziona -"; +$a->strings["This is Friendica, version"] = "Questo è Friendica, versione"; +$a->strings["running at web location"] = "in esecuzione all'indirizzo web"; +$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Visita Friendica.com per saperne di più sul progetto Friendica."; +$a->strings["Bug reports and issues: please visit"] = "Segnalazioni di bug e problemi: visita"; +$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Suggerimenti, lodi, donazioni, ecc - e-mail a \"Info\" at Friendica punto com"; +$a->strings["Installed plugins/addons/apps:"] = "Plugin/addon/applicazioni instalate"; +$a->strings["No installed plugins/addons/apps"] = "Nessun plugin/addons/applicazione installata"; +$a->strings["Applications"] = "Applicazioni"; +$a->strings["No installed applications."] = "Nessuna applicazione installata."; +$a->strings["Upload New Photos"] = "Carica nuove foto"; +$a->strings["Contact information unavailable"] = "I dati di questo contatto non sono disponibili"; +$a->strings["Album not found."] = "Album non trovato."; +$a->strings["Delete Album"] = "Rimuovi album"; +$a->strings["Do you really want to delete this photo album and all its photos?"] = "Vuoi davvero cancellare questo album e tutte le sue foto?"; +$a->strings["Delete Photo"] = "Rimuovi foto"; +$a->strings["Do you really want to delete this photo?"] = "Vuoi veramente cancellare questa foto?"; +$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s è stato taggato in %2\$s da %3\$s"; +$a->strings["a photo"] = "una foto"; +$a->strings["Image exceeds size limit of "] = "L'immagine supera il limite di"; +$a->strings["Image file is empty."] = "Il file dell'immagine è vuoto."; +$a->strings["No photos selected"] = "Nessuna foto selezionata"; +$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Hai usato %1$.2f MBytes su %2$.2f disponibili."; +$a->strings["Upload Photos"] = "Carica foto"; +$a->strings["New album name: "] = "Nome nuovo album: "; +$a->strings["or existing album name: "] = "o nome di un album esistente: "; +$a->strings["Do not show a status post for this upload"] = "Non creare un post per questo upload"; +$a->strings["Permissions"] = "Permessi"; +$a->strings["Private Photo"] = "Foto privata"; +$a->strings["Public Photo"] = "Foto pubblica"; +$a->strings["Edit Album"] = "Modifica album"; +$a->strings["Show Newest First"] = "Mostra nuove foto per prime"; +$a->strings["Show Oldest First"] = "Mostra vecchie foto per prime"; +$a->strings["View Photo"] = "Vedi foto"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Permesso negato. L'accesso a questo elemento può essere limitato."; +$a->strings["Photo not available"] = "Foto non disponibile"; +$a->strings["View photo"] = "Vedi foto"; +$a->strings["Edit photo"] = "Modifica foto"; +$a->strings["Use as profile photo"] = "Usa come foto del profilo"; +$a->strings["View Full Size"] = "Vedi dimensione intera"; +$a->strings["Tags: "] = "Tag: "; +$a->strings["[Remove any tag]"] = "[Rimuovi tutti i tag]"; +$a->strings["Rotate CW (right)"] = "Ruota a destra"; +$a->strings["Rotate CCW (left)"] = "Ruota a sinistra"; +$a->strings["New album name"] = "Nuovo nome dell'album"; +$a->strings["Caption"] = "Titolo"; +$a->strings["Add a Tag"] = "Aggiungi tag"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"; +$a->strings["Private photo"] = "Foto privata"; +$a->strings["Public photo"] = "Foto pubblica"; +$a->strings["Recent Photos"] = "Foto recenti"; +$a->strings["The post was created"] = "Il messaggio è stato creato"; +$a->strings["Contact added"] = "Contatto aggiunto"; +$a->strings["Move account"] = "Muovi account"; +$a->strings["You can import an account from another Friendica server."] = "Puoi importare un account da un altro server Friendica."; +$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."] = "Devi esportare il tuo account dal vecchio server e caricarlo qui. Noi ricreeremo il tuo vecchio account qui, con tutti i tuoi contatti. Proveremo anche a informare i tuoi amici che ti sei spostato qui."; +$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Questa funzione è sperimentale. Non possiamo importare i contatti dalla rete OStatus (status.net/identi.ca) o da Diaspora"; +$a->strings["Account file"] = "File account"; +$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Per esportare il tuo account, vai su \"Impostazioni -> Esporta i tuoi dati personali\" e seleziona \"Esporta account\""; +$a->strings["Total invitation limit exceeded."] = "Limite totale degli inviti superato."; +$a->strings["%s : Not a valid email address."] = "%s: non è un indirizzo email valido."; +$a->strings["Please join us on Friendica"] = "Unisiciti a noi su Friendica"; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limite degli inviti superato. Contatta l'amministratore del tuo sito."; +$a->strings["%s : Message delivery failed."] = "%s: la consegna del messaggio fallita."; +$a->strings["%d message sent."] = array( + 0 => "%d messaggio inviato.", + 1 => "%d messaggi inviati.", +); +$a->strings["You have no more invitations available"] = "Non hai altri inviti disponibili"; +$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Visita %s per una lista di siti pubblici a cui puoi iscriverti. I membri Friendica su altri siti possono collegarsi uno con l'altro, come con membri di molti altri social network."; +$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Per accettare questo invito, visita e resitrati su %s o su un'altro sito web Friendica aperto al pubblico."; +$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "I siti Friendica son tutti collegati tra loro per creare una grossa rete sociale rispettosa della privacy, posseduta e controllata dai suoi membri. I siti Friendica possono anche collegarsi a molti altri social network tradizionali. Vai su %s per una lista di siti Friendica alternativi a cui puoi iscriverti."; +$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Ci scusiamo, questo sistema non è configurato per collegarsi con altri siti pubblici o per invitare membri."; +$a->strings["Send invitations"] = "Invia inviti"; +$a->strings["Enter email addresses, one per line:"] = "Inserisci gli indirizzi email, uno per riga:"; +$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Sei cordialmente invitato a unirti a me ed ad altri amici su Friendica, e ad aiutarci a creare una rete sociale migliore."; +$a->strings["You will need to supply this invitation code: \$invite_code"] = "Sarà necessario fornire questo codice invito: \$invite_code"; +$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Una volta registrato, connettiti con me dal mio profilo:"; +$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Per maggiori informazioni sul progetto Friendica e perchè pensiamo sia importante, visita http://friendica.com"; +$a->strings["Access denied."] = "Accesso negato."; +$a->strings["No valid account found."] = "Nessun account valido trovato."; +$a->strings["Password reset request issued. Check your email."] = "La richiesta per reimpostare la password è stata inviata. Controlla la tua email."; +$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."] = "\nGentile %1\$s,\n abbiamo ricevuto su \"%2\$s\" una richiesta di resettare la password del tuo account. Per confermare questa richiesta, selezionate il link di conferma qui sotto o incollatelo nella barra indirizzo del vostro browser.\n\nSe NON hai richiesto questa modifica, NON selezionare il link e ignora o cancella questa email.\n\nLa tua password non verrà modificata a meno che non possiamo verificare che tu abbia effettivamente richiesto la modifica."; +$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"] = "\nSegui questo link per verificare la tua identità:\n\n%1\$s\n\nRiceverai in un successivo messaggio la nuova password.\nPotrai cambiarla dalla pagina \"Impostazioni\" del tuo account dopo esserti autenticato.\n\nI dettagli del tuo account sono:\n Indirizzo del sito: %2\$s\n Nome utente: %3\$s"; +$a->strings["Password reset requested at %s"] = "Richiesta reimpostazione password su %s"; +$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La richiesta non può essere verificata. (Puoi averla già richiesta precendentemente). Reimpostazione password fallita."; +$a->strings["Your password has been reset as requested."] = "La tua password è stata reimpostata come richiesto."; +$a->strings["Your new password is"] = "La tua nuova password è"; +$a->strings["Save or copy your new password - and then"] = "Salva o copia la tua nuova password, quindi"; +$a->strings["click here to login"] = "clicca qui per entrare"; +$a->strings["Your password may be changed from the Settings page after successful login."] = "Puoi cambiare la tua password dalla pagina Impostazioni dopo aver effettuato l'accesso."; +$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"] = "\nGentile %1\$s,\n La tua password è stata modificata come richiesto.\nSalva questa password, o sostituiscila immediatamente con qualcosa che puoi ricordare."; +$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"] = "\nI dettagli del tuo account sono:\n\n Indirizzo del sito: %1\$s\n Nome utente: %2\$s\n Password: %3\$s\n\nPuoi cambiare questa password dalla pagina \"Impostazioni\" del tuo account dopo esserti autenticato."; +$a->strings["Your password has been changed at %s"] = "La tua password presso %s è stata cambiata"; +$a->strings["Forgot your Password?"] = "Hai dimenticato la password?"; +$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Inserisci il tuo indirizzo email per reimpostare la password."; +$a->strings["Nickname or Email: "] = "Nome utente o email: "; +$a->strings["Reset"] = "Reimposta"; +$a->strings["Source (bbcode) text:"] = "Testo sorgente (bbcode):"; +$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Testo sorgente (da Diaspora) da convertire in BBcode:"; +$a->strings["Source input: "] = "Sorgente:"; +$a->strings["bb2html (raw HTML): "] = "bb2html (HTML grezzo):"; +$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): "] = "Sorgente (formato Diaspora):"; +$a->strings["diaspora2bb: "] = "diaspora2bb: "; +$a->strings["Tag removed"] = "Tag rimosso"; +$a->strings["Remove Item Tag"] = "Rimuovi il tag"; +$a->strings["Select a tag to remove: "] = "Seleziona un tag da rimuovere: "; +$a->strings["Remove My Account"] = "Rimuovi il mio account"; +$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Questo comando rimuoverà completamente il tuo account. Una volta rimosso non potrai più recuperarlo."; +$a->strings["Please enter your password for verification:"] = "Inserisci la tua password per verifica:"; +$a->strings["Invalid profile identifier."] = "Indentificativo del profilo non valido."; +$a->strings["Profile Visibility Editor"] = "Modifica visibilità del profilo"; +$a->strings["Visible To"] = "Visibile a"; +$a->strings["All Contacts (with secure profile access)"] = "Tutti i contatti (con profilo ad accesso sicuro)"; +$a->strings["Profile Match"] = "Profili corrispondenti"; +$a->strings["No keywords to match. Please add keywords to your default profile."] = "Nessuna parola chiave per l'abbinamento. Aggiungi parole chiave al tuo profilo predefinito."; +$a->strings["is interested in:"] = "è interessato a:"; $a->strings["Event title and start time are required."] = "Titolo e ora di inizio dell'evento sono richiesti."; $a->strings["l, F j"] = "l j F"; $a->strings["Edit event"] = "Modifca l'evento"; -$a->strings["link to source"] = "Collegamento all'originale"; -$a->strings["Events"] = "Eventi"; $a->strings["Create New Event"] = "Crea un nuovo evento"; $a->strings["Previous"] = "Precendente"; $a->strings["Next"] = "Successivo"; @@ -667,53 +1526,113 @@ $a->strings["Finish date/time is not known or not relevant"] = "La data/ora di f $a->strings["Event Finishes:"] = "L'evento finisce:"; $a->strings["Adjust for viewer timezone"] = "Visualizza con il fuso orario di chi legge"; $a->strings["Description:"] = "Descrizione:"; -$a->strings["Location:"] = "Posizione:"; $a->strings["Title:"] = "Titolo:"; $a->strings["Share this event"] = "Condividi questo evento"; -$a->strings["Select"] = "Seleziona"; -$a->strings["View %s's profile @ %s"] = "Vedi il profilo di %s @ %s"; -$a->strings["%s from %s"] = "%s da %s"; -$a->strings["View in context"] = "Vedi nel contesto"; -$a->strings["%d comment"] = array( - 0 => "%d commento", - 1 => "%d commenti", +$a->strings["{0} wants to be your friend"] = "{0} vuole essere tuo amico"; +$a->strings["{0} sent you a message"] = "{0} ti ha inviato un messaggio"; +$a->strings["{0} requested registration"] = "{0} chiede la registrazione"; +$a->strings["{0} commented %s's post"] = "{0} ha commentato il post di %s"; +$a->strings["{0} liked %s's post"] = "a {0} piace il post di %s"; +$a->strings["{0} disliked %s's post"] = "a {0} non piace il post di %s"; +$a->strings["{0} is now friends with %s"] = "{0} ora è amico di %s"; +$a->strings["{0} posted"] = "{0} ha inviato un nuovo messaggio"; +$a->strings["{0} tagged %s's post with #%s"] = "{0} ha taggato il post di %s con #%s"; +$a->strings["{0} mentioned you in a post"] = "{0} ti ha citato in un post"; +$a->strings["Mood"] = "Umore"; +$a->strings["Set your current mood and tell your friends"] = "Condividi il tuo umore con i tuoi amici"; +$a->strings["No results."] = "Nessun risultato."; +$a->strings["Unable to locate contact information."] = "Impossibile trovare le informazioni del contatto."; +$a->strings["Do you really want to delete this message?"] = "Vuoi veramente cancellare questo messaggio?"; +$a->strings["Message deleted."] = "Messaggio eliminato."; +$a->strings["Conversation removed."] = "Conversazione rimossa."; +$a->strings["No messages."] = "Nessun messaggio."; +$a->strings["Unknown sender - %s"] = "Mittente sconosciuto - %s"; +$a->strings["You and %s"] = "Tu e %s"; +$a->strings["%s and You"] = "%s e Tu"; +$a->strings["Delete conversation"] = "Elimina la conversazione"; +$a->strings["D, d M Y - g:i A"] = "D d M Y - G:i"; +$a->strings["%d message"] = array( + 0 => "%d messaggio", + 1 => "%d messaggi", ); -$a->strings["comment"] = array( - 0 => "", - 1 => "commento", -); -$a->strings["show more"] = "mostra di più"; -$a->strings["Private Message"] = "Messaggio privato"; -$a->strings["I like this (toggle)"] = "Mi piace (clic per cambiare)"; -$a->strings["like"] = "mi piace"; -$a->strings["I don't like this (toggle)"] = "Non mi piace (clic per cambiare)"; -$a->strings["dislike"] = "non mi piace"; -$a->strings["Share this"] = "Condividi questo"; -$a->strings["share"] = "condividi"; -$a->strings["This is you"] = "Questo sei tu"; -$a->strings["Comment"] = "Commento"; -$a->strings["Bold"] = "Grassetto"; -$a->strings["Italic"] = "Corsivo"; -$a->strings["Underline"] = "Sottolineato"; -$a->strings["Quote"] = "Citazione"; -$a->strings["Code"] = "Codice"; -$a->strings["Image"] = "Immagine"; -$a->strings["Link"] = "Link"; -$a->strings["Video"] = "Video"; -$a->strings["Preview"] = "Anteprima"; -$a->strings["Edit"] = "Modifica"; -$a->strings["add star"] = "aggiungi a speciali"; -$a->strings["remove star"] = "rimuovi da speciali"; -$a->strings["toggle star status"] = "Inverti stato preferito"; -$a->strings["starred"] = "preferito"; -$a->strings["add tag"] = "aggiungi tag"; -$a->strings["save to folder"] = "salva nella cartella"; -$a->strings["to"] = "a"; -$a->strings["Wall-to-Wall"] = "Da bacheca a bacheca"; -$a->strings["via Wall-To-Wall:"] = "da bacheca a bacheca"; -$a->strings["Remove My Account"] = "Rimuovi il mio account"; -$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Questo comando rimuoverà completamente il tuo account. Una volta rimosso non potrai più recuperarlo."; -$a->strings["Please enter your password for verification:"] = "Inserisci la tua password per verifica:"; +$a->strings["Message not available."] = "Messaggio non disponibile."; +$a->strings["Delete message"] = "Elimina il messaggio"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Nessuna comunicazione sicura disponibile, Potresti essere in grado di rispondere dalla pagina del profilo del mittente."; +$a->strings["Send Reply"] = "Invia la risposta"; +$a->strings["Not available."] = "Non disponibile."; +$a->strings["Profile not found."] = "Profilo non trovato."; +$a->strings["Profile deleted."] = "Profilo elminato."; +$a->strings["Profile-"] = "Profilo-"; +$a->strings["New profile created."] = "Il nuovo profilo è stato creato."; +$a->strings["Profile unavailable to clone."] = "Impossibile duplicare il profilo."; +$a->strings["Profile Name is required."] = "Il nome profilo è obbligatorio ."; +$a->strings["Marital Status"] = "Stato civile"; +$a->strings["Romantic Partner"] = "Partner romantico"; +$a->strings["Likes"] = "Mi piace"; +$a->strings["Dislikes"] = "Non mi piace"; +$a->strings["Work/Employment"] = "Lavoro/Impiego"; +$a->strings["Religion"] = "Religione"; +$a->strings["Political Views"] = "Orientamento Politico"; +$a->strings["Gender"] = "Sesso"; +$a->strings["Sexual Preference"] = "Preferenza sessuale"; +$a->strings["Homepage"] = "Homepage"; +$a->strings["Interests"] = "Interessi"; +$a->strings["Address"] = "Indirizzo"; +$a->strings["Location"] = "Posizione"; +$a->strings["Profile updated."] = "Profilo aggiornato."; +$a->strings[" and "] = "e "; +$a->strings["public profile"] = "profilo pubblico"; +$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s ha cambiato %2\$s in “%3\$s”"; +$a->strings[" - Visit %1\$s's %2\$s"] = "- Visita %2\$s di %1\$s"; +$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s ha un %2\$s aggiornato. Ha cambiato %3\$s"; +$a->strings["Hide contacts and friends:"] = "Nascondi contatti:"; +$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Nascondi la tua lista di contatti/amici ai visitatori di questo profilo?"; +$a->strings["Edit Profile Details"] = "Modifica i dettagli del profilo"; +$a->strings["Change Profile Photo"] = "Cambia la foto del profilo"; +$a->strings["View this profile"] = "Visualizza questo profilo"; +$a->strings["Create a new profile using these settings"] = "Crea un nuovo profilo usando queste impostazioni"; +$a->strings["Clone this profile"] = "Clona questo profilo"; +$a->strings["Delete this profile"] = "Elimina questo profilo"; +$a->strings["Basic information"] = "Informazioni di base"; +$a->strings["Profile picture"] = "Immagine del profilo"; +$a->strings["Preferences"] = "Preferenze"; +$a->strings["Status information"] = "Informazioni stato"; +$a->strings["Additional information"] = "Informazioni aggiuntive"; +$a->strings["Upload Profile Photo"] = "Carica la foto del profilo"; +$a->strings["Profile Name:"] = "Nome del profilo:"; +$a->strings["Your Full Name:"] = "Il tuo nome completo:"; +$a->strings["Title/Description:"] = "Breve descrizione (es. titolo, posizione, altro):"; +$a->strings["Your Gender:"] = "Il tuo sesso:"; +$a->strings["Birthday (%s):"] = "Compleanno (%s)"; +$a->strings["Street Address:"] = "Indirizzo (via/piazza):"; +$a->strings["Locality/City:"] = "Località:"; +$a->strings["Postal/Zip Code:"] = "CAP:"; +$a->strings["Country:"] = "Nazione:"; +$a->strings["Region/State:"] = "Regione/Stato:"; +$a->strings[" Marital Status:"] = " Stato sentimentale:"; +$a->strings["Who: (if applicable)"] = "Con chi: (se possibile)"; +$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Esempio: cathy123, Cathy Williams, cathy@example.com"; +$a->strings["Since [date]:"] = "Dal [data]:"; +$a->strings["Homepage URL:"] = "Homepage:"; +$a->strings["Religious Views:"] = "Orientamento religioso:"; +$a->strings["Public Keywords:"] = "Parole chiave visibili a tutti:"; +$a->strings["Private Keywords:"] = "Parole chiave private:"; +$a->strings["Example: fishing photography software"] = "Esempio: pesca fotografia programmazione"; +$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(E' utilizzato per suggerire potenziali amici, può essere visto da altri)"; +$a->strings["(Used for searching profiles, never shown to others)"] = "(Usato per cercare tra i profili, non è mai visibile agli altri)"; +$a->strings["Tell us about yourself..."] = "Raccontaci di te..."; +$a->strings["Hobbies/Interests"] = "Hobby/interessi"; +$a->strings["Contact information and Social Networks"] = "Informazioni su contatti e social network"; +$a->strings["Musical interests"] = "Interessi musicali"; +$a->strings["Books, literature"] = "Libri, letteratura"; +$a->strings["Television"] = "Televisione"; +$a->strings["Film/dance/culture/entertainment"] = "Film/danza/cultura/intrattenimento"; +$a->strings["Love/romance"] = "Amore"; +$a->strings["Work/employment"] = "Lavoro/impiego"; +$a->strings["School/education"] = "Scuola/educazione"; +$a->strings["This is your public profile.
    It may be visible to anybody using the internet."] = "Questo è il tuo profilo publico.
    Potrebbe essere visto da chiunque attraverso internet."; +$a->strings["Age: "] = "Età : "; +$a->strings["Edit/Manage Profiles"] = "Modifica / Gestisci profili"; $a->strings["Friendica Communications Server - Setup"] = "Friendica Comunicazione Server - Impostazioni"; $a->strings["Could not connect to database."] = " Impossibile collegarsi con il database."; $a->strings["Could not create table."] = "Impossibile creare le tabelle."; @@ -775,1023 +1694,113 @@ $a->strings["Url rewrite is working"] = "La riscrittura degli url funziona"; $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."] = "Il file di configurazione del database \".htconfig.php\" non può essere scritto. Usa il testo qui di seguito per creare un file di configurazione nella cartella principale del tuo sito."; $a->strings["

    What next

    "] = "

    Cosa fare ora

    "; $a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Devi impostare [manualmente] la pianificazione del poller."; -$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Numero giornaliero di messaggi per %s superato. Invio fallito."; -$a->strings["Unable to check your home location."] = "Impossibile controllare la tua posizione di origine."; -$a->strings["No recipient."] = "Nessun destinatario."; -$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Se vuoi che %s ti risponda, controlla che le tue impostazioni di privacy permettano la ricezione di messaggi privati da mittenti sconosciuti."; $a->strings["Help:"] = "Guida:"; -$a->strings["Help"] = "Guida"; -$a->strings["Not Found"] = "Non trovato"; -$a->strings["Page not found."] = "Pagina non trovata."; +$a->strings["Contact settings applied."] = "Contatto modificato."; +$a->strings["Contact update failed."] = "Le modifiche al contatto non sono state salvate."; +$a->strings["Repair Contact Settings"] = "Ripara il contatto"; +$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ATTENZIONE: Queste sono impostazioni avanzate e se inserisci informazioni errate le tue comunicazioni con questo contatto potrebbero non funzionare più"; +$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Usa ora il tasto 'Indietro' del tuo browser se non sei sicuro di cosa fare in questa pagina."; +$a->strings["Return to contact editor"] = "Ritorna alla modifica contatto"; +$a->strings["No mirroring"] = "Non duplicare"; +$a->strings["Mirror as forwarded posting"] = "Duplica come messaggi ricondivisi"; +$a->strings["Mirror as my own posting"] = "Duplica come miei messaggi"; +$a->strings["Account Nickname"] = "Nome utente"; +$a->strings["@Tagname - overrides Name/Nickname"] = "@TagName - al posto del nome utente"; +$a->strings["Account URL"] = "URL dell'utente"; +$a->strings["Friend Request URL"] = "URL Richiesta Amicizia"; +$a->strings["Friend Confirm URL"] = "URL Conferma Amicizia"; +$a->strings["Notification Endpoint URL"] = "URL Notifiche"; +$a->strings["Poll/Feed URL"] = "URL Feed"; +$a->strings["New photo from this URL"] = "Nuova foto da questo URL"; +$a->strings["Remote Self"] = "Io remoto"; +$a->strings["Mirror postings from this contact"] = "Ripeti i messaggi di questo contatto"; +$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Imposta questo contatto come 'io remoto', questo farà si che friendica reinvii i nuovi messaggi da questo contatto."; +$a->strings["Welcome to Friendica"] = "Benvenuto su Friendica"; +$a->strings["New Member Checklist"] = "Cose da fare per i Nuovi Utenti"; +$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."] = "Vorremmo offrirti qualche trucco e dei link alla guida per aiutarti ad avere un'esperienza divertente. Clicca su un qualsiasi elemento per visitare la relativa pagina. Un link a questa pagina sarà visibile nella tua home per due settimane dopo la tua registrazione."; +$a->strings["Getting Started"] = "Come Iniziare"; +$a->strings["Friendica Walk-Through"] = "Friendica Passo-Passo"; +$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Sulla tua pagina Quick Start - veloce introduzione alla tua pagina profilo e alla pagina Rete, fai qualche nuova amicizia, e trova qualche gruppo a cui unirti."; +$a->strings["Go to Your Settings"] = "Vai alle tue Impostazioni"; +$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Nella tua pagina Impostazioni - cambia la tua password iniziale. Prendi anche nota del tuo Indirizzo Identità. Assomiglia a un indirizzo email e sarà utile per stringere amicizie nel web sociale libero."; +$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Guarda le altre impostazioni, in particolare le impostazioni della privacy. Un profilo non pubblicato è come un numero di telefono non in elenco. In genere, dovresti pubblicare il tuo profilo - a meno che tutti i tuoi amici e potenziali tali sappiano esattamente come trovarti."; +$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Carica una foto del profilo se non l'hai ancora fatto. Studi hanno mostrato che persone che hanno vere foto di se stessi hanno dieci volte più probabilità di fare amicizie rispetto alle persone che non ce l'hanno."; +$a->strings["Edit Your Profile"] = "Modifica il tuo Profilo"; +$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Modifica il tuo profilo predefinito a piacimento. Rivedi le impostazioni per nascondere la tua lista di amici e nascondere il profilo ai visitatori sconosciuti."; +$a->strings["Profile Keywords"] = "Parole chiave del profilo"; +$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Inserisci qualche parola chiave pubblica nel tuo profilo predefinito che descriva i tuoi interessi. Potremmo essere in grado di trovare altre persone con interessi similari e suggerirti delle amicizie."; +$a->strings["Connecting"] = "Collegarsi"; +$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Autorizza il Facebook Connector se hai un account Facebook, e noi (opzionalmente) importeremo tuti i tuoi amici e le tue conversazioni da Facebook."; +$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Sestrings["Importing Emails"] = "Importare le Email"; +$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Inserisci i tuoi dati di accesso all'email nella tua pagina Impostazioni Connettori se vuoi importare e interagire con amici o mailing list dalla tua casella di posta in arrivo"; +$a->strings["Go to Your Contacts Page"] = "Vai alla tua pagina Contatti"; +$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = "La tua pagina Contatti è il mezzo per gestire le amicizie e collegarsi con amici su altre reti. Di solito, basta inserire l'indirizzo nel campo Aggiungi Nuovo Contatto"; +$a->strings["Go to Your Site's Directory"] = "Vai all'Elenco del tuo sito"; +$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "La pagina Elenco ti permette di trovare altre persone in questa rete o in altri siti. Cerca un link Connetti o Segui nella loro pagina del profilo. Inserisci il tuo Indirizzo Identità, se richiesto."; +$a->strings["Finding New People"] = "Trova nuove persone"; +$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Nel pannello laterale nella pagina \"Contatti\", ci sono diversi strumenti per trovare nuovi amici. Possiamo confrontare le persone per interessi, cercare le persone per nome e fornire suggerimenti basati sui tuoi contatti esistenti. Su un sito nuovo, i suggerimenti sono di solito presenti dopo 24 ore."; +$a->strings["Group Your Contacts"] = "Raggruppa i tuoi contatti"; +$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Quando avrai alcuni amici, organizzali in gruppi di conversazioni private dalla barra laterale della tua pagina Contatti. Potrai interagire privatamente con ogni gruppo nella tua pagina Rete"; +$a->strings["Why Aren't My Posts Public?"] = "Perchè i miei post non sono pubblici?"; +$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica rispetta la tua provacy. Per impostazione predefinita, i tuoi post sono mostrati solo alle persone che hai aggiunto come amici. Per maggiori informazioni guarda la sezione della guida dal link qui sopra."; +$a->strings["Getting Help"] = "Ottenere Aiuto"; +$a->strings["Go to the Help Section"] = "Vai alla sezione Guida"; +$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Le nostre pagine della guida possono essere consultate per avere dettagli su altre caratteristiche del programma e altre risorse."; +$a->strings["Poke/Prod"] = "Tocca/Pungola"; +$a->strings["poke, prod or do other things to somebody"] = "tocca, pungola o fai altre cose a qualcuno"; +$a->strings["Recipient"] = "Destinatario"; +$a->strings["Choose what you wish to do to recipient"] = "Scegli cosa vuoi fare al destinatario"; +$a->strings["Make this post private"] = "Rendi questo post privato"; +$a->strings["Item has been removed."] = "L'oggetto è stato rimosso."; +$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s sta seguendo %3\$s di %2\$s"; $a->strings["%1\$s welcomes %2\$s"] = "%s dà il benvenuto a %s"; -$a->strings["Welcome to %s"] = "Benvenuto su %s"; -$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Mi spiace, forse il fie che stai caricando è più grosso di quanto la configurazione di PHP permetta"; -$a->strings["Or - did you try to upload an empty file?"] = "O.. non avrai provato a caricare un file vuoto?"; -$a->strings["File exceeds size limit of %d"] = "Il file supera la dimensione massima di %d"; -$a->strings["File upload failed."] = "Caricamento del file non riuscito."; -$a->strings["Profile Match"] = "Profili corrispondenti"; -$a->strings["No keywords to match. Please add keywords to your default profile."] = "Nessuna parola chiave per l'abbinamento. Aggiungi parole chiave al tuo profilo predefinito."; -$a->strings["is interested in:"] = "è interessato a:"; -$a->strings["Connect"] = "Connetti"; -$a->strings["link"] = "collegamento"; -$a->strings["Not available."] = "Non disponibile."; -$a->strings["Community"] = "Comunità"; -$a->strings["No results."] = "Nessun risultato."; -$a->strings["everybody"] = "tutti"; -$a->strings["Additional features"] = "Funzionalità aggiuntive"; -$a->strings["Display"] = "Visualizzazione"; -$a->strings["Social Networks"] = "Social Networks"; -$a->strings["Delegations"] = "Delegazioni"; -$a->strings["Connected apps"] = "Applicazioni collegate"; -$a->strings["Export personal data"] = "Esporta dati personali"; -$a->strings["Remove account"] = "Rimuovi account"; -$a->strings["Missing some important data!"] = "Mancano alcuni dati importanti!"; -$a->strings["Failed to connect with email account using the settings provided."] = "Impossibile collegarsi all'account email con i parametri forniti."; -$a->strings["Email settings updated."] = "Impostazioni e-mail aggiornate."; -$a->strings["Features updated"] = "Funzionalità aggiornate"; -$a->strings["Relocate message has been send to your contacts"] = "Il messaggio di trasloco è stato inviato ai tuoi contatti"; -$a->strings["Passwords do not match. Password unchanged."] = "Le password non corrispondono. Password non cambiata."; -$a->strings["Empty passwords are not allowed. Password unchanged."] = "Le password non possono essere vuote. Password non cambiata."; -$a->strings["Wrong password."] = "Password sbagliata."; -$a->strings["Password changed."] = "Password cambiata."; -$a->strings["Password update failed. Please try again."] = "Aggiornamento password fallito. Prova ancora."; -$a->strings[" Please use a shorter name."] = " Usa un nome più corto."; -$a->strings[" Name too short."] = " Nome troppo corto."; -$a->strings["Wrong Password"] = "Password Sbagliata"; -$a->strings[" Not valid email."] = " Email non valida."; -$a->strings[" Cannot change to that email."] = "Non puoi usare quella email."; -$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Il forum privato non ha permessi di privacy. Uso il gruppo di privacy predefinito."; -$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Il gruppo privato non ha permessi di privacy e nessun gruppo di privacy predefinito."; -$a->strings["Settings updated."] = "Impostazioni aggiornate."; -$a->strings["Add application"] = "Aggiungi applicazione"; -$a->strings["Consumer Key"] = "Consumer Key"; -$a->strings["Consumer Secret"] = "Consumer Secret"; -$a->strings["Redirect"] = "Redirect"; -$a->strings["Icon url"] = "Url icona"; -$a->strings["You can't edit this application."] = "Non puoi modificare questa applicazione."; -$a->strings["Connected Apps"] = "Applicazioni Collegate"; -$a->strings["Client key starts with"] = "Chiave del client inizia con"; -$a->strings["No name"] = "Nessun nome"; -$a->strings["Remove authorization"] = "Rimuovi l'autorizzazione"; -$a->strings["No Plugin settings configured"] = "Nessun plugin ha impostazioni modificabili"; -$a->strings["Plugin Settings"] = "Impostazioni plugin"; -$a->strings["Off"] = "Spento"; -$a->strings["On"] = "Acceso"; -$a->strings["Additional Features"] = "Funzionalità aggiuntive"; -$a->strings["Built-in support for %s connectivity is %s"] = "Il supporto integrato per la connettività con %s è %s"; -$a->strings["Diaspora"] = "Diaspora"; -$a->strings["enabled"] = "abilitato"; -$a->strings["disabled"] = "disabilitato"; -$a->strings["StatusNet"] = "StatusNet"; -$a->strings["Email access is disabled on this site."] = "L'accesso email è disabilitato su questo sito."; -$a->strings["Email/Mailbox Setup"] = "Impostazioni email"; -$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Se vuoi comunicare con i contatti email usando questo servizio, specifica come collegarti alla tua casella di posta. (opzionale)"; -$a->strings["Last successful email check:"] = "Ultimo controllo email eseguito con successo:"; -$a->strings["IMAP server name:"] = "Nome server IMAP:"; -$a->strings["IMAP port:"] = "Porta IMAP:"; -$a->strings["Security:"] = "Sicurezza:"; -$a->strings["None"] = "Nessuna"; -$a->strings["Email login name:"] = "Nome utente email:"; -$a->strings["Email password:"] = "Password email:"; -$a->strings["Reply-to address:"] = "Indirizzo di risposta:"; -$a->strings["Send public posts to all email contacts:"] = "Invia i messaggi pubblici ai contatti email:"; -$a->strings["Action after import:"] = "Azione post importazione:"; -$a->strings["Mark as seen"] = "Segna come letto"; -$a->strings["Move to folder"] = "Sposta nella cartella"; -$a->strings["Move to folder:"] = "Sposta nella cartella:"; -$a->strings["Display Settings"] = "Impostazioni Grafiche"; -$a->strings["Display Theme:"] = "Tema:"; -$a->strings["Mobile Theme:"] = "Tema mobile:"; -$a->strings["Update browser every xx seconds"] = "Aggiorna il browser ogni x secondi"; -$a->strings["Minimum of 10 seconds, no maximum"] = "Minimo 10 secondi, nessun limite massimo"; -$a->strings["Number of items to display per page:"] = "Numero di elementi da mostrare per pagina:"; -$a->strings["Maximum of 100 items"] = "Massimo 100 voci"; -$a->strings["Number of items to display per page when viewed from mobile device:"] = "Numero di voci da visualizzare per pagina quando si utilizza un dispositivo mobile:"; -$a->strings["Don't show emoticons"] = "Non mostrare le emoticons"; -$a->strings["Don't show notices"] = "Non mostrare gli avvisi"; -$a->strings["Infinite scroll"] = "Scroll infinito"; -$a->strings["Automatic updates only at the top of the network page"] = "Aggiornamenti automatici solo in cima alla pagina \"rete\""; -$a->strings["User Types"] = "Tipi di Utenti"; -$a->strings["Community Types"] = "Tipi di Comunità"; -$a->strings["Normal Account Page"] = "Pagina Account Normale"; -$a->strings["This account is a normal personal profile"] = "Questo account è un normale profilo personale"; -$a->strings["Soapbox Page"] = "Pagina Sandbox"; -$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Chi richiede la connessione/amicizia sarà accettato automaticamente come fan che potrà solamente leggere la bacheca"; -$a->strings["Community Forum/Celebrity Account"] = "Account Celebrità/Forum comunitario"; -$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Chi richiede la connessione/amicizia sarà accettato automaticamente come fan che potrà leggere e scrivere sulla bacheca"; -$a->strings["Automatic Friend Page"] = "Pagina con amicizia automatica"; -$a->strings["Automatically approve all connection/friend requests as friends"] = "Chi richiede la connessione/amicizia sarà accettato automaticamente come amico"; -$a->strings["Private Forum [Experimental]"] = "Forum privato [sperimentale]"; -$a->strings["Private forum - approved members only"] = "Forum privato - solo membri approvati"; -$a->strings["OpenID:"] = "OpenID:"; -$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Opzionale) Consente di loggarti in questo account con questo OpenID"; -$a->strings["Publish your default profile in your local site directory?"] = "Pubblica il tuo profilo predefinito nell'elenco locale del sito"; -$a->strings["No"] = "No"; -$a->strings["Publish your default profile in the global social directory?"] = "Pubblica il tuo profilo predefinito nell'elenco sociale globale"; -$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Nascondi la lista dei tuoi contatti/amici dai visitatori del tuo profilo predefinito"; -$a->strings["Hide your profile details from unknown viewers?"] = "Nascondi i dettagli del tuo profilo ai visitatori sconosciuti?"; -$a->strings["If enabled, posting public messages to Diaspora and other networks isn't possible."] = ""; -$a->strings["Allow friends to post to your profile page?"] = "Permetti agli amici di scrivere sulla tua pagina profilo?"; -$a->strings["Allow friends to tag your posts?"] = "Permetti agli amici di taggare i tuoi messaggi?"; -$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Ci permetti di suggerirti come potenziale amico ai nuovi membri?"; -$a->strings["Permit unknown people to send you private mail?"] = "Permetti a utenti sconosciuti di inviarti messaggi privati?"; -$a->strings["Profile is not published."] = "Il profilo non è pubblicato."; -$a->strings["Your Identity Address is"] = "L'indirizzo della tua identità è"; -$a->strings["Automatically expire posts after this many days:"] = "Fai scadere i post automaticamente dopo x giorni:"; -$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Se lasciato vuoto, i messaggi non verranno cancellati."; -$a->strings["Advanced expiration settings"] = "Impostazioni avanzate di scandenza"; -$a->strings["Advanced Expiration"] = "Scadenza avanzata"; -$a->strings["Expire posts:"] = "Fai scadere i post:"; -$a->strings["Expire personal notes:"] = "Fai scadere le Note personali:"; -$a->strings["Expire starred posts:"] = "Fai scadere i post Speciali:"; -$a->strings["Expire photos:"] = "Fai scadere le foto:"; -$a->strings["Only expire posts by others:"] = "Fai scadere solo i post degli altri:"; -$a->strings["Account Settings"] = "Impostazioni account"; -$a->strings["Password Settings"] = "Impostazioni password"; -$a->strings["New Password:"] = "Nuova password:"; -$a->strings["Confirm:"] = "Conferma:"; -$a->strings["Leave password fields blank unless changing"] = "Lascia questi campi in bianco per non effettuare variazioni alla password"; -$a->strings["Current Password:"] = "Password Attuale:"; -$a->strings["Your current password to confirm the changes"] = "La tua password attuale per confermare le modifiche"; -$a->strings["Password:"] = "Password:"; -$a->strings["Basic Settings"] = "Impostazioni base"; -$a->strings["Full Name:"] = "Nome completo:"; -$a->strings["Email Address:"] = "Indirizzo Email:"; -$a->strings["Your Timezone:"] = "Il tuo fuso orario:"; -$a->strings["Default Post Location:"] = "Località predefinita:"; -$a->strings["Use Browser Location:"] = "Usa la località rilevata dal browser:"; -$a->strings["Security and Privacy Settings"] = "Impostazioni di sicurezza e privacy"; -$a->strings["Maximum Friend Requests/Day:"] = "Numero massimo di richieste di amicizia al giorno:"; -$a->strings["(to prevent spam abuse)"] = "(per prevenire lo spam)"; -$a->strings["Default Post Permissions"] = "Permessi predefiniti per i messaggi"; -$a->strings["(click to open/close)"] = "(clicca per aprire/chiudere)"; -$a->strings["Show to Groups"] = "Mostra ai gruppi"; -$a->strings["Show to Contacts"] = "Mostra ai contatti"; -$a->strings["Default Private Post"] = "Default Post Privato"; -$a->strings["Default Public Post"] = "Default Post Pubblico"; -$a->strings["Default Permissions for New Posts"] = "Permessi predefiniti per i nuovi post"; -$a->strings["Maximum private messages per day from unknown people:"] = "Numero massimo di messaggi privati da utenti sconosciuti per giorno:"; -$a->strings["Notification Settings"] = "Impostazioni notifiche"; -$a->strings["By default post a status message when:"] = "Invia un messaggio di stato quando:"; -$a->strings["accepting a friend request"] = "accetti una richiesta di amicizia"; -$a->strings["joining a forum/community"] = "ti unisci a un forum/comunità"; -$a->strings["making an interesting profile change"] = "fai un interessante modifica al profilo"; -$a->strings["Send a notification email when:"] = "Invia una mail di notifica quando:"; -$a->strings["You receive an introduction"] = "Ricevi una presentazione"; -$a->strings["Your introductions are confirmed"] = "Le tue presentazioni sono confermate"; -$a->strings["Someone writes on your profile wall"] = "Qualcuno scrive sulla bacheca del tuo profilo"; -$a->strings["Someone writes a followup comment"] = "Qualcuno scrive un commento a un tuo messaggio"; -$a->strings["You receive a private message"] = "Ricevi un messaggio privato"; -$a->strings["You receive a friend suggestion"] = "Hai ricevuto un suggerimento di amicizia"; -$a->strings["You are tagged in a post"] = "Sei stato taggato in un post"; -$a->strings["You are poked/prodded/etc. in a post"] = "Sei 'toccato'/'spronato'/ecc. in un post"; -$a->strings["Text-only notification emails"] = ""; -$a->strings["Send text only notification emails, without the html part"] = ""; -$a->strings["Advanced Account/Page Type Settings"] = "Impostazioni avanzate Account/Tipo di pagina"; -$a->strings["Change the behaviour of this account for special situations"] = "Modifica il comportamento di questo account in situazioni speciali"; -$a->strings["Relocate"] = "Trasloca"; -$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."] = "Se hai spostato questo profilo da un'altro server, e alcuni dei tuoi contatti non ricevono i tuoi aggiornamenti, prova a premere questo bottone."; -$a->strings["Resend relocate message to contacts"] = "Reinvia il messaggio di trasloco"; -$a->strings["This introduction has already been accepted."] = "Questa presentazione è già stata accettata."; -$a->strings["Profile location is not valid or does not contain profile information."] = "L'indirizzo del profilo non è valido o non contiene un profilo."; -$a->strings["Warning: profile location has no identifiable owner name."] = "Attenzione: l'indirizzo del profilo non riporta il nome del proprietario."; -$a->strings["Warning: profile location has no profile photo."] = "Attenzione: l'indirizzo del profilo non ha una foto."; -$a->strings["%d required parameter was not found at the given location"] = array( - 0 => "%d parametro richiesto non è stato trovato all'indirizzo dato", - 1 => "%d parametri richiesti non sono stati trovati all'indirizzo dato", -); -$a->strings["Introduction complete."] = "Presentazione completa."; -$a->strings["Unrecoverable protocol error."] = "Errore di comunicazione."; -$a->strings["Profile unavailable."] = "Profilo non disponibile."; -$a->strings["%s has received too many connection requests today."] = "%s ha ricevuto troppe richieste di connessione per oggi."; -$a->strings["Spam protection measures have been invoked."] = "Sono state attivate le misure di protezione contro lo spam."; -$a->strings["Friends are advised to please try again in 24 hours."] = "Gli amici sono pregati di riprovare tra 24 ore."; -$a->strings["Invalid locator"] = "Invalid locator"; -$a->strings["Invalid email address."] = "Indirizzo email non valido."; -$a->strings["This account has not been configured for email. Request failed."] = "Questo account non è stato configurato per l'email. Richiesta fallita."; -$a->strings["Unable to resolve your name at the provided location."] = "Impossibile risolvere il tuo nome nella posizione indicata."; -$a->strings["You have already introduced yourself here."] = "Ti sei già presentato qui."; -$a->strings["Apparently you are already friends with %s."] = "Pare che tu e %s siate già amici."; -$a->strings["Invalid profile URL."] = "Indirizzo profilo non valido."; -$a->strings["Disallowed profile URL."] = "Indirizzo profilo non permesso."; -$a->strings["Your introduction has been sent."] = "La tua presentazione è stata inviata."; -$a->strings["Please login to confirm introduction."] = "Accedi per confermare la presentazione."; -$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Non hai fatto accesso con l'identità corretta. Accedi a questo profilo."; -$a->strings["Hide this contact"] = "Nascondi questo contatto"; -$a->strings["Welcome home %s."] = "Bentornato a casa %s."; -$a->strings["Please confirm your introduction/connection request to %s."] = "Conferma la tua richiesta di connessione con %s."; -$a->strings["Confirm"] = "Conferma"; -$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Inserisci il tuo 'Indirizzo Identità' da uno dei seguenti network supportati:"; -$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = "Se non sei un membro del web sociale libero, segui questo link per trovare un sito Friendica pubblico e unisciti a noi oggi"; -$a->strings["Friend/Connection Request"] = "Richieste di amicizia/connessione"; -$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Esempi: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; -$a->strings["Please answer the following:"] = "Rispondi:"; -$a->strings["Does %s know you?"] = "%s ti conosce?"; -$a->strings["Add a personal note:"] = "Aggiungi una nota personale:"; -$a->strings["Friendica"] = "Friendica"; -$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."] = " - per favore non usare questa form. Invece, inserisci %s nella tua barra di ricerca su Diaspora."; -$a->strings["Your Identity Address:"] = "L'indirizzo della tua identità:"; -$a->strings["Submit Request"] = "Invia richiesta"; -$a->strings["Registration successful. Please check your email for further instructions."] = "Registrazione completata. Controlla la tua mail per ulteriori informazioni."; -$a->strings["Failed to send email message. Here your accout details:
    login: %s
    password: %s

    You can change your password after login."] = ""; -$a->strings["Your registration can not be processed."] = "La tua registrazione non puo' essere elaborata."; -$a->strings["Your registration is pending approval by the site owner."] = "La tua richiesta è in attesa di approvazione da parte del prorietario del sito."; -$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Questo sito ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani."; -$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Se vuoi, puoi riempire questo modulo tramite OpenID, inserendo il tuo OpenID e cliccando 'Registra'."; -$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Se non hai familiarità con OpenID, lascia il campo vuoto e riempi il resto della maschera."; -$a->strings["Your OpenID (optional): "] = "Il tuo OpenID (opzionale): "; -$a->strings["Include your profile in member directory?"] = "Includi il tuo profilo nell'elenco pubblico?"; -$a->strings["Membership on this site is by invitation only."] = "La registrazione su questo sito è solo su invito."; -$a->strings["Your invitation ID: "] = "L'ID del tuo invito:"; -$a->strings["Your Full Name (e.g. Joe Smith): "] = "Il tuo nome completo (es. Mario Rossi): "; -$a->strings["Your Email Address: "] = "Il tuo indirizzo email: "; -$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Scegli un nome utente. Deve cominciare con una lettera. L'indirizzo del tuo profilo sarà 'soprannome@\$sitename'."; -$a->strings["Choose a nickname: "] = "Scegli un nome utente: "; -$a->strings["Register"] = "Registrati"; -$a->strings["Import"] = "Importa"; -$a->strings["Import your profile to this friendica instance"] = "Importa il tuo profilo in questo server friendica"; -$a->strings["System down for maintenance"] = "Sistema in manutenzione"; -$a->strings["Search"] = "Cerca"; -$a->strings["Global Directory"] = "Elenco globale"; +$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Questo puo' accadere occasionalmente se la richiesta di contatto era stata inviata da entrambe le persone e già approvata."; +$a->strings["Response from remote site was not understood."] = "Errore di comunicazione con l'altro sito."; +$a->strings["Unexpected response from remote site: "] = "La risposta dell'altro sito non può essere gestita: "; +$a->strings["Confirmation completed successfully."] = "Conferma completata con successo."; +$a->strings["Remote site reported: "] = "Il sito remoto riporta: "; +$a->strings["Temporary failure. Please wait and try again."] = "Problema temporaneo. Attendi e riprova."; +$a->strings["Introduction failed or was revoked."] = "La presentazione ha generato un errore o è stata revocata."; +$a->strings["Unable to set contact photo."] = "Impossibile impostare la foto del contatto."; +$a->strings["No user record found for '%s' "] = "Nessun utente trovato '%s'"; +$a->strings["Our site encryption key is apparently messed up."] = "La nostra chiave di criptazione del sito sembra essere corrotta."; +$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "E' stato fornito un indirizzo vuoto o non possiamo decrittare l'indirizzo."; +$a->strings["Contact record was not found for you on our site."] = "Il contatto non è stato trovato sul nostro sito."; +$a->strings["Site public key not available in contact record for URL %s."] = "La chiave pubblica del sito non è disponibile per l'URL %s"; +$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "L'ID fornito dal tuo sistema è duplicato sul nostro sistema. Se riprovi dovrebbe funzionare."; +$a->strings["Unable to set your contact credentials on our system."] = "Impossibile impostare le credenziali del tuo contatto sul nostro sistema."; +$a->strings["Unable to update your contact profile details on our system"] = "Impossibile aggiornare i dettagli del tuo contatto sul nostro sistema"; +$a->strings["%1\$s has joined %2\$s"] = "%1\$s si è unito a %2\$s"; +$a->strings["Unable to locate original post."] = "Impossibile trovare il messaggio originale."; +$a->strings["Empty post discarded."] = "Messaggio vuoto scartato."; +$a->strings["System error. Post not saved."] = "Errore di sistema. Messaggio non salvato."; +$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Questo messaggio ti è stato inviato da %s, un membro del social network Friendica."; +$a->strings["You may visit them online at %s"] = "Puoi visitarli online su %s"; +$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Contatta il mittente rispondendo a questo post se non vuoi ricevere questi messaggi."; +$a->strings["%s posted an update."] = "%s ha inviato un aggiornamento."; +$a->strings["Image uploaded but image cropping failed."] = "L'immagine è stata caricata, ma il non è stato possibile ritagliarla."; +$a->strings["Image size reduction [%s] failed."] = "Il ridimensionamento del'immagine [%s] è fallito."; +$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Ricarica la pagina con shift+F5 o cancella la cache del browser se la nuova foto non viene mostrata immediatamente."; +$a->strings["Unable to process image"] = "Impossibile elaborare l'immagine"; +$a->strings["Upload File:"] = "Carica un file:"; +$a->strings["Select a profile:"] = "Seleziona un profilo:"; +$a->strings["Upload"] = "Carica"; +$a->strings["skip this step"] = "salta questo passaggio"; +$a->strings["select a photo from your photo albums"] = "seleziona una foto dai tuoi album"; +$a->strings["Crop Image"] = "Ritaglia immagine"; +$a->strings["Please adjust the image cropping for optimum viewing."] = "Ritaglia l'imagine per una visualizzazione migliore."; +$a->strings["Done Editing"] = "Finito"; +$a->strings["Image uploaded successfully."] = "Immagine caricata con successo."; +$a->strings["Friends of %s"] = "Amici di %s"; +$a->strings["No friends to display."] = "Nessun amico da visualizzare."; $a->strings["Find on this site"] = "Cerca nel sito"; $a->strings["Site Directory"] = "Elenco del sito"; -$a->strings["Age: "] = "Età : "; $a->strings["Gender: "] = "Genere:"; -$a->strings["Gender:"] = "Genere:"; -$a->strings["Status:"] = "Stato:"; -$a->strings["Homepage:"] = "Homepage:"; -$a->strings["About:"] = "Informazioni:"; $a->strings["No entries (some entries may be hidden)."] = "Nessuna voce (qualche voce potrebbe essere nascosta)."; -$a->strings["No potential page delegates located."] = "Nessun potenziale delegato per la pagina è stato trovato."; -$a->strings["Delegate Page Management"] = "Gestione delegati per la pagina"; -$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."] = "I Delegati sono in grando di gestire tutti gli aspetti di questa pagina, tranne per i settaggi di base dell'account. Non delegare il tuo account personale a nessuno di cui non ti fidi ciecamente."; -$a->strings["Existing Page Managers"] = "Gestori Pagina Esistenti"; -$a->strings["Existing Page Delegates"] = "Delegati Pagina Esistenti"; -$a->strings["Potential Delegates"] = "Delegati Potenziali"; -$a->strings["Add"] = "Aggiungi"; -$a->strings["No entries."] = "Nessun articolo."; -$a->strings["Common Friends"] = "Amici in comune"; -$a->strings["No contacts in common."] = "Nessun contatto in comune."; -$a->strings["Export account"] = "Esporta account"; -$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."] = "Esporta le informazioni del tuo account e dei contatti. Usa questa funzione per fare un backup del tuo account o per spostarlo in un altro server."; -$a->strings["Export all"] = "Esporta tutto"; -$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)"] = "Esporta le informazioni del tuo account, i tuoi contatti e tutti i tuoi elementi in json. Puo' diventare un file veramente molto grosso e metterci un sacco di tempo. Usa questa funzione per fare un backup completo del tuo account (le foto non sono esportate)"; -$a->strings["%1\$s is currently %2\$s"] = "%1\$s al momento è %2\$s"; -$a->strings["Mood"] = "Umore"; -$a->strings["Set your current mood and tell your friends"] = "Condividi il tuo umore con i tuoi amici"; -$a->strings["Do you really want to delete this suggestion?"] = "Vuoi veramente cancellare questo suggerimento?"; -$a->strings["Friend Suggestions"] = "Contatti suggeriti"; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Nessun suggerimento disponibile. Se questo è un sito nuovo, riprova tra 24 ore."; -$a->strings["Ignore/Hide"] = "Ignora / Nascondi"; -$a->strings["Profile deleted."] = "Profilo elminato."; -$a->strings["Profile-"] = "Profilo-"; -$a->strings["New profile created."] = "Il nuovo profilo è stato creato."; -$a->strings["Profile unavailable to clone."] = "Impossibile duplicare il profilo."; -$a->strings["Profile Name is required."] = "Il nome profilo è obbligatorio ."; -$a->strings["Marital Status"] = "Stato civile"; -$a->strings["Romantic Partner"] = "Partner romantico"; -$a->strings["Likes"] = "Mi piace"; -$a->strings["Dislikes"] = "Non mi piace"; -$a->strings["Work/Employment"] = "Lavoro/Impiego"; -$a->strings["Religion"] = "Religione"; -$a->strings["Political Views"] = "Orientamento Politico"; -$a->strings["Gender"] = "Sesso"; -$a->strings["Sexual Preference"] = "Preferenza sessuale"; -$a->strings["Homepage"] = "Homepage"; -$a->strings["Interests"] = "Interessi"; -$a->strings["Address"] = "Indirizzo"; -$a->strings["Location"] = "Posizione"; -$a->strings["Profile updated."] = "Profilo aggiornato."; -$a->strings[" and "] = "e "; -$a->strings["public profile"] = "profilo pubblico"; -$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s ha cambiato %2\$s in “%3\$s”"; -$a->strings[" - Visit %1\$s's %2\$s"] = "- Visita %2\$s di %1\$s"; -$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s ha un %2\$s aggiornato. Ha cambiato %3\$s"; -$a->strings["Hide contacts and friends:"] = "Nascondi contatti:"; -$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Nascondi la tua lista di contatti/amici ai visitatori di questo profilo?"; -$a->strings["Edit Profile Details"] = "Modifica i dettagli del profilo"; -$a->strings["Change Profile Photo"] = "Cambia la foto del profilo"; -$a->strings["View this profile"] = "Visualizza questo profilo"; -$a->strings["Create a new profile using these settings"] = "Crea un nuovo profilo usando queste impostazioni"; -$a->strings["Clone this profile"] = "Clona questo profilo"; -$a->strings["Delete this profile"] = "Elimina questo profilo"; -$a->strings["Basic information"] = "Informazioni di base"; -$a->strings["Profile picture"] = "Immagine del profilo"; -$a->strings["Preferences"] = "Preferenze"; -$a->strings["Status information"] = "Informazioni stato"; -$a->strings["Additional information"] = "Informazioni aggiuntive"; -$a->strings["Profile Name:"] = "Nome del profilo:"; -$a->strings["Your Full Name:"] = "Il tuo nome completo:"; -$a->strings["Title/Description:"] = "Breve descrizione (es. titolo, posizione, altro):"; -$a->strings["Your Gender:"] = "Il tuo sesso:"; -$a->strings["Birthday (%s):"] = "Compleanno (%s)"; -$a->strings["Street Address:"] = "Indirizzo (via/piazza):"; -$a->strings["Locality/City:"] = "Località:"; -$a->strings["Postal/Zip Code:"] = "CAP:"; -$a->strings["Country:"] = "Nazione:"; -$a->strings["Region/State:"] = "Regione/Stato:"; -$a->strings[" Marital Status:"] = " Stato sentimentale:"; -$a->strings["Who: (if applicable)"] = "Con chi: (se possibile)"; -$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Esempio: cathy123, Cathy Williams, cathy@example.com"; -$a->strings["Since [date]:"] = "Dal [data]:"; -$a->strings["Sexual Preference:"] = "Preferenze sessuali:"; -$a->strings["Homepage URL:"] = "Homepage:"; -$a->strings["Hometown:"] = "Paese natale:"; -$a->strings["Political Views:"] = "Orientamento politico:"; -$a->strings["Religious Views:"] = "Orientamento religioso:"; -$a->strings["Public Keywords:"] = "Parole chiave visibili a tutti:"; -$a->strings["Private Keywords:"] = "Parole chiave private:"; -$a->strings["Likes:"] = "Mi piace:"; -$a->strings["Dislikes:"] = "Non mi piace:"; -$a->strings["Example: fishing photography software"] = "Esempio: pesca fotografia programmazione"; -$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(E' utilizzato per suggerire potenziali amici, può essere visto da altri)"; -$a->strings["(Used for searching profiles, never shown to others)"] = "(Usato per cercare tra i profili, non è mai visibile agli altri)"; -$a->strings["Tell us about yourself..."] = "Raccontaci di te..."; -$a->strings["Hobbies/Interests"] = "Hobby/interessi"; -$a->strings["Contact information and Social Networks"] = "Informazioni su contatti e social network"; -$a->strings["Musical interests"] = "Interessi musicali"; -$a->strings["Books, literature"] = "Libri, letteratura"; -$a->strings["Television"] = "Televisione"; -$a->strings["Film/dance/culture/entertainment"] = "Film/danza/cultura/intrattenimento"; -$a->strings["Love/romance"] = "Amore"; -$a->strings["Work/employment"] = "Lavoro/impiego"; -$a->strings["School/education"] = "Scuola/educazione"; -$a->strings["This is your public profile.
    It may be visible to anybody using the internet."] = "Questo è il tuo profilo publico.
    Potrebbe essere visto da chiunque attraverso internet."; -$a->strings["Edit/Manage Profiles"] = "Modifica / Gestisci profili"; -$a->strings["Change profile photo"] = "Cambia la foto del profilo"; -$a->strings["Create New Profile"] = "Crea un nuovo profilo"; -$a->strings["Profile Image"] = "Immagine del Profilo"; -$a->strings["visible to everybody"] = "visibile a tutti"; -$a->strings["Edit visibility"] = "Modifica visibilità"; -$a->strings["Item not found"] = "Oggetto non trovato"; -$a->strings["Edit post"] = "Modifica messaggio"; -$a->strings["upload photo"] = "carica foto"; -$a->strings["Attach file"] = "Allega file"; -$a->strings["attach file"] = "allega file"; -$a->strings["web link"] = "link web"; -$a->strings["Insert video link"] = "Inserire collegamento video"; -$a->strings["video link"] = "link video"; -$a->strings["Insert audio link"] = "Inserisci collegamento audio"; -$a->strings["audio link"] = "link audio"; -$a->strings["Set your location"] = "La tua posizione"; -$a->strings["set location"] = "posizione"; -$a->strings["Clear browser location"] = "Rimuovi la localizzazione data dal browser"; -$a->strings["clear location"] = "canc. pos."; -$a->strings["Permission settings"] = "Impostazioni permessi"; -$a->strings["CC: email addresses"] = "CC: indirizzi email"; -$a->strings["Public post"] = "Messaggio pubblico"; -$a->strings["Set title"] = "Scegli un titolo"; -$a->strings["Categories (comma-separated list)"] = "Categorie (lista separata da virgola)"; -$a->strings["Example: bob@example.com, mary@example.com"] = "Esempio: bob@example.com, mary@example.com"; -$a->strings["This is Friendica, version"] = "Questo è Friendica, versione"; -$a->strings["running at web location"] = "in esecuzione all'indirizzo web"; -$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Visita Friendica.com per saperne di più sul progetto Friendica."; -$a->strings["Bug reports and issues: please visit"] = "Segnalazioni di bug e problemi: visita"; -$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Suggerimenti, lodi, donazioni, ecc - e-mail a \"Info\" at Friendica punto com"; -$a->strings["Installed plugins/addons/apps:"] = "Plugin/addon/applicazioni instalate"; -$a->strings["No installed plugins/addons/apps"] = "Nessun plugin/addons/applicazione installata"; -$a->strings["Authorize application connection"] = "Autorizza la connessione dell'applicazione"; -$a->strings["Return to your app and insert this Securty Code:"] = "Torna alla tua applicazione e inserisci questo codice di sicurezza:"; -$a->strings["Please login to continue."] = "Effettua il login per continuare."; -$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vuoi autorizzare questa applicazione per accedere ai messaggi e ai contatti, e / o creare nuovi messaggi per te?"; -$a->strings["Remote privacy information not available."] = "Informazioni remote sulla privacy non disponibili."; -$a->strings["Visible to:"] = "Visibile a:"; -$a->strings["Personal Notes"] = "Note personali"; -$a->strings["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i"; $a->strings["Time Conversion"] = "Conversione Ora"; $a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica fornisce questo servizio per la condivisione di eventi con altre reti e amici in fusi orari sconosciuti."; $a->strings["UTC time: %s"] = "Ora UTC: %s"; $a->strings["Current timezone: %s"] = "Fuso orario corrente: %s"; $a->strings["Converted localtime: %s"] = "Ora locale convertita: %s"; $a->strings["Please select your timezone:"] = "Selezionare il tuo fuso orario:"; -$a->strings["Poke/Prod"] = "Tocca/Pungola"; -$a->strings["poke, prod or do other things to somebody"] = "tocca, pungola o fai altre cose a qualcuno"; -$a->strings["Recipient"] = "Destinatario"; -$a->strings["Choose what you wish to do to recipient"] = "Scegli cosa vuoi fare al destinatario"; -$a->strings["Make this post private"] = "Rendi questo post privato"; -$a->strings["Total invitation limit exceeded."] = "Limite totale degli inviti superato."; -$a->strings["%s : Not a valid email address."] = "%s: non è un indirizzo email valido."; -$a->strings["Please join us on Friendica"] = "Unisiciti a noi su Friendica"; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limite degli inviti superato. Contatta l'amministratore del tuo sito."; -$a->strings["%s : Message delivery failed."] = "%s: la consegna del messaggio fallita."; -$a->strings["%d message sent."] = array( - 0 => "%d messaggio inviato.", - 1 => "%d messaggi inviati.", -); -$a->strings["You have no more invitations available"] = "Non hai altri inviti disponibili"; -$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Visita %s per una lista di siti pubblici a cui puoi iscriverti. I membri Friendica su altri siti possono collegarsi uno con l'altro, come con membri di molti altri social network."; -$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Per accettare questo invito, visita e resitrati su %s o su un'altro sito web Friendica aperto al pubblico."; -$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "I siti Friendica son tutti collegati tra loro per creare una grossa rete sociale rispettosa della privacy, posseduta e controllata dai suoi membri. I siti Friendica possono anche collegarsi a molti altri social network tradizionali. Vai su %s per una lista di siti Friendica alternativi a cui puoi iscriverti."; -$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Ci scusiamo, questo sistema non è configurato per collegarsi con altri siti pubblici o per invitare membri."; -$a->strings["Send invitations"] = "Invia inviti"; -$a->strings["Enter email addresses, one per line:"] = "Inserisci gli indirizzi email, uno per riga:"; -$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Sei cordialmente invitato a unirti a me ed ad altri amici su Friendica, e ad aiutarci a creare una rete sociale migliore."; -$a->strings["You will need to supply this invitation code: \$invite_code"] = "Sarà necessario fornire questo codice invito: \$invite_code"; -$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Una volta registrato, connettiti con me dal mio profilo:"; -$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Per maggiori informazioni sul progetto Friendica e perchè pensiamo sia importante, visita http://friendica.com"; -$a->strings["Photo Albums"] = "Album foto"; -$a->strings["Contact Photos"] = "Foto dei contatti"; -$a->strings["Upload New Photos"] = "Carica nuove foto"; -$a->strings["Contact information unavailable"] = "I dati di questo contatto non sono disponibili"; -$a->strings["Album not found."] = "Album non trovato."; -$a->strings["Delete Album"] = "Rimuovi album"; -$a->strings["Do you really want to delete this photo album and all its photos?"] = "Vuoi davvero cancellare questo album e tutte le sue foto?"; -$a->strings["Delete Photo"] = "Rimuovi foto"; -$a->strings["Do you really want to delete this photo?"] = "Vuoi veramente cancellare questa foto?"; -$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s è stato taggato in %2\$s da %3\$s"; -$a->strings["a photo"] = "una foto"; -$a->strings["Image exceeds size limit of "] = "L'immagine supera il limite di"; -$a->strings["Image file is empty."] = "Il file dell'immagine è vuoto."; -$a->strings["No photos selected"] = "Nessuna foto selezionata"; -$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Hai usato %1$.2f MBytes su %2$.2f disponibili."; -$a->strings["Upload Photos"] = "Carica foto"; -$a->strings["New album name: "] = "Nome nuovo album: "; -$a->strings["or existing album name: "] = "o nome di un album esistente: "; -$a->strings["Do not show a status post for this upload"] = "Non creare un post per questo upload"; -$a->strings["Permissions"] = "Permessi"; -$a->strings["Private Photo"] = "Foto privata"; -$a->strings["Public Photo"] = "Foto pubblica"; -$a->strings["Edit Album"] = "Modifica album"; -$a->strings["Show Newest First"] = "Mostra nuove foto per prime"; -$a->strings["Show Oldest First"] = "Mostra vecchie foto per prime"; -$a->strings["View Photo"] = "Vedi foto"; -$a->strings["Permission denied. Access to this item may be restricted."] = "Permesso negato. L'accesso a questo elemento può essere limitato."; -$a->strings["Photo not available"] = "Foto non disponibile"; -$a->strings["View photo"] = "Vedi foto"; -$a->strings["Edit photo"] = "Modifica foto"; -$a->strings["Use as profile photo"] = "Usa come foto del profilo"; -$a->strings["View Full Size"] = "Vedi dimensione intera"; -$a->strings["Tags: "] = "Tag: "; -$a->strings["[Remove any tag]"] = "[Rimuovi tutti i tag]"; -$a->strings["Rotate CW (right)"] = "Ruota a destra"; -$a->strings["Rotate CCW (left)"] = "Ruota a sinistra"; -$a->strings["New album name"] = "Nuovo nome dell'album"; -$a->strings["Caption"] = "Titolo"; -$a->strings["Add a Tag"] = "Aggiungi tag"; -$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"; -$a->strings["Private photo"] = "Foto privata"; -$a->strings["Public photo"] = "Foto pubblica"; -$a->strings["Share"] = "Condividi"; -$a->strings["Recent Photos"] = "Foto recenti"; -$a->strings["Account approved."] = "Account approvato."; -$a->strings["Registration revoked for %s"] = "Registrazione revocata per %s"; -$a->strings["Please login."] = "Accedi."; -$a->strings["Move account"] = "Muovi account"; -$a->strings["You can import an account from another Friendica server."] = "Puoi importare un account da un altro server Friendica."; -$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."] = "Devi esportare il tuo account dal vecchio server e caricarlo qui. Noi ricreeremo il tuo vecchio account qui, con tutti i tuoi contatti. Proveremo anche a informare i tuoi amici che ti sei spostato qui."; -$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Questa funzione è sperimentale. Non possiamo importare i contatti dalla rete OStatus (status.net/identi.ca) o da Diaspora"; -$a->strings["Account file"] = "File account"; -$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Per esportare il tuo account, vai su \"Impostazioni -> Esporta i tuoi dati personali\" e seleziona \"Esporta account\""; -$a->strings["Item not available."] = "Oggetto non disponibile."; -$a->strings["Item was not found."] = "Oggetto non trovato."; -$a->strings["Delete this item?"] = "Cancellare questo elemento?"; -$a->strings["show fewer"] = "mostra di meno"; -$a->strings["Update %s failed. See error logs."] = "aggiornamento %s fallito. Guarda i log di errore."; -$a->strings["Create a New Account"] = "Crea un nuovo account"; -$a->strings["Logout"] = "Esci"; -$a->strings["Nickname or Email address: "] = "Nome utente o indirizzo email: "; -$a->strings["Password: "] = "Password: "; -$a->strings["Remember me"] = "Ricordati di me"; -$a->strings["Or login using OpenID: "] = "O entra con OpenID:"; -$a->strings["Forgot your password?"] = "Hai dimenticato la password?"; -$a->strings["Website Terms of Service"] = "Condizioni di servizio del sito web "; -$a->strings["terms of service"] = "condizioni del servizio"; -$a->strings["Website Privacy Policy"] = "Politiche di privacy del sito"; -$a->strings["privacy policy"] = "politiche di privacy"; -$a->strings["Requested account is not available."] = "L'account richiesto non è disponibile."; -$a->strings["Edit profile"] = "Modifica il profilo"; -$a->strings["Message"] = "Messaggio"; -$a->strings["Profiles"] = "Profili"; -$a->strings["Manage/edit profiles"] = "Gestisci/modifica i profili"; -$a->strings["Network:"] = "Rete:"; -$a->strings["g A l F d"] = "g A l d F"; -$a->strings["F d"] = "d F"; -$a->strings["[today]"] = "[oggi]"; -$a->strings["Birthday Reminders"] = "Promemoria compleanni"; -$a->strings["Birthdays this week:"] = "Compleanni questa settimana:"; -$a->strings["[No description]"] = "[Nessuna descrizione]"; -$a->strings["Event Reminders"] = "Promemoria"; -$a->strings["Events this week:"] = "Eventi di questa settimana:"; -$a->strings["Status"] = "Stato"; -$a->strings["Status Messages and Posts"] = "Messaggi di stato e post"; -$a->strings["Profile Details"] = "Dettagli del profilo"; -$a->strings["Videos"] = "Video"; -$a->strings["Events and Calendar"] = "Eventi e calendario"; -$a->strings["Only You Can See This"] = "Solo tu puoi vedere questo"; -$a->strings["This entry was edited"] = "Questa voce è stata modificata"; -$a->strings["ignore thread"] = "ignora la discussione"; -$a->strings["unignore thread"] = "non ignorare la discussione"; -$a->strings["toggle ignore status"] = "inverti stato \"Ignora\""; -$a->strings["ignored"] = "ignorato"; -$a->strings["Categories:"] = "Categorie:"; -$a->strings["Filed under:"] = "Archiviato in:"; -$a->strings["via"] = "via"; -$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."] = "\nGli sviluppatori di Friendica hanno rilasciato l'aggiornamento %s\nrecentemente, ma quando ho provato a installarlo, qualcosa è \nandato terribilmente storto.\nBisogna sistemare le cose e non posso farlo da solo.\nContatta uno sviluppatore se non puoi aiutarmi da solo. Il mio database potrebbe essere invalido."; -$a->strings["The error message is\n[pre]%s[/pre]"] = "Il messaggio di errore è\n[pre]%s[/pre]"; -$a->strings["Errors encountered creating database tables."] = "La creazione delle tabelle del database ha generato errori."; -$a->strings["Errors encountered performing database changes."] = "Riscontrati errori applicando le modifiche al database."; -$a->strings["Logged out."] = "Uscita effettuata."; -$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Abbiamo incontrato un problema mentre contattavamo il server OpenID che ci hai fornito. Controlla di averlo scritto giusto."; -$a->strings["The error message was:"] = "Il messaggio riportato era:"; -$a->strings["Add New Contact"] = "Aggiungi nuovo contatto"; -$a->strings["Enter address or web location"] = "Inserisci posizione o indirizzo web"; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Esempio: bob@example.com, http://example.com/barbara"; -$a->strings["%d invitation available"] = array( - 0 => "%d invito disponibile", - 1 => "%d inviti disponibili", -); -$a->strings["Find People"] = "Trova persone"; -$a->strings["Enter name or interest"] = "Inserisci un nome o un interesse"; -$a->strings["Connect/Follow"] = "Connetti/segui"; -$a->strings["Examples: Robert Morgenstein, Fishing"] = "Esempi: Mario Rossi, Pesca"; -$a->strings["Similar Interests"] = "Interessi simili"; -$a->strings["Random Profile"] = "Profilo causale"; -$a->strings["Invite Friends"] = "Invita amici"; -$a->strings["Networks"] = "Reti"; -$a->strings["All Networks"] = "Tutte le Reti"; -$a->strings["Saved Folders"] = "Cartelle Salvate"; -$a->strings["Everything"] = "Tutto"; -$a->strings["Categories"] = "Categorie"; -$a->strings["General Features"] = "Funzionalità generali"; -$a->strings["Multiple Profiles"] = "Profili multipli"; -$a->strings["Ability to create multiple profiles"] = "Possibilità di creare profili multipli"; -$a->strings["Post Composition Features"] = "Funzionalità di composizione dei post"; -$a->strings["Richtext Editor"] = "Editor visuale"; -$a->strings["Enable richtext editor"] = "Abilita l'editor visuale"; -$a->strings["Post Preview"] = "Anteprima dei post"; -$a->strings["Allow previewing posts and comments before publishing them"] = "Permetti di avere un'anteprima di messaggi e commenti prima di pubblicarli"; -$a->strings["Auto-mention Forums"] = "Auto-cita i Forum"; -$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = "Aggiunge o rimuove una citazione quando un forum è selezionato o deselezionato nella finestra dei permessi."; -$a->strings["Network Sidebar Widgets"] = "Widget della barra laterale nella pagina Rete"; -$a->strings["Search by Date"] = "Cerca per data"; -$a->strings["Ability to select posts by date ranges"] = "Permette di filtrare i post per data"; -$a->strings["Group Filter"] = "Filtra gruppi"; -$a->strings["Enable widget to display Network posts only from selected group"] = "Abilita il widget per filtrare i post solo per il gruppo selezionato"; -$a->strings["Network Filter"] = "Filtro reti"; -$a->strings["Enable widget to display Network posts only from selected network"] = "Abilita il widget per mostare i post solo per la rete selezionata"; -$a->strings["Save search terms for re-use"] = "Salva i termini cercati per riutilizzarli"; -$a->strings["Network Tabs"] = "Schede pagina Rete"; -$a->strings["Network Personal Tab"] = "Scheda Personali"; -$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Abilita la scheda per mostrare solo i post a cui hai partecipato"; -$a->strings["Network New Tab"] = "Scheda Nuovi"; -$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Abilita la scheda per mostrare solo i post nuovi (nelle ultime 12 ore)"; -$a->strings["Network Shared Links Tab"] = "Scheda Link Condivisi"; -$a->strings["Enable tab to display only Network posts with links in them"] = "Abilita la scheda per mostrare solo i post che contengono link"; -$a->strings["Post/Comment Tools"] = "Strumenti per messaggi/commenti"; -$a->strings["Multiple Deletion"] = "Eliminazione multipla"; -$a->strings["Select and delete multiple posts/comments at once"] = "Seleziona ed elimina vari messagi e commenti in una volta sola"; -$a->strings["Edit Sent Posts"] = "Modifica i post inviati"; -$a->strings["Edit and correct posts and comments after sending"] = "Modifica e correggi messaggi e commenti dopo averli inviati"; -$a->strings["Tagging"] = "Aggiunta tag"; -$a->strings["Ability to tag existing posts"] = "Permette di aggiungere tag ai post già esistenti"; -$a->strings["Post Categories"] = "Cateorie post"; -$a->strings["Add categories to your posts"] = "Aggiungi categorie ai tuoi post"; -$a->strings["Ability to file posts under folders"] = "Permette di archiviare i post in cartelle"; -$a->strings["Dislike Posts"] = "Non mi piace"; -$a->strings["Ability to dislike posts/comments"] = "Permetti di inviare \"non mi piace\" ai messaggi"; -$a->strings["Star Posts"] = "Post preferiti"; -$a->strings["Ability to mark special posts with a star indicator"] = "Permette di segnare i post preferiti con una stella"; -$a->strings["Mute Post Notifications"] = "Silenzia le notifiche di nuovi post"; -$a->strings["Ability to mute notifications for a thread"] = "Permette di silenziare le notifiche di nuovi post in una discussione"; -$a->strings["Connect URL missing."] = "URL di connessione mancante."; -$a->strings["This site is not configured to allow communications with other networks."] = "Questo sito non è configurato per permettere la comunicazione con altri network."; -$a->strings["No compatible communication protocols or feeds were discovered."] = "Non sono stati trovati protocolli di comunicazione o feed compatibili."; -$a->strings["The profile address specified does not provide adequate information."] = "L'indirizzo del profilo specificato non fornisce adeguate informazioni."; -$a->strings["An author or name was not found."] = "Non è stato trovato un nome o un autore"; -$a->strings["No browser URL could be matched to this address."] = "Nessun URL puo' essere associato a questo indirizzo."; -$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Impossibile l'indirizzo identità con un protocollo conosciuto o con un contatto email."; -$a->strings["Use mailto: in front of address to force email check."] = "Usa \"mailto:\" davanti all'indirizzo per forzare un controllo nelle email."; -$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "L'indirizzo del profilo specificato appartiene a un network che è stato disabilitato su questo sito."; -$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Profilo limitato. Questa persona non sarà in grado di ricevere notifiche personali da te."; -$a->strings["Unable to retrieve contact information."] = "Impossibile recuperare informazioni sul contatto."; -$a->strings["following"] = "segue"; -$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un gruppo eliminato con questo nome è stato ricreato. I permessi esistenti su un elemento possono essere applicati a questo gruppo e tutti i membri futuri. Se questo non è ciò che si intende, si prega di creare un altro gruppo con un nome diverso."; -$a->strings["Default privacy group for new contacts"] = "Gruppo predefinito per i nuovi contatti"; -$a->strings["Everybody"] = "Tutti"; -$a->strings["edit"] = "modifica"; -$a->strings["Edit group"] = "Modifica gruppo"; -$a->strings["Create a new group"] = "Crea un nuovo gruppo"; -$a->strings["Contacts not in any group"] = "Contatti in nessun gruppo."; -$a->strings["Miscellaneous"] = "Varie"; -$a->strings["year"] = "anno"; -$a->strings["month"] = "mese"; -$a->strings["day"] = "giorno"; -$a->strings["never"] = "mai"; -$a->strings["less than a second ago"] = "meno di un secondo fa"; -$a->strings["years"] = "anni"; -$a->strings["months"] = "mesi"; -$a->strings["week"] = "settimana"; -$a->strings["weeks"] = "settimane"; -$a->strings["days"] = "giorni"; -$a->strings["hour"] = "ora"; -$a->strings["hours"] = "ore"; -$a->strings["minute"] = "minuto"; -$a->strings["minutes"] = "minuti"; -$a->strings["second"] = "secondo"; -$a->strings["seconds"] = "secondi"; -$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s fa"; -$a->strings["%s's birthday"] = "Compleanno di %s"; -$a->strings["Happy Birthday %s"] = "Buon compleanno %s"; -$a->strings["Visible to everybody"] = "Visibile a tutti"; -$a->strings["show"] = "mostra"; -$a->strings["don't show"] = "non mostrare"; -$a->strings["[no subject]"] = "[nessun oggetto]"; -$a->strings["stopped following"] = "tolto dai seguiti"; -$a->strings["Poke"] = "Stuzzica"; -$a->strings["View Status"] = "Visualizza stato"; -$a->strings["View Profile"] = "Visualizza profilo"; -$a->strings["View Photos"] = "Visualizza foto"; -$a->strings["Network Posts"] = "Post della Rete"; -$a->strings["Edit Contact"] = "Modifica contatti"; -$a->strings["Drop Contact"] = "Rimuovi contatto"; -$a->strings["Send PM"] = "Invia messaggio privato"; -$a->strings["Welcome "] = "Ciao"; -$a->strings["Please upload a profile photo."] = "Carica una foto per il profilo."; -$a->strings["Welcome back "] = "Ciao "; -$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."] = "Il token di sicurezza della form non era corretto. Probabilmente la form è rimasta aperta troppo a lunto (più di tre ore) prima di inviarla."; -$a->strings["event"] = "l'evento"; -$a->strings["%1\$s poked %2\$s"] = "%1\$s ha stuzzicato %2\$s"; -$a->strings["poked"] = "ha stuzzicato"; -$a->strings["post/item"] = "post/elemento"; -$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s ha segnato il/la %3\$s di %2\$s come preferito"; -$a->strings["remove"] = "rimuovi"; -$a->strings["Delete Selected Items"] = "Cancella elementi selezionati"; -$a->strings["Follow Thread"] = "Segui la discussione"; -$a->strings["%s likes this."] = "Piace a %s."; -$a->strings["%s doesn't like this."] = "Non piace a %s."; -$a->strings["%2\$d people like this"] = "Piace a %2\$d persone."; -$a->strings["%2\$d people don't like this"] = "Non piace a %2\$d persone."; -$a->strings["and"] = "e"; -$a->strings[", and %d other people"] = "e altre %d persone"; -$a->strings["%s like this."] = "Piace a %s."; -$a->strings["%s don't like this."] = "Non piace a %s."; -$a->strings["Visible to everybody"] = "Visibile a tutti"; -$a->strings["Please enter a video link/URL:"] = "Inserisci un collegamento video / URL:"; -$a->strings["Please enter an audio link/URL:"] = "Inserisci un collegamento audio / URL:"; -$a->strings["Tag term:"] = "Tag:"; -$a->strings["Where are you right now?"] = "Dove sei ora?"; -$a->strings["Delete item(s)?"] = "Cancellare questo elemento/i?"; -$a->strings["Post to Email"] = "Invia a email"; -$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Connettore disabilitato, dato che \"%s\" è abilitato."; -$a->strings["permissions"] = "permessi"; -$a->strings["Post to Groups"] = "Invia ai Gruppi"; -$a->strings["Post to Contacts"] = "Invia ai Contatti"; -$a->strings["Private post"] = "Post privato"; -$a->strings["view full size"] = "vedi a schermo intero"; -$a->strings["newer"] = "nuovi"; -$a->strings["older"] = "vecchi"; -$a->strings["prev"] = "prec"; -$a->strings["first"] = "primo"; -$a->strings["last"] = "ultimo"; -$a->strings["next"] = "succ"; -$a->strings["No contacts"] = "Nessun contatto"; -$a->strings["%d Contact"] = array( - 0 => "%d contatto", - 1 => "%d contatti", -); -$a->strings["poke"] = "stuzzica"; -$a->strings["ping"] = "invia un ping"; -$a->strings["pinged"] = "ha inviato un ping"; -$a->strings["prod"] = "pungola"; -$a->strings["prodded"] = "ha pungolato"; -$a->strings["slap"] = "schiaffeggia"; -$a->strings["slapped"] = "ha schiaffeggiato"; -$a->strings["finger"] = "tocca"; -$a->strings["fingered"] = "ha toccato"; -$a->strings["rebuff"] = "respingi"; -$a->strings["rebuffed"] = "ha respinto"; -$a->strings["happy"] = "felice"; -$a->strings["sad"] = "triste"; -$a->strings["mellow"] = "rilassato"; -$a->strings["tired"] = "stanco"; -$a->strings["perky"] = "vivace"; -$a->strings["angry"] = "arrabbiato"; -$a->strings["stupified"] = "stupefatto"; -$a->strings["puzzled"] = "confuso"; -$a->strings["interested"] = "interessato"; -$a->strings["bitter"] = "risentito"; -$a->strings["cheerful"] = "giocoso"; -$a->strings["alive"] = "vivo"; -$a->strings["annoyed"] = "annoiato"; -$a->strings["anxious"] = "ansioso"; -$a->strings["cranky"] = "irritabile"; -$a->strings["disturbed"] = "disturbato"; -$a->strings["frustrated"] = "frustato"; -$a->strings["motivated"] = "motivato"; -$a->strings["relaxed"] = "rilassato"; -$a->strings["surprised"] = "sorpreso"; -$a->strings["Monday"] = "Lunedì"; -$a->strings["Tuesday"] = "Martedì"; -$a->strings["Wednesday"] = "Mercoledì"; -$a->strings["Thursday"] = "Giovedì"; -$a->strings["Friday"] = "Venerdì"; -$a->strings["Saturday"] = "Sabato"; -$a->strings["Sunday"] = "Domenica"; -$a->strings["January"] = "Gennaio"; -$a->strings["February"] = "Febbraio"; -$a->strings["March"] = "Marzo"; -$a->strings["April"] = "Aprile"; -$a->strings["May"] = "Maggio"; -$a->strings["June"] = "Giugno"; -$a->strings["July"] = "Luglio"; -$a->strings["August"] = "Agosto"; -$a->strings["September"] = "Settembre"; -$a->strings["October"] = "Ottobre"; -$a->strings["November"] = "Novembre"; -$a->strings["December"] = "Dicembre"; -$a->strings["bytes"] = "bytes"; -$a->strings["Click to open/close"] = "Clicca per aprire/chiudere"; -$a->strings["default"] = "default"; -$a->strings["Select an alternate language"] = "Seleziona una diversa lingua"; -$a->strings["activity"] = "attività"; -$a->strings["post"] = "messaggio"; -$a->strings["Item filed"] = "Messaggio salvato"; -$a->strings["Image/photo"] = "Immagine/foto"; -$a->strings["%2\$s %3\$s"] = ""; -$a->strings["%s wrote the following post"] = "%s ha scritto il seguente messaggio"; -$a->strings["$1 wrote:"] = "$1 ha scritto:"; -$a->strings["Encrypted content"] = "Contenuto criptato"; -$a->strings["(no subject)"] = "(nessun oggetto)"; -$a->strings["noreply"] = "nessuna risposta"; -$a->strings["Cannot locate DNS info for database server '%s'"] = "Non trovo le informazioni DNS per il database server '%s'"; -$a->strings["Unknown | Not categorised"] = "Sconosciuto | non categorizzato"; -$a->strings["Block immediately"] = "Blocca immediatamente"; -$a->strings["Shady, spammer, self-marketer"] = "Shady, spammer, self-marketer"; -$a->strings["Known to me, but no opinion"] = "Lo conosco, ma non ho un'opinione particolare"; -$a->strings["OK, probably harmless"] = "E' ok, probabilmente innocuo"; -$a->strings["Reputable, has my trust"] = "Rispettabile, ha la mia fiducia"; -$a->strings["Weekly"] = "Settimanalmente"; -$a->strings["Monthly"] = "Mensilmente"; -$a->strings["OStatus"] = "Ostatus"; -$a->strings["RSS/Atom"] = "RSS / Atom"; -$a->strings["Zot!"] = "Zot!"; -$a->strings["LinkedIn"] = "LinkedIn"; -$a->strings["XMPP/IM"] = "XMPP/IM"; -$a->strings["MySpace"] = "MySpace"; -$a->strings["Google+"] = "Google+"; -$a->strings["pump.io"] = "pump.io"; -$a->strings["Twitter"] = "Twitter"; -$a->strings["Diaspora Connector"] = "Connettore Diaspora"; -$a->strings["Statusnet"] = "Statusnet"; -$a->strings["App.net"] = "App.net"; -$a->strings[" on Last.fm"] = "su Last.fm"; -$a->strings["Starts:"] = "Inizia:"; -$a->strings["Finishes:"] = "Finisce:"; -$a->strings["j F, Y"] = "j F Y"; -$a->strings["j F"] = "j F"; -$a->strings["Birthday:"] = "Compleanno:"; -$a->strings["Age:"] = "Età:"; -$a->strings["for %1\$d %2\$s"] = "per %1\$d %2\$s"; -$a->strings["Tags:"] = "Tag:"; -$a->strings["Religion:"] = "Religione:"; -$a->strings["Hobbies/Interests:"] = "Hobby/Interessi:"; -$a->strings["Contact information and Social Networks:"] = "Informazioni su contatti e social network:"; -$a->strings["Musical interests:"] = "Interessi musicali:"; -$a->strings["Books, literature:"] = "Libri, letteratura:"; -$a->strings["Television:"] = "Televisione:"; -$a->strings["Film/dance/culture/entertainment:"] = "Film/danza/cultura/intrattenimento:"; -$a->strings["Love/Romance:"] = "Amore:"; -$a->strings["Work/employment:"] = "Lavoro:"; -$a->strings["School/education:"] = "Scuola:"; -$a->strings["Click here to upgrade."] = "Clicca qui per aggiornare."; -$a->strings["This action exceeds the limits set by your subscription plan."] = "Questa azione eccede i limiti del tuo piano di sottoscrizione."; -$a->strings["This action is not available under your subscription plan."] = "Questa azione non è disponibile nel tuo piano di sottoscrizione."; -$a->strings["End this session"] = "Finisci questa sessione"; -$a->strings["Your posts and conversations"] = "I tuoi messaggi e le tue conversazioni"; -$a->strings["Your profile page"] = "Pagina del tuo profilo"; -$a->strings["Your photos"] = "Le tue foto"; -$a->strings["Your videos"] = "I tuoi video"; -$a->strings["Your events"] = "I tuoi eventi"; -$a->strings["Personal notes"] = "Note personali"; -$a->strings["Your personal notes"] = "Le tue note personali"; -$a->strings["Sign in"] = "Entra"; -$a->strings["Home Page"] = "Home Page"; -$a->strings["Create an account"] = "Crea un account"; -$a->strings["Help and documentation"] = "Guida e documentazione"; -$a->strings["Apps"] = "Applicazioni"; -$a->strings["Addon applications, utilities, games"] = "Applicazioni, utilità e giochi aggiuntivi"; -$a->strings["Search site content"] = "Cerca nel contenuto del sito"; -$a->strings["Conversations on this site"] = "Conversazioni su questo sito"; -$a->strings["Conversations on the network"] = ""; -$a->strings["Directory"] = "Elenco"; -$a->strings["People directory"] = "Elenco delle persone"; -$a->strings["Information"] = "Informazioni"; -$a->strings["Information about this friendica instance"] = "Informazioni su questo server friendica"; -$a->strings["Conversations from your friends"] = "Conversazioni dai tuoi amici"; -$a->strings["Network Reset"] = "Reset pagina Rete"; -$a->strings["Load Network page with no filters"] = "Carica la pagina Rete senza nessun filtro"; -$a->strings["Friend Requests"] = "Richieste di amicizia"; -$a->strings["See all notifications"] = "Vedi tutte le notifiche"; -$a->strings["Mark all system notifications seen"] = "Segna tutte le notifiche come viste"; -$a->strings["Private mail"] = "Posta privata"; -$a->strings["Inbox"] = "In arrivo"; -$a->strings["Outbox"] = "Inviati"; -$a->strings["Manage"] = "Gestisci"; -$a->strings["Manage other pages"] = "Gestisci altre pagine"; -$a->strings["Account settings"] = "Parametri account"; -$a->strings["Manage/Edit Profiles"] = "Gestisci/Modifica i profili"; -$a->strings["Manage/edit friends and contacts"] = "Gestisci/modifica amici e contatti"; -$a->strings["Site setup and configuration"] = "Configurazione del sito"; -$a->strings["Navigation"] = "Navigazione"; -$a->strings["Site map"] = "Mappa del sito"; -$a->strings["User not found."] = "Utente non trovato."; -$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = ""; -$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = ""; -$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = ""; -$a->strings["There is no status with this id."] = "Non c'è nessuno status con questo id."; -$a->strings["There is no conversation with this id."] = "Non c'è nessuna conversazione con questo id"; -$a->strings["Invalid request."] = ""; -$a->strings["Invalid item."] = ""; -$a->strings["Invalid action. "] = ""; -$a->strings["DB error"] = ""; -$a->strings["An invitation is required."] = "E' richiesto un invito."; -$a->strings["Invitation could not be verified."] = "L'invito non puo' essere verificato."; -$a->strings["Invalid OpenID url"] = "Url OpenID non valido"; -$a->strings["Please enter the required information."] = "Inserisci le informazioni richieste."; -$a->strings["Please use a shorter name."] = "Usa un nome più corto."; -$a->strings["Name too short."] = "Il nome è troppo corto."; -$a->strings["That doesn't appear to be your full (First Last) name."] = "Questo non sembra essere il tuo nome completo (Nome Cognome)."; -$a->strings["Your email domain is not among those allowed on this site."] = "Il dominio della tua email non è tra quelli autorizzati su questo sito."; -$a->strings["Not a valid email address."] = "L'indirizzo email non è valido."; -$a->strings["Cannot use that email."] = "Non puoi usare quell'email."; -$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Il tuo nome utente puo' contenere solo \"a-z\", \"0-9\", \"-\", e \"_\", e deve cominciare con una lettera."; -$a->strings["Nickname is already registered. Please choose another."] = "Nome utente già registrato. Scegline un altro."; -$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Questo nome utente stato già registrato. Per favore, sceglierne uno nuovo."; -$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERRORE GRAVE: La generazione delle chiavi di sicurezza è fallita."; -$a->strings["An error occurred during registration. Please try again."] = "C'è stato un errore durante la registrazione. Prova ancora."; -$a->strings["An error occurred creating your default profile. Please try again."] = "C'è stato un errore nella creazione del tuo profilo. Prova ancora."; -$a->strings["Friends"] = "Amici"; -$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\nGentile %1\$s,\nGrazie per esserti registrato su %2\$s. Il tuo account è stato creato."; -$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."] = ""; -$a->strings["Sharing notification from Diaspora network"] = "Notifica di condivisione dal network Diaspora*"; -$a->strings["Attachments:"] = "Allegati:"; -$a->strings["Do you really want to delete this item?"] = "Vuoi veramente cancellare questo elemento?"; -$a->strings["Archives"] = "Archivi"; -$a->strings["Male"] = "Maschio"; -$a->strings["Female"] = "Femmina"; -$a->strings["Currently Male"] = "Al momento maschio"; -$a->strings["Currently Female"] = "Al momento femmina"; -$a->strings["Mostly Male"] = "Prevalentemente maschio"; -$a->strings["Mostly Female"] = "Prevalentemente femmina"; -$a->strings["Transgender"] = "Transgender"; -$a->strings["Intersex"] = "Intersex"; -$a->strings["Transsexual"] = "Transessuale"; -$a->strings["Hermaphrodite"] = "Ermafrodito"; -$a->strings["Neuter"] = "Neutro"; -$a->strings["Non-specific"] = "Non specificato"; -$a->strings["Other"] = "Altro"; -$a->strings["Undecided"] = "Indeciso"; -$a->strings["Males"] = "Maschi"; -$a->strings["Females"] = "Femmine"; -$a->strings["Gay"] = "Gay"; -$a->strings["Lesbian"] = "Lesbica"; -$a->strings["No Preference"] = "Nessuna preferenza"; -$a->strings["Bisexual"] = "Bisessuale"; -$a->strings["Autosexual"] = "Autosessuale"; -$a->strings["Abstinent"] = "Astinente"; -$a->strings["Virgin"] = "Vergine"; -$a->strings["Deviant"] = "Deviato"; -$a->strings["Fetish"] = "Fetish"; -$a->strings["Oodles"] = "Un sacco"; -$a->strings["Nonsexual"] = "Asessuato"; -$a->strings["Single"] = "Single"; -$a->strings["Lonely"] = "Solitario"; -$a->strings["Available"] = "Disponibile"; -$a->strings["Unavailable"] = "Non disponibile"; -$a->strings["Has crush"] = "è cotto/a"; -$a->strings["Infatuated"] = "infatuato/a"; -$a->strings["Dating"] = "Disponibile a un incontro"; -$a->strings["Unfaithful"] = "Infedele"; -$a->strings["Sex Addict"] = "Sesso-dipendente"; -$a->strings["Friends/Benefits"] = "Amici con benefici"; -$a->strings["Casual"] = "Casual"; -$a->strings["Engaged"] = "Impegnato"; -$a->strings["Married"] = "Sposato"; -$a->strings["Imaginarily married"] = "immaginariamente sposato/a"; -$a->strings["Partners"] = "Partners"; -$a->strings["Cohabiting"] = "Coinquilino"; -$a->strings["Common law"] = "diritto comune"; -$a->strings["Happy"] = "Felice"; -$a->strings["Not looking"] = "Non guarda"; -$a->strings["Swinger"] = "Scambista"; -$a->strings["Betrayed"] = "Tradito"; -$a->strings["Separated"] = "Separato"; -$a->strings["Unstable"] = "Instabile"; -$a->strings["Divorced"] = "Divorziato"; -$a->strings["Imaginarily divorced"] = "immaginariamente divorziato/a"; -$a->strings["Widowed"] = "Vedovo"; -$a->strings["Uncertain"] = "Incerto"; -$a->strings["It's complicated"] = "E' complicato"; -$a->strings["Don't care"] = "Non interessa"; -$a->strings["Ask me"] = "Chiedimelo"; -$a->strings["Friendica Notification"] = "Notifica Friendica"; -$a->strings["Thank You,"] = "Grazie,"; -$a->strings["%s Administrator"] = "Amministratore %s"; -$a->strings["%s "] = "%s "; -$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notifica] Nuovo messaggio privato ricevuto su %s"; -$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s ti ha inviato un nuovo messaggio privato su %2\$s."; -$a->strings["%1\$s sent you %2\$s."] = "%1\$s ti ha inviato %2\$s"; -$a->strings["a private message"] = "un messaggio privato"; -$a->strings["Please visit %s to view and/or reply to your private messages."] = "Visita %s per vedere e/o rispodere ai tuoi messaggi privati."; -$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s ha commentato [url=%2\$s]%3\$s[/url]"; -$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s ha commentato [url=%2\$s]%4\$s di %3\$s[/url]"; -$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s ha commentato un [url=%2\$s]tuo %3\$s[/url]"; -$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Notifica] Commento di %2\$s alla conversazione #%1\$d"; -$a->strings["%s commented on an item/conversation you have been following."] = "%s ha commentato un elemento che stavi seguendo."; -$a->strings["Please visit %s to view and/or reply to the conversation."] = "Visita %s per vedere e/o commentare la conversazione"; -$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notifica] %s ha scritto sulla tua bacheca"; -$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s ha scritto sulla tua bacheca su %2\$s"; -$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s ha inviato un messaggio sulla [url=%2\$s]tua bacheca[/url]"; -$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notifica] %s ti ha taggato"; -$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s ti ha taggato su %2\$s"; -$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]ti ha taggato[/url]."; -$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Notifica] %s ha condiviso un nuovo messaggio"; -$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s ha condiviso un nuovo messaggio su %2\$s"; -$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]ha condiviso un messaggio[/url]."; -$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notifica] %1\$s ti ha stuzzicato"; -$a->strings["%1\$s poked you at %2\$s"] = "%1\$s ti ha stuzzicato su %2\$s"; -$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]ti ha stuzzicato[/url]."; -$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notifica] %s ha taggato un tuo messaggio"; -$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s ha taggato il tuo post su %2\$s"; -$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s ha taggato [url=%2\$s]il tuo post[/url]"; -$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notifica] Hai ricevuto una presentazione"; -$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Hai ricevuto un'introduzione da '%1\$s' su %2\$s"; -$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Hai ricevuto [url=%1\$s]un'introduzione[/url] da %2\$s."; -$a->strings["You may visit their profile at %s"] = "Puoi visitare il suo profilo presso %s"; -$a->strings["Please visit %s to approve or reject the introduction."] = "Visita %s per approvare o rifiutare la presentazione."; -$a->strings["[Friendica:Notify] A new person is sharing with you"] = "[Friendica:Notifica] Una nuova persona sta condividendo con te"; -$a->strings["%1\$s is sharing with you at %2\$s"] = "%1\$s sta condividendo con te su %2\$s"; -$a->strings["[Friendica:Notify] You have a new follower"] = "[Friendica:Notifica] Una nuova persona ti segue"; -$a->strings["You have a new follower at %2\$s : %1\$s"] = "Un nuovo utente ha iniziato a seguirti su %2\$s : %1\$s"; -$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Notifica] Hai ricevuto un suggerimento di amicizia"; -$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Hai ricevuto un suggerimento di amicizia da '%1\$s' su %2\$s"; -$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Hai ricevuto [url=%1\$s]un suggerimento di amicizia[/url] per %2\$s su %3\$s"; -$a->strings["Name:"] = "Nome:"; -$a->strings["Photo:"] = "Foto:"; -$a->strings["Please visit %s to approve or reject the suggestion."] = "Visita %s per approvare o rifiutare il suggerimento."; -$a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica:Notifica] Connessione accettata"; -$a->strings["'%1\$s' has acepted your connection request at %2\$s"] = "'%1\$s' ha accettato la tua richiesta di connessione su %2\$s"; -$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$s ha accettato la tua [url=%1\$s]richiesta di connessione[/url]"; -$a->strings["You are now mutual friends and may exchange status updates, photos, and email\n\twithout restriction."] = "Ora siete connessi reciprocamente e potete scambiarvi aggiornamenti di stato, foto e email\nsenza restrizioni"; -$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Visita %s se desideri modificare questo collegamento."; -$a->strings["'%1\$s' has chosen to accept you a \"fan\", which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = "'%1\$s' ha scelto di accettarti come \"fan\", il che limita alcune forme di comunicazione, come i messaggi privati, e alcune possibiltà di interazione col profilo. Se è una pagina di una comunità o di una celebrità, queste impostazioni sono state applicate automaticamente."; -$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future. "] = "'%1\$s' può decidere in futuro di estendere la connessione in una reciproca o più permissiva."; -$a->strings["[Friendica System:Notify] registration request"] = "[Friendica System:Notifica] richiesta di registrazione"; -$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Hai ricevuto una richiesta di registrazione da '%1\$s' su %2\$s"; -$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Hai ricevuto una [url=%1\$s]richiesta di registrazione[/url] da %2\$s."; -$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Nome completo: %1\$s\nIndirizzo del sito: %2\$s\nNome utente: %3\$s (%4\$s)"; -$a->strings["Please visit %s to approve or reject the request."] = "Visita %s per approvare o rifiutare la richiesta."; -$a->strings["Embedded content"] = "Contenuto incorporato"; -$a->strings["Embedding disabled"] = "Embed disabilitato"; -$a->strings["Error decoding account file"] = "Errore decodificando il file account"; -$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Errore! Nessuna informazione di versione nel file! Potrebbe non essere un file account di Friendica?"; -$a->strings["Error! Cannot check nickname"] = "Errore! Non posso controllare il nickname"; -$a->strings["User '%s' already exists on this server!"] = "L'utente '%s' esiste già su questo server!"; -$a->strings["User creation error"] = "Errore creando l'utente"; -$a->strings["User profile creation error"] = "Errore creando il profile dell'utente"; -$a->strings["%d contact not imported"] = array( - 0 => "%d contatto non importato", - 1 => "%d contatti non importati", -); -$a->strings["Done. You can now login with your username and password"] = "Fatto. Ora puoi entrare con il tuo nome utente e la tua password"; -$a->strings["toggle mobile"] = "commuta tema mobile"; -$a->strings["Theme settings"] = "Impostazioni tema"; -$a->strings["Set resize level for images in posts and comments (width and height)"] = "Dimensione immagini in messaggi e commenti (larghezza e altezza)"; -$a->strings["Set font-size for posts and comments"] = "Dimensione del carattere di messaggi e commenti"; -$a->strings["Set theme width"] = "Imposta la larghezza del tema"; -$a->strings["Color scheme"] = "Schema colori"; -$a->strings["Set line-height for posts and comments"] = "Altezza della linea di testo di messaggi e commenti"; -$a->strings["Set colour scheme"] = "Imposta schema colori"; -$a->strings["Alignment"] = "Allineamento"; -$a->strings["Left"] = "Sinistra"; -$a->strings["Center"] = "Centrato"; -$a->strings["Posts font size"] = "Dimensione caratteri post"; -$a->strings["Textareas font size"] = "Dimensione caratteri nelle aree di testo"; -$a->strings["Set resolution for middle column"] = "Imposta la dimensione della colonna centrale"; -$a->strings["Set color scheme"] = "Imposta lo schema dei colori"; -$a->strings["Set zoomfactor for Earth Layer"] = "Livello di zoom per Earth Layer"; -$a->strings["Set longitude (X) for Earth Layers"] = "Longitudine (X) per Earth Layers"; -$a->strings["Set latitude (Y) for Earth Layers"] = "Latitudine (Y) per Earth Layers"; -$a->strings["Community Pages"] = "Pagine Comunitarie"; -$a->strings["Earth Layers"] = "Earth Layers"; -$a->strings["Community Profiles"] = "Profili Comunità"; -$a->strings["Help or @NewHere ?"] = "Serve aiuto? Sei nuovo?"; -$a->strings["Connect Services"] = "Servizi di conessione"; -$a->strings["Find Friends"] = "Trova Amici"; -$a->strings["Last users"] = "Ultimi utenti"; -$a->strings["Last photos"] = "Ultime foto"; -$a->strings["Last likes"] = "Ultimi \"mi piace\""; -$a->strings["Your contacts"] = "I tuoi contatti"; -$a->strings["Your personal photos"] = "Le tue foto personali"; -$a->strings["Local Directory"] = "Elenco Locale"; -$a->strings["Set zoomfactor for Earth Layers"] = "Livello di zoom per Earth Layers"; -$a->strings["Show/hide boxes at right-hand column:"] = "Mostra/Nascondi riquadri nella colonna destra"; -$a->strings["Set style"] = "Imposta stile"; -$a->strings["greenzero"] = ""; -$a->strings["purplezero"] = ""; -$a->strings["easterbunny"] = ""; -$a->strings["darkzero"] = ""; -$a->strings["comix"] = ""; -$a->strings["slackr"] = ""; -$a->strings["Variations"] = ""; From 0f0e570aa0e4fa6b1223b2bb8225a17f459d41a8 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Thu, 21 May 2015 19:03:28 +0200 Subject: [PATCH 125/306] NL update to the strings --- view/nl/messages.po | 11823 +++++++++++++++++++++--------------------- view/nl/strings.php | 2737 +++++----- 2 files changed, 7311 insertions(+), 7249 deletions(-) diff --git a/view/nl/messages.po b/view/nl/messages.po index ec003c0772..df47269834 100644 --- a/view/nl/messages.po +++ b/view/nl/messages.po @@ -9,13 +9,14 @@ # Gert Cauwenberg , 2013 # jeroenpraat , 2012-2014 # jeroenpraat , 2012 +# Karel Vandecandelaere , 2015 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-09 08:57+0100\n" -"PO-Revision-Date: 2015-02-09 09:46+0000\n" -"Last-Translator: fabrixxm \n" +"POT-Creation-Date: 2015-04-04 17:54+0200\n" +"PO-Revision-Date: 2015-05-18 10:07+0000\n" +"Last-Translator: Karel Vandecandelaere \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/friendica/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,919 +24,3207 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../../mod/contacts.php:108 +#: ../../view/theme/cleanzero/config.php:80 +#: ../../view/theme/vier/config.php:56 +#: ../../view/theme/duepuntozero/config.php:59 +#: ../../view/theme/diabook/config.php:148 +#: ../../view/theme/diabook/theme.php:633 +#: ../../view/theme/quattro/config.php:64 ../../view/theme/dispy/config.php:70 +#: ../../object/Item.php:678 ../../mod/contacts.php:492 +#: ../../mod/manage.php:110 ../../mod/fsuggest.php:107 +#: ../../mod/photos.php:1084 ../../mod/photos.php:1203 +#: ../../mod/photos.php:1514 ../../mod/photos.php:1565 +#: ../../mod/photos.php:1609 ../../mod/photos.php:1697 +#: ../../mod/invite.php:140 ../../mod/events.php:478 ../../mod/mood.php:137 +#: ../../mod/message.php:335 ../../mod/message.php:564 +#: ../../mod/profiles.php:686 ../../mod/install.php:248 +#: ../../mod/install.php:286 ../../mod/crepair.php:186 +#: ../../mod/content.php:710 ../../mod/poke.php:199 ../../mod/localtime.php:45 +msgid "Submit" +msgstr "Opslaan" + +#: ../../view/theme/cleanzero/config.php:82 +#: ../../view/theme/vier/config.php:58 +#: ../../view/theme/duepuntozero/config.php:61 +#: ../../view/theme/diabook/config.php:150 +#: ../../view/theme/quattro/config.php:66 ../../view/theme/dispy/config.php:72 +msgid "Theme settings" +msgstr "Thema-instellingen" + +#: ../../view/theme/cleanzero/config.php:83 +msgid "Set resize level for images in posts and comments (width and height)" +msgstr "" + +#: ../../view/theme/cleanzero/config.php:84 +#: ../../view/theme/diabook/config.php:151 +#: ../../view/theme/dispy/config.php:73 +msgid "Set font-size for posts and comments" +msgstr "Stel lettergrootte voor berichten en reacties in" + +#: ../../view/theme/cleanzero/config.php:85 +msgid "Set theme width" +msgstr "Stel breedte van het thema in" + +#: ../../view/theme/cleanzero/config.php:86 +#: ../../view/theme/quattro/config.php:68 +msgid "Color scheme" +msgstr "Kleurschema" + +#: ../../view/theme/vier/config.php:59 +msgid "Set style" +msgstr "" + +#: ../../view/theme/duepuntozero/config.php:44 ../../include/text.php:1719 +#: ../../include/user.php:247 +msgid "default" +msgstr "standaard" + +#: ../../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" +msgstr "" + +#: ../../view/theme/diabook/config.php:142 +#: ../../view/theme/diabook/theme.php:621 ../../include/acl_selectors.php:335 +msgid "don't show" +msgstr "niet tonen" + +#: ../../view/theme/diabook/config.php:142 +#: ../../view/theme/diabook/theme.php:621 ../../include/acl_selectors.php:334 +msgid "show" +msgstr "tonen" + +#: ../../view/theme/diabook/config.php:152 +#: ../../view/theme/dispy/config.php:74 +msgid "Set line-height for posts and comments" +msgstr "Stel lijnhoogte voor berichten en reacties in" + +#: ../../view/theme/diabook/config.php:153 +msgid "Set resolution for middle column" +msgstr "Stel resolutie in voor de middelste kolom. " + +#: ../../view/theme/diabook/config.php:154 +msgid "Set color scheme" +msgstr "Stel kleurenschema in" + +#: ../../view/theme/diabook/config.php:155 +msgid "Set zoomfactor for Earth Layer" +msgstr "" + +#: ../../view/theme/diabook/config.php:156 +#: ../../view/theme/diabook/theme.php:585 +msgid "Set longitude (X) for Earth Layers" +msgstr "" + +#: ../../view/theme/diabook/config.php:157 +#: ../../view/theme/diabook/theme.php:586 +msgid "Set latitude (Y) for Earth Layers" +msgstr "" + +#: ../../view/theme/diabook/config.php:158 +#: ../../view/theme/diabook/theme.php:130 +#: ../../view/theme/diabook/theme.php:544 +#: ../../view/theme/diabook/theme.php:624 +msgid "Community Pages" +msgstr "Forum/groepspagina's" + +#: ../../view/theme/diabook/config.php:159 +#: ../../view/theme/diabook/theme.php:579 +#: ../../view/theme/diabook/theme.php:625 +msgid "Earth Layers" +msgstr "Earth Layers" + +#: ../../view/theme/diabook/config.php:160 +#: ../../view/theme/diabook/theme.php:391 +#: ../../view/theme/diabook/theme.php:626 +msgid "Community Profiles" +msgstr "Forum/groepsprofielen" + +#: ../../view/theme/diabook/config.php:161 +#: ../../view/theme/diabook/theme.php:599 +#: ../../view/theme/diabook/theme.php:627 +msgid "Help or @NewHere ?" +msgstr "" + +#: ../../view/theme/diabook/config.php:162 +#: ../../view/theme/diabook/theme.php:606 +#: ../../view/theme/diabook/theme.php:628 +msgid "Connect Services" +msgstr "Diensten verbinden" + +#: ../../view/theme/diabook/config.php:163 +#: ../../view/theme/diabook/theme.php:523 +#: ../../view/theme/diabook/theme.php:629 +msgid "Find Friends" +msgstr "Zoek vrienden" + +#: ../../view/theme/diabook/config.php:164 +#: ../../view/theme/diabook/theme.php:412 +#: ../../view/theme/diabook/theme.php:630 +msgid "Last users" +msgstr "Laatste gebruikers" + +#: ../../view/theme/diabook/config.php:165 +#: ../../view/theme/diabook/theme.php:486 +#: ../../view/theme/diabook/theme.php:631 +msgid "Last photos" +msgstr "Laatste foto's" + +#: ../../view/theme/diabook/config.php:166 +#: ../../view/theme/diabook/theme.php:441 +#: ../../view/theme/diabook/theme.php:632 +msgid "Last likes" +msgstr "Recent leuk gevonden" + +#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:105 +#: ../../include/nav.php:148 ../../mod/notifications.php:93 +msgid "Home" +msgstr "Tijdlijn" + +#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76 +#: ../../include/nav.php:148 +msgid "Your posts and conversations" +msgstr "Jouw berichten en conversaties" + +#: ../../view/theme/diabook/theme.php:124 ../../boot.php:2133 +#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:87 +#: ../../include/nav.php:77 ../../mod/profperm.php:103 +#: ../../mod/newmember.php:32 +msgid "Profile" +msgstr "Profiel" + +#: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77 +msgid "Your profile page" +msgstr "Jouw profiel pagina" + +#: ../../view/theme/diabook/theme.php:125 ../../include/nav.php:177 +#: ../../mod/contacts.php:718 +msgid "Contacts" +msgstr "Contacten" + +#: ../../view/theme/diabook/theme.php:125 +msgid "Your contacts" +msgstr "Jouw contacten" + +#: ../../view/theme/diabook/theme.php:126 ../../boot.php:2140 +#: ../../include/nav.php:78 ../../mod/fbrowser.php:25 +msgid "Photos" +msgstr "Foto's" + +#: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:78 +msgid "Your photos" +msgstr "Jouw foto's" + +#: ../../view/theme/diabook/theme.php:127 ../../boot.php:2157 +#: ../../include/nav.php:80 ../../mod/events.php:370 +msgid "Events" +msgstr "Gebeurtenissen" + +#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:80 +msgid "Your events" +msgstr "Jouw gebeurtenissen" + +#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:81 +msgid "Personal notes" +msgstr "Persoonlijke nota's" + +#: ../../view/theme/diabook/theme.php:128 +msgid "Your personal photos" +msgstr "Jouw persoonlijke foto's" + +#: ../../view/theme/diabook/theme.php:129 ../../include/nav.php:129 +#: ../../include/nav.php:131 ../../mod/community.php:32 +msgid "Community" +msgstr "Website" + +#: ../../view/theme/diabook/theme.php:463 ../../include/conversation.php:118 +#: ../../include/conversation.php:245 ../../include/text.php:1983 +msgid "event" +msgstr "gebeurtenis" + +#: ../../view/theme/diabook/theme.php:466 +#: ../../view/theme/diabook/theme.php:475 ../../include/diaspora.php:2011 +#: ../../include/conversation.php:121 ../../include/conversation.php:130 +#: ../../include/conversation.php:248 ../../include/conversation.php:257 +#: ../../mod/like.php:149 ../../mod/like.php:319 ../../mod/subthread.php:87 +#: ../../mod/tagger.php:62 +msgid "status" +msgstr "status" + +#: ../../view/theme/diabook/theme.php:471 ../../include/diaspora.php:2011 +#: ../../include/conversation.php:126 ../../include/conversation.php:253 +#: ../../include/text.php:1985 ../../mod/like.php:149 +#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 +msgid "photo" +msgstr "foto" + +#: ../../view/theme/diabook/theme.php:480 ../../include/diaspora.php:2027 +#: ../../include/conversation.php:137 ../../mod/like.php:166 #, php-format -msgid "%d contact edited." -msgid_plural "%d contacts edited" -msgstr[0] "" -msgstr[1] "" +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s vindt het %3$s van %2$s leuk" -#: ../../mod/contacts.php:139 ../../mod/contacts.php:272 -msgid "Could not access contact record." -msgstr "Kon geen toegang krijgen tot de contactgegevens" +#: ../../view/theme/diabook/theme.php:499 ../../mod/photos.php:60 +#: ../../mod/photos.php:155 ../../mod/photos.php:1064 +#: ../../mod/photos.php:1187 ../../mod/photos.php:1210 +#: ../../mod/photos.php:1760 ../../mod/photos.php:1772 +msgid "Contact Photos" +msgstr "Contactfoto's" -#: ../../mod/contacts.php:153 -msgid "Could not locate selected profile." -msgstr "Kon het geselecteerde profiel niet vinden." +#: ../../view/theme/diabook/theme.php:500 ../../include/user.php:335 +#: ../../include/user.php:342 ../../include/user.php:349 +#: ../../mod/photos.php:155 ../../mod/photos.php:731 ../../mod/photos.php:1187 +#: ../../mod/photos.php:1210 ../../mod/profile_photo.php:74 +#: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88 +#: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296 +#: ../../mod/profile_photo.php:305 +msgid "Profile Photos" +msgstr "Profielfoto's" -#: ../../mod/contacts.php:186 -msgid "Contact updated." -msgstr "Contact bijgewerkt." +#: ../../view/theme/diabook/theme.php:524 +msgid "Local Directory" +msgstr "Lokale gids" -#: ../../mod/contacts.php:188 ../../mod/dfrn_request.php:576 -msgid "Failed to update contact record." -msgstr "Ik kon de contactgegevens niet aanpassen." +#: ../../view/theme/diabook/theme.php:525 ../../mod/directory.php:51 +msgid "Global Directory" +msgstr "Globale gids" -#: ../../mod/contacts.php:254 ../../mod/manage.php:96 -#: ../../mod/display.php:499 ../../mod/profile_photo.php:19 -#: ../../mod/profile_photo.php:169 ../../mod/profile_photo.php:180 -#: ../../mod/profile_photo.php:193 ../../mod/follow.php:9 -#: ../../mod/item.php:168 ../../mod/item.php:184 ../../mod/group.php:19 -#: ../../mod/dfrn_confirm.php:55 ../../mod/fsuggest.php:78 -#: ../../mod/wall_upload.php:66 ../../mod/viewcontacts.php:24 -#: ../../mod/notifications.php:66 ../../mod/message.php:38 -#: ../../mod/message.php:174 ../../mod/crepair.php:119 -#: ../../mod/nogroup.php:25 ../../mod/network.php:4 ../../mod/allfriends.php:9 -#: ../../mod/events.php:140 ../../mod/install.php:151 +#: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:36 +msgid "Similar Interests" +msgstr "Dezelfde interesses" + +#: ../../view/theme/diabook/theme.php:527 ../../include/contact_widgets.php:35 +#: ../../mod/suggest.php:68 +msgid "Friend Suggestions" +msgstr "Vriendschapsvoorstellen" + +#: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:38 +msgid "Invite Friends" +msgstr "Vrienden uitnodigen" + +#: ../../view/theme/diabook/theme.php:544 +#: ../../view/theme/diabook/theme.php:648 ../../include/nav.php:172 +#: ../../mod/settings.php:90 ../../mod/admin.php:1104 ../../mod/admin.php:1325 +#: ../../mod/newmember.php:22 +msgid "Settings" +msgstr "Instellingen" + +#: ../../view/theme/diabook/theme.php:584 +msgid "Set zoomfactor for Earth Layers" +msgstr "" + +#: ../../view/theme/diabook/theme.php:622 +msgid "Show/hide boxes at right-hand column:" +msgstr "" + +#: ../../view/theme/quattro/config.php:67 +msgid "Alignment" +msgstr "Uitlijning" + +#: ../../view/theme/quattro/config.php:67 +msgid "Left" +msgstr "Links" + +#: ../../view/theme/quattro/config.php:67 +msgid "Center" +msgstr "Gecentreerd" + +#: ../../view/theme/quattro/config.php:69 +msgid "Posts font size" +msgstr "Lettergrootte berichten" + +#: ../../view/theme/quattro/config.php:70 +msgid "Textareas font size" +msgstr "Lettergrootte tekstgebieden" + +#: ../../view/theme/dispy/config.php:75 +msgid "Set colour scheme" +msgstr "Stel kleurschema in" + +#: ../../index.php:211 ../../mod/apps.php:7 +msgid "You must be logged in to use addons. " +msgstr "Je moet ingelogd zijn om deze addons te kunnen gebruiken. " + +#: ../../index.php:255 ../../mod/help.php:42 +msgid "Not Found" +msgstr "Niet gevonden" + +#: ../../index.php:258 ../../mod/help.php:45 +msgid "Page not found." +msgstr "Pagina niet gevonden" + +#: ../../index.php:367 ../../mod/group.php:72 ../../mod/profperm.php:19 +msgid "Permission denied" +msgstr "Toegang geweigerd" + +#: ../../index.php:368 ../../include/items.php:4815 ../../mod/attach.php:33 #: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33 #: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103 -#: ../../mod/wall_attach.php:55 ../../mod/settings.php:102 -#: ../../mod/settings.php:596 ../../mod/settings.php:601 -#: ../../mod/register.php:42 ../../mod/delegate.php:12 ../../mod/mood.php:114 -#: ../../mod/suggest.php:58 ../../mod/profiles.php:165 -#: ../../mod/profiles.php:618 ../../mod/editpost.php:10 ../../mod/api.php:26 -#: ../../mod/api.php:31 ../../mod/notes.php:20 ../../mod/poke.php:135 -#: ../../mod/invite.php:15 ../../mod/invite.php:101 ../../mod/photos.php:134 -#: ../../mod/photos.php:1050 ../../mod/regmod.php:110 ../../mod/uimport.php:23 -#: ../../mod/attach.php:33 ../../include/items.php:4712 ../../index.php:369 +#: ../../mod/group.php:19 ../../mod/delegate.php:12 +#: ../../mod/notifications.php:66 ../../mod/settings.php:20 +#: ../../mod/settings.php:107 ../../mod/settings.php:606 +#: ../../mod/contacts.php:258 ../../mod/wall_attach.php:55 +#: ../../mod/register.php:42 ../../mod/manage.php:96 ../../mod/editpost.php:10 +#: ../../mod/regmod.php:110 ../../mod/api.php:26 ../../mod/api.php:31 +#: ../../mod/suggest.php:58 ../../mod/nogroup.php:25 ../../mod/fsuggest.php:78 +#: ../../mod/viewcontacts.php:24 ../../mod/wall_upload.php:66 +#: ../../mod/notes.php:20 ../../mod/network.php:4 ../../mod/photos.php:134 +#: ../../mod/photos.php:1050 ../../mod/follow.php:9 ../../mod/uimport.php:23 +#: ../../mod/invite.php:15 ../../mod/invite.php:101 ../../mod/events.php:140 +#: ../../mod/mood.php:114 ../../mod/message.php:38 ../../mod/message.php:174 +#: ../../mod/profiles.php:165 ../../mod/profiles.php:618 +#: ../../mod/install.php:151 ../../mod/crepair.php:119 ../../mod/poke.php:135 +#: ../../mod/display.php:499 ../../mod/dfrn_confirm.php:55 +#: ../../mod/item.php:169 ../../mod/item.php:185 +#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169 +#: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193 +#: ../../mod/allfriends.php:9 msgid "Permission denied." msgstr "Toegang geweigerd" -#: ../../mod/contacts.php:287 -msgid "Contact has been blocked" -msgstr "Contact is geblokkeerd" +#: ../../index.php:427 +msgid "toggle mobile" +msgstr "mobiel thema omwisselen" -#: ../../mod/contacts.php:287 -msgid "Contact has been unblocked" -msgstr "Contact is gedeblokkeerd" +#: ../../addon-wrk/openidserver/lib/render/trust.php:30 +#, php-format +msgid "Do you wish to confirm your identity (%s) with %s" +msgstr "" -#: ../../mod/contacts.php:298 -msgid "Contact has been ignored" -msgstr "Contact wordt genegeerd" +#: ../../addon-wrk/openidserver/lib/render/trust.php:43 +#: ../../mod/dfrn_request.php:676 +msgid "Confirm" +msgstr "Bevestig" -#: ../../mod/contacts.php:298 -msgid "Contact has been unignored" -msgstr "Contact wordt niet meer genegeerd" +#: ../../addon-wrk/openidserver/lib/render/trust.php:44 +msgid "Do not confirm" +msgstr "Bevestig niet" -#: ../../mod/contacts.php:310 -msgid "Contact has been archived" -msgstr "Contact is gearchiveerd" +#: ../../addon-wrk/openidserver/lib/render/trust.php:48 +msgid "Trust This Site" +msgstr "Vertrouw deze website" -#: ../../mod/contacts.php:310 -msgid "Contact has been unarchived" -msgstr "Contact is niet meer gearchiveerd" +#: ../../addon-wrk/openidserver/lib/render/trust.php:53 +msgid "No Identifier Sent" +msgstr "" -#: ../../mod/contacts.php:335 ../../mod/contacts.php:711 -msgid "Do you really want to delete this contact?" -msgstr "Wil je echt dit contact verwijderen?" +#: ../../addon-wrk/openidserver/lib/render/wronguser.php:5 +msgid "Requested identity don't match logged in user." +msgstr "" -#: ../../mod/contacts.php:337 ../../mod/message.php:209 -#: ../../mod/settings.php:1010 ../../mod/settings.php:1016 -#: ../../mod/settings.php:1024 ../../mod/settings.php:1028 -#: ../../mod/settings.php:1033 ../../mod/settings.php:1039 -#: ../../mod/settings.php:1045 ../../mod/settings.php:1051 -#: ../../mod/settings.php:1081 ../../mod/settings.php:1082 -#: ../../mod/settings.php:1083 ../../mod/settings.php:1084 -#: ../../mod/settings.php:1085 ../../mod/dfrn_request.php:830 -#: ../../mod/register.php:233 ../../mod/suggest.php:29 -#: ../../mod/profiles.php:661 ../../mod/profiles.php:664 ../../mod/api.php:105 -#: ../../include/items.php:4557 +#: ../../addon-wrk/openidserver/lib/render.php:27 +#, php-format +msgid "Please wait; you are being redirected to <%s>" +msgstr "" + +#: ../../boot.php:749 +msgid "Delete this item?" +msgstr "Dit item verwijderen?" + +#: ../../boot.php:750 ../../object/Item.php:361 ../../object/Item.php:677 +#: ../../mod/photos.php:1564 ../../mod/photos.php:1608 +#: ../../mod/photos.php:1696 ../../mod/content.php:709 +msgid "Comment" +msgstr "Reacties" + +#: ../../boot.php:751 ../../include/contact_widgets.php:205 +#: ../../object/Item.php:390 ../../mod/content.php:606 +msgid "show more" +msgstr "toon meer" + +#: ../../boot.php:752 +msgid "show fewer" +msgstr "Minder tonen" + +#: ../../boot.php:1122 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "Wijziging %s mislukt. Lees de error logbestanden." + +#: ../../boot.php:1229 +msgid "Create a New Account" +msgstr "Nieuwe account aanmaken" + +#: ../../boot.php:1230 ../../include/nav.php:109 ../../mod/register.php:269 +msgid "Register" +msgstr "Registreer" + +#: ../../boot.php:1254 ../../include/nav.php:73 +msgid "Logout" +msgstr "Uitloggen" + +#: ../../boot.php:1255 ../../include/nav.php:92 ../../mod/bookmarklet.php:12 +msgid "Login" +msgstr "Login" + +#: ../../boot.php:1257 +msgid "Nickname or Email address: " +msgstr "Bijnaam of e-mailadres:" + +#: ../../boot.php:1258 +msgid "Password: " +msgstr "Wachtwoord:" + +#: ../../boot.php:1259 +msgid "Remember me" +msgstr "Onthou me" + +#: ../../boot.php:1262 +msgid "Or login using OpenID: " +msgstr "Of log in met OpenID:" + +#: ../../boot.php:1268 +msgid "Forgot your password?" +msgstr "Wachtwoord vergeten?" + +#: ../../boot.php:1269 ../../mod/lostpass.php:109 +msgid "Password Reset" +msgstr "Wachtwoord opnieuw instellen" + +#: ../../boot.php:1271 +msgid "Website Terms of Service" +msgstr "Gebruikersvoorwaarden website" + +#: ../../boot.php:1272 +msgid "terms of service" +msgstr "servicevoorwaarden" + +#: ../../boot.php:1274 +msgid "Website Privacy Policy" +msgstr "Privacybeleid website" + +#: ../../boot.php:1275 +msgid "privacy policy" +msgstr "privacybeleid" + +#: ../../boot.php:1408 +msgid "Requested account is not available." +msgstr "Gevraagde account is niet beschikbaar." + +#: ../../boot.php:1447 ../../mod/profile.php:21 +msgid "Requested profile is not available." +msgstr "Gevraagde profiel is niet beschikbaar." + +#: ../../boot.php:1490 ../../boot.php:1624 +#: ../../include/profile_advanced.php:84 +msgid "Edit profile" +msgstr "Bewerk profiel" + +#: ../../boot.php:1557 ../../include/contact_widgets.php:10 +#: ../../mod/suggest.php:90 ../../mod/match.php:58 +msgid "Connect" +msgstr "Verbinden" + +#: ../../boot.php:1589 +msgid "Message" +msgstr "Bericht" + +#: ../../boot.php:1595 ../../include/nav.php:175 +msgid "Profiles" +msgstr "Profielen" + +#: ../../boot.php:1595 +msgid "Manage/edit profiles" +msgstr "Beheer/wijzig profielen" + +#: ../../boot.php:1600 ../../boot.php:1626 ../../mod/profiles.php:804 +msgid "Change profile photo" +msgstr "Profiel foto wijzigen" + +#: ../../boot.php:1601 ../../mod/profiles.php:805 +msgid "Create New Profile" +msgstr "Maak nieuw profiel" + +#: ../../boot.php:1611 ../../mod/profiles.php:816 +msgid "Profile Image" +msgstr "Profiel afbeelding" + +#: ../../boot.php:1614 ../../mod/profiles.php:818 +msgid "visible to everybody" +msgstr "zichtbaar voor iedereen" + +#: ../../boot.php:1615 ../../mod/profiles.php:819 +msgid "Edit visibility" +msgstr "Pas zichtbaarheid aan" + +#: ../../boot.php:1637 ../../include/event.php:40 +#: ../../include/bb2diaspora.php:155 ../../mod/events.php:471 +#: ../../mod/directory.php:136 +msgid "Location:" +msgstr "Plaats:" + +#: ../../boot.php:1639 ../../include/profile_advanced.php:17 +#: ../../mod/directory.php:138 +msgid "Gender:" +msgstr "Geslacht:" + +#: ../../boot.php:1642 ../../include/profile_advanced.php:37 +#: ../../mod/directory.php:140 +msgid "Status:" +msgstr "Tijdlijn:" + +#: ../../boot.php:1644 ../../include/profile_advanced.php:48 +#: ../../mod/directory.php:142 +msgid "Homepage:" +msgstr "Website:" + +#: ../../boot.php:1646 ../../include/profile_advanced.php:58 +#: ../../mod/directory.php:144 +msgid "About:" +msgstr "Over:" + +#: ../../boot.php:1711 +msgid "Network:" +msgstr "" + +#: ../../boot.php:1743 ../../boot.php:1829 +msgid "g A l F d" +msgstr "G l j F" + +#: ../../boot.php:1744 ../../boot.php:1830 +msgid "F d" +msgstr "d F" + +#: ../../boot.php:1789 ../../boot.php:1877 +msgid "[today]" +msgstr "[vandaag]" + +#: ../../boot.php:1801 +msgid "Birthday Reminders" +msgstr "Verjaardagsherinneringen" + +#: ../../boot.php:1802 +msgid "Birthdays this week:" +msgstr "Verjaardagen deze week:" + +#: ../../boot.php:1864 +msgid "[No description]" +msgstr "[Geen omschrijving]" + +#: ../../boot.php:1888 +msgid "Event Reminders" +msgstr "Gebeurtenisherinneringen" + +#: ../../boot.php:1889 +msgid "Events this week:" +msgstr "Gebeurtenissen deze week:" + +#: ../../boot.php:2126 ../../include/nav.php:76 +msgid "Status" +msgstr "Tijdlijn" + +#: ../../boot.php:2129 +msgid "Status Messages and Posts" +msgstr "Berichten op jouw tijdlijn" + +#: ../../boot.php:2136 +msgid "Profile Details" +msgstr "Profieldetails" + +#: ../../boot.php:2143 ../../mod/photos.php:52 +msgid "Photo Albums" +msgstr "Fotoalbums" + +#: ../../boot.php:2147 ../../boot.php:2150 ../../include/nav.php:79 +msgid "Videos" +msgstr "Video's" + +#: ../../boot.php:2160 +msgid "Events and Calendar" +msgstr "Gebeurtenissen en kalender" + +#: ../../boot.php:2164 ../../mod/notes.php:44 +msgid "Personal Notes" +msgstr "Persoonlijke Nota's" + +#: ../../boot.php:2167 +msgid "Only You Can See This" +msgstr "Alleen jij kunt dit zien" + +#: ../../include/features.php:23 +msgid "General Features" +msgstr "Algemene functies" + +#: ../../include/features.php:25 +msgid "Multiple Profiles" +msgstr "Meerdere profielen" + +#: ../../include/features.php:25 +msgid "Ability to create multiple profiles" +msgstr "Mogelijkheid om meerdere profielen aan te maken" + +#: ../../include/features.php:30 +msgid "Post Composition Features" +msgstr "Functies voor het opstellen van berichten" + +#: ../../include/features.php:31 +msgid "Richtext Editor" +msgstr "Tekstverwerker met opmaak" + +#: ../../include/features.php:31 +msgid "Enable richtext editor" +msgstr "Gebruik een tekstverwerker met eenvoudige opmaakfuncties" + +#: ../../include/features.php:32 +msgid "Post Preview" +msgstr "Voorvertoning bericht" + +#: ../../include/features.php:32 +msgid "Allow previewing posts and comments before publishing them" +msgstr "" + +#: ../../include/features.php:33 +msgid "Auto-mention Forums" +msgstr "" + +#: ../../include/features.php:33 +msgid "" +"Add/remove mention when a fourm page is selected/deselected in ACL window." +msgstr "" + +#: ../../include/features.php:38 +msgid "Network Sidebar Widgets" +msgstr "Zijbalkwidgets op netwerkpagina" + +#: ../../include/features.php:39 +msgid "Search by Date" +msgstr "Zoeken op datum" + +#: ../../include/features.php:39 +msgid "Ability to select posts by date ranges" +msgstr "Mogelijkheid om berichten te selecteren volgens datumbereik" + +#: ../../include/features.php:40 +msgid "Group Filter" +msgstr "Groepsfilter" + +#: ../../include/features.php:40 +msgid "Enable widget to display Network posts only from selected group" +msgstr "Sta de widget toe om netwerkberichten te tonen van bepaalde groepen" + +#: ../../include/features.php:41 +msgid "Network Filter" +msgstr "Netwerkfilter" + +#: ../../include/features.php:41 +msgid "Enable widget to display Network posts only from selected network" +msgstr "Sta de widget toe om netwerkberichten te tonen van bepaalde netwerken" + +#: ../../include/features.php:42 ../../mod/network.php:194 +#: ../../mod/search.php:30 +msgid "Saved Searches" +msgstr "Opgeslagen zoekopdrachten" + +#: ../../include/features.php:42 +msgid "Save search terms for re-use" +msgstr "Sla zoekopdrachten op voor hergebruik" + +#: ../../include/features.php:47 +msgid "Network Tabs" +msgstr "Netwerktabs" + +#: ../../include/features.php:48 +msgid "Network Personal Tab" +msgstr "Persoonlijke netwerktab" + +#: ../../include/features.php:48 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had" + +#: ../../include/features.php:49 +msgid "Network New Tab" +msgstr "Nieuwe netwerktab" + +#: ../../include/features.php:49 +msgid "Enable tab to display only new Network posts (from the last 12 hours)" +msgstr "Laat de tab alleen nieuwe netwerkberichten tonen (van de laatste 12 uur)" + +#: ../../include/features.php:50 +msgid "Network Shared Links Tab" +msgstr "" + +#: ../../include/features.php:50 +msgid "Enable tab to display only Network posts with links in them" +msgstr "" + +#: ../../include/features.php:55 +msgid "Post/Comment Tools" +msgstr "Bericht-/reactiehulpmiddelen" + +#: ../../include/features.php:56 +msgid "Multiple Deletion" +msgstr "Meervoudige verwijdering" + +#: ../../include/features.php:56 +msgid "Select and delete multiple posts/comments at once" +msgstr "Selecteer en verwijder meerdere berichten/reacties in een keer" + +#: ../../include/features.php:57 +msgid "Edit Sent Posts" +msgstr "Bewerk verzonden berichten" + +#: ../../include/features.php:57 +msgid "Edit and correct posts and comments after sending" +msgstr "Bewerk en corrigeer berichten en reacties na verzending" + +#: ../../include/features.php:58 +msgid "Tagging" +msgstr "Labelen" + +#: ../../include/features.php:58 +msgid "Ability to tag existing posts" +msgstr "Mogelijkheid om bestaande berichten te labelen" + +#: ../../include/features.php:59 +msgid "Post Categories" +msgstr "Categorieën berichten" + +#: ../../include/features.php:59 +msgid "Add categories to your posts" +msgstr "Voeg categorieën toe aan je berichten" + +#: ../../include/features.php:60 ../../include/contact_widgets.php:104 +msgid "Saved Folders" +msgstr "Bewaarde Mappen" + +#: ../../include/features.php:60 +msgid "Ability to file posts under folders" +msgstr "Mogelijkheid om berichten in mappen te bewaren" + +#: ../../include/features.php:61 +msgid "Dislike Posts" +msgstr "Vind berichten niet leuk" + +#: ../../include/features.php:61 +msgid "Ability to dislike posts/comments" +msgstr "Mogelijkheid om berichten of reacties niet leuk te vinden" + +#: ../../include/features.php:62 +msgid "Star Posts" +msgstr "Geef berichten een ster" + +#: ../../include/features.php:62 +msgid "Ability to mark special posts with a star indicator" +msgstr "" + +#: ../../include/features.php:63 +msgid "Mute Post Notifications" +msgstr "" + +#: ../../include/features.php:63 +msgid "Ability to mute notifications for a thread" +msgstr "" + +#: ../../include/items.php:2307 ../../include/datetime.php:477 +#, php-format +msgid "%s's birthday" +msgstr "%s's verjaardag" + +#: ../../include/items.php:2308 ../../include/datetime.php:478 +#, php-format +msgid "Happy Birthday %s" +msgstr "Gefeliciteerd %s" + +#: ../../include/items.php:4111 ../../mod/dfrn_request.php:717 +#: ../../mod/dfrn_confirm.php:752 +msgid "[Name Withheld]" +msgstr "[Naam achtergehouden]" + +#: ../../include/items.php:4619 ../../mod/admin.php:169 +#: ../../mod/admin.php:1052 ../../mod/admin.php:1265 ../../mod/viewsrc.php:15 +#: ../../mod/notice.php:15 ../../mod/display.php:82 ../../mod/display.php:284 +#: ../../mod/display.php:503 +msgid "Item not found." +msgstr "Item niet gevonden." + +#: ../../include/items.php:4658 +msgid "Do you really want to delete this item?" +msgstr "Wil je echt dit item verwijderen?" + +#: ../../include/items.php:4660 ../../mod/settings.php:1015 +#: ../../mod/settings.php:1021 ../../mod/settings.php:1029 +#: ../../mod/settings.php:1033 ../../mod/settings.php:1038 +#: ../../mod/settings.php:1044 ../../mod/settings.php:1050 +#: ../../mod/settings.php:1056 ../../mod/settings.php:1086 +#: ../../mod/settings.php:1087 ../../mod/settings.php:1088 +#: ../../mod/settings.php:1089 ../../mod/settings.php:1090 +#: ../../mod/contacts.php:341 ../../mod/register.php:233 +#: ../../mod/dfrn_request.php:830 ../../mod/api.php:105 +#: ../../mod/suggest.php:29 ../../mod/message.php:209 +#: ../../mod/profiles.php:661 ../../mod/profiles.php:664 msgid "Yes" msgstr "Ja" -#: ../../mod/contacts.php:340 ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 -#: ../../mod/message.php:212 ../../mod/fbrowser.php:81 -#: ../../mod/fbrowser.php:116 ../../mod/settings.php:615 -#: ../../mod/settings.php:641 ../../mod/dfrn_request.php:844 -#: ../../mod/suggest.php:32 ../../mod/editpost.php:148 -#: ../../mod/photos.php:203 ../../mod/photos.php:292 -#: ../../include/conversation.php:1129 ../../include/items.php:4560 +#: ../../include/items.php:4663 ../../include/conversation.php:1128 +#: ../../mod/settings.php:620 ../../mod/settings.php:646 +#: ../../mod/contacts.php:344 ../../mod/editpost.php:148 +#: ../../mod/dfrn_request.php:844 ../../mod/fbrowser.php:81 +#: ../../mod/fbrowser.php:116 ../../mod/suggest.php:32 +#: ../../mod/photos.php:203 ../../mod/photos.php:292 ../../mod/tagrm.php:11 +#: ../../mod/tagrm.php:94 ../../mod/message.php:212 msgid "Cancel" msgstr "Annuleren" -#: ../../mod/contacts.php:352 -msgid "Contact has been removed." -msgstr "Contact is verwijderd." +#: ../../include/items.php:4881 +msgid "Archives" +msgstr "Archieven" -#: ../../mod/contacts.php:390 +#: ../../include/group.php:25 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "Een verwijderde groep met deze naam is weer tot leven gewekt. Bestaande itemrechten kunnen voor deze groep en toekomstige leden gelden. Wanneer je niet zo had bedoeld kan je een andere groep met een andere naam creëren. " + +#: ../../include/group.php:207 +msgid "Default privacy group for new contacts" +msgstr "" + +#: ../../include/group.php:226 +msgid "Everybody" +msgstr "Iedereen" + +#: ../../include/group.php:249 +msgid "edit" +msgstr "verander" + +#: ../../include/group.php:270 ../../mod/newmember.php:66 +msgid "Groups" +msgstr "Groepen" + +#: ../../include/group.php:271 +msgid "Edit group" +msgstr "Verander groep" + +#: ../../include/group.php:272 +msgid "Create a new group" +msgstr "Maak nieuwe groep" + +#: ../../include/group.php:273 +msgid "Contacts not in any group" +msgstr "" + +#: ../../include/group.php:275 ../../mod/network.php:195 +msgid "add" +msgstr "toevoegen" + +#: ../../include/Photo_old.php:911 ../../include/Photo_old.php:926 +#: ../../include/Photo_old.php:933 ../../include/Photo_old.php:955 +#: ../../include/Photo.php:933 ../../include/Photo.php:948 +#: ../../include/Photo.php:955 ../../include/Photo.php:977 +#: ../../include/message.php:144 ../../mod/wall_upload.php:169 +#: ../../mod/wall_upload.php:178 ../../mod/wall_upload.php:185 +#: ../../mod/item.php:485 +msgid "Wall Photos" +msgstr "" + +#: ../../include/dba.php:56 ../../include/dba_pdo.php:72 #, php-format -msgid "You are mutual friends with %s" -msgstr "Je bent wederzijds bevriend met %s" +msgid "Cannot locate DNS info for database server '%s'" +msgstr "" -#: ../../mod/contacts.php:394 +#: ../../include/contact_widgets.php:6 +msgid "Add New Contact" +msgstr "Nieuw Contact toevoegen" + +#: ../../include/contact_widgets.php:7 +msgid "Enter address or web location" +msgstr "Voeg een webadres of -locatie in:" + +#: ../../include/contact_widgets.php:8 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Voorbeeld: jan@voorbeeld.be, http://voorbeeld.nl/barbara" + +#: ../../include/contact_widgets.php:24 #, php-format -msgid "You are sharing with %s" -msgstr "Je deelt met %s" +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d uitnodiging beschikbaar" +msgstr[1] "%d uitnodigingen beschikbaar" -#: ../../mod/contacts.php:399 -#, php-format -msgid "%s is sharing with you" -msgstr "%s deelt met jou" +#: ../../include/contact_widgets.php:30 +msgid "Find People" +msgstr "Zoek mensen" -#: ../../mod/contacts.php:416 -msgid "Private communications are not available for this contact." -msgstr "Privécommunicatie met dit contact is niet beschikbaar." +#: ../../include/contact_widgets.php:31 +msgid "Enter name or interest" +msgstr "Vul naam of interesse in" -#: ../../mod/contacts.php:419 ../../mod/admin.php:569 -msgid "Never" -msgstr "Nooit" +#: ../../include/contact_widgets.php:32 +msgid "Connect/Follow" +msgstr "Verbind/Volg" -#: ../../mod/contacts.php:423 -msgid "(Update was successful)" -msgstr "(Wijziging is geslaagd)" +#: ../../include/contact_widgets.php:33 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Voorbeelden: Jan Peeters, Vissen" -#: ../../mod/contacts.php:423 -msgid "(Update was not successful)" -msgstr "(Wijziging is niet geslaagd)" +#: ../../include/contact_widgets.php:34 ../../mod/contacts.php:724 +#: ../../mod/directory.php:63 +msgid "Find" +msgstr "Zoek" -#: ../../mod/contacts.php:425 -msgid "Suggest friends" -msgstr "Stel vrienden voor" +#: ../../include/contact_widgets.php:37 +msgid "Random Profile" +msgstr "Willekeurig Profiel" -#: ../../mod/contacts.php:429 -#, php-format -msgid "Network type: %s" -msgstr "Netwerk type: %s" +#: ../../include/contact_widgets.php:71 +msgid "Networks" +msgstr "Netwerken" -#: ../../mod/contacts.php:432 ../../include/contact_widgets.php:200 +#: ../../include/contact_widgets.php:74 +msgid "All Networks" +msgstr "Alle netwerken" + +#: ../../include/contact_widgets.php:107 ../../include/contact_widgets.php:139 +msgid "Everything" +msgstr "Alles" + +#: ../../include/contact_widgets.php:136 +msgid "Categories" +msgstr "Categorieën" + +#: ../../include/contact_widgets.php:200 ../../mod/contacts.php:439 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" msgstr[0] "%d gedeeld contact" msgstr[1] "%d gedeelde contacten" -#: ../../mod/contacts.php:437 -msgid "View all contacts" -msgstr "Alle contacten zien" +#: ../../include/enotify.php:18 +msgid "Friendica Notification" +msgstr "Friendica Notificatie" -#: ../../mod/contacts.php:442 ../../mod/contacts.php:501 -#: ../../mod/contacts.php:714 ../../mod/admin.php:1009 -msgid "Unblock" -msgstr "Blokkering opheffen" +#: ../../include/enotify.php:21 +msgid "Thank You," +msgstr "Bedankt" -#: ../../mod/contacts.php:442 ../../mod/contacts.php:501 -#: ../../mod/contacts.php:714 ../../mod/admin.php:1008 -msgid "Block" -msgstr "Blokkeren" +#: ../../include/enotify.php:23 +#, php-format +msgid "%s Administrator" +msgstr "%s Beheerder" -#: ../../mod/contacts.php:445 -msgid "Toggle Blocked status" -msgstr "Schakel geblokkeerde status" +#: ../../include/enotify.php:33 ../../include/delivery.php:467 +#: ../../include/notifier.php:796 +msgid "noreply" +msgstr "geen reactie" -#: ../../mod/contacts.php:448 ../../mod/contacts.php:502 -#: ../../mod/contacts.php:715 -msgid "Unignore" -msgstr "Negeer niet meer" +#: ../../include/enotify.php:64 +#, php-format +msgid "%s " +msgstr "%s " -#: ../../mod/contacts.php:448 ../../mod/contacts.php:502 -#: ../../mod/contacts.php:715 ../../mod/notifications.php:51 -#: ../../mod/notifications.php:164 ../../mod/notifications.php:210 -msgid "Ignore" -msgstr "Negeren" +#: ../../include/enotify.php:68 +#, php-format +msgid "[Friendica:Notify] New mail received at %s" +msgstr "[Friendica:Notificatie] Nieuw bericht ontvangen op %s" -#: ../../mod/contacts.php:451 -msgid "Toggle Ignored status" -msgstr "Schakel negeerstatus" +#: ../../include/enotify.php:70 +#, php-format +msgid "%1$s sent you a new private message at %2$s." +msgstr "%1$s sent you a new private message at %2$s." -#: ../../mod/contacts.php:455 ../../mod/contacts.php:716 -msgid "Unarchive" -msgstr "Archiveer niet meer" +#: ../../include/enotify.php:71 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s stuurde jou %2$s." -#: ../../mod/contacts.php:455 ../../mod/contacts.php:716 -msgid "Archive" -msgstr "Archiveer" +#: ../../include/enotify.php:71 +msgid "a private message" +msgstr "een prive bericht" -#: ../../mod/contacts.php:458 -msgid "Toggle Archive status" -msgstr "Schakel archiveringsstatus" +#: ../../include/enotify.php:72 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Bezoek %s om je privé-berichten te bekijken en/of te beantwoorden." -#: ../../mod/contacts.php:461 -msgid "Repair" -msgstr "Herstellen" +#: ../../include/enotify.php:124 +#, php-format +msgid "%1$s commented on [url=%2$s]a %3$s[/url]" +msgstr "%1$s gaf een reactie op [url=%2$s]a %3$s[/url]" -#: ../../mod/contacts.php:464 -msgid "Advanced Contact Settings" -msgstr "Geavanceerde instellingen voor contacten" +#: ../../include/enotify.php:131 +#, php-format +msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" +msgstr "%1$s gaf een reactie op [url=%2$s]%3$s's %4$s[/url]" -#: ../../mod/contacts.php:470 -msgid "Communications lost with this contact!" -msgstr "Communicatie met dit contact is verbroken!" +#: ../../include/enotify.php:139 +#, php-format +msgid "%1$s commented on [url=%2$s]your %3$s[/url]" +msgstr "%1$s gaf een reactie op [url=%2$s]jouw %3$s[/url]" -#: ../../mod/contacts.php:473 -msgid "Contact Editor" -msgstr "Contactbewerker" +#: ../../include/enotify.php:149 +#, php-format +msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" +msgstr "" -#: ../../mod/contacts.php:475 ../../mod/manage.php:110 -#: ../../mod/fsuggest.php:107 ../../mod/message.php:335 -#: ../../mod/message.php:564 ../../mod/crepair.php:186 -#: ../../mod/events.php:478 ../../mod/content.php:710 -#: ../../mod/install.php:248 ../../mod/install.php:286 ../../mod/mood.php:137 -#: ../../mod/profiles.php:686 ../../mod/localtime.php:45 -#: ../../mod/poke.php:199 ../../mod/invite.php:140 ../../mod/photos.php:1084 -#: ../../mod/photos.php:1203 ../../mod/photos.php:1514 -#: ../../mod/photos.php:1565 ../../mod/photos.php:1609 -#: ../../mod/photos.php:1697 ../../object/Item.php:678 -#: ../../view/theme/cleanzero/config.php:80 -#: ../../view/theme/dispy/config.php:70 ../../view/theme/quattro/config.php:64 -#: ../../view/theme/diabook/config.php:148 -#: ../../view/theme/diabook/theme.php:633 ../../view/theme/vier/config.php:53 -#: ../../view/theme/duepuntozero/config.php:59 -msgid "Submit" -msgstr "Opslaan" +#: ../../include/enotify.php:150 +#, php-format +msgid "%s commented on an item/conversation you have been following." +msgstr "%s gaf een reactie op een bericht/conversatie die jij volgt." -#: ../../mod/contacts.php:476 -msgid "Profile Visibility" -msgstr "Zichtbaarheid profiel" +#: ../../include/enotify.php:153 ../../include/enotify.php:168 +#: ../../include/enotify.php:181 ../../include/enotify.php:194 +#: ../../include/enotify.php:212 ../../include/enotify.php:225 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Bezoek %s om de conversatie te bekijken en/of te beantwoorden." -#: ../../mod/contacts.php:477 +#: ../../include/enotify.php:160 +#, php-format +msgid "[Friendica:Notify] %s posted to your profile wall" +msgstr "" + +#: ../../include/enotify.php:162 +#, php-format +msgid "%1$s posted to your profile wall at %2$s" +msgstr "" + +#: ../../include/enotify.php:164 +#, php-format +msgid "%1$s posted to [url=%2$s]your wall[/url]" +msgstr "" + +#: ../../include/enotify.php:175 +#, php-format +msgid "[Friendica:Notify] %s tagged you" +msgstr "[Friendica:Notificatie] %s heeft jou genoemd" + +#: ../../include/enotify.php:176 +#, php-format +msgid "%1$s tagged you at %2$s" +msgstr "%1$s heeft jou in %2$s genoemd" + +#: ../../include/enotify.php:177 +#, php-format +msgid "%1$s [url=%2$s]tagged you[/url]." +msgstr "%1$s [url=%2$s]heeft jou genoemd[/url]." + +#: ../../include/enotify.php:188 +#, php-format +msgid "[Friendica:Notify] %s shared a new post" +msgstr "" + +#: ../../include/enotify.php:189 +#, php-format +msgid "%1$s shared a new post at %2$s" +msgstr "" + +#: ../../include/enotify.php:190 +#, php-format +msgid "%1$s [url=%2$s]shared a post[/url]." +msgstr "" + +#: ../../include/enotify.php:202 +#, php-format +msgid "[Friendica:Notify] %1$s poked you" +msgstr "[Friendica:Notify] %1$s heeft jou aangestoten" + +#: ../../include/enotify.php:203 +#, php-format +msgid "%1$s poked you at %2$s" +msgstr "%1$s heeft jou aangestoten op %2$s" + +#: ../../include/enotify.php:204 +#, php-format +msgid "%1$s [url=%2$s]poked you[/url]." +msgstr "" + +#: ../../include/enotify.php:219 +#, php-format +msgid "[Friendica:Notify] %s tagged your post" +msgstr "[Friendica:Notificatie] %s heeft jouw bericht gelabeld" + +#: ../../include/enotify.php:220 +#, php-format +msgid "%1$s tagged your post at %2$s" +msgstr "%1$s heeft jouw bericht gelabeld in %2$s" + +#: ../../include/enotify.php:221 +#, php-format +msgid "%1$s tagged [url=%2$s]your post[/url]" +msgstr "%1$s labelde [url=%2$s]jouw bericht[/url]" + +#: ../../include/enotify.php:232 +msgid "[Friendica:Notify] Introduction received" +msgstr "[Friendica:Notificatie] Vriendschaps-/connectieverzoek ontvangen" + +#: ../../include/enotify.php:233 +#, php-format +msgid "You've received an introduction from '%1$s' at %2$s" +msgstr "Je hebt een vriendschaps- of connectieverzoek ontvangen van '%1$s' om %2$s" + +#: ../../include/enotify.php:234 +#, php-format +msgid "You've received [url=%1$s]an introduction[/url] from %2$s." +msgstr "Je ontving [url=%1$s]een vriendschaps- of connectieverzoek[/url] van %2$s." + +#: ../../include/enotify.php:237 ../../include/enotify.php:279 +#, php-format +msgid "You may visit their profile at %s" +msgstr "U kunt hun profiel bezoeken op %s" + +#: ../../include/enotify.php:239 +#, php-format +msgid "Please visit %s to approve or reject the introduction." +msgstr "Bezoek %s om het verzoek goed of af te keuren." + +#: ../../include/enotify.php:247 +msgid "[Friendica:Notify] A new person is sharing with you" +msgstr "" + +#: ../../include/enotify.php:248 ../../include/enotify.php:249 +#, php-format +msgid "%1$s is sharing with you at %2$s" +msgstr "" + +#: ../../include/enotify.php:255 +msgid "[Friendica:Notify] You have a new follower" +msgstr "" + +#: ../../include/enotify.php:256 ../../include/enotify.php:257 +#, php-format +msgid "You have a new follower at %2$s : %1$s" +msgstr "" + +#: ../../include/enotify.php:270 +msgid "[Friendica:Notify] Friend suggestion received" +msgstr "" + +#: ../../include/enotify.php:271 +#, php-format +msgid "You've received a friend suggestion from '%1$s' at %2$s" +msgstr "" + +#: ../../include/enotify.php:272 #, php-format msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Kies het profiel dat getoond moet worden wanneer %s uw profiel bezoekt. " +"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." +msgstr "" -#: ../../mod/contacts.php:478 -msgid "Contact Information / Notes" -msgstr "Contactinformatie / aantekeningen" +#: ../../include/enotify.php:277 +msgid "Name:" +msgstr "Naam:" -#: ../../mod/contacts.php:479 -msgid "Edit contact notes" -msgstr "Wijzig aantekeningen over dit contact" +#: ../../include/enotify.php:278 +msgid "Photo:" +msgstr "Foto: " -#: ../../mod/contacts.php:484 ../../mod/contacts.php:679 -#: ../../mod/viewcontacts.php:64 ../../mod/nogroup.php:40 +#: ../../include/enotify.php:281 #, php-format -msgid "Visit %s's profile [%s]" -msgstr "Bekijk het profiel van %s [%s]" +msgid "Please visit %s to approve or reject the suggestion." +msgstr "" -#: ../../mod/contacts.php:485 -msgid "Block/Unblock contact" -msgstr "Blokkeer/deblokkeer contact" +#: ../../include/enotify.php:289 ../../include/enotify.php:302 +msgid "[Friendica:Notify] Connection accepted" +msgstr "" -#: ../../mod/contacts.php:486 -msgid "Ignore contact" -msgstr "Negeer contact" +#: ../../include/enotify.php:290 ../../include/enotify.php:303 +#, php-format +msgid "'%1$s' has acepted your connection request at %2$s" +msgstr "" -#: ../../mod/contacts.php:487 -msgid "Repair URL settings" -msgstr "Repareer URL-instellingen" +#: ../../include/enotify.php:291 ../../include/enotify.php:304 +#, php-format +msgid "%2$s has accepted your [url=%1$s]connection request[/url]." +msgstr "" -#: ../../mod/contacts.php:488 -msgid "View conversations" -msgstr "Toon conversaties" +#: ../../include/enotify.php:294 +msgid "" +"You are now mutual friends and may exchange status updates, photos, and email\n" +"\twithout restriction." +msgstr "" -#: ../../mod/contacts.php:490 -msgid "Delete contact" +#: ../../include/enotify.php:297 ../../include/enotify.php:311 +#, php-format +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr "" + +#: ../../include/enotify.php:307 +#, php-format +msgid "" +"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of " +"communication - such as private messaging and some profile interactions. If " +"this is a celebrity or community page, these settings were applied " +"automatically." +msgstr "" + +#: ../../include/enotify.php:309 +#, php-format +msgid "" +"'%1$s' may choose to extend this into a two-way or more permissive " +"relationship in the future. " +msgstr "" + +#: ../../include/enotify.php:322 +msgid "[Friendica System:Notify] registration request" +msgstr "" + +#: ../../include/enotify.php:323 +#, php-format +msgid "You've received a registration request from '%1$s' at %2$s" +msgstr "" + +#: ../../include/enotify.php:324 +#, php-format +msgid "You've received a [url=%1$s]registration request[/url] from %2$s." +msgstr "" + +#: ../../include/enotify.php:327 +#, php-format +msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" +msgstr "" + +#: ../../include/enotify.php:330 +#, php-format +msgid "Please visit %s to approve or reject the request." +msgstr "" + +#: ../../include/api.php:304 ../../include/api.php:315 +#: ../../include/api.php:416 ../../include/api.php:1063 +#: ../../include/api.php:1065 +msgid "User not found." +msgstr "Gebruiker niet gevonden" + +#: ../../include/api.php:770 +#, php-format +msgid "Daily posting limit of %d posts reached. The post was rejected." +msgstr "" + +#: ../../include/api.php:789 +#, php-format +msgid "Weekly posting limit of %d posts reached. The post was rejected." +msgstr "" + +#: ../../include/api.php:808 +#, php-format +msgid "Monthly posting limit of %d posts reached. The post was rejected." +msgstr "" + +#: ../../include/api.php:1271 +msgid "There is no status with this id." +msgstr "Er is geen status met dit kenmerk" + +#: ../../include/api.php:1341 +msgid "There is no conversation with this id." +msgstr "" + +#: ../../include/api.php:1613 +msgid "Invalid request." +msgstr "" + +#: ../../include/api.php:1624 +msgid "Invalid item." +msgstr "" + +#: ../../include/api.php:1634 +msgid "Invalid action. " +msgstr "" + +#: ../../include/api.php:1642 +msgid "DB error" +msgstr "" + +#: ../../include/network.php:890 +msgid "view full size" +msgstr "Volledig formaat" + +#: ../../include/Scrape.php:608 +msgid " on Last.fm" +msgstr " op Last.fm" + +#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1133 +msgid "Full Name:" +msgstr "Volledige Naam:" + +#: ../../include/profile_advanced.php:22 +msgid "j F, Y" +msgstr "F j Y" + +#: ../../include/profile_advanced.php:23 +msgid "j F" +msgstr "F j" + +#: ../../include/profile_advanced.php:30 +msgid "Birthday:" +msgstr "Verjaardag:" + +#: ../../include/profile_advanced.php:34 +msgid "Age:" +msgstr "Leeftijd:" + +#: ../../include/profile_advanced.php:43 +#, php-format +msgid "for %1$d %2$s" +msgstr "voor %1$d %2$s" + +#: ../../include/profile_advanced.php:46 ../../mod/profiles.php:714 +msgid "Sexual Preference:" +msgstr "Seksuele Voorkeur:" + +#: ../../include/profile_advanced.php:50 ../../mod/profiles.php:716 +msgid "Hometown:" +msgstr "Woonplaats:" + +#: ../../include/profile_advanced.php:52 +msgid "Tags:" +msgstr "Labels:" + +#: ../../include/profile_advanced.php:54 ../../mod/profiles.php:717 +msgid "Political Views:" +msgstr "Politieke standpunten:" + +#: ../../include/profile_advanced.php:56 +msgid "Religion:" +msgstr "Religie:" + +#: ../../include/profile_advanced.php:60 +msgid "Hobbies/Interests:" +msgstr "Hobby:" + +#: ../../include/profile_advanced.php:62 ../../mod/profiles.php:721 +msgid "Likes:" +msgstr "Houdt van:" + +#: ../../include/profile_advanced.php:64 ../../mod/profiles.php:722 +msgid "Dislikes:" +msgstr "Houdt niet van:" + +#: ../../include/profile_advanced.php:67 +msgid "Contact information and Social Networks:" +msgstr "Contactinformatie en sociale netwerken:" + +#: ../../include/profile_advanced.php:69 +msgid "Musical interests:" +msgstr "Muzikale interesse " + +#: ../../include/profile_advanced.php:71 +msgid "Books, literature:" +msgstr "Boeken, literatuur:" + +#: ../../include/profile_advanced.php:73 +msgid "Television:" +msgstr "Televisie" + +#: ../../include/profile_advanced.php:75 +msgid "Film/dance/culture/entertainment:" +msgstr "Film/dans/cultuur/ontspanning:" + +#: ../../include/profile_advanced.php:77 +msgid "Love/Romance:" +msgstr "Liefde/romance:" + +#: ../../include/profile_advanced.php:79 +msgid "Work/employment:" +msgstr "Werk/beroep:" + +#: ../../include/profile_advanced.php:81 +msgid "School/education:" +msgstr "School/opleiding:" + +#: ../../include/nav.php:34 ../../mod/navigation.php:20 +msgid "Nothing new here" +msgstr "Niets nieuw hier" + +#: ../../include/nav.php:38 ../../mod/navigation.php:24 +msgid "Clear notifications" +msgstr "Notificaties verwijderen" + +#: ../../include/nav.php:73 +msgid "End this session" +msgstr "Deze sessie beëindigen" + +#: ../../include/nav.php:79 +msgid "Your videos" +msgstr "" + +#: ../../include/nav.php:81 +msgid "Your personal notes" +msgstr "" + +#: ../../include/nav.php:92 +msgid "Sign in" +msgstr "Inloggen" + +#: ../../include/nav.php:105 +msgid "Home Page" +msgstr "Jouw tijdlijn" + +#: ../../include/nav.php:109 +msgid "Create an account" +msgstr "Maak een accoount" + +#: ../../include/nav.php:114 ../../mod/help.php:36 +msgid "Help" +msgstr "Help" + +#: ../../include/nav.php:114 +msgid "Help and documentation" +msgstr "Hulp en documentatie" + +#: ../../include/nav.php:117 +msgid "Apps" +msgstr "Apps" + +#: ../../include/nav.php:117 +msgid "Addon applications, utilities, games" +msgstr "Extra toepassingen, hulpmiddelen of spelletjes" + +#: ../../include/nav.php:119 ../../include/text.php:968 +#: ../../include/text.php:969 ../../mod/search.php:99 +msgid "Search" +msgstr "Zoeken" + +#: ../../include/nav.php:119 +msgid "Search site content" +msgstr "Doorzoek de inhoud van de website" + +#: ../../include/nav.php:129 +msgid "Conversations on this site" +msgstr "Conversaties op deze website" + +#: ../../include/nav.php:131 +msgid "Conversations on the network" +msgstr "" + +#: ../../include/nav.php:133 +msgid "Directory" +msgstr "Gids" + +#: ../../include/nav.php:133 +msgid "People directory" +msgstr "Personengids" + +#: ../../include/nav.php:135 +msgid "Information" +msgstr "Informatie" + +#: ../../include/nav.php:135 +msgid "Information about this friendica instance" +msgstr "" + +#: ../../include/nav.php:145 ../../mod/notifications.php:83 +msgid "Network" +msgstr "Netwerk" + +#: ../../include/nav.php:145 +msgid "Conversations from your friends" +msgstr "Conversaties van je vrienden" + +#: ../../include/nav.php:146 +msgid "Network Reset" +msgstr "Netwerkpagina opnieuw instellen" + +#: ../../include/nav.php:146 +msgid "Load Network page with no filters" +msgstr "Laad de netwerkpagina zonder filters" + +#: ../../include/nav.php:154 ../../mod/notifications.php:98 +msgid "Introductions" +msgstr "Verzoeken" + +#: ../../include/nav.php:154 +msgid "Friend Requests" +msgstr "Vriendschapsverzoeken" + +#: ../../include/nav.php:155 ../../mod/notifications.php:224 +msgid "Notifications" +msgstr "Notificaties" + +#: ../../include/nav.php:156 +msgid "See all notifications" +msgstr "Toon alle notificaties" + +#: ../../include/nav.php:157 +msgid "Mark all system notifications seen" +msgstr "Alle systeemnotificaties als gelezen markeren" + +#: ../../include/nav.php:161 ../../mod/message.php:182 +msgid "Messages" +msgstr "Privéberichten" + +#: ../../include/nav.php:161 +msgid "Private mail" +msgstr "Privéberichten" + +#: ../../include/nav.php:162 +msgid "Inbox" +msgstr "Inbox" + +#: ../../include/nav.php:163 +msgid "Outbox" +msgstr "Verzonden berichten" + +#: ../../include/nav.php:164 ../../mod/message.php:9 +msgid "New Message" +msgstr "Nieuw Bericht" + +#: ../../include/nav.php:167 +msgid "Manage" +msgstr "Beheren" + +#: ../../include/nav.php:167 +msgid "Manage other pages" +msgstr "Andere pagina's beheren" + +#: ../../include/nav.php:170 ../../mod/settings.php:67 +msgid "Delegations" +msgstr "" + +#: ../../include/nav.php:170 ../../mod/delegate.php:130 +msgid "Delegate Page Management" +msgstr "Paginabeheer uitbesteden" + +#: ../../include/nav.php:172 +msgid "Account settings" +msgstr "Account instellingen" + +#: ../../include/nav.php:175 +msgid "Manage/Edit Profiles" +msgstr "Beheer/Wijzig Profielen" + +#: ../../include/nav.php:177 +msgid "Manage/edit friends and contacts" +msgstr "Beheer/Wijzig vrienden en contacten" + +#: ../../include/nav.php:184 ../../mod/admin.php:130 +msgid "Admin" +msgstr "Beheer" + +#: ../../include/nav.php:184 +msgid "Site setup and configuration" +msgstr "Website opzetten en configureren" + +#: ../../include/nav.php:188 +msgid "Navigation" +msgstr "Navigatie" + +#: ../../include/nav.php:188 +msgid "Site map" +msgstr "Sitemap" + +#: ../../include/plugin.php:455 ../../include/plugin.php:457 +msgid "Click here to upgrade." +msgstr "" + +#: ../../include/plugin.php:463 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "" + +#: ../../include/plugin.php:468 +msgid "This action is not available under your subscription plan." +msgstr "" + +#: ../../include/follow.php:27 ../../mod/dfrn_request.php:507 +msgid "Disallowed profile URL." +msgstr "Niet toegelaten profiel adres." + +#: ../../include/follow.php:32 +msgid "Connect URL missing." +msgstr "" + +#: ../../include/follow.php:59 +msgid "" +"This site is not configured to allow communications with other networks." +msgstr "Deze website is niet geconfigureerd voor communicatie met andere netwerken." + +#: ../../include/follow.php:60 ../../include/follow.php:80 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "Er werden geen compatibele communicatieprotocols of feeds ontdekt." + +#: ../../include/follow.php:78 +msgid "The profile address specified does not provide adequate information." +msgstr "" + +#: ../../include/follow.php:82 +msgid "An author or name was not found." +msgstr "" + +#: ../../include/follow.php:84 +msgid "No browser URL could be matched to this address." +msgstr "" + +#: ../../include/follow.php:86 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "Het @-stijl-identiteitsadres komt niet overeen met een nekend protocol of e-mailcontact." + +#: ../../include/follow.php:87 +msgid "Use mailto: in front of address to force email check." +msgstr "Gebruik mailto: voor het adres om een e-mailcontrole af te dwingen." + +#: ../../include/follow.php:93 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "" + +#: ../../include/follow.php:103 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "" + +#: ../../include/follow.php:205 +msgid "Unable to retrieve contact information." +msgstr "" + +#: ../../include/follow.php:258 +msgid "following" +msgstr "volgend" + +#: ../../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 "Gebruiker '%s' bestaat al op deze server!" + +#: ../../include/uimport.php:153 +msgid "User creation error" +msgstr "Fout bij het aanmaken van de gebruiker" + +#: ../../include/uimport.php:171 +msgid "User profile creation error" +msgstr "Fout bij het aanmaken van het gebruikersprofiel" + +#: ../../include/uimport.php:220 +#, php-format +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "%d contact werd niet geïmporteerd" +msgstr[1] "%d contacten werden niet geïmporteerd" + +#: ../../include/uimport.php:290 +msgid "Done. You can now login with your username and password" +msgstr "Gebeurd. Je kunt nu inloggen met je gebruikersnaam en wachtwoord" + +#: ../../include/event.php:11 ../../include/bb2diaspora.php:133 +#: ../../mod/localtime.php:12 +msgid "l F d, Y \\@ g:i A" +msgstr "l F d, Y \\@ g:i A" + +#: ../../include/event.php:20 ../../include/bb2diaspora.php:139 +msgid "Starts:" +msgstr "Begint:" + +#: ../../include/event.php:30 ../../include/bb2diaspora.php:147 +msgid "Finishes:" +msgstr "Eindigt:" + +#: ../../include/Contact.php:119 +msgid "stopped following" +msgstr "" + +#: ../../include/Contact.php:232 ../../include/conversation.php:881 +msgid "Poke" +msgstr "Aanstoten" + +#: ../../include/Contact.php:233 ../../include/conversation.php:875 +msgid "View Status" +msgstr "Bekijk status" + +#: ../../include/Contact.php:234 ../../include/conversation.php:876 +msgid "View Profile" +msgstr "Bekijk profiel" + +#: ../../include/Contact.php:235 ../../include/conversation.php:877 +msgid "View Photos" +msgstr "Bekijk foto's" + +#: ../../include/Contact.php:236 ../../include/Contact.php:259 +#: ../../include/conversation.php:878 +msgid "Network Posts" +msgstr "Netwerkberichten" + +#: ../../include/Contact.php:237 ../../include/Contact.php:259 +#: ../../include/conversation.php:879 +msgid "Edit Contact" +msgstr "Bewerk contact" + +#: ../../include/Contact.php:238 +msgid "Drop Contact" msgstr "Verwijder contact" -#: ../../mod/contacts.php:494 -msgid "Last update:" -msgstr "Laatste wijziging:" +#: ../../include/Contact.php:239 ../../include/Contact.php:259 +#: ../../include/conversation.php:880 +msgid "Send PM" +msgstr "Stuur een privébericht" -#: ../../mod/contacts.php:496 -msgid "Update public posts" -msgstr "Openbare posts aanpassen" - -#: ../../mod/contacts.php:498 ../../mod/admin.php:1503 -msgid "Update now" -msgstr "Wijzig nu" - -#: ../../mod/contacts.php:505 -msgid "Currently blocked" -msgstr "Op dit moment geblokkeerd" - -#: ../../mod/contacts.php:506 -msgid "Currently ignored" -msgstr "Op dit moment genegeerd" - -#: ../../mod/contacts.php:507 -msgid "Currently archived" -msgstr "Op dit moment gearchiveerd" - -#: ../../mod/contacts.php:508 ../../mod/notifications.php:157 -#: ../../mod/notifications.php:204 -msgid "Hide this contact from others" -msgstr "Verberg dit contact voor anderen" - -#: ../../mod/contacts.php:508 +#: ../../include/dbstructure.php:26 +#, php-format msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "Antwoorden of 'vind ik leuk's op je openbare posts kunnen nog zichtbaar zijn" - -#: ../../mod/contacts.php:509 -msgid "Notification for new posts" -msgstr "Meldingen voor nieuwe berichten" - -#: ../../mod/contacts.php:509 -msgid "Send a notification of every new post of this contact" +"\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 "" -#: ../../mod/contacts.php:510 -msgid "Fetch further information for feeds" +#: ../../include/dbstructure.php:31 +#, php-format +msgid "" +"The error message is\n" +"[pre]%s[/pre]" msgstr "" -#: ../../mod/contacts.php:511 -msgid "Disabled" +#: ../../include/dbstructure.php:150 +msgid "Errors encountered creating database tables." +msgstr "Tijdens het aanmaken van databasetabellen zijn fouten vastgesteld." + +#: ../../include/dbstructure.php:208 +msgid "Errors encountered performing database changes." msgstr "" -#: ../../mod/contacts.php:511 -msgid "Fetch information" -msgstr "" +#: ../../include/datetime.php:43 ../../include/datetime.php:45 +msgid "Miscellaneous" +msgstr "Diversen" -#: ../../mod/contacts.php:511 -msgid "Fetch information and keywords" -msgstr "" +#: ../../include/datetime.php:153 ../../include/datetime.php:290 +msgid "year" +msgstr "jaar" -#: ../../mod/contacts.php:513 -msgid "Blacklisted keywords" -msgstr "" +#: ../../include/datetime.php:158 ../../include/datetime.php:291 +msgid "month" +msgstr "maand" -#: ../../mod/contacts.php:513 -msgid "" -"Comma separated list of keywords that should not be converted to hashtags, " -"when \"Fetch information and keywords\" is selected" -msgstr "" +#: ../../include/datetime.php:163 ../../include/datetime.php:293 +msgid "day" +msgstr "dag" -#: ../../mod/contacts.php:564 -msgid "Suggestions" -msgstr "Voorstellen" +#: ../../include/datetime.php:276 +msgid "never" +msgstr "nooit" -#: ../../mod/contacts.php:567 -msgid "Suggest potential friends" -msgstr "Stel vrienden voor" +#: ../../include/datetime.php:282 +msgid "less than a second ago" +msgstr "minder dan een seconde geleden" -#: ../../mod/contacts.php:570 ../../mod/group.php:194 -msgid "All Contacts" -msgstr "Alle Contacten" +#: ../../include/datetime.php:290 +msgid "years" +msgstr "jaren" -#: ../../mod/contacts.php:573 -msgid "Show all contacts" -msgstr "Toon alle contacten" +#: ../../include/datetime.php:291 +msgid "months" +msgstr "maanden" -#: ../../mod/contacts.php:576 -msgid "Unblocked" -msgstr "Niet geblokkeerd" +#: ../../include/datetime.php:292 +msgid "week" +msgstr "week" -#: ../../mod/contacts.php:579 -msgid "Only show unblocked contacts" -msgstr "Toon alleen niet-geblokkeerde contacten" +#: ../../include/datetime.php:292 +msgid "weeks" +msgstr "weken" -#: ../../mod/contacts.php:583 -msgid "Blocked" -msgstr "Geblokkeerd" +#: ../../include/datetime.php:293 +msgid "days" +msgstr "dagen" -#: ../../mod/contacts.php:586 -msgid "Only show blocked contacts" -msgstr "Toon alleen geblokkeerde contacten" +#: ../../include/datetime.php:294 +msgid "hour" +msgstr "uur" -#: ../../mod/contacts.php:590 -msgid "Ignored" -msgstr "Genegeerd" +#: ../../include/datetime.php:294 +msgid "hours" +msgstr "uren" -#: ../../mod/contacts.php:593 -msgid "Only show ignored contacts" -msgstr "Toon alleen genegeerde contacten" +#: ../../include/datetime.php:295 +msgid "minute" +msgstr "minuut" -#: ../../mod/contacts.php:597 -msgid "Archived" -msgstr "Gearchiveerd" +#: ../../include/datetime.php:295 +msgid "minutes" +msgstr "minuten" -#: ../../mod/contacts.php:600 -msgid "Only show archived contacts" -msgstr "Toon alleen gearchiveerde contacten" +#: ../../include/datetime.php:296 +msgid "second" +msgstr "seconde" -#: ../../mod/contacts.php:604 -msgid "Hidden" -msgstr "Verborgen" +#: ../../include/datetime.php:296 +msgid "seconds" +msgstr "secondes" -#: ../../mod/contacts.php:607 -msgid "Only show hidden contacts" -msgstr "Toon alleen verborgen contacten" +#: ../../include/datetime.php:305 +#, php-format +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s geleden" -#: ../../mod/contacts.php:655 -msgid "Mutual Friendship" -msgstr "Wederzijdse vriendschap" +#: ../../include/message.php:15 ../../include/message.php:172 +msgid "[no subject]" +msgstr "[geen onderwerp]" -#: ../../mod/contacts.php:659 -msgid "is a fan of yours" -msgstr "Is een fan van jou" +#: ../../include/delivery.php:456 ../../include/notifier.php:786 +msgid "(no subject)" +msgstr "(geen onderwerp)" -#: ../../mod/contacts.php:663 -msgid "you are a fan of" -msgstr "Jij bent een fan van" +#: ../../include/contact_selectors.php:32 +msgid "Unknown | Not categorised" +msgstr "Onbekend | Niet " -#: ../../mod/contacts.php:680 ../../mod/nogroup.php:41 -msgid "Edit contact" -msgstr "Contact bewerken" +#: ../../include/contact_selectors.php:33 +msgid "Block immediately" +msgstr "Onmiddellijk blokkeren" -#: ../../mod/contacts.php:702 ../../include/nav.php:177 -#: ../../view/theme/diabook/theme.php:125 -msgid "Contacts" -msgstr "Contacten" +#: ../../include/contact_selectors.php:34 +msgid "Shady, spammer, self-marketer" +msgstr "Onbetrouwbaar, spammer, zelfpromotor" -#: ../../mod/contacts.php:706 -msgid "Search your contacts" -msgstr "Doorzoek je contacten" +#: ../../include/contact_selectors.php:35 +msgid "Known to me, but no opinion" +msgstr "Bekend, maar geen mening" -#: ../../mod/contacts.php:707 ../../mod/directory.php:61 -msgid "Finding: " -msgstr "Gevonden:" +#: ../../include/contact_selectors.php:36 +msgid "OK, probably harmless" +msgstr "OK, waarschijnlijk onschadelijk" -#: ../../mod/contacts.php:708 ../../mod/directory.php:63 -#: ../../include/contact_widgets.php:34 -msgid "Find" -msgstr "Zoek" +#: ../../include/contact_selectors.php:37 +msgid "Reputable, has my trust" +msgstr "Gerenommeerd, heeft mijn vertrouwen" -#: ../../mod/contacts.php:713 ../../mod/settings.php:132 -#: ../../mod/settings.php:640 -msgid "Update" -msgstr "Wijzigen" +#: ../../include/contact_selectors.php:56 ../../mod/admin.php:571 +msgid "Frequently" +msgstr "Frequent" -#: ../../mod/contacts.php:717 ../../mod/group.php:171 ../../mod/admin.php:1007 -#: ../../mod/content.php:438 ../../mod/content.php:741 -#: ../../mod/settings.php:677 ../../mod/photos.php:1654 -#: ../../object/Item.php:130 ../../include/conversation.php:614 -msgid "Delete" -msgstr "Verwijder" +#: ../../include/contact_selectors.php:57 ../../mod/admin.php:572 +msgid "Hourly" +msgstr "elk uur" -#: ../../mod/hcard.php:10 -msgid "No profile" -msgstr "Geen profiel" +#: ../../include/contact_selectors.php:58 ../../mod/admin.php:573 +msgid "Twice daily" +msgstr "Twee keer per dag" -#: ../../mod/manage.php:106 -msgid "Manage Identities and/or Pages" -msgstr "Beheer Identiteiten en/of Pagina's" +#: ../../include/contact_selectors.php:59 ../../mod/admin.php:574 +msgid "Daily" +msgstr "dagelijks" -#: ../../mod/manage.php:107 -msgid "" -"Toggle between different identities or community/group pages which share " -"your account details or which you have been granted \"manage\" permissions" -msgstr "Wissel tussen verschillende identiteiten of forum/groeppagina's die jouw accountdetails delen of waar je \"beheerdersrechten\" hebt gekregen." +#: ../../include/contact_selectors.php:60 +msgid "Weekly" +msgstr "wekelijks" -#: ../../mod/manage.php:108 -msgid "Select an identity to manage: " -msgstr "Selecteer een identiteit om te beheren:" +#: ../../include/contact_selectors.php:61 +msgid "Monthly" +msgstr "maandelijks" -#: ../../mod/oexchange.php:25 -msgid "Post successful." -msgstr "Bericht succesvol geplaatst." +#: ../../include/contact_selectors.php:76 ../../mod/dfrn_request.php:836 +msgid "Friendica" +msgstr "Friendica" -#: ../../mod/profperm.php:19 ../../mod/group.php:72 ../../index.php:368 -msgid "Permission denied" -msgstr "Toegang geweigerd" +#: ../../include/contact_selectors.php:77 +msgid "OStatus" +msgstr "OStatus" -#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 -msgid "Invalid profile identifier." -msgstr "Ongeldige profiel-identificatie." +#: ../../include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS/Atom" -#: ../../mod/profperm.php:101 -msgid "Profile Visibility Editor" -msgstr "" +#: ../../include/contact_selectors.php:79 +#: ../../include/contact_selectors.php:86 ../../mod/admin.php:1003 +#: ../../mod/admin.php:1015 ../../mod/admin.php:1016 ../../mod/admin.php:1031 +msgid "Email" +msgstr "E-mail" -#: ../../mod/profperm.php:103 ../../mod/newmember.php:32 ../../boot.php:2119 -#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:87 -#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:124 -msgid "Profile" -msgstr "Profiel" +#: ../../include/contact_selectors.php:80 ../../mod/settings.php:741 +#: ../../mod/dfrn_request.php:838 +msgid "Diaspora" +msgstr "Diaspora" -#: ../../mod/profperm.php:105 ../../mod/group.php:224 -msgid "Click on a contact to add or remove." -msgstr "Klik op een contact om het toe te voegen of te verwijderen." - -#: ../../mod/profperm.php:114 -msgid "Visible To" -msgstr "Zichtbaar voor" - -#: ../../mod/profperm.php:130 -msgid "All Contacts (with secure profile access)" -msgstr "Alle contacten (met veilige profieltoegang)" - -#: ../../mod/display.php:82 ../../mod/display.php:284 -#: ../../mod/display.php:503 ../../mod/viewsrc.php:15 ../../mod/admin.php:169 -#: ../../mod/admin.php:1052 ../../mod/admin.php:1265 ../../mod/notice.php:15 -#: ../../include/items.php:4516 -msgid "Item not found." -msgstr "Item niet gevonden." - -#: ../../mod/display.php:212 ../../mod/videos.php:115 -#: ../../mod/viewcontacts.php:19 ../../mod/community.php:18 -#: ../../mod/dfrn_request.php:762 ../../mod/search.php:89 -#: ../../mod/directory.php:33 ../../mod/photos.php:920 -msgid "Public access denied." -msgstr "Niet vrij toegankelijk" - -#: ../../mod/display.php:332 ../../mod/profile.php:155 -msgid "Access to this profile has been restricted." -msgstr "Toegang tot dit profiel is beperkt." - -#: ../../mod/display.php:496 -msgid "Item has been removed." -msgstr "Item is verwijderd." - -#: ../../mod/newmember.php:6 -msgid "Welcome to Friendica" -msgstr "Welkom bij Friendica" - -#: ../../mod/newmember.php:8 -msgid "New Member Checklist" -msgstr "Checklist voor nieuwe leden" - -#: ../../mod/newmember.php:12 -msgid "" -"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." -msgstr "We willen je een paar tips en verwijzingen aanreiken om je een aangename ervaring te bezorgen. Klik op een item om de relevante pagina's te bezoeken. Een verwijzing naar deze pagina zal twee weken lang na je registratie zichtbaar zijn op je tijdlijn. Daarna zal de verwijzing stilletjes verdwijnen." - -#: ../../mod/newmember.php:14 -msgid "Getting Started" -msgstr "Aan de slag" - -#: ../../mod/newmember.php:18 -msgid "Friendica Walk-Through" -msgstr "Doorloop Friendica" - -#: ../../mod/newmember.php:18 -msgid "" -"On your Quick Start page - find a brief introduction to your " -"profile and network tabs, make some new connections, and find some groups to" -" join." -msgstr "Op je Snelstart pagina kun je een korte inleiding vinden over je profiel en netwerk tabs, om enkele nieuwe connecties te leggen en groepen te vinden om lid van te worden." - -#: ../../mod/newmember.php:22 ../../mod/admin.php:1104 -#: ../../mod/admin.php:1325 ../../mod/settings.php:85 -#: ../../include/nav.php:172 ../../view/theme/diabook/theme.php:544 -#: ../../view/theme/diabook/theme.php:648 -msgid "Settings" -msgstr "Instellingen" - -#: ../../mod/newmember.php:26 -msgid "Go to Your Settings" -msgstr "Ga naar je instellingen" - -#: ../../mod/newmember.php:26 -msgid "" -"On your Settings page - change your initial password. Also make a " -"note of your Identity Address. This looks just like an email address - and " -"will be useful in making friends on the free social web." -msgstr "Verander je initieel wachtwoord op je instellingenpagina. Noteer ook het adres van je identiteit. Dit ziet er uit als een e-mailadres - en zal nuttig zijn om vrienden te maken op het vrije sociale web." - -#: ../../mod/newmember.php:28 -msgid "" -"Review the other settings, particularly the privacy settings. An unpublished" -" directory listing is like having an unlisted phone number. In general, you " -"should probably publish your listing - unless all of your friends and " -"potential friends know exactly how to find you." -msgstr "Controleer ook de andere instellingen, in het bijzonder de privacy-instellingen. Een niet-gepubliceerd adres is zoals een privé-telefoonnummer. In het algemeen wil je waarschijnlijk je adres publiceren - tenzij al je vrienden en mogelijke vrienden precies weten hoe je te vinden." - -#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244 -#: ../../mod/profiles.php:699 -msgid "Upload Profile Photo" -msgstr "Profielfoto uploaden" - -#: ../../mod/newmember.php:36 -msgid "" -"Upload a profile photo if you have not done so already. Studies have shown " -"that people with real photos of themselves are ten times more likely to make" -" friends than people who do not." -msgstr "Upload een profielfoto, als je dat nog niet gedaan hebt. Studies tonen aan dat mensen met echte foto's van zichzelf tien keer gemakkelijker vrienden maken dan mensen die dat niet doen." - -#: ../../mod/newmember.php:38 -msgid "Edit Your Profile" -msgstr "Bewerk je profiel" - -#: ../../mod/newmember.php:38 -msgid "" -"Edit your default profile to your liking. Review the " -"settings for hiding your list of friends and hiding the profile from unknown" -" visitors." -msgstr "Bewerk je standaard profiel zoals je wilt. Controleer de instellingen om je vriendenlijst te verbergen, en om je profiel voor ongekende bezoekers te verbergen." - -#: ../../mod/newmember.php:40 -msgid "Profile Keywords" -msgstr "Sleutelwoorden voor dit profiel" - -#: ../../mod/newmember.php:40 -msgid "" -"Set some public keywords for your default profile which describe your " -"interests. We may be able to find other people with similar interests and " -"suggest friendships." -msgstr "Stel enkele openbare sleutelwoorden in voor je standaard profiel die je interesses beschrijven. We kunnen dan misschien mensen vinden met gelijkaardige interesses, en vrienden voorstellen." - -#: ../../mod/newmember.php:44 -msgid "Connecting" -msgstr "Verbinding aan het maken" - -#: ../../mod/newmember.php:49 ../../mod/newmember.php:51 -#: ../../include/contact_selectors.php:81 +#: ../../include/contact_selectors.php:81 ../../mod/newmember.php:49 +#: ../../mod/newmember.php:51 msgid "Facebook" msgstr "Facebook" -#: ../../mod/newmember.php:49 -msgid "" -"Authorise the Facebook Connector if you currently have a Facebook account " -"and we will (optionally) import all your Facebook friends and conversations." -msgstr "Machtig de Facebook Connector als je een Facebook account hebt. We zullen (optioneel) al je Facebook vrienden en conversaties importeren." +#: ../../include/contact_selectors.php:82 +msgid "Zot!" +msgstr "Zot!" -#: ../../mod/newmember.php:51 -msgid "" -"If this is your own personal server, installing the Facebook addon " -"may ease your transition to the free social web." -msgstr "Als dit jouw eigen persoonlijke server is kan het installeren van de Facebook toevoeging je overgang naar het vrije sociale web vergemakkelijken." +#: ../../include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "Linkedln" -#: ../../mod/newmember.php:56 -msgid "Importing Emails" -msgstr "E-mails importeren" +#: ../../include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "XMPP/IM" -#: ../../mod/newmember.php:56 -msgid "" -"Enter your email access information on your Connector Settings page if you " -"wish to import and interact with friends or mailing lists from your email " -"INBOX" -msgstr "Vul je e-mailtoegangsinformatie in op je pagina met verbindingsinstellingen als je vrienden of mailinglijsten uit je e-mail-inbox wilt importeren, en met hen wilt communiceren" +#: ../../include/contact_selectors.php:85 +msgid "MySpace" +msgstr "Myspace" -#: ../../mod/newmember.php:58 -msgid "Go to Your Contacts Page" -msgstr "Ga naar je contactenpagina" +#: ../../include/contact_selectors.php:87 +msgid "Google+" +msgstr "Google+" -#: ../../mod/newmember.php:58 -msgid "" -"Your Contacts page is your gateway to managing friendships and connecting " -"with friends on other networks. Typically you enter their address or site " -"URL in the Add New Contact dialog." -msgstr "Je contactenpagina is jouw poort om vriendschappen te beheren en verbinding te leggen met vrienden op andere netwerken. Je kunt hun adres of URL toevoegen in de Voeg nieuw contact toe dialoog." +#: ../../include/contact_selectors.php:88 +msgid "pump.io" +msgstr "pump.io" -#: ../../mod/newmember.php:60 -msgid "Go to Your Site's Directory" -msgstr "Ga naar de gids van je website" +#: ../../include/contact_selectors.php:89 +msgid "Twitter" +msgstr "Twitter" -#: ../../mod/newmember.php:60 -msgid "" -"The Directory page lets you find other people in this network or other " -"federated sites. Look for a Connect or Follow link on " -"their profile page. Provide your own Identity Address if requested." -msgstr "In de gids vind je andere mensen in dit netwerk of op andere federatieve sites. Zoek naar het woord Connect of Follow op hun profielpagina (meestal aan de linkerkant). Vul je eigen identiteitsadres in wanneer daar om wordt gevraagd." +#: ../../include/contact_selectors.php:90 +msgid "Diaspora Connector" +msgstr "Diaspora-connector" -#: ../../mod/newmember.php:62 -msgid "Finding New People" -msgstr "Nieuwe mensen vinden" +#: ../../include/contact_selectors.php:91 +msgid "Statusnet" +msgstr "Statusnet" -#: ../../mod/newmember.php:62 -msgid "" -"On the side panel of the Contacts page are several tools to find new " -"friends. We can match people by interest, look up people by name or " -"interest, and provide suggestions based on network relationships. On a brand" -" new site, friend suggestions will usually begin to be populated within 24 " -"hours." -msgstr "Op het zijpaneel van de Contacten pagina vind je verschillende tools om nieuwe vrienden te zoeken. We kunnen mensen op interesses matchen, mensen opzoeken op naam of hobby, en suggesties doen gebaseerd op netwerk-relaties. Op een nieuwe webstek beginnen vriendschapssuggesties meestal binnen de 24 uur beschikbaar te worden." +#: ../../include/contact_selectors.php:92 +msgid "App.net" +msgstr "" -#: ../../mod/newmember.php:66 ../../include/group.php:270 -msgid "Groups" -msgstr "Groepen" - -#: ../../mod/newmember.php:70 -msgid "Group Your Contacts" -msgstr "Groepeer je contacten" - -#: ../../mod/newmember.php:70 -msgid "" -"Once you have made some friends, organize them into private conversation " -"groups from the sidebar of your Contacts page and then you can interact with" -" each group privately on your Network page." -msgstr "Als je een aantal vrienden gemaakt hebt kun je ze in je eigen conversatiegroepen indelen vanuit de zijbalk van je 'Conacten' pagina, en dan kun je met elke groep apart contact houden op je Netwerk pagina. " - -#: ../../mod/newmember.php:73 -msgid "Why Aren't My Posts Public?" -msgstr "Waarom zijn mijn berichten niet openbaar?" - -#: ../../mod/newmember.php:73 -msgid "" -"Friendica respects your privacy. By default, your posts will only show up to" -" people you've added as friends. For more information, see the help section " -"from the link above." -msgstr "Friendica respecteert je privacy. Standaard zullen je berichten alleen zichtbaar zijn voor personen die jij als vriend hebt toegevoegd. Lees de help (zie de verwijzing hierboven) voor meer informatie." - -#: ../../mod/newmember.php:78 -msgid "Getting Help" -msgstr "Hulp krijgen" - -#: ../../mod/newmember.php:82 -msgid "Go to the Help Section" -msgstr "Ga naar de help" - -#: ../../mod/newmember.php:82 -msgid "" -"Our help pages may be consulted for detail on other program" -" features and resources." -msgstr "Je kunt onze help pagina's raadplegen voor gedetailleerde informatie over andere functies van dit programma." - -#: ../../mod/openid.php:24 -msgid "OpenID protocol error. No ID returned." -msgstr "OpenID protocol fout. Geen ID Gevonden." - -#: ../../mod/openid.php:53 -msgid "" -"Account not found and OpenID registration is not permitted on this site." -msgstr "Account niet gevonden, en OpenID-registratie is niet toegelaten op deze website." - -#: ../../mod/openid.php:93 ../../include/auth.php:112 -#: ../../include/auth.php:175 -msgid "Login failed." -msgstr "Login mislukt." - -#: ../../mod/profile_photo.php:44 -msgid "Image uploaded but image cropping failed." -msgstr "Afbeelding opgeladen, maar bijsnijden mislukt." - -#: ../../mod/profile_photo.php:74 ../../mod/profile_photo.php:81 -#: ../../mod/profile_photo.php:88 ../../mod/profile_photo.php:204 -#: ../../mod/profile_photo.php:296 ../../mod/profile_photo.php:305 -#: ../../mod/photos.php:155 ../../mod/photos.php:731 ../../mod/photos.php:1187 -#: ../../mod/photos.php:1210 ../../include/user.php:335 -#: ../../include/user.php:342 ../../include/user.php:349 -#: ../../view/theme/diabook/theme.php:500 -msgid "Profile Photos" -msgstr "Profielfoto's" - -#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84 -#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308 +#: ../../include/diaspora.php:621 ../../include/conversation.php:172 +#: ../../mod/dfrn_confirm.php:486 #, php-format -msgid "Image size reduction [%s] failed." -msgstr "Verkleining van de afbeelding [%s] mislukt." +msgid "%1$s is now friends with %2$s" +msgstr "%1$s is nu bevriend met %2$s" -#: ../../mod/profile_photo.php:118 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Shift-herlaad de pagina, of maak de browser cache leeg als nieuwe foto's niet onmiddellijk verschijnen." +#: ../../include/diaspora.php:704 +msgid "Sharing notification from Diaspora network" +msgstr "" -#: ../../mod/profile_photo.php:128 -msgid "Unable to process image" -msgstr "Ik kan de afbeelding niet verwerken" +#: ../../include/diaspora.php:2444 +msgid "Attachments:" +msgstr "Bijlagen:" -#: ../../mod/profile_photo.php:144 ../../mod/wall_upload.php:122 +#: ../../include/conversation.php:140 ../../mod/like.php:168 #, php-format -msgid "Image exceeds size limit of %d" -msgstr "Afbeelding is groter dan de toegestane %d" +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "%1$s vindt het %3$s van %2$s niet leuk" -#: ../../mod/profile_photo.php:153 ../../mod/wall_upload.php:144 -#: ../../mod/photos.php:807 -msgid "Unable to process image." -msgstr "Niet in staat om de afbeelding te verwerken" - -#: ../../mod/profile_photo.php:242 -msgid "Upload File:" -msgstr "Upload bestand:" - -#: ../../mod/profile_photo.php:243 -msgid "Select a profile:" -msgstr "Kies een profiel:" - -#: ../../mod/profile_photo.php:245 -msgid "Upload" -msgstr "Uploaden" - -#: ../../mod/profile_photo.php:248 ../../mod/settings.php:1062 -msgid "or" -msgstr "of" - -#: ../../mod/profile_photo.php:248 -msgid "skip this step" -msgstr "Deze stap overslaan" - -#: ../../mod/profile_photo.php:248 -msgid "select a photo from your photo albums" -msgstr "Kies een foto uit je fotoalbums" - -#: ../../mod/profile_photo.php:262 -msgid "Crop Image" -msgstr "Afbeelding bijsnijden" - -#: ../../mod/profile_photo.php:263 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Pas het afsnijden van de afbeelding aan voor het beste resultaat." - -#: ../../mod/profile_photo.php:265 -msgid "Done Editing" -msgstr "Wijzigingen compleet" - -#: ../../mod/profile_photo.php:299 -msgid "Image uploaded successfully." -msgstr "Uploaden van afbeelding gelukt." - -#: ../../mod/profile_photo.php:301 ../../mod/wall_upload.php:172 -#: ../../mod/photos.php:834 -msgid "Image upload failed." -msgstr "Uploaden van afbeelding mislukt." - -#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:149 -#: ../../include/conversation.php:126 ../../include/conversation.php:254 -#: ../../include/text.php:1968 ../../include/diaspora.php:2087 -#: ../../view/theme/diabook/theme.php:471 -msgid "photo" -msgstr "foto" - -#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:149 -#: ../../mod/like.php:319 ../../include/conversation.php:121 -#: ../../include/conversation.php:130 ../../include/conversation.php:249 -#: ../../include/conversation.php:258 ../../include/diaspora.php:2087 -#: ../../view/theme/diabook/theme.php:466 -#: ../../view/theme/diabook/theme.php:475 -msgid "status" -msgstr "status" - -#: ../../mod/subthread.php:103 +#: ../../include/conversation.php:206 #, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s volgt %3$s van %2$s" +msgid "%1$s poked %2$s" +msgstr "%1$s stootte %2$s aan" -#: ../../mod/tagrm.php:41 -msgid "Tag removed" -msgstr "Label verwijderd" +#: ../../include/conversation.php:226 ../../mod/mood.php:62 +#, php-format +msgid "%1$s is currently %2$s" +msgstr "%1$s is op dit moment %2$s" -#: ../../mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "Verwijder label van item" +#: ../../include/conversation.php:265 ../../mod/tagger.php:95 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s labelde %3$s van %2$s met %4$s" -#: ../../mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "Selecteer een label om te verwijderen: " +#: ../../include/conversation.php:290 +msgid "post/item" +msgstr "bericht/item" -#: ../../mod/tagrm.php:93 ../../mod/delegate.php:139 -msgid "Remove" -msgstr "Verwijderen" +#: ../../include/conversation.php:291 +#, php-format +msgid "%1$s marked %2$s's %3$s as favorite" +msgstr "%1$s markeerde %2$s's %3$s als favoriet" -#: ../../mod/filer.php:30 ../../include/conversation.php:1006 -#: ../../include/conversation.php:1024 +#: ../../include/conversation.php:612 ../../object/Item.php:129 +#: ../../mod/photos.php:1653 ../../mod/content.php:437 +#: ../../mod/content.php:740 +msgid "Select" +msgstr "Kies" + +#: ../../include/conversation.php:613 ../../object/Item.php:130 +#: ../../mod/group.php:171 ../../mod/settings.php:682 +#: ../../mod/contacts.php:733 ../../mod/admin.php:1007 +#: ../../mod/photos.php:1654 ../../mod/content.php:438 +#: ../../mod/content.php:741 +msgid "Delete" +msgstr "Verwijder" + +#: ../../include/conversation.php:653 ../../object/Item.php:326 +#: ../../object/Item.php:327 ../../mod/content.php:471 +#: ../../mod/content.php:852 ../../mod/content.php:853 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Bekijk het profiel van %s @ %s" + +#: ../../include/conversation.php:665 ../../object/Item.php:316 +msgid "Categories:" +msgstr "Categorieën:" + +#: ../../include/conversation.php:666 ../../object/Item.php:317 +msgid "Filed under:" +msgstr "Bewaard onder:" + +#: ../../include/conversation.php:673 ../../object/Item.php:340 +#: ../../mod/content.php:481 ../../mod/content.php:864 +#, php-format +msgid "%s from %s" +msgstr "%s van %s" + +#: ../../include/conversation.php:689 ../../mod/content.php:497 +msgid "View in context" +msgstr "In context bekijken" + +#: ../../include/conversation.php:691 ../../include/conversation.php:1108 +#: ../../object/Item.php:364 ../../mod/wallmessage.php:156 +#: ../../mod/editpost.php:124 ../../mod/photos.php:1545 +#: ../../mod/message.php:334 ../../mod/message.php:565 +#: ../../mod/content.php:499 ../../mod/content.php:883 +msgid "Please wait" +msgstr "Even geduld" + +#: ../../include/conversation.php:771 +msgid "remove" +msgstr "verwijder" + +#: ../../include/conversation.php:775 +msgid "Delete Selected Items" +msgstr "Geselecteerde items verwijderen" + +#: ../../include/conversation.php:874 +msgid "Follow Thread" +msgstr "Conversatie volgen" + +#: ../../include/conversation.php:943 +#, php-format +msgid "%s likes this." +msgstr "%s vindt dit leuk." + +#: ../../include/conversation.php:943 +#, php-format +msgid "%s doesn't like this." +msgstr "%s vindt dit niet leuk." + +#: ../../include/conversation.php:948 +#, php-format +msgid "%2$d people like this" +msgstr "%2$d mensen vinden dit leuk" + +#: ../../include/conversation.php:951 +#, php-format +msgid "%2$d people don't like this" +msgstr "%2$d people vinden dit niet leuk" + +#: ../../include/conversation.php:965 +msgid "and" +msgstr "en" + +#: ../../include/conversation.php:971 +#, php-format +msgid ", and %d other people" +msgstr ", en %d andere mensen" + +#: ../../include/conversation.php:973 +#, php-format +msgid "%s like this." +msgstr "%s vindt dit leuk." + +#: ../../include/conversation.php:973 +#, php-format +msgid "%s don't like this." +msgstr "%s vindt dit niet leuk." + +#: ../../include/conversation.php:1000 ../../include/conversation.php:1018 +msgid "Visible to everybody" +msgstr "Zichtbaar voor iedereen" + +#: ../../include/conversation.php:1001 ../../include/conversation.php:1019 +#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135 +#: ../../mod/message.php:283 ../../mod/message.php:291 +#: ../../mod/message.php:466 ../../mod/message.php:474 +msgid "Please enter a link URL:" +msgstr "Vul een internetadres/URL in:" + +#: ../../include/conversation.php:1002 ../../include/conversation.php:1020 +msgid "Please enter a video link/URL:" +msgstr "Vul een videolink/URL in:" + +#: ../../include/conversation.php:1003 ../../include/conversation.php:1021 +msgid "Please enter an audio link/URL:" +msgstr "Vul een audiolink/URL in:" + +#: ../../include/conversation.php:1004 ../../include/conversation.php:1022 +msgid "Tag term:" +msgstr "Label:" + +#: ../../include/conversation.php:1005 ../../include/conversation.php:1023 +#: ../../mod/filer.php:30 msgid "Save to Folder:" msgstr "Bewaren in map:" -#: ../../mod/filer.php:30 -msgid "- select -" -msgstr "- Kies -" +#: ../../include/conversation.php:1006 ../../include/conversation.php:1024 +msgid "Where are you right now?" +msgstr "Waar ben je nu?" -#: ../../mod/filer.php:31 ../../mod/editpost.php:109 ../../mod/notes.php:63 -#: ../../include/text.php:956 +#: ../../include/conversation.php:1007 +msgid "Delete item(s)?" +msgstr "Item(s) verwijderen?" + +#: ../../include/conversation.php:1050 +msgid "Post to Email" +msgstr "Verzenden per e-mail" + +#: ../../include/conversation.php:1055 +#, php-format +msgid "Connectors disabled, since \"%s\" is enabled." +msgstr "" + +#: ../../include/conversation.php:1056 ../../mod/settings.php:1033 +msgid "Hide your profile details from unknown viewers?" +msgstr "Je profieldetails verbergen voor onbekende bezoekers?" + +#: ../../include/conversation.php:1089 ../../mod/photos.php:1544 +msgid "Share" +msgstr "Delen" + +#: ../../include/conversation.php:1090 ../../mod/wallmessage.php:154 +#: ../../mod/editpost.php:110 ../../mod/message.php:332 +#: ../../mod/message.php:562 +msgid "Upload photo" +msgstr "Foto uploaden" + +#: ../../include/conversation.php:1091 ../../mod/editpost.php:111 +msgid "upload photo" +msgstr "Foto uploaden" + +#: ../../include/conversation.php:1092 ../../mod/editpost.php:112 +msgid "Attach file" +msgstr "Bestand bijvoegen" + +#: ../../include/conversation.php:1093 ../../mod/editpost.php:113 +msgid "attach file" +msgstr "bestand bijvoegen" + +#: ../../include/conversation.php:1094 ../../mod/wallmessage.php:155 +#: ../../mod/editpost.php:114 ../../mod/message.php:333 +#: ../../mod/message.php:563 +msgid "Insert web link" +msgstr "Voeg een webadres in" + +#: ../../include/conversation.php:1095 ../../mod/editpost.php:115 +msgid "web link" +msgstr "webadres" + +#: ../../include/conversation.php:1096 ../../mod/editpost.php:116 +msgid "Insert video link" +msgstr "Voeg video toe" + +#: ../../include/conversation.php:1097 ../../mod/editpost.php:117 +msgid "video link" +msgstr "video adres" + +#: ../../include/conversation.php:1098 ../../mod/editpost.php:118 +msgid "Insert audio link" +msgstr "Voeg audio adres toe" + +#: ../../include/conversation.php:1099 ../../mod/editpost.php:119 +msgid "audio link" +msgstr "audio adres" + +#: ../../include/conversation.php:1100 ../../mod/editpost.php:120 +msgid "Set your location" +msgstr "Stel uw locatie in" + +#: ../../include/conversation.php:1101 ../../mod/editpost.php:121 +msgid "set location" +msgstr "Stel uw locatie in" + +#: ../../include/conversation.php:1102 ../../mod/editpost.php:122 +msgid "Clear browser location" +msgstr "Verwijder locatie uit uw webbrowser" + +#: ../../include/conversation.php:1103 ../../mod/editpost.php:123 +msgid "clear location" +msgstr "Verwijder locatie uit uw webbrowser" + +#: ../../include/conversation.php:1105 ../../mod/editpost.php:137 +msgid "Set title" +msgstr "Titel plaatsen" + +#: ../../include/conversation.php:1107 ../../mod/editpost.php:139 +msgid "Categories (comma-separated list)" +msgstr "Categorieën (komma-gescheiden lijst)" + +#: ../../include/conversation.php:1109 ../../mod/editpost.php:125 +msgid "Permission settings" +msgstr "Instellingen van rechten" + +#: ../../include/conversation.php:1110 +msgid "permissions" +msgstr "rechten" + +#: ../../include/conversation.php:1118 ../../mod/editpost.php:133 +msgid "CC: email addresses" +msgstr "CC: e-mailadressen" + +#: ../../include/conversation.php:1119 ../../mod/editpost.php:134 +msgid "Public post" +msgstr "Openbare post" + +#: ../../include/conversation.php:1121 ../../mod/editpost.php:140 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Voorbeeld: bob@voorbeeld.nl, an@voorbeeld.be" + +#: ../../include/conversation.php:1125 ../../object/Item.php:687 +#: ../../mod/editpost.php:145 ../../mod/photos.php:1566 +#: ../../mod/photos.php:1610 ../../mod/photos.php:1698 +#: ../../mod/content.php:719 +msgid "Preview" +msgstr "Voorvertoning" + +#: ../../include/conversation.php:1134 +msgid "Post to Groups" +msgstr "Verzenden naar Groepen" + +#: ../../include/conversation.php:1135 +msgid "Post to Contacts" +msgstr "Verzenden naar Contacten" + +#: ../../include/conversation.php:1136 +msgid "Private post" +msgstr "Privé verzending" + +#: ../../include/text.php:297 +msgid "newer" +msgstr "nieuwere berichten" + +#: ../../include/text.php:299 +msgid "older" +msgstr "oudere berichten" + +#: ../../include/text.php:304 +msgid "prev" +msgstr "vorige" + +#: ../../include/text.php:306 +msgid "first" +msgstr "eerste" + +#: ../../include/text.php:338 +msgid "last" +msgstr "laatste" + +#: ../../include/text.php:341 +msgid "next" +msgstr "volgende" + +#: ../../include/text.php:396 +msgid "Loading more entries..." +msgstr "" + +#: ../../include/text.php:397 +msgid "The end" +msgstr "" + +#: ../../include/text.php:870 +msgid "No contacts" +msgstr "Geen contacten" + +#: ../../include/text.php:879 +#, php-format +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "%d contact" +msgstr[1] "%d contacten" + +#: ../../include/text.php:891 ../../mod/viewcontacts.php:78 +msgid "View Contacts" +msgstr "Bekijk contacten" + +#: ../../include/text.php:971 ../../mod/editpost.php:109 +#: ../../mod/notes.php:63 ../../mod/filer.php:31 msgid "Save" msgstr "Bewaren" -#: ../../mod/follow.php:27 -msgid "Contact added" -msgstr "Contact toegevoegd" +#: ../../include/text.php:1020 +msgid "poke" +msgstr "aanstoten" -#: ../../mod/item.php:113 -msgid "Unable to locate original post." -msgstr "Ik kan de originele post niet meer vinden." +#: ../../include/text.php:1020 +msgid "poked" +msgstr "aangestoten" -#: ../../mod/item.php:345 -msgid "Empty post discarded." -msgstr "Lege post weggegooid." +#: ../../include/text.php:1021 +msgid "ping" +msgstr "ping" -#: ../../mod/item.php:484 ../../mod/wall_upload.php:169 -#: ../../mod/wall_upload.php:178 ../../mod/wall_upload.php:185 -#: ../../include/Photo.php:916 ../../include/Photo.php:931 -#: ../../include/Photo.php:938 ../../include/Photo.php:960 -#: ../../include/message.php:144 -msgid "Wall Photos" +#: ../../include/text.php:1021 +msgid "pinged" +msgstr "gepingd" + +#: ../../include/text.php:1022 +msgid "prod" +msgstr "porren" + +#: ../../include/text.php:1022 +msgid "prodded" +msgstr "gepord" + +#: ../../include/text.php:1023 +msgid "slap" +msgstr "slaan" + +#: ../../include/text.php:1023 +msgid "slapped" +msgstr "geslagen" + +#: ../../include/text.php:1024 +msgid "finger" +msgstr "finger" + +#: ../../include/text.php:1024 +msgid "fingered" +msgstr "gerfingerd" + +#: ../../include/text.php:1025 +msgid "rebuff" +msgstr "afpoeieren" + +#: ../../include/text.php:1025 +msgid "rebuffed" +msgstr "afgepoeierd" + +#: ../../include/text.php:1039 +msgid "happy" +msgstr "Blij" + +#: ../../include/text.php:1040 +msgid "sad" +msgstr "Verdrietig" + +#: ../../include/text.php:1041 +msgid "mellow" +msgstr "mellow" + +#: ../../include/text.php:1042 +msgid "tired" +msgstr "vermoeid" + +#: ../../include/text.php:1043 +msgid "perky" +msgstr "parmantig" + +#: ../../include/text.php:1044 +msgid "angry" +msgstr "boos" + +#: ../../include/text.php:1045 +msgid "stupified" +msgstr "verbijsterd" + +#: ../../include/text.php:1046 +msgid "puzzled" +msgstr "onzeker" + +#: ../../include/text.php:1047 +msgid "interested" +msgstr "Geïnteresseerd" + +#: ../../include/text.php:1048 +msgid "bitter" +msgstr "bitter" + +#: ../../include/text.php:1049 +msgid "cheerful" +msgstr "vrolijk" + +#: ../../include/text.php:1050 +msgid "alive" +msgstr "levend" + +#: ../../include/text.php:1051 +msgid "annoyed" +msgstr "verveeld" + +#: ../../include/text.php:1052 +msgid "anxious" +msgstr "bezorgd" + +#: ../../include/text.php:1053 +msgid "cranky" +msgstr "humeurig " + +#: ../../include/text.php:1054 +msgid "disturbed" +msgstr "verontrust" + +#: ../../include/text.php:1055 +msgid "frustrated" +msgstr "gefrustreerd" + +#: ../../include/text.php:1056 +msgid "motivated" +msgstr "gemotiveerd" + +#: ../../include/text.php:1057 +msgid "relaxed" +msgstr "ontspannen" + +#: ../../include/text.php:1058 +msgid "surprised" +msgstr "verbaasd" + +#: ../../include/text.php:1228 +msgid "Monday" +msgstr "Maandag" + +#: ../../include/text.php:1228 +msgid "Tuesday" +msgstr "Dinsdag" + +#: ../../include/text.php:1228 +msgid "Wednesday" +msgstr "Woensdag" + +#: ../../include/text.php:1228 +msgid "Thursday" +msgstr "Donderdag" + +#: ../../include/text.php:1228 +msgid "Friday" +msgstr "Vrijdag" + +#: ../../include/text.php:1228 +msgid "Saturday" +msgstr "Zaterdag" + +#: ../../include/text.php:1228 +msgid "Sunday" +msgstr "Zondag" + +#: ../../include/text.php:1232 +msgid "January" +msgstr "Januari" + +#: ../../include/text.php:1232 +msgid "February" +msgstr "Februari" + +#: ../../include/text.php:1232 +msgid "March" +msgstr "Maart" + +#: ../../include/text.php:1232 +msgid "April" +msgstr "April" + +#: ../../include/text.php:1232 +msgid "May" +msgstr "Mei" + +#: ../../include/text.php:1232 +msgid "June" +msgstr "Juni" + +#: ../../include/text.php:1232 +msgid "July" +msgstr "Juli" + +#: ../../include/text.php:1232 +msgid "August" +msgstr "Augustus" + +#: ../../include/text.php:1232 +msgid "September" +msgstr "September" + +#: ../../include/text.php:1232 +msgid "October" +msgstr "Oktober" + +#: ../../include/text.php:1232 +msgid "November" +msgstr "November" + +#: ../../include/text.php:1232 +msgid "December" +msgstr "December" + +#: ../../include/text.php:1422 ../../mod/videos.php:301 +msgid "View Video" +msgstr "Bekijk Video" + +#: ../../include/text.php:1454 +msgid "bytes" +msgstr "bytes" + +#: ../../include/text.php:1478 ../../include/text.php:1490 +msgid "Click to open/close" +msgstr "klik om te openen/sluiten" + +#: ../../include/text.php:1664 ../../include/text.php:1674 +#: ../../mod/events.php:335 +msgid "link to source" +msgstr "Verwijzing naar bron" + +#: ../../include/text.php:1731 +msgid "Select an alternate language" +msgstr "Kies een andere taal" + +#: ../../include/text.php:1987 +msgid "activity" +msgstr "activiteit" + +#: ../../include/text.php:1989 ../../object/Item.php:389 +#: ../../object/Item.php:402 ../../mod/content.php:605 +msgid "comment" +msgid_plural "comments" +msgstr[0] "reactie" +msgstr[1] "reacties" + +#: ../../include/text.php:1990 +msgid "post" +msgstr "bericht" + +#: ../../include/text.php:2158 +msgid "Item filed" +msgstr "Item bewaard" + +#: ../../include/auth.php:38 +msgid "Logged out." +msgstr "Uitgelogd." + +#: ../../include/auth.php:112 ../../include/auth.php:175 +#: ../../mod/openid.php:93 +msgid "Login failed." +msgstr "Login mislukt." + +#: ../../include/auth.php:128 ../../include/user.php:67 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." msgstr "" -#: ../../mod/item.php:938 -msgid "System error. Post not saved." -msgstr "Systeemfout. Post niet bewaard." +#: ../../include/auth.php:128 ../../include/user.php:67 +msgid "The error message was:" +msgstr "De foutboodschap was:" -#: ../../mod/item.php:964 +#: ../../include/bbcode.php:433 ../../include/bbcode.php:1066 +#: ../../include/bbcode.php:1067 +msgid "Image/photo" +msgstr "Afbeelding/foto" + +#: ../../include/bbcode.php:531 +#, php-format +msgid "%2$s %3$s" +msgstr "" + +#: ../../include/bbcode.php:565 #, php-format msgid "" -"This message was sent to you by %s, a member of the Friendica social " -"network." -msgstr "Dit bericht werd naar jou gestuurd door %s, een lid van het Friendica sociale netwerk." +"%s wrote the following post" +msgstr "" -#: ../../mod/item.php:966 -#, php-format -msgid "You may visit them online at %s" -msgstr "Je kunt ze online bezoeken op %s" +#: ../../include/bbcode.php:1030 ../../include/bbcode.php:1050 +msgid "$1 wrote:" +msgstr "$1 schreef:" -#: ../../mod/item.php:967 +#: ../../include/bbcode.php:1075 ../../include/bbcode.php:1076 +msgid "Encrypted content" +msgstr "Versleutelde inhoud" + +#: ../../include/security.php:22 +msgid "Welcome " +msgstr "Welkom" + +#: ../../include/security.php:23 +msgid "Please upload a profile photo." +msgstr "Upload een profielfoto." + +#: ../../include/security.php:26 +msgid "Welcome back " +msgstr "Welkom terug " + +#: ../../include/security.php:366 msgid "" -"Please contact the sender by replying to this post if you do not wish to " -"receive these messages." -msgstr "Contacteer de afzender door op dit bericht te antwoorden als je deze berichten niet wilt ontvangen." +"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 "" -#: ../../mod/item.php:971 +#: ../../include/oembed.php:213 +msgid "Embedded content" +msgstr "Ingebedde inhoud" + +#: ../../include/oembed.php:222 +msgid "Embedding disabled" +msgstr "Inbedden uitgeschakeld" + +#: ../../include/profile_selectors.php:6 +msgid "Male" +msgstr "Man" + +#: ../../include/profile_selectors.php:6 +msgid "Female" +msgstr "Vrouw" + +#: ../../include/profile_selectors.php:6 +msgid "Currently Male" +msgstr "Momenteel mannelijk" + +#: ../../include/profile_selectors.php:6 +msgid "Currently Female" +msgstr "Momenteel vrouwelijk" + +#: ../../include/profile_selectors.php:6 +msgid "Mostly Male" +msgstr "Meestal mannelijk" + +#: ../../include/profile_selectors.php:6 +msgid "Mostly Female" +msgstr "Meestal vrouwelijk" + +#: ../../include/profile_selectors.php:6 +msgid "Transgender" +msgstr "Transgender" + +#: ../../include/profile_selectors.php:6 +msgid "Intersex" +msgstr "Interseksueel" + +#: ../../include/profile_selectors.php:6 +msgid "Transsexual" +msgstr "Transseksueel" + +#: ../../include/profile_selectors.php:6 +msgid "Hermaphrodite" +msgstr "Hermafrodiet" + +#: ../../include/profile_selectors.php:6 +msgid "Neuter" +msgstr "Genderneutraal" + +#: ../../include/profile_selectors.php:6 +msgid "Non-specific" +msgstr "Niet-specifiek" + +#: ../../include/profile_selectors.php:6 +msgid "Other" +msgstr "Anders" + +#: ../../include/profile_selectors.php:6 +msgid "Undecided" +msgstr "Onbeslist" + +#: ../../include/profile_selectors.php:23 +msgid "Males" +msgstr "Manen" + +#: ../../include/profile_selectors.php:23 +msgid "Females" +msgstr "Vrouwen" + +#: ../../include/profile_selectors.php:23 +msgid "Gay" +msgstr "Homo" + +#: ../../include/profile_selectors.php:23 +msgid "Lesbian" +msgstr "Lesbie" + +#: ../../include/profile_selectors.php:23 +msgid "No Preference" +msgstr "Geen voorkeur" + +#: ../../include/profile_selectors.php:23 +msgid "Bisexual" +msgstr "Biseksueel" + +#: ../../include/profile_selectors.php:23 +msgid "Autosexual" +msgstr "Autoseksueel" + +#: ../../include/profile_selectors.php:23 +msgid "Abstinent" +msgstr "Onthouder" + +#: ../../include/profile_selectors.php:23 +msgid "Virgin" +msgstr "Maagd" + +#: ../../include/profile_selectors.php:23 +msgid "Deviant" +msgstr "Afwijkend" + +#: ../../include/profile_selectors.php:23 +msgid "Fetish" +msgstr "Fetisj" + +#: ../../include/profile_selectors.php:23 +msgid "Oodles" +msgstr "Veel" + +#: ../../include/profile_selectors.php:23 +msgid "Nonsexual" +msgstr "Niet seksueel" + +#: ../../include/profile_selectors.php:42 +msgid "Single" +msgstr "Alleenstaand" + +#: ../../include/profile_selectors.php:42 +msgid "Lonely" +msgstr "Eenzaam" + +#: ../../include/profile_selectors.php:42 +msgid "Available" +msgstr "Beschikbaar" + +#: ../../include/profile_selectors.php:42 +msgid "Unavailable" +msgstr "Onbeschikbaar" + +#: ../../include/profile_selectors.php:42 +msgid "Has crush" +msgstr "Verliefd" + +#: ../../include/profile_selectors.php:42 +msgid "Infatuated" +msgstr "Smoorverliefd" + +#: ../../include/profile_selectors.php:42 +msgid "Dating" +msgstr "Aan het daten" + +#: ../../include/profile_selectors.php:42 +msgid "Unfaithful" +msgstr "Ontrouw" + +#: ../../include/profile_selectors.php:42 +msgid "Sex Addict" +msgstr "Seksverslaafd" + +#: ../../include/profile_selectors.php:42 ../../include/user.php:289 +#: ../../include/user.php:293 +msgid "Friends" +msgstr "Vrienden" + +#: ../../include/profile_selectors.php:42 +msgid "Friends/Benefits" +msgstr "Vriendschap plus" + +#: ../../include/profile_selectors.php:42 +msgid "Casual" +msgstr "Ongebonden/vluchtig" + +#: ../../include/profile_selectors.php:42 +msgid "Engaged" +msgstr "Verloofd" + +#: ../../include/profile_selectors.php:42 +msgid "Married" +msgstr "Getrouwd" + +#: ../../include/profile_selectors.php:42 +msgid "Imaginarily married" +msgstr "Denkbeeldig getrouwd" + +#: ../../include/profile_selectors.php:42 +msgid "Partners" +msgstr "Partners" + +#: ../../include/profile_selectors.php:42 +msgid "Cohabiting" +msgstr "Samenwonend" + +#: ../../include/profile_selectors.php:42 +msgid "Common law" +msgstr "Common-law-huwelijk" + +#: ../../include/profile_selectors.php:42 +msgid "Happy" +msgstr "Blij" + +#: ../../include/profile_selectors.php:42 +msgid "Not looking" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Swinger" +msgstr "Swinger" + +#: ../../include/profile_selectors.php:42 +msgid "Betrayed" +msgstr "Bedrogen" + +#: ../../include/profile_selectors.php:42 +msgid "Separated" +msgstr "Uit elkaar" + +#: ../../include/profile_selectors.php:42 +msgid "Unstable" +msgstr "Onstabiel" + +#: ../../include/profile_selectors.php:42 +msgid "Divorced" +msgstr "Gescheiden" + +#: ../../include/profile_selectors.php:42 +msgid "Imaginarily divorced" +msgstr "Denkbeeldig gescheiden" + +#: ../../include/profile_selectors.php:42 +msgid "Widowed" +msgstr "Weduwnaar/weduwe" + +#: ../../include/profile_selectors.php:42 +msgid "Uncertain" +msgstr "Onzeker" + +#: ../../include/profile_selectors.php:42 +msgid "It's complicated" +msgstr "Het is gecompliceerd" + +#: ../../include/profile_selectors.php:42 +msgid "Don't care" +msgstr "Kan me niet schelen" + +#: ../../include/profile_selectors.php:42 +msgid "Ask me" +msgstr "Vraag me" + +#: ../../include/user.php:40 +msgid "An invitation is required." +msgstr "Een uitnodiging is vereist." + +#: ../../include/user.php:45 +msgid "Invitation could not be verified." +msgstr "Uitnodiging kon niet geverifieerd worden." + +#: ../../include/user.php:53 +msgid "Invalid OpenID url" +msgstr "Ongeldige OpenID url" + +#: ../../include/user.php:74 +msgid "Please enter the required information." +msgstr "Vul de vereiste informatie in." + +#: ../../include/user.php:88 +msgid "Please use a shorter name." +msgstr "gebruik een kortere naam" + +#: ../../include/user.php:90 +msgid "Name too short." +msgstr "Naam te kort" + +#: ../../include/user.php:105 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "Dat lijkt niet je volledige naam (voor- en achternaam) te zijn." + +#: ../../include/user.php:110 +msgid "Your email domain is not among those allowed on this site." +msgstr "Je e-maildomein is op deze website niet toegestaan." + +#: ../../include/user.php:113 +msgid "Not a valid email address." +msgstr "Geen geldig e-mailadres." + +#: ../../include/user.php:126 +msgid "Cannot use that email." +msgstr "Ik kan die e-mail niet gebruiken." + +#: ../../include/user.php:132 +msgid "" +"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " +"must also begin with a letter." +msgstr "Je \"bijnaam\" kan alleen \"a-z\", \"0-9\", \"-\", en \"_\" bevatten, en moet ook met een letter beginnen." + +#: ../../include/user.php:138 ../../include/user.php:236 +msgid "Nickname is already registered. Please choose another." +msgstr "Bijnaam is al geregistreerd. Kies een andere." + +#: ../../include/user.php:148 +msgid "" +"Nickname was once registered here and may not be re-used. Please choose " +"another." +msgstr "Bijnaam was ooit hier geregistreerd en kan niet herbruikt worden. Kies een andere." + +#: ../../include/user.php:164 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "ERNSTIGE FOUT: aanmaken van beveiligingssleutels mislukt." + +#: ../../include/user.php:222 +msgid "An error occurred during registration. Please try again." +msgstr "" + +#: ../../include/user.php:257 +msgid "An error occurred creating your default profile. Please try again." +msgstr "" + +#: ../../include/user.php:377 #, php-format -msgid "%s posted an update." -msgstr "%s heeft een wijziging geplaatst." +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tThank you for registering at %2$s. Your account has been created.\n" +"\t" +msgstr "" + +#: ../../include/user.php:381 +#, php-format +msgid "" +"\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." +msgstr "" + +#: ../../include/user.php:413 ../../mod/admin.php:838 +#, php-format +msgid "Registration details for %s" +msgstr "Registratie details voor %s" + +#: ../../include/acl_selectors.php:333 +msgid "Visible to everybody" +msgstr "Zichtbaar voor iedereen" + +#: ../../object/Item.php:94 +msgid "This entry was edited" +msgstr "" + +#: ../../object/Item.php:116 ../../mod/photos.php:1359 +#: ../../mod/content.php:620 +msgid "Private Message" +msgstr "Privébericht" + +#: ../../object/Item.php:120 ../../mod/settings.php:681 +#: ../../mod/content.php:728 +msgid "Edit" +msgstr "Bewerken" + +#: ../../object/Item.php:133 ../../mod/content.php:763 +msgid "save to folder" +msgstr "Bewaren in map" + +#: ../../object/Item.php:195 ../../mod/content.php:753 +msgid "add star" +msgstr "ster toevoegen" + +#: ../../object/Item.php:196 ../../mod/content.php:754 +msgid "remove star" +msgstr "ster verwijderen" + +#: ../../object/Item.php:197 ../../mod/content.php:755 +msgid "toggle star status" +msgstr "ster toevoegen of verwijderen" + +#: ../../object/Item.php:200 ../../mod/content.php:758 +msgid "starred" +msgstr "met ster" + +#: ../../object/Item.php:208 +msgid "ignore thread" +msgstr "" + +#: ../../object/Item.php:209 +msgid "unignore thread" +msgstr "" + +#: ../../object/Item.php:210 +msgid "toggle ignore status" +msgstr "" + +#: ../../object/Item.php:213 +msgid "ignored" +msgstr "" + +#: ../../object/Item.php:220 ../../mod/content.php:759 +msgid "add tag" +msgstr "label toevoegen" + +#: ../../object/Item.php:231 ../../mod/photos.php:1542 +#: ../../mod/content.php:684 +msgid "I like this (toggle)" +msgstr "Vind ik leuk" + +#: ../../object/Item.php:231 ../../mod/content.php:684 +msgid "like" +msgstr "leuk" + +#: ../../object/Item.php:232 ../../mod/photos.php:1543 +#: ../../mod/content.php:685 +msgid "I don't like this (toggle)" +msgstr "Vind ik niet leuk" + +#: ../../object/Item.php:232 ../../mod/content.php:685 +msgid "dislike" +msgstr "niet leuk" + +#: ../../object/Item.php:234 ../../mod/content.php:687 +msgid "Share this" +msgstr "Delen" + +#: ../../object/Item.php:234 ../../mod/content.php:687 +msgid "share" +msgstr "Delen" + +#: ../../object/Item.php:328 ../../mod/content.php:854 +msgid "to" +msgstr "aan" + +#: ../../object/Item.php:329 +msgid "via" +msgstr "via" + +#: ../../object/Item.php:330 ../../mod/content.php:855 +msgid "Wall-to-Wall" +msgstr "wall-to-wall" + +#: ../../object/Item.php:331 ../../mod/content.php:856 +msgid "via Wall-To-Wall:" +msgstr "via wall-to-wall" + +#: ../../object/Item.php:387 ../../mod/content.php:603 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d reactie" +msgstr[1] "%d reacties" + +#: ../../object/Item.php:675 ../../mod/photos.php:1562 +#: ../../mod/photos.php:1606 ../../mod/photos.php:1694 +#: ../../mod/content.php:707 +msgid "This is you" +msgstr "Dit ben jij" + +#: ../../object/Item.php:679 ../../mod/content.php:711 +msgid "Bold" +msgstr "Vet" + +#: ../../object/Item.php:680 ../../mod/content.php:712 +msgid "Italic" +msgstr "Cursief" + +#: ../../object/Item.php:681 ../../mod/content.php:713 +msgid "Underline" +msgstr "Onderstrepen" + +#: ../../object/Item.php:682 ../../mod/content.php:714 +msgid "Quote" +msgstr "Citeren" + +#: ../../object/Item.php:683 ../../mod/content.php:715 +msgid "Code" +msgstr "Broncode" + +#: ../../object/Item.php:684 ../../mod/content.php:716 +msgid "Image" +msgstr "Afbeelding" + +#: ../../object/Item.php:685 ../../mod/content.php:717 +msgid "Link" +msgstr "Link" + +#: ../../object/Item.php:686 ../../mod/content.php:718 +msgid "Video" +msgstr "Video" + +#: ../../mod/attach.php:8 +msgid "Item not available." +msgstr "Item niet beschikbaar" + +#: ../../mod/attach.php:20 +msgid "Item was not found." +msgstr "Item niet gevonden" + +#: ../../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:63 +msgid "No recipient selected." +msgstr "Geen ontvanger geselecteerd." + +#: ../../mod/wallmessage.php:59 +msgid "Unable to check your home location." +msgstr "Niet in staat om je tijdlijn-locatie vast te stellen" + +#: ../../mod/wallmessage.php:62 ../../mod/message.php:70 +msgid "Message could not be sent." +msgstr "Bericht kon niet verzonden worden." + +#: ../../mod/wallmessage.php:65 ../../mod/message.php:73 +msgid "Message collection failure." +msgstr "Fout bij het verzamelen van berichten." + +#: ../../mod/wallmessage.php:68 ../../mod/message.php:76 +msgid "Message sent." +msgstr "Bericht verzonden." + +#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 +msgid "No recipient." +msgstr "Geen ontvanger." + +#: ../../mod/wallmessage.php:142 ../../mod/message.php:319 +msgid "Send Private Message" +msgstr "Verstuur privébericht" + +#: ../../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 "Als je wilt dat %s antwoordt moet je nakijken dat de privacy-instellingen op jouw website privéberichten van onbekende afzenders toelaat." + +#: ../../mod/wallmessage.php:144 ../../mod/message.php:320 +#: ../../mod/message.php:553 +msgid "To:" +msgstr "Aan:" + +#: ../../mod/wallmessage.php:145 ../../mod/message.php:325 +#: ../../mod/message.php:555 +msgid "Subject:" +msgstr "Onderwerp:" + +#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134 +#: ../../mod/message.php:329 ../../mod/message.php:558 +msgid "Your message:" +msgstr "Jouw bericht:" #: ../../mod/group.php:29 msgid "Group created." @@ -981,386 +3270,72 @@ msgstr "Groepsbewerker" msgid "Members" msgstr "Leden" -#: ../../mod/apps.php:7 ../../index.php:212 -msgid "You must be logged in to use addons. " -msgstr "Je moet ingelogd zijn om deze addons te kunnen gebruiken. " +#: ../../mod/group.php:194 ../../mod/contacts.php:586 +msgid "All Contacts" +msgstr "Alle Contacten" -#: ../../mod/apps.php:11 -msgid "Applications" -msgstr "Toepassingen" +#: ../../mod/group.php:224 ../../mod/profperm.php:105 +msgid "Click on a contact to add or remove." +msgstr "Klik op een contact om het toe te voegen of te verwijderen." -#: ../../mod/apps.php:14 -msgid "No installed applications." -msgstr "Geen toepassingen geïnstalleerd" +#: ../../mod/delegate.php:101 +msgid "No potential page delegates located." +msgstr "Niemand gevonden waar het paginabeheer mogelijk aan uitbesteed kan worden." -#: ../../mod/dfrn_confirm.php:64 ../../mod/profiles.php:18 -#: ../../mod/profiles.php:133 ../../mod/profiles.php:179 -#: ../../mod/profiles.php:630 -msgid "Profile not found." -msgstr "Profiel niet gevonden" - -#: ../../mod/dfrn_confirm.php:120 ../../mod/fsuggest.php:20 -#: ../../mod/fsuggest.php:92 ../../mod/crepair.php:133 -msgid "Contact not found." -msgstr "Contact niet gevonden" - -#: ../../mod/dfrn_confirm.php:121 +#: ../../mod/delegate.php:132 msgid "" -"This may occasionally happen if contact was requested by both persons and it" -" has already been approved." -msgstr "Dit kan soms gebeuren als het contact door beide personen werd gevraagd, en het werd al goedgekeurd." +"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 "Personen waaraan het beheer is uitbesteed kunnen alle onderdelen van een account/pagina beheren, behalve de basisinstellingen van een account. Besteed je persoonlijke account daarom niet uit aan personen die je niet volledig vertrouwd." -#: ../../mod/dfrn_confirm.php:240 -msgid "Response from remote site was not understood." -msgstr "Antwoord van de website op afstand werd niet begrepen." +#: ../../mod/delegate.php:133 +msgid "Existing Page Managers" +msgstr "Bestaande paginabeheerders" -#: ../../mod/dfrn_confirm.php:249 ../../mod/dfrn_confirm.php:254 -msgid "Unexpected response from remote site: " -msgstr "Onverwacht antwoord van website op afstand:" +#: ../../mod/delegate.php:135 +msgid "Existing Page Delegates" +msgstr "Bestaande personen waaraan het paginabeheer is uitbesteed" -#: ../../mod/dfrn_confirm.php:263 -msgid "Confirmation completed successfully." -msgstr "Bevestiging werd correct voltooid." +#: ../../mod/delegate.php:137 +msgid "Potential Delegates" +msgstr "Mogelijke personen waaraan het paginabeheer kan worden uitbesteed " -#: ../../mod/dfrn_confirm.php:265 ../../mod/dfrn_confirm.php:279 -#: ../../mod/dfrn_confirm.php:286 -msgid "Remote site reported: " -msgstr "Website op afstand berichtte: " +#: ../../mod/delegate.php:139 ../../mod/tagrm.php:93 +msgid "Remove" +msgstr "Verwijderen" -#: ../../mod/dfrn_confirm.php:277 -msgid "Temporary failure. Please wait and try again." -msgstr "Tijdelijke fout. Wacht even en probeer opnieuw." +#: ../../mod/delegate.php:140 +msgid "Add" +msgstr "Toevoegen" -#: ../../mod/dfrn_confirm.php:284 -msgid "Introduction failed or was revoked." -msgstr "Verzoek mislukt of herroepen." - -#: ../../mod/dfrn_confirm.php:429 -msgid "Unable to set contact photo." -msgstr "Ik kan geen contact foto instellen." - -#: ../../mod/dfrn_confirm.php:486 ../../include/conversation.php:172 -#: ../../include/diaspora.php:620 -#, php-format -msgid "%1$s is now friends with %2$s" -msgstr "%1$s is nu bevriend met %2$s" - -#: ../../mod/dfrn_confirm.php:571 -#, php-format -msgid "No user record found for '%s' " -msgstr "Geen gebruiker gevonden voor '%s'" - -#: ../../mod/dfrn_confirm.php:581 -msgid "Our site encryption key is apparently messed up." -msgstr "De encryptie-sleutel van onze webstek is blijkbaar beschadigd." - -#: ../../mod/dfrn_confirm.php:592 -msgid "Empty site URL was provided or URL could not be decrypted by us." -msgstr "Er werd een lege URL gegeven, of de URL kon niet ontcijferd worden door ons." - -#: ../../mod/dfrn_confirm.php:613 -msgid "Contact record was not found for you on our site." -msgstr "We vonden op onze webstek geen contactrecord voor jou." - -#: ../../mod/dfrn_confirm.php:627 -#, php-format -msgid "Site public key not available in contact record for URL %s." -msgstr "Publieke sleutel voor webstek niet beschikbaar in contactrecord voor URL %s." - -#: ../../mod/dfrn_confirm.php:647 -msgid "" -"The ID provided by your system is a duplicate on our system. It should work " -"if you try again." -msgstr "Het ID dat jouw systeem aangeeft is een dubbel op ons systeem. Als je opnieuw probeert zou het moeten werken." - -#: ../../mod/dfrn_confirm.php:658 -msgid "Unable to set your contact credentials on our system." -msgstr "Niet in staat om op dit systeem je contactreferenties in te stellen." - -#: ../../mod/dfrn_confirm.php:725 -msgid "Unable to update your contact profile details on our system" -msgstr "" - -#: ../../mod/dfrn_confirm.php:752 ../../mod/dfrn_request.php:717 -#: ../../include/items.php:4008 -msgid "[Name Withheld]" -msgstr "[Naam achtergehouden]" - -#: ../../mod/dfrn_confirm.php:797 -#, php-format -msgid "%1$s has joined %2$s" -msgstr "%1$s is toegetreden tot %2$s" - -#: ../../mod/profile.php:21 ../../boot.php:1458 -msgid "Requested profile is not available." -msgstr "Gevraagde profiel is niet beschikbaar." - -#: ../../mod/profile.php:180 -msgid "Tips for New Members" -msgstr "Tips voor nieuwe leden" - -#: ../../mod/videos.php:125 -msgid "No videos selected" -msgstr "Geen video's geselecteerd" - -#: ../../mod/videos.php:226 ../../mod/photos.php:1031 -msgid "Access to this item is restricted." -msgstr "Toegang tot dit item is beperkt." - -#: ../../mod/videos.php:301 ../../include/text.php:1405 -msgid "View Video" -msgstr "Bekijk Video" - -#: ../../mod/videos.php:308 ../../mod/photos.php:1808 -msgid "View Album" -msgstr "Album bekijken" - -#: ../../mod/videos.php:317 -msgid "Recent Videos" -msgstr "Recente video's" - -#: ../../mod/videos.php:319 -msgid "Upload New Videos" -msgstr "Nieuwe video's uploaden" - -#: ../../mod/tagger.php:95 ../../include/conversation.php:266 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s labelde %3$s van %2$s met %4$s" - -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Vriendschapsvoorstel verzonden." - -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Stel vrienden voor" - -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Stel een vriend voor aan %s" - -#: ../../mod/lostpass.php:19 -msgid "No valid account found." -msgstr "Geen geldige account gevonden." - -#: ../../mod/lostpass.php:35 -msgid "Password reset request issued. Check your email." -msgstr "Verzoek om wachtwoord opnieuw in te stellen werd verstuurd. Kijk uw e-mail na." - -#: ../../mod/lostpass.php:42 -#, php-format -msgid "" -"\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." -msgstr "" - -#: ../../mod/lostpass.php:53 -#, php-format -msgid "" -"\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" -msgstr "" - -#: ../../mod/lostpass.php:72 -#, php-format -msgid "Password reset requested at %s" -msgstr "Op %s werd gevraagd je wachtwoord opnieuw in te stellen" - -#: ../../mod/lostpass.php:92 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "Verzoek kon niet geverifieerd worden. (Misschien heb je het voordien al ingediend.) Wachtwoord niet opnieuw ingesteld." - -#: ../../mod/lostpass.php:109 ../../boot.php:1280 -msgid "Password Reset" -msgstr "Wachtwoord opnieuw instellen" - -#: ../../mod/lostpass.php:110 -msgid "Your password has been reset as requested." -msgstr "Je wachtwoord is opnieuw ingesteld zoals gevraagd." - -#: ../../mod/lostpass.php:111 -msgid "Your new password is" -msgstr "Je nieuwe wachtwoord is" - -#: ../../mod/lostpass.php:112 -msgid "Save or copy your new password - and then" -msgstr "Bewaar of kopieer je nieuw wachtwoord - en dan" - -#: ../../mod/lostpass.php:113 -msgid "click here to login" -msgstr "klik hier om in te loggen" - -#: ../../mod/lostpass.php:114 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Je kunt dit wachtwoord veranderen nadat je bent ingelogd op de Instellingen> pagina." - -#: ../../mod/lostpass.php:125 -#, php-format -msgid "" -"\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" -msgstr "" - -#: ../../mod/lostpass.php:131 -#, php-format -msgid "" -"\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" -msgstr "" - -#: ../../mod/lostpass.php:147 -#, php-format -msgid "Your password has been changed at %s" -msgstr "Je wachtwoord is veranderd op %s" - -#: ../../mod/lostpass.php:159 -msgid "Forgot your Password?" -msgstr "Wachtwoord vergeten?" - -#: ../../mod/lostpass.php:160 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Voer je e-mailadres in en verstuur het om je wachtwoord opnieuw in te stellen. Kijk dan je e-mail na voor verdere instructies." - -#: ../../mod/lostpass.php:161 -msgid "Nickname or Email: " -msgstr "Bijnaam of e-mail:" - -#: ../../mod/lostpass.php:162 -msgid "Reset" -msgstr "Opnieuw" - -#: ../../mod/like.php:166 ../../include/conversation.php:137 -#: ../../include/diaspora.php:2103 ../../view/theme/diabook/theme.php:480 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s vindt het %3$s van %2$s leuk" - -#: ../../mod/like.php:168 ../../include/conversation.php:140 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s vindt het %3$s van %2$s niet leuk" - -#: ../../mod/ping.php:240 -msgid "{0} wants to be your friend" -msgstr "{0} wilt je vriend worden" - -#: ../../mod/ping.php:245 -msgid "{0} sent you a message" -msgstr "{0} stuurde jou een bericht" - -#: ../../mod/ping.php:250 -msgid "{0} requested registration" -msgstr "{0} vroeg om zich te registreren" - -#: ../../mod/ping.php:256 -#, php-format -msgid "{0} commented %s's post" -msgstr "{0} gaf een reactie op het bericht van %s" - -#: ../../mod/ping.php:261 -#, php-format -msgid "{0} liked %s's post" -msgstr "{0} vond het bericht van %s leuk" - -#: ../../mod/ping.php:266 -#, php-format -msgid "{0} disliked %s's post" -msgstr "{0} vond het bericht van %s niet leuk" - -#: ../../mod/ping.php:271 -#, php-format -msgid "{0} is now friends with %s" -msgstr "{0} is nu bevriend met %s" - -#: ../../mod/ping.php:276 -msgid "{0} posted" -msgstr "{0} plaatste" - -#: ../../mod/ping.php:281 -#, php-format -msgid "{0} tagged %s's post with #%s" -msgstr "{0} labelde %s's bericht met #%s" - -#: ../../mod/ping.php:287 -msgid "{0} mentioned you in a post" -msgstr "{0} vermeldde je in een bericht" - -#: ../../mod/viewcontacts.php:41 -msgid "No contacts." -msgstr "Geen contacten." - -#: ../../mod/viewcontacts.php:78 ../../include/text.php:876 -msgid "View Contacts" -msgstr "Bekijk contacten" +#: ../../mod/delegate.php:141 +msgid "No entries." +msgstr "Geen gegevens." #: ../../mod/notifications.php:26 msgid "Invalid request identifier." msgstr "Ongeldige request identifier." #: ../../mod/notifications.php:35 ../../mod/notifications.php:165 -#: ../../mod/notifications.php:211 +#: ../../mod/notifications.php:215 msgid "Discard" msgstr "Verwerpen" +#: ../../mod/notifications.php:51 ../../mod/notifications.php:164 +#: ../../mod/notifications.php:214 ../../mod/contacts.php:455 +#: ../../mod/contacts.php:519 ../../mod/contacts.php:731 +msgid "Ignore" +msgstr "Negeren" + #: ../../mod/notifications.php:78 msgid "System" msgstr "Systeem" -#: ../../mod/notifications.php:83 ../../include/nav.php:145 -msgid "Network" -msgstr "Netwerk" - #: ../../mod/notifications.php:88 ../../mod/network.php:371 msgid "Personal" msgstr "Persoonlijk" -#: ../../mod/notifications.php:93 ../../include/nav.php:105 -#: ../../include/nav.php:148 ../../view/theme/diabook/theme.php:123 -msgid "Home" -msgstr "Tijdlijn" - -#: ../../mod/notifications.php:98 ../../include/nav.php:154 -msgid "Introductions" -msgstr "Verzoeken" - #: ../../mod/notifications.php:122 msgid "Show Ignored Requests" msgstr "Toon genegeerde verzoeken" @@ -1369,7 +3344,7 @@ msgstr "Toon genegeerde verzoeken" msgid "Hide Ignored Requests" msgstr "Verberg genegeerde verzoeken" -#: ../../mod/notifications.php:149 ../../mod/notifications.php:195 +#: ../../mod/notifications.php:149 ../../mod/notifications.php:199 msgid "Notification type: " msgstr "Notificatiesoort:" @@ -1382,15 +3357,20 @@ msgstr "Vriendschapsvoorstel" msgid "suggested by %s" msgstr "Voorgesteld door %s" -#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 +#: ../../mod/notifications.php:157 ../../mod/notifications.php:208 +#: ../../mod/contacts.php:525 +msgid "Hide this contact from others" +msgstr "Verberg dit contact voor anderen" + +#: ../../mod/notifications.php:158 ../../mod/notifications.php:209 msgid "Post a new friend activity" msgstr "Bericht over een nieuwe vriend" -#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 +#: ../../mod/notifications.php:158 ../../mod/notifications.php:209 msgid "if applicable" msgstr "Indien toepasbaar" -#: ../../mod/notifications.php:161 ../../mod/notifications.php:208 +#: ../../mod/notifications.php:161 ../../mod/notifications.php:212 #: ../../mod/admin.php:1005 msgid "Approve" msgstr "Goedkeuren" @@ -1407,402 +3387,1310 @@ msgstr "Ja" msgid "no" msgstr "Nee" -#: ../../mod/notifications.php:188 -msgid "Approve as: " -msgstr "Goedkeuren als:" +#: ../../mod/notifications.php:182 +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 "" -#: ../../mod/notifications.php:189 +#: ../../mod/notifications.php:185 +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 "" + +#: ../../mod/notifications.php:193 msgid "Friend" msgstr "Vriend" -#: ../../mod/notifications.php:190 +#: ../../mod/notifications.php:194 msgid "Sharer" msgstr "Deler" -#: ../../mod/notifications.php:190 +#: ../../mod/notifications.php:194 msgid "Fan/Admirer" msgstr "Fan/Bewonderaar" -#: ../../mod/notifications.php:196 +#: ../../mod/notifications.php:200 msgid "Friend/Connect Request" msgstr "Vriendschapsverzoek" -#: ../../mod/notifications.php:196 +#: ../../mod/notifications.php:200 msgid "New Follower" msgstr "Nieuwe Volger" -#: ../../mod/notifications.php:217 +#: ../../mod/notifications.php:221 msgid "No introductions." msgstr "Geen vriendschaps- of connectieverzoeken." -#: ../../mod/notifications.php:220 ../../include/nav.php:155 -msgid "Notifications" -msgstr "Notificaties" - -#: ../../mod/notifications.php:258 ../../mod/notifications.php:387 -#: ../../mod/notifications.php:478 +#: ../../mod/notifications.php:262 ../../mod/notifications.php:391 +#: ../../mod/notifications.php:482 #, php-format msgid "%s liked %s's post" msgstr "%s vond het bericht van %s leuk" -#: ../../mod/notifications.php:268 ../../mod/notifications.php:397 -#: ../../mod/notifications.php:488 +#: ../../mod/notifications.php:272 ../../mod/notifications.php:401 +#: ../../mod/notifications.php:492 #, php-format msgid "%s disliked %s's post" msgstr "%s vond het bericht van %s niet leuk" -#: ../../mod/notifications.php:283 ../../mod/notifications.php:412 -#: ../../mod/notifications.php:503 +#: ../../mod/notifications.php:287 ../../mod/notifications.php:416 +#: ../../mod/notifications.php:507 #, php-format msgid "%s is now friends with %s" msgstr "%s is nu bevriend met %s" -#: ../../mod/notifications.php:290 ../../mod/notifications.php:419 +#: ../../mod/notifications.php:294 ../../mod/notifications.php:423 #, php-format msgid "%s created a new post" msgstr "%s schreef een nieuw bericht" -#: ../../mod/notifications.php:291 ../../mod/notifications.php:420 -#: ../../mod/notifications.php:513 +#: ../../mod/notifications.php:295 ../../mod/notifications.php:424 +#: ../../mod/notifications.php:517 #, php-format msgid "%s commented on %s's post" msgstr "%s gaf een reactie op het bericht van %s" -#: ../../mod/notifications.php:306 +#: ../../mod/notifications.php:310 msgid "No more network notifications." msgstr "Geen netwerknotificaties meer" -#: ../../mod/notifications.php:310 +#: ../../mod/notifications.php:314 msgid "Network Notifications" msgstr "Netwerknotificaties" -#: ../../mod/notifications.php:336 ../../mod/notify.php:75 +#: ../../mod/notifications.php:340 ../../mod/notify.php:75 msgid "No more system notifications." msgstr "Geen systeemnotificaties meer." -#: ../../mod/notifications.php:340 ../../mod/notify.php:79 +#: ../../mod/notifications.php:344 ../../mod/notify.php:79 msgid "System Notifications" msgstr "Systeemnotificaties" -#: ../../mod/notifications.php:435 +#: ../../mod/notifications.php:439 msgid "No more personal notifications." msgstr "Geen persoonlijke notificaties meer" -#: ../../mod/notifications.php:439 +#: ../../mod/notifications.php:443 msgid "Personal Notifications" msgstr "Persoonlijke notificaties" -#: ../../mod/notifications.php:520 +#: ../../mod/notifications.php:524 msgid "No more home notifications." msgstr "Geen tijdlijn-notificaties meer" -#: ../../mod/notifications.php:524 +#: ../../mod/notifications.php:528 msgid "Home Notifications" msgstr "Tijdlijn-notificaties" -#: ../../mod/babel.php:17 -msgid "Source (bbcode) text:" -msgstr "Bron (bbcode) tekst:" +#: ../../mod/hcard.php:10 +msgid "No profile" +msgstr "Geen profiel" -#: ../../mod/babel.php:23 -msgid "Source (Diaspora) text to convert to BBcode:" -msgstr "Bron (Diaspora) tekst om naar BBCode om te zetten:" +#: ../../mod/settings.php:34 ../../mod/photos.php:80 +msgid "everybody" +msgstr "iedereen" -#: ../../mod/babel.php:31 -msgid "Source input: " -msgstr "Bron ingave:" +#: ../../mod/settings.php:41 ../../mod/admin.php:1016 +msgid "Account" +msgstr "Account" -#: ../../mod/babel.php:35 -msgid "bb2html (raw HTML): " -msgstr "bb2html (ruwe HTML):" +#: ../../mod/settings.php:46 +msgid "Additional features" +msgstr "Extra functies" -#: ../../mod/babel.php:39 -msgid "bb2html: " -msgstr "bb2html:" +#: ../../mod/settings.php:51 +msgid "Display" +msgstr "Weergave" -#: ../../mod/babel.php:43 -msgid "bb2html2bb: " -msgstr "bb2html2bb: " +#: ../../mod/settings.php:57 ../../mod/settings.php:785 +msgid "Social Networks" +msgstr "Sociale netwerken" -#: ../../mod/babel.php:47 -msgid "bb2md: " -msgstr "bb2md: " +#: ../../mod/settings.php:62 ../../mod/admin.php:106 ../../mod/admin.php:1102 +#: ../../mod/admin.php:1155 +msgid "Plugins" +msgstr "Plugins" -#: ../../mod/babel.php:51 -msgid "bb2md2html: " -msgstr "bb2md2html: " +#: ../../mod/settings.php:72 +msgid "Connected apps" +msgstr "Verbonden applicaties" -#: ../../mod/babel.php:55 -msgid "bb2dia2bb: " -msgstr "bb2dia2bb: " +#: ../../mod/settings.php:77 ../../mod/uexport.php:85 +msgid "Export personal data" +msgstr "Persoonlijke gegevens exporteren" -#: ../../mod/babel.php:59 -msgid "bb2md2html2bb: " -msgstr "bb2md2html2bb: " +#: ../../mod/settings.php:82 +msgid "Remove account" +msgstr "Account verwijderen" -#: ../../mod/babel.php:69 -msgid "Source input (Diaspora format): " -msgstr "Bron ingave (Diaspora formaat):" +#: ../../mod/settings.php:134 +msgid "Missing some important data!" +msgstr "Een belangrijk gegeven ontbreekt!" -#: ../../mod/babel.php:74 -msgid "diaspora2bb: " -msgstr "diaspora2bb: " +#: ../../mod/settings.php:137 ../../mod/settings.php:645 +#: ../../mod/contacts.php:729 +msgid "Update" +msgstr "Wijzigen" -#: ../../mod/navigation.php:20 ../../include/nav.php:34 -msgid "Nothing new here" -msgstr "Niets nieuw hier" +#: ../../mod/settings.php:243 +msgid "Failed to connect with email account using the settings provided." +msgstr "Ik kon geen verbinding maken met het e-mail account met de gegeven instellingen." -#: ../../mod/navigation.php:24 ../../include/nav.php:38 -msgid "Clear notifications" -msgstr "Notificaties verwijderen" +#: ../../mod/settings.php:248 +msgid "Email settings updated." +msgstr "E-mail instellingen bijgewerkt.." -#: ../../mod/message.php:9 ../../include/nav.php:164 -msgid "New Message" -msgstr "Nieuw Bericht" +#: ../../mod/settings.php:263 +msgid "Features updated" +msgstr "Functies bijgewerkt" -#: ../../mod/message.php:63 ../../mod/wallmessage.php:56 -msgid "No recipient selected." -msgstr "Geen ontvanger geselecteerd." - -#: ../../mod/message.php:67 -msgid "Unable to locate contact information." -msgstr "Ik kan geen contact informatie vinden." - -#: ../../mod/message.php:70 ../../mod/wallmessage.php:62 -msgid "Message could not be sent." -msgstr "Bericht kon niet verzonden worden." - -#: ../../mod/message.php:73 ../../mod/wallmessage.php:65 -msgid "Message collection failure." -msgstr "Fout bij het verzamelen van berichten." - -#: ../../mod/message.php:76 ../../mod/wallmessage.php:68 -msgid "Message sent." -msgstr "Bericht verzonden." - -#: ../../mod/message.php:182 ../../include/nav.php:161 -msgid "Messages" -msgstr "Privéberichten" - -#: ../../mod/message.php:207 -msgid "Do you really want to delete this message?" -msgstr "Wil je echt dit bericht verwijderen?" - -#: ../../mod/message.php:227 -msgid "Message deleted." -msgstr "Bericht verwijderd." - -#: ../../mod/message.php:258 -msgid "Conversation removed." -msgstr "Gesprek verwijderd." - -#: ../../mod/message.php:283 ../../mod/message.php:291 -#: ../../mod/message.php:466 ../../mod/message.php:474 -#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135 -#: ../../include/conversation.php:1002 ../../include/conversation.php:1020 -msgid "Please enter a link URL:" -msgstr "Vul een internetadres/URL in:" - -#: ../../mod/message.php:319 ../../mod/wallmessage.php:142 -msgid "Send Private Message" -msgstr "Verstuur privébericht" - -#: ../../mod/message.php:320 ../../mod/message.php:553 -#: ../../mod/wallmessage.php:144 -msgid "To:" -msgstr "Aan:" - -#: ../../mod/message.php:325 ../../mod/message.php:555 -#: ../../mod/wallmessage.php:145 -msgid "Subject:" -msgstr "Onderwerp:" - -#: ../../mod/message.php:329 ../../mod/message.php:558 -#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134 -msgid "Your message:" -msgstr "Jouw bericht:" - -#: ../../mod/message.php:332 ../../mod/message.php:562 -#: ../../mod/wallmessage.php:154 ../../mod/editpost.php:110 -#: ../../include/conversation.php:1091 -msgid "Upload photo" -msgstr "Foto uploaden" - -#: ../../mod/message.php:333 ../../mod/message.php:563 -#: ../../mod/wallmessage.php:155 ../../mod/editpost.php:114 -#: ../../include/conversation.php:1095 -msgid "Insert web link" -msgstr "Voeg een webadres in" - -#: ../../mod/message.php:334 ../../mod/message.php:565 -#: ../../mod/content.php:499 ../../mod/content.php:883 -#: ../../mod/wallmessage.php:156 ../../mod/editpost.php:124 -#: ../../mod/photos.php:1545 ../../object/Item.php:364 -#: ../../include/conversation.php:692 ../../include/conversation.php:1109 -msgid "Please wait" -msgstr "Even geduld" - -#: ../../mod/message.php:371 -msgid "No messages." -msgstr "Geen berichten." - -#: ../../mod/message.php:378 -#, php-format -msgid "Unknown sender - %s" -msgstr "Onbekende afzender - %s" - -#: ../../mod/message.php:381 -#, php-format -msgid "You and %s" -msgstr "Jij en %s" - -#: ../../mod/message.php:384 -#, php-format -msgid "%s and You" -msgstr "%s en jij" - -#: ../../mod/message.php:405 ../../mod/message.php:546 -msgid "Delete conversation" -msgstr "Verwijder gesprek" - -#: ../../mod/message.php:408 -msgid "D, d M Y - g:i A" -msgstr "D, d M Y - g:i A" - -#: ../../mod/message.php:411 -#, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "%d bericht" -msgstr[1] "%d berichten" - -#: ../../mod/message.php:450 -msgid "Message not available." -msgstr "Bericht niet beschikbaar." - -#: ../../mod/message.php:520 -msgid "Delete message" -msgstr "Verwijder bericht" - -#: ../../mod/message.php:548 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Geen beveiligde communicatie beschikbaar. Je kunt misschien antwoorden vanaf de profiel-pagina van de afzender." - -#: ../../mod/message.php:552 -msgid "Send Reply" -msgstr "Verstuur Antwoord" - -#: ../../mod/update_display.php:22 ../../mod/update_community.php:18 -#: ../../mod/update_notes.php:37 ../../mod/update_profile.php:41 -#: ../../mod/update_network.php:25 -msgid "[Embedded content - reload page to view]" -msgstr "[Ingebedde inhoud - herlaad pagina om het te bekijken]" - -#: ../../mod/crepair.php:106 -msgid "Contact settings applied." -msgstr "Contactinstellingen toegepast." - -#: ../../mod/crepair.php:108 -msgid "Contact update failed." -msgstr "Aanpassen van contact mislukt." - -#: ../../mod/crepair.php:139 -msgid "Repair Contact Settings" -msgstr "Contactinstellingen herstellen" - -#: ../../mod/crepair.php:141 -msgid "" -"WARNING: This is highly advanced and if you enter incorrect" -" information your communications with this contact may stop working." +#: ../../mod/settings.php:326 +msgid "Relocate message has been send to your contacts" msgstr "" -#: ../../mod/crepair.php:142 -msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." -msgstr "Gebruik nu de \"terug\"-knop in je webbrowser wanneer je niet weet wat je op deze pagina moet doen." +#: ../../mod/settings.php:340 +msgid "Passwords do not match. Password unchanged." +msgstr "Wachtwoorden komen niet overeen. Wachtwoord niet gewijzigd." -#: ../../mod/crepair.php:148 -msgid "Return to contact editor" -msgstr "Ga terug naar contactbewerker" +#: ../../mod/settings.php:345 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Lege wachtwoorden zijn niet toegelaten. Wachtwoord niet gewijzigd." -#: ../../mod/crepair.php:159 ../../mod/crepair.php:161 -msgid "No mirroring" -msgstr "" +#: ../../mod/settings.php:353 +msgid "Wrong password." +msgstr "Verkeerd wachtwoord." -#: ../../mod/crepair.php:159 -msgid "Mirror as forwarded posting" -msgstr "" +#: ../../mod/settings.php:364 +msgid "Password changed." +msgstr "Wachtwoord gewijzigd." -#: ../../mod/crepair.php:159 ../../mod/crepair.php:161 -msgid "Mirror as my own posting" -msgstr "" +#: ../../mod/settings.php:366 +msgid "Password update failed. Please try again." +msgstr "Wachtwoord-)wijziging mislukt. Probeer opnieuw." -#: ../../mod/crepair.php:165 ../../mod/admin.php:1003 ../../mod/admin.php:1015 -#: ../../mod/admin.php:1016 ../../mod/admin.php:1029 -#: ../../mod/settings.php:616 ../../mod/settings.php:642 +#: ../../mod/settings.php:433 +msgid " Please use a shorter name." +msgstr "Gebruik een kortere naam." + +#: ../../mod/settings.php:435 +msgid " Name too short." +msgstr "Naam te kort." + +#: ../../mod/settings.php:444 +msgid "Wrong Password" +msgstr "Verkeerd wachtwoord" + +#: ../../mod/settings.php:449 +msgid " Not valid email." +msgstr "Geen geldig e-mailadres." + +#: ../../mod/settings.php:455 +msgid " Cannot change to that email." +msgstr "Kan niet veranderen naar die e-mail." + +#: ../../mod/settings.php:511 +msgid "Private forum has no privacy permissions. Using default privacy group." +msgstr "Privéforum/-groep heeft geen privacyrechten. De standaard privacygroep wordt gebruikt." + +#: ../../mod/settings.php:515 +msgid "Private forum has no privacy permissions and no default privacy group." +msgstr "Privéforum/-groep heeft geen privacyrechten en geen standaard privacygroep." + +#: ../../mod/settings.php:545 +msgid "Settings updated." +msgstr "Instellingen bijgewerkt." + +#: ../../mod/settings.php:618 ../../mod/settings.php:644 +#: ../../mod/settings.php:680 +msgid "Add application" +msgstr "Toepassing toevoegen" + +#: ../../mod/settings.php:619 ../../mod/settings.php:729 +#: ../../mod/settings.php:803 ../../mod/settings.php:885 +#: ../../mod/settings.php:1118 ../../mod/admin.php:620 +#: ../../mod/admin.php:1156 ../../mod/admin.php:1358 ../../mod/admin.php:1445 +msgid "Save Settings" +msgstr "Instellingen opslaan" + +#: ../../mod/settings.php:621 ../../mod/settings.php:647 +#: ../../mod/admin.php:1003 ../../mod/admin.php:1015 ../../mod/admin.php:1016 +#: ../../mod/admin.php:1029 ../../mod/crepair.php:165 msgid "Name" msgstr "Naam" -#: ../../mod/crepair.php:166 -msgid "Account Nickname" -msgstr "Bijnaam account" +#: ../../mod/settings.php:622 ../../mod/settings.php:648 +msgid "Consumer Key" +msgstr "Gebruikerssleutel" -#: ../../mod/crepair.php:167 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@Labelnaam - krijgt voorrang op naam/bijnaam" +#: ../../mod/settings.php:623 ../../mod/settings.php:649 +msgid "Consumer Secret" +msgstr "Gebruikersgeheim" -#: ../../mod/crepair.php:168 -msgid "Account URL" -msgstr "URL account" +#: ../../mod/settings.php:624 ../../mod/settings.php:650 +msgid "Redirect" +msgstr "Doorverwijzing" -#: ../../mod/crepair.php:169 -msgid "Friend Request URL" -msgstr "URL vriendschapsverzoek" +#: ../../mod/settings.php:625 ../../mod/settings.php:651 +msgid "Icon url" +msgstr "URL pictogram" -#: ../../mod/crepair.php:170 -msgid "Friend Confirm URL" +#: ../../mod/settings.php:636 +msgid "You can't edit this application." +msgstr "Je kunt deze toepassing niet wijzigen." + +#: ../../mod/settings.php:679 +msgid "Connected Apps" +msgstr "Verbonden applicaties" + +#: ../../mod/settings.php:683 +msgid "Client key starts with" msgstr "" -#: ../../mod/crepair.php:171 -msgid "Notification Endpoint URL" +#: ../../mod/settings.php:684 +msgid "No name" +msgstr "Geen naam" + +#: ../../mod/settings.php:685 +msgid "Remove authorization" +msgstr "Verwijder authorisatie" + +#: ../../mod/settings.php:697 +msgid "No Plugin settings configured" msgstr "" -#: ../../mod/crepair.php:172 -msgid "Poll/Feed URL" -msgstr "URL poll/feed" +#: ../../mod/settings.php:705 +msgid "Plugin Settings" +msgstr "Plugin Instellingen" -#: ../../mod/crepair.php:173 -msgid "New photo from this URL" -msgstr "Nieuwe foto van deze URL" +#: ../../mod/settings.php:719 +msgid "Off" +msgstr "Uit" -#: ../../mod/crepair.php:174 -msgid "Remote Self" -msgstr "" +#: ../../mod/settings.php:719 +msgid "On" +msgstr "Aan" -#: ../../mod/crepair.php:176 -msgid "Mirror postings from this contact" -msgstr "" +#: ../../mod/settings.php:727 +msgid "Additional Features" +msgstr "Extra functies" -#: ../../mod/crepair.php:176 +#: ../../mod/settings.php:741 ../../mod/settings.php:742 +#, php-format +msgid "Built-in support for %s connectivity is %s" +msgstr "Ingebouwde ondersteuning voor connectiviteit met %s is %s" + +#: ../../mod/settings.php:741 ../../mod/settings.php:742 +msgid "enabled" +msgstr "ingeschakeld" + +#: ../../mod/settings.php:741 ../../mod/settings.php:742 +msgid "disabled" +msgstr "uitgeschakeld" + +#: ../../mod/settings.php:742 +msgid "StatusNet" +msgstr "StatusNet" + +#: ../../mod/settings.php:778 +msgid "Email access is disabled on this site." +msgstr "E-mailtoegang is op deze website uitgeschakeld." + +#: ../../mod/settings.php:790 +msgid "Email/Mailbox Setup" +msgstr "E-mail Instellen" + +#: ../../mod/settings.php:791 msgid "" -"Mark this contact as remote_self, this will cause friendica to repost new " -"entries from this contact." +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "Als je wilt communiceren met e-mail contacten via deze dienst (optioneel), moet je hier opgeven hoe ik jouw mailbox kan bereiken." + +#: ../../mod/settings.php:792 +msgid "Last successful email check:" +msgstr "Laatste succesvolle e-mail controle:" + +#: ../../mod/settings.php:794 +msgid "IMAP server name:" +msgstr "IMAP server naam:" + +#: ../../mod/settings.php:795 +msgid "IMAP port:" +msgstr "IMAP poort:" + +#: ../../mod/settings.php:796 +msgid "Security:" +msgstr "Beveiliging:" + +#: ../../mod/settings.php:796 ../../mod/settings.php:801 +msgid "None" +msgstr "Geen" + +#: ../../mod/settings.php:797 +msgid "Email login name:" +msgstr "E-mail login naam:" + +#: ../../mod/settings.php:798 +msgid "Email password:" +msgstr "E-mail wachtwoord:" + +#: ../../mod/settings.php:799 +msgid "Reply-to address:" +msgstr "Antwoord adres:" + +#: ../../mod/settings.php:800 +msgid "Send public posts to all email contacts:" +msgstr "Openbare posts naar alle e-mail contacten versturen:" + +#: ../../mod/settings.php:801 +msgid "Action after import:" +msgstr "Actie na importeren:" + +#: ../../mod/settings.php:801 +msgid "Mark as seen" +msgstr "Als 'gelezen' markeren" + +#: ../../mod/settings.php:801 +msgid "Move to folder" +msgstr "Naar map verplaatsen" + +#: ../../mod/settings.php:802 +msgid "Move to folder:" +msgstr "Verplaatsen naar map:" + +#: ../../mod/settings.php:833 ../../mod/admin.php:545 +msgid "No special theme for mobile devices" +msgstr "Geen speciaal thema voor mobiele apparaten" + +#: ../../mod/settings.php:883 +msgid "Display Settings" +msgstr "Scherminstellingen" + +#: ../../mod/settings.php:889 ../../mod/settings.php:904 +msgid "Display Theme:" +msgstr "Schermthema:" + +#: ../../mod/settings.php:890 +msgid "Mobile Theme:" +msgstr "Mobiel thema:" + +#: ../../mod/settings.php:891 +msgid "Update browser every xx seconds" +msgstr "Browser elke xx seconden verversen" + +#: ../../mod/settings.php:891 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Minimum 10 seconden, geen maximum" + +#: ../../mod/settings.php:892 +msgid "Number of items to display per page:" +msgstr "Aantal items te tonen per pagina:" + +#: ../../mod/settings.php:892 ../../mod/settings.php:893 +msgid "Maximum of 100 items" +msgstr "Maximum 100 items" + +#: ../../mod/settings.php:893 +msgid "Number of items to display per page when viewed from mobile device:" +msgstr "Aantal items per pagina als je een mobiel toestel gebruikt:" + +#: ../../mod/settings.php:894 +msgid "Don't show emoticons" +msgstr "Emoticons niet tonen" + +#: ../../mod/settings.php:895 +msgid "Don't show notices" msgstr "" -#: ../../mod/bookmarklet.php:12 ../../boot.php:1266 ../../include/nav.php:92 -msgid "Login" -msgstr "Login" +#: ../../mod/settings.php:896 +msgid "Infinite scroll" +msgstr "Oneindig scrollen" -#: ../../mod/bookmarklet.php:41 -msgid "The post was created" +#: ../../mod/settings.php:897 +msgid "Automatic updates only at the top of the network page" msgstr "" -#: ../../mod/viewsrc.php:7 -msgid "Access denied." -msgstr "Toegang geweigerd" +#: ../../mod/settings.php:974 +msgid "User Types" +msgstr "Gebruikerstypes" + +#: ../../mod/settings.php:975 +msgid "Community Types" +msgstr "Forum/groepstypes" + +#: ../../mod/settings.php:976 +msgid "Normal Account Page" +msgstr "Normale accountpagina" + +#: ../../mod/settings.php:977 +msgid "This account is a normal personal profile" +msgstr "Deze account is een normaal persoonlijk profiel" + +#: ../../mod/settings.php:980 +msgid "Soapbox Page" +msgstr "Zeepkist-pagina" + +#: ../../mod/settings.php:981 +msgid "Automatically approve all connection/friend requests as read-only fans" +msgstr "Keur automatisch alle vriendschaps-/connectieverzoeken goed als fans met alleen recht tot lezen." + +#: ../../mod/settings.php:984 +msgid "Community Forum/Celebrity Account" +msgstr "Forum/groeps- of beroemdheid-account" + +#: ../../mod/settings.php:985 +msgid "" +"Automatically approve all connection/friend requests as read-write fans" +msgstr "Keur automatisch alle vriendschaps-/connectieverzoeken goed als fans met recht tot lezen en schrijven." + +#: ../../mod/settings.php:988 +msgid "Automatic Friend Page" +msgstr "Automatisch Vriendschapspagina" + +#: ../../mod/settings.php:989 +msgid "Automatically approve all connection/friend requests as friends" +msgstr "Keur automatisch alle vriendschaps-/connectieverzoeken goed als vrienden." + +#: ../../mod/settings.php:992 +msgid "Private Forum [Experimental]" +msgstr "Privé-forum [experimenteel]" + +#: ../../mod/settings.php:993 +msgid "Private forum - approved members only" +msgstr "Privé-forum - enkel voor goedgekeurde leden" + +#: ../../mod/settings.php:1005 +msgid "OpenID:" +msgstr "OpenID:" + +#: ../../mod/settings.php:1005 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "(Optioneel) Laat dit OpenID toe om in te loggen op deze account." + +#: ../../mod/settings.php:1015 +msgid "Publish your default profile in your local site directory?" +msgstr "Je standaardprofiel in je lokale gids publiceren?" + +#: ../../mod/settings.php:1015 ../../mod/settings.php:1021 +#: ../../mod/settings.php:1029 ../../mod/settings.php:1033 +#: ../../mod/settings.php:1038 ../../mod/settings.php:1044 +#: ../../mod/settings.php:1050 ../../mod/settings.php:1056 +#: ../../mod/settings.php:1086 ../../mod/settings.php:1087 +#: ../../mod/settings.php:1088 ../../mod/settings.php:1089 +#: ../../mod/settings.php:1090 ../../mod/register.php:234 +#: ../../mod/dfrn_request.php:830 ../../mod/api.php:106 +#: ../../mod/profiles.php:661 ../../mod/profiles.php:665 +msgid "No" +msgstr "Nee" + +#: ../../mod/settings.php:1021 +msgid "Publish your default profile in the global social directory?" +msgstr "Je standaardprofiel in de globale sociale gids publiceren?" + +#: ../../mod/settings.php:1029 +msgid "Hide your contact/friend list from viewers of your default profile?" +msgstr "Je vrienden/contacten verbergen voor bezoekers van je standaard profiel?" + +#: ../../mod/settings.php:1033 +msgid "" +"If enabled, posting public messages to Diaspora and other networks isn't " +"possible." +msgstr "" + +#: ../../mod/settings.php:1038 +msgid "Allow friends to post to your profile page?" +msgstr "Vrienden toestaan om op jou profielpagina te posten?" + +#: ../../mod/settings.php:1044 +msgid "Allow friends to tag your posts?" +msgstr "Sta vrienden toe om jouw berichten te labelen?" + +#: ../../mod/settings.php:1050 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "Sta je mij toe om jou als mogelijke vriend voor te stellen aan nieuwe leden?" + +#: ../../mod/settings.php:1056 +msgid "Permit unknown people to send you private mail?" +msgstr "Mogen onbekende personen jou privé berichten sturen?" + +#: ../../mod/settings.php:1064 +msgid "Profile is not published." +msgstr "Profiel is niet gepubliceerd." + +#: ../../mod/settings.php:1067 ../../mod/profile_photo.php:248 +msgid "or" +msgstr "of" + +#: ../../mod/settings.php:1072 +msgid "Your Identity Address is" +msgstr "Jouw Identiteitsadres is" + +#: ../../mod/settings.php:1083 +msgid "Automatically expire posts after this many days:" +msgstr "Laat berichten automatisch vervallen na zo veel dagen:" + +#: ../../mod/settings.php:1083 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "Berichten zullen niet vervallen indien leeg. Vervallen berichten zullen worden verwijderd." + +#: ../../mod/settings.php:1084 +msgid "Advanced expiration settings" +msgstr "Geavanceerde instellingen voor vervallen" + +#: ../../mod/settings.php:1085 +msgid "Advanced Expiration" +msgstr "Geavanceerd Verval:" + +#: ../../mod/settings.php:1086 +msgid "Expire posts:" +msgstr "Laat berichten vervallen:" + +#: ../../mod/settings.php:1087 +msgid "Expire personal notes:" +msgstr "Laat persoonlijke aantekeningen verlopen:" + +#: ../../mod/settings.php:1088 +msgid "Expire starred posts:" +msgstr "Laat berichten met ster verlopen" + +#: ../../mod/settings.php:1089 +msgid "Expire photos:" +msgstr "Laat foto's vervallen:" + +#: ../../mod/settings.php:1090 +msgid "Only expire posts by others:" +msgstr "Laat alleen berichten door anderen vervallen:" + +#: ../../mod/settings.php:1116 +msgid "Account Settings" +msgstr "Account Instellingen" + +#: ../../mod/settings.php:1124 +msgid "Password Settings" +msgstr "Wachtwoord Instellingen" + +#: ../../mod/settings.php:1125 +msgid "New Password:" +msgstr "Nieuw Wachtwoord:" + +#: ../../mod/settings.php:1126 +msgid "Confirm:" +msgstr "Bevestig:" + +#: ../../mod/settings.php:1126 +msgid "Leave password fields blank unless changing" +msgstr "Laat de wachtwoord-velden leeg, tenzij je het wilt veranderen" + +#: ../../mod/settings.php:1127 +msgid "Current Password:" +msgstr "Huidig wachtwoord:" + +#: ../../mod/settings.php:1127 ../../mod/settings.php:1128 +msgid "Your current password to confirm the changes" +msgstr "Je huidig wachtwoord om de wijzigingen te bevestigen" + +#: ../../mod/settings.php:1128 +msgid "Password:" +msgstr "Wachtwoord:" + +#: ../../mod/settings.php:1132 +msgid "Basic Settings" +msgstr "Basis Instellingen" + +#: ../../mod/settings.php:1134 +msgid "Email Address:" +msgstr "E-mailadres:" + +#: ../../mod/settings.php:1135 +msgid "Your Timezone:" +msgstr "Je Tijdzone:" + +#: ../../mod/settings.php:1136 +msgid "Default Post Location:" +msgstr "Standaard locatie:" + +#: ../../mod/settings.php:1137 +msgid "Use Browser Location:" +msgstr "Gebruik Webbrowser Locatie:" + +#: ../../mod/settings.php:1140 +msgid "Security and Privacy Settings" +msgstr "Instellingen voor Beveiliging en Privacy" + +#: ../../mod/settings.php:1142 +msgid "Maximum Friend Requests/Day:" +msgstr "Maximum aantal vriendschapsverzoeken per dag:" + +#: ../../mod/settings.php:1142 ../../mod/settings.php:1172 +msgid "(to prevent spam abuse)" +msgstr "(om spam misbruik te voorkomen)" + +#: ../../mod/settings.php:1143 +msgid "Default Post Permissions" +msgstr "Standaard rechten voor nieuwe berichten" + +#: ../../mod/settings.php:1144 +msgid "(click to open/close)" +msgstr "(klik om te openen/sluiten)" + +#: ../../mod/settings.php:1153 ../../mod/photos.php:1146 +#: ../../mod/photos.php:1519 +msgid "Show to Groups" +msgstr "Tonen aan groepen" + +#: ../../mod/settings.php:1154 ../../mod/photos.php:1147 +#: ../../mod/photos.php:1520 +msgid "Show to Contacts" +msgstr "Tonen aan contacten" + +#: ../../mod/settings.php:1155 +msgid "Default Private Post" +msgstr "Standaard Privé Post" + +#: ../../mod/settings.php:1156 +msgid "Default Public Post" +msgstr "Standaard Publieke Post" + +#: ../../mod/settings.php:1160 +msgid "Default Permissions for New Posts" +msgstr "Standaard rechten voor nieuwe berichten" + +#: ../../mod/settings.php:1172 +msgid "Maximum private messages per day from unknown people:" +msgstr "Maximum aantal privé-berichten per dag van onbekende personen:" + +#: ../../mod/settings.php:1175 +msgid "Notification Settings" +msgstr "Notificatie Instellingen" + +#: ../../mod/settings.php:1176 +msgid "By default post a status message when:" +msgstr "Post automatisch een bericht op je tijdlijn wanneer:" + +#: ../../mod/settings.php:1177 +msgid "accepting a friend request" +msgstr "Een vriendschapsverzoek accepteren" + +#: ../../mod/settings.php:1178 +msgid "joining a forum/community" +msgstr "Lid worden van een groep/forum" + +#: ../../mod/settings.php:1179 +msgid "making an interesting profile change" +msgstr "Een interessante verandering aan je profiel" + +#: ../../mod/settings.php:1180 +msgid "Send a notification email when:" +msgstr "Stuur een notificatie e-mail wanneer:" + +#: ../../mod/settings.php:1181 +msgid "You receive an introduction" +msgstr "Je ontvangt een vriendschaps- of connectieverzoek" + +#: ../../mod/settings.php:1182 +msgid "Your introductions are confirmed" +msgstr "Jouw vriendschaps- of connectieverzoeken zijn bevestigd" + +#: ../../mod/settings.php:1183 +msgid "Someone writes on your profile wall" +msgstr "Iemand iets op je tijdlijn schrijft" + +#: ../../mod/settings.php:1184 +msgid "Someone writes a followup comment" +msgstr "Iemand een reactie schrijft" + +#: ../../mod/settings.php:1185 +msgid "You receive a private message" +msgstr "Je een privé-bericht ontvangt" + +#: ../../mod/settings.php:1186 +msgid "You receive a friend suggestion" +msgstr "Je een suggestie voor een vriendschap ontvangt" + +#: ../../mod/settings.php:1187 +msgid "You are tagged in a post" +msgstr "Je expliciet in een bericht bent genoemd" + +#: ../../mod/settings.php:1188 +msgid "You are poked/prodded/etc. in a post" +msgstr "Je in een bericht bent aangestoten/gepord/etc." + +#: ../../mod/settings.php:1190 +msgid "Text-only notification emails" +msgstr "" + +#: ../../mod/settings.php:1192 +msgid "Send text only notification emails, without the html part" +msgstr "" + +#: ../../mod/settings.php:1194 +msgid "Advanced Account/Page Type Settings" +msgstr "" + +#: ../../mod/settings.php:1195 +msgid "Change the behaviour of this account for special situations" +msgstr "" + +#: ../../mod/settings.php:1198 +msgid "Relocate" +msgstr "" + +#: ../../mod/settings.php:1199 +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:1200 +msgid "Resend relocate message to contacts" +msgstr "" + +#: ../../mod/common.php:42 +msgid "Common Friends" +msgstr "Gedeelde Vrienden" + +#: ../../mod/common.php:78 +msgid "No contacts in common." +msgstr "Geen gedeelde contacten." + +#: ../../mod/lockview.php:31 ../../mod/lockview.php:39 +msgid "Remote privacy information not available." +msgstr "Privacyinformatie op afstand niet beschikbaar." + +#: ../../mod/lockview.php:48 +msgid "Visible to:" +msgstr "Zichtbaar voor:" + +#: ../../mod/contacts.php:112 +#, php-format +msgid "%d contact edited." +msgid_plural "%d contacts edited" +msgstr[0] "" +msgstr[1] "" + +#: ../../mod/contacts.php:143 ../../mod/contacts.php:276 +msgid "Could not access contact record." +msgstr "Kon geen toegang krijgen tot de contactgegevens" + +#: ../../mod/contacts.php:157 +msgid "Could not locate selected profile." +msgstr "Kon het geselecteerde profiel niet vinden." + +#: ../../mod/contacts.php:190 +msgid "Contact updated." +msgstr "Contact bijgewerkt." + +#: ../../mod/contacts.php:192 ../../mod/dfrn_request.php:576 +msgid "Failed to update contact record." +msgstr "Ik kon de contactgegevens niet aanpassen." + +#: ../../mod/contacts.php:291 +msgid "Contact has been blocked" +msgstr "Contact is geblokkeerd" + +#: ../../mod/contacts.php:291 +msgid "Contact has been unblocked" +msgstr "Contact is gedeblokkeerd" + +#: ../../mod/contacts.php:302 +msgid "Contact has been ignored" +msgstr "Contact wordt genegeerd" + +#: ../../mod/contacts.php:302 +msgid "Contact has been unignored" +msgstr "Contact wordt niet meer genegeerd" + +#: ../../mod/contacts.php:314 +msgid "Contact has been archived" +msgstr "Contact is gearchiveerd" + +#: ../../mod/contacts.php:314 +msgid "Contact has been unarchived" +msgstr "Contact is niet meer gearchiveerd" + +#: ../../mod/contacts.php:339 ../../mod/contacts.php:727 +msgid "Do you really want to delete this contact?" +msgstr "Wil je echt dit contact verwijderen?" + +#: ../../mod/contacts.php:356 +msgid "Contact has been removed." +msgstr "Contact is verwijderd." + +#: ../../mod/contacts.php:394 +#, php-format +msgid "You are mutual friends with %s" +msgstr "Je bent wederzijds bevriend met %s" + +#: ../../mod/contacts.php:398 +#, php-format +msgid "You are sharing with %s" +msgstr "Je deelt met %s" + +#: ../../mod/contacts.php:403 +#, php-format +msgid "%s is sharing with you" +msgstr "%s deelt met jou" + +#: ../../mod/contacts.php:423 +msgid "Private communications are not available for this contact." +msgstr "Privécommunicatie met dit contact is niet beschikbaar." + +#: ../../mod/contacts.php:426 ../../mod/admin.php:569 +msgid "Never" +msgstr "Nooit" + +#: ../../mod/contacts.php:430 +msgid "(Update was successful)" +msgstr "(Wijziging is geslaagd)" + +#: ../../mod/contacts.php:430 +msgid "(Update was not successful)" +msgstr "(Wijziging is niet geslaagd)" + +#: ../../mod/contacts.php:432 +msgid "Suggest friends" +msgstr "Stel vrienden voor" + +#: ../../mod/contacts.php:436 +#, php-format +msgid "Network type: %s" +msgstr "Netwerk type: %s" + +#: ../../mod/contacts.php:444 +msgid "View all contacts" +msgstr "Alle contacten zien" + +#: ../../mod/contacts.php:449 ../../mod/contacts.php:518 +#: ../../mod/contacts.php:730 ../../mod/admin.php:1009 +msgid "Unblock" +msgstr "Blokkering opheffen" + +#: ../../mod/contacts.php:449 ../../mod/contacts.php:518 +#: ../../mod/contacts.php:730 ../../mod/admin.php:1008 +msgid "Block" +msgstr "Blokkeren" + +#: ../../mod/contacts.php:452 +msgid "Toggle Blocked status" +msgstr "Schakel geblokkeerde status" + +#: ../../mod/contacts.php:455 ../../mod/contacts.php:519 +#: ../../mod/contacts.php:731 +msgid "Unignore" +msgstr "Negeer niet meer" + +#: ../../mod/contacts.php:458 +msgid "Toggle Ignored status" +msgstr "Schakel negeerstatus" + +#: ../../mod/contacts.php:462 ../../mod/contacts.php:732 +msgid "Unarchive" +msgstr "Archiveer niet meer" + +#: ../../mod/contacts.php:462 ../../mod/contacts.php:732 +msgid "Archive" +msgstr "Archiveer" + +#: ../../mod/contacts.php:465 +msgid "Toggle Archive status" +msgstr "Schakel archiveringsstatus" + +#: ../../mod/contacts.php:468 +msgid "Repair" +msgstr "Herstellen" + +#: ../../mod/contacts.php:471 +msgid "Advanced Contact Settings" +msgstr "Geavanceerde instellingen voor contacten" + +#: ../../mod/contacts.php:477 +msgid "Communications lost with this contact!" +msgstr "Communicatie met dit contact is verbroken!" + +#: ../../mod/contacts.php:480 +msgid "Fetch further information for feeds" +msgstr "" + +#: ../../mod/contacts.php:481 +msgid "Disabled" +msgstr "" + +#: ../../mod/contacts.php:481 +msgid "Fetch information" +msgstr "" + +#: ../../mod/contacts.php:481 +msgid "Fetch information and keywords" +msgstr "" + +#: ../../mod/contacts.php:490 +msgid "Contact Editor" +msgstr "Contactbewerker" + +#: ../../mod/contacts.php:493 +msgid "Profile Visibility" +msgstr "Zichtbaarheid profiel" + +#: ../../mod/contacts.php:494 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Kies het profiel dat getoond moet worden wanneer %s uw profiel bezoekt. " + +#: ../../mod/contacts.php:495 +msgid "Contact Information / Notes" +msgstr "Contactinformatie / aantekeningen" + +#: ../../mod/contacts.php:496 +msgid "Edit contact notes" +msgstr "Wijzig aantekeningen over dit contact" + +#: ../../mod/contacts.php:501 ../../mod/contacts.php:695 +#: ../../mod/nogroup.php:40 ../../mod/viewcontacts.php:64 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Bekijk het profiel van %s [%s]" + +#: ../../mod/contacts.php:502 +msgid "Block/Unblock contact" +msgstr "Blokkeer/deblokkeer contact" + +#: ../../mod/contacts.php:503 +msgid "Ignore contact" +msgstr "Negeer contact" + +#: ../../mod/contacts.php:504 +msgid "Repair URL settings" +msgstr "Repareer URL-instellingen" + +#: ../../mod/contacts.php:505 +msgid "View conversations" +msgstr "Toon conversaties" + +#: ../../mod/contacts.php:507 +msgid "Delete contact" +msgstr "Verwijder contact" + +#: ../../mod/contacts.php:511 +msgid "Last update:" +msgstr "Laatste wijziging:" + +#: ../../mod/contacts.php:513 +msgid "Update public posts" +msgstr "Openbare posts aanpassen" + +#: ../../mod/contacts.php:515 ../../mod/admin.php:1503 +msgid "Update now" +msgstr "Wijzig nu" + +#: ../../mod/contacts.php:522 +msgid "Currently blocked" +msgstr "Op dit moment geblokkeerd" + +#: ../../mod/contacts.php:523 +msgid "Currently ignored" +msgstr "Op dit moment genegeerd" + +#: ../../mod/contacts.php:524 +msgid "Currently archived" +msgstr "Op dit moment gearchiveerd" + +#: ../../mod/contacts.php:525 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "Antwoorden of 'vind ik leuk's op je openbare posts kunnen nog zichtbaar zijn" + +#: ../../mod/contacts.php:526 +msgid "Notification for new posts" +msgstr "Meldingen voor nieuwe berichten" + +#: ../../mod/contacts.php:526 +msgid "Send a notification of every new post of this contact" +msgstr "" + +#: ../../mod/contacts.php:529 +msgid "Blacklisted keywords" +msgstr "" + +#: ../../mod/contacts.php:529 +msgid "" +"Comma separated list of keywords that should not be converted to hashtags, " +"when \"Fetch information and keywords\" is selected" +msgstr "" + +#: ../../mod/contacts.php:580 +msgid "Suggestions" +msgstr "Voorstellen" + +#: ../../mod/contacts.php:583 +msgid "Suggest potential friends" +msgstr "Stel vrienden voor" + +#: ../../mod/contacts.php:589 +msgid "Show all contacts" +msgstr "Toon alle contacten" + +#: ../../mod/contacts.php:592 +msgid "Unblocked" +msgstr "Niet geblokkeerd" + +#: ../../mod/contacts.php:595 +msgid "Only show unblocked contacts" +msgstr "Toon alleen niet-geblokkeerde contacten" + +#: ../../mod/contacts.php:599 +msgid "Blocked" +msgstr "Geblokkeerd" + +#: ../../mod/contacts.php:602 +msgid "Only show blocked contacts" +msgstr "Toon alleen geblokkeerde contacten" + +#: ../../mod/contacts.php:606 +msgid "Ignored" +msgstr "Genegeerd" + +#: ../../mod/contacts.php:609 +msgid "Only show ignored contacts" +msgstr "Toon alleen genegeerde contacten" + +#: ../../mod/contacts.php:613 +msgid "Archived" +msgstr "Gearchiveerd" + +#: ../../mod/contacts.php:616 +msgid "Only show archived contacts" +msgstr "Toon alleen gearchiveerde contacten" + +#: ../../mod/contacts.php:620 +msgid "Hidden" +msgstr "Verborgen" + +#: ../../mod/contacts.php:623 +msgid "Only show hidden contacts" +msgstr "Toon alleen verborgen contacten" + +#: ../../mod/contacts.php:671 +msgid "Mutual Friendship" +msgstr "Wederzijdse vriendschap" + +#: ../../mod/contacts.php:675 +msgid "is a fan of yours" +msgstr "Is een fan van jou" + +#: ../../mod/contacts.php:679 +msgid "you are a fan of" +msgstr "Jij bent een fan van" + +#: ../../mod/contacts.php:696 ../../mod/nogroup.php:41 +msgid "Edit contact" +msgstr "Contact bewerken" + +#: ../../mod/contacts.php:722 +msgid "Search your contacts" +msgstr "Doorzoek je contacten" + +#: ../../mod/contacts.php:723 ../../mod/directory.php:61 +msgid "Finding: " +msgstr "Gevonden:" + +#: ../../mod/wall_attach.php:75 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "" + +#: ../../mod/wall_attach.php:75 +msgid "Or - did you try to upload an empty file?" +msgstr "" + +#: ../../mod/wall_attach.php:81 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "Bestand is groter dan de toegelaten %d" + +#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133 +msgid "File upload failed." +msgstr "Uploaden van bestand mislukt." + +#: ../../mod/update_community.php:18 ../../mod/update_network.php:25 +#: ../../mod/update_notes.php:37 ../../mod/update_display.php:22 +#: ../../mod/update_profile.php:41 +msgid "[Embedded content - reload page to view]" +msgstr "[Ingebedde inhoud - herlaad pagina om het te bekijken]" + +#: ../../mod/uexport.php:77 +msgid "Export account" +msgstr "Account exporteren" + +#: ../../mod/uexport.php:77 +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 "Je account informatie en contacten exporteren. Gebruik dit om een backup van je account te maken en/of om het te verhuizen naar een andere server." + +#: ../../mod/uexport.php:78 +msgid "Export all" +msgstr "Alles exporteren" + +#: ../../mod/uexport.php:78 +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 "Je account info, contacten en al je items in json formaat exporteren. Dit kan een heel groot bestand worden, en kan lang duren. Gebruik dit om een volledige backup van je account te maken (foto's worden niet geexporteerd)" + +#: ../../mod/register.php:90 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "Registratie geslaagd. Kijk je e-mail na voor verdere instructies." + +#: ../../mod/register.php:96 +#, php-format +msgid "" +"Failed to send email message. Here your accout details:
    login: %s
    " +"password: %s

    You can change your password after login." +msgstr "" + +#: ../../mod/register.php:105 +msgid "Your registration can not be processed." +msgstr "Je registratie kan niet verwerkt worden." + +#: ../../mod/register.php:148 +msgid "Your registration is pending approval by the site owner." +msgstr "Jouw registratie wacht op goedkeuring van de beheerder." + +#: ../../mod/register.php:186 ../../mod/uimport.php:50 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Deze website heeft het toegelaten dagelijkse aantal registraties overschreden. Probeer morgen opnieuw." + +#: ../../mod/register.php:214 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking 'Register'." +msgstr "Je kunt (optioneel) dit formulier invullen via OpenID door je OpenID in te geven en op 'Registreren' te klikken." + +#: ../../mod/register.php:215 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "Laat dit veld leeg als je niet vertrouwd bent met OpenID, en vul de rest van de items in." + +#: ../../mod/register.php:216 +msgid "Your OpenID (optional): " +msgstr "Je OpenID (optioneel):" + +#: ../../mod/register.php:230 +msgid "Include your profile in member directory?" +msgstr "Je profiel in de ledengids opnemen?" + +#: ../../mod/register.php:251 +msgid "Membership on this site is by invitation only." +msgstr "Lidmaatschap van deze website is uitsluitend op uitnodiging." + +#: ../../mod/register.php:252 +msgid "Your invitation ID: " +msgstr "Je uitnodigingsid:" + +#: ../../mod/register.php:255 ../../mod/admin.php:621 +msgid "Registration" +msgstr "Registratie" + +#: ../../mod/register.php:263 +msgid "Your Full Name (e.g. Joe Smith): " +msgstr "Je volledige naam (bijv. Jan Jansens):" + +#: ../../mod/register.php:264 +msgid "Your Email Address: " +msgstr "Je email adres:" + +#: ../../mod/register.php:265 +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be " +"'nickname@$sitename'." +msgstr "Kies een bijnaam voor je profiel. Deze moet met een letter beginnen. Je profieladres op deze website zal dan 'bijnaam@$sitename' zijn." + +#: ../../mod/register.php:266 +msgid "Choose a nickname: " +msgstr "Kies een bijnaam:" + +#: ../../mod/register.php:275 ../../mod/uimport.php:64 +msgid "Import" +msgstr "Importeren" + +#: ../../mod/register.php:276 +msgid "Import your profile to this friendica instance" +msgstr "" + +#: ../../mod/oexchange.php:25 +msgid "Post successful." +msgstr "Bericht succesvol geplaatst." + +#: ../../mod/maintenance.php:5 +msgid "System down for maintenance" +msgstr "Systeem onbeschikbaar wegens onderhoud" + +#: ../../mod/profile.php:155 ../../mod/display.php:332 +msgid "Access to this profile has been restricted." +msgstr "Toegang tot dit profiel is beperkt." + +#: ../../mod/profile.php:180 +msgid "Tips for New Members" +msgstr "Tips voor nieuwe leden" + +#: ../../mod/videos.php:115 ../../mod/dfrn_request.php:762 +#: ../../mod/viewcontacts.php:19 ../../mod/photos.php:920 +#: ../../mod/search.php:89 ../../mod/community.php:18 +#: ../../mod/display.php:212 ../../mod/directory.php:33 +msgid "Public access denied." +msgstr "Niet vrij toegankelijk" + +#: ../../mod/videos.php:125 +msgid "No videos selected" +msgstr "Geen video's geselecteerd" + +#: ../../mod/videos.php:226 ../../mod/photos.php:1031 +msgid "Access to this item is restricted." +msgstr "Toegang tot dit item is beperkt." + +#: ../../mod/videos.php:308 ../../mod/photos.php:1808 +msgid "View Album" +msgstr "Album bekijken" + +#: ../../mod/videos.php:317 +msgid "Recent Videos" +msgstr "Recente video's" + +#: ../../mod/videos.php:319 +msgid "Upload New Videos" +msgstr "Nieuwe video's uploaden" + +#: ../../mod/manage.php:106 +msgid "Manage Identities and/or Pages" +msgstr "Beheer Identiteiten en/of Pagina's" + +#: ../../mod/manage.php:107 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "Wissel tussen verschillende identiteiten of forum/groeppagina's die jouw accountdetails delen of waar je \"beheerdersrechten\" hebt gekregen." + +#: ../../mod/manage.php:108 +msgid "Select an identity to manage: " +msgstr "Selecteer een identiteit om te beheren:" + +#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 +msgid "Item not found" +msgstr "Item niet gevonden" + +#: ../../mod/editpost.php:39 +msgid "Edit post" +msgstr "Bericht bewerken" #: ../../mod/dirfind.php:26 msgid "People Search" @@ -1812,19 +4700,245 @@ msgstr "Mensen Zoeken" msgid "No matches" msgstr "Geen resultaten" -#: ../../mod/fbrowser.php:25 ../../boot.php:2126 ../../include/nav.php:78 -#: ../../view/theme/diabook/theme.php:126 -msgid "Photos" -msgstr "Foto's" +#: ../../mod/regmod.php:55 +msgid "Account approved." +msgstr "Account goedgekeurd." + +#: ../../mod/regmod.php:92 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registratie ingetrokken voor %s" + +#: ../../mod/regmod.php:104 +msgid "Please login." +msgstr "Inloggen." + +#: ../../mod/dfrn_request.php:95 +msgid "This introduction has already been accepted." +msgstr "Verzoek is al goedgekeurd" + +#: ../../mod/dfrn_request.php:120 ../../mod/dfrn_request.php:518 +msgid "Profile location is not valid or does not contain profile information." +msgstr "Profiel is ongeldig of bevat geen informatie" + +#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:523 +msgid "Warning: profile location has no identifiable owner name." +msgstr "Waarschuwing: de profiellocatie heeft geen identificeerbare eigenaar." + +#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:525 +msgid "Warning: profile location has no profile photo." +msgstr "Waarschuwing: Profieladres heeft geen profielfoto." + +#: ../../mod/dfrn_request.php:130 ../../mod/dfrn_request.php:528 +#, 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] "De %d vereiste parameter is niet op het gegeven adres gevonden" +msgstr[1] "De %d vereiste parameters zijn niet op het gegeven adres gevonden" + +#: ../../mod/dfrn_request.php:172 +msgid "Introduction complete." +msgstr "Verzoek voltooid." + +#: ../../mod/dfrn_request.php:214 +msgid "Unrecoverable protocol error." +msgstr "Onherstelbare protocolfout. " + +#: ../../mod/dfrn_request.php:242 +msgid "Profile unavailable." +msgstr "Profiel onbeschikbaar" + +#: ../../mod/dfrn_request.php:267 +#, php-format +msgid "%s has received too many connection requests today." +msgstr "%s heeft te veel verzoeken gehad vandaag." + +#: ../../mod/dfrn_request.php:268 +msgid "Spam protection measures have been invoked." +msgstr "Beveiligingsmaatregelen tegen spam zijn in werking getreden." + +#: ../../mod/dfrn_request.php:269 +msgid "Friends are advised to please try again in 24 hours." +msgstr "Wij adviseren vrienden om het over 24 uur nog een keer te proberen." + +#: ../../mod/dfrn_request.php:331 +msgid "Invalid locator" +msgstr "Ongeldige plaatsbepaler" + +#: ../../mod/dfrn_request.php:340 +msgid "Invalid email address." +msgstr "Geen geldig e-mailadres" + +#: ../../mod/dfrn_request.php:367 +msgid "This account has not been configured for email. Request failed." +msgstr "Aanvraag mislukt. Dit account is niet geconfigureerd voor e-mail." + +#: ../../mod/dfrn_request.php:463 +msgid "Unable to resolve your name at the provided location." +msgstr "Ik kan jouw naam op het opgegeven adres niet vinden." + +#: ../../mod/dfrn_request.php:476 +msgid "You have already introduced yourself here." +msgstr "Je hebt jezelf hier al voorgesteld." + +#: ../../mod/dfrn_request.php:480 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "Blijkbaar bent u al bevriend met %s." + +#: ../../mod/dfrn_request.php:501 +msgid "Invalid profile URL." +msgstr "Ongeldig profiel adres." + +#: ../../mod/dfrn_request.php:597 +msgid "Your introduction has been sent." +msgstr "Je verzoek is verzonden." + +#: ../../mod/dfrn_request.php:650 +msgid "Please login to confirm introduction." +msgstr "Log in om je verzoek te bevestigen." + +#: ../../mod/dfrn_request.php:660 +msgid "" +"Incorrect identity currently logged in. Please login to " +"this profile." +msgstr "Je huidige identiteit is niet de juiste. Log met dit profiel in." + +#: ../../mod/dfrn_request.php:671 +msgid "Hide this contact" +msgstr "Verberg dit contact" + +#: ../../mod/dfrn_request.php:674 +#, php-format +msgid "Welcome home %s." +msgstr "Welkom terug %s." + +#: ../../mod/dfrn_request.php:675 +#, php-format +msgid "Please confirm your introduction/connection request to %s." +msgstr "Bevestig je vriendschaps-/connectieverzoek voor %s." + +#: ../../mod/dfrn_request.php:804 +msgid "" +"Please enter your 'Identity Address' from one of the following supported " +"communications networks:" +msgstr "Vul hier uw 'Identiteitsadres' in van een van de volgende ondersteunde communicatienetwerken:" + +#: ../../mod/dfrn_request.php:824 +msgid "" +"If you are not yet a member of the free social web, follow this link to find a public" +" Friendica site and join us today." +msgstr "Als je nog geen lid bent van het vrije sociale web, volg dan deze link om een openbare Friendica-website te vinden, en sluit je vandaag nog aan." + +#: ../../mod/dfrn_request.php:827 +msgid "Friend/Connection Request" +msgstr "Vriendschaps-/connectieverzoek" + +#: ../../mod/dfrn_request.php:828 +msgid "" +"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " +"testuser@identi.ca" +msgstr "Voorbeelden: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" + +#: ../../mod/dfrn_request.php:829 +msgid "Please answer the following:" +msgstr "Beantwoord het volgende:" + +#: ../../mod/dfrn_request.php:830 +#, php-format +msgid "Does %s know you?" +msgstr "Kent %s jou?" + +#: ../../mod/dfrn_request.php:834 +msgid "Add a personal note:" +msgstr "Voeg een persoonlijke opmerking toe:" + +#: ../../mod/dfrn_request.php:837 +msgid "StatusNet/Federated Social Web" +msgstr "StatusNet/Gefedereerde Sociale Web" + +#: ../../mod/dfrn_request.php:839 +#, php-format +msgid "" +" - please do not use this form. Instead, enter %s into your Diaspora search" +" bar." +msgstr "- Gebruik niet dit formulier. Vul %s in in je Diaspora zoekbalk." + +#: ../../mod/dfrn_request.php:840 +msgid "Your Identity Address:" +msgstr "Adres van uw identiteit:" + +#: ../../mod/dfrn_request.php:843 +msgid "Submit Request" +msgstr "Aanvraag indienen" #: ../../mod/fbrowser.php:113 msgid "Files" msgstr "Bestanden" +#: ../../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 "Log in om verder te gaan." + +#: ../../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 "Wil je deze toepassing toestemming geven om jouw berichten en contacten in te kijken, en/of nieuwe berichten in jouw plaats aan te maken?" + +#: ../../mod/suggest.php:27 +msgid "Do you really want to delete this suggestion?" +msgstr "Wil je echt dit voorstel verwijderen?" + +#: ../../mod/suggest.php:74 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Geen voorstellen beschikbaar. Als dit een nieuwe website is, kun je het over 24 uur nog eens proberen." + +#: ../../mod/suggest.php:92 +msgid "Ignore/Hide" +msgstr "Negeren/Verbergen" + #: ../../mod/nogroup.php:59 msgid "Contacts who are not members of a group" msgstr "Contacten die geen leden zijn van een groep" +#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 +#: ../../mod/crepair.php:133 ../../mod/dfrn_confirm.php:120 +msgid "Contact not found." +msgstr "Contact niet gevonden" + +#: ../../mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "Vriendschapsvoorstel verzonden." + +#: ../../mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Stel vrienden voor" + +#: ../../mod/fsuggest.php:99 +#, php-format +msgid "Suggest a friend for %s" +msgstr "Stel een vriend voor aan %s" + +#: ../../mod/share.php:44 +msgid "link" +msgstr "link" + +#: ../../mod/viewcontacts.php:41 +msgid "No contacts." +msgstr "Geen contacten." + #: ../../mod/admin.php:57 msgid "Theme settings updated." msgstr "Thema-instellingen aangepast." @@ -1837,11 +4951,6 @@ msgstr "Website" msgid "Users" msgstr "Gebruiker" -#: ../../mod/admin.php:106 ../../mod/admin.php:1102 ../../mod/admin.php:1155 -#: ../../mod/settings.php:57 -msgid "Plugins" -msgstr "Plugins" - #: ../../mod/admin.php:107 ../../mod/admin.php:1323 ../../mod/admin.php:1357 msgid "Themes" msgstr "Thema's" @@ -1862,10 +4971,6 @@ msgstr "" msgid "check webfinger" msgstr "" -#: ../../mod/admin.php:130 ../../include/nav.php:184 -msgid "Admin" -msgstr "Beheer" - #: ../../mod/admin.php:131 msgid "Plugin Features" msgstr "Plugin Functies" @@ -1940,10 +5045,6 @@ msgstr "" msgid "Site settings updated." msgstr "Site instellingen gewijzigd." -#: ../../mod/admin.php:545 ../../mod/settings.php:828 -msgid "No special theme for mobile devices" -msgstr "Geen speciaal thema voor mobiele apparaten" - #: ../../mod/admin.php:562 msgid "No community page" msgstr "" @@ -1960,22 +5061,6 @@ msgstr "" msgid "At post arrival" msgstr "" -#: ../../mod/admin.php:571 ../../include/contact_selectors.php:56 -msgid "Frequently" -msgstr "Frequent" - -#: ../../mod/admin.php:572 ../../include/contact_selectors.php:57 -msgid "Hourly" -msgstr "elk uur" - -#: ../../mod/admin.php:573 ../../include/contact_selectors.php:58 -msgid "Twice daily" -msgstr "Twee keer per dag" - -#: ../../mod/admin.php:574 ../../include/contact_selectors.php:59 -msgid "Daily" -msgstr "dagelijks" - #: ../../mod/admin.php:579 msgid "Multi user instance" msgstr "Server voor meerdere gebruikers" @@ -2004,17 +5089,6 @@ msgstr "Verplicht alle links om SSL te gebruiken" msgid "Self-signed certificate, use SSL for local links only (discouraged)" msgstr "Zelf-ondertekend certificaat, gebruik SSL alleen voor lokale links (afgeraden)" -#: ../../mod/admin.php:620 ../../mod/admin.php:1156 ../../mod/admin.php:1358 -#: ../../mod/admin.php:1445 ../../mod/settings.php:614 -#: ../../mod/settings.php:724 ../../mod/settings.php:798 -#: ../../mod/settings.php:880 ../../mod/settings.php:1113 -msgid "Save Settings" -msgstr "Instellingen opslaan" - -#: ../../mod/admin.php:621 ../../mod/register.php:255 -msgid "Registration" -msgstr "Registratie" - #: ../../mod/admin.php:622 msgid "File upload" msgstr "Uploaden bestand" @@ -2649,11 +5723,6 @@ msgid "" "\t\t\tThank you and welcome to %4$s." msgstr "" -#: ../../mod/admin.php:838 ../../include/user.php:413 -#, php-format -msgid "Registration details for %s" -msgstr "Registratie details voor %s" - #: ../../mod/admin.php:850 #, php-format msgid "%s user blocked/unblocked" @@ -2703,12 +5772,6 @@ msgstr "" msgid "Request date" msgstr "Registratiedatum" -#: ../../mod/admin.php:1003 ../../mod/admin.php:1015 ../../mod/admin.php:1016 -#: ../../mod/admin.php:1031 ../../include/contact_selectors.php:79 -#: ../../include/contact_selectors.php:86 -msgid "Email" -msgstr "E-mail" - #: ../../mod/admin.php:1004 msgid "No registrations." msgstr "Geen registraties." @@ -2745,10 +5808,6 @@ msgstr "Laatste item" msgid "Deleted since" msgstr "Verwijderd sinds" -#: ../../mod/admin.php:1016 ../../mod/settings.php:36 -msgid "Account" -msgstr "Account" - #: ../../mod/admin.php:1018 msgid "" "Selected users will be deleted!\\n\\nEverything these users had posted on " @@ -2869,6 +5928,35 @@ msgstr "FTP Gebruiker" msgid "FTP Password" msgstr "FTP wachtwoord" +#: ../../mod/wall_upload.php:122 ../../mod/profile_photo.php:144 +#, php-format +msgid "Image exceeds size limit of %d" +msgstr "Afbeelding is groter dan de toegestane %d" + +#: ../../mod/wall_upload.php:144 ../../mod/photos.php:807 +#: ../../mod/profile_photo.php:153 +msgid "Unable to process image." +msgstr "Niet in staat om de afbeelding te verwerken" + +#: ../../mod/wall_upload.php:172 ../../mod/photos.php:834 +#: ../../mod/profile_photo.php:301 +msgid "Image upload failed." +msgstr "Uploaden van afbeelding mislukt." + +#: ../../mod/home.php:35 +#, php-format +msgid "Welcome to %s" +msgstr "Welkom op %s" + +#: ../../mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "OpenID protocol fout. Geen ID Gevonden." + +#: ../../mod/openid.php:53 +msgid "" +"Account not found and OpenID registration is not permitted on this site." +msgstr "Account niet gevonden, en OpenID-registratie is niet toegelaten op deze website." + #: ../../mod/network.php:142 msgid "Search Results For:" msgstr "Zoekresultaten voor:" @@ -2877,15 +5965,6 @@ msgstr "Zoekresultaten voor:" msgid "Remove term" msgstr "Verwijder zoekterm" -#: ../../mod/network.php:194 ../../mod/search.php:30 -#: ../../include/features.php:42 -msgid "Saved Searches" -msgstr "Opgeslagen zoekopdrachten" - -#: ../../mod/network.php:195 ../../include/group.php:275 -msgid "add" -msgstr "toevoegen" - #: ../../mod/network.php:356 msgid "Commented Order" msgstr "Nieuwe reacties bovenaan" @@ -2966,14 +6045,575 @@ msgstr "Privéberichten naar deze persoon kunnen openbaar gemaakt worden." msgid "Invalid contact." msgstr "Ongeldig contact." -#: ../../mod/allfriends.php:34 -#, php-format -msgid "Friends of %s" -msgstr "Vrienden van %s" +#: ../../mod/filer.php:30 +msgid "- select -" +msgstr "- Kies -" -#: ../../mod/allfriends.php:40 -msgid "No friends to display." -msgstr "Geen vrienden om te laten zien." +#: ../../mod/friendica.php:59 +msgid "This is Friendica, version" +msgstr "Dit is Friendica, versie" + +#: ../../mod/friendica.php:60 +msgid "running at web location" +msgstr "draaiend op web-adres" + +#: ../../mod/friendica.php:62 +msgid "" +"Please visit Friendica.com to learn " +"more about the Friendica project." +msgstr "Bezoek Friendica.com om meer te leren over het Friendica project." + +#: ../../mod/friendica.php:64 +msgid "Bug reports and issues: please visit" +msgstr "Bug rapporten en problemen: bezoek" + +#: ../../mod/friendica.php:65 +msgid "" +"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " +"dot com" +msgstr "Suggesties, lof, donaties, enzovoort - stuur een e-mail naar \"info\" op Friendica - dot com" + +#: ../../mod/friendica.php:79 +msgid "Installed plugins/addons/apps:" +msgstr "Geïnstalleerde plugins/toepassingen:" + +#: ../../mod/friendica.php:92 +msgid "No installed plugins/addons/apps" +msgstr "Geen plugins of toepassingen geïnstalleerd" + +#: ../../mod/apps.php:11 +msgid "Applications" +msgstr "Toepassingen" + +#: ../../mod/apps.php:14 +msgid "No installed applications." +msgstr "Geen toepassingen geïnstalleerd" + +#: ../../mod/photos.php:67 ../../mod/photos.php:1262 ../../mod/photos.php:1819 +msgid "Upload New Photos" +msgstr "Nieuwe foto's uploaden" + +#: ../../mod/photos.php:144 +msgid "Contact information unavailable" +msgstr "Contactinformatie niet beschikbaar" + +#: ../../mod/photos.php:165 +msgid "Album not found." +msgstr "Album niet gevonden" + +#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204 +msgid "Delete Album" +msgstr "Verwijder album" + +#: ../../mod/photos.php:198 +msgid "Do you really want to delete this photo album and all its photos?" +msgstr "Wil je echt dit fotoalbum en alle foto's erin verwijderen?" + +#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1515 +msgid "Delete Photo" +msgstr "Verwijder foto" + +#: ../../mod/photos.php:287 +msgid "Do you really want to delete this photo?" +msgstr "Wil je echt deze foto verwijderen?" + +#: ../../mod/photos.php:662 +#, php-format +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "%1$s is gelabeld in %2$s door %3$s" + +#: ../../mod/photos.php:662 +msgid "a photo" +msgstr "een foto" + +#: ../../mod/photos.php:767 +msgid "Image exceeds size limit of " +msgstr "Afbeelding is groter dan de maximale afmeting van" + +#: ../../mod/photos.php:775 +msgid "Image file is empty." +msgstr "Afbeeldingsbestand is leeg." + +#: ../../mod/photos.php:930 +msgid "No photos selected" +msgstr "Geen foto's geselecteerd" + +#: ../../mod/photos.php:1094 +#, php-format +msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." +msgstr "Je hebt %1$.2f Mbytes van %2$.2f Mbytes foto-opslagruimte gebruikt." + +#: ../../mod/photos.php:1129 +msgid "Upload Photos" +msgstr "Upload foto's" + +#: ../../mod/photos.php:1133 ../../mod/photos.php:1199 +msgid "New album name: " +msgstr "Nieuwe albumnaam: " + +#: ../../mod/photos.php:1134 +msgid "or existing album name: " +msgstr "of bestaande albumnaam: " + +#: ../../mod/photos.php:1135 +msgid "Do not show a status post for this upload" +msgstr "Toon geen bericht op je tijdlijn van deze upload" + +#: ../../mod/photos.php:1137 ../../mod/photos.php:1510 +msgid "Permissions" +msgstr "Rechten" + +#: ../../mod/photos.php:1148 +msgid "Private Photo" +msgstr "Privé foto" + +#: ../../mod/photos.php:1149 +msgid "Public Photo" +msgstr "Publieke foto" + +#: ../../mod/photos.php:1212 +msgid "Edit Album" +msgstr "Album wijzigen" + +#: ../../mod/photos.php:1218 +msgid "Show Newest First" +msgstr "Toon niewste eerst" + +#: ../../mod/photos.php:1220 +msgid "Show Oldest First" +msgstr "Toon oudste eerst" + +#: ../../mod/photos.php:1248 ../../mod/photos.php:1802 +msgid "View Photo" +msgstr "Bekijk foto" + +#: ../../mod/photos.php:1294 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Toegang geweigerd. Toegang tot dit item is mogelijk beperkt." + +#: ../../mod/photos.php:1296 +msgid "Photo not available" +msgstr "Foto is niet beschikbaar" + +#: ../../mod/photos.php:1352 +msgid "View photo" +msgstr "Bekijk foto" + +#: ../../mod/photos.php:1352 +msgid "Edit photo" +msgstr "Bewerk foto" + +#: ../../mod/photos.php:1353 +msgid "Use as profile photo" +msgstr "Gebruik als profielfoto" + +#: ../../mod/photos.php:1378 +msgid "View Full Size" +msgstr "Bekijk in volledig formaat" + +#: ../../mod/photos.php:1457 +msgid "Tags: " +msgstr "Labels: " + +#: ../../mod/photos.php:1460 +msgid "[Remove any tag]" +msgstr "[Alle labels verwijderen]" + +#: ../../mod/photos.php:1500 +msgid "Rotate CW (right)" +msgstr "Roteren met de klok mee (rechts)" + +#: ../../mod/photos.php:1501 +msgid "Rotate CCW (left)" +msgstr "Roteren tegen de klok in (links)" + +#: ../../mod/photos.php:1503 +msgid "New album name" +msgstr "Nieuwe albumnaam" + +#: ../../mod/photos.php:1506 +msgid "Caption" +msgstr "Onderschrift" + +#: ../../mod/photos.php:1508 +msgid "Add a Tag" +msgstr "Een label toevoegen" + +#: ../../mod/photos.php:1512 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl, #Ardennen, #camping " + +#: ../../mod/photos.php:1521 +msgid "Private photo" +msgstr "Privé foto" + +#: ../../mod/photos.php:1522 +msgid "Public photo" +msgstr "Publieke foto" + +#: ../../mod/photos.php:1817 +msgid "Recent Photos" +msgstr "Recente foto's" + +#: ../../mod/bookmarklet.php:41 +msgid "The post was created" +msgstr "" + +#: ../../mod/follow.php:27 +msgid "Contact added" +msgstr "Contact toegevoegd" + +#: ../../mod/uimport.php:66 +msgid "Move account" +msgstr "Account verplaatsen" + +#: ../../mod/uimport.php:67 +msgid "You can import an account from another Friendica server." +msgstr "Je kunt een account van een andere Friendica server importeren." + +#: ../../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 "Je moet je account bij de oude server exporteren, en hier uploaden. We zullen je oude account hier opnieuw aanmaken, met al je contacten. We zullen ook proberen om je vrienden in te lichten dat je naar hier verhuisd bent." + +#: ../../mod/uimport.php:69 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (statusnet/identi.ca) or from Diaspora" +msgstr "Deze functie is experimenteel. We kunnen geen contacten van het OStatus netwerk (statusnet/identi.ca) of van Diaspora importeren." + +#: ../../mod/uimport.php:70 +msgid "Account file" +msgstr "Account bestand" + +#: ../../mod/uimport.php:70 +msgid "" +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" +msgstr "" + +#: ../../mod/invite.php:27 +msgid "Total invitation limit exceeded." +msgstr "Totale uitnodigingslimiet overschreden." + +#: ../../mod/invite.php:49 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s: Geen geldig e-mailadres." + +#: ../../mod/invite.php:73 +msgid "Please join us on Friendica" +msgstr "Kom bij ons op Friendica" + +#: ../../mod/invite.php:84 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Uitnodigingslimiet overschreden. Neem contact op met de beheerder van je website." + +#: ../../mod/invite.php:89 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : Aflevering van bericht mislukt." + +#: ../../mod/invite.php:93 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d bericht verzonden." +msgstr[1] "%d berichten verzonden." + +#: ../../mod/invite.php:112 +msgid "You have no more invitations available" +msgstr "Je kunt geen uitnodigingen meer sturen" + +#: ../../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 "Bezoek %s voor een lijst van openbare sites waar je je kunt aansluiten. Friendica leden op andere sites kunnen allemaal met elkaar verbonden worden, en ook met leden van verschillende andere sociale netwerken." + +#: ../../mod/invite.php:122 +#, php-format +msgid "" +"To accept this invitation, please visit and register at %s or any other " +"public Friendica website." +msgstr "Om deze uitnodiging te accepteren kan je je op %s registreren of op een andere vrij toegankelijke 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 servers zijn allemaal onderling verbonden om een reusachtig sociaal web te maken met verbeterde privacy, dat eigendom is van en gecontroleerd door zijn leden. Ze kunnen ook verbindingen maken met verschillende traditionele sociale netwerken. Bekijk %s voor een lijst van alternatieve Friendica servers waar je aan kunt sluiten." + +#: ../../mod/invite.php:126 +msgid "" +"Our apologies. This system is not currently configured to connect with other" +" public sites or invite members." +msgstr "Onze verontschuldigingen. Dit systeem is momenteel niet ingesteld om verbinding te maken met andere openbare plaatsen of leden uit te nodigen." + +#: ../../mod/invite.php:132 +msgid "Send invitations" +msgstr "Verstuur uitnodigingen" + +#: ../../mod/invite.php:133 +msgid "Enter email addresses, one per line:" +msgstr "Vul e-mailadressen in, één per lijn:" + +#: ../../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 "Ik nodig je vriendelijk uit om bij mij en andere vrienden te komen op Friendica - en ons te helpen om een beter sociaal web te bouwen." + +#: ../../mod/invite.php:137 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "Je zult deze uitnodigingscode moeten invullen: $invite_code" + +#: ../../mod/invite.php:137 +msgid "" +"Once you have registered, please connect with me via my profile page at:" +msgstr "Eens je geregistreerd bent kun je contact leggen met mij via mijn profielpagina op:" + +#: ../../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 "Voor meer informatie over het Friendica project en waarom wij denken dat het belangrijk is kun je http://friendica.com/ bezoeken" + +#: ../../mod/viewsrc.php:7 +msgid "Access denied." +msgstr "Toegang geweigerd" + +#: ../../mod/lostpass.php:19 +msgid "No valid account found." +msgstr "Geen geldige account gevonden." + +#: ../../mod/lostpass.php:35 +msgid "Password reset request issued. Check your email." +msgstr "Verzoek om wachtwoord opnieuw in te stellen werd verstuurd. Kijk uw e-mail na." + +#: ../../mod/lostpass.php:42 +#, php-format +msgid "" +"\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." +msgstr "" + +#: ../../mod/lostpass.php:53 +#, php-format +msgid "" +"\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" +msgstr "" + +#: ../../mod/lostpass.php:72 +#, php-format +msgid "Password reset requested at %s" +msgstr "Op %s werd gevraagd je wachtwoord opnieuw in te stellen" + +#: ../../mod/lostpass.php:92 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "Verzoek kon niet geverifieerd worden. (Misschien heb je het voordien al ingediend.) Wachtwoord niet opnieuw ingesteld." + +#: ../../mod/lostpass.php:110 +msgid "Your password has been reset as requested." +msgstr "Je wachtwoord is opnieuw ingesteld zoals gevraagd." + +#: ../../mod/lostpass.php:111 +msgid "Your new password is" +msgstr "Je nieuwe wachtwoord is" + +#: ../../mod/lostpass.php:112 +msgid "Save or copy your new password - and then" +msgstr "Bewaar of kopieer je nieuw wachtwoord - en dan" + +#: ../../mod/lostpass.php:113 +msgid "click here to login" +msgstr "klik hier om in te loggen" + +#: ../../mod/lostpass.php:114 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Je kunt dit wachtwoord veranderen nadat je bent ingelogd op de Instellingen> pagina." + +#: ../../mod/lostpass.php:125 +#, php-format +msgid "" +"\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" +msgstr "" + +#: ../../mod/lostpass.php:131 +#, php-format +msgid "" +"\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" +msgstr "" + +#: ../../mod/lostpass.php:147 +#, php-format +msgid "Your password has been changed at %s" +msgstr "Je wachtwoord is veranderd op %s" + +#: ../../mod/lostpass.php:159 +msgid "Forgot your Password?" +msgstr "Wachtwoord vergeten?" + +#: ../../mod/lostpass.php:160 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Voer je e-mailadres in en verstuur het om je wachtwoord opnieuw in te stellen. Kijk dan je e-mail na voor verdere instructies." + +#: ../../mod/lostpass.php:161 +msgid "Nickname or Email: " +msgstr "Bijnaam of e-mail:" + +#: ../../mod/lostpass.php:162 +msgid "Reset" +msgstr "Opnieuw" + +#: ../../mod/babel.php:17 +msgid "Source (bbcode) text:" +msgstr "Bron (bbcode) tekst:" + +#: ../../mod/babel.php:23 +msgid "Source (Diaspora) text to convert to BBcode:" +msgstr "Bron (Diaspora) tekst om naar BBCode om te zetten:" + +#: ../../mod/babel.php:31 +msgid "Source input: " +msgstr "Bron ingave:" + +#: ../../mod/babel.php:35 +msgid "bb2html (raw HTML): " +msgstr "bb2html (ruwe 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 "Bron ingave (Diaspora formaat):" + +#: ../../mod/babel.php:74 +msgid "diaspora2bb: " +msgstr "diaspora2bb: " + +#: ../../mod/tagrm.php:41 +msgid "Tag removed" +msgstr "Label verwijderd" + +#: ../../mod/tagrm.php:79 +msgid "Remove Item Tag" +msgstr "Verwijder label van item" + +#: ../../mod/tagrm.php:81 +msgid "Select a tag to remove: " +msgstr "Selecteer een label om te verwijderen: " + +#: ../../mod/removeme.php:46 ../../mod/removeme.php:49 +msgid "Remove My Account" +msgstr "Verwijder mijn account" + +#: ../../mod/removeme.php:47 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "Dit zal je account volledig verwijderen. Dit kan niet hersteld worden als het eenmaal uitgevoerd is." + +#: ../../mod/removeme.php:48 +msgid "Please enter your password for verification:" +msgstr "Voer je wachtwoord in voor verificatie:" + +#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 +msgid "Invalid profile identifier." +msgstr "Ongeldige profiel-identificatie." + +#: ../../mod/profperm.php:101 +msgid "Profile Visibility Editor" +msgstr "" + +#: ../../mod/profperm.php:114 +msgid "Visible To" +msgstr "Zichtbaar voor" + +#: ../../mod/profperm.php:130 +msgid "All Contacts (with secure profile access)" +msgstr "Alle contacten (met veilige profieltoegang)" + +#: ../../mod/match.php:12 +msgid "Profile Match" +msgstr "Profielmatch" + +#: ../../mod/match.php:20 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Geen sleutelwoorden om te zoeken. Voeg sleutelwoorden toe aan je standaard profiel." + +#: ../../mod/match.php:57 +msgid "is interested in:" +msgstr "Is geïnteresseerd in:" #: ../../mod/events.php:66 msgid "Event title and start time are required." @@ -2987,16 +6627,6 @@ msgstr "l j F" msgid "Edit event" msgstr "Gebeurtenis bewerken" -#: ../../mod/events.php:335 ../../include/text.php:1647 -#: ../../include/text.php:1657 -msgid "link to source" -msgstr "Verwijzing naar bron" - -#: ../../mod/events.php:370 ../../boot.php:2143 ../../include/nav.php:80 -#: ../../view/theme/diabook/theme.php:127 -msgid "Events" -msgstr "Gebeurtenissen" - #: ../../mod/events.php:371 msgid "Create New Event" msgstr "Maak een nieuwe gebeurtenis" @@ -3046,11 +6676,6 @@ msgstr "Pas aan aan de tijdzone van de gebruiker" msgid "Description:" msgstr "Beschrijving:" -#: ../../mod/events.php:471 ../../mod/directory.php:136 ../../boot.php:1648 -#: ../../include/bb2diaspora.php:170 ../../include/event.php:40 -msgid "Location:" -msgstr "Plaats:" - #: ../../mod/events.php:473 msgid "Title:" msgstr "Titel:" @@ -3059,184 +6684,436 @@ msgstr "Titel:" msgid "Share this event" msgstr "Deel deze gebeurtenis" -#: ../../mod/content.php:437 ../../mod/content.php:740 -#: ../../mod/photos.php:1653 ../../object/Item.php:129 -#: ../../include/conversation.php:613 -msgid "Select" -msgstr "Kies" +#: ../../mod/ping.php:240 +msgid "{0} wants to be your friend" +msgstr "{0} wilt je vriend worden" -#: ../../mod/content.php:471 ../../mod/content.php:852 -#: ../../mod/content.php:853 ../../object/Item.php:326 -#: ../../object/Item.php:327 ../../include/conversation.php:654 +#: ../../mod/ping.php:245 +msgid "{0} sent you a message" +msgstr "{0} stuurde jou een bericht" + +#: ../../mod/ping.php:250 +msgid "{0} requested registration" +msgstr "{0} vroeg om zich te registreren" + +#: ../../mod/ping.php:256 #, php-format -msgid "View %s's profile @ %s" -msgstr "Bekijk het profiel van %s @ %s" +msgid "{0} commented %s's post" +msgstr "{0} gaf een reactie op het bericht van %s" -#: ../../mod/content.php:481 ../../mod/content.php:864 -#: ../../object/Item.php:340 ../../include/conversation.php:674 +#: ../../mod/ping.php:261 #, php-format -msgid "%s from %s" -msgstr "%s van %s" +msgid "{0} liked %s's post" +msgstr "{0} vond het bericht van %s leuk" -#: ../../mod/content.php:497 ../../include/conversation.php:690 -msgid "View in context" -msgstr "In context bekijken" - -#: ../../mod/content.php:603 ../../object/Item.php:387 +#: ../../mod/ping.php:266 #, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d reactie" -msgstr[1] "%d reacties" +msgid "{0} disliked %s's post" +msgstr "{0} vond het bericht van %s niet leuk" -#: ../../mod/content.php:605 ../../object/Item.php:389 -#: ../../object/Item.php:402 ../../include/text.php:1972 -msgid "comment" -msgid_plural "comments" -msgstr[0] "reactie" -msgstr[1] "reacties" +#: ../../mod/ping.php:271 +#, php-format +msgid "{0} is now friends with %s" +msgstr "{0} is nu bevriend met %s" -#: ../../mod/content.php:606 ../../boot.php:751 ../../object/Item.php:390 -#: ../../include/contact_widgets.php:205 -msgid "show more" -msgstr "toon meer" +#: ../../mod/ping.php:276 +msgid "{0} posted" +msgstr "{0} plaatste" -#: ../../mod/content.php:620 ../../mod/photos.php:1359 -#: ../../object/Item.php:116 -msgid "Private Message" -msgstr "Privébericht" +#: ../../mod/ping.php:281 +#, php-format +msgid "{0} tagged %s's post with #%s" +msgstr "{0} labelde %s's bericht met #%s" -#: ../../mod/content.php:684 ../../mod/photos.php:1542 -#: ../../object/Item.php:231 -msgid "I like this (toggle)" -msgstr "Vind ik leuk" +#: ../../mod/ping.php:287 +msgid "{0} mentioned you in a post" +msgstr "{0} vermeldde je in een bericht" -#: ../../mod/content.php:684 ../../object/Item.php:231 -msgid "like" -msgstr "leuk" +#: ../../mod/mood.php:133 +msgid "Mood" +msgstr "Stemming" -#: ../../mod/content.php:685 ../../mod/photos.php:1543 -#: ../../object/Item.php:232 -msgid "I don't like this (toggle)" -msgstr "Vind ik niet leuk" +#: ../../mod/mood.php:134 +msgid "Set your current mood and tell your friends" +msgstr "Stel je huidige stemming in, en vertel het je vrienden" -#: ../../mod/content.php:685 ../../object/Item.php:232 -msgid "dislike" -msgstr "niet leuk" +#: ../../mod/search.php:174 ../../mod/community.php:62 +#: ../../mod/community.php:71 +msgid "No results." +msgstr "Geen resultaten." -#: ../../mod/content.php:687 ../../object/Item.php:234 -msgid "Share this" -msgstr "Delen" +#: ../../mod/message.php:67 +msgid "Unable to locate contact information." +msgstr "Ik kan geen contact informatie vinden." -#: ../../mod/content.php:687 ../../object/Item.php:234 -msgid "share" -msgstr "Delen" +#: ../../mod/message.php:207 +msgid "Do you really want to delete this message?" +msgstr "Wil je echt dit bericht verwijderen?" -#: ../../mod/content.php:707 ../../mod/photos.php:1562 -#: ../../mod/photos.php:1606 ../../mod/photos.php:1694 -#: ../../object/Item.php:675 -msgid "This is you" -msgstr "Dit ben jij" +#: ../../mod/message.php:227 +msgid "Message deleted." +msgstr "Bericht verwijderd." -#: ../../mod/content.php:709 ../../mod/photos.php:1564 -#: ../../mod/photos.php:1608 ../../mod/photos.php:1696 ../../boot.php:750 -#: ../../object/Item.php:361 ../../object/Item.php:677 -msgid "Comment" -msgstr "Reacties" +#: ../../mod/message.php:258 +msgid "Conversation removed." +msgstr "Gesprek verwijderd." -#: ../../mod/content.php:711 ../../object/Item.php:679 -msgid "Bold" -msgstr "Vet" +#: ../../mod/message.php:371 +msgid "No messages." +msgstr "Geen berichten." -#: ../../mod/content.php:712 ../../object/Item.php:680 -msgid "Italic" -msgstr "Cursief" +#: ../../mod/message.php:378 +#, php-format +msgid "Unknown sender - %s" +msgstr "Onbekende afzender - %s" -#: ../../mod/content.php:713 ../../object/Item.php:681 -msgid "Underline" -msgstr "Onderstrepen" +#: ../../mod/message.php:381 +#, php-format +msgid "You and %s" +msgstr "Jij en %s" -#: ../../mod/content.php:714 ../../object/Item.php:682 -msgid "Quote" -msgstr "Citeren" +#: ../../mod/message.php:384 +#, php-format +msgid "%s and You" +msgstr "%s en jij" -#: ../../mod/content.php:715 ../../object/Item.php:683 -msgid "Code" -msgstr "Broncode" +#: ../../mod/message.php:405 ../../mod/message.php:546 +msgid "Delete conversation" +msgstr "Verwijder gesprek" -#: ../../mod/content.php:716 ../../object/Item.php:684 -msgid "Image" -msgstr "Afbeelding" +#: ../../mod/message.php:408 +msgid "D, d M Y - g:i A" +msgstr "D, d M Y - g:i A" -#: ../../mod/content.php:717 ../../object/Item.php:685 -msgid "Link" -msgstr "Link" +#: ../../mod/message.php:411 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d bericht" +msgstr[1] "%d berichten" -#: ../../mod/content.php:718 ../../object/Item.php:686 -msgid "Video" -msgstr "Video" +#: ../../mod/message.php:450 +msgid "Message not available." +msgstr "Bericht niet beschikbaar." -#: ../../mod/content.php:719 ../../mod/editpost.php:145 -#: ../../mod/photos.php:1566 ../../mod/photos.php:1610 -#: ../../mod/photos.php:1698 ../../object/Item.php:687 -#: ../../include/conversation.php:1126 -msgid "Preview" -msgstr "Voorvertoning" +#: ../../mod/message.php:520 +msgid "Delete message" +msgstr "Verwijder bericht" -#: ../../mod/content.php:728 ../../mod/settings.php:676 -#: ../../object/Item.php:120 -msgid "Edit" -msgstr "Bewerken" - -#: ../../mod/content.php:753 ../../object/Item.php:195 -msgid "add star" -msgstr "ster toevoegen" - -#: ../../mod/content.php:754 ../../object/Item.php:196 -msgid "remove star" -msgstr "ster verwijderen" - -#: ../../mod/content.php:755 ../../object/Item.php:197 -msgid "toggle star status" -msgstr "ster toevoegen of verwijderen" - -#: ../../mod/content.php:758 ../../object/Item.php:200 -msgid "starred" -msgstr "met ster" - -#: ../../mod/content.php:759 ../../object/Item.php:220 -msgid "add tag" -msgstr "label toevoegen" - -#: ../../mod/content.php:763 ../../object/Item.php:133 -msgid "save to folder" -msgstr "Bewaren in map" - -#: ../../mod/content.php:854 ../../object/Item.php:328 -msgid "to" -msgstr "aan" - -#: ../../mod/content.php:855 ../../object/Item.php:330 -msgid "Wall-to-Wall" -msgstr "wall-to-wall" - -#: ../../mod/content.php:856 ../../object/Item.php:331 -msgid "via Wall-To-Wall:" -msgstr "via wall-to-wall" - -#: ../../mod/removeme.php:46 ../../mod/removeme.php:49 -msgid "Remove My Account" -msgstr "Verwijder mijn account" - -#: ../../mod/removeme.php:47 +#: ../../mod/message.php:548 msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "Dit zal je account volledig verwijderen. Dit kan niet hersteld worden als het eenmaal uitgevoerd is." +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Geen beveiligde communicatie beschikbaar. Je kunt misschien antwoorden vanaf de profiel-pagina van de afzender." -#: ../../mod/removeme.php:48 -msgid "Please enter your password for verification:" -msgstr "Voer je wachtwoord in voor verificatie:" +#: ../../mod/message.php:552 +msgid "Send Reply" +msgstr "Verstuur Antwoord" + +#: ../../mod/community.php:23 +msgid "Not available." +msgstr "Niet beschikbaar" + +#: ../../mod/profiles.php:18 ../../mod/profiles.php:133 +#: ../../mod/profiles.php:179 ../../mod/profiles.php:630 +#: ../../mod/dfrn_confirm.php:64 +msgid "Profile not found." +msgstr "Profiel niet gevonden" + +#: ../../mod/profiles.php:37 +msgid "Profile deleted." +msgstr "Profiel verwijderd" + +#: ../../mod/profiles.php:55 ../../mod/profiles.php:89 +msgid "Profile-" +msgstr "Profiel-" + +#: ../../mod/profiles.php:74 ../../mod/profiles.php:117 +msgid "New profile created." +msgstr "Nieuw profiel aangemaakt." + +#: ../../mod/profiles.php:95 +msgid "Profile unavailable to clone." +msgstr "Profiel niet beschikbaar om te klonen." + +#: ../../mod/profiles.php:189 +msgid "Profile Name is required." +msgstr "Profielnaam is vereist." + +#: ../../mod/profiles.php:340 +msgid "Marital Status" +msgstr "Echtelijke staat" + +#: ../../mod/profiles.php:344 +msgid "Romantic Partner" +msgstr "Romantische Partner" + +#: ../../mod/profiles.php:348 +msgid "Likes" +msgstr "Houdt van" + +#: ../../mod/profiles.php:352 +msgid "Dislikes" +msgstr "Houdt niet van" + +#: ../../mod/profiles.php:356 +msgid "Work/Employment" +msgstr "Werk" + +#: ../../mod/profiles.php:359 +msgid "Religion" +msgstr "Godsdienst" + +#: ../../mod/profiles.php:363 +msgid "Political Views" +msgstr "Politieke standpunten" + +#: ../../mod/profiles.php:367 +msgid "Gender" +msgstr "Geslacht" + +#: ../../mod/profiles.php:371 +msgid "Sexual Preference" +msgstr "Seksuele Voorkeur" + +#: ../../mod/profiles.php:375 +msgid "Homepage" +msgstr "Tijdlijn" + +#: ../../mod/profiles.php:379 ../../mod/profiles.php:698 +msgid "Interests" +msgstr "Interesses" + +#: ../../mod/profiles.php:383 +msgid "Address" +msgstr "Adres" + +#: ../../mod/profiles.php:390 ../../mod/profiles.php:694 +msgid "Location" +msgstr "Plaats" + +#: ../../mod/profiles.php:473 +msgid "Profile updated." +msgstr "Profiel bijgewerkt." + +#: ../../mod/profiles.php:568 +msgid " and " +msgstr "en" + +#: ../../mod/profiles.php:576 +msgid "public profile" +msgstr "publiek profiel" + +#: ../../mod/profiles.php:579 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s veranderde %2$s naar “%3$s”" + +#: ../../mod/profiles.php:580 +#, php-format +msgid " - Visit %1$s's %2$s" +msgstr " - Bezoek %2$s van %1$s" + +#: ../../mod/profiles.php:583 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s heeft een aangepast %2$s, %3$s veranderd." + +#: ../../mod/profiles.php:658 +msgid "Hide contacts and friends:" +msgstr "" + +#: ../../mod/profiles.php:663 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "Je vrienden/contacten verbergen voor bezoekers van dit profiel?" + +#: ../../mod/profiles.php:685 +msgid "Edit Profile Details" +msgstr "Profieldetails bewerken" + +#: ../../mod/profiles.php:687 +msgid "Change Profile Photo" +msgstr "Profielfoto wijzigen" + +#: ../../mod/profiles.php:688 +msgid "View this profile" +msgstr "Dit profiel bekijken" + +#: ../../mod/profiles.php:689 +msgid "Create a new profile using these settings" +msgstr "Nieuw profiel aanmaken met deze instellingen" + +#: ../../mod/profiles.php:690 +msgid "Clone this profile" +msgstr "Dit profiel klonen" + +#: ../../mod/profiles.php:691 +msgid "Delete this profile" +msgstr "Dit profiel verwijderen" + +#: ../../mod/profiles.php:692 +msgid "Basic information" +msgstr "" + +#: ../../mod/profiles.php:693 +msgid "Profile picture" +msgstr "" + +#: ../../mod/profiles.php:695 +msgid "Preferences" +msgstr "" + +#: ../../mod/profiles.php:696 +msgid "Status information" +msgstr "" + +#: ../../mod/profiles.php:697 +msgid "Additional information" +msgstr "" + +#: ../../mod/profiles.php:699 ../../mod/newmember.php:36 +#: ../../mod/profile_photo.php:244 +msgid "Upload Profile Photo" +msgstr "Profielfoto uploaden" + +#: ../../mod/profiles.php:700 +msgid "Profile Name:" +msgstr "Profiel Naam:" + +#: ../../mod/profiles.php:701 +msgid "Your Full Name:" +msgstr "Je volledige naam:" + +#: ../../mod/profiles.php:702 +msgid "Title/Description:" +msgstr "Titel/Beschrijving:" + +#: ../../mod/profiles.php:703 +msgid "Your Gender:" +msgstr "Je Geslacht:" + +#: ../../mod/profiles.php:704 +#, php-format +msgid "Birthday (%s):" +msgstr "Geboortedatum (%s):" + +#: ../../mod/profiles.php:705 +msgid "Street Address:" +msgstr "Postadres:" + +#: ../../mod/profiles.php:706 +msgid "Locality/City:" +msgstr "Gemeente/Stad:" + +#: ../../mod/profiles.php:707 +msgid "Postal/Zip Code:" +msgstr "Postcode:" + +#: ../../mod/profiles.php:708 +msgid "Country:" +msgstr "Land:" + +#: ../../mod/profiles.php:709 +msgid "Region/State:" +msgstr "Regio/Staat:" + +#: ../../mod/profiles.php:710 +msgid " Marital Status:" +msgstr " Echtelijke Staat:" + +#: ../../mod/profiles.php:711 +msgid "Who: (if applicable)" +msgstr "Wie: (indien toepasbaar)" + +#: ../../mod/profiles.php:712 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Voorbeelden: Kathleen123, Kathleen Peeters, kathleen@voorbeeld.nl" + +#: ../../mod/profiles.php:713 +msgid "Since [date]:" +msgstr "Sinds [datum]:" + +#: ../../mod/profiles.php:715 +msgid "Homepage URL:" +msgstr "Adres tijdlijn:" + +#: ../../mod/profiles.php:718 +msgid "Religious Views:" +msgstr "Geloof:" + +#: ../../mod/profiles.php:719 +msgid "Public Keywords:" +msgstr "Publieke Sleutelwoorden:" + +#: ../../mod/profiles.php:720 +msgid "Private Keywords:" +msgstr "Privé Sleutelwoorden:" + +#: ../../mod/profiles.php:723 +msgid "Example: fishing photography software" +msgstr "Voorbeeld: vissen fotografie software" + +#: ../../mod/profiles.php:724 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "(Gebruikt om mogelijke vrienden voor te stellen, kan door anderen gezien worden)" + +#: ../../mod/profiles.php:725 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Gebruikt om profielen te zoeken, nooit aan anderen getoond)" + +#: ../../mod/profiles.php:726 +msgid "Tell us about yourself..." +msgstr "Vertel iets over jezelf..." + +#: ../../mod/profiles.php:727 +msgid "Hobbies/Interests" +msgstr "Hobby's/Interesses" + +#: ../../mod/profiles.php:728 +msgid "Contact information and Social Networks" +msgstr "Contactinformatie en sociale netwerken" + +#: ../../mod/profiles.php:729 +msgid "Musical interests" +msgstr "Muzikale interesses" + +#: ../../mod/profiles.php:730 +msgid "Books, literature" +msgstr "Boeken, literatuur" + +#: ../../mod/profiles.php:731 +msgid "Television" +msgstr "Televisie" + +#: ../../mod/profiles.php:732 +msgid "Film/dance/culture/entertainment" +msgstr "Film/dans/cultuur/ontspanning" + +#: ../../mod/profiles.php:733 +msgid "Love/romance" +msgstr "Liefde/romance" + +#: ../../mod/profiles.php:734 +msgid "Work/employment" +msgstr "Werk" + +#: ../../mod/profiles.php:735 +msgid "School/education" +msgstr "School/opleiding" + +#: ../../mod/profiles.php:740 +msgid "" +"This is your public profile.
    It may " +"be visible to anybody using the internet." +msgstr "Dit is jouw publiek profiel.
    Het kan zichtbaar zijn voor iedereen op het internet." + +#: ../../mod/profiles.php:750 ../../mod/directory.php:113 +msgid "Age: " +msgstr "Leeftijd:" + +#: ../../mod/profiles.php:803 +msgid "Edit/Manage Profiles" +msgstr "Wijzig/Beheer Profielen" #: ../../mod/install.php:117 msgid "Friendica Communications Server - Setup" @@ -3529,1013 +7406,482 @@ msgid "" "poller." msgstr "BELANGRIJK: Je zult [manueel] een geplande taak moeten aanmaken voor de poller." -#: ../../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:59 -msgid "Unable to check your home location." -msgstr "Niet in staat om je tijdlijn-locatie vast te stellen" - -#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 -msgid "No recipient." -msgstr "Geen ontvanger." - -#: ../../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 "Als je wilt dat %s antwoordt moet je nakijken dat de privacy-instellingen op jouw website privéberichten van onbekende afzenders toelaat." - -#: ../../mod/help.php:79 +#: ../../mod/help.php:31 msgid "Help:" msgstr "Help:" -#: ../../mod/help.php:84 ../../include/nav.php:114 -msgid "Help" -msgstr "Help" +#: ../../mod/crepair.php:106 +msgid "Contact settings applied." +msgstr "Contactinstellingen toegepast." -#: ../../mod/help.php:90 ../../index.php:256 -msgid "Not Found" -msgstr "Niet gevonden" +#: ../../mod/crepair.php:108 +msgid "Contact update failed." +msgstr "Aanpassen van contact mislukt." -#: ../../mod/help.php:93 ../../index.php:259 -msgid "Page not found." -msgstr "Pagina niet gevonden" +#: ../../mod/crepair.php:139 +msgid "Repair Contact Settings" +msgstr "Contactinstellingen herstellen" + +#: ../../mod/crepair.php:141 +msgid "" +"WARNING: This is highly advanced and if you enter incorrect" +" information your communications with this contact may stop working." +msgstr "" + +#: ../../mod/crepair.php:142 +msgid "" +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "Gebruik nu de \"terug\"-knop in je webbrowser wanneer je niet weet wat je op deze pagina moet doen." + +#: ../../mod/crepair.php:148 +msgid "Return to contact editor" +msgstr "Ga terug naar contactbewerker" + +#: ../../mod/crepair.php:159 ../../mod/crepair.php:161 +msgid "No mirroring" +msgstr "" + +#: ../../mod/crepair.php:159 +msgid "Mirror as forwarded posting" +msgstr "" + +#: ../../mod/crepair.php:159 ../../mod/crepair.php:161 +msgid "Mirror as my own posting" +msgstr "" + +#: ../../mod/crepair.php:166 +msgid "Account Nickname" +msgstr "Bijnaam account" + +#: ../../mod/crepair.php:167 +msgid "@Tagname - overrides Name/Nickname" +msgstr "@Labelnaam - krijgt voorrang op naam/bijnaam" + +#: ../../mod/crepair.php:168 +msgid "Account URL" +msgstr "URL account" + +#: ../../mod/crepair.php:169 +msgid "Friend Request URL" +msgstr "URL vriendschapsverzoek" + +#: ../../mod/crepair.php:170 +msgid "Friend Confirm URL" +msgstr "URL vriendschapsbevestiging" + +#: ../../mod/crepair.php:171 +msgid "Notification Endpoint URL" +msgstr "" + +#: ../../mod/crepair.php:172 +msgid "Poll/Feed URL" +msgstr "URL poll/feed" + +#: ../../mod/crepair.php:173 +msgid "New photo from this URL" +msgstr "Nieuwe foto van deze URL" + +#: ../../mod/crepair.php:174 +msgid "Remote Self" +msgstr "" + +#: ../../mod/crepair.php:176 +msgid "Mirror postings from this contact" +msgstr "" + +#: ../../mod/crepair.php:176 +msgid "" +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." +msgstr "" + +#: ../../mod/newmember.php:6 +msgid "Welcome to Friendica" +msgstr "Welkom bij Friendica" + +#: ../../mod/newmember.php:8 +msgid "New Member Checklist" +msgstr "Checklist voor nieuwe leden" + +#: ../../mod/newmember.php:12 +msgid "" +"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." +msgstr "We willen je een paar tips en verwijzingen aanreiken om je een aangename ervaring te bezorgen. Klik op een item om de relevante pagina's te bezoeken. Een verwijzing naar deze pagina zal twee weken lang na je registratie zichtbaar zijn op je tijdlijn. Daarna zal de verwijzing stilletjes verdwijnen." + +#: ../../mod/newmember.php:14 +msgid "Getting Started" +msgstr "Aan de slag" + +#: ../../mod/newmember.php:18 +msgid "Friendica Walk-Through" +msgstr "Doorloop Friendica" + +#: ../../mod/newmember.php:18 +msgid "" +"On your Quick Start page - find a brief introduction to your " +"profile and network tabs, make some new connections, and find some groups to" +" join." +msgstr "Op je Snelstart pagina kun je een korte inleiding vinden over je profiel en netwerk tabs, om enkele nieuwe connecties te leggen en groepen te vinden om lid van te worden." + +#: ../../mod/newmember.php:26 +msgid "Go to Your Settings" +msgstr "Ga naar je instellingen" + +#: ../../mod/newmember.php:26 +msgid "" +"On your Settings page - change your initial password. Also make a " +"note of your Identity Address. This looks just like an email address - and " +"will be useful in making friends on the free social web." +msgstr "Verander je initieel wachtwoord op je instellingenpagina. Noteer ook het adres van je identiteit. Dit ziet er uit als een e-mailadres - en zal nuttig zijn om vrienden te maken op het vrije sociale web." + +#: ../../mod/newmember.php:28 +msgid "" +"Review the other settings, particularly the privacy settings. An unpublished" +" directory listing is like having an unlisted phone number. In general, you " +"should probably publish your listing - unless all of your friends and " +"potential friends know exactly how to find you." +msgstr "Controleer ook de andere instellingen, in het bijzonder de privacy-instellingen. Een niet-gepubliceerd adres is zoals een privé-telefoonnummer. In het algemeen wil je waarschijnlijk je adres publiceren - tenzij al je vrienden en mogelijke vrienden precies weten hoe je te vinden." + +#: ../../mod/newmember.php:36 +msgid "" +"Upload a profile photo if you have not done so already. Studies have shown " +"that people with real photos of themselves are ten times more likely to make" +" friends than people who do not." +msgstr "Upload een profielfoto, als je dat nog niet gedaan hebt. Studies tonen aan dat mensen met echte foto's van zichzelf tien keer gemakkelijker vrienden maken dan mensen die dat niet doen." + +#: ../../mod/newmember.php:38 +msgid "Edit Your Profile" +msgstr "Bewerk je profiel" + +#: ../../mod/newmember.php:38 +msgid "" +"Edit your default profile to your liking. Review the " +"settings for hiding your list of friends and hiding the profile from unknown" +" visitors." +msgstr "Bewerk je standaard profiel zoals je wilt. Controleer de instellingen om je vriendenlijst te verbergen, en om je profiel voor ongekende bezoekers te verbergen." + +#: ../../mod/newmember.php:40 +msgid "Profile Keywords" +msgstr "Sleutelwoorden voor dit profiel" + +#: ../../mod/newmember.php:40 +msgid "" +"Set some public keywords for your default profile which describe your " +"interests. We may be able to find other people with similar interests and " +"suggest friendships." +msgstr "Stel enkele openbare sleutelwoorden in voor je standaard profiel die je interesses beschrijven. We kunnen dan misschien mensen vinden met gelijkaardige interesses, en vrienden voorstellen." + +#: ../../mod/newmember.php:44 +msgid "Connecting" +msgstr "Verbinding aan het maken" + +#: ../../mod/newmember.php:49 +msgid "" +"Authorise the Facebook Connector if you currently have a Facebook account " +"and we will (optionally) import all your Facebook friends and conversations." +msgstr "Machtig de Facebook Connector als je een Facebook account hebt. We zullen (optioneel) al je Facebook vrienden en conversaties importeren." + +#: ../../mod/newmember.php:51 +msgid "" +"If this is your own personal server, installing the Facebook addon " +"may ease your transition to the free social web." +msgstr "Als dit jouw eigen persoonlijke server is kan het installeren van de Facebook toevoeging je overgang naar het vrije sociale web vergemakkelijken." + +#: ../../mod/newmember.php:56 +msgid "Importing Emails" +msgstr "E-mails importeren" + +#: ../../mod/newmember.php:56 +msgid "" +"Enter your email access information on your Connector Settings page if you " +"wish to import and interact with friends or mailing lists from your email " +"INBOX" +msgstr "Vul je e-mailtoegangsinformatie in op je pagina met verbindingsinstellingen als je vrienden of mailinglijsten uit je e-mail-inbox wilt importeren, en met hen wilt communiceren" + +#: ../../mod/newmember.php:58 +msgid "Go to Your Contacts Page" +msgstr "Ga naar je contactenpagina" + +#: ../../mod/newmember.php:58 +msgid "" +"Your Contacts page is your gateway to managing friendships and connecting " +"with friends on other networks. Typically you enter their address or site " +"URL in the Add New Contact dialog." +msgstr "Je contactenpagina is jouw poort om vriendschappen te beheren en verbinding te leggen met vrienden op andere netwerken. Je kunt hun adres of URL toevoegen in de Voeg nieuw contact toe dialoog." + +#: ../../mod/newmember.php:60 +msgid "Go to Your Site's Directory" +msgstr "Ga naar de gids van je website" + +#: ../../mod/newmember.php:60 +msgid "" +"The Directory page lets you find other people in this network or other " +"federated sites. Look for a Connect or Follow link on " +"their profile page. Provide your own Identity Address if requested." +msgstr "In de gids vind je andere mensen in dit netwerk of op andere federatieve sites. Zoek naar het woord Connect of Follow op hun profielpagina (meestal aan de linkerkant). Vul je eigen identiteitsadres in wanneer daar om wordt gevraagd." + +#: ../../mod/newmember.php:62 +msgid "Finding New People" +msgstr "Nieuwe mensen vinden" + +#: ../../mod/newmember.php:62 +msgid "" +"On the side panel of the Contacts page are several tools to find new " +"friends. We can match people by interest, look up people by name or " +"interest, and provide suggestions based on network relationships. On a brand" +" new site, friend suggestions will usually begin to be populated within 24 " +"hours." +msgstr "Op het zijpaneel van de Contacten pagina vind je verschillende tools om nieuwe vrienden te zoeken. We kunnen mensen op interesses matchen, mensen opzoeken op naam of hobby, en suggesties doen gebaseerd op netwerk-relaties. Op een nieuwe webstek beginnen vriendschapssuggesties meestal binnen de 24 uur beschikbaar te worden." + +#: ../../mod/newmember.php:70 +msgid "Group Your Contacts" +msgstr "Groepeer je contacten" + +#: ../../mod/newmember.php:70 +msgid "" +"Once you have made some friends, organize them into private conversation " +"groups from the sidebar of your Contacts page and then you can interact with" +" each group privately on your Network page." +msgstr "Als je een aantal vrienden gemaakt hebt kun je ze in je eigen conversatiegroepen indelen vanuit de zijbalk van je 'Conacten' pagina, en dan kun je met elke groep apart contact houden op je Netwerk pagina. " + +#: ../../mod/newmember.php:73 +msgid "Why Aren't My Posts Public?" +msgstr "Waarom zijn mijn berichten niet openbaar?" + +#: ../../mod/newmember.php:73 +msgid "" +"Friendica respects your privacy. By default, your posts will only show up to" +" people you've added as friends. For more information, see the help section " +"from the link above." +msgstr "Friendica respecteert je privacy. Standaard zullen je berichten alleen zichtbaar zijn voor personen die jij als vriend hebt toegevoegd. Lees de help (zie de verwijzing hierboven) voor meer informatie." + +#: ../../mod/newmember.php:78 +msgid "Getting Help" +msgstr "Hulp krijgen" + +#: ../../mod/newmember.php:82 +msgid "Go to the Help Section" +msgstr "Ga naar de help" + +#: ../../mod/newmember.php:82 +msgid "" +"Our help pages may be consulted for detail on other program" +" features and resources." +msgstr "Je kunt onze help pagina's raadplegen voor gedetailleerde informatie over andere functies van dit programma." + +#: ../../mod/poke.php:192 +msgid "Poke/Prod" +msgstr "Aanstoten/porren" + +#: ../../mod/poke.php:193 +msgid "poke, prod or do other things to somebody" +msgstr "aanstoten, porren of andere dingen met iemand doen" + +#: ../../mod/poke.php:194 +msgid "Recipient" +msgstr "Ontvanger" + +#: ../../mod/poke.php:195 +msgid "Choose what you wish to do to recipient" +msgstr "Kies wat je met de ontvanger wil doen" + +#: ../../mod/poke.php:198 +msgid "Make this post private" +msgstr "Dit bericht privé maken" + +#: ../../mod/display.php:496 +msgid "Item has been removed." +msgstr "Item is verwijderd." + +#: ../../mod/subthread.php:103 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s volgt %3$s van %2$s" #: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536 #, php-format msgid "%1$s welcomes %2$s" msgstr "%1$s heet %2$s van harte welkom" -#: ../../mod/home.php:35 -#, php-format -msgid "Welcome to %s" -msgstr "Welkom op %s" - -#: ../../mod/wall_attach.php:75 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "" - -#: ../../mod/wall_attach.php:75 -msgid "Or - did you try to upload an empty file?" -msgstr "" - -#: ../../mod/wall_attach.php:81 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "Bestand is groter dan de toegelaten %d" - -#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133 -msgid "File upload failed." -msgstr "Uploaden van bestand mislukt." - -#: ../../mod/match.php:12 -msgid "Profile Match" -msgstr "Profielmatch" - -#: ../../mod/match.php:20 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Geen sleutelwoorden om te zoeken. Voeg sleutelwoorden toe aan je standaard profiel." - -#: ../../mod/match.php:57 -msgid "is interested in:" -msgstr "Is geïnteresseerd in:" - -#: ../../mod/match.php:58 ../../mod/suggest.php:90 ../../boot.php:1568 -#: ../../include/contact_widgets.php:10 -msgid "Connect" -msgstr "Verbinden" - -#: ../../mod/share.php:44 -msgid "link" -msgstr "link" - -#: ../../mod/community.php:23 -msgid "Not available." -msgstr "Niet beschikbaar" - -#: ../../mod/community.php:32 ../../include/nav.php:129 -#: ../../include/nav.php:131 ../../view/theme/diabook/theme.php:129 -msgid "Community" -msgstr "Website" - -#: ../../mod/community.php:62 ../../mod/community.php:71 -#: ../../mod/search.php:168 ../../mod/search.php:192 -msgid "No results." -msgstr "Geen resultaten." - -#: ../../mod/settings.php:29 ../../mod/photos.php:80 -msgid "everybody" -msgstr "iedereen" - -#: ../../mod/settings.php:41 -msgid "Additional features" -msgstr "Extra functies" - -#: ../../mod/settings.php:46 -msgid "Display" -msgstr "Weergave" - -#: ../../mod/settings.php:52 ../../mod/settings.php:780 -msgid "Social Networks" -msgstr "Sociale netwerken" - -#: ../../mod/settings.php:62 ../../include/nav.php:170 -msgid "Delegations" -msgstr "" - -#: ../../mod/settings.php:67 -msgid "Connected apps" -msgstr "Verbonden applicaties" - -#: ../../mod/settings.php:72 ../../mod/uexport.php:85 -msgid "Export personal data" -msgstr "Persoonlijke gegevens exporteren" - -#: ../../mod/settings.php:77 -msgid "Remove account" -msgstr "Account verwijderen" - -#: ../../mod/settings.php:129 -msgid "Missing some important data!" -msgstr "Een belangrijk gegeven ontbreekt!" - -#: ../../mod/settings.php:238 -msgid "Failed to connect with email account using the settings provided." -msgstr "Ik kon geen verbinding maken met het e-mail account met de gegeven instellingen." - -#: ../../mod/settings.php:243 -msgid "Email settings updated." -msgstr "E-mail instellingen bijgewerkt.." - -#: ../../mod/settings.php:258 -msgid "Features updated" -msgstr "Functies bijgewerkt" - -#: ../../mod/settings.php:321 -msgid "Relocate message has been send to your contacts" -msgstr "" - -#: ../../mod/settings.php:335 -msgid "Passwords do not match. Password unchanged." -msgstr "Wachtwoorden komen niet overeen. Wachtwoord niet gewijzigd." - -#: ../../mod/settings.php:340 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Lege wachtwoorden zijn niet toegelaten. Wachtwoord niet gewijzigd." - -#: ../../mod/settings.php:348 -msgid "Wrong password." -msgstr "Verkeerd wachtwoord." - -#: ../../mod/settings.php:359 -msgid "Password changed." -msgstr "Wachtwoord gewijzigd." - -#: ../../mod/settings.php:361 -msgid "Password update failed. Please try again." -msgstr "Wachtwoord-)wijziging mislukt. Probeer opnieuw." - -#: ../../mod/settings.php:428 -msgid " Please use a shorter name." -msgstr "Gebruik een kortere naam." - -#: ../../mod/settings.php:430 -msgid " Name too short." -msgstr "Naam te kort." - -#: ../../mod/settings.php:439 -msgid "Wrong Password" -msgstr "Verkeerd wachtwoord" - -#: ../../mod/settings.php:444 -msgid " Not valid email." -msgstr "Geen geldig e-mailadres." - -#: ../../mod/settings.php:450 -msgid " Cannot change to that email." -msgstr "Kan niet veranderen naar die e-mail." - -#: ../../mod/settings.php:506 -msgid "Private forum has no privacy permissions. Using default privacy group." -msgstr "Privéforum/-groep heeft geen privacyrechten. De standaard privacygroep wordt gebruikt." - -#: ../../mod/settings.php:510 -msgid "Private forum has no privacy permissions and no default privacy group." -msgstr "Privéforum/-groep heeft geen privacyrechten en geen standaard privacygroep." - -#: ../../mod/settings.php:540 -msgid "Settings updated." -msgstr "Instellingen bijgewerkt." - -#: ../../mod/settings.php:613 ../../mod/settings.php:639 -#: ../../mod/settings.php:675 -msgid "Add application" -msgstr "Toepassing toevoegen" - -#: ../../mod/settings.php:617 ../../mod/settings.php:643 -msgid "Consumer Key" -msgstr "Gebruikerssleutel" - -#: ../../mod/settings.php:618 ../../mod/settings.php:644 -msgid "Consumer Secret" -msgstr "Gebruikersgeheim" - -#: ../../mod/settings.php:619 ../../mod/settings.php:645 -msgid "Redirect" -msgstr "Doorverwijzing" - -#: ../../mod/settings.php:620 ../../mod/settings.php:646 -msgid "Icon url" -msgstr "URL pictogram" - -#: ../../mod/settings.php:631 -msgid "You can't edit this application." -msgstr "Je kunt deze toepassing niet wijzigen." - -#: ../../mod/settings.php:674 -msgid "Connected Apps" -msgstr "Verbonden applicaties" - -#: ../../mod/settings.php:678 -msgid "Client key starts with" -msgstr "" - -#: ../../mod/settings.php:679 -msgid "No name" -msgstr "Geen naam" - -#: ../../mod/settings.php:680 -msgid "Remove authorization" -msgstr "Verwijder authorisatie" - -#: ../../mod/settings.php:692 -msgid "No Plugin settings configured" -msgstr "" - -#: ../../mod/settings.php:700 -msgid "Plugin Settings" -msgstr "Plugin Instellingen" - -#: ../../mod/settings.php:714 -msgid "Off" -msgstr "Uit" - -#: ../../mod/settings.php:714 -msgid "On" -msgstr "Aan" - -#: ../../mod/settings.php:722 -msgid "Additional Features" -msgstr "Extra functies" - -#: ../../mod/settings.php:736 ../../mod/settings.php:737 -#, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "Ingebouwde ondersteuning voor connectiviteit met %s is %s" - -#: ../../mod/settings.php:736 ../../mod/dfrn_request.php:838 -#: ../../include/contact_selectors.php:80 -msgid "Diaspora" -msgstr "Diaspora" - -#: ../../mod/settings.php:736 ../../mod/settings.php:737 -msgid "enabled" -msgstr "ingeschakeld" - -#: ../../mod/settings.php:736 ../../mod/settings.php:737 -msgid "disabled" -msgstr "uitgeschakeld" - -#: ../../mod/settings.php:737 -msgid "StatusNet" -msgstr "StatusNet" - -#: ../../mod/settings.php:773 -msgid "Email access is disabled on this site." -msgstr "E-mailtoegang is op deze website uitgeschakeld." - -#: ../../mod/settings.php:785 -msgid "Email/Mailbox Setup" -msgstr "E-mail Instellen" - -#: ../../mod/settings.php:786 +#: ../../mod/dfrn_confirm.php:121 msgid "" -"If you wish to communicate with email contacts using this service " -"(optional), please specify how to connect to your mailbox." -msgstr "Als je wilt communiceren met e-mail contacten via deze dienst (optioneel), moet je hier opgeven hoe ik jouw mailbox kan bereiken." +"This may occasionally happen if contact was requested by both persons and it" +" has already been approved." +msgstr "Dit kan soms gebeuren als het contact door beide personen werd gevraagd, en het werd al goedgekeurd." -#: ../../mod/settings.php:787 -msgid "Last successful email check:" -msgstr "Laatste succesvolle e-mail controle:" +#: ../../mod/dfrn_confirm.php:240 +msgid "Response from remote site was not understood." +msgstr "Antwoord van de website op afstand werd niet begrepen." -#: ../../mod/settings.php:789 -msgid "IMAP server name:" -msgstr "IMAP server naam:" +#: ../../mod/dfrn_confirm.php:249 ../../mod/dfrn_confirm.php:254 +msgid "Unexpected response from remote site: " +msgstr "Onverwacht antwoord van website op afstand:" -#: ../../mod/settings.php:790 -msgid "IMAP port:" -msgstr "IMAP poort:" +#: ../../mod/dfrn_confirm.php:263 +msgid "Confirmation completed successfully." +msgstr "Bevestiging werd correct voltooid." -#: ../../mod/settings.php:791 -msgid "Security:" -msgstr "Beveiliging:" +#: ../../mod/dfrn_confirm.php:265 ../../mod/dfrn_confirm.php:279 +#: ../../mod/dfrn_confirm.php:286 +msgid "Remote site reported: " +msgstr "Website op afstand berichtte: " -#: ../../mod/settings.php:791 ../../mod/settings.php:796 -msgid "None" -msgstr "Geen" +#: ../../mod/dfrn_confirm.php:277 +msgid "Temporary failure. Please wait and try again." +msgstr "Tijdelijke fout. Wacht even en probeer opnieuw." -#: ../../mod/settings.php:792 -msgid "Email login name:" -msgstr "E-mail login naam:" +#: ../../mod/dfrn_confirm.php:284 +msgid "Introduction failed or was revoked." +msgstr "Verzoek mislukt of herroepen." -#: ../../mod/settings.php:793 -msgid "Email password:" -msgstr "E-mail wachtwoord:" +#: ../../mod/dfrn_confirm.php:429 +msgid "Unable to set contact photo." +msgstr "Ik kan geen contact foto instellen." -#: ../../mod/settings.php:794 -msgid "Reply-to address:" -msgstr "Antwoord adres:" - -#: ../../mod/settings.php:795 -msgid "Send public posts to all email contacts:" -msgstr "Openbare posts naar alle e-mail contacten versturen:" - -#: ../../mod/settings.php:796 -msgid "Action after import:" -msgstr "Actie na importeren:" - -#: ../../mod/settings.php:796 -msgid "Mark as seen" -msgstr "Als 'gelezen' markeren" - -#: ../../mod/settings.php:796 -msgid "Move to folder" -msgstr "Naar map verplaatsen" - -#: ../../mod/settings.php:797 -msgid "Move to folder:" -msgstr "Verplaatsen naar map:" - -#: ../../mod/settings.php:878 -msgid "Display Settings" -msgstr "Scherminstellingen" - -#: ../../mod/settings.php:884 ../../mod/settings.php:899 -msgid "Display Theme:" -msgstr "Schermthema:" - -#: ../../mod/settings.php:885 -msgid "Mobile Theme:" -msgstr "Mobiel thema:" - -#: ../../mod/settings.php:886 -msgid "Update browser every xx seconds" -msgstr "Browser elke xx seconden verversen" - -#: ../../mod/settings.php:886 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Minimum 10 seconden, geen maximum" - -#: ../../mod/settings.php:887 -msgid "Number of items to display per page:" -msgstr "Aantal items te tonen per pagina:" - -#: ../../mod/settings.php:887 ../../mod/settings.php:888 -msgid "Maximum of 100 items" -msgstr "Maximum 100 items" - -#: ../../mod/settings.php:888 -msgid "Number of items to display per page when viewed from mobile device:" -msgstr "Aantal items per pagina als je een mobiel toestel gebruikt:" - -#: ../../mod/settings.php:889 -msgid "Don't show emoticons" -msgstr "Emoticons niet tonen" - -#: ../../mod/settings.php:890 -msgid "Don't show notices" -msgstr "" - -#: ../../mod/settings.php:891 -msgid "Infinite scroll" -msgstr "Oneindig scrollen" - -#: ../../mod/settings.php:892 -msgid "Automatic updates only at the top of the network page" -msgstr "" - -#: ../../mod/settings.php:969 -msgid "User Types" -msgstr "Gebruikerstypes" - -#: ../../mod/settings.php:970 -msgid "Community Types" -msgstr "Forum/groepstypes" - -#: ../../mod/settings.php:971 -msgid "Normal Account Page" -msgstr "Normale accountpagina" - -#: ../../mod/settings.php:972 -msgid "This account is a normal personal profile" -msgstr "Deze account is een normaal persoonlijk profiel" - -#: ../../mod/settings.php:975 -msgid "Soapbox Page" -msgstr "Zeepkist-pagina" - -#: ../../mod/settings.php:976 -msgid "Automatically approve all connection/friend requests as read-only fans" -msgstr "Keur automatisch alle vriendschaps-/connectieverzoeken goed als fans met alleen recht tot lezen." - -#: ../../mod/settings.php:979 -msgid "Community Forum/Celebrity Account" -msgstr "Forum/groeps- of beroemdheid-account" - -#: ../../mod/settings.php:980 -msgid "" -"Automatically approve all connection/friend requests as read-write fans" -msgstr "Keur automatisch alle vriendschaps-/connectieverzoeken goed als fans met recht tot lezen en schrijven." - -#: ../../mod/settings.php:983 -msgid "Automatic Friend Page" -msgstr "Automatisch Vriendschapspagina" - -#: ../../mod/settings.php:984 -msgid "Automatically approve all connection/friend requests as friends" -msgstr "Keur automatisch alle vriendschaps-/connectieverzoeken goed als vrienden." - -#: ../../mod/settings.php:987 -msgid "Private Forum [Experimental]" -msgstr "Privé-forum [experimenteel]" - -#: ../../mod/settings.php:988 -msgid "Private forum - approved members only" -msgstr "Privé-forum - enkel voor goedgekeurde leden" - -#: ../../mod/settings.php:1000 -msgid "OpenID:" -msgstr "OpenID:" - -#: ../../mod/settings.php:1000 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "(Optioneel) Laat dit OpenID toe om in te loggen op deze account." - -#: ../../mod/settings.php:1010 -msgid "Publish your default profile in your local site directory?" -msgstr "Je standaardprofiel in je lokale gids publiceren?" - -#: ../../mod/settings.php:1010 ../../mod/settings.php:1016 -#: ../../mod/settings.php:1024 ../../mod/settings.php:1028 -#: ../../mod/settings.php:1033 ../../mod/settings.php:1039 -#: ../../mod/settings.php:1045 ../../mod/settings.php:1051 -#: ../../mod/settings.php:1081 ../../mod/settings.php:1082 -#: ../../mod/settings.php:1083 ../../mod/settings.php:1084 -#: ../../mod/settings.php:1085 ../../mod/dfrn_request.php:830 -#: ../../mod/register.php:234 ../../mod/profiles.php:661 -#: ../../mod/profiles.php:665 ../../mod/api.php:106 -msgid "No" -msgstr "Nee" - -#: ../../mod/settings.php:1016 -msgid "Publish your default profile in the global social directory?" -msgstr "Je standaardprofiel in de globale sociale gids publiceren?" - -#: ../../mod/settings.php:1024 -msgid "Hide your contact/friend list from viewers of your default profile?" -msgstr "Je vrienden/contacten verbergen voor bezoekers van je standaard profiel?" - -#: ../../mod/settings.php:1028 ../../include/conversation.php:1057 -msgid "Hide your profile details from unknown viewers?" -msgstr "Je profieldetails verbergen voor onbekende bezoekers?" - -#: ../../mod/settings.php:1028 -msgid "" -"If enabled, posting public messages to Diaspora and other networks isn't " -"possible." -msgstr "" - -#: ../../mod/settings.php:1033 -msgid "Allow friends to post to your profile page?" -msgstr "Vrienden toestaan om op jou profielpagina te posten?" - -#: ../../mod/settings.php:1039 -msgid "Allow friends to tag your posts?" -msgstr "Sta vrienden toe om jouw berichten te labelen?" - -#: ../../mod/settings.php:1045 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "Sta je mij toe om jou als mogelijke vriend voor te stellen aan nieuwe leden?" - -#: ../../mod/settings.php:1051 -msgid "Permit unknown people to send you private mail?" -msgstr "Mogen onbekende personen jou privé berichten sturen?" - -#: ../../mod/settings.php:1059 -msgid "Profile is not published." -msgstr "Profiel is niet gepubliceerd." - -#: ../../mod/settings.php:1067 -msgid "Your Identity Address is" -msgstr "Jouw Identiteitsadres is" - -#: ../../mod/settings.php:1078 -msgid "Automatically expire posts after this many days:" -msgstr "Laat berichten automatisch vervallen na zo veel dagen:" - -#: ../../mod/settings.php:1078 -msgid "If empty, posts will not expire. Expired posts will be deleted" -msgstr "Berichten zullen niet vervallen indien leeg. Vervallen berichten zullen worden verwijderd." - -#: ../../mod/settings.php:1079 -msgid "Advanced expiration settings" -msgstr "Geavanceerde instellingen voor vervallen" - -#: ../../mod/settings.php:1080 -msgid "Advanced Expiration" -msgstr "Geavanceerd Verval:" - -#: ../../mod/settings.php:1081 -msgid "Expire posts:" -msgstr "Laat berichten vervallen:" - -#: ../../mod/settings.php:1082 -msgid "Expire personal notes:" -msgstr "Laat persoonlijke aantekeningen verlopen:" - -#: ../../mod/settings.php:1083 -msgid "Expire starred posts:" -msgstr "Laat berichten met ster verlopen" - -#: ../../mod/settings.php:1084 -msgid "Expire photos:" -msgstr "Laat foto's vervallen:" - -#: ../../mod/settings.php:1085 -msgid "Only expire posts by others:" -msgstr "Laat alleen berichten door anderen vervallen:" - -#: ../../mod/settings.php:1111 -msgid "Account Settings" -msgstr "Account Instellingen" - -#: ../../mod/settings.php:1119 -msgid "Password Settings" -msgstr "Wachtwoord Instellingen" - -#: ../../mod/settings.php:1120 -msgid "New Password:" -msgstr "Nieuw Wachtwoord:" - -#: ../../mod/settings.php:1121 -msgid "Confirm:" -msgstr "Bevestig:" - -#: ../../mod/settings.php:1121 -msgid "Leave password fields blank unless changing" -msgstr "Laat de wachtwoord-velden leeg, tenzij je het wilt veranderen" - -#: ../../mod/settings.php:1122 -msgid "Current Password:" -msgstr "Huidig wachtwoord:" - -#: ../../mod/settings.php:1122 ../../mod/settings.php:1123 -msgid "Your current password to confirm the changes" -msgstr "Je huidig wachtwoord om de wijzigingen te bevestigen" - -#: ../../mod/settings.php:1123 -msgid "Password:" -msgstr "Wachtwoord:" - -#: ../../mod/settings.php:1127 -msgid "Basic Settings" -msgstr "Basis Instellingen" - -#: ../../mod/settings.php:1128 ../../include/profile_advanced.php:15 -msgid "Full Name:" -msgstr "Volledige Naam:" - -#: ../../mod/settings.php:1129 -msgid "Email Address:" -msgstr "E-mailadres:" - -#: ../../mod/settings.php:1130 -msgid "Your Timezone:" -msgstr "Je Tijdzone:" - -#: ../../mod/settings.php:1131 -msgid "Default Post Location:" -msgstr "Standaard locatie:" - -#: ../../mod/settings.php:1132 -msgid "Use Browser Location:" -msgstr "Gebruik Webbrowser Locatie:" - -#: ../../mod/settings.php:1135 -msgid "Security and Privacy Settings" -msgstr "Instellingen voor Beveiliging en Privacy" - -#: ../../mod/settings.php:1137 -msgid "Maximum Friend Requests/Day:" -msgstr "Maximum aantal vriendschapsverzoeken per dag:" - -#: ../../mod/settings.php:1137 ../../mod/settings.php:1167 -msgid "(to prevent spam abuse)" -msgstr "(om spam misbruik te voorkomen)" - -#: ../../mod/settings.php:1138 -msgid "Default Post Permissions" -msgstr "Standaard rechten voor nieuwe berichten" - -#: ../../mod/settings.php:1139 -msgid "(click to open/close)" -msgstr "(klik om te openen/sluiten)" - -#: ../../mod/settings.php:1148 ../../mod/photos.php:1146 -#: ../../mod/photos.php:1519 -msgid "Show to Groups" -msgstr "Tonen aan groepen" - -#: ../../mod/settings.php:1149 ../../mod/photos.php:1147 -#: ../../mod/photos.php:1520 -msgid "Show to Contacts" -msgstr "Tonen aan contacten" - -#: ../../mod/settings.php:1150 -msgid "Default Private Post" -msgstr "Standaard Privé Post" - -#: ../../mod/settings.php:1151 -msgid "Default Public Post" -msgstr "Standaard Publieke Post" - -#: ../../mod/settings.php:1155 -msgid "Default Permissions for New Posts" -msgstr "Standaard rechten voor nieuwe berichten" - -#: ../../mod/settings.php:1167 -msgid "Maximum private messages per day from unknown people:" -msgstr "Maximum aantal privé-berichten per dag van onbekende personen:" - -#: ../../mod/settings.php:1170 -msgid "Notification Settings" -msgstr "Notificatie Instellingen" - -#: ../../mod/settings.php:1171 -msgid "By default post a status message when:" -msgstr "Post automatisch een bericht op je tijdlijn wanneer:" - -#: ../../mod/settings.php:1172 -msgid "accepting a friend request" -msgstr "Een vriendschapsverzoek accepteren" - -#: ../../mod/settings.php:1173 -msgid "joining a forum/community" -msgstr "Lid worden van een groep/forum" - -#: ../../mod/settings.php:1174 -msgid "making an interesting profile change" -msgstr "Een interessante verandering aan je profiel" - -#: ../../mod/settings.php:1175 -msgid "Send a notification email when:" -msgstr "Stuur een notificatie e-mail wanneer:" - -#: ../../mod/settings.php:1176 -msgid "You receive an introduction" -msgstr "Je ontvangt een vriendschaps- of connectieverzoek" - -#: ../../mod/settings.php:1177 -msgid "Your introductions are confirmed" -msgstr "Jouw vriendschaps- of connectieverzoeken zijn bevestigd" - -#: ../../mod/settings.php:1178 -msgid "Someone writes on your profile wall" -msgstr "Iemand iets op je tijdlijn schrijft" - -#: ../../mod/settings.php:1179 -msgid "Someone writes a followup comment" -msgstr "Iemand een reactie schrijft" - -#: ../../mod/settings.php:1180 -msgid "You receive a private message" -msgstr "Je een privé-bericht ontvangt" - -#: ../../mod/settings.php:1181 -msgid "You receive a friend suggestion" -msgstr "Je een suggestie voor een vriendschap ontvangt" - -#: ../../mod/settings.php:1182 -msgid "You are tagged in a post" -msgstr "Je expliciet in een bericht bent genoemd" - -#: ../../mod/settings.php:1183 -msgid "You are poked/prodded/etc. in a post" -msgstr "Je in een bericht bent aangestoten/gepord/etc." - -#: ../../mod/settings.php:1185 -msgid "Text-only notification emails" -msgstr "" - -#: ../../mod/settings.php:1187 -msgid "Send text only notification emails, without the html part" -msgstr "" - -#: ../../mod/settings.php:1189 -msgid "Advanced Account/Page Type Settings" -msgstr "" - -#: ../../mod/settings.php:1190 -msgid "Change the behaviour of this account for special situations" -msgstr "" - -#: ../../mod/settings.php:1193 -msgid "Relocate" -msgstr "" - -#: ../../mod/settings.php:1194 -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:1195 -msgid "Resend relocate message to contacts" -msgstr "" - -#: ../../mod/dfrn_request.php:95 -msgid "This introduction has already been accepted." -msgstr "Verzoek is al goedgekeurd" - -#: ../../mod/dfrn_request.php:120 ../../mod/dfrn_request.php:518 -msgid "Profile location is not valid or does not contain profile information." -msgstr "Profiel is ongeldig of bevat geen informatie" - -#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:523 -msgid "Warning: profile location has no identifiable owner name." -msgstr "Waarschuwing: de profiellocatie heeft geen identificeerbare eigenaar." - -#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:525 -msgid "Warning: profile location has no profile photo." -msgstr "Waarschuwing: Profieladres heeft geen profielfoto." - -#: ../../mod/dfrn_request.php:130 ../../mod/dfrn_request.php:528 +#: ../../mod/dfrn_confirm.php:571 #, 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] "De %d vereiste parameter is niet op het gegeven adres gevonden" -msgstr[1] "De %d vereiste parameters zijn niet op het gegeven adres gevonden" +msgid "No user record found for '%s' " +msgstr "Geen gebruiker gevonden voor '%s'" -#: ../../mod/dfrn_request.php:172 -msgid "Introduction complete." -msgstr "Verzoek voltooid." +#: ../../mod/dfrn_confirm.php:581 +msgid "Our site encryption key is apparently messed up." +msgstr "De encryptie-sleutel van onze webstek is blijkbaar beschadigd." -#: ../../mod/dfrn_request.php:214 -msgid "Unrecoverable protocol error." -msgstr "Onherstelbare protocolfout. " +#: ../../mod/dfrn_confirm.php:592 +msgid "Empty site URL was provided or URL could not be decrypted by us." +msgstr "Er werd een lege URL gegeven, of de URL kon niet ontcijferd worden door ons." -#: ../../mod/dfrn_request.php:242 -msgid "Profile unavailable." -msgstr "Profiel onbeschikbaar" +#: ../../mod/dfrn_confirm.php:613 +msgid "Contact record was not found for you on our site." +msgstr "We vonden op onze webstek geen contactrecord voor jou." -#: ../../mod/dfrn_request.php:267 +#: ../../mod/dfrn_confirm.php:627 #, php-format -msgid "%s has received too many connection requests today." -msgstr "%s heeft te veel verzoeken gehad vandaag." +msgid "Site public key not available in contact record for URL %s." +msgstr "Publieke sleutel voor webstek niet beschikbaar in contactrecord voor URL %s." -#: ../../mod/dfrn_request.php:268 -msgid "Spam protection measures have been invoked." -msgstr "Beveiligingsmaatregelen tegen spam zijn in werking getreden." - -#: ../../mod/dfrn_request.php:269 -msgid "Friends are advised to please try again in 24 hours." -msgstr "Wij adviseren vrienden om het over 24 uur nog een keer te proberen." - -#: ../../mod/dfrn_request.php:331 -msgid "Invalid locator" -msgstr "Ongeldige plaatsbepaler" - -#: ../../mod/dfrn_request.php:340 -msgid "Invalid email address." -msgstr "Geen geldig e-mailadres" - -#: ../../mod/dfrn_request.php:367 -msgid "This account has not been configured for email. Request failed." -msgstr "Aanvraag mislukt. Dit account is niet geconfigureerd voor e-mail." - -#: ../../mod/dfrn_request.php:463 -msgid "Unable to resolve your name at the provided location." -msgstr "Ik kan jouw naam op het opgegeven adres niet vinden." - -#: ../../mod/dfrn_request.php:476 -msgid "You have already introduced yourself here." -msgstr "Je hebt jezelf hier al voorgesteld." - -#: ../../mod/dfrn_request.php:480 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Blijkbaar bent u al bevriend met %s." - -#: ../../mod/dfrn_request.php:501 -msgid "Invalid profile URL." -msgstr "Ongeldig profiel adres." - -#: ../../mod/dfrn_request.php:507 ../../include/follow.php:27 -msgid "Disallowed profile URL." -msgstr "Niet toegelaten profiel adres." - -#: ../../mod/dfrn_request.php:597 -msgid "Your introduction has been sent." -msgstr "Je verzoek is verzonden." - -#: ../../mod/dfrn_request.php:650 -msgid "Please login to confirm introduction." -msgstr "Log in om je verzoek te bevestigen." - -#: ../../mod/dfrn_request.php:660 +#: ../../mod/dfrn_confirm.php:647 msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "Je huidige identiteit is niet de juiste. Log met dit profiel in." +"The ID provided by your system is a duplicate on our system. It should work " +"if you try again." +msgstr "Het ID dat jouw systeem aangeeft is een dubbel op ons systeem. Als je opnieuw probeert zou het moeten werken." -#: ../../mod/dfrn_request.php:671 -msgid "Hide this contact" -msgstr "Verberg dit contact" +#: ../../mod/dfrn_confirm.php:658 +msgid "Unable to set your contact credentials on our system." +msgstr "Niet in staat om op dit systeem je contactreferenties in te stellen." -#: ../../mod/dfrn_request.php:674 +#: ../../mod/dfrn_confirm.php:725 +msgid "Unable to update your contact profile details on our system" +msgstr "" + +#: ../../mod/dfrn_confirm.php:797 #, php-format -msgid "Welcome home %s." -msgstr "Welkom terug %s." +msgid "%1$s has joined %2$s" +msgstr "%1$s is toegetreden tot %2$s" -#: ../../mod/dfrn_request.php:675 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Bevestig je vriendschaps-/connectieverzoek voor %s." +#: ../../mod/item.php:114 +msgid "Unable to locate original post." +msgstr "Ik kan de originele post niet meer vinden." -#: ../../mod/dfrn_request.php:676 -msgid "Confirm" -msgstr "Bevestig" +#: ../../mod/item.php:346 +msgid "Empty post discarded." +msgstr "Lege post weggegooid." -#: ../../mod/dfrn_request.php:804 -msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"communications networks:" -msgstr "Vul hier uw 'Identiteitsadres' in van een van de volgende ondersteunde communicatienetwerken:" +#: ../../mod/item.php:839 +msgid "System error. Post not saved." +msgstr "Systeemfout. Post niet bewaard." -#: ../../mod/dfrn_request.php:824 -msgid "" -"If you are not yet a member of the free social web, follow this link to find a public" -" Friendica site and join us today." -msgstr "Als je nog geen lid bent van het vrije sociale web, volg dan deze link om een openbare Friendica-website te vinden, en sluit je vandaag nog aan." - -#: ../../mod/dfrn_request.php:827 -msgid "Friend/Connection Request" -msgstr "Vriendschaps-/connectieverzoek" - -#: ../../mod/dfrn_request.php:828 -msgid "" -"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " -"testuser@identi.ca" -msgstr "Voorbeelden: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" - -#: ../../mod/dfrn_request.php:829 -msgid "Please answer the following:" -msgstr "Beantwoord het volgende:" - -#: ../../mod/dfrn_request.php:830 -#, php-format -msgid "Does %s know you?" -msgstr "Kent %s jou?" - -#: ../../mod/dfrn_request.php:834 -msgid "Add a personal note:" -msgstr "Voeg een persoonlijke opmerking toe:" - -#: ../../mod/dfrn_request.php:836 ../../include/contact_selectors.php:76 -msgid "Friendica" -msgstr "Friendica" - -#: ../../mod/dfrn_request.php:837 -msgid "StatusNet/Federated Social Web" -msgstr "StatusNet/Gefedereerde Sociale Web" - -#: ../../mod/dfrn_request.php:839 +#: ../../mod/item.php:965 #, php-format msgid "" -" - please do not use this form. Instead, enter %s into your Diaspora search" -" bar." -msgstr "- Gebruik niet dit formulier. Vul %s in in je Diaspora zoekbalk." +"This message was sent to you by %s, a member of the Friendica social " +"network." +msgstr "Dit bericht werd naar jou gestuurd door %s, een lid van het Friendica sociale netwerk." -#: ../../mod/dfrn_request.php:840 -msgid "Your Identity Address:" -msgstr "Adres van uw identiteit:" - -#: ../../mod/dfrn_request.php:843 -msgid "Submit Request" -msgstr "Aanvraag indienen" - -#: ../../mod/register.php:90 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "Registratie geslaagd. Kijk je e-mail na voor verdere instructies." - -#: ../../mod/register.php:96 +#: ../../mod/item.php:967 #, php-format +msgid "You may visit them online at %s" +msgstr "Je kunt ze online bezoeken op %s" + +#: ../../mod/item.php:968 msgid "" -"Failed to send email message. Here your accout details:
    login: %s
    " -"password: %s

    You can change your password after login." -msgstr "" +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." +msgstr "Contacteer de afzender door op dit bericht te antwoorden als je deze berichten niet wilt ontvangen." -#: ../../mod/register.php:105 -msgid "Your registration can not be processed." -msgstr "Je registratie kan niet verwerkt worden." +#: ../../mod/item.php:972 +#, php-format +msgid "%s posted an update." +msgstr "%s heeft een wijziging geplaatst." -#: ../../mod/register.php:148 -msgid "Your registration is pending approval by the site owner." -msgstr "Jouw registratie wacht op goedkeuring van de beheerder." +#: ../../mod/profile_photo.php:44 +msgid "Image uploaded but image cropping failed." +msgstr "Afbeelding opgeladen, maar bijsnijden mislukt." -#: ../../mod/register.php:186 ../../mod/uimport.php:50 +#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84 +#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "Verkleining van de afbeelding [%s] mislukt." + +#: ../../mod/profile_photo.php:118 msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Deze website heeft het toegelaten dagelijkse aantal registraties overschreden. Probeer morgen opnieuw." +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Shift-herlaad de pagina, of maak de browser cache leeg als nieuwe foto's niet onmiddellijk verschijnen." -#: ../../mod/register.php:214 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking 'Register'." -msgstr "Je kunt (optioneel) dit formulier invullen via OpenID door je OpenID in te geven en op 'Registreren' te klikken." +#: ../../mod/profile_photo.php:128 +msgid "Unable to process image" +msgstr "Ik kan de afbeelding niet verwerken" -#: ../../mod/register.php:215 -msgid "" -"If you are not familiar with OpenID, please leave that field blank and fill " -"in the rest of the items." -msgstr "Laat dit veld leeg als je niet vertrouwd bent met OpenID, en vul de rest van de items in." +#: ../../mod/profile_photo.php:242 +msgid "Upload File:" +msgstr "Upload bestand:" -#: ../../mod/register.php:216 -msgid "Your OpenID (optional): " -msgstr "Je OpenID (optioneel):" +#: ../../mod/profile_photo.php:243 +msgid "Select a profile:" +msgstr "Kies een profiel:" -#: ../../mod/register.php:230 -msgid "Include your profile in member directory?" -msgstr "Je profiel in de ledengids opnemen?" +#: ../../mod/profile_photo.php:245 +msgid "Upload" +msgstr "Uploaden" -#: ../../mod/register.php:251 -msgid "Membership on this site is by invitation only." -msgstr "Lidmaatschap van deze website is uitsluitend op uitnodiging." +#: ../../mod/profile_photo.php:248 +msgid "skip this step" +msgstr "Deze stap overslaan" -#: ../../mod/register.php:252 -msgid "Your invitation ID: " -msgstr "Je uitnodigingsid:" +#: ../../mod/profile_photo.php:248 +msgid "select a photo from your photo albums" +msgstr "Kies een foto uit je fotoalbums" -#: ../../mod/register.php:263 -msgid "Your Full Name (e.g. Joe Smith): " -msgstr "Je volledige naam (bijv. Jan Jansens):" +#: ../../mod/profile_photo.php:262 +msgid "Crop Image" +msgstr "Afbeelding bijsnijden" -#: ../../mod/register.php:264 -msgid "Your Email Address: " -msgstr "Je email adres:" +#: ../../mod/profile_photo.php:263 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Pas het afsnijden van de afbeelding aan voor het beste resultaat." -#: ../../mod/register.php:265 -msgid "" -"Choose a profile nickname. This must begin with a text character. Your " -"profile address on this site will then be " -"'nickname@$sitename'." -msgstr "Kies een bijnaam voor je profiel. Deze moet met een letter beginnen. Je profieladres op deze website zal dan 'bijnaam@$sitename' zijn." +#: ../../mod/profile_photo.php:265 +msgid "Done Editing" +msgstr "Wijzigingen compleet" -#: ../../mod/register.php:266 -msgid "Choose a nickname: " -msgstr "Kies een bijnaam:" +#: ../../mod/profile_photo.php:299 +msgid "Image uploaded successfully." +msgstr "Uploaden van afbeelding gelukt." -#: ../../mod/register.php:269 ../../boot.php:1241 ../../include/nav.php:109 -msgid "Register" -msgstr "Registreer" +#: ../../mod/allfriends.php:34 +#, php-format +msgid "Friends of %s" +msgstr "Vrienden van %s" -#: ../../mod/register.php:275 ../../mod/uimport.php:64 -msgid "Import" -msgstr "Importeren" - -#: ../../mod/register.php:276 -msgid "Import your profile to this friendica instance" -msgstr "" - -#: ../../mod/maintenance.php:5 -msgid "System down for maintenance" -msgstr "Systeem onbeschikbaar wegens onderhoud" - -#: ../../mod/search.php:99 ../../include/text.php:953 -#: ../../include/text.php:954 ../../include/nav.php:119 -msgid "Search" -msgstr "Zoeken" - -#: ../../mod/directory.php:51 ../../view/theme/diabook/theme.php:525 -msgid "Global Directory" -msgstr "Globale gids" +#: ../../mod/allfriends.php:40 +msgid "No friends to display." +msgstr "Geen vrienden om te laten zien." #: ../../mod/directory.php:59 msgid "Find on this site" @@ -4545,607 +7891,14 @@ msgstr "Op deze website zoeken" msgid "Site Directory" msgstr "Websitegids" -#: ../../mod/directory.php:113 ../../mod/profiles.php:750 -msgid "Age: " -msgstr "Leeftijd:" - #: ../../mod/directory.php:116 msgid "Gender: " msgstr "Geslacht:" -#: ../../mod/directory.php:138 ../../boot.php:1650 -#: ../../include/profile_advanced.php:17 -msgid "Gender:" -msgstr "Geslacht:" - -#: ../../mod/directory.php:140 ../../boot.php:1653 -#: ../../include/profile_advanced.php:37 -msgid "Status:" -msgstr "Tijdlijn:" - -#: ../../mod/directory.php:142 ../../boot.php:1655 -#: ../../include/profile_advanced.php:48 -msgid "Homepage:" -msgstr "Website:" - -#: ../../mod/directory.php:144 ../../boot.php:1657 -#: ../../include/profile_advanced.php:58 -msgid "About:" -msgstr "Over:" - #: ../../mod/directory.php:189 msgid "No entries (some entries may be hidden)." msgstr "Geen gegevens (sommige gegevens kunnen verborgen zijn)." -#: ../../mod/delegate.php:101 -msgid "No potential page delegates located." -msgstr "Niemand gevonden waar het paginabeheer mogelijk aan uitbesteed kan worden." - -#: ../../mod/delegate.php:130 ../../include/nav.php:170 -msgid "Delegate Page Management" -msgstr "Paginabeheer uitbesteden" - -#: ../../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 "Personen waaraan het beheer is uitbesteed kunnen alle onderdelen van een account/pagina beheren, behalve de basisinstellingen van een account. Besteed je persoonlijke account daarom niet uit aan personen die je niet volledig vertrouwd." - -#: ../../mod/delegate.php:133 -msgid "Existing Page Managers" -msgstr "Bestaande paginabeheerders" - -#: ../../mod/delegate.php:135 -msgid "Existing Page Delegates" -msgstr "Bestaande personen waaraan het paginabeheer is uitbesteed" - -#: ../../mod/delegate.php:137 -msgid "Potential Delegates" -msgstr "Mogelijke personen waaraan het paginabeheer kan worden uitbesteed " - -#: ../../mod/delegate.php:140 -msgid "Add" -msgstr "Toevoegen" - -#: ../../mod/delegate.php:141 -msgid "No entries." -msgstr "Geen gegevens." - -#: ../../mod/common.php:42 -msgid "Common Friends" -msgstr "Gedeelde Vrienden" - -#: ../../mod/common.php:78 -msgid "No contacts in common." -msgstr "Geen gedeelde contacten." - -#: ../../mod/uexport.php:77 -msgid "Export account" -msgstr "Account exporteren" - -#: ../../mod/uexport.php:77 -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 "Je account informatie en contacten exporteren. Gebruik dit om een backup van je account te maken en/of om het te verhuizen naar een andere server." - -#: ../../mod/uexport.php:78 -msgid "Export all" -msgstr "Alles exporteren" - -#: ../../mod/uexport.php:78 -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 "Je account info, contacten en al je items in json formaat exporteren. Dit kan een heel groot bestand worden, en kan lang duren. Gebruik dit om een volledige backup van je account te maken (foto's worden niet geexporteerd)" - -#: ../../mod/mood.php:62 ../../include/conversation.php:227 -#, php-format -msgid "%1$s is currently %2$s" -msgstr "%1$s is op dit moment %2$s" - -#: ../../mod/mood.php:133 -msgid "Mood" -msgstr "Stemming" - -#: ../../mod/mood.php:134 -msgid "Set your current mood and tell your friends" -msgstr "Stel je huidige stemming in, en vertel het je vrienden" - -#: ../../mod/suggest.php:27 -msgid "Do you really want to delete this suggestion?" -msgstr "Wil je echt dit voorstel verwijderen?" - -#: ../../mod/suggest.php:68 ../../include/contact_widgets.php:35 -#: ../../view/theme/diabook/theme.php:527 -msgid "Friend Suggestions" -msgstr "Vriendschapsvoorstellen" - -#: ../../mod/suggest.php:74 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Geen voorstellen beschikbaar. Als dit een nieuwe website is, kun je het over 24 uur nog eens proberen." - -#: ../../mod/suggest.php:92 -msgid "Ignore/Hide" -msgstr "Negeren/Verbergen" - -#: ../../mod/profiles.php:37 -msgid "Profile deleted." -msgstr "Profiel verwijderd" - -#: ../../mod/profiles.php:55 ../../mod/profiles.php:89 -msgid "Profile-" -msgstr "Profiel-" - -#: ../../mod/profiles.php:74 ../../mod/profiles.php:117 -msgid "New profile created." -msgstr "Nieuw profiel aangemaakt." - -#: ../../mod/profiles.php:95 -msgid "Profile unavailable to clone." -msgstr "Profiel niet beschikbaar om te klonen." - -#: ../../mod/profiles.php:189 -msgid "Profile Name is required." -msgstr "Profielnaam is vereist." - -#: ../../mod/profiles.php:340 -msgid "Marital Status" -msgstr "Echtelijke staat" - -#: ../../mod/profiles.php:344 -msgid "Romantic Partner" -msgstr "Romantische Partner" - -#: ../../mod/profiles.php:348 -msgid "Likes" -msgstr "Houdt van" - -#: ../../mod/profiles.php:352 -msgid "Dislikes" -msgstr "Houdt niet van" - -#: ../../mod/profiles.php:356 -msgid "Work/Employment" -msgstr "Werk" - -#: ../../mod/profiles.php:359 -msgid "Religion" -msgstr "Godsdienst" - -#: ../../mod/profiles.php:363 -msgid "Political Views" -msgstr "Politieke standpunten" - -#: ../../mod/profiles.php:367 -msgid "Gender" -msgstr "Geslacht" - -#: ../../mod/profiles.php:371 -msgid "Sexual Preference" -msgstr "Seksuele Voorkeur" - -#: ../../mod/profiles.php:375 -msgid "Homepage" -msgstr "Tijdlijn" - -#: ../../mod/profiles.php:379 ../../mod/profiles.php:698 -msgid "Interests" -msgstr "Interesses" - -#: ../../mod/profiles.php:383 -msgid "Address" -msgstr "Adres" - -#: ../../mod/profiles.php:390 ../../mod/profiles.php:694 -msgid "Location" -msgstr "Plaats" - -#: ../../mod/profiles.php:473 -msgid "Profile updated." -msgstr "Profiel bijgewerkt." - -#: ../../mod/profiles.php:568 -msgid " and " -msgstr "en" - -#: ../../mod/profiles.php:576 -msgid "public profile" -msgstr "publiek profiel" - -#: ../../mod/profiles.php:579 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s veranderde %2$s naar “%3$s”" - -#: ../../mod/profiles.php:580 -#, php-format -msgid " - Visit %1$s's %2$s" -msgstr " - Bezoek %2$s van %1$s" - -#: ../../mod/profiles.php:583 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s heeft een aangepast %2$s, %3$s veranderd." - -#: ../../mod/profiles.php:658 -msgid "Hide contacts and friends:" -msgstr "" - -#: ../../mod/profiles.php:663 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "Je vrienden/contacten verbergen voor bezoekers van dit profiel?" - -#: ../../mod/profiles.php:685 -msgid "Edit Profile Details" -msgstr "Profieldetails bewerken" - -#: ../../mod/profiles.php:687 -msgid "Change Profile Photo" -msgstr "Profielfoto wijzigen" - -#: ../../mod/profiles.php:688 -msgid "View this profile" -msgstr "Dit profiel bekijken" - -#: ../../mod/profiles.php:689 -msgid "Create a new profile using these settings" -msgstr "Nieuw profiel aanmaken met deze instellingen" - -#: ../../mod/profiles.php:690 -msgid "Clone this profile" -msgstr "Dit profiel klonen" - -#: ../../mod/profiles.php:691 -msgid "Delete this profile" -msgstr "Dit profiel verwijderen" - -#: ../../mod/profiles.php:692 -msgid "Basic information" -msgstr "" - -#: ../../mod/profiles.php:693 -msgid "Profile picture" -msgstr "" - -#: ../../mod/profiles.php:695 -msgid "Preferences" -msgstr "" - -#: ../../mod/profiles.php:696 -msgid "Status information" -msgstr "" - -#: ../../mod/profiles.php:697 -msgid "Additional information" -msgstr "" - -#: ../../mod/profiles.php:700 -msgid "Profile Name:" -msgstr "Profiel Naam:" - -#: ../../mod/profiles.php:701 -msgid "Your Full Name:" -msgstr "Je volledige naam:" - -#: ../../mod/profiles.php:702 -msgid "Title/Description:" -msgstr "Titel/Beschrijving:" - -#: ../../mod/profiles.php:703 -msgid "Your Gender:" -msgstr "Je Geslacht:" - -#: ../../mod/profiles.php:704 -#, php-format -msgid "Birthday (%s):" -msgstr "Geboortedatum (%s):" - -#: ../../mod/profiles.php:705 -msgid "Street Address:" -msgstr "Postadres:" - -#: ../../mod/profiles.php:706 -msgid "Locality/City:" -msgstr "Gemeente/Stad:" - -#: ../../mod/profiles.php:707 -msgid "Postal/Zip Code:" -msgstr "Postcode:" - -#: ../../mod/profiles.php:708 -msgid "Country:" -msgstr "Land:" - -#: ../../mod/profiles.php:709 -msgid "Region/State:" -msgstr "Regio/Staat:" - -#: ../../mod/profiles.php:710 -msgid " Marital Status:" -msgstr " Echtelijke Staat:" - -#: ../../mod/profiles.php:711 -msgid "Who: (if applicable)" -msgstr "Wie: (indien toepasbaar)" - -#: ../../mod/profiles.php:712 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Voorbeelden: Kathleen123, Kathleen Peeters, kathleen@voorbeeld.nl" - -#: ../../mod/profiles.php:713 -msgid "Since [date]:" -msgstr "Sinds [datum]:" - -#: ../../mod/profiles.php:714 ../../include/profile_advanced.php:46 -msgid "Sexual Preference:" -msgstr "Seksuele Voorkeur:" - -#: ../../mod/profiles.php:715 -msgid "Homepage URL:" -msgstr "Adres tijdlijn:" - -#: ../../mod/profiles.php:716 ../../include/profile_advanced.php:50 -msgid "Hometown:" -msgstr "Woonplaats:" - -#: ../../mod/profiles.php:717 ../../include/profile_advanced.php:54 -msgid "Political Views:" -msgstr "Politieke standpunten:" - -#: ../../mod/profiles.php:718 -msgid "Religious Views:" -msgstr "Geloof:" - -#: ../../mod/profiles.php:719 -msgid "Public Keywords:" -msgstr "Publieke Sleutelwoorden:" - -#: ../../mod/profiles.php:720 -msgid "Private Keywords:" -msgstr "Privé Sleutelwoorden:" - -#: ../../mod/profiles.php:721 ../../include/profile_advanced.php:62 -msgid "Likes:" -msgstr "Houdt van:" - -#: ../../mod/profiles.php:722 ../../include/profile_advanced.php:64 -msgid "Dislikes:" -msgstr "Houdt niet van:" - -#: ../../mod/profiles.php:723 -msgid "Example: fishing photography software" -msgstr "Voorbeeld: vissen fotografie software" - -#: ../../mod/profiles.php:724 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "(Gebruikt om mogelijke vrienden voor te stellen, kan door anderen gezien worden)" - -#: ../../mod/profiles.php:725 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(Gebruikt om profielen te zoeken, nooit aan anderen getoond)" - -#: ../../mod/profiles.php:726 -msgid "Tell us about yourself..." -msgstr "Vertel iets over jezelf..." - -#: ../../mod/profiles.php:727 -msgid "Hobbies/Interests" -msgstr "Hobby's/Interesses" - -#: ../../mod/profiles.php:728 -msgid "Contact information and Social Networks" -msgstr "Contactinformatie en sociale netwerken" - -#: ../../mod/profiles.php:729 -msgid "Musical interests" -msgstr "Muzikale interesses" - -#: ../../mod/profiles.php:730 -msgid "Books, literature" -msgstr "Boeken, literatuur" - -#: ../../mod/profiles.php:731 -msgid "Television" -msgstr "Televisie" - -#: ../../mod/profiles.php:732 -msgid "Film/dance/culture/entertainment" -msgstr "Film/dans/cultuur/ontspanning" - -#: ../../mod/profiles.php:733 -msgid "Love/romance" -msgstr "Liefde/romance" - -#: ../../mod/profiles.php:734 -msgid "Work/employment" -msgstr "Werk" - -#: ../../mod/profiles.php:735 -msgid "School/education" -msgstr "School/opleiding" - -#: ../../mod/profiles.php:740 -msgid "" -"This is your public profile.
    It may " -"be visible to anybody using the internet." -msgstr "Dit is jouw publiek profiel.
    Het kan zichtbaar zijn voor iedereen op het internet." - -#: ../../mod/profiles.php:803 -msgid "Edit/Manage Profiles" -msgstr "Wijzig/Beheer Profielen" - -#: ../../mod/profiles.php:804 ../../boot.php:1611 ../../boot.php:1637 -msgid "Change profile photo" -msgstr "Profiel foto wijzigen" - -#: ../../mod/profiles.php:805 ../../boot.php:1612 -msgid "Create New Profile" -msgstr "Maak nieuw profiel" - -#: ../../mod/profiles.php:816 ../../boot.php:1622 -msgid "Profile Image" -msgstr "Profiel afbeelding" - -#: ../../mod/profiles.php:818 ../../boot.php:1625 -msgid "visible to everybody" -msgstr "zichtbaar voor iedereen" - -#: ../../mod/profiles.php:819 ../../boot.php:1626 -msgid "Edit visibility" -msgstr "Pas zichtbaarheid aan" - -#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 -msgid "Item not found" -msgstr "Item niet gevonden" - -#: ../../mod/editpost.php:39 -msgid "Edit post" -msgstr "Bericht bewerken" - -#: ../../mod/editpost.php:111 ../../include/conversation.php:1092 -msgid "upload photo" -msgstr "Foto uploaden" - -#: ../../mod/editpost.php:112 ../../include/conversation.php:1093 -msgid "Attach file" -msgstr "Bestand bijvoegen" - -#: ../../mod/editpost.php:113 ../../include/conversation.php:1094 -msgid "attach file" -msgstr "bestand bijvoegen" - -#: ../../mod/editpost.php:115 ../../include/conversation.php:1096 -msgid "web link" -msgstr "webadres" - -#: ../../mod/editpost.php:116 ../../include/conversation.php:1097 -msgid "Insert video link" -msgstr "Voeg video toe" - -#: ../../mod/editpost.php:117 ../../include/conversation.php:1098 -msgid "video link" -msgstr "video adres" - -#: ../../mod/editpost.php:118 ../../include/conversation.php:1099 -msgid "Insert audio link" -msgstr "Voeg audio adres toe" - -#: ../../mod/editpost.php:119 ../../include/conversation.php:1100 -msgid "audio link" -msgstr "audio adres" - -#: ../../mod/editpost.php:120 ../../include/conversation.php:1101 -msgid "Set your location" -msgstr "Stel uw locatie in" - -#: ../../mod/editpost.php:121 ../../include/conversation.php:1102 -msgid "set location" -msgstr "Stel uw locatie in" - -#: ../../mod/editpost.php:122 ../../include/conversation.php:1103 -msgid "Clear browser location" -msgstr "Verwijder locatie uit uw webbrowser" - -#: ../../mod/editpost.php:123 ../../include/conversation.php:1104 -msgid "clear location" -msgstr "Verwijder locatie uit uw webbrowser" - -#: ../../mod/editpost.php:125 ../../include/conversation.php:1110 -msgid "Permission settings" -msgstr "Instellingen van rechten" - -#: ../../mod/editpost.php:133 ../../include/conversation.php:1119 -msgid "CC: email addresses" -msgstr "CC: e-mailadressen" - -#: ../../mod/editpost.php:134 ../../include/conversation.php:1120 -msgid "Public post" -msgstr "Openbare post" - -#: ../../mod/editpost.php:137 ../../include/conversation.php:1106 -msgid "Set title" -msgstr "Titel plaatsen" - -#: ../../mod/editpost.php:139 ../../include/conversation.php:1108 -msgid "Categories (comma-separated list)" -msgstr "Categorieën (komma-gescheiden lijst)" - -#: ../../mod/editpost.php:140 ../../include/conversation.php:1122 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Voorbeeld: bob@voorbeeld.nl, an@voorbeeld.be" - -#: ../../mod/friendica.php:59 -msgid "This is Friendica, version" -msgstr "Dit is Friendica, versie" - -#: ../../mod/friendica.php:60 -msgid "running at web location" -msgstr "draaiend op web-adres" - -#: ../../mod/friendica.php:62 -msgid "" -"Please visit Friendica.com to learn " -"more about the Friendica project." -msgstr "Bezoek Friendica.com om meer te leren over het Friendica project." - -#: ../../mod/friendica.php:64 -msgid "Bug reports and issues: please visit" -msgstr "Bug rapporten en problemen: bezoek" - -#: ../../mod/friendica.php:65 -msgid "" -"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " -"dot com" -msgstr "Suggesties, lof, donaties, enzovoort - stuur een e-mail naar \"info\" op Friendica - dot com" - -#: ../../mod/friendica.php:79 -msgid "Installed plugins/addons/apps:" -msgstr "Geïnstalleerde plugins/toepassingen:" - -#: ../../mod/friendica.php:92 -msgid "No installed plugins/addons/apps" -msgstr "Geen plugins of toepassingen geïnstalleerd" - -#: ../../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 "Log in om verder te gaan." - -#: ../../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 "Wil je deze toepassing toestemming geven om jouw berichten en contacten in te kijken, en/of nieuwe berichten in jouw plaats aan te maken?" - -#: ../../mod/lockview.php:31 ../../mod/lockview.php:39 -msgid "Remote privacy information not available." -msgstr "Privacyinformatie op afstand niet beschikbaar." - -#: ../../mod/lockview.php:48 -msgid "Visible to:" -msgstr "Zichtbaar voor:" - -#: ../../mod/notes.php:44 ../../boot.php:2150 -msgid "Personal Notes" -msgstr "Persoonlijke Nota's" - -#: ../../mod/localtime.php:12 ../../include/bb2diaspora.php:148 -#: ../../include/event.php:11 -msgid "l F d, Y \\@ g:i A" -msgstr "l F d, Y \\@ g:i A" - #: ../../mod/localtime.php:24 msgid "Time Conversion" msgstr "Tijdsconversie" @@ -5174,2703 +7927,3 @@ msgstr "Omgerekende lokale tijd: %s" #: ../../mod/localtime.php:41 msgid "Please select your timezone:" msgstr "Selecteer je tijdzone:" - -#: ../../mod/poke.php:192 -msgid "Poke/Prod" -msgstr "Aanstoten/porren" - -#: ../../mod/poke.php:193 -msgid "poke, prod or do other things to somebody" -msgstr "aanstoten, porren of andere dingen met iemand doen" - -#: ../../mod/poke.php:194 -msgid "Recipient" -msgstr "Ontvanger" - -#: ../../mod/poke.php:195 -msgid "Choose what you wish to do to recipient" -msgstr "Kies wat je met de ontvanger wil doen" - -#: ../../mod/poke.php:198 -msgid "Make this post private" -msgstr "Dit bericht privé maken" - -#: ../../mod/invite.php:27 -msgid "Total invitation limit exceeded." -msgstr "Totale uitnodigingslimiet overschreden." - -#: ../../mod/invite.php:49 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s: Geen geldig e-mailadres." - -#: ../../mod/invite.php:73 -msgid "Please join us on Friendica" -msgstr "Kom bij ons op Friendica" - -#: ../../mod/invite.php:84 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Uitnodigingslimiet overschreden. Neem contact op met de beheerder van je website." - -#: ../../mod/invite.php:89 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Aflevering van bericht mislukt." - -#: ../../mod/invite.php:93 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d bericht verzonden." -msgstr[1] "%d berichten verzonden." - -#: ../../mod/invite.php:112 -msgid "You have no more invitations available" -msgstr "Je kunt geen uitnodigingen meer sturen" - -#: ../../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 "Bezoek %s voor een lijst van openbare sites waar je je kunt aansluiten. Friendica leden op andere sites kunnen allemaal met elkaar verbonden worden, en ook met leden van verschillende andere sociale netwerken." - -#: ../../mod/invite.php:122 -#, php-format -msgid "" -"To accept this invitation, please visit and register at %s or any other " -"public Friendica website." -msgstr "Om deze uitnodiging te accepteren kan je je op %s registreren of op een andere vrij toegankelijke 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 servers zijn allemaal onderling verbonden om een reusachtig sociaal web te maken met verbeterde privacy, dat eigendom is van en gecontroleerd door zijn leden. Ze kunnen ook verbindingen maken met verschillende traditionele sociale netwerken. Bekijk %s voor een lijst van alternatieve Friendica servers waar je aan kunt sluiten." - -#: ../../mod/invite.php:126 -msgid "" -"Our apologies. This system is not currently configured to connect with other" -" public sites or invite members." -msgstr "Onze verontschuldigingen. Dit systeem is momenteel niet ingesteld om verbinding te maken met andere openbare plaatsen of leden uit te nodigen." - -#: ../../mod/invite.php:132 -msgid "Send invitations" -msgstr "Verstuur uitnodigingen" - -#: ../../mod/invite.php:133 -msgid "Enter email addresses, one per line:" -msgstr "Vul e-mailadressen in, één per lijn:" - -#: ../../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 "Ik nodig je vriendelijk uit om bij mij en andere vrienden te komen op Friendica - en ons te helpen om een beter sociaal web te bouwen." - -#: ../../mod/invite.php:137 -msgid "You will need to supply this invitation code: $invite_code" -msgstr "Je zult deze uitnodigingscode moeten invullen: $invite_code" - -#: ../../mod/invite.php:137 -msgid "" -"Once you have registered, please connect with me via my profile page at:" -msgstr "Eens je geregistreerd bent kun je contact leggen met mij via mijn profielpagina op:" - -#: ../../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 "Voor meer informatie over het Friendica project en waarom wij denken dat het belangrijk is kun je http://friendica.com/ bezoeken" - -#: ../../mod/photos.php:52 ../../boot.php:2129 -msgid "Photo Albums" -msgstr "Fotoalbums" - -#: ../../mod/photos.php:60 ../../mod/photos.php:155 ../../mod/photos.php:1064 -#: ../../mod/photos.php:1187 ../../mod/photos.php:1210 -#: ../../mod/photos.php:1760 ../../mod/photos.php:1772 -#: ../../view/theme/diabook/theme.php:499 -msgid "Contact Photos" -msgstr "Contactfoto's" - -#: ../../mod/photos.php:67 ../../mod/photos.php:1262 ../../mod/photos.php:1819 -msgid "Upload New Photos" -msgstr "Nieuwe foto's uploaden" - -#: ../../mod/photos.php:144 -msgid "Contact information unavailable" -msgstr "Contactinformatie niet beschikbaar" - -#: ../../mod/photos.php:165 -msgid "Album not found." -msgstr "Album niet gevonden" - -#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204 -msgid "Delete Album" -msgstr "Verwijder album" - -#: ../../mod/photos.php:198 -msgid "Do you really want to delete this photo album and all its photos?" -msgstr "Wil je echt dit fotoalbum en alle foto's erin verwijderen?" - -#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1515 -msgid "Delete Photo" -msgstr "Verwijder foto" - -#: ../../mod/photos.php:287 -msgid "Do you really want to delete this photo?" -msgstr "Wil je echt deze foto verwijderen?" - -#: ../../mod/photos.php:662 -#, php-format -msgid "%1$s was tagged in %2$s by %3$s" -msgstr "%1$s is gelabeld in %2$s door %3$s" - -#: ../../mod/photos.php:662 -msgid "a photo" -msgstr "een foto" - -#: ../../mod/photos.php:767 -msgid "Image exceeds size limit of " -msgstr "Afbeelding is groter dan de maximale afmeting van" - -#: ../../mod/photos.php:775 -msgid "Image file is empty." -msgstr "Afbeeldingsbestand is leeg." - -#: ../../mod/photos.php:930 -msgid "No photos selected" -msgstr "Geen foto's geselecteerd" - -#: ../../mod/photos.php:1094 -#, php-format -msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." -msgstr "Je hebt %1$.2f Mbytes van %2$.2f Mbytes foto-opslagruimte gebruikt." - -#: ../../mod/photos.php:1129 -msgid "Upload Photos" -msgstr "Upload foto's" - -#: ../../mod/photos.php:1133 ../../mod/photos.php:1199 -msgid "New album name: " -msgstr "Nieuwe albumnaam: " - -#: ../../mod/photos.php:1134 -msgid "or existing album name: " -msgstr "of bestaande albumnaam: " - -#: ../../mod/photos.php:1135 -msgid "Do not show a status post for this upload" -msgstr "Toon geen bericht op je tijdlijn van deze upload" - -#: ../../mod/photos.php:1137 ../../mod/photos.php:1510 -msgid "Permissions" -msgstr "Rechten" - -#: ../../mod/photos.php:1148 -msgid "Private Photo" -msgstr "Privé foto" - -#: ../../mod/photos.php:1149 -msgid "Public Photo" -msgstr "Publieke foto" - -#: ../../mod/photos.php:1212 -msgid "Edit Album" -msgstr "Album wijzigen" - -#: ../../mod/photos.php:1218 -msgid "Show Newest First" -msgstr "Toon niewste eerst" - -#: ../../mod/photos.php:1220 -msgid "Show Oldest First" -msgstr "Toon oudste eerst" - -#: ../../mod/photos.php:1248 ../../mod/photos.php:1802 -msgid "View Photo" -msgstr "Bekijk foto" - -#: ../../mod/photos.php:1294 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Toegang geweigerd. Toegang tot dit item is mogelijk beperkt." - -#: ../../mod/photos.php:1296 -msgid "Photo not available" -msgstr "Foto is niet beschikbaar" - -#: ../../mod/photos.php:1352 -msgid "View photo" -msgstr "Bekijk foto" - -#: ../../mod/photos.php:1352 -msgid "Edit photo" -msgstr "Bewerk foto" - -#: ../../mod/photos.php:1353 -msgid "Use as profile photo" -msgstr "Gebruik als profielfoto" - -#: ../../mod/photos.php:1378 -msgid "View Full Size" -msgstr "Bekijk in volledig formaat" - -#: ../../mod/photos.php:1457 -msgid "Tags: " -msgstr "Labels: " - -#: ../../mod/photos.php:1460 -msgid "[Remove any tag]" -msgstr "[Alle labels verwijderen]" - -#: ../../mod/photos.php:1500 -msgid "Rotate CW (right)" -msgstr "Roteren met de klok mee (rechts)" - -#: ../../mod/photos.php:1501 -msgid "Rotate CCW (left)" -msgstr "Roteren tegen de klok in (links)" - -#: ../../mod/photos.php:1503 -msgid "New album name" -msgstr "Nieuwe albumnaam" - -#: ../../mod/photos.php:1506 -msgid "Caption" -msgstr "Onderschrift" - -#: ../../mod/photos.php:1508 -msgid "Add a Tag" -msgstr "Een label toevoegen" - -#: ../../mod/photos.php:1512 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl, #Ardennen, #camping " - -#: ../../mod/photos.php:1521 -msgid "Private photo" -msgstr "Privé foto" - -#: ../../mod/photos.php:1522 -msgid "Public photo" -msgstr "Publieke foto" - -#: ../../mod/photos.php:1544 ../../include/conversation.php:1090 -msgid "Share" -msgstr "Delen" - -#: ../../mod/photos.php:1817 -msgid "Recent Photos" -msgstr "Recente foto's" - -#: ../../mod/regmod.php:55 -msgid "Account approved." -msgstr "Account goedgekeurd." - -#: ../../mod/regmod.php:92 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registratie ingetrokken voor %s" - -#: ../../mod/regmod.php:104 -msgid "Please login." -msgstr "Inloggen." - -#: ../../mod/uimport.php:66 -msgid "Move account" -msgstr "Account verplaatsen" - -#: ../../mod/uimport.php:67 -msgid "You can import an account from another Friendica server." -msgstr "Je kunt een account van een andere Friendica server importeren." - -#: ../../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 "Je moet je account bij de oude server exporteren, en hier uploaden. We zullen je oude account hier opnieuw aanmaken, met al je contacten. We zullen ook proberen om je vrienden in te lichten dat je naar hier verhuisd bent." - -#: ../../mod/uimport.php:69 -msgid "" -"This feature is experimental. We can't import contacts from the OStatus " -"network (statusnet/identi.ca) or from Diaspora" -msgstr "Deze functie is experimenteel. We kunnen geen contacten van het OStatus netwerk (statusnet/identi.ca) of van Diaspora importeren." - -#: ../../mod/uimport.php:70 -msgid "Account file" -msgstr "Account bestand" - -#: ../../mod/uimport.php:70 -msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" -msgstr "" - -#: ../../mod/attach.php:8 -msgid "Item not available." -msgstr "Item niet beschikbaar" - -#: ../../mod/attach.php:20 -msgid "Item was not found." -msgstr "Item niet gevonden" - -#: ../../boot.php:749 -msgid "Delete this item?" -msgstr "Dit item verwijderen?" - -#: ../../boot.php:752 -msgid "show fewer" -msgstr "Minder tonen" - -#: ../../boot.php:1122 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "Wijziging %s mislukt. Lees de error logbestanden." - -#: ../../boot.php:1240 -msgid "Create a New Account" -msgstr "Nieuw account aanmaken" - -#: ../../boot.php:1265 ../../include/nav.php:73 -msgid "Logout" -msgstr "Uitloggen" - -#: ../../boot.php:1268 -msgid "Nickname or Email address: " -msgstr "Bijnaam of e-mailadres:" - -#: ../../boot.php:1269 -msgid "Password: " -msgstr "Wachtwoord:" - -#: ../../boot.php:1270 -msgid "Remember me" -msgstr "Onthou me" - -#: ../../boot.php:1273 -msgid "Or login using OpenID: " -msgstr "Of log in met OpenID:" - -#: ../../boot.php:1279 -msgid "Forgot your password?" -msgstr "Wachtwoord vergeten?" - -#: ../../boot.php:1282 -msgid "Website Terms of Service" -msgstr "Gebruikersvoorwaarden website" - -#: ../../boot.php:1283 -msgid "terms of service" -msgstr "servicevoorwaarden" - -#: ../../boot.php:1285 -msgid "Website Privacy Policy" -msgstr "Privacybeleid website" - -#: ../../boot.php:1286 -msgid "privacy policy" -msgstr "privacybeleid" - -#: ../../boot.php:1419 -msgid "Requested account is not available." -msgstr "Gevraagde account is niet beschikbaar." - -#: ../../boot.php:1501 ../../boot.php:1635 -#: ../../include/profile_advanced.php:84 -msgid "Edit profile" -msgstr "Bewerk profiel" - -#: ../../boot.php:1600 -msgid "Message" -msgstr "Bericht" - -#: ../../boot.php:1606 ../../include/nav.php:175 -msgid "Profiles" -msgstr "Profielen" - -#: ../../boot.php:1606 -msgid "Manage/edit profiles" -msgstr "Beheer/wijzig profielen" - -#: ../../boot.php:1706 -msgid "Network:" -msgstr "" - -#: ../../boot.php:1736 ../../boot.php:1822 -msgid "g A l F d" -msgstr "G l j F" - -#: ../../boot.php:1737 ../../boot.php:1823 -msgid "F d" -msgstr "d F" - -#: ../../boot.php:1782 ../../boot.php:1863 -msgid "[today]" -msgstr "[vandaag]" - -#: ../../boot.php:1794 -msgid "Birthday Reminders" -msgstr "Verjaardagsherinneringen" - -#: ../../boot.php:1795 -msgid "Birthdays this week:" -msgstr "Verjaardagen deze week:" - -#: ../../boot.php:1856 -msgid "[No description]" -msgstr "[Geen beschrijving]" - -#: ../../boot.php:1874 -msgid "Event Reminders" -msgstr "Gebeurtenisherinneringen" - -#: ../../boot.php:1875 -msgid "Events this week:" -msgstr "Gebeurtenissen deze week:" - -#: ../../boot.php:2112 ../../include/nav.php:76 -msgid "Status" -msgstr "Tijdlijn" - -#: ../../boot.php:2115 -msgid "Status Messages and Posts" -msgstr "Berichten op jouw tijdlijn" - -#: ../../boot.php:2122 -msgid "Profile Details" -msgstr "Profieldetails" - -#: ../../boot.php:2133 ../../boot.php:2136 ../../include/nav.php:79 -msgid "Videos" -msgstr "Video's" - -#: ../../boot.php:2146 -msgid "Events and Calendar" -msgstr "Gebeurtenissen en kalender" - -#: ../../boot.php:2153 -msgid "Only You Can See This" -msgstr "Alleen jij kunt dit zien" - -#: ../../object/Item.php:94 -msgid "This entry was edited" -msgstr "" - -#: ../../object/Item.php:208 -msgid "ignore thread" -msgstr "" - -#: ../../object/Item.php:209 -msgid "unignore thread" -msgstr "" - -#: ../../object/Item.php:210 -msgid "toggle ignore status" -msgstr "" - -#: ../../object/Item.php:213 -msgid "ignored" -msgstr "" - -#: ../../object/Item.php:316 ../../include/conversation.php:666 -msgid "Categories:" -msgstr "Categorieën:" - -#: ../../object/Item.php:317 ../../include/conversation.php:667 -msgid "Filed under:" -msgstr "Bewaard onder:" - -#: ../../object/Item.php:329 -msgid "via" -msgstr "via" - -#: ../../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:162 -msgid "Errors encountered creating database tables." -msgstr "Tijdens het aanmaken van databasetabellen zijn fouten vastgesteld." - -#: ../../include/dbstructure.php:220 -msgid "Errors encountered performing database changes." -msgstr "" - -#: ../../include/auth.php:38 -msgid "Logged out." -msgstr "Uitgelogd." - -#: ../../include/auth.php:128 ../../include/user.php:67 -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:128 ../../include/user.php:67 -msgid "The error message was:" -msgstr "De foutboodschap was:" - -#: ../../include/contact_widgets.php:6 -msgid "Add New Contact" -msgstr "Nieuw Contact toevoegen" - -#: ../../include/contact_widgets.php:7 -msgid "Enter address or web location" -msgstr "Voeg een webadres of -locatie in:" - -#: ../../include/contact_widgets.php:8 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Voorbeeld: jan@voorbeeld.be, http://voorbeeld.nl/barbara" - -#: ../../include/contact_widgets.php:24 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d uitnodiging beschikbaar" -msgstr[1] "%d uitnodigingen beschikbaar" - -#: ../../include/contact_widgets.php:30 -msgid "Find People" -msgstr "Zoek mensen" - -#: ../../include/contact_widgets.php:31 -msgid "Enter name or interest" -msgstr "Vul naam of interesse in" - -#: ../../include/contact_widgets.php:32 -msgid "Connect/Follow" -msgstr "Verbind/Volg" - -#: ../../include/contact_widgets.php:33 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Voorbeelden: Jan Peeters, Vissen" - -#: ../../include/contact_widgets.php:36 ../../view/theme/diabook/theme.php:526 -msgid "Similar Interests" -msgstr "Dezelfde interesses" - -#: ../../include/contact_widgets.php:37 -msgid "Random Profile" -msgstr "Willekeurig Profiel" - -#: ../../include/contact_widgets.php:38 ../../view/theme/diabook/theme.php:528 -msgid "Invite Friends" -msgstr "Vrienden uitnodigen" - -#: ../../include/contact_widgets.php:71 -msgid "Networks" -msgstr "Netwerken" - -#: ../../include/contact_widgets.php:74 -msgid "All Networks" -msgstr "Alle netwerken" - -#: ../../include/contact_widgets.php:104 ../../include/features.php:60 -msgid "Saved Folders" -msgstr "Bewaarde Mappen" - -#: ../../include/contact_widgets.php:107 ../../include/contact_widgets.php:139 -msgid "Everything" -msgstr "Alles" - -#: ../../include/contact_widgets.php:136 -msgid "Categories" -msgstr "Categorieën" - -#: ../../include/features.php:23 -msgid "General Features" -msgstr "Algemene functies" - -#: ../../include/features.php:25 -msgid "Multiple Profiles" -msgstr "Meerdere profielen" - -#: ../../include/features.php:25 -msgid "Ability to create multiple profiles" -msgstr "Mogelijkheid om meerdere profielen aan te maken" - -#: ../../include/features.php:30 -msgid "Post Composition Features" -msgstr "Functies voor het opstellen van berichten" - -#: ../../include/features.php:31 -msgid "Richtext Editor" -msgstr "RTF-tekstverwerker" - -#: ../../include/features.php:31 -msgid "Enable richtext editor" -msgstr "Gebruik een tekstverwerker met eenvoudige opmaakfuncties" - -#: ../../include/features.php:32 -msgid "Post Preview" -msgstr "Voorvertoning bericht" - -#: ../../include/features.php:32 -msgid "Allow previewing posts and comments before publishing them" -msgstr "" - -#: ../../include/features.php:33 -msgid "Auto-mention Forums" -msgstr "" - -#: ../../include/features.php:33 -msgid "" -"Add/remove mention when a fourm page is selected/deselected in ACL window." -msgstr "" - -#: ../../include/features.php:38 -msgid "Network Sidebar Widgets" -msgstr "Zijbalkwidgets op netwerkpagina" - -#: ../../include/features.php:39 -msgid "Search by Date" -msgstr "Zoeken op datum" - -#: ../../include/features.php:39 -msgid "Ability to select posts by date ranges" -msgstr "Mogelijkheid om berichten te selecteren volgens datumbereik" - -#: ../../include/features.php:40 -msgid "Group Filter" -msgstr "Groepsfilter" - -#: ../../include/features.php:40 -msgid "Enable widget to display Network posts only from selected group" -msgstr "Sta de widget toe om netwerkberichten te tonen van bepaalde groepen" - -#: ../../include/features.php:41 -msgid "Network Filter" -msgstr "Netwerkfilter" - -#: ../../include/features.php:41 -msgid "Enable widget to display Network posts only from selected network" -msgstr "Sta de widget toe om netwerkberichten te tonen van bepaalde netwerken" - -#: ../../include/features.php:42 -msgid "Save search terms for re-use" -msgstr "Sla zoekopdrachten op voor hergebruik" - -#: ../../include/features.php:47 -msgid "Network Tabs" -msgstr "Netwerktabs" - -#: ../../include/features.php:48 -msgid "Network Personal Tab" -msgstr "Persoonlijke netwerktab" - -#: ../../include/features.php:48 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had" - -#: ../../include/features.php:49 -msgid "Network New Tab" -msgstr "Nieuwe netwerktab" - -#: ../../include/features.php:49 -msgid "Enable tab to display only new Network posts (from the last 12 hours)" -msgstr "Laat de tab alleen nieuwe netwerkberichten tonen (van de laatste 12 uur)" - -#: ../../include/features.php:50 -msgid "Network Shared Links Tab" -msgstr "" - -#: ../../include/features.php:50 -msgid "Enable tab to display only Network posts with links in them" -msgstr "" - -#: ../../include/features.php:55 -msgid "Post/Comment Tools" -msgstr "Bericht-/reactiehulpmiddelen" - -#: ../../include/features.php:56 -msgid "Multiple Deletion" -msgstr "Meervoudige verwijdering" - -#: ../../include/features.php:56 -msgid "Select and delete multiple posts/comments at once" -msgstr "Selecteer en verwijder meerdere berichten/reacties in een keer" - -#: ../../include/features.php:57 -msgid "Edit Sent Posts" -msgstr "Bewerk verzonden berichten" - -#: ../../include/features.php:57 -msgid "Edit and correct posts and comments after sending" -msgstr "Bewerk en corrigeer berichten en reacties na verzending" - -#: ../../include/features.php:58 -msgid "Tagging" -msgstr "Labelen" - -#: ../../include/features.php:58 -msgid "Ability to tag existing posts" -msgstr "Mogelijkheid om bestaande berichten te labelen" - -#: ../../include/features.php:59 -msgid "Post Categories" -msgstr "Categorieën berichten" - -#: ../../include/features.php:59 -msgid "Add categories to your posts" -msgstr "Voeg categorieën toe aan je berichten" - -#: ../../include/features.php:60 -msgid "Ability to file posts under folders" -msgstr "Mogelijkheid om berichten in mappen te bewaren" - -#: ../../include/features.php:61 -msgid "Dislike Posts" -msgstr "Vind berichten niet leuk" - -#: ../../include/features.php:61 -msgid "Ability to dislike posts/comments" -msgstr "Mogelijkheid om berichten of reacties niet leuk te vinden" - -#: ../../include/features.php:62 -msgid "Star Posts" -msgstr "Geef berichten een ster" - -#: ../../include/features.php:62 -msgid "Ability to mark special posts with a star indicator" -msgstr "" - -#: ../../include/features.php:63 -msgid "Mute Post Notifications" -msgstr "" - -#: ../../include/features.php:63 -msgid "Ability to mute notifications for a thread" -msgstr "" - -#: ../../include/follow.php:32 -msgid "Connect URL missing." -msgstr "" - -#: ../../include/follow.php:59 -msgid "" -"This site is not configured to allow communications with other networks." -msgstr "Deze website is niet geconfigureerd voor communicatie met andere netwerken." - -#: ../../include/follow.php:60 ../../include/follow.php:80 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "Er werden geen compatibele communicatieprotocols of feeds ontdekt." - -#: ../../include/follow.php:78 -msgid "The profile address specified does not provide adequate information." -msgstr "" - -#: ../../include/follow.php:82 -msgid "An author or name was not found." -msgstr "" - -#: ../../include/follow.php:84 -msgid "No browser URL could be matched to this address." -msgstr "" - -#: ../../include/follow.php:86 -msgid "" -"Unable to match @-style Identity Address with a known protocol or email " -"contact." -msgstr "Het @-stijl-identiteitsadres komt niet overeen met een nekend protocol of e-mailcontact." - -#: ../../include/follow.php:87 -msgid "Use mailto: in front of address to force email check." -msgstr "Gebruik mailto: voor het adres om een e-mailcontrole af te dwingen." - -#: ../../include/follow.php:93 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "" - -#: ../../include/follow.php:103 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "" - -#: ../../include/follow.php:205 -msgid "Unable to retrieve contact information." -msgstr "" - -#: ../../include/follow.php:258 -msgid "following" -msgstr "volgend" - -#: ../../include/group.php:25 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "Een verwijderde groep met deze naam is weer tot leven gewekt. Bestaande itemrechten kunnen voor deze groep en toekomstige leden gelden. Wanneer je niet zo had bedoeld kan je een andere groep met een andere naam creëren. " - -#: ../../include/group.php:207 -msgid "Default privacy group for new contacts" -msgstr "" - -#: ../../include/group.php:226 -msgid "Everybody" -msgstr "Iedereen" - -#: ../../include/group.php:249 -msgid "edit" -msgstr "verander" - -#: ../../include/group.php:271 -msgid "Edit group" -msgstr "Verander groep" - -#: ../../include/group.php:272 -msgid "Create a new group" -msgstr "Maak nieuwe groep" - -#: ../../include/group.php:273 -msgid "Contacts not in any group" -msgstr "" - -#: ../../include/datetime.php:43 ../../include/datetime.php:45 -msgid "Miscellaneous" -msgstr "Diversen" - -#: ../../include/datetime.php:153 ../../include/datetime.php:290 -msgid "year" -msgstr "jaar" - -#: ../../include/datetime.php:158 ../../include/datetime.php:291 -msgid "month" -msgstr "maand" - -#: ../../include/datetime.php:163 ../../include/datetime.php:293 -msgid "day" -msgstr "dag" - -#: ../../include/datetime.php:276 -msgid "never" -msgstr "nooit" - -#: ../../include/datetime.php:282 -msgid "less than a second ago" -msgstr "minder dan een seconde geleden" - -#: ../../include/datetime.php:290 -msgid "years" -msgstr "jaren" - -#: ../../include/datetime.php:291 -msgid "months" -msgstr "maanden" - -#: ../../include/datetime.php:292 -msgid "week" -msgstr "week" - -#: ../../include/datetime.php:292 -msgid "weeks" -msgstr "weken" - -#: ../../include/datetime.php:293 -msgid "days" -msgstr "dagen" - -#: ../../include/datetime.php:294 -msgid "hour" -msgstr "uur" - -#: ../../include/datetime.php:294 -msgid "hours" -msgstr "uren" - -#: ../../include/datetime.php:295 -msgid "minute" -msgstr "minuut" - -#: ../../include/datetime.php:295 -msgid "minutes" -msgstr "minuten" - -#: ../../include/datetime.php:296 -msgid "second" -msgstr "seconde" - -#: ../../include/datetime.php:296 -msgid "seconds" -msgstr "secondes" - -#: ../../include/datetime.php:305 -#, php-format -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s geleden" - -#: ../../include/datetime.php:477 ../../include/items.php:2211 -#, php-format -msgid "%s's birthday" -msgstr "%s's verjaardag" - -#: ../../include/datetime.php:478 ../../include/items.php:2212 -#, php-format -msgid "Happy Birthday %s" -msgstr "Gefeliciteerd %s" - -#: ../../include/acl_selectors.php:333 -msgid "Visible to everybody" -msgstr "Zichtbaar voor iedereen" - -#: ../../include/acl_selectors.php:334 ../../view/theme/diabook/config.php:142 -#: ../../view/theme/diabook/theme.php:621 -msgid "show" -msgstr "tonen" - -#: ../../include/acl_selectors.php:335 ../../view/theme/diabook/config.php:142 -#: ../../view/theme/diabook/theme.php:621 -msgid "don't show" -msgstr "Niet tonen" - -#: ../../include/message.php:15 ../../include/message.php:172 -msgid "[no subject]" -msgstr "[geen onderwerp]" - -#: ../../include/Contact.php:115 -msgid "stopped following" -msgstr "" - -#: ../../include/Contact.php:228 ../../include/conversation.php:882 -msgid "Poke" -msgstr "Aanstoten" - -#: ../../include/Contact.php:229 ../../include/conversation.php:876 -msgid "View Status" -msgstr "Bekijk status" - -#: ../../include/Contact.php:230 ../../include/conversation.php:877 -msgid "View Profile" -msgstr "Bekijk profiel" - -#: ../../include/Contact.php:231 ../../include/conversation.php:878 -msgid "View Photos" -msgstr "Bekijk foto's" - -#: ../../include/Contact.php:232 ../../include/Contact.php:255 -#: ../../include/conversation.php:879 -msgid "Network Posts" -msgstr "Netwerkberichten" - -#: ../../include/Contact.php:233 ../../include/Contact.php:255 -#: ../../include/conversation.php:880 -msgid "Edit Contact" -msgstr "Bewerk contact" - -#: ../../include/Contact.php:234 -msgid "Drop Contact" -msgstr "Verwijder contact" - -#: ../../include/Contact.php:235 ../../include/Contact.php:255 -#: ../../include/conversation.php:881 -msgid "Send PM" -msgstr "Stuur een privébericht" - -#: ../../include/security.php:22 -msgid "Welcome " -msgstr "Welkom" - -#: ../../include/security.php:23 -msgid "Please upload a profile photo." -msgstr "Upload een profielfoto." - -#: ../../include/security.php:26 -msgid "Welcome back " -msgstr "Welkom terug " - -#: ../../include/security.php:366 -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/conversation.php:118 ../../include/conversation.php:246 -#: ../../include/text.php:1966 ../../view/theme/diabook/theme.php:463 -msgid "event" -msgstr "gebeurtenis" - -#: ../../include/conversation.php:207 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s stootte %2$s aan" - -#: ../../include/conversation.php:211 ../../include/text.php:1005 -msgid "poked" -msgstr "aangestoten" - -#: ../../include/conversation.php:291 -msgid "post/item" -msgstr "bericht/item" - -#: ../../include/conversation.php:292 -#, php-format -msgid "%1$s marked %2$s's %3$s as favorite" -msgstr "%1$s markeerde %2$s's %3$s als favoriet" - -#: ../../include/conversation.php:772 -msgid "remove" -msgstr "verwijder" - -#: ../../include/conversation.php:776 -msgid "Delete Selected Items" -msgstr "Geselecteerde items verwijderen" - -#: ../../include/conversation.php:875 -msgid "Follow Thread" -msgstr "Conversatie volgen" - -#: ../../include/conversation.php:944 -#, php-format -msgid "%s likes this." -msgstr "%s vindt dit leuk." - -#: ../../include/conversation.php:944 -#, php-format -msgid "%s doesn't like this." -msgstr "%s vindt dit niet leuk." - -#: ../../include/conversation.php:949 -#, php-format -msgid "%2$d people like this" -msgstr "%2$d mensen vinden dit leuk" - -#: ../../include/conversation.php:952 -#, php-format -msgid "%2$d people don't like this" -msgstr "%2$d people vinden dit niet leuk" - -#: ../../include/conversation.php:966 -msgid "and" -msgstr "en" - -#: ../../include/conversation.php:972 -#, php-format -msgid ", and %d other people" -msgstr ", en %d andere mensen" - -#: ../../include/conversation.php:974 -#, php-format -msgid "%s like this." -msgstr "%s vindt dit leuk." - -#: ../../include/conversation.php:974 -#, php-format -msgid "%s don't like this." -msgstr "%s vindt dit niet leuk." - -#: ../../include/conversation.php:1001 ../../include/conversation.php:1019 -msgid "Visible to everybody" -msgstr "Zichtbaar voor iedereen" - -#: ../../include/conversation.php:1003 ../../include/conversation.php:1021 -msgid "Please enter a video link/URL:" -msgstr "Vul een videolink/URL in:" - -#: ../../include/conversation.php:1004 ../../include/conversation.php:1022 -msgid "Please enter an audio link/URL:" -msgstr "Vul een audiolink/URL in:" - -#: ../../include/conversation.php:1005 ../../include/conversation.php:1023 -msgid "Tag term:" -msgstr "Label:" - -#: ../../include/conversation.php:1007 ../../include/conversation.php:1025 -msgid "Where are you right now?" -msgstr "Waar ben je nu?" - -#: ../../include/conversation.php:1008 -msgid "Delete item(s)?" -msgstr "Item(s) verwijderen?" - -#: ../../include/conversation.php:1051 -msgid "Post to Email" -msgstr "Verzenden per e-mail" - -#: ../../include/conversation.php:1056 -#, php-format -msgid "Connectors disabled, since \"%s\" is enabled." -msgstr "" - -#: ../../include/conversation.php:1111 -msgid "permissions" -msgstr "rechten" - -#: ../../include/conversation.php:1135 -msgid "Post to Groups" -msgstr "Verzenden naar Groepen" - -#: ../../include/conversation.php:1136 -msgid "Post to Contacts" -msgstr "Verzenden naar Contacten" - -#: ../../include/conversation.php:1137 -msgid "Private post" -msgstr "Privé verzending" - -#: ../../include/network.php:895 -msgid "view full size" -msgstr "Volledig formaat" - -#: ../../include/text.php:297 -msgid "newer" -msgstr "nieuwere berichten" - -#: ../../include/text.php:299 -msgid "older" -msgstr "oudere berichten" - -#: ../../include/text.php:304 -msgid "prev" -msgstr "vorige" - -#: ../../include/text.php:306 -msgid "first" -msgstr "eerste" - -#: ../../include/text.php:338 -msgid "last" -msgstr "laatste" - -#: ../../include/text.php:341 -msgid "next" -msgstr "volgende" - -#: ../../include/text.php:855 -msgid "No contacts" -msgstr "Geen contacten" - -#: ../../include/text.php:864 -#, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" -msgstr[0] "%d contact" -msgstr[1] "%d contacten" - -#: ../../include/text.php:1005 -msgid "poke" -msgstr "aanstoten" - -#: ../../include/text.php:1006 -msgid "ping" -msgstr "ping" - -#: ../../include/text.php:1006 -msgid "pinged" -msgstr "gepingd" - -#: ../../include/text.php:1007 -msgid "prod" -msgstr "porren" - -#: ../../include/text.php:1007 -msgid "prodded" -msgstr "gepord" - -#: ../../include/text.php:1008 -msgid "slap" -msgstr "slaan" - -#: ../../include/text.php:1008 -msgid "slapped" -msgstr "geslagen" - -#: ../../include/text.php:1009 -msgid "finger" -msgstr "finger" - -#: ../../include/text.php:1009 -msgid "fingered" -msgstr "gerfingerd" - -#: ../../include/text.php:1010 -msgid "rebuff" -msgstr "afpoeieren" - -#: ../../include/text.php:1010 -msgid "rebuffed" -msgstr "afgepoeierd" - -#: ../../include/text.php:1024 -msgid "happy" -msgstr "Blij" - -#: ../../include/text.php:1025 -msgid "sad" -msgstr "Verdrietig" - -#: ../../include/text.php:1026 -msgid "mellow" -msgstr "mellow" - -#: ../../include/text.php:1027 -msgid "tired" -msgstr "vermoeid" - -#: ../../include/text.php:1028 -msgid "perky" -msgstr "parmantig" - -#: ../../include/text.php:1029 -msgid "angry" -msgstr "boos" - -#: ../../include/text.php:1030 -msgid "stupified" -msgstr "verbijsterd" - -#: ../../include/text.php:1031 -msgid "puzzled" -msgstr "onzeker" - -#: ../../include/text.php:1032 -msgid "interested" -msgstr "Geïnteresseerd" - -#: ../../include/text.php:1033 -msgid "bitter" -msgstr "bitter" - -#: ../../include/text.php:1034 -msgid "cheerful" -msgstr "vrolijk" - -#: ../../include/text.php:1035 -msgid "alive" -msgstr "levend" - -#: ../../include/text.php:1036 -msgid "annoyed" -msgstr "verveeld" - -#: ../../include/text.php:1037 -msgid "anxious" -msgstr "bezorgd" - -#: ../../include/text.php:1038 -msgid "cranky" -msgstr "humeurig " - -#: ../../include/text.php:1039 -msgid "disturbed" -msgstr "verontrust" - -#: ../../include/text.php:1040 -msgid "frustrated" -msgstr "gefrustreerd" - -#: ../../include/text.php:1041 -msgid "motivated" -msgstr "gemotiveerd" - -#: ../../include/text.php:1042 -msgid "relaxed" -msgstr "ontspannen" - -#: ../../include/text.php:1043 -msgid "surprised" -msgstr "verbaasd" - -#: ../../include/text.php:1213 -msgid "Monday" -msgstr "Maandag" - -#: ../../include/text.php:1213 -msgid "Tuesday" -msgstr "Dinsdag" - -#: ../../include/text.php:1213 -msgid "Wednesday" -msgstr "Woensdag" - -#: ../../include/text.php:1213 -msgid "Thursday" -msgstr "Donderdag" - -#: ../../include/text.php:1213 -msgid "Friday" -msgstr "Vrijdag" - -#: ../../include/text.php:1213 -msgid "Saturday" -msgstr "Zaterdag" - -#: ../../include/text.php:1213 -msgid "Sunday" -msgstr "Zondag" - -#: ../../include/text.php:1217 -msgid "January" -msgstr "Januari" - -#: ../../include/text.php:1217 -msgid "February" -msgstr "Februari" - -#: ../../include/text.php:1217 -msgid "March" -msgstr "Maart" - -#: ../../include/text.php:1217 -msgid "April" -msgstr "April" - -#: ../../include/text.php:1217 -msgid "May" -msgstr "Mei" - -#: ../../include/text.php:1217 -msgid "June" -msgstr "Juni" - -#: ../../include/text.php:1217 -msgid "July" -msgstr "Juli" - -#: ../../include/text.php:1217 -msgid "August" -msgstr "Augustus" - -#: ../../include/text.php:1217 -msgid "September" -msgstr "September" - -#: ../../include/text.php:1217 -msgid "October" -msgstr "Oktober" - -#: ../../include/text.php:1217 -msgid "November" -msgstr "November" - -#: ../../include/text.php:1217 -msgid "December" -msgstr "December" - -#: ../../include/text.php:1437 -msgid "bytes" -msgstr "bytes" - -#: ../../include/text.php:1461 ../../include/text.php:1473 -msgid "Click to open/close" -msgstr "klik om te openen/sluiten" - -#: ../../include/text.php:1702 ../../include/user.php:247 -#: ../../view/theme/duepuntozero/config.php:44 -msgid "default" -msgstr "standaard" - -#: ../../include/text.php:1714 -msgid "Select an alternate language" -msgstr "Kies een andere taal" - -#: ../../include/text.php:1970 -msgid "activity" -msgstr "activiteit" - -#: ../../include/text.php:1973 -msgid "post" -msgstr "bericht" - -#: ../../include/text.php:2141 -msgid "Item filed" -msgstr "Item bewaard" - -#: ../../include/bbcode.php:428 ../../include/bbcode.php:1047 -#: ../../include/bbcode.php:1048 -msgid "Image/photo" -msgstr "Afbeelding/foto" - -#: ../../include/bbcode.php:528 -#, php-format -msgid "%2$s %3$s" -msgstr "" - -#: ../../include/bbcode.php:562 -#, php-format -msgid "" -"%s wrote the following post" -msgstr "" - -#: ../../include/bbcode.php:1011 ../../include/bbcode.php:1031 -msgid "$1 wrote:" -msgstr "$1 schreef:" - -#: ../../include/bbcode.php:1056 ../../include/bbcode.php:1057 -msgid "Encrypted content" -msgstr "Versleutelde inhoud" - -#: ../../include/notifier.php:786 ../../include/delivery.php:456 -msgid "(no subject)" -msgstr "(geen onderwerp)" - -#: ../../include/notifier.php:796 ../../include/delivery.php:467 -#: ../../include/enotify.php:33 -msgid "noreply" -msgstr "geen reactie" - -#: ../../include/dba_pdo.php:72 ../../include/dba.php:56 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "" - -#: ../../include/contact_selectors.php:32 -msgid "Unknown | Not categorised" -msgstr "Onbekend | Niet " - -#: ../../include/contact_selectors.php:33 -msgid "Block immediately" -msgstr "Onmiddellijk blokkeren" - -#: ../../include/contact_selectors.php:34 -msgid "Shady, spammer, self-marketer" -msgstr "Onbetrouwbaar, spammer, zelfpromotor" - -#: ../../include/contact_selectors.php:35 -msgid "Known to me, but no opinion" -msgstr "Bekend, maar geen mening" - -#: ../../include/contact_selectors.php:36 -msgid "OK, probably harmless" -msgstr "OK, waarschijnlijk onschadelijk" - -#: ../../include/contact_selectors.php:37 -msgid "Reputable, has my trust" -msgstr "Gerenommeerd, heeft mijn vertrouwen" - -#: ../../include/contact_selectors.php:60 -msgid "Weekly" -msgstr "wekelijks" - -#: ../../include/contact_selectors.php:61 -msgid "Monthly" -msgstr "maandelijks" - -#: ../../include/contact_selectors.php:77 -msgid "OStatus" -msgstr "OStatus" - -#: ../../include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: ../../include/contact_selectors.php:82 -msgid "Zot!" -msgstr "Zot!" - -#: ../../include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "Linkedln" - -#: ../../include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: ../../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-connector" - -#: ../../include/contact_selectors.php:91 -msgid "Statusnet" -msgstr "Statusnet" - -#: ../../include/contact_selectors.php:92 -msgid "App.net" -msgstr "" - -#: ../../include/Scrape.php:614 -msgid " on Last.fm" -msgstr " op Last.fm" - -#: ../../include/bb2diaspora.php:154 ../../include/event.php:20 -msgid "Starts:" -msgstr "Begint:" - -#: ../../include/bb2diaspora.php:162 ../../include/event.php:30 -msgid "Finishes:" -msgstr "Eindigt:" - -#: ../../include/profile_advanced.php:22 -msgid "j F, Y" -msgstr "F j Y" - -#: ../../include/profile_advanced.php:23 -msgid "j F" -msgstr "F j" - -#: ../../include/profile_advanced.php:30 -msgid "Birthday:" -msgstr "Verjaardag:" - -#: ../../include/profile_advanced.php:34 -msgid "Age:" -msgstr "Leeftijd:" - -#: ../../include/profile_advanced.php:43 -#, php-format -msgid "for %1$d %2$s" -msgstr "voor %1$d %2$s" - -#: ../../include/profile_advanced.php:52 -msgid "Tags:" -msgstr "Labels:" - -#: ../../include/profile_advanced.php:56 -msgid "Religion:" -msgstr "Religie:" - -#: ../../include/profile_advanced.php:60 -msgid "Hobbies/Interests:" -msgstr "Hobby:" - -#: ../../include/profile_advanced.php:67 -msgid "Contact information and Social Networks:" -msgstr "Contactinformatie en sociale netwerken:" - -#: ../../include/profile_advanced.php:69 -msgid "Musical interests:" -msgstr "Muzikale interesse " - -#: ../../include/profile_advanced.php:71 -msgid "Books, literature:" -msgstr "Boeken, literatuur:" - -#: ../../include/profile_advanced.php:73 -msgid "Television:" -msgstr "Televisie" - -#: ../../include/profile_advanced.php:75 -msgid "Film/dance/culture/entertainment:" -msgstr "Film/dans/cultuur/ontspanning:" - -#: ../../include/profile_advanced.php:77 -msgid "Love/Romance:" -msgstr "Liefde/romance:" - -#: ../../include/profile_advanced.php:79 -msgid "Work/employment:" -msgstr "Werk/beroep:" - -#: ../../include/profile_advanced.php:81 -msgid "School/education:" -msgstr "School/opleiding:" - -#: ../../include/plugin.php:455 ../../include/plugin.php:457 -msgid "Click here to upgrade." -msgstr "" - -#: ../../include/plugin.php:463 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "" - -#: ../../include/plugin.php:468 -msgid "This action is not available under your subscription plan." -msgstr "" - -#: ../../include/nav.php:73 -msgid "End this session" -msgstr "Deze sessie beëindigen" - -#: ../../include/nav.php:76 ../../include/nav.php:148 -#: ../../view/theme/diabook/theme.php:123 -msgid "Your posts and conversations" -msgstr "Jouw berichten en conversaties" - -#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:124 -msgid "Your profile page" -msgstr "Jouw profiel pagina" - -#: ../../include/nav.php:78 ../../view/theme/diabook/theme.php:126 -msgid "Your photos" -msgstr "Jouw foto's" - -#: ../../include/nav.php:79 -msgid "Your videos" -msgstr "" - -#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:127 -msgid "Your events" -msgstr "Jouw gebeurtenissen" - -#: ../../include/nav.php:81 ../../view/theme/diabook/theme.php:128 -msgid "Personal notes" -msgstr "Persoonlijke nota's" - -#: ../../include/nav.php:81 -msgid "Your personal notes" -msgstr "" - -#: ../../include/nav.php:92 -msgid "Sign in" -msgstr "Inloggen" - -#: ../../include/nav.php:105 -msgid "Home Page" -msgstr "Jouw tijdlijn" - -#: ../../include/nav.php:109 -msgid "Create an account" -msgstr "Maak een accoount" - -#: ../../include/nav.php:114 -msgid "Help and documentation" -msgstr "Hulp en documentatie" - -#: ../../include/nav.php:117 -msgid "Apps" -msgstr "Apps" - -#: ../../include/nav.php:117 -msgid "Addon applications, utilities, games" -msgstr "Extra toepassingen, hulpmiddelen of spelletjes" - -#: ../../include/nav.php:119 -msgid "Search site content" -msgstr "Doorzoek de inhoud van de website" - -#: ../../include/nav.php:129 -msgid "Conversations on this site" -msgstr "Conversaties op deze website" - -#: ../../include/nav.php:131 -msgid "Conversations on the network" -msgstr "" - -#: ../../include/nav.php:133 -msgid "Directory" -msgstr "Gids" - -#: ../../include/nav.php:133 -msgid "People directory" -msgstr "Personengids" - -#: ../../include/nav.php:135 -msgid "Information" -msgstr "Informatie" - -#: ../../include/nav.php:135 -msgid "Information about this friendica instance" -msgstr "" - -#: ../../include/nav.php:145 -msgid "Conversations from your friends" -msgstr "Conversaties van je vrienden" - -#: ../../include/nav.php:146 -msgid "Network Reset" -msgstr "Netwerkpagina opnieuw instellen" - -#: ../../include/nav.php:146 -msgid "Load Network page with no filters" -msgstr "Laad de netwerkpagina zonder filters" - -#: ../../include/nav.php:154 -msgid "Friend Requests" -msgstr "Vriendschapsverzoeken" - -#: ../../include/nav.php:156 -msgid "See all notifications" -msgstr "Toon alle notificaties" - -#: ../../include/nav.php:157 -msgid "Mark all system notifications seen" -msgstr "Alle systeemnotificaties als gelezen markeren" - -#: ../../include/nav.php:161 -msgid "Private mail" -msgstr "Privéberichten" - -#: ../../include/nav.php:162 -msgid "Inbox" -msgstr "Inbox" - -#: ../../include/nav.php:163 -msgid "Outbox" -msgstr "Verzonden berichten" - -#: ../../include/nav.php:167 -msgid "Manage" -msgstr "Beheren" - -#: ../../include/nav.php:167 -msgid "Manage other pages" -msgstr "Andere pagina's beheren" - -#: ../../include/nav.php:172 -msgid "Account settings" -msgstr "Account instellingen" - -#: ../../include/nav.php:175 -msgid "Manage/Edit Profiles" -msgstr "Beheer/Wijzig Profielen" - -#: ../../include/nav.php:177 -msgid "Manage/edit friends and contacts" -msgstr "Beheer/Wijzig vrienden en contacten" - -#: ../../include/nav.php:184 -msgid "Site setup and configuration" -msgstr "Website opzetten en configureren" - -#: ../../include/nav.php:188 -msgid "Navigation" -msgstr "Navigatie" - -#: ../../include/nav.php:188 -msgid "Site map" -msgstr "Sitemap" - -#: ../../include/api.php:304 ../../include/api.php:315 -#: ../../include/api.php:416 ../../include/api.php:1063 -#: ../../include/api.php:1065 -msgid "User not found." -msgstr "Gebruiker niet gevonden" - -#: ../../include/api.php:771 -#, php-format -msgid "Daily posting limit of %d posts reached. The post was rejected." -msgstr "" - -#: ../../include/api.php:790 -#, php-format -msgid "Weekly posting limit of %d posts reached. The post was rejected." -msgstr "" - -#: ../../include/api.php:809 -#, php-format -msgid "Monthly posting limit of %d posts reached. The post was rejected." -msgstr "" - -#: ../../include/api.php:1272 -msgid "There is no status with this id." -msgstr "Er is geen status met dit kenmerk" - -#: ../../include/api.php:1342 -msgid "There is no conversation with this id." -msgstr "" - -#: ../../include/api.php:1614 -msgid "Invalid request." -msgstr "" - -#: ../../include/api.php:1625 -msgid "Invalid item." -msgstr "" - -#: ../../include/api.php:1635 -msgid "Invalid action. " -msgstr "" - -#: ../../include/api.php:1643 -msgid "DB error" -msgstr "" - -#: ../../include/user.php:40 -msgid "An invitation is required." -msgstr "Een uitnodiging is vereist." - -#: ../../include/user.php:45 -msgid "Invitation could not be verified." -msgstr "Uitnodiging kon niet geverifieerd worden." - -#: ../../include/user.php:53 -msgid "Invalid OpenID url" -msgstr "Ongeldige OpenID url" - -#: ../../include/user.php:74 -msgid "Please enter the required information." -msgstr "Vul de vereiste informatie in." - -#: ../../include/user.php:88 -msgid "Please use a shorter name." -msgstr "gebruik een kortere naam" - -#: ../../include/user.php:90 -msgid "Name too short." -msgstr "Naam te kort" - -#: ../../include/user.php:105 -msgid "That doesn't appear to be your full (First Last) name." -msgstr "Dat lijkt niet je volledige naam (voor- en achternaam) te zijn." - -#: ../../include/user.php:110 -msgid "Your email domain is not among those allowed on this site." -msgstr "Je e-maildomein is op deze website niet toegestaan." - -#: ../../include/user.php:113 -msgid "Not a valid email address." -msgstr "Geen geldig e-mailadres." - -#: ../../include/user.php:126 -msgid "Cannot use that email." -msgstr "Ik kan die e-mail niet gebruiken." - -#: ../../include/user.php:132 -msgid "" -"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " -"must also begin with a letter." -msgstr "Je \"bijnaam\" kan alleen \"a-z\", \"0-9\", \"-\", en \"_\" bevatten, en moet ook met een letter beginnen." - -#: ../../include/user.php:138 ../../include/user.php:236 -msgid "Nickname is already registered. Please choose another." -msgstr "Bijnaam is al geregistreerd. Kies een andere." - -#: ../../include/user.php:148 -msgid "" -"Nickname was once registered here and may not be re-used. Please choose " -"another." -msgstr "Bijnaam was ooit hier geregistreerd en kan niet herbruikt worden. Kies een andere." - -#: ../../include/user.php:164 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "ERNSTIGE FOUT: aanmaken van beveiligingssleutels mislukt." - -#: ../../include/user.php:222 -msgid "An error occurred during registration. Please try again." -msgstr "" - -#: ../../include/user.php:257 -msgid "An error occurred creating your default profile. Please try again." -msgstr "" - -#: ../../include/user.php:289 ../../include/user.php:293 -#: ../../include/profile_selectors.php:42 -msgid "Friends" -msgstr "Vrienden" - -#: ../../include/user.php:377 -#, php-format -msgid "" -"\n" -"\t\tDear %1$s,\n" -"\t\t\tThank you for registering at %2$s. Your account has been created.\n" -"\t" -msgstr "" - -#: ../../include/user.php:381 -#, php-format -msgid "" -"\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." -msgstr "" - -#: ../../include/diaspora.php:703 -msgid "Sharing notification from Diaspora network" -msgstr "" - -#: ../../include/diaspora.php:2520 -msgid "Attachments:" -msgstr "Bijlagen:" - -#: ../../include/items.php:4555 -msgid "Do you really want to delete this item?" -msgstr "Wil je echt dit item verwijderen?" - -#: ../../include/items.php:4778 -msgid "Archives" -msgstr "Archieven" - -#: ../../include/profile_selectors.php:6 -msgid "Male" -msgstr "Man" - -#: ../../include/profile_selectors.php:6 -msgid "Female" -msgstr "Vrouw" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Male" -msgstr "Momenteel mannelijk" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Female" -msgstr "Momenteel vrouwelijk" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Male" -msgstr "Meestal mannelijk" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Female" -msgstr "Meestal vrouwelijk" - -#: ../../include/profile_selectors.php:6 -msgid "Transgender" -msgstr "Transgender" - -#: ../../include/profile_selectors.php:6 -msgid "Intersex" -msgstr "Interseksueel" - -#: ../../include/profile_selectors.php:6 -msgid "Transsexual" -msgstr "Transseksueel" - -#: ../../include/profile_selectors.php:6 -msgid "Hermaphrodite" -msgstr "Hermafrodiet" - -#: ../../include/profile_selectors.php:6 -msgid "Neuter" -msgstr "Genderneutraal" - -#: ../../include/profile_selectors.php:6 -msgid "Non-specific" -msgstr "Niet-specifiek" - -#: ../../include/profile_selectors.php:6 -msgid "Other" -msgstr "Anders" - -#: ../../include/profile_selectors.php:6 -msgid "Undecided" -msgstr "Onbeslist" - -#: ../../include/profile_selectors.php:23 -msgid "Males" -msgstr "Manen" - -#: ../../include/profile_selectors.php:23 -msgid "Females" -msgstr "Vrouwen" - -#: ../../include/profile_selectors.php:23 -msgid "Gay" -msgstr "Homo" - -#: ../../include/profile_selectors.php:23 -msgid "Lesbian" -msgstr "Lesbie" - -#: ../../include/profile_selectors.php:23 -msgid "No Preference" -msgstr "Geen voorkeur" - -#: ../../include/profile_selectors.php:23 -msgid "Bisexual" -msgstr "Biseksueel" - -#: ../../include/profile_selectors.php:23 -msgid "Autosexual" -msgstr "Autoseksueel" - -#: ../../include/profile_selectors.php:23 -msgid "Abstinent" -msgstr "Onthouder" - -#: ../../include/profile_selectors.php:23 -msgid "Virgin" -msgstr "Maagd" - -#: ../../include/profile_selectors.php:23 -msgid "Deviant" -msgstr "Afwijkend" - -#: ../../include/profile_selectors.php:23 -msgid "Fetish" -msgstr "Fetisj" - -#: ../../include/profile_selectors.php:23 -msgid "Oodles" -msgstr "Veel" - -#: ../../include/profile_selectors.php:23 -msgid "Nonsexual" -msgstr "Niet seksueel" - -#: ../../include/profile_selectors.php:42 -msgid "Single" -msgstr "Alleenstaand" - -#: ../../include/profile_selectors.php:42 -msgid "Lonely" -msgstr "Eenzaam" - -#: ../../include/profile_selectors.php:42 -msgid "Available" -msgstr "Beschikbaar" - -#: ../../include/profile_selectors.php:42 -msgid "Unavailable" -msgstr "Onbeschikbaar" - -#: ../../include/profile_selectors.php:42 -msgid "Has crush" -msgstr "Verliefd" - -#: ../../include/profile_selectors.php:42 -msgid "Infatuated" -msgstr "Smoorverliefd" - -#: ../../include/profile_selectors.php:42 -msgid "Dating" -msgstr "Aan het daten" - -#: ../../include/profile_selectors.php:42 -msgid "Unfaithful" -msgstr "Ontrouw" - -#: ../../include/profile_selectors.php:42 -msgid "Sex Addict" -msgstr "Seksverslaafd" - -#: ../../include/profile_selectors.php:42 -msgid "Friends/Benefits" -msgstr "Vriendschap plus" - -#: ../../include/profile_selectors.php:42 -msgid "Casual" -msgstr "Ongebonden/vluchtig" - -#: ../../include/profile_selectors.php:42 -msgid "Engaged" -msgstr "Verloofd" - -#: ../../include/profile_selectors.php:42 -msgid "Married" -msgstr "Getrouwd" - -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily married" -msgstr "Denkbeeldig getrouwd" - -#: ../../include/profile_selectors.php:42 -msgid "Partners" -msgstr "Partners" - -#: ../../include/profile_selectors.php:42 -msgid "Cohabiting" -msgstr "Samenwonend" - -#: ../../include/profile_selectors.php:42 -msgid "Common law" -msgstr "Common-law-huwelijk" - -#: ../../include/profile_selectors.php:42 -msgid "Happy" -msgstr "Blij" - -#: ../../include/profile_selectors.php:42 -msgid "Not looking" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Swinger" -msgstr "Swinger" - -#: ../../include/profile_selectors.php:42 -msgid "Betrayed" -msgstr "Bedrogen" - -#: ../../include/profile_selectors.php:42 -msgid "Separated" -msgstr "Uit elkaar" - -#: ../../include/profile_selectors.php:42 -msgid "Unstable" -msgstr "Onstabiel" - -#: ../../include/profile_selectors.php:42 -msgid "Divorced" -msgstr "Gescheiden" - -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily divorced" -msgstr "Denkbeeldig gescheiden" - -#: ../../include/profile_selectors.php:42 -msgid "Widowed" -msgstr "Weduwnaar/weduwe" - -#: ../../include/profile_selectors.php:42 -msgid "Uncertain" -msgstr "Onzeker" - -#: ../../include/profile_selectors.php:42 -msgid "It's complicated" -msgstr "Het is gecompliceerd" - -#: ../../include/profile_selectors.php:42 -msgid "Don't care" -msgstr "Kan me niet schelen" - -#: ../../include/profile_selectors.php:42 -msgid "Ask me" -msgstr "Vraag me" - -#: ../../include/enotify.php:18 -msgid "Friendica Notification" -msgstr "Friendica Notificatie" - -#: ../../include/enotify.php:21 -msgid "Thank You," -msgstr "Bedankt" - -#: ../../include/enotify.php:23 -#, php-format -msgid "%s Administrator" -msgstr "%s Beheerder" - -#: ../../include/enotify.php:64 -#, php-format -msgid "%s " -msgstr "%s " - -#: ../../include/enotify.php:68 -#, php-format -msgid "[Friendica:Notify] New mail received at %s" -msgstr "[Friendica:Notificatie] Nieuw bericht ontvangen op %s" - -#: ../../include/enotify.php:70 -#, php-format -msgid "%1$s sent you a new private message at %2$s." -msgstr "%1$s sent you a new private message at %2$s." - -#: ../../include/enotify.php:71 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s stuurde jou %2$s." - -#: ../../include/enotify.php:71 -msgid "a private message" -msgstr "een prive bericht" - -#: ../../include/enotify.php:72 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Bezoek %s om je privé-berichten te bekijken en/of te beantwoorden." - -#: ../../include/enotify.php:124 -#, php-format -msgid "%1$s commented on [url=%2$s]a %3$s[/url]" -msgstr "%1$s gaf een reactie op [url=%2$s]a %3$s[/url]" - -#: ../../include/enotify.php:131 -#, php-format -msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" -msgstr "%1$s gaf een reactie op [url=%2$s]%3$s's %4$s[/url]" - -#: ../../include/enotify.php:139 -#, php-format -msgid "%1$s commented on [url=%2$s]your %3$s[/url]" -msgstr "%1$s gaf een reactie op [url=%2$s]jouw %3$s[/url]" - -#: ../../include/enotify.php:149 -#, php-format -msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" -msgstr "" - -#: ../../include/enotify.php:150 -#, php-format -msgid "%s commented on an item/conversation you have been following." -msgstr "%s gaf een reactie op een bericht/conversatie die jij volgt." - -#: ../../include/enotify.php:153 ../../include/enotify.php:168 -#: ../../include/enotify.php:181 ../../include/enotify.php:194 -#: ../../include/enotify.php:212 ../../include/enotify.php:225 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Bezoek %s om de conversatie te bekijken en/of te beantwoorden." - -#: ../../include/enotify.php:160 -#, php-format -msgid "[Friendica:Notify] %s posted to your profile wall" -msgstr "" - -#: ../../include/enotify.php:162 -#, php-format -msgid "%1$s posted to your profile wall at %2$s" -msgstr "" - -#: ../../include/enotify.php:164 -#, php-format -msgid "%1$s posted to [url=%2$s]your wall[/url]" -msgstr "" - -#: ../../include/enotify.php:175 -#, php-format -msgid "[Friendica:Notify] %s tagged you" -msgstr "[Friendica:Notificatie] %s heeft jou genoemd" - -#: ../../include/enotify.php:176 -#, php-format -msgid "%1$s tagged you at %2$s" -msgstr "%1$s heeft jou in %2$s genoemd" - -#: ../../include/enotify.php:177 -#, php-format -msgid "%1$s [url=%2$s]tagged you[/url]." -msgstr "%1$s [url=%2$s]heeft jou genoemd[/url]." - -#: ../../include/enotify.php:188 -#, php-format -msgid "[Friendica:Notify] %s shared a new post" -msgstr "" - -#: ../../include/enotify.php:189 -#, php-format -msgid "%1$s shared a new post at %2$s" -msgstr "" - -#: ../../include/enotify.php:190 -#, php-format -msgid "%1$s [url=%2$s]shared a post[/url]." -msgstr "" - -#: ../../include/enotify.php:202 -#, php-format -msgid "[Friendica:Notify] %1$s poked you" -msgstr "[Friendica:Notify] %1$s heeft jou aangestoten" - -#: ../../include/enotify.php:203 -#, php-format -msgid "%1$s poked you at %2$s" -msgstr "%1$s heeft jou aangestoten op %2$s" - -#: ../../include/enotify.php:204 -#, php-format -msgid "%1$s [url=%2$s]poked you[/url]." -msgstr "" - -#: ../../include/enotify.php:219 -#, php-format -msgid "[Friendica:Notify] %s tagged your post" -msgstr "[Friendica:Notificatie] %s heeft jouw bericht gelabeld" - -#: ../../include/enotify.php:220 -#, php-format -msgid "%1$s tagged your post at %2$s" -msgstr "%1$s heeft jouw bericht gelabeld in %2$s" - -#: ../../include/enotify.php:221 -#, php-format -msgid "%1$s tagged [url=%2$s]your post[/url]" -msgstr "%1$s labelde [url=%2$s]jouw bericht[/url]" - -#: ../../include/enotify.php:232 -msgid "[Friendica:Notify] Introduction received" -msgstr "[Friendica:Notificatie] Vriendschaps-/connectieverzoek ontvangen" - -#: ../../include/enotify.php:233 -#, php-format -msgid "You've received an introduction from '%1$s' at %2$s" -msgstr "Je hebt een vriendschaps- of connectieverzoek ontvangen van '%1$s' om %2$s" - -#: ../../include/enotify.php:234 -#, php-format -msgid "You've received [url=%1$s]an introduction[/url] from %2$s." -msgstr "Je ontving [url=%1$s]een vriendschaps- of connectieverzoek[/url] van %2$s." - -#: ../../include/enotify.php:237 ../../include/enotify.php:279 -#, php-format -msgid "You may visit their profile at %s" -msgstr "U kunt hun profiel bezoeken op %s" - -#: ../../include/enotify.php:239 -#, php-format -msgid "Please visit %s to approve or reject the introduction." -msgstr "Bezoek %s om het verzoek goed of af te keuren." - -#: ../../include/enotify.php:247 -msgid "[Friendica:Notify] A new person is sharing with you" -msgstr "" - -#: ../../include/enotify.php:248 ../../include/enotify.php:249 -#, php-format -msgid "%1$s is sharing with you at %2$s" -msgstr "" - -#: ../../include/enotify.php:255 -msgid "[Friendica:Notify] You have a new follower" -msgstr "" - -#: ../../include/enotify.php:256 ../../include/enotify.php:257 -#, php-format -msgid "You have a new follower at %2$s : %1$s" -msgstr "" - -#: ../../include/enotify.php:270 -msgid "[Friendica:Notify] Friend suggestion received" -msgstr "" - -#: ../../include/enotify.php:271 -#, php-format -msgid "You've received a friend suggestion from '%1$s' at %2$s" -msgstr "" - -#: ../../include/enotify.php:272 -#, php-format -msgid "" -"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." -msgstr "" - -#: ../../include/enotify.php:277 -msgid "Name:" -msgstr "Naam:" - -#: ../../include/enotify.php:278 -msgid "Photo:" -msgstr "Foto: " - -#: ../../include/enotify.php:281 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "" - -#: ../../include/enotify.php:289 ../../include/enotify.php:302 -msgid "[Friendica:Notify] Connection accepted" -msgstr "" - -#: ../../include/enotify.php:290 ../../include/enotify.php:303 -#, php-format -msgid "'%1$s' has acepted your connection request at %2$s" -msgstr "" - -#: ../../include/enotify.php:291 ../../include/enotify.php:304 -#, php-format -msgid "%2$s has accepted your [url=%1$s]connection request[/url]." -msgstr "" - -#: ../../include/enotify.php:294 -msgid "" -"You are now mutual friends and may exchange status updates, photos, and email\n" -"\twithout restriction." -msgstr "" - -#: ../../include/enotify.php:297 ../../include/enotify.php:311 -#, php-format -msgid "Please visit %s if you wish to make any changes to this relationship." -msgstr "" - -#: ../../include/enotify.php:307 -#, php-format -msgid "" -"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of " -"communication - such as private messaging and some profile interactions. If " -"this is a celebrity or community page, these settings were applied " -"automatically." -msgstr "" - -#: ../../include/enotify.php:309 -#, php-format -msgid "" -"'%1$s' may choose to extend this into a two-way or more permissive " -"relationship in the future. " -msgstr "" - -#: ../../include/enotify.php:322 -msgid "[Friendica System:Notify] registration request" -msgstr "" - -#: ../../include/enotify.php:323 -#, php-format -msgid "You've received a registration request from '%1$s' at %2$s" -msgstr "" - -#: ../../include/enotify.php:324 -#, php-format -msgid "You've received a [url=%1$s]registration request[/url] from %2$s." -msgstr "" - -#: ../../include/enotify.php:327 -#, php-format -msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" -msgstr "" - -#: ../../include/enotify.php:330 -#, php-format -msgid "Please visit %s to approve or reject the request." -msgstr "" - -#: ../../include/oembed.php:212 -msgid "Embedded content" -msgstr "Ingebedde inhoud" - -#: ../../include/oembed.php:221 -msgid "Embedding disabled" -msgstr "Inbedden uitgeschakeld" - -#: ../../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 "Gebruiker '%s' bestaat al op deze server!" - -#: ../../include/uimport.php:153 -msgid "User creation error" -msgstr "Fout bij het aanmaken van de gebruiker" - -#: ../../include/uimport.php:171 -msgid "User profile creation error" -msgstr "Fout bij het aanmaken van het gebruikersprofiel" - -#: ../../include/uimport.php:220 -#, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "%d contact werd niet geïmporteerd" -msgstr[1] "%d contacten werden niet geïmporteerd" - -#: ../../include/uimport.php:290 -msgid "Done. You can now login with your username and password" -msgstr "Gebeurd. Je kunt nu inloggen met je gebruikersnaam en wachtwoord" - -#: ../../index.php:428 -msgid "toggle mobile" -msgstr "mobiel thema omwisselen" - -#: ../../view/theme/cleanzero/config.php:82 -#: ../../view/theme/dispy/config.php:72 ../../view/theme/quattro/config.php:66 -#: ../../view/theme/diabook/config.php:150 ../../view/theme/vier/config.php:55 -#: ../../view/theme/duepuntozero/config.php:61 -msgid "Theme settings" -msgstr "Thema-instellingen" - -#: ../../view/theme/cleanzero/config.php:83 -msgid "Set resize level for images in posts and comments (width and height)" -msgstr "" - -#: ../../view/theme/cleanzero/config.php:84 -#: ../../view/theme/dispy/config.php:73 -#: ../../view/theme/diabook/config.php:151 -msgid "Set font-size for posts and comments" -msgstr "Stel lettergrootte voor berichten en reacties in" - -#: ../../view/theme/cleanzero/config.php:85 -msgid "Set theme width" -msgstr "Stel breedte van het thema in" - -#: ../../view/theme/cleanzero/config.php:86 -#: ../../view/theme/quattro/config.php:68 -msgid "Color scheme" -msgstr "Kleurschema" - -#: ../../view/theme/dispy/config.php:74 -#: ../../view/theme/diabook/config.php:152 -msgid "Set line-height for posts and comments" -msgstr "Stel lijnhoogte voor berichten en reacties in" - -#: ../../view/theme/dispy/config.php:75 -msgid "Set colour scheme" -msgstr "Stel kleurschema in" - -#: ../../view/theme/quattro/config.php:67 -msgid "Alignment" -msgstr "Uitlijning" - -#: ../../view/theme/quattro/config.php:67 -msgid "Left" -msgstr "Links" - -#: ../../view/theme/quattro/config.php:67 -msgid "Center" -msgstr "Gecentreerd" - -#: ../../view/theme/quattro/config.php:69 -msgid "Posts font size" -msgstr "Lettergrootte berichten" - -#: ../../view/theme/quattro/config.php:70 -msgid "Textareas font size" -msgstr "Lettergrootte tekstgebieden" - -#: ../../view/theme/diabook/config.php:153 -msgid "Set resolution for middle column" -msgstr "Stel resolutie in voor de middelste kolom. " - -#: ../../view/theme/diabook/config.php:154 -msgid "Set color scheme" -msgstr "Stel kleurenschema in" - -#: ../../view/theme/diabook/config.php:155 -msgid "Set zoomfactor for Earth Layer" -msgstr "" - -#: ../../view/theme/diabook/config.php:156 -#: ../../view/theme/diabook/theme.php:585 -msgid "Set longitude (X) for Earth Layers" -msgstr "" - -#: ../../view/theme/diabook/config.php:157 -#: ../../view/theme/diabook/theme.php:586 -msgid "Set latitude (Y) for Earth Layers" -msgstr "" - -#: ../../view/theme/diabook/config.php:158 -#: ../../view/theme/diabook/theme.php:130 -#: ../../view/theme/diabook/theme.php:544 -#: ../../view/theme/diabook/theme.php:624 -msgid "Community Pages" -msgstr "Forum/groepspagina's" - -#: ../../view/theme/diabook/config.php:159 -#: ../../view/theme/diabook/theme.php:579 -#: ../../view/theme/diabook/theme.php:625 -msgid "Earth Layers" -msgstr "Earth Layers" - -#: ../../view/theme/diabook/config.php:160 -#: ../../view/theme/diabook/theme.php:391 -#: ../../view/theme/diabook/theme.php:626 -msgid "Community Profiles" -msgstr "Forum/groepsprofielen" - -#: ../../view/theme/diabook/config.php:161 -#: ../../view/theme/diabook/theme.php:599 -#: ../../view/theme/diabook/theme.php:627 -msgid "Help or @NewHere ?" -msgstr "" - -#: ../../view/theme/diabook/config.php:162 -#: ../../view/theme/diabook/theme.php:606 -#: ../../view/theme/diabook/theme.php:628 -msgid "Connect Services" -msgstr "Diensten verbinden" - -#: ../../view/theme/diabook/config.php:163 -#: ../../view/theme/diabook/theme.php:523 -#: ../../view/theme/diabook/theme.php:629 -msgid "Find Friends" -msgstr "Zoek vrienden" - -#: ../../view/theme/diabook/config.php:164 -#: ../../view/theme/diabook/theme.php:412 -#: ../../view/theme/diabook/theme.php:630 -msgid "Last users" -msgstr "Laatste gebruikers" - -#: ../../view/theme/diabook/config.php:165 -#: ../../view/theme/diabook/theme.php:486 -#: ../../view/theme/diabook/theme.php:631 -msgid "Last photos" -msgstr "Laatste foto's" - -#: ../../view/theme/diabook/config.php:166 -#: ../../view/theme/diabook/theme.php:441 -#: ../../view/theme/diabook/theme.php:632 -msgid "Last likes" -msgstr "Recent leuk gevonden" - -#: ../../view/theme/diabook/theme.php:125 -msgid "Your contacts" -msgstr "Jouw contacten" - -#: ../../view/theme/diabook/theme.php:128 -msgid "Your personal photos" -msgstr "Jouw persoonlijke foto's" - -#: ../../view/theme/diabook/theme.php:524 -msgid "Local Directory" -msgstr "Lokale gids" - -#: ../../view/theme/diabook/theme.php:584 -msgid "Set zoomfactor for Earth Layers" -msgstr "" - -#: ../../view/theme/diabook/theme.php:622 -msgid "Show/hide boxes at right-hand column:" -msgstr "" - -#: ../../view/theme/vier/config.php:56 -msgid "Set style" -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" -msgstr "" diff --git a/view/nl/strings.php b/view/nl/strings.php index 1eeb31d03d..1e5f5687f4 100644 --- a/view/nl/strings.php +++ b/view/nl/strings.php @@ -5,6 +5,956 @@ function string_plural_select_nl($n){ return ($n != 1);; }} ; +$a->strings["Submit"] = "Opslaan"; +$a->strings["Theme settings"] = "Thema-instellingen"; +$a->strings["Set resize level for images in posts and comments (width and height)"] = ""; +$a->strings["Set font-size for posts and comments"] = "Stel lettergrootte voor berichten en reacties in"; +$a->strings["Set theme width"] = "Stel breedte van het thema in"; +$a->strings["Color scheme"] = "Kleurschema"; +$a->strings["Set style"] = ""; +$a->strings["default"] = "standaard"; +$a->strings["greenzero"] = ""; +$a->strings["purplezero"] = ""; +$a->strings["easterbunny"] = ""; +$a->strings["darkzero"] = ""; +$a->strings["comix"] = ""; +$a->strings["slackr"] = ""; +$a->strings["Variations"] = ""; +$a->strings["don't show"] = "niet tonen"; +$a->strings["show"] = "tonen"; +$a->strings["Set line-height for posts and comments"] = "Stel lijnhoogte voor berichten en reacties in"; +$a->strings["Set resolution for middle column"] = "Stel resolutie in voor de middelste kolom. "; +$a->strings["Set color scheme"] = "Stel kleurenschema in"; +$a->strings["Set zoomfactor for Earth Layer"] = ""; +$a->strings["Set longitude (X) for Earth Layers"] = ""; +$a->strings["Set latitude (Y) for Earth Layers"] = ""; +$a->strings["Community Pages"] = "Forum/groepspagina's"; +$a->strings["Earth Layers"] = "Earth Layers"; +$a->strings["Community Profiles"] = "Forum/groepsprofielen"; +$a->strings["Help or @NewHere ?"] = ""; +$a->strings["Connect Services"] = "Diensten verbinden"; +$a->strings["Find Friends"] = "Zoek vrienden"; +$a->strings["Last users"] = "Laatste gebruikers"; +$a->strings["Last photos"] = "Laatste foto's"; +$a->strings["Last likes"] = "Recent leuk gevonden"; +$a->strings["Home"] = "Tijdlijn"; +$a->strings["Your posts and conversations"] = "Jouw berichten en conversaties"; +$a->strings["Profile"] = "Profiel"; +$a->strings["Your profile page"] = "Jouw profiel pagina"; +$a->strings["Contacts"] = "Contacten"; +$a->strings["Your contacts"] = "Jouw contacten"; +$a->strings["Photos"] = "Foto's"; +$a->strings["Your photos"] = "Jouw foto's"; +$a->strings["Events"] = "Gebeurtenissen"; +$a->strings["Your events"] = "Jouw gebeurtenissen"; +$a->strings["Personal notes"] = "Persoonlijke nota's"; +$a->strings["Your personal photos"] = "Jouw persoonlijke foto's"; +$a->strings["Community"] = "Website"; +$a->strings["event"] = "gebeurtenis"; +$a->strings["status"] = "status"; +$a->strings["photo"] = "foto"; +$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s vindt het %3\$s van %2\$s leuk"; +$a->strings["Contact Photos"] = "Contactfoto's"; +$a->strings["Profile Photos"] = "Profielfoto's"; +$a->strings["Local Directory"] = "Lokale gids"; +$a->strings["Global Directory"] = "Globale gids"; +$a->strings["Similar Interests"] = "Dezelfde interesses"; +$a->strings["Friend Suggestions"] = "Vriendschapsvoorstellen"; +$a->strings["Invite Friends"] = "Vrienden uitnodigen"; +$a->strings["Settings"] = "Instellingen"; +$a->strings["Set zoomfactor for Earth Layers"] = ""; +$a->strings["Show/hide boxes at right-hand column:"] = ""; +$a->strings["Alignment"] = "Uitlijning"; +$a->strings["Left"] = "Links"; +$a->strings["Center"] = "Gecentreerd"; +$a->strings["Posts font size"] = "Lettergrootte berichten"; +$a->strings["Textareas font size"] = "Lettergrootte tekstgebieden"; +$a->strings["Set colour scheme"] = "Stel kleurschema in"; +$a->strings["You must be logged in to use addons. "] = "Je moet ingelogd zijn om deze addons te kunnen gebruiken. "; +$a->strings["Not Found"] = "Niet gevonden"; +$a->strings["Page not found."] = "Pagina niet gevonden"; +$a->strings["Permission denied"] = "Toegang geweigerd"; +$a->strings["Permission denied."] = "Toegang geweigerd"; +$a->strings["toggle mobile"] = "mobiel thema omwisselen"; +$a->strings["Do you wish to confirm your identity (%s) with %s"] = ""; +$a->strings["Confirm"] = "Bevestig"; +$a->strings["Do not confirm"] = "Bevestig niet"; +$a->strings["Trust This Site"] = "Vertrouw deze website"; +$a->strings["No Identifier Sent"] = ""; +$a->strings["Requested identity don't match logged in user."] = ""; +$a->strings["Please wait; you are being redirected to <%s>"] = ""; +$a->strings["Delete this item?"] = "Dit item verwijderen?"; +$a->strings["Comment"] = "Reacties"; +$a->strings["show more"] = "toon meer"; +$a->strings["show fewer"] = "Minder tonen"; +$a->strings["Update %s failed. See error logs."] = "Wijziging %s mislukt. Lees de error logbestanden."; +$a->strings["Create a New Account"] = "Nieuwe account aanmaken"; +$a->strings["Register"] = "Registreer"; +$a->strings["Logout"] = "Uitloggen"; +$a->strings["Login"] = "Login"; +$a->strings["Nickname or Email address: "] = "Bijnaam of e-mailadres:"; +$a->strings["Password: "] = "Wachtwoord:"; +$a->strings["Remember me"] = "Onthou me"; +$a->strings["Or login using OpenID: "] = "Of log in met OpenID:"; +$a->strings["Forgot your password?"] = "Wachtwoord vergeten?"; +$a->strings["Password Reset"] = "Wachtwoord opnieuw instellen"; +$a->strings["Website Terms of Service"] = "Gebruikersvoorwaarden website"; +$a->strings["terms of service"] = "servicevoorwaarden"; +$a->strings["Website Privacy Policy"] = "Privacybeleid website"; +$a->strings["privacy policy"] = "privacybeleid"; +$a->strings["Requested account is not available."] = "Gevraagde account is niet beschikbaar."; +$a->strings["Requested profile is not available."] = "Gevraagde profiel is niet beschikbaar."; +$a->strings["Edit profile"] = "Bewerk profiel"; +$a->strings["Connect"] = "Verbinden"; +$a->strings["Message"] = "Bericht"; +$a->strings["Profiles"] = "Profielen"; +$a->strings["Manage/edit profiles"] = "Beheer/wijzig profielen"; +$a->strings["Change profile photo"] = "Profiel foto wijzigen"; +$a->strings["Create New Profile"] = "Maak nieuw profiel"; +$a->strings["Profile Image"] = "Profiel afbeelding"; +$a->strings["visible to everybody"] = "zichtbaar voor iedereen"; +$a->strings["Edit visibility"] = "Pas zichtbaarheid aan"; +$a->strings["Location:"] = "Plaats:"; +$a->strings["Gender:"] = "Geslacht:"; +$a->strings["Status:"] = "Tijdlijn:"; +$a->strings["Homepage:"] = "Website:"; +$a->strings["About:"] = "Over:"; +$a->strings["Network:"] = ""; +$a->strings["g A l F d"] = "G l j F"; +$a->strings["F d"] = "d F"; +$a->strings["[today]"] = "[vandaag]"; +$a->strings["Birthday Reminders"] = "Verjaardagsherinneringen"; +$a->strings["Birthdays this week:"] = "Verjaardagen deze week:"; +$a->strings["[No description]"] = "[Geen omschrijving]"; +$a->strings["Event Reminders"] = "Gebeurtenisherinneringen"; +$a->strings["Events this week:"] = "Gebeurtenissen deze week:"; +$a->strings["Status"] = "Tijdlijn"; +$a->strings["Status Messages and Posts"] = "Berichten op jouw tijdlijn"; +$a->strings["Profile Details"] = "Profieldetails"; +$a->strings["Photo Albums"] = "Fotoalbums"; +$a->strings["Videos"] = "Video's"; +$a->strings["Events and Calendar"] = "Gebeurtenissen en kalender"; +$a->strings["Personal Notes"] = "Persoonlijke Nota's"; +$a->strings["Only You Can See This"] = "Alleen jij kunt dit zien"; +$a->strings["General Features"] = "Algemene functies"; +$a->strings["Multiple Profiles"] = "Meerdere profielen"; +$a->strings["Ability to create multiple profiles"] = "Mogelijkheid om meerdere profielen aan te maken"; +$a->strings["Post Composition Features"] = "Functies voor het opstellen van berichten"; +$a->strings["Richtext Editor"] = "Tekstverwerker met opmaak"; +$a->strings["Enable richtext editor"] = "Gebruik een tekstverwerker met eenvoudige opmaakfuncties"; +$a->strings["Post Preview"] = "Voorvertoning bericht"; +$a->strings["Allow previewing posts and comments before publishing them"] = ""; +$a->strings["Auto-mention Forums"] = ""; +$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = ""; +$a->strings["Network Sidebar Widgets"] = "Zijbalkwidgets op netwerkpagina"; +$a->strings["Search by Date"] = "Zoeken op datum"; +$a->strings["Ability to select posts by date ranges"] = "Mogelijkheid om berichten te selecteren volgens datumbereik"; +$a->strings["Group Filter"] = "Groepsfilter"; +$a->strings["Enable widget to display Network posts only from selected group"] = "Sta de widget toe om netwerkberichten te tonen van bepaalde groepen"; +$a->strings["Network Filter"] = "Netwerkfilter"; +$a->strings["Enable widget to display Network posts only from selected network"] = "Sta de widget toe om netwerkberichten te tonen van bepaalde netwerken"; +$a->strings["Saved Searches"] = "Opgeslagen zoekopdrachten"; +$a->strings["Save search terms for re-use"] = "Sla zoekopdrachten op voor hergebruik"; +$a->strings["Network Tabs"] = "Netwerktabs"; +$a->strings["Network Personal Tab"] = "Persoonlijke netwerktab"; +$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had"; +$a->strings["Network New Tab"] = "Nieuwe netwerktab"; +$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Laat de tab alleen nieuwe netwerkberichten tonen (van de laatste 12 uur)"; +$a->strings["Network Shared Links Tab"] = ""; +$a->strings["Enable tab to display only Network posts with links in them"] = ""; +$a->strings["Post/Comment Tools"] = "Bericht-/reactiehulpmiddelen"; +$a->strings["Multiple Deletion"] = "Meervoudige verwijdering"; +$a->strings["Select and delete multiple posts/comments at once"] = "Selecteer en verwijder meerdere berichten/reacties in een keer"; +$a->strings["Edit Sent Posts"] = "Bewerk verzonden berichten"; +$a->strings["Edit and correct posts and comments after sending"] = "Bewerk en corrigeer berichten en reacties na verzending"; +$a->strings["Tagging"] = "Labelen"; +$a->strings["Ability to tag existing posts"] = "Mogelijkheid om bestaande berichten te labelen"; +$a->strings["Post Categories"] = "Categorieën berichten"; +$a->strings["Add categories to your posts"] = "Voeg categorieën toe aan je berichten"; +$a->strings["Saved Folders"] = "Bewaarde Mappen"; +$a->strings["Ability to file posts under folders"] = "Mogelijkheid om berichten in mappen te bewaren"; +$a->strings["Dislike Posts"] = "Vind berichten niet leuk"; +$a->strings["Ability to dislike posts/comments"] = "Mogelijkheid om berichten of reacties niet leuk te vinden"; +$a->strings["Star Posts"] = "Geef berichten een ster"; +$a->strings["Ability to mark special posts with a star indicator"] = ""; +$a->strings["Mute Post Notifications"] = ""; +$a->strings["Ability to mute notifications for a thread"] = ""; +$a->strings["%s's birthday"] = "%s's verjaardag"; +$a->strings["Happy Birthday %s"] = "Gefeliciteerd %s"; +$a->strings["[Name Withheld]"] = "[Naam achtergehouden]"; +$a->strings["Item not found."] = "Item niet gevonden."; +$a->strings["Do you really want to delete this item?"] = "Wil je echt dit item verwijderen?"; +$a->strings["Yes"] = "Ja"; +$a->strings["Cancel"] = "Annuleren"; +$a->strings["Archives"] = "Archieven"; +$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Een verwijderde groep met deze naam is weer tot leven gewekt. Bestaande itemrechten kunnen voor deze groep en toekomstige leden gelden. Wanneer je niet zo had bedoeld kan je een andere groep met een andere naam creëren. "; +$a->strings["Default privacy group for new contacts"] = ""; +$a->strings["Everybody"] = "Iedereen"; +$a->strings["edit"] = "verander"; +$a->strings["Groups"] = "Groepen"; +$a->strings["Edit group"] = "Verander groep"; +$a->strings["Create a new group"] = "Maak nieuwe groep"; +$a->strings["Contacts not in any group"] = ""; +$a->strings["add"] = "toevoegen"; +$a->strings["Wall Photos"] = ""; +$a->strings["Cannot locate DNS info for database server '%s'"] = ""; +$a->strings["Add New Contact"] = "Nieuw Contact toevoegen"; +$a->strings["Enter address or web location"] = "Voeg een webadres of -locatie in:"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Voorbeeld: jan@voorbeeld.be, http://voorbeeld.nl/barbara"; +$a->strings["%d invitation available"] = array( + 0 => "%d uitnodiging beschikbaar", + 1 => "%d uitnodigingen beschikbaar", +); +$a->strings["Find People"] = "Zoek mensen"; +$a->strings["Enter name or interest"] = "Vul naam of interesse in"; +$a->strings["Connect/Follow"] = "Verbind/Volg"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "Voorbeelden: Jan Peeters, Vissen"; +$a->strings["Find"] = "Zoek"; +$a->strings["Random Profile"] = "Willekeurig Profiel"; +$a->strings["Networks"] = "Netwerken"; +$a->strings["All Networks"] = "Alle netwerken"; +$a->strings["Everything"] = "Alles"; +$a->strings["Categories"] = "Categorieën"; +$a->strings["%d contact in common"] = array( + 0 => "%d gedeeld contact", + 1 => "%d gedeelde contacten", +); +$a->strings["Friendica Notification"] = "Friendica Notificatie"; +$a->strings["Thank You,"] = "Bedankt"; +$a->strings["%s Administrator"] = "%s Beheerder"; +$a->strings["noreply"] = "geen reactie"; +$a->strings["%s "] = "%s "; +$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notificatie] Nieuw bericht ontvangen op %s"; +$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s sent you a new private message at %2\$s."; +$a->strings["%1\$s sent you %2\$s."] = "%1\$s stuurde jou %2\$s."; +$a->strings["a private message"] = "een prive bericht"; +$a->strings["Please visit %s to view and/or reply to your private messages."] = "Bezoek %s om je privé-berichten te bekijken en/of te beantwoorden."; +$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s gaf een reactie op [url=%2\$s]a %3\$s[/url]"; +$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s gaf een reactie op [url=%2\$s]%3\$s's %4\$s[/url]"; +$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s gaf een reactie op [url=%2\$s]jouw %3\$s[/url]"; +$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = ""; +$a->strings["%s commented on an item/conversation you have been following."] = "%s gaf een reactie op een bericht/conversatie die jij volgt."; +$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bezoek %s om de conversatie te bekijken en/of te beantwoorden."; +$a->strings["[Friendica:Notify] %s posted to your profile wall"] = ""; +$a->strings["%1\$s posted to your profile wall at %2\$s"] = ""; +$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = ""; +$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notificatie] %s heeft jou genoemd"; +$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s heeft jou in %2\$s genoemd"; +$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]heeft jou genoemd[/url]."; +$a->strings["[Friendica:Notify] %s shared a new post"] = ""; +$a->strings["%1\$s shared a new post at %2\$s"] = ""; +$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = ""; +$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notify] %1\$s heeft jou aangestoten"; +$a->strings["%1\$s poked you at %2\$s"] = "%1\$s heeft jou aangestoten op %2\$s"; +$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = ""; +$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notificatie] %s heeft jouw bericht gelabeld"; +$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s heeft jouw bericht gelabeld in %2\$s"; +$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s labelde [url=%2\$s]jouw bericht[/url]"; +$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notificatie] Vriendschaps-/connectieverzoek ontvangen"; +$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Je hebt een vriendschaps- of connectieverzoek ontvangen van '%1\$s' om %2\$s"; +$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Je ontving [url=%1\$s]een vriendschaps- of connectieverzoek[/url] van %2\$s."; +$a->strings["You may visit their profile at %s"] = "U kunt hun profiel bezoeken op %s"; +$a->strings["Please visit %s to approve or reject the introduction."] = "Bezoek %s om het verzoek goed of af te keuren."; +$a->strings["[Friendica:Notify] A new person is sharing with you"] = ""; +$a->strings["%1\$s is sharing with you at %2\$s"] = ""; +$a->strings["[Friendica:Notify] You have a new follower"] = ""; +$a->strings["You have a new follower at %2\$s : %1\$s"] = ""; +$a->strings["[Friendica:Notify] Friend suggestion received"] = ""; +$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = ""; +$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = ""; +$a->strings["Name:"] = "Naam:"; +$a->strings["Photo:"] = "Foto: "; +$a->strings["Please visit %s to approve or reject the suggestion."] = ""; +$a->strings["[Friendica:Notify] Connection accepted"] = ""; +$a->strings["'%1\$s' has acepted your connection request at %2\$s"] = ""; +$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = ""; +$a->strings["You are now mutual friends and may exchange status updates, photos, and email\n\twithout restriction."] = ""; +$a->strings["Please visit %s if you wish to make any changes to this relationship."] = ""; +$a->strings["'%1\$s' has chosen to accept you a \"fan\", which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = ""; +$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future. "] = ""; +$a->strings["[Friendica System:Notify] registration request"] = ""; +$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = ""; +$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = ""; +$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = ""; +$a->strings["Please visit %s to approve or reject the request."] = ""; +$a->strings["User not found."] = "Gebruiker niet gevonden"; +$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = ""; +$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = ""; +$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = ""; +$a->strings["There is no status with this id."] = "Er is geen status met dit kenmerk"; +$a->strings["There is no conversation with this id."] = ""; +$a->strings["Invalid request."] = ""; +$a->strings["Invalid item."] = ""; +$a->strings["Invalid action. "] = ""; +$a->strings["DB error"] = ""; +$a->strings["view full size"] = "Volledig formaat"; +$a->strings[" on Last.fm"] = " op Last.fm"; +$a->strings["Full Name:"] = "Volledige Naam:"; +$a->strings["j F, Y"] = "F j Y"; +$a->strings["j F"] = "F j"; +$a->strings["Birthday:"] = "Verjaardag:"; +$a->strings["Age:"] = "Leeftijd:"; +$a->strings["for %1\$d %2\$s"] = "voor %1\$d %2\$s"; +$a->strings["Sexual Preference:"] = "Seksuele Voorkeur:"; +$a->strings["Hometown:"] = "Woonplaats:"; +$a->strings["Tags:"] = "Labels:"; +$a->strings["Political Views:"] = "Politieke standpunten:"; +$a->strings["Religion:"] = "Religie:"; +$a->strings["Hobbies/Interests:"] = "Hobby:"; +$a->strings["Likes:"] = "Houdt van:"; +$a->strings["Dislikes:"] = "Houdt niet van:"; +$a->strings["Contact information and Social Networks:"] = "Contactinformatie en sociale netwerken:"; +$a->strings["Musical interests:"] = "Muzikale interesse "; +$a->strings["Books, literature:"] = "Boeken, literatuur:"; +$a->strings["Television:"] = "Televisie"; +$a->strings["Film/dance/culture/entertainment:"] = "Film/dans/cultuur/ontspanning:"; +$a->strings["Love/Romance:"] = "Liefde/romance:"; +$a->strings["Work/employment:"] = "Werk/beroep:"; +$a->strings["School/education:"] = "School/opleiding:"; +$a->strings["Nothing new here"] = "Niets nieuw hier"; +$a->strings["Clear notifications"] = "Notificaties verwijderen"; +$a->strings["End this session"] = "Deze sessie beëindigen"; +$a->strings["Your videos"] = ""; +$a->strings["Your personal notes"] = ""; +$a->strings["Sign in"] = "Inloggen"; +$a->strings["Home Page"] = "Jouw tijdlijn"; +$a->strings["Create an account"] = "Maak een accoount"; +$a->strings["Help"] = "Help"; +$a->strings["Help and documentation"] = "Hulp en documentatie"; +$a->strings["Apps"] = "Apps"; +$a->strings["Addon applications, utilities, games"] = "Extra toepassingen, hulpmiddelen of spelletjes"; +$a->strings["Search"] = "Zoeken"; +$a->strings["Search site content"] = "Doorzoek de inhoud van de website"; +$a->strings["Conversations on this site"] = "Conversaties op deze website"; +$a->strings["Conversations on the network"] = ""; +$a->strings["Directory"] = "Gids"; +$a->strings["People directory"] = "Personengids"; +$a->strings["Information"] = "Informatie"; +$a->strings["Information about this friendica instance"] = ""; +$a->strings["Network"] = "Netwerk"; +$a->strings["Conversations from your friends"] = "Conversaties van je vrienden"; +$a->strings["Network Reset"] = "Netwerkpagina opnieuw instellen"; +$a->strings["Load Network page with no filters"] = "Laad de netwerkpagina zonder filters"; +$a->strings["Introductions"] = "Verzoeken"; +$a->strings["Friend Requests"] = "Vriendschapsverzoeken"; +$a->strings["Notifications"] = "Notificaties"; +$a->strings["See all notifications"] = "Toon alle notificaties"; +$a->strings["Mark all system notifications seen"] = "Alle systeemnotificaties als gelezen markeren"; +$a->strings["Messages"] = "Privéberichten"; +$a->strings["Private mail"] = "Privéberichten"; +$a->strings["Inbox"] = "Inbox"; +$a->strings["Outbox"] = "Verzonden berichten"; +$a->strings["New Message"] = "Nieuw Bericht"; +$a->strings["Manage"] = "Beheren"; +$a->strings["Manage other pages"] = "Andere pagina's beheren"; +$a->strings["Delegations"] = ""; +$a->strings["Delegate Page Management"] = "Paginabeheer uitbesteden"; +$a->strings["Account settings"] = "Account instellingen"; +$a->strings["Manage/Edit Profiles"] = "Beheer/Wijzig Profielen"; +$a->strings["Manage/edit friends and contacts"] = "Beheer/Wijzig vrienden en contacten"; +$a->strings["Admin"] = "Beheer"; +$a->strings["Site setup and configuration"] = "Website opzetten en configureren"; +$a->strings["Navigation"] = "Navigatie"; +$a->strings["Site map"] = "Sitemap"; +$a->strings["Click here to upgrade."] = ""; +$a->strings["This action exceeds the limits set by your subscription plan."] = ""; +$a->strings["This action is not available under your subscription plan."] = ""; +$a->strings["Disallowed profile URL."] = "Niet toegelaten profiel adres."; +$a->strings["Connect URL missing."] = ""; +$a->strings["This site is not configured to allow communications with other networks."] = "Deze website is niet geconfigureerd voor communicatie met andere netwerken."; +$a->strings["No compatible communication protocols or feeds were discovered."] = "Er werden geen compatibele communicatieprotocols of feeds ontdekt."; +$a->strings["The profile address specified does not provide adequate information."] = ""; +$a->strings["An author or name was not found."] = ""; +$a->strings["No browser URL could be matched to this address."] = ""; +$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Het @-stijl-identiteitsadres komt niet overeen met een nekend protocol of e-mailcontact."; +$a->strings["Use mailto: in front of address to force email check."] = "Gebruik mailto: voor het adres om een e-mailcontrole af te dwingen."; +$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = ""; +$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = ""; +$a->strings["Unable to retrieve contact information."] = ""; +$a->strings["following"] = "volgend"; +$a->strings["Error decoding account file"] = ""; +$a->strings["Error! No version data in file! This is not a Friendica account file?"] = ""; +$a->strings["Error! Cannot check nickname"] = ""; +$a->strings["User '%s' already exists on this server!"] = "Gebruiker '%s' bestaat al op deze server!"; +$a->strings["User creation error"] = "Fout bij het aanmaken van de gebruiker"; +$a->strings["User profile creation error"] = "Fout bij het aanmaken van het gebruikersprofiel"; +$a->strings["%d contact not imported"] = array( + 0 => "%d contact werd niet geïmporteerd", + 1 => "%d contacten werden niet geïmporteerd", +); +$a->strings["Done. You can now login with your username and password"] = "Gebeurd. Je kunt nu inloggen met je gebruikersnaam en wachtwoord"; +$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; +$a->strings["Starts:"] = "Begint:"; +$a->strings["Finishes:"] = "Eindigt:"; +$a->strings["stopped following"] = ""; +$a->strings["Poke"] = "Aanstoten"; +$a->strings["View Status"] = "Bekijk status"; +$a->strings["View Profile"] = "Bekijk profiel"; +$a->strings["View Photos"] = "Bekijk foto's"; +$a->strings["Network Posts"] = "Netwerkberichten"; +$a->strings["Edit Contact"] = "Bewerk contact"; +$a->strings["Drop Contact"] = "Verwijder contact"; +$a->strings["Send PM"] = "Stuur een privébericht"; +$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."] = ""; +$a->strings["The error message is\n[pre]%s[/pre]"] = ""; +$a->strings["Errors encountered creating database tables."] = "Tijdens het aanmaken van databasetabellen zijn fouten vastgesteld."; +$a->strings["Errors encountered performing database changes."] = ""; +$a->strings["Miscellaneous"] = "Diversen"; +$a->strings["year"] = "jaar"; +$a->strings["month"] = "maand"; +$a->strings["day"] = "dag"; +$a->strings["never"] = "nooit"; +$a->strings["less than a second ago"] = "minder dan een seconde geleden"; +$a->strings["years"] = "jaren"; +$a->strings["months"] = "maanden"; +$a->strings["week"] = "week"; +$a->strings["weeks"] = "weken"; +$a->strings["days"] = "dagen"; +$a->strings["hour"] = "uur"; +$a->strings["hours"] = "uren"; +$a->strings["minute"] = "minuut"; +$a->strings["minutes"] = "minuten"; +$a->strings["second"] = "seconde"; +$a->strings["seconds"] = "secondes"; +$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s geleden"; +$a->strings["[no subject]"] = "[geen onderwerp]"; +$a->strings["(no subject)"] = "(geen onderwerp)"; +$a->strings["Unknown | Not categorised"] = "Onbekend | Niet "; +$a->strings["Block immediately"] = "Onmiddellijk blokkeren"; +$a->strings["Shady, spammer, self-marketer"] = "Onbetrouwbaar, spammer, zelfpromotor"; +$a->strings["Known to me, but no opinion"] = "Bekend, maar geen mening"; +$a->strings["OK, probably harmless"] = "OK, waarschijnlijk onschadelijk"; +$a->strings["Reputable, has my trust"] = "Gerenommeerd, heeft mijn vertrouwen"; +$a->strings["Frequently"] = "Frequent"; +$a->strings["Hourly"] = "elk uur"; +$a->strings["Twice daily"] = "Twee keer per dag"; +$a->strings["Daily"] = "dagelijks"; +$a->strings["Weekly"] = "wekelijks"; +$a->strings["Monthly"] = "maandelijks"; +$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!"] = "Zot!"; +$a->strings["LinkedIn"] = "Linkedln"; +$a->strings["XMPP/IM"] = "XMPP/IM"; +$a->strings["MySpace"] = "Myspace"; +$a->strings["Google+"] = "Google+"; +$a->strings["pump.io"] = "pump.io"; +$a->strings["Twitter"] = "Twitter"; +$a->strings["Diaspora Connector"] = "Diaspora-connector"; +$a->strings["Statusnet"] = "Statusnet"; +$a->strings["App.net"] = ""; +$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s is nu bevriend met %2\$s"; +$a->strings["Sharing notification from Diaspora network"] = ""; +$a->strings["Attachments:"] = "Bijlagen:"; +$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s vindt het %3\$s van %2\$s niet leuk"; +$a->strings["%1\$s poked %2\$s"] = "%1\$s stootte %2\$s aan"; +$a->strings["%1\$s is currently %2\$s"] = "%1\$s is op dit moment %2\$s"; +$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s labelde %3\$s van %2\$s met %4\$s"; +$a->strings["post/item"] = "bericht/item"; +$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s markeerde %2\$s's %3\$s als favoriet"; +$a->strings["Select"] = "Kies"; +$a->strings["Delete"] = "Verwijder"; +$a->strings["View %s's profile @ %s"] = "Bekijk het profiel van %s @ %s"; +$a->strings["Categories:"] = "Categorieën:"; +$a->strings["Filed under:"] = "Bewaard onder:"; +$a->strings["%s from %s"] = "%s van %s"; +$a->strings["View in context"] = "In context bekijken"; +$a->strings["Please wait"] = "Even geduld"; +$a->strings["remove"] = "verwijder"; +$a->strings["Delete Selected Items"] = "Geselecteerde items verwijderen"; +$a->strings["Follow Thread"] = "Conversatie volgen"; +$a->strings["%s likes this."] = "%s vindt dit leuk."; +$a->strings["%s doesn't like this."] = "%s vindt dit niet leuk."; +$a->strings["%2\$d people like this"] = "%2\$d mensen vinden dit leuk"; +$a->strings["%2\$d people don't like this"] = "%2\$d people vinden dit niet leuk"; +$a->strings["and"] = "en"; +$a->strings[", and %d other people"] = ", en %d andere mensen"; +$a->strings["%s like this."] = "%s vindt dit leuk."; +$a->strings["%s don't like this."] = "%s vindt dit niet leuk."; +$a->strings["Visible to everybody"] = "Zichtbaar voor iedereen"; +$a->strings["Please enter a link URL:"] = "Vul een internetadres/URL in:"; +$a->strings["Please enter a video link/URL:"] = "Vul een videolink/URL in:"; +$a->strings["Please enter an audio link/URL:"] = "Vul een audiolink/URL in:"; +$a->strings["Tag term:"] = "Label:"; +$a->strings["Save to Folder:"] = "Bewaren in map:"; +$a->strings["Where are you right now?"] = "Waar ben je nu?"; +$a->strings["Delete item(s)?"] = "Item(s) verwijderen?"; +$a->strings["Post to Email"] = "Verzenden per e-mail"; +$a->strings["Connectors disabled, since \"%s\" is enabled."] = ""; +$a->strings["Hide your profile details from unknown viewers?"] = "Je profieldetails verbergen voor onbekende bezoekers?"; +$a->strings["Share"] = "Delen"; +$a->strings["Upload photo"] = "Foto uploaden"; +$a->strings["upload photo"] = "Foto uploaden"; +$a->strings["Attach file"] = "Bestand bijvoegen"; +$a->strings["attach file"] = "bestand bijvoegen"; +$a->strings["Insert web link"] = "Voeg een webadres in"; +$a->strings["web link"] = "webadres"; +$a->strings["Insert video link"] = "Voeg video toe"; +$a->strings["video link"] = "video adres"; +$a->strings["Insert audio link"] = "Voeg audio adres toe"; +$a->strings["audio link"] = "audio adres"; +$a->strings["Set your location"] = "Stel uw locatie in"; +$a->strings["set location"] = "Stel uw locatie in"; +$a->strings["Clear browser location"] = "Verwijder locatie uit uw webbrowser"; +$a->strings["clear location"] = "Verwijder locatie uit uw webbrowser"; +$a->strings["Set title"] = "Titel plaatsen"; +$a->strings["Categories (comma-separated list)"] = "Categorieën (komma-gescheiden lijst)"; +$a->strings["Permission settings"] = "Instellingen van rechten"; +$a->strings["permissions"] = "rechten"; +$a->strings["CC: email addresses"] = "CC: e-mailadressen"; +$a->strings["Public post"] = "Openbare post"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Voorbeeld: bob@voorbeeld.nl, an@voorbeeld.be"; +$a->strings["Preview"] = "Voorvertoning"; +$a->strings["Post to Groups"] = "Verzenden naar Groepen"; +$a->strings["Post to Contacts"] = "Verzenden naar Contacten"; +$a->strings["Private post"] = "Privé verzending"; +$a->strings["newer"] = "nieuwere berichten"; +$a->strings["older"] = "oudere berichten"; +$a->strings["prev"] = "vorige"; +$a->strings["first"] = "eerste"; +$a->strings["last"] = "laatste"; +$a->strings["next"] = "volgende"; +$a->strings["Loading more entries..."] = ""; +$a->strings["The end"] = ""; +$a->strings["No contacts"] = "Geen contacten"; +$a->strings["%d Contact"] = array( + 0 => "%d contact", + 1 => "%d contacten", +); +$a->strings["View Contacts"] = "Bekijk contacten"; +$a->strings["Save"] = "Bewaren"; +$a->strings["poke"] = "aanstoten"; +$a->strings["poked"] = "aangestoten"; +$a->strings["ping"] = "ping"; +$a->strings["pinged"] = "gepingd"; +$a->strings["prod"] = "porren"; +$a->strings["prodded"] = "gepord"; +$a->strings["slap"] = "slaan"; +$a->strings["slapped"] = "geslagen"; +$a->strings["finger"] = "finger"; +$a->strings["fingered"] = "gerfingerd"; +$a->strings["rebuff"] = "afpoeieren"; +$a->strings["rebuffed"] = "afgepoeierd"; +$a->strings["happy"] = "Blij"; +$a->strings["sad"] = "Verdrietig"; +$a->strings["mellow"] = "mellow"; +$a->strings["tired"] = "vermoeid"; +$a->strings["perky"] = "parmantig"; +$a->strings["angry"] = "boos"; +$a->strings["stupified"] = "verbijsterd"; +$a->strings["puzzled"] = "onzeker"; +$a->strings["interested"] = "Geïnteresseerd"; +$a->strings["bitter"] = "bitter"; +$a->strings["cheerful"] = "vrolijk"; +$a->strings["alive"] = "levend"; +$a->strings["annoyed"] = "verveeld"; +$a->strings["anxious"] = "bezorgd"; +$a->strings["cranky"] = "humeurig "; +$a->strings["disturbed"] = "verontrust"; +$a->strings["frustrated"] = "gefrustreerd"; +$a->strings["motivated"] = "gemotiveerd"; +$a->strings["relaxed"] = "ontspannen"; +$a->strings["surprised"] = "verbaasd"; +$a->strings["Monday"] = "Maandag"; +$a->strings["Tuesday"] = "Dinsdag"; +$a->strings["Wednesday"] = "Woensdag"; +$a->strings["Thursday"] = "Donderdag"; +$a->strings["Friday"] = "Vrijdag"; +$a->strings["Saturday"] = "Zaterdag"; +$a->strings["Sunday"] = "Zondag"; +$a->strings["January"] = "Januari"; +$a->strings["February"] = "Februari"; +$a->strings["March"] = "Maart"; +$a->strings["April"] = "April"; +$a->strings["May"] = "Mei"; +$a->strings["June"] = "Juni"; +$a->strings["July"] = "Juli"; +$a->strings["August"] = "Augustus"; +$a->strings["September"] = "September"; +$a->strings["October"] = "Oktober"; +$a->strings["November"] = "November"; +$a->strings["December"] = "December"; +$a->strings["View Video"] = "Bekijk Video"; +$a->strings["bytes"] = "bytes"; +$a->strings["Click to open/close"] = "klik om te openen/sluiten"; +$a->strings["link to source"] = "Verwijzing naar bron"; +$a->strings["Select an alternate language"] = "Kies een andere taal"; +$a->strings["activity"] = "activiteit"; +$a->strings["comment"] = array( + 0 => "reactie", + 1 => "reacties", +); +$a->strings["post"] = "bericht"; +$a->strings["Item filed"] = "Item bewaard"; +$a->strings["Logged out."] = "Uitgelogd."; +$a->strings["Login failed."] = "Login mislukt."; +$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = ""; +$a->strings["The error message was:"] = "De foutboodschap was:"; +$a->strings["Image/photo"] = "Afbeelding/foto"; +$a->strings["%2\$s %3\$s"] = ""; +$a->strings["%s wrote the following post"] = ""; +$a->strings["$1 wrote:"] = "$1 schreef:"; +$a->strings["Encrypted content"] = "Versleutelde inhoud"; +$a->strings["Welcome "] = "Welkom"; +$a->strings["Please upload a profile photo."] = "Upload een profielfoto."; +$a->strings["Welcome back "] = "Welkom terug "; +$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = ""; +$a->strings["Embedded content"] = "Ingebedde inhoud"; +$a->strings["Embedding disabled"] = "Inbedden uitgeschakeld"; +$a->strings["Male"] = "Man"; +$a->strings["Female"] = "Vrouw"; +$a->strings["Currently Male"] = "Momenteel mannelijk"; +$a->strings["Currently Female"] = "Momenteel vrouwelijk"; +$a->strings["Mostly Male"] = "Meestal mannelijk"; +$a->strings["Mostly Female"] = "Meestal vrouwelijk"; +$a->strings["Transgender"] = "Transgender"; +$a->strings["Intersex"] = "Interseksueel"; +$a->strings["Transsexual"] = "Transseksueel"; +$a->strings["Hermaphrodite"] = "Hermafrodiet"; +$a->strings["Neuter"] = "Genderneutraal"; +$a->strings["Non-specific"] = "Niet-specifiek"; +$a->strings["Other"] = "Anders"; +$a->strings["Undecided"] = "Onbeslist"; +$a->strings["Males"] = "Manen"; +$a->strings["Females"] = "Vrouwen"; +$a->strings["Gay"] = "Homo"; +$a->strings["Lesbian"] = "Lesbie"; +$a->strings["No Preference"] = "Geen voorkeur"; +$a->strings["Bisexual"] = "Biseksueel"; +$a->strings["Autosexual"] = "Autoseksueel"; +$a->strings["Abstinent"] = "Onthouder"; +$a->strings["Virgin"] = "Maagd"; +$a->strings["Deviant"] = "Afwijkend"; +$a->strings["Fetish"] = "Fetisj"; +$a->strings["Oodles"] = "Veel"; +$a->strings["Nonsexual"] = "Niet seksueel"; +$a->strings["Single"] = "Alleenstaand"; +$a->strings["Lonely"] = "Eenzaam"; +$a->strings["Available"] = "Beschikbaar"; +$a->strings["Unavailable"] = "Onbeschikbaar"; +$a->strings["Has crush"] = "Verliefd"; +$a->strings["Infatuated"] = "Smoorverliefd"; +$a->strings["Dating"] = "Aan het daten"; +$a->strings["Unfaithful"] = "Ontrouw"; +$a->strings["Sex Addict"] = "Seksverslaafd"; +$a->strings["Friends"] = "Vrienden"; +$a->strings["Friends/Benefits"] = "Vriendschap plus"; +$a->strings["Casual"] = "Ongebonden/vluchtig"; +$a->strings["Engaged"] = "Verloofd"; +$a->strings["Married"] = "Getrouwd"; +$a->strings["Imaginarily married"] = "Denkbeeldig getrouwd"; +$a->strings["Partners"] = "Partners"; +$a->strings["Cohabiting"] = "Samenwonend"; +$a->strings["Common law"] = "Common-law-huwelijk"; +$a->strings["Happy"] = "Blij"; +$a->strings["Not looking"] = ""; +$a->strings["Swinger"] = "Swinger"; +$a->strings["Betrayed"] = "Bedrogen"; +$a->strings["Separated"] = "Uit elkaar"; +$a->strings["Unstable"] = "Onstabiel"; +$a->strings["Divorced"] = "Gescheiden"; +$a->strings["Imaginarily divorced"] = "Denkbeeldig gescheiden"; +$a->strings["Widowed"] = "Weduwnaar/weduwe"; +$a->strings["Uncertain"] = "Onzeker"; +$a->strings["It's complicated"] = "Het is gecompliceerd"; +$a->strings["Don't care"] = "Kan me niet schelen"; +$a->strings["Ask me"] = "Vraag me"; +$a->strings["An invitation is required."] = "Een uitnodiging is vereist."; +$a->strings["Invitation could not be verified."] = "Uitnodiging kon niet geverifieerd worden."; +$a->strings["Invalid OpenID url"] = "Ongeldige OpenID url"; +$a->strings["Please enter the required information."] = "Vul de vereiste informatie in."; +$a->strings["Please use a shorter name."] = "gebruik een kortere naam"; +$a->strings["Name too short."] = "Naam te kort"; +$a->strings["That doesn't appear to be your full (First Last) name."] = "Dat lijkt niet je volledige naam (voor- en achternaam) te zijn."; +$a->strings["Your email domain is not among those allowed on this site."] = "Je e-maildomein is op deze website niet toegestaan."; +$a->strings["Not a valid email address."] = "Geen geldig e-mailadres."; +$a->strings["Cannot use that email."] = "Ik kan die e-mail niet gebruiken."; +$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Je \"bijnaam\" kan alleen \"a-z\", \"0-9\", \"-\", en \"_\" bevatten, en moet ook met een letter beginnen."; +$a->strings["Nickname is already registered. Please choose another."] = "Bijnaam is al geregistreerd. Kies een andere."; +$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Bijnaam was ooit hier geregistreerd en kan niet herbruikt worden. Kies een andere."; +$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERNSTIGE FOUT: aanmaken van beveiligingssleutels mislukt."; +$a->strings["An error occurred during registration. Please try again."] = ""; +$a->strings["An error occurred creating your default profile. Please try again."] = ""; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = ""; +$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."] = ""; +$a->strings["Registration details for %s"] = "Registratie details voor %s"; +$a->strings["Visible to everybody"] = "Zichtbaar voor iedereen"; +$a->strings["This entry was edited"] = ""; +$a->strings["Private Message"] = "Privébericht"; +$a->strings["Edit"] = "Bewerken"; +$a->strings["save to folder"] = "Bewaren in map"; +$a->strings["add star"] = "ster toevoegen"; +$a->strings["remove star"] = "ster verwijderen"; +$a->strings["toggle star status"] = "ster toevoegen of verwijderen"; +$a->strings["starred"] = "met ster"; +$a->strings["ignore thread"] = ""; +$a->strings["unignore thread"] = ""; +$a->strings["toggle ignore status"] = ""; +$a->strings["ignored"] = ""; +$a->strings["add tag"] = "label toevoegen"; +$a->strings["I like this (toggle)"] = "Vind ik leuk"; +$a->strings["like"] = "leuk"; +$a->strings["I don't like this (toggle)"] = "Vind ik niet leuk"; +$a->strings["dislike"] = "niet leuk"; +$a->strings["Share this"] = "Delen"; +$a->strings["share"] = "Delen"; +$a->strings["to"] = "aan"; +$a->strings["via"] = "via"; +$a->strings["Wall-to-Wall"] = "wall-to-wall"; +$a->strings["via Wall-To-Wall:"] = "via wall-to-wall"; +$a->strings["%d comment"] = array( + 0 => "%d reactie", + 1 => "%d reacties", +); +$a->strings["This is you"] = "Dit ben jij"; +$a->strings["Bold"] = "Vet"; +$a->strings["Italic"] = "Cursief"; +$a->strings["Underline"] = "Onderstrepen"; +$a->strings["Quote"] = "Citeren"; +$a->strings["Code"] = "Broncode"; +$a->strings["Image"] = "Afbeelding"; +$a->strings["Link"] = "Link"; +$a->strings["Video"] = "Video"; +$a->strings["Item not available."] = "Item niet beschikbaar"; +$a->strings["Item was not found."] = "Item niet gevonden"; +$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = ""; +$a->strings["No recipient selected."] = "Geen ontvanger geselecteerd."; +$a->strings["Unable to check your home location."] = "Niet in staat om je tijdlijn-locatie vast te stellen"; +$a->strings["Message could not be sent."] = "Bericht kon niet verzonden worden."; +$a->strings["Message collection failure."] = "Fout bij het verzamelen van berichten."; +$a->strings["Message sent."] = "Bericht verzonden."; +$a->strings["No recipient."] = "Geen ontvanger."; +$a->strings["Send Private Message"] = "Verstuur privébericht"; +$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Als je wilt dat %s antwoordt moet je nakijken dat de privacy-instellingen op jouw website privéberichten van onbekende afzenders toelaat."; +$a->strings["To:"] = "Aan:"; +$a->strings["Subject:"] = "Onderwerp:"; +$a->strings["Your message:"] = "Jouw bericht:"; +$a->strings["Group created."] = "Groep aangemaakt."; +$a->strings["Could not create group."] = "Kon de groep niet aanmaken."; +$a->strings["Group not found."] = "Groep niet gevonden."; +$a->strings["Group name changed."] = "Groepsnaam gewijzigd."; +$a->strings["Save Group"] = ""; +$a->strings["Create a group of contacts/friends."] = "Maak een groep contacten/vrienden aan."; +$a->strings["Group Name: "] = "Groepsnaam:"; +$a->strings["Group removed."] = "Groep verwijderd."; +$a->strings["Unable to remove group."] = "Niet in staat om groep te verwijderen."; +$a->strings["Group Editor"] = "Groepsbewerker"; +$a->strings["Members"] = "Leden"; +$a->strings["All Contacts"] = "Alle Contacten"; +$a->strings["Click on a contact to add or remove."] = "Klik op een contact om het toe te voegen of te verwijderen."; +$a->strings["No potential page delegates located."] = "Niemand gevonden waar het paginabeheer mogelijk aan uitbesteed kan worden."; +$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."] = "Personen waaraan het beheer is uitbesteed kunnen alle onderdelen van een account/pagina beheren, behalve de basisinstellingen van een account. Besteed je persoonlijke account daarom niet uit aan personen die je niet volledig vertrouwd."; +$a->strings["Existing Page Managers"] = "Bestaande paginabeheerders"; +$a->strings["Existing Page Delegates"] = "Bestaande personen waaraan het paginabeheer is uitbesteed"; +$a->strings["Potential Delegates"] = "Mogelijke personen waaraan het paginabeheer kan worden uitbesteed "; +$a->strings["Remove"] = "Verwijderen"; +$a->strings["Add"] = "Toevoegen"; +$a->strings["No entries."] = "Geen gegevens."; +$a->strings["Invalid request identifier."] = "Ongeldige request identifier."; +$a->strings["Discard"] = "Verwerpen"; +$a->strings["Ignore"] = "Negeren"; +$a->strings["System"] = "Systeem"; +$a->strings["Personal"] = "Persoonlijk"; +$a->strings["Show Ignored Requests"] = "Toon genegeerde verzoeken"; +$a->strings["Hide Ignored Requests"] = "Verberg genegeerde verzoeken"; +$a->strings["Notification type: "] = "Notificatiesoort:"; +$a->strings["Friend Suggestion"] = "Vriendschapsvoorstel"; +$a->strings["suggested by %s"] = "Voorgesteld door %s"; +$a->strings["Hide this contact from others"] = "Verberg dit contact voor anderen"; +$a->strings["Post a new friend activity"] = "Bericht over een nieuwe vriend"; +$a->strings["if applicable"] = "Indien toepasbaar"; +$a->strings["Approve"] = "Goedkeuren"; +$a->strings["Claims to be known to you: "] = "Denkt dat u hem of haar kent:"; +$a->strings["yes"] = "Ja"; +$a->strings["no"] = "Nee"; +$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: "] = ""; +$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: "] = ""; +$a->strings["Friend"] = "Vriend"; +$a->strings["Sharer"] = "Deler"; +$a->strings["Fan/Admirer"] = "Fan/Bewonderaar"; +$a->strings["Friend/Connect Request"] = "Vriendschapsverzoek"; +$a->strings["New Follower"] = "Nieuwe Volger"; +$a->strings["No introductions."] = "Geen vriendschaps- of connectieverzoeken."; +$a->strings["%s liked %s's post"] = "%s vond het bericht van %s leuk"; +$a->strings["%s disliked %s's post"] = "%s vond het bericht van %s niet leuk"; +$a->strings["%s is now friends with %s"] = "%s is nu bevriend met %s"; +$a->strings["%s created a new post"] = "%s schreef een nieuw bericht"; +$a->strings["%s commented on %s's post"] = "%s gaf een reactie op het bericht van %s"; +$a->strings["No more network notifications."] = "Geen netwerknotificaties meer"; +$a->strings["Network Notifications"] = "Netwerknotificaties"; +$a->strings["No more system notifications."] = "Geen systeemnotificaties meer."; +$a->strings["System Notifications"] = "Systeemnotificaties"; +$a->strings["No more personal notifications."] = "Geen persoonlijke notificaties meer"; +$a->strings["Personal Notifications"] = "Persoonlijke notificaties"; +$a->strings["No more home notifications."] = "Geen tijdlijn-notificaties meer"; +$a->strings["Home Notifications"] = "Tijdlijn-notificaties"; +$a->strings["No profile"] = "Geen profiel"; +$a->strings["everybody"] = "iedereen"; +$a->strings["Account"] = "Account"; +$a->strings["Additional features"] = "Extra functies"; +$a->strings["Display"] = "Weergave"; +$a->strings["Social Networks"] = "Sociale netwerken"; +$a->strings["Plugins"] = "Plugins"; +$a->strings["Connected apps"] = "Verbonden applicaties"; +$a->strings["Export personal data"] = "Persoonlijke gegevens exporteren"; +$a->strings["Remove account"] = "Account verwijderen"; +$a->strings["Missing some important data!"] = "Een belangrijk gegeven ontbreekt!"; +$a->strings["Update"] = "Wijzigen"; +$a->strings["Failed to connect with email account using the settings provided."] = "Ik kon geen verbinding maken met het e-mail account met de gegeven instellingen."; +$a->strings["Email settings updated."] = "E-mail instellingen bijgewerkt.."; +$a->strings["Features updated"] = "Functies bijgewerkt"; +$a->strings["Relocate message has been send to your contacts"] = ""; +$a->strings["Passwords do not match. Password unchanged."] = "Wachtwoorden komen niet overeen. Wachtwoord niet gewijzigd."; +$a->strings["Empty passwords are not allowed. Password unchanged."] = "Lege wachtwoorden zijn niet toegelaten. Wachtwoord niet gewijzigd."; +$a->strings["Wrong password."] = "Verkeerd wachtwoord."; +$a->strings["Password changed."] = "Wachtwoord gewijzigd."; +$a->strings["Password update failed. Please try again."] = "Wachtwoord-)wijziging mislukt. Probeer opnieuw."; +$a->strings[" Please use a shorter name."] = "Gebruik een kortere naam."; +$a->strings[" Name too short."] = "Naam te kort."; +$a->strings["Wrong Password"] = "Verkeerd wachtwoord"; +$a->strings[" Not valid email."] = "Geen geldig e-mailadres."; +$a->strings[" Cannot change to that email."] = "Kan niet veranderen naar die e-mail."; +$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Privéforum/-groep heeft geen privacyrechten. De standaard privacygroep wordt gebruikt."; +$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Privéforum/-groep heeft geen privacyrechten en geen standaard privacygroep."; +$a->strings["Settings updated."] = "Instellingen bijgewerkt."; +$a->strings["Add application"] = "Toepassing toevoegen"; +$a->strings["Save Settings"] = "Instellingen opslaan"; +$a->strings["Name"] = "Naam"; +$a->strings["Consumer Key"] = "Gebruikerssleutel"; +$a->strings["Consumer Secret"] = "Gebruikersgeheim"; +$a->strings["Redirect"] = "Doorverwijzing"; +$a->strings["Icon url"] = "URL pictogram"; +$a->strings["You can't edit this application."] = "Je kunt deze toepassing niet wijzigen."; +$a->strings["Connected Apps"] = "Verbonden applicaties"; +$a->strings["Client key starts with"] = ""; +$a->strings["No name"] = "Geen naam"; +$a->strings["Remove authorization"] = "Verwijder authorisatie"; +$a->strings["No Plugin settings configured"] = ""; +$a->strings["Plugin Settings"] = "Plugin Instellingen"; +$a->strings["Off"] = "Uit"; +$a->strings["On"] = "Aan"; +$a->strings["Additional Features"] = "Extra functies"; +$a->strings["Built-in support for %s connectivity is %s"] = "Ingebouwde ondersteuning voor connectiviteit met %s is %s"; +$a->strings["enabled"] = "ingeschakeld"; +$a->strings["disabled"] = "uitgeschakeld"; +$a->strings["StatusNet"] = "StatusNet"; +$a->strings["Email access is disabled on this site."] = "E-mailtoegang is op deze website uitgeschakeld."; +$a->strings["Email/Mailbox Setup"] = "E-mail Instellen"; +$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Als je wilt communiceren met e-mail contacten via deze dienst (optioneel), moet je hier opgeven hoe ik jouw mailbox kan bereiken."; +$a->strings["Last successful email check:"] = "Laatste succesvolle e-mail controle:"; +$a->strings["IMAP server name:"] = "IMAP server naam:"; +$a->strings["IMAP port:"] = "IMAP poort:"; +$a->strings["Security:"] = "Beveiliging:"; +$a->strings["None"] = "Geen"; +$a->strings["Email login name:"] = "E-mail login naam:"; +$a->strings["Email password:"] = "E-mail wachtwoord:"; +$a->strings["Reply-to address:"] = "Antwoord adres:"; +$a->strings["Send public posts to all email contacts:"] = "Openbare posts naar alle e-mail contacten versturen:"; +$a->strings["Action after import:"] = "Actie na importeren:"; +$a->strings["Mark as seen"] = "Als 'gelezen' markeren"; +$a->strings["Move to folder"] = "Naar map verplaatsen"; +$a->strings["Move to folder:"] = "Verplaatsen naar map:"; +$a->strings["No special theme for mobile devices"] = "Geen speciaal thema voor mobiele apparaten"; +$a->strings["Display Settings"] = "Scherminstellingen"; +$a->strings["Display Theme:"] = "Schermthema:"; +$a->strings["Mobile Theme:"] = "Mobiel thema:"; +$a->strings["Update browser every xx seconds"] = "Browser elke xx seconden verversen"; +$a->strings["Minimum of 10 seconds, no maximum"] = "Minimum 10 seconden, geen maximum"; +$a->strings["Number of items to display per page:"] = "Aantal items te tonen per pagina:"; +$a->strings["Maximum of 100 items"] = "Maximum 100 items"; +$a->strings["Number of items to display per page when viewed from mobile device:"] = "Aantal items per pagina als je een mobiel toestel gebruikt:"; +$a->strings["Don't show emoticons"] = "Emoticons niet tonen"; +$a->strings["Don't show notices"] = ""; +$a->strings["Infinite scroll"] = "Oneindig scrollen"; +$a->strings["Automatic updates only at the top of the network page"] = ""; +$a->strings["User Types"] = "Gebruikerstypes"; +$a->strings["Community Types"] = "Forum/groepstypes"; +$a->strings["Normal Account Page"] = "Normale accountpagina"; +$a->strings["This account is a normal personal profile"] = "Deze account is een normaal persoonlijk profiel"; +$a->strings["Soapbox Page"] = "Zeepkist-pagina"; +$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Keur automatisch alle vriendschaps-/connectieverzoeken goed als fans met alleen recht tot lezen."; +$a->strings["Community Forum/Celebrity Account"] = "Forum/groeps- of beroemdheid-account"; +$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Keur automatisch alle vriendschaps-/connectieverzoeken goed als fans met recht tot lezen en schrijven."; +$a->strings["Automatic Friend Page"] = "Automatisch Vriendschapspagina"; +$a->strings["Automatically approve all connection/friend requests as friends"] = "Keur automatisch alle vriendschaps-/connectieverzoeken goed als vrienden."; +$a->strings["Private Forum [Experimental]"] = "Privé-forum [experimenteel]"; +$a->strings["Private forum - approved members only"] = "Privé-forum - enkel voor goedgekeurde leden"; +$a->strings["OpenID:"] = "OpenID:"; +$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Optioneel) Laat dit OpenID toe om in te loggen op deze account."; +$a->strings["Publish your default profile in your local site directory?"] = "Je standaardprofiel in je lokale gids publiceren?"; +$a->strings["No"] = "Nee"; +$a->strings["Publish your default profile in the global social directory?"] = "Je standaardprofiel in de globale sociale gids publiceren?"; +$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Je vrienden/contacten verbergen voor bezoekers van je standaard profiel?"; +$a->strings["If enabled, posting public messages to Diaspora and other networks isn't possible."] = ""; +$a->strings["Allow friends to post to your profile page?"] = "Vrienden toestaan om op jou profielpagina te posten?"; +$a->strings["Allow friends to tag your posts?"] = "Sta vrienden toe om jouw berichten te labelen?"; +$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Sta je mij toe om jou als mogelijke vriend voor te stellen aan nieuwe leden?"; +$a->strings["Permit unknown people to send you private mail?"] = "Mogen onbekende personen jou privé berichten sturen?"; +$a->strings["Profile is not published."] = "Profiel is niet gepubliceerd."; +$a->strings["or"] = "of"; +$a->strings["Your Identity Address is"] = "Jouw Identiteitsadres is"; +$a->strings["Automatically expire posts after this many days:"] = "Laat berichten automatisch vervallen na zo veel dagen:"; +$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Berichten zullen niet vervallen indien leeg. Vervallen berichten zullen worden verwijderd."; +$a->strings["Advanced expiration settings"] = "Geavanceerde instellingen voor vervallen"; +$a->strings["Advanced Expiration"] = "Geavanceerd Verval:"; +$a->strings["Expire posts:"] = "Laat berichten vervallen:"; +$a->strings["Expire personal notes:"] = "Laat persoonlijke aantekeningen verlopen:"; +$a->strings["Expire starred posts:"] = "Laat berichten met ster verlopen"; +$a->strings["Expire photos:"] = "Laat foto's vervallen:"; +$a->strings["Only expire posts by others:"] = "Laat alleen berichten door anderen vervallen:"; +$a->strings["Account Settings"] = "Account Instellingen"; +$a->strings["Password Settings"] = "Wachtwoord Instellingen"; +$a->strings["New Password:"] = "Nieuw Wachtwoord:"; +$a->strings["Confirm:"] = "Bevestig:"; +$a->strings["Leave password fields blank unless changing"] = "Laat de wachtwoord-velden leeg, tenzij je het wilt veranderen"; +$a->strings["Current Password:"] = "Huidig wachtwoord:"; +$a->strings["Your current password to confirm the changes"] = "Je huidig wachtwoord om de wijzigingen te bevestigen"; +$a->strings["Password:"] = "Wachtwoord:"; +$a->strings["Basic Settings"] = "Basis Instellingen"; +$a->strings["Email Address:"] = "E-mailadres:"; +$a->strings["Your Timezone:"] = "Je Tijdzone:"; +$a->strings["Default Post Location:"] = "Standaard locatie:"; +$a->strings["Use Browser Location:"] = "Gebruik Webbrowser Locatie:"; +$a->strings["Security and Privacy Settings"] = "Instellingen voor Beveiliging en Privacy"; +$a->strings["Maximum Friend Requests/Day:"] = "Maximum aantal vriendschapsverzoeken per dag:"; +$a->strings["(to prevent spam abuse)"] = "(om spam misbruik te voorkomen)"; +$a->strings["Default Post Permissions"] = "Standaard rechten voor nieuwe berichten"; +$a->strings["(click to open/close)"] = "(klik om te openen/sluiten)"; +$a->strings["Show to Groups"] = "Tonen aan groepen"; +$a->strings["Show to Contacts"] = "Tonen aan contacten"; +$a->strings["Default Private Post"] = "Standaard Privé Post"; +$a->strings["Default Public Post"] = "Standaard Publieke Post"; +$a->strings["Default Permissions for New Posts"] = "Standaard rechten voor nieuwe berichten"; +$a->strings["Maximum private messages per day from unknown people:"] = "Maximum aantal privé-berichten per dag van onbekende personen:"; +$a->strings["Notification Settings"] = "Notificatie Instellingen"; +$a->strings["By default post a status message when:"] = "Post automatisch een bericht op je tijdlijn wanneer:"; +$a->strings["accepting a friend request"] = "Een vriendschapsverzoek accepteren"; +$a->strings["joining a forum/community"] = "Lid worden van een groep/forum"; +$a->strings["making an interesting profile change"] = "Een interessante verandering aan je profiel"; +$a->strings["Send a notification email when:"] = "Stuur een notificatie e-mail wanneer:"; +$a->strings["You receive an introduction"] = "Je ontvangt een vriendschaps- of connectieverzoek"; +$a->strings["Your introductions are confirmed"] = "Jouw vriendschaps- of connectieverzoeken zijn bevestigd"; +$a->strings["Someone writes on your profile wall"] = "Iemand iets op je tijdlijn schrijft"; +$a->strings["Someone writes a followup comment"] = "Iemand een reactie schrijft"; +$a->strings["You receive a private message"] = "Je een privé-bericht ontvangt"; +$a->strings["You receive a friend suggestion"] = "Je een suggestie voor een vriendschap ontvangt"; +$a->strings["You are tagged in a post"] = "Je expliciet in een bericht bent genoemd"; +$a->strings["You are poked/prodded/etc. in a post"] = "Je in een bericht bent aangestoten/gepord/etc."; +$a->strings["Text-only notification emails"] = ""; +$a->strings["Send text only notification emails, without the html part"] = ""; +$a->strings["Advanced Account/Page Type Settings"] = ""; +$a->strings["Change the behaviour of this account for special situations"] = ""; +$a->strings["Relocate"] = ""; +$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."] = ""; +$a->strings["Resend relocate message to contacts"] = ""; +$a->strings["Common Friends"] = "Gedeelde Vrienden"; +$a->strings["No contacts in common."] = "Geen gedeelde contacten."; +$a->strings["Remote privacy information not available."] = "Privacyinformatie op afstand niet beschikbaar."; +$a->strings["Visible to:"] = "Zichtbaar voor:"; $a->strings["%d contact edited."] = array( 0 => "", 1 => "", @@ -13,7 +963,6 @@ $a->strings["Could not access contact record."] = "Kon geen toegang krijgen tot $a->strings["Could not locate selected profile."] = "Kon het geselecteerde profiel niet vinden."; $a->strings["Contact updated."] = "Contact bijgewerkt."; $a->strings["Failed to update contact record."] = "Ik kon de contactgegevens niet aanpassen."; -$a->strings["Permission denied."] = "Toegang geweigerd"; $a->strings["Contact has been blocked"] = "Contact is geblokkeerd"; $a->strings["Contact has been unblocked"] = "Contact is gedeblokkeerd"; $a->strings["Contact has been ignored"] = "Contact wordt genegeerd"; @@ -21,8 +970,6 @@ $a->strings["Contact has been unignored"] = "Contact wordt niet meer genegeerd"; $a->strings["Contact has been archived"] = "Contact is gearchiveerd"; $a->strings["Contact has been unarchived"] = "Contact is niet meer gearchiveerd"; $a->strings["Do you really want to delete this contact?"] = "Wil je echt dit contact verwijderen?"; -$a->strings["Yes"] = "Ja"; -$a->strings["Cancel"] = "Annuleren"; $a->strings["Contact has been removed."] = "Contact is verwijderd."; $a->strings["You are mutual friends with %s"] = "Je bent wederzijds bevriend met %s"; $a->strings["You are sharing with %s"] = "Je deelt met %s"; @@ -33,16 +980,11 @@ $a->strings["(Update was successful)"] = "(Wijziging is geslaagd)"; $a->strings["(Update was not successful)"] = "(Wijziging is niet geslaagd)"; $a->strings["Suggest friends"] = "Stel vrienden voor"; $a->strings["Network type: %s"] = "Netwerk type: %s"; -$a->strings["%d contact in common"] = array( - 0 => "%d gedeeld contact", - 1 => "%d gedeelde contacten", -); $a->strings["View all contacts"] = "Alle contacten zien"; $a->strings["Unblock"] = "Blokkering opheffen"; $a->strings["Block"] = "Blokkeren"; $a->strings["Toggle Blocked status"] = "Schakel geblokkeerde status"; $a->strings["Unignore"] = "Negeer niet meer"; -$a->strings["Ignore"] = "Negeren"; $a->strings["Toggle Ignored status"] = "Schakel negeerstatus"; $a->strings["Unarchive"] = "Archiveer niet meer"; $a->strings["Archive"] = "Archiveer"; @@ -50,8 +992,11 @@ $a->strings["Toggle Archive status"] = "Schakel archiveringsstatus"; $a->strings["Repair"] = "Herstellen"; $a->strings["Advanced Contact Settings"] = "Geavanceerde instellingen voor contacten"; $a->strings["Communications lost with this contact!"] = "Communicatie met dit contact is verbroken!"; +$a->strings["Fetch further information for feeds"] = ""; +$a->strings["Disabled"] = ""; +$a->strings["Fetch information"] = ""; +$a->strings["Fetch information and keywords"] = ""; $a->strings["Contact Editor"] = "Contactbewerker"; -$a->strings["Submit"] = "Opslaan"; $a->strings["Profile Visibility"] = "Zichtbaarheid profiel"; $a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Kies het profiel dat getoond moet worden wanneer %s uw profiel bezoekt. "; $a->strings["Contact Information / Notes"] = "Contactinformatie / aantekeningen"; @@ -68,19 +1013,13 @@ $a->strings["Update now"] = "Wijzig nu"; $a->strings["Currently blocked"] = "Op dit moment geblokkeerd"; $a->strings["Currently ignored"] = "Op dit moment genegeerd"; $a->strings["Currently archived"] = "Op dit moment gearchiveerd"; -$a->strings["Hide this contact from others"] = "Verberg dit contact voor anderen"; $a->strings["Replies/likes to your public posts may still be visible"] = "Antwoorden of 'vind ik leuk's op je openbare posts kunnen nog zichtbaar zijn"; $a->strings["Notification for new posts"] = "Meldingen voor nieuwe berichten"; $a->strings["Send a notification of every new post of this contact"] = ""; -$a->strings["Fetch further information for feeds"] = ""; -$a->strings["Disabled"] = ""; -$a->strings["Fetch information"] = ""; -$a->strings["Fetch information and keywords"] = ""; $a->strings["Blacklisted keywords"] = ""; $a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = ""; $a->strings["Suggestions"] = "Voorstellen"; $a->strings["Suggest potential friends"] = "Stel vrienden voor"; -$a->strings["All Contacts"] = "Alle Contacten"; $a->strings["Show all contacts"] = "Toon alle contacten"; $a->strings["Unblocked"] = "Niet geblokkeerd"; $a->strings["Only show unblocked contacts"] = "Toon alleen niet-geblokkeerde contacten"; @@ -96,309 +1035,116 @@ $a->strings["Mutual Friendship"] = "Wederzijdse vriendschap"; $a->strings["is a fan of yours"] = "Is een fan van jou"; $a->strings["you are a fan of"] = "Jij bent een fan van"; $a->strings["Edit contact"] = "Contact bewerken"; -$a->strings["Contacts"] = "Contacten"; $a->strings["Search your contacts"] = "Doorzoek je contacten"; $a->strings["Finding: "] = "Gevonden:"; -$a->strings["Find"] = "Zoek"; -$a->strings["Update"] = "Wijzigen"; -$a->strings["Delete"] = "Verwijder"; -$a->strings["No profile"] = "Geen profiel"; -$a->strings["Manage Identities and/or Pages"] = "Beheer Identiteiten en/of Pagina's"; -$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Wissel tussen verschillende identiteiten of forum/groeppagina's die jouw accountdetails delen of waar je \"beheerdersrechten\" hebt gekregen."; -$a->strings["Select an identity to manage: "] = "Selecteer een identiteit om te beheren:"; +$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = ""; +$a->strings["Or - did you try to upload an empty file?"] = ""; +$a->strings["File exceeds size limit of %d"] = "Bestand is groter dan de toegelaten %d"; +$a->strings["File upload failed."] = "Uploaden van bestand mislukt."; +$a->strings["[Embedded content - reload page to view]"] = "[Ingebedde inhoud - herlaad pagina om het te bekijken]"; +$a->strings["Export account"] = "Account exporteren"; +$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."] = "Je account informatie en contacten exporteren. Gebruik dit om een backup van je account te maken en/of om het te verhuizen naar een andere server."; +$a->strings["Export all"] = "Alles exporteren"; +$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)"] = "Je account info, contacten en al je items in json formaat exporteren. Dit kan een heel groot bestand worden, en kan lang duren. Gebruik dit om een volledige backup van je account te maken (foto's worden niet geexporteerd)"; +$a->strings["Registration successful. Please check your email for further instructions."] = "Registratie geslaagd. Kijk je e-mail na voor verdere instructies."; +$a->strings["Failed to send email message. Here your accout details:
    login: %s
    password: %s

    You can change your password after login."] = ""; +$a->strings["Your registration can not be processed."] = "Je registratie kan niet verwerkt worden."; +$a->strings["Your registration is pending approval by the site owner."] = "Jouw registratie wacht op goedkeuring van de beheerder."; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Deze website heeft het toegelaten dagelijkse aantal registraties overschreden. Probeer morgen opnieuw."; +$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Je kunt (optioneel) dit formulier invullen via OpenID door je OpenID in te geven en op 'Registreren' te klikken."; +$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Laat dit veld leeg als je niet vertrouwd bent met OpenID, en vul de rest van de items in."; +$a->strings["Your OpenID (optional): "] = "Je OpenID (optioneel):"; +$a->strings["Include your profile in member directory?"] = "Je profiel in de ledengids opnemen?"; +$a->strings["Membership on this site is by invitation only."] = "Lidmaatschap van deze website is uitsluitend op uitnodiging."; +$a->strings["Your invitation ID: "] = "Je uitnodigingsid:"; +$a->strings["Registration"] = "Registratie"; +$a->strings["Your Full Name (e.g. Joe Smith): "] = "Je volledige naam (bijv. Jan Jansens):"; +$a->strings["Your Email Address: "] = "Je email adres:"; +$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Kies een bijnaam voor je profiel. Deze moet met een letter beginnen. Je profieladres op deze website zal dan 'bijnaam@\$sitename' zijn."; +$a->strings["Choose a nickname: "] = "Kies een bijnaam:"; +$a->strings["Import"] = "Importeren"; +$a->strings["Import your profile to this friendica instance"] = ""; $a->strings["Post successful."] = "Bericht succesvol geplaatst."; -$a->strings["Permission denied"] = "Toegang geweigerd"; -$a->strings["Invalid profile identifier."] = "Ongeldige profiel-identificatie."; -$a->strings["Profile Visibility Editor"] = ""; -$a->strings["Profile"] = "Profiel"; -$a->strings["Click on a contact to add or remove."] = "Klik op een contact om het toe te voegen of te verwijderen."; -$a->strings["Visible To"] = "Zichtbaar voor"; -$a->strings["All Contacts (with secure profile access)"] = "Alle contacten (met veilige profieltoegang)"; -$a->strings["Item not found."] = "Item niet gevonden."; -$a->strings["Public access denied."] = "Niet vrij toegankelijk"; +$a->strings["System down for maintenance"] = "Systeem onbeschikbaar wegens onderhoud"; $a->strings["Access to this profile has been restricted."] = "Toegang tot dit profiel is beperkt."; -$a->strings["Item has been removed."] = "Item is verwijderd."; -$a->strings["Welcome to Friendica"] = "Welkom bij Friendica"; -$a->strings["New Member Checklist"] = "Checklist voor nieuwe leden"; -$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."] = "We willen je een paar tips en verwijzingen aanreiken om je een aangename ervaring te bezorgen. Klik op een item om de relevante pagina's te bezoeken. Een verwijzing naar deze pagina zal twee weken lang na je registratie zichtbaar zijn op je tijdlijn. Daarna zal de verwijzing stilletjes verdwijnen."; -$a->strings["Getting Started"] = "Aan de slag"; -$a->strings["Friendica Walk-Through"] = "Doorloop Friendica"; -$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Op je Snelstart pagina kun je een korte inleiding vinden over je profiel en netwerk tabs, om enkele nieuwe connecties te leggen en groepen te vinden om lid van te worden."; -$a->strings["Settings"] = "Instellingen"; -$a->strings["Go to Your Settings"] = "Ga naar je instellingen"; -$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Verander je initieel wachtwoord op je instellingenpagina. Noteer ook het adres van je identiteit. Dit ziet er uit als een e-mailadres - en zal nuttig zijn om vrienden te maken op het vrije sociale web."; -$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Controleer ook de andere instellingen, in het bijzonder de privacy-instellingen. Een niet-gepubliceerd adres is zoals een privé-telefoonnummer. In het algemeen wil je waarschijnlijk je adres publiceren - tenzij al je vrienden en mogelijke vrienden precies weten hoe je te vinden."; -$a->strings["Upload Profile Photo"] = "Profielfoto uploaden"; -$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Upload een profielfoto, als je dat nog niet gedaan hebt. Studies tonen aan dat mensen met echte foto's van zichzelf tien keer gemakkelijker vrienden maken dan mensen die dat niet doen."; -$a->strings["Edit Your Profile"] = "Bewerk je profiel"; -$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Bewerk je standaard profiel zoals je wilt. Controleer de instellingen om je vriendenlijst te verbergen, en om je profiel voor ongekende bezoekers te verbergen."; -$a->strings["Profile Keywords"] = "Sleutelwoorden voor dit profiel"; -$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Stel enkele openbare sleutelwoorden in voor je standaard profiel die je interesses beschrijven. We kunnen dan misschien mensen vinden met gelijkaardige interesses, en vrienden voorstellen."; -$a->strings["Connecting"] = "Verbinding aan het maken"; -$a->strings["Facebook"] = "Facebook"; -$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Machtig de Facebook Connector als je een Facebook account hebt. We zullen (optioneel) al je Facebook vrienden en conversaties importeren."; -$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Als dit jouw eigen persoonlijke server is kan het installeren van de Facebook toevoeging je overgang naar het vrije sociale web vergemakkelijken."; -$a->strings["Importing Emails"] = "E-mails importeren"; -$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Vul je e-mailtoegangsinformatie in op je pagina met verbindingsinstellingen als je vrienden of mailinglijsten uit je e-mail-inbox wilt importeren, en met hen wilt communiceren"; -$a->strings["Go to Your Contacts Page"] = "Ga naar je contactenpagina"; -$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = "Je contactenpagina is jouw poort om vriendschappen te beheren en verbinding te leggen met vrienden op andere netwerken. Je kunt hun adres of URL toevoegen in de Voeg nieuw contact toe dialoog."; -$a->strings["Go to Your Site's Directory"] = "Ga naar de gids van je website"; -$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "In de gids vind je andere mensen in dit netwerk of op andere federatieve sites. Zoek naar het woord Connect of Follow op hun profielpagina (meestal aan de linkerkant). Vul je eigen identiteitsadres in wanneer daar om wordt gevraagd."; -$a->strings["Finding New People"] = "Nieuwe mensen vinden"; -$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Op het zijpaneel van de Contacten pagina vind je verschillende tools om nieuwe vrienden te zoeken. We kunnen mensen op interesses matchen, mensen opzoeken op naam of hobby, en suggesties doen gebaseerd op netwerk-relaties. Op een nieuwe webstek beginnen vriendschapssuggesties meestal binnen de 24 uur beschikbaar te worden."; -$a->strings["Groups"] = "Groepen"; -$a->strings["Group Your Contacts"] = "Groepeer je contacten"; -$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Als je een aantal vrienden gemaakt hebt kun je ze in je eigen conversatiegroepen indelen vanuit de zijbalk van je 'Conacten' pagina, en dan kun je met elke groep apart contact houden op je Netwerk pagina. "; -$a->strings["Why Aren't My Posts Public?"] = "Waarom zijn mijn berichten niet openbaar?"; -$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respecteert je privacy. Standaard zullen je berichten alleen zichtbaar zijn voor personen die jij als vriend hebt toegevoegd. Lees de help (zie de verwijzing hierboven) voor meer informatie."; -$a->strings["Getting Help"] = "Hulp krijgen"; -$a->strings["Go to the Help Section"] = "Ga naar de help"; -$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Je kunt onze help pagina's raadplegen voor gedetailleerde informatie over andere functies van dit programma."; -$a->strings["OpenID protocol error. No ID returned."] = "OpenID protocol fout. Geen ID Gevonden."; -$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Account niet gevonden, en OpenID-registratie is niet toegelaten op deze website."; -$a->strings["Login failed."] = "Login mislukt."; -$a->strings["Image uploaded but image cropping failed."] = "Afbeelding opgeladen, maar bijsnijden mislukt."; -$a->strings["Profile Photos"] = "Profielfoto's"; -$a->strings["Image size reduction [%s] failed."] = "Verkleining van de afbeelding [%s] mislukt."; -$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Shift-herlaad de pagina, of maak de browser cache leeg als nieuwe foto's niet onmiddellijk verschijnen."; -$a->strings["Unable to process image"] = "Ik kan de afbeelding niet verwerken"; -$a->strings["Image exceeds size limit of %d"] = "Afbeelding is groter dan de toegestane %d"; -$a->strings["Unable to process image."] = "Niet in staat om de afbeelding te verwerken"; -$a->strings["Upload File:"] = "Upload bestand:"; -$a->strings["Select a profile:"] = "Kies een profiel:"; -$a->strings["Upload"] = "Uploaden"; -$a->strings["or"] = "of"; -$a->strings["skip this step"] = "Deze stap overslaan"; -$a->strings["select a photo from your photo albums"] = "Kies een foto uit je fotoalbums"; -$a->strings["Crop Image"] = "Afbeelding bijsnijden"; -$a->strings["Please adjust the image cropping for optimum viewing."] = "Pas het afsnijden van de afbeelding aan voor het beste resultaat."; -$a->strings["Done Editing"] = "Wijzigingen compleet"; -$a->strings["Image uploaded successfully."] = "Uploaden van afbeelding gelukt."; -$a->strings["Image upload failed."] = "Uploaden van afbeelding mislukt."; -$a->strings["photo"] = "foto"; -$a->strings["status"] = "status"; -$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s volgt %3\$s van %2\$s"; -$a->strings["Tag removed"] = "Label verwijderd"; -$a->strings["Remove Item Tag"] = "Verwijder label van item"; -$a->strings["Select a tag to remove: "] = "Selecteer een label om te verwijderen: "; -$a->strings["Remove"] = "Verwijderen"; -$a->strings["Save to Folder:"] = "Bewaren in map:"; -$a->strings["- select -"] = "- Kies -"; -$a->strings["Save"] = "Bewaren"; -$a->strings["Contact added"] = "Contact toegevoegd"; -$a->strings["Unable to locate original post."] = "Ik kan de originele post niet meer vinden."; -$a->strings["Empty post discarded."] = "Lege post weggegooid."; -$a->strings["Wall Photos"] = ""; -$a->strings["System error. Post not saved."] = "Systeemfout. Post niet bewaard."; -$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Dit bericht werd naar jou gestuurd door %s, een lid van het Friendica sociale netwerk."; -$a->strings["You may visit them online at %s"] = "Je kunt ze online bezoeken op %s"; -$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Contacteer de afzender door op dit bericht te antwoorden als je deze berichten niet wilt ontvangen."; -$a->strings["%s posted an update."] = "%s heeft een wijziging geplaatst."; -$a->strings["Group created."] = "Groep aangemaakt."; -$a->strings["Could not create group."] = "Kon de groep niet aanmaken."; -$a->strings["Group not found."] = "Groep niet gevonden."; -$a->strings["Group name changed."] = "Groepsnaam gewijzigd."; -$a->strings["Save Group"] = ""; -$a->strings["Create a group of contacts/friends."] = "Maak een groep contacten/vrienden aan."; -$a->strings["Group Name: "] = "Groepsnaam:"; -$a->strings["Group removed."] = "Groep verwijderd."; -$a->strings["Unable to remove group."] = "Niet in staat om groep te verwijderen."; -$a->strings["Group Editor"] = "Groepsbewerker"; -$a->strings["Members"] = "Leden"; -$a->strings["You must be logged in to use addons. "] = "Je moet ingelogd zijn om deze addons te kunnen gebruiken. "; -$a->strings["Applications"] = "Toepassingen"; -$a->strings["No installed applications."] = "Geen toepassingen geïnstalleerd"; -$a->strings["Profile not found."] = "Profiel niet gevonden"; -$a->strings["Contact not found."] = "Contact niet gevonden"; -$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Dit kan soms gebeuren als het contact door beide personen werd gevraagd, en het werd al goedgekeurd."; -$a->strings["Response from remote site was not understood."] = "Antwoord van de website op afstand werd niet begrepen."; -$a->strings["Unexpected response from remote site: "] = "Onverwacht antwoord van website op afstand:"; -$a->strings["Confirmation completed successfully."] = "Bevestiging werd correct voltooid."; -$a->strings["Remote site reported: "] = "Website op afstand berichtte: "; -$a->strings["Temporary failure. Please wait and try again."] = "Tijdelijke fout. Wacht even en probeer opnieuw."; -$a->strings["Introduction failed or was revoked."] = "Verzoek mislukt of herroepen."; -$a->strings["Unable to set contact photo."] = "Ik kan geen contact foto instellen."; -$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s is nu bevriend met %2\$s"; -$a->strings["No user record found for '%s' "] = "Geen gebruiker gevonden voor '%s'"; -$a->strings["Our site encryption key is apparently messed up."] = "De encryptie-sleutel van onze webstek is blijkbaar beschadigd."; -$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Er werd een lege URL gegeven, of de URL kon niet ontcijferd worden door ons."; -$a->strings["Contact record was not found for you on our site."] = "We vonden op onze webstek geen contactrecord voor jou."; -$a->strings["Site public key not available in contact record for URL %s."] = "Publieke sleutel voor webstek niet beschikbaar in contactrecord voor URL %s."; -$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Het ID dat jouw systeem aangeeft is een dubbel op ons systeem. Als je opnieuw probeert zou het moeten werken."; -$a->strings["Unable to set your contact credentials on our system."] = "Niet in staat om op dit systeem je contactreferenties in te stellen."; -$a->strings["Unable to update your contact profile details on our system"] = ""; -$a->strings["[Name Withheld]"] = "[Naam achtergehouden]"; -$a->strings["%1\$s has joined %2\$s"] = "%1\$s is toegetreden tot %2\$s"; -$a->strings["Requested profile is not available."] = "Gevraagde profiel is niet beschikbaar."; $a->strings["Tips for New Members"] = "Tips voor nieuwe leden"; +$a->strings["Public access denied."] = "Niet vrij toegankelijk"; $a->strings["No videos selected"] = "Geen video's geselecteerd"; $a->strings["Access to this item is restricted."] = "Toegang tot dit item is beperkt."; -$a->strings["View Video"] = "Bekijk Video"; $a->strings["View Album"] = "Album bekijken"; $a->strings["Recent Videos"] = "Recente video's"; $a->strings["Upload New Videos"] = "Nieuwe video's uploaden"; -$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s labelde %3\$s van %2\$s met %4\$s"; +$a->strings["Manage Identities and/or Pages"] = "Beheer Identiteiten en/of Pagina's"; +$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Wissel tussen verschillende identiteiten of forum/groeppagina's die jouw accountdetails delen of waar je \"beheerdersrechten\" hebt gekregen."; +$a->strings["Select an identity to manage: "] = "Selecteer een identiteit om te beheren:"; +$a->strings["Item not found"] = "Item niet gevonden"; +$a->strings["Edit post"] = "Bericht bewerken"; +$a->strings["People Search"] = "Mensen Zoeken"; +$a->strings["No matches"] = "Geen resultaten"; +$a->strings["Account approved."] = "Account goedgekeurd."; +$a->strings["Registration revoked for %s"] = "Registratie ingetrokken voor %s"; +$a->strings["Please login."] = "Inloggen."; +$a->strings["This introduction has already been accepted."] = "Verzoek is al goedgekeurd"; +$a->strings["Profile location is not valid or does not contain profile information."] = "Profiel is ongeldig of bevat geen informatie"; +$a->strings["Warning: profile location has no identifiable owner name."] = "Waarschuwing: de profiellocatie heeft geen identificeerbare eigenaar."; +$a->strings["Warning: profile location has no profile photo."] = "Waarschuwing: Profieladres heeft geen profielfoto."; +$a->strings["%d required parameter was not found at the given location"] = array( + 0 => "De %d vereiste parameter is niet op het gegeven adres gevonden", + 1 => "De %d vereiste parameters zijn niet op het gegeven adres gevonden", +); +$a->strings["Introduction complete."] = "Verzoek voltooid."; +$a->strings["Unrecoverable protocol error."] = "Onherstelbare protocolfout. "; +$a->strings["Profile unavailable."] = "Profiel onbeschikbaar"; +$a->strings["%s has received too many connection requests today."] = "%s heeft te veel verzoeken gehad vandaag."; +$a->strings["Spam protection measures have been invoked."] = "Beveiligingsmaatregelen tegen spam zijn in werking getreden."; +$a->strings["Friends are advised to please try again in 24 hours."] = "Wij adviseren vrienden om het over 24 uur nog een keer te proberen."; +$a->strings["Invalid locator"] = "Ongeldige plaatsbepaler"; +$a->strings["Invalid email address."] = "Geen geldig e-mailadres"; +$a->strings["This account has not been configured for email. Request failed."] = "Aanvraag mislukt. Dit account is niet geconfigureerd voor e-mail."; +$a->strings["Unable to resolve your name at the provided location."] = "Ik kan jouw naam op het opgegeven adres niet vinden."; +$a->strings["You have already introduced yourself here."] = "Je hebt jezelf hier al voorgesteld."; +$a->strings["Apparently you are already friends with %s."] = "Blijkbaar bent u al bevriend met %s."; +$a->strings["Invalid profile URL."] = "Ongeldig profiel adres."; +$a->strings["Your introduction has been sent."] = "Je verzoek is verzonden."; +$a->strings["Please login to confirm introduction."] = "Log in om je verzoek te bevestigen."; +$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Je huidige identiteit is niet de juiste. Log met dit profiel in."; +$a->strings["Hide this contact"] = "Verberg dit contact"; +$a->strings["Welcome home %s."] = "Welkom terug %s."; +$a->strings["Please confirm your introduction/connection request to %s."] = "Bevestig je vriendschaps-/connectieverzoek voor %s."; +$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Vul hier uw 'Identiteitsadres' in van een van de volgende ondersteunde communicatienetwerken:"; +$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = "Als je nog geen lid bent van het vrije sociale web, volg dan deze link om een openbare Friendica-website te vinden, en sluit je vandaag nog aan."; +$a->strings["Friend/Connection Request"] = "Vriendschaps-/connectieverzoek"; +$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Voorbeelden: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; +$a->strings["Please answer the following:"] = "Beantwoord het volgende:"; +$a->strings["Does %s know you?"] = "Kent %s jou?"; +$a->strings["Add a personal note:"] = "Voeg een persoonlijke opmerking toe:"; +$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Gefedereerde Sociale Web"; +$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = "- Gebruik niet dit formulier. Vul %s in in je Diaspora zoekbalk."; +$a->strings["Your Identity Address:"] = "Adres van uw identiteit:"; +$a->strings["Submit Request"] = "Aanvraag indienen"; +$a->strings["Files"] = "Bestanden"; +$a->strings["Authorize application connection"] = ""; +$a->strings["Return to your app and insert this Securty Code:"] = ""; +$a->strings["Please login to continue."] = "Log in om verder te gaan."; +$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Wil je deze toepassing toestemming geven om jouw berichten en contacten in te kijken, en/of nieuwe berichten in jouw plaats aan te maken?"; +$a->strings["Do you really want to delete this suggestion?"] = "Wil je echt dit voorstel verwijderen?"; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Geen voorstellen beschikbaar. Als dit een nieuwe website is, kun je het over 24 uur nog eens proberen."; +$a->strings["Ignore/Hide"] = "Negeren/Verbergen"; +$a->strings["Contacts who are not members of a group"] = "Contacten die geen leden zijn van een groep"; +$a->strings["Contact not found."] = "Contact niet gevonden"; $a->strings["Friend suggestion sent."] = "Vriendschapsvoorstel verzonden."; $a->strings["Suggest Friends"] = "Stel vrienden voor"; $a->strings["Suggest a friend for %s"] = "Stel een vriend voor aan %s"; -$a->strings["No valid account found."] = "Geen geldige account gevonden."; -$a->strings["Password reset request issued. Check your email."] = "Verzoek om wachtwoord opnieuw in te stellen werd verstuurd. Kijk uw e-mail na."; -$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."] = ""; -$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"] = ""; -$a->strings["Password reset requested at %s"] = "Op %s werd gevraagd je wachtwoord opnieuw in te stellen"; -$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Verzoek kon niet geverifieerd worden. (Misschien heb je het voordien al ingediend.) Wachtwoord niet opnieuw ingesteld."; -$a->strings["Password Reset"] = "Wachtwoord opnieuw instellen"; -$a->strings["Your password has been reset as requested."] = "Je wachtwoord is opnieuw ingesteld zoals gevraagd."; -$a->strings["Your new password is"] = "Je nieuwe wachtwoord is"; -$a->strings["Save or copy your new password - and then"] = "Bewaar of kopieer je nieuw wachtwoord - en dan"; -$a->strings["click here to login"] = "klik hier om in te loggen"; -$a->strings["Your password may be changed from the Settings page after successful login."] = "Je kunt dit wachtwoord veranderen nadat je bent ingelogd op de Instellingen> pagina."; -$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"] = ""; -$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"] = ""; -$a->strings["Your password has been changed at %s"] = "Je wachtwoord is veranderd op %s"; -$a->strings["Forgot your Password?"] = "Wachtwoord vergeten?"; -$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Voer je e-mailadres in en verstuur het om je wachtwoord opnieuw in te stellen. Kijk dan je e-mail na voor verdere instructies."; -$a->strings["Nickname or Email: "] = "Bijnaam of e-mail:"; -$a->strings["Reset"] = "Opnieuw"; -$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s vindt het %3\$s van %2\$s leuk"; -$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s vindt het %3\$s van %2\$s niet leuk"; -$a->strings["{0} wants to be your friend"] = "{0} wilt je vriend worden"; -$a->strings["{0} sent you a message"] = "{0} stuurde jou een bericht"; -$a->strings["{0} requested registration"] = "{0} vroeg om zich te registreren"; -$a->strings["{0} commented %s's post"] = "{0} gaf een reactie op het bericht van %s"; -$a->strings["{0} liked %s's post"] = "{0} vond het bericht van %s leuk"; -$a->strings["{0} disliked %s's post"] = "{0} vond het bericht van %s niet leuk"; -$a->strings["{0} is now friends with %s"] = "{0} is nu bevriend met %s"; -$a->strings["{0} posted"] = "{0} plaatste"; -$a->strings["{0} tagged %s's post with #%s"] = "{0} labelde %s's bericht met #%s"; -$a->strings["{0} mentioned you in a post"] = "{0} vermeldde je in een bericht"; +$a->strings["link"] = "link"; $a->strings["No contacts."] = "Geen contacten."; -$a->strings["View Contacts"] = "Bekijk contacten"; -$a->strings["Invalid request identifier."] = "Ongeldige request identifier."; -$a->strings["Discard"] = "Verwerpen"; -$a->strings["System"] = "Systeem"; -$a->strings["Network"] = "Netwerk"; -$a->strings["Personal"] = "Persoonlijk"; -$a->strings["Home"] = "Tijdlijn"; -$a->strings["Introductions"] = "Verzoeken"; -$a->strings["Show Ignored Requests"] = "Toon genegeerde verzoeken"; -$a->strings["Hide Ignored Requests"] = "Verberg genegeerde verzoeken"; -$a->strings["Notification type: "] = "Notificatiesoort:"; -$a->strings["Friend Suggestion"] = "Vriendschapsvoorstel"; -$a->strings["suggested by %s"] = "Voorgesteld door %s"; -$a->strings["Post a new friend activity"] = "Bericht over een nieuwe vriend"; -$a->strings["if applicable"] = "Indien toepasbaar"; -$a->strings["Approve"] = "Goedkeuren"; -$a->strings["Claims to be known to you: "] = "Denkt dat u hem of haar kent:"; -$a->strings["yes"] = "Ja"; -$a->strings["no"] = "Nee"; -$a->strings["Approve as: "] = "Goedkeuren als:"; -$a->strings["Friend"] = "Vriend"; -$a->strings["Sharer"] = "Deler"; -$a->strings["Fan/Admirer"] = "Fan/Bewonderaar"; -$a->strings["Friend/Connect Request"] = "Vriendschapsverzoek"; -$a->strings["New Follower"] = "Nieuwe Volger"; -$a->strings["No introductions."] = "Geen vriendschaps- of connectieverzoeken."; -$a->strings["Notifications"] = "Notificaties"; -$a->strings["%s liked %s's post"] = "%s vond het bericht van %s leuk"; -$a->strings["%s disliked %s's post"] = "%s vond het bericht van %s niet leuk"; -$a->strings["%s is now friends with %s"] = "%s is nu bevriend met %s"; -$a->strings["%s created a new post"] = "%s schreef een nieuw bericht"; -$a->strings["%s commented on %s's post"] = "%s gaf een reactie op het bericht van %s"; -$a->strings["No more network notifications."] = "Geen netwerknotificaties meer"; -$a->strings["Network Notifications"] = "Netwerknotificaties"; -$a->strings["No more system notifications."] = "Geen systeemnotificaties meer."; -$a->strings["System Notifications"] = "Systeemnotificaties"; -$a->strings["No more personal notifications."] = "Geen persoonlijke notificaties meer"; -$a->strings["Personal Notifications"] = "Persoonlijke notificaties"; -$a->strings["No more home notifications."] = "Geen tijdlijn-notificaties meer"; -$a->strings["Home Notifications"] = "Tijdlijn-notificaties"; -$a->strings["Source (bbcode) text:"] = "Bron (bbcode) tekst:"; -$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Bron (Diaspora) tekst om naar BBCode om te zetten:"; -$a->strings["Source input: "] = "Bron ingave:"; -$a->strings["bb2html (raw HTML): "] = "bb2html (ruwe 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): "] = "Bron ingave (Diaspora formaat):"; -$a->strings["diaspora2bb: "] = "diaspora2bb: "; -$a->strings["Nothing new here"] = "Niets nieuw hier"; -$a->strings["Clear notifications"] = "Notificaties verwijderen"; -$a->strings["New Message"] = "Nieuw Bericht"; -$a->strings["No recipient selected."] = "Geen ontvanger geselecteerd."; -$a->strings["Unable to locate contact information."] = "Ik kan geen contact informatie vinden."; -$a->strings["Message could not be sent."] = "Bericht kon niet verzonden worden."; -$a->strings["Message collection failure."] = "Fout bij het verzamelen van berichten."; -$a->strings["Message sent."] = "Bericht verzonden."; -$a->strings["Messages"] = "Privéberichten"; -$a->strings["Do you really want to delete this message?"] = "Wil je echt dit bericht verwijderen?"; -$a->strings["Message deleted."] = "Bericht verwijderd."; -$a->strings["Conversation removed."] = "Gesprek verwijderd."; -$a->strings["Please enter a link URL:"] = "Vul een internetadres/URL in:"; -$a->strings["Send Private Message"] = "Verstuur privébericht"; -$a->strings["To:"] = "Aan:"; -$a->strings["Subject:"] = "Onderwerp:"; -$a->strings["Your message:"] = "Jouw bericht:"; -$a->strings["Upload photo"] = "Foto uploaden"; -$a->strings["Insert web link"] = "Voeg een webadres in"; -$a->strings["Please wait"] = "Even geduld"; -$a->strings["No messages."] = "Geen berichten."; -$a->strings["Unknown sender - %s"] = "Onbekende afzender - %s"; -$a->strings["You and %s"] = "Jij en %s"; -$a->strings["%s and You"] = "%s en jij"; -$a->strings["Delete conversation"] = "Verwijder gesprek"; -$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; -$a->strings["%d message"] = array( - 0 => "%d bericht", - 1 => "%d berichten", -); -$a->strings["Message not available."] = "Bericht niet beschikbaar."; -$a->strings["Delete message"] = "Verwijder bericht"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Geen beveiligde communicatie beschikbaar. Je kunt misschien antwoorden vanaf de profiel-pagina van de afzender."; -$a->strings["Send Reply"] = "Verstuur Antwoord"; -$a->strings["[Embedded content - reload page to view]"] = "[Ingebedde inhoud - herlaad pagina om het te bekijken]"; -$a->strings["Contact settings applied."] = "Contactinstellingen toegepast."; -$a->strings["Contact update failed."] = "Aanpassen van contact mislukt."; -$a->strings["Repair Contact Settings"] = "Contactinstellingen herstellen"; -$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = ""; -$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Gebruik nu de \"terug\"-knop in je webbrowser wanneer je niet weet wat je op deze pagina moet doen."; -$a->strings["Return to contact editor"] = "Ga terug naar contactbewerker"; -$a->strings["No mirroring"] = ""; -$a->strings["Mirror as forwarded posting"] = ""; -$a->strings["Mirror as my own posting"] = ""; -$a->strings["Name"] = "Naam"; -$a->strings["Account Nickname"] = "Bijnaam account"; -$a->strings["@Tagname - overrides Name/Nickname"] = "@Labelnaam - krijgt voorrang op naam/bijnaam"; -$a->strings["Account URL"] = "URL account"; -$a->strings["Friend Request URL"] = "URL vriendschapsverzoek"; -$a->strings["Friend Confirm URL"] = ""; -$a->strings["Notification Endpoint URL"] = ""; -$a->strings["Poll/Feed URL"] = "URL poll/feed"; -$a->strings["New photo from this URL"] = "Nieuwe foto van deze URL"; -$a->strings["Remote Self"] = ""; -$a->strings["Mirror postings from this contact"] = ""; -$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = ""; -$a->strings["Login"] = "Login"; -$a->strings["The post was created"] = ""; -$a->strings["Access denied."] = "Toegang geweigerd"; -$a->strings["People Search"] = "Mensen Zoeken"; -$a->strings["No matches"] = "Geen resultaten"; -$a->strings["Photos"] = "Foto's"; -$a->strings["Files"] = "Bestanden"; -$a->strings["Contacts who are not members of a group"] = "Contacten die geen leden zijn van een groep"; $a->strings["Theme settings updated."] = "Thema-instellingen aangepast."; $a->strings["Site"] = "Website"; $a->strings["Users"] = "Gebruiker"; -$a->strings["Plugins"] = "Plugins"; $a->strings["Themes"] = "Thema's"; $a->strings["DB updates"] = "DB aanpassingen"; $a->strings["Logs"] = "Logs"; $a->strings["probe address"] = ""; $a->strings["check webfinger"] = ""; -$a->strings["Admin"] = "Beheer"; $a->strings["Plugin Features"] = "Plugin Functies"; $a->strings["diagnostics"] = ""; $a->strings["User registrations waiting for confirmation"] = "Gebruikersregistraties wachten op bevestiging"; @@ -417,15 +1163,10 @@ $a->strings["Version"] = "Versie"; $a->strings["Active plugins"] = "Actieve plug-ins"; $a->strings["Can not parse base url. Must have at least ://"] = ""; $a->strings["Site settings updated."] = "Site instellingen gewijzigd."; -$a->strings["No special theme for mobile devices"] = "Geen speciaal thema voor mobiele apparaten"; $a->strings["No community page"] = ""; $a->strings["Public postings from users of this site"] = ""; $a->strings["Global community page"] = ""; $a->strings["At post arrival"] = ""; -$a->strings["Frequently"] = "Frequent"; -$a->strings["Hourly"] = "elk uur"; -$a->strings["Twice daily"] = "Twee keer per dag"; -$a->strings["Daily"] = "dagelijks"; $a->strings["Multi user instance"] = "Server voor meerdere gebruikers"; $a->strings["Closed"] = "Gesloten"; $a->strings["Requires approval"] = "Toestemming vereist"; @@ -433,8 +1174,6 @@ $a->strings["Open"] = "Open"; $a->strings["No SSL policy, links will track page SSL state"] = "Geen SSL beleid, links zullen SSL status van pagina volgen"; $a->strings["Force all links to use SSL"] = "Verplicht alle links om SSL te gebruiken"; $a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Zelf-ondertekend certificaat, gebruik SSL alleen voor lokale links (afgeraden)"; -$a->strings["Save Settings"] = "Instellingen opslaan"; -$a->strings["Registration"] = "Registratie"; $a->strings["File upload"] = "Uploaden bestand"; $a->strings["Policies"] = "Beleid"; $a->strings["Advanced"] = "Geavanceerd"; @@ -566,7 +1305,6 @@ $a->strings["Mark success (if update was manually applied)"] = "Markeren als suc $a->strings["Attempt to execute this update step automatically"] = "Probeer deze stap automatisch uit te voeren"; $a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tthe administrator of %2\$s has set up an account for you."] = ""; $a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t\t%2\$s\n\t\t\tPassword:\t\t%3\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tThank you and welcome to %4\$s."] = ""; -$a->strings["Registration details for %s"] = "Registratie details voor %s"; $a->strings["%s user blocked/unblocked"] = array( 0 => "%s gebruiker geblokkeerd/niet geblokkeerd", 1 => "%s gebruikers geblokkeerd/niet geblokkeerd", @@ -583,7 +1321,6 @@ $a->strings["select all"] = "Alles selecteren"; $a->strings["User registrations waiting for confirm"] = "Gebruikersregistraties wachten op een bevestiging"; $a->strings["User waiting for permanent deletion"] = ""; $a->strings["Request date"] = "Registratiedatum"; -$a->strings["Email"] = "E-mail"; $a->strings["No registrations."] = "Geen registraties."; $a->strings["Deny"] = "Weiger"; $a->strings["Site admin"] = "Sitebeheerder"; @@ -593,7 +1330,6 @@ $a->strings["Register date"] = "Registratiedatum"; $a->strings["Last login"] = "Laatste login"; $a->strings["Last item"] = "Laatste item"; $a->strings["Deleted since"] = "Verwijderd sinds"; -$a->strings["Account"] = "Account"; $a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Geselecteerde gebruikers zullen verwijderd worden!\\n\\nAlles wat deze gebruikers gepost hebben op deze website zal permanent verwijderd worden!\\n\\nBen je zeker?"; $a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "De gebruiker {0} zal verwijderd worden!\\n\\nAlles wat deze gebruiker gepost heeft op deze website zal permanent verwijderd worden!\\n\\nBen je zeker?"; $a->strings["Name of the new user."] = "Naam van nieuwe gebruiker"; @@ -622,10 +1358,14 @@ $a->strings["FTP Host"] = "FTP Server"; $a->strings["FTP Path"] = "FTP Pad"; $a->strings["FTP User"] = "FTP Gebruiker"; $a->strings["FTP Password"] = "FTP wachtwoord"; +$a->strings["Image exceeds size limit of %d"] = "Afbeelding is groter dan de toegestane %d"; +$a->strings["Unable to process image."] = "Niet in staat om de afbeelding te verwerken"; +$a->strings["Image upload failed."] = "Uploaden van afbeelding mislukt."; +$a->strings["Welcome to %s"] = "Welkom op %s"; +$a->strings["OpenID protocol error. No ID returned."] = "OpenID protocol fout. Geen ID Gevonden."; +$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Account niet gevonden, en OpenID-registratie is niet toegelaten op deze website."; $a->strings["Search Results For:"] = "Zoekresultaten voor:"; $a->strings["Remove term"] = "Verwijder zoekterm"; -$a->strings["Saved Searches"] = "Opgeslagen zoekopdrachten"; -$a->strings["add"] = "toevoegen"; $a->strings["Commented Order"] = "Nieuwe reacties bovenaan"; $a->strings["Sort by Comment Date"] = "Berichten met nieuwe reacties bovenaan"; $a->strings["Posted Order"] = "Nieuwe berichten bovenaan"; @@ -648,13 +1388,132 @@ $a->strings["Group: "] = "Groep:"; $a->strings["Contact: "] = "Contact: "; $a->strings["Private messages to this person are at risk of public disclosure."] = "Privéberichten naar deze persoon kunnen openbaar gemaakt worden."; $a->strings["Invalid contact."] = "Ongeldig contact."; -$a->strings["Friends of %s"] = "Vrienden van %s"; -$a->strings["No friends to display."] = "Geen vrienden om te laten zien."; +$a->strings["- select -"] = "- Kies -"; +$a->strings["This is Friendica, version"] = "Dit is Friendica, versie"; +$a->strings["running at web location"] = "draaiend op web-adres"; +$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Bezoek Friendica.com om meer te leren over het Friendica project."; +$a->strings["Bug reports and issues: please visit"] = "Bug rapporten en problemen: bezoek"; +$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Suggesties, lof, donaties, enzovoort - stuur een e-mail naar \"info\" op Friendica - dot com"; +$a->strings["Installed plugins/addons/apps:"] = "Geïnstalleerde plugins/toepassingen:"; +$a->strings["No installed plugins/addons/apps"] = "Geen plugins of toepassingen geïnstalleerd"; +$a->strings["Applications"] = "Toepassingen"; +$a->strings["No installed applications."] = "Geen toepassingen geïnstalleerd"; +$a->strings["Upload New Photos"] = "Nieuwe foto's uploaden"; +$a->strings["Contact information unavailable"] = "Contactinformatie niet beschikbaar"; +$a->strings["Album not found."] = "Album niet gevonden"; +$a->strings["Delete Album"] = "Verwijder album"; +$a->strings["Do you really want to delete this photo album and all its photos?"] = "Wil je echt dit fotoalbum en alle foto's erin verwijderen?"; +$a->strings["Delete Photo"] = "Verwijder foto"; +$a->strings["Do you really want to delete this photo?"] = "Wil je echt deze foto verwijderen?"; +$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s is gelabeld in %2\$s door %3\$s"; +$a->strings["a photo"] = "een foto"; +$a->strings["Image exceeds size limit of "] = "Afbeelding is groter dan de maximale afmeting van"; +$a->strings["Image file is empty."] = "Afbeeldingsbestand is leeg."; +$a->strings["No photos selected"] = "Geen foto's geselecteerd"; +$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Je hebt %1$.2f Mbytes van %2$.2f Mbytes foto-opslagruimte gebruikt."; +$a->strings["Upload Photos"] = "Upload foto's"; +$a->strings["New album name: "] = "Nieuwe albumnaam: "; +$a->strings["or existing album name: "] = "of bestaande albumnaam: "; +$a->strings["Do not show a status post for this upload"] = "Toon geen bericht op je tijdlijn van deze upload"; +$a->strings["Permissions"] = "Rechten"; +$a->strings["Private Photo"] = "Privé foto"; +$a->strings["Public Photo"] = "Publieke foto"; +$a->strings["Edit Album"] = "Album wijzigen"; +$a->strings["Show Newest First"] = "Toon niewste eerst"; +$a->strings["Show Oldest First"] = "Toon oudste eerst"; +$a->strings["View Photo"] = "Bekijk foto"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Toegang geweigerd. Toegang tot dit item is mogelijk beperkt."; +$a->strings["Photo not available"] = "Foto is niet beschikbaar"; +$a->strings["View photo"] = "Bekijk foto"; +$a->strings["Edit photo"] = "Bewerk foto"; +$a->strings["Use as profile photo"] = "Gebruik als profielfoto"; +$a->strings["View Full Size"] = "Bekijk in volledig formaat"; +$a->strings["Tags: "] = "Labels: "; +$a->strings["[Remove any tag]"] = "[Alle labels verwijderen]"; +$a->strings["Rotate CW (right)"] = "Roteren met de klok mee (rechts)"; +$a->strings["Rotate CCW (left)"] = "Roteren tegen de klok in (links)"; +$a->strings["New album name"] = "Nieuwe albumnaam"; +$a->strings["Caption"] = "Onderschrift"; +$a->strings["Add a Tag"] = "Een label toevoegen"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl, #Ardennen, #camping "; +$a->strings["Private photo"] = "Privé foto"; +$a->strings["Public photo"] = "Publieke foto"; +$a->strings["Recent Photos"] = "Recente foto's"; +$a->strings["The post was created"] = ""; +$a->strings["Contact added"] = "Contact toegevoegd"; +$a->strings["Move account"] = "Account verplaatsen"; +$a->strings["You can import an account from another Friendica server."] = "Je kunt een account van een andere Friendica server importeren."; +$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."] = "Je moet je account bij de oude server exporteren, en hier uploaden. We zullen je oude account hier opnieuw aanmaken, met al je contacten. We zullen ook proberen om je vrienden in te lichten dat je naar hier verhuisd bent."; +$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Deze functie is experimenteel. We kunnen geen contacten van het OStatus netwerk (statusnet/identi.ca) of van Diaspora importeren."; +$a->strings["Account file"] = "Account bestand"; +$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = ""; +$a->strings["Total invitation limit exceeded."] = "Totale uitnodigingslimiet overschreden."; +$a->strings["%s : Not a valid email address."] = "%s: Geen geldig e-mailadres."; +$a->strings["Please join us on Friendica"] = "Kom bij ons op Friendica"; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Uitnodigingslimiet overschreden. Neem contact op met de beheerder van je website."; +$a->strings["%s : Message delivery failed."] = "%s : Aflevering van bericht mislukt."; +$a->strings["%d message sent."] = array( + 0 => "%d bericht verzonden.", + 1 => "%d berichten verzonden.", +); +$a->strings["You have no more invitations available"] = "Je kunt geen uitnodigingen meer sturen"; +$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Bezoek %s voor een lijst van openbare sites waar je je kunt aansluiten. Friendica leden op andere sites kunnen allemaal met elkaar verbonden worden, en ook met leden van verschillende andere sociale netwerken."; +$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Om deze uitnodiging te accepteren kan je je op %s registreren of op een andere vrij toegankelijke Friendica-website."; +$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Friendica servers zijn allemaal onderling verbonden om een reusachtig sociaal web te maken met verbeterde privacy, dat eigendom is van en gecontroleerd door zijn leden. Ze kunnen ook verbindingen maken met verschillende traditionele sociale netwerken. Bekijk %s voor een lijst van alternatieve Friendica servers waar je aan kunt sluiten."; +$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Onze verontschuldigingen. Dit systeem is momenteel niet ingesteld om verbinding te maken met andere openbare plaatsen of leden uit te nodigen."; +$a->strings["Send invitations"] = "Verstuur uitnodigingen"; +$a->strings["Enter email addresses, one per line:"] = "Vul e-mailadressen in, één per lijn:"; +$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Ik nodig je vriendelijk uit om bij mij en andere vrienden te komen op Friendica - en ons te helpen om een beter sociaal web te bouwen."; +$a->strings["You will need to supply this invitation code: \$invite_code"] = "Je zult deze uitnodigingscode moeten invullen: \$invite_code"; +$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Eens je geregistreerd bent kun je contact leggen met mij via mijn profielpagina op:"; +$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Voor meer informatie over het Friendica project en waarom wij denken dat het belangrijk is kun je http://friendica.com/ bezoeken"; +$a->strings["Access denied."] = "Toegang geweigerd"; +$a->strings["No valid account found."] = "Geen geldige account gevonden."; +$a->strings["Password reset request issued. Check your email."] = "Verzoek om wachtwoord opnieuw in te stellen werd verstuurd. Kijk uw e-mail na."; +$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."] = ""; +$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"] = ""; +$a->strings["Password reset requested at %s"] = "Op %s werd gevraagd je wachtwoord opnieuw in te stellen"; +$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Verzoek kon niet geverifieerd worden. (Misschien heb je het voordien al ingediend.) Wachtwoord niet opnieuw ingesteld."; +$a->strings["Your password has been reset as requested."] = "Je wachtwoord is opnieuw ingesteld zoals gevraagd."; +$a->strings["Your new password is"] = "Je nieuwe wachtwoord is"; +$a->strings["Save or copy your new password - and then"] = "Bewaar of kopieer je nieuw wachtwoord - en dan"; +$a->strings["click here to login"] = "klik hier om in te loggen"; +$a->strings["Your password may be changed from the Settings page after successful login."] = "Je kunt dit wachtwoord veranderen nadat je bent ingelogd op de Instellingen> pagina."; +$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"] = ""; +$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"] = ""; +$a->strings["Your password has been changed at %s"] = "Je wachtwoord is veranderd op %s"; +$a->strings["Forgot your Password?"] = "Wachtwoord vergeten?"; +$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Voer je e-mailadres in en verstuur het om je wachtwoord opnieuw in te stellen. Kijk dan je e-mail na voor verdere instructies."; +$a->strings["Nickname or Email: "] = "Bijnaam of e-mail:"; +$a->strings["Reset"] = "Opnieuw"; +$a->strings["Source (bbcode) text:"] = "Bron (bbcode) tekst:"; +$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Bron (Diaspora) tekst om naar BBCode om te zetten:"; +$a->strings["Source input: "] = "Bron ingave:"; +$a->strings["bb2html (raw HTML): "] = "bb2html (ruwe 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): "] = "Bron ingave (Diaspora formaat):"; +$a->strings["diaspora2bb: "] = "diaspora2bb: "; +$a->strings["Tag removed"] = "Label verwijderd"; +$a->strings["Remove Item Tag"] = "Verwijder label van item"; +$a->strings["Select a tag to remove: "] = "Selecteer een label om te verwijderen: "; +$a->strings["Remove My Account"] = "Verwijder mijn account"; +$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Dit zal je account volledig verwijderen. Dit kan niet hersteld worden als het eenmaal uitgevoerd is."; +$a->strings["Please enter your password for verification:"] = "Voer je wachtwoord in voor verificatie:"; +$a->strings["Invalid profile identifier."] = "Ongeldige profiel-identificatie."; +$a->strings["Profile Visibility Editor"] = ""; +$a->strings["Visible To"] = "Zichtbaar voor"; +$a->strings["All Contacts (with secure profile access)"] = "Alle contacten (met veilige profieltoegang)"; +$a->strings["Profile Match"] = "Profielmatch"; +$a->strings["No keywords to match. Please add keywords to your default profile."] = "Geen sleutelwoorden om te zoeken. Voeg sleutelwoorden toe aan je standaard profiel."; +$a->strings["is interested in:"] = "Is geïnteresseerd in:"; $a->strings["Event title and start time are required."] = "Titel en begintijd van de gebeurtenis zijn vereist."; $a->strings["l, F j"] = "l j F"; $a->strings["Edit event"] = "Gebeurtenis bewerken"; -$a->strings["link to source"] = "Verwijzing naar bron"; -$a->strings["Events"] = "Gebeurtenissen"; $a->strings["Create New Event"] = "Maak een nieuwe gebeurtenis"; $a->strings["Previous"] = "Vorige"; $a->strings["Next"] = "Volgende"; @@ -667,53 +1526,113 @@ $a->strings["Finish date/time is not known or not relevant"] = "Einddatum/tijd i $a->strings["Event Finishes:"] = "Gebeurtenis eindigt:"; $a->strings["Adjust for viewer timezone"] = "Pas aan aan de tijdzone van de gebruiker"; $a->strings["Description:"] = "Beschrijving:"; -$a->strings["Location:"] = "Plaats:"; $a->strings["Title:"] = "Titel:"; $a->strings["Share this event"] = "Deel deze gebeurtenis"; -$a->strings["Select"] = "Kies"; -$a->strings["View %s's profile @ %s"] = "Bekijk het profiel van %s @ %s"; -$a->strings["%s from %s"] = "%s van %s"; -$a->strings["View in context"] = "In context bekijken"; -$a->strings["%d comment"] = array( - 0 => "%d reactie", - 1 => "%d reacties", +$a->strings["{0} wants to be your friend"] = "{0} wilt je vriend worden"; +$a->strings["{0} sent you a message"] = "{0} stuurde jou een bericht"; +$a->strings["{0} requested registration"] = "{0} vroeg om zich te registreren"; +$a->strings["{0} commented %s's post"] = "{0} gaf een reactie op het bericht van %s"; +$a->strings["{0} liked %s's post"] = "{0} vond het bericht van %s leuk"; +$a->strings["{0} disliked %s's post"] = "{0} vond het bericht van %s niet leuk"; +$a->strings["{0} is now friends with %s"] = "{0} is nu bevriend met %s"; +$a->strings["{0} posted"] = "{0} plaatste"; +$a->strings["{0} tagged %s's post with #%s"] = "{0} labelde %s's bericht met #%s"; +$a->strings["{0} mentioned you in a post"] = "{0} vermeldde je in een bericht"; +$a->strings["Mood"] = "Stemming"; +$a->strings["Set your current mood and tell your friends"] = "Stel je huidige stemming in, en vertel het je vrienden"; +$a->strings["No results."] = "Geen resultaten."; +$a->strings["Unable to locate contact information."] = "Ik kan geen contact informatie vinden."; +$a->strings["Do you really want to delete this message?"] = "Wil je echt dit bericht verwijderen?"; +$a->strings["Message deleted."] = "Bericht verwijderd."; +$a->strings["Conversation removed."] = "Gesprek verwijderd."; +$a->strings["No messages."] = "Geen berichten."; +$a->strings["Unknown sender - %s"] = "Onbekende afzender - %s"; +$a->strings["You and %s"] = "Jij en %s"; +$a->strings["%s and You"] = "%s en jij"; +$a->strings["Delete conversation"] = "Verwijder gesprek"; +$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; +$a->strings["%d message"] = array( + 0 => "%d bericht", + 1 => "%d berichten", ); -$a->strings["comment"] = array( - 0 => "reactie", - 1 => "reacties", -); -$a->strings["show more"] = "toon meer"; -$a->strings["Private Message"] = "Privébericht"; -$a->strings["I like this (toggle)"] = "Vind ik leuk"; -$a->strings["like"] = "leuk"; -$a->strings["I don't like this (toggle)"] = "Vind ik niet leuk"; -$a->strings["dislike"] = "niet leuk"; -$a->strings["Share this"] = "Delen"; -$a->strings["share"] = "Delen"; -$a->strings["This is you"] = "Dit ben jij"; -$a->strings["Comment"] = "Reacties"; -$a->strings["Bold"] = "Vet"; -$a->strings["Italic"] = "Cursief"; -$a->strings["Underline"] = "Onderstrepen"; -$a->strings["Quote"] = "Citeren"; -$a->strings["Code"] = "Broncode"; -$a->strings["Image"] = "Afbeelding"; -$a->strings["Link"] = "Link"; -$a->strings["Video"] = "Video"; -$a->strings["Preview"] = "Voorvertoning"; -$a->strings["Edit"] = "Bewerken"; -$a->strings["add star"] = "ster toevoegen"; -$a->strings["remove star"] = "ster verwijderen"; -$a->strings["toggle star status"] = "ster toevoegen of verwijderen"; -$a->strings["starred"] = "met ster"; -$a->strings["add tag"] = "label toevoegen"; -$a->strings["save to folder"] = "Bewaren in map"; -$a->strings["to"] = "aan"; -$a->strings["Wall-to-Wall"] = "wall-to-wall"; -$a->strings["via Wall-To-Wall:"] = "via wall-to-wall"; -$a->strings["Remove My Account"] = "Verwijder mijn account"; -$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Dit zal je account volledig verwijderen. Dit kan niet hersteld worden als het eenmaal uitgevoerd is."; -$a->strings["Please enter your password for verification:"] = "Voer je wachtwoord in voor verificatie:"; +$a->strings["Message not available."] = "Bericht niet beschikbaar."; +$a->strings["Delete message"] = "Verwijder bericht"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Geen beveiligde communicatie beschikbaar. Je kunt misschien antwoorden vanaf de profiel-pagina van de afzender."; +$a->strings["Send Reply"] = "Verstuur Antwoord"; +$a->strings["Not available."] = "Niet beschikbaar"; +$a->strings["Profile not found."] = "Profiel niet gevonden"; +$a->strings["Profile deleted."] = "Profiel verwijderd"; +$a->strings["Profile-"] = "Profiel-"; +$a->strings["New profile created."] = "Nieuw profiel aangemaakt."; +$a->strings["Profile unavailable to clone."] = "Profiel niet beschikbaar om te klonen."; +$a->strings["Profile Name is required."] = "Profielnaam is vereist."; +$a->strings["Marital Status"] = "Echtelijke staat"; +$a->strings["Romantic Partner"] = "Romantische Partner"; +$a->strings["Likes"] = "Houdt van"; +$a->strings["Dislikes"] = "Houdt niet van"; +$a->strings["Work/Employment"] = "Werk"; +$a->strings["Religion"] = "Godsdienst"; +$a->strings["Political Views"] = "Politieke standpunten"; +$a->strings["Gender"] = "Geslacht"; +$a->strings["Sexual Preference"] = "Seksuele Voorkeur"; +$a->strings["Homepage"] = "Tijdlijn"; +$a->strings["Interests"] = "Interesses"; +$a->strings["Address"] = "Adres"; +$a->strings["Location"] = "Plaats"; +$a->strings["Profile updated."] = "Profiel bijgewerkt."; +$a->strings[" and "] = "en"; +$a->strings["public profile"] = "publiek profiel"; +$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s veranderde %2\$s naar “%3\$s”"; +$a->strings[" - Visit %1\$s's %2\$s"] = " - Bezoek %2\$s van %1\$s"; +$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s heeft een aangepast %2\$s, %3\$s veranderd."; +$a->strings["Hide contacts and friends:"] = ""; +$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Je vrienden/contacten verbergen voor bezoekers van dit profiel?"; +$a->strings["Edit Profile Details"] = "Profieldetails bewerken"; +$a->strings["Change Profile Photo"] = "Profielfoto wijzigen"; +$a->strings["View this profile"] = "Dit profiel bekijken"; +$a->strings["Create a new profile using these settings"] = "Nieuw profiel aanmaken met deze instellingen"; +$a->strings["Clone this profile"] = "Dit profiel klonen"; +$a->strings["Delete this profile"] = "Dit profiel verwijderen"; +$a->strings["Basic information"] = ""; +$a->strings["Profile picture"] = ""; +$a->strings["Preferences"] = ""; +$a->strings["Status information"] = ""; +$a->strings["Additional information"] = ""; +$a->strings["Upload Profile Photo"] = "Profielfoto uploaden"; +$a->strings["Profile Name:"] = "Profiel Naam:"; +$a->strings["Your Full Name:"] = "Je volledige naam:"; +$a->strings["Title/Description:"] = "Titel/Beschrijving:"; +$a->strings["Your Gender:"] = "Je Geslacht:"; +$a->strings["Birthday (%s):"] = "Geboortedatum (%s):"; +$a->strings["Street Address:"] = "Postadres:"; +$a->strings["Locality/City:"] = "Gemeente/Stad:"; +$a->strings["Postal/Zip Code:"] = "Postcode:"; +$a->strings["Country:"] = "Land:"; +$a->strings["Region/State:"] = "Regio/Staat:"; +$a->strings[" Marital Status:"] = " Echtelijke Staat:"; +$a->strings["Who: (if applicable)"] = "Wie: (indien toepasbaar)"; +$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Voorbeelden: Kathleen123, Kathleen Peeters, kathleen@voorbeeld.nl"; +$a->strings["Since [date]:"] = "Sinds [datum]:"; +$a->strings["Homepage URL:"] = "Adres tijdlijn:"; +$a->strings["Religious Views:"] = "Geloof:"; +$a->strings["Public Keywords:"] = "Publieke Sleutelwoorden:"; +$a->strings["Private Keywords:"] = "Privé Sleutelwoorden:"; +$a->strings["Example: fishing photography software"] = "Voorbeeld: vissen fotografie software"; +$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Gebruikt om mogelijke vrienden voor te stellen, kan door anderen gezien worden)"; +$a->strings["(Used for searching profiles, never shown to others)"] = "(Gebruikt om profielen te zoeken, nooit aan anderen getoond)"; +$a->strings["Tell us about yourself..."] = "Vertel iets over jezelf..."; +$a->strings["Hobbies/Interests"] = "Hobby's/Interesses"; +$a->strings["Contact information and Social Networks"] = "Contactinformatie en sociale netwerken"; +$a->strings["Musical interests"] = "Muzikale interesses"; +$a->strings["Books, literature"] = "Boeken, literatuur"; +$a->strings["Television"] = "Televisie"; +$a->strings["Film/dance/culture/entertainment"] = "Film/dans/cultuur/ontspanning"; +$a->strings["Love/romance"] = "Liefde/romance"; +$a->strings["Work/employment"] = "Werk"; +$a->strings["School/education"] = "School/opleiding"; +$a->strings["This is your public profile.
    It may be visible to anybody using the internet."] = "Dit is jouw publiek profiel.
    Het kan zichtbaar zijn voor iedereen op het internet."; +$a->strings["Age: "] = "Leeftijd:"; +$a->strings["Edit/Manage Profiles"] = "Wijzig/Beheer Profielen"; $a->strings["Friendica Communications Server - Setup"] = ""; $a->strings["Could not connect to database."] = "Kon geen toegang krijgen tot de database."; $a->strings["Could not create table."] = "Kon tabel niet aanmaken."; @@ -775,1023 +1694,113 @@ $a->strings["Url rewrite is working"] = ""; $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."] = "Het databaseconfiguratiebestand \".htconfig.php\" kon niet worden weggeschreven. Je kunt de bijgevoegde tekst gebruiken om in een configuratiebestand aan te maken in de hoogste map van je webserver."; $a->strings["

    What next

    "] = "

    Wat nu

    "; $a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "BELANGRIJK: Je zult [manueel] een geplande taak moeten aanmaken voor de poller."; -$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = ""; -$a->strings["Unable to check your home location."] = "Niet in staat om je tijdlijn-locatie vast te stellen"; -$a->strings["No recipient."] = "Geen ontvanger."; -$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Als je wilt dat %s antwoordt moet je nakijken dat de privacy-instellingen op jouw website privéberichten van onbekende afzenders toelaat."; $a->strings["Help:"] = "Help:"; -$a->strings["Help"] = "Help"; -$a->strings["Not Found"] = "Niet gevonden"; -$a->strings["Page not found."] = "Pagina niet gevonden"; +$a->strings["Contact settings applied."] = "Contactinstellingen toegepast."; +$a->strings["Contact update failed."] = "Aanpassen van contact mislukt."; +$a->strings["Repair Contact Settings"] = "Contactinstellingen herstellen"; +$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = ""; +$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Gebruik nu de \"terug\"-knop in je webbrowser wanneer je niet weet wat je op deze pagina moet doen."; +$a->strings["Return to contact editor"] = "Ga terug naar contactbewerker"; +$a->strings["No mirroring"] = ""; +$a->strings["Mirror as forwarded posting"] = ""; +$a->strings["Mirror as my own posting"] = ""; +$a->strings["Account Nickname"] = "Bijnaam account"; +$a->strings["@Tagname - overrides Name/Nickname"] = "@Labelnaam - krijgt voorrang op naam/bijnaam"; +$a->strings["Account URL"] = "URL account"; +$a->strings["Friend Request URL"] = "URL vriendschapsverzoek"; +$a->strings["Friend Confirm URL"] = "URL vriendschapsbevestiging"; +$a->strings["Notification Endpoint URL"] = ""; +$a->strings["Poll/Feed URL"] = "URL poll/feed"; +$a->strings["New photo from this URL"] = "Nieuwe foto van deze URL"; +$a->strings["Remote Self"] = ""; +$a->strings["Mirror postings from this contact"] = ""; +$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = ""; +$a->strings["Welcome to Friendica"] = "Welkom bij Friendica"; +$a->strings["New Member Checklist"] = "Checklist voor nieuwe leden"; +$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."] = "We willen je een paar tips en verwijzingen aanreiken om je een aangename ervaring te bezorgen. Klik op een item om de relevante pagina's te bezoeken. Een verwijzing naar deze pagina zal twee weken lang na je registratie zichtbaar zijn op je tijdlijn. Daarna zal de verwijzing stilletjes verdwijnen."; +$a->strings["Getting Started"] = "Aan de slag"; +$a->strings["Friendica Walk-Through"] = "Doorloop Friendica"; +$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Op je Snelstart pagina kun je een korte inleiding vinden over je profiel en netwerk tabs, om enkele nieuwe connecties te leggen en groepen te vinden om lid van te worden."; +$a->strings["Go to Your Settings"] = "Ga naar je instellingen"; +$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Verander je initieel wachtwoord op je instellingenpagina. Noteer ook het adres van je identiteit. Dit ziet er uit als een e-mailadres - en zal nuttig zijn om vrienden te maken op het vrije sociale web."; +$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Controleer ook de andere instellingen, in het bijzonder de privacy-instellingen. Een niet-gepubliceerd adres is zoals een privé-telefoonnummer. In het algemeen wil je waarschijnlijk je adres publiceren - tenzij al je vrienden en mogelijke vrienden precies weten hoe je te vinden."; +$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Upload een profielfoto, als je dat nog niet gedaan hebt. Studies tonen aan dat mensen met echte foto's van zichzelf tien keer gemakkelijker vrienden maken dan mensen die dat niet doen."; +$a->strings["Edit Your Profile"] = "Bewerk je profiel"; +$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Bewerk je standaard profiel zoals je wilt. Controleer de instellingen om je vriendenlijst te verbergen, en om je profiel voor ongekende bezoekers te verbergen."; +$a->strings["Profile Keywords"] = "Sleutelwoorden voor dit profiel"; +$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Stel enkele openbare sleutelwoorden in voor je standaard profiel die je interesses beschrijven. We kunnen dan misschien mensen vinden met gelijkaardige interesses, en vrienden voorstellen."; +$a->strings["Connecting"] = "Verbinding aan het maken"; +$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Machtig de Facebook Connector als je een Facebook account hebt. We zullen (optioneel) al je Facebook vrienden en conversaties importeren."; +$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Als dit jouw eigen persoonlijke server is kan het installeren van de Facebook toevoeging je overgang naar het vrije sociale web vergemakkelijken."; +$a->strings["Importing Emails"] = "E-mails importeren"; +$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Vul je e-mailtoegangsinformatie in op je pagina met verbindingsinstellingen als je vrienden of mailinglijsten uit je e-mail-inbox wilt importeren, en met hen wilt communiceren"; +$a->strings["Go to Your Contacts Page"] = "Ga naar je contactenpagina"; +$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = "Je contactenpagina is jouw poort om vriendschappen te beheren en verbinding te leggen met vrienden op andere netwerken. Je kunt hun adres of URL toevoegen in de Voeg nieuw contact toe dialoog."; +$a->strings["Go to Your Site's Directory"] = "Ga naar de gids van je website"; +$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "In de gids vind je andere mensen in dit netwerk of op andere federatieve sites. Zoek naar het woord Connect of Follow op hun profielpagina (meestal aan de linkerkant). Vul je eigen identiteitsadres in wanneer daar om wordt gevraagd."; +$a->strings["Finding New People"] = "Nieuwe mensen vinden"; +$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Op het zijpaneel van de Contacten pagina vind je verschillende tools om nieuwe vrienden te zoeken. We kunnen mensen op interesses matchen, mensen opzoeken op naam of hobby, en suggesties doen gebaseerd op netwerk-relaties. Op een nieuwe webstek beginnen vriendschapssuggesties meestal binnen de 24 uur beschikbaar te worden."; +$a->strings["Group Your Contacts"] = "Groepeer je contacten"; +$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Als je een aantal vrienden gemaakt hebt kun je ze in je eigen conversatiegroepen indelen vanuit de zijbalk van je 'Conacten' pagina, en dan kun je met elke groep apart contact houden op je Netwerk pagina. "; +$a->strings["Why Aren't My Posts Public?"] = "Waarom zijn mijn berichten niet openbaar?"; +$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respecteert je privacy. Standaard zullen je berichten alleen zichtbaar zijn voor personen die jij als vriend hebt toegevoegd. Lees de help (zie de verwijzing hierboven) voor meer informatie."; +$a->strings["Getting Help"] = "Hulp krijgen"; +$a->strings["Go to the Help Section"] = "Ga naar de help"; +$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Je kunt onze help pagina's raadplegen voor gedetailleerde informatie over andere functies van dit programma."; +$a->strings["Poke/Prod"] = "Aanstoten/porren"; +$a->strings["poke, prod or do other things to somebody"] = "aanstoten, porren of andere dingen met iemand doen"; +$a->strings["Recipient"] = "Ontvanger"; +$a->strings["Choose what you wish to do to recipient"] = "Kies wat je met de ontvanger wil doen"; +$a->strings["Make this post private"] = "Dit bericht privé maken"; +$a->strings["Item has been removed."] = "Item is verwijderd."; +$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s volgt %3\$s van %2\$s"; $a->strings["%1\$s welcomes %2\$s"] = "%1\$s heet %2\$s van harte welkom"; -$a->strings["Welcome to %s"] = "Welkom op %s"; -$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = ""; -$a->strings["Or - did you try to upload an empty file?"] = ""; -$a->strings["File exceeds size limit of %d"] = "Bestand is groter dan de toegelaten %d"; -$a->strings["File upload failed."] = "Uploaden van bestand mislukt."; -$a->strings["Profile Match"] = "Profielmatch"; -$a->strings["No keywords to match. Please add keywords to your default profile."] = "Geen sleutelwoorden om te zoeken. Voeg sleutelwoorden toe aan je standaard profiel."; -$a->strings["is interested in:"] = "Is geïnteresseerd in:"; -$a->strings["Connect"] = "Verbinden"; -$a->strings["link"] = "link"; -$a->strings["Not available."] = "Niet beschikbaar"; -$a->strings["Community"] = "Website"; -$a->strings["No results."] = "Geen resultaten."; -$a->strings["everybody"] = "iedereen"; -$a->strings["Additional features"] = "Extra functies"; -$a->strings["Display"] = "Weergave"; -$a->strings["Social Networks"] = "Sociale netwerken"; -$a->strings["Delegations"] = ""; -$a->strings["Connected apps"] = "Verbonden applicaties"; -$a->strings["Export personal data"] = "Persoonlijke gegevens exporteren"; -$a->strings["Remove account"] = "Account verwijderen"; -$a->strings["Missing some important data!"] = "Een belangrijk gegeven ontbreekt!"; -$a->strings["Failed to connect with email account using the settings provided."] = "Ik kon geen verbinding maken met het e-mail account met de gegeven instellingen."; -$a->strings["Email settings updated."] = "E-mail instellingen bijgewerkt.."; -$a->strings["Features updated"] = "Functies bijgewerkt"; -$a->strings["Relocate message has been send to your contacts"] = ""; -$a->strings["Passwords do not match. Password unchanged."] = "Wachtwoorden komen niet overeen. Wachtwoord niet gewijzigd."; -$a->strings["Empty passwords are not allowed. Password unchanged."] = "Lege wachtwoorden zijn niet toegelaten. Wachtwoord niet gewijzigd."; -$a->strings["Wrong password."] = "Verkeerd wachtwoord."; -$a->strings["Password changed."] = "Wachtwoord gewijzigd."; -$a->strings["Password update failed. Please try again."] = "Wachtwoord-)wijziging mislukt. Probeer opnieuw."; -$a->strings[" Please use a shorter name."] = "Gebruik een kortere naam."; -$a->strings[" Name too short."] = "Naam te kort."; -$a->strings["Wrong Password"] = "Verkeerd wachtwoord"; -$a->strings[" Not valid email."] = "Geen geldig e-mailadres."; -$a->strings[" Cannot change to that email."] = "Kan niet veranderen naar die e-mail."; -$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Privéforum/-groep heeft geen privacyrechten. De standaard privacygroep wordt gebruikt."; -$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Privéforum/-groep heeft geen privacyrechten en geen standaard privacygroep."; -$a->strings["Settings updated."] = "Instellingen bijgewerkt."; -$a->strings["Add application"] = "Toepassing toevoegen"; -$a->strings["Consumer Key"] = "Gebruikerssleutel"; -$a->strings["Consumer Secret"] = "Gebruikersgeheim"; -$a->strings["Redirect"] = "Doorverwijzing"; -$a->strings["Icon url"] = "URL pictogram"; -$a->strings["You can't edit this application."] = "Je kunt deze toepassing niet wijzigen."; -$a->strings["Connected Apps"] = "Verbonden applicaties"; -$a->strings["Client key starts with"] = ""; -$a->strings["No name"] = "Geen naam"; -$a->strings["Remove authorization"] = "Verwijder authorisatie"; -$a->strings["No Plugin settings configured"] = ""; -$a->strings["Plugin Settings"] = "Plugin Instellingen"; -$a->strings["Off"] = "Uit"; -$a->strings["On"] = "Aan"; -$a->strings["Additional Features"] = "Extra functies"; -$a->strings["Built-in support for %s connectivity is %s"] = "Ingebouwde ondersteuning voor connectiviteit met %s is %s"; -$a->strings["Diaspora"] = "Diaspora"; -$a->strings["enabled"] = "ingeschakeld"; -$a->strings["disabled"] = "uitgeschakeld"; -$a->strings["StatusNet"] = "StatusNet"; -$a->strings["Email access is disabled on this site."] = "E-mailtoegang is op deze website uitgeschakeld."; -$a->strings["Email/Mailbox Setup"] = "E-mail Instellen"; -$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Als je wilt communiceren met e-mail contacten via deze dienst (optioneel), moet je hier opgeven hoe ik jouw mailbox kan bereiken."; -$a->strings["Last successful email check:"] = "Laatste succesvolle e-mail controle:"; -$a->strings["IMAP server name:"] = "IMAP server naam:"; -$a->strings["IMAP port:"] = "IMAP poort:"; -$a->strings["Security:"] = "Beveiliging:"; -$a->strings["None"] = "Geen"; -$a->strings["Email login name:"] = "E-mail login naam:"; -$a->strings["Email password:"] = "E-mail wachtwoord:"; -$a->strings["Reply-to address:"] = "Antwoord adres:"; -$a->strings["Send public posts to all email contacts:"] = "Openbare posts naar alle e-mail contacten versturen:"; -$a->strings["Action after import:"] = "Actie na importeren:"; -$a->strings["Mark as seen"] = "Als 'gelezen' markeren"; -$a->strings["Move to folder"] = "Naar map verplaatsen"; -$a->strings["Move to folder:"] = "Verplaatsen naar map:"; -$a->strings["Display Settings"] = "Scherminstellingen"; -$a->strings["Display Theme:"] = "Schermthema:"; -$a->strings["Mobile Theme:"] = "Mobiel thema:"; -$a->strings["Update browser every xx seconds"] = "Browser elke xx seconden verversen"; -$a->strings["Minimum of 10 seconds, no maximum"] = "Minimum 10 seconden, geen maximum"; -$a->strings["Number of items to display per page:"] = "Aantal items te tonen per pagina:"; -$a->strings["Maximum of 100 items"] = "Maximum 100 items"; -$a->strings["Number of items to display per page when viewed from mobile device:"] = "Aantal items per pagina als je een mobiel toestel gebruikt:"; -$a->strings["Don't show emoticons"] = "Emoticons niet tonen"; -$a->strings["Don't show notices"] = ""; -$a->strings["Infinite scroll"] = "Oneindig scrollen"; -$a->strings["Automatic updates only at the top of the network page"] = ""; -$a->strings["User Types"] = "Gebruikerstypes"; -$a->strings["Community Types"] = "Forum/groepstypes"; -$a->strings["Normal Account Page"] = "Normale accountpagina"; -$a->strings["This account is a normal personal profile"] = "Deze account is een normaal persoonlijk profiel"; -$a->strings["Soapbox Page"] = "Zeepkist-pagina"; -$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Keur automatisch alle vriendschaps-/connectieverzoeken goed als fans met alleen recht tot lezen."; -$a->strings["Community Forum/Celebrity Account"] = "Forum/groeps- of beroemdheid-account"; -$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Keur automatisch alle vriendschaps-/connectieverzoeken goed als fans met recht tot lezen en schrijven."; -$a->strings["Automatic Friend Page"] = "Automatisch Vriendschapspagina"; -$a->strings["Automatically approve all connection/friend requests as friends"] = "Keur automatisch alle vriendschaps-/connectieverzoeken goed als vrienden."; -$a->strings["Private Forum [Experimental]"] = "Privé-forum [experimenteel]"; -$a->strings["Private forum - approved members only"] = "Privé-forum - enkel voor goedgekeurde leden"; -$a->strings["OpenID:"] = "OpenID:"; -$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Optioneel) Laat dit OpenID toe om in te loggen op deze account."; -$a->strings["Publish your default profile in your local site directory?"] = "Je standaardprofiel in je lokale gids publiceren?"; -$a->strings["No"] = "Nee"; -$a->strings["Publish your default profile in the global social directory?"] = "Je standaardprofiel in de globale sociale gids publiceren?"; -$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Je vrienden/contacten verbergen voor bezoekers van je standaard profiel?"; -$a->strings["Hide your profile details from unknown viewers?"] = "Je profieldetails verbergen voor onbekende bezoekers?"; -$a->strings["If enabled, posting public messages to Diaspora and other networks isn't possible."] = ""; -$a->strings["Allow friends to post to your profile page?"] = "Vrienden toestaan om op jou profielpagina te posten?"; -$a->strings["Allow friends to tag your posts?"] = "Sta vrienden toe om jouw berichten te labelen?"; -$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Sta je mij toe om jou als mogelijke vriend voor te stellen aan nieuwe leden?"; -$a->strings["Permit unknown people to send you private mail?"] = "Mogen onbekende personen jou privé berichten sturen?"; -$a->strings["Profile is not published."] = "Profiel is niet gepubliceerd."; -$a->strings["Your Identity Address is"] = "Jouw Identiteitsadres is"; -$a->strings["Automatically expire posts after this many days:"] = "Laat berichten automatisch vervallen na zo veel dagen:"; -$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Berichten zullen niet vervallen indien leeg. Vervallen berichten zullen worden verwijderd."; -$a->strings["Advanced expiration settings"] = "Geavanceerde instellingen voor vervallen"; -$a->strings["Advanced Expiration"] = "Geavanceerd Verval:"; -$a->strings["Expire posts:"] = "Laat berichten vervallen:"; -$a->strings["Expire personal notes:"] = "Laat persoonlijke aantekeningen verlopen:"; -$a->strings["Expire starred posts:"] = "Laat berichten met ster verlopen"; -$a->strings["Expire photos:"] = "Laat foto's vervallen:"; -$a->strings["Only expire posts by others:"] = "Laat alleen berichten door anderen vervallen:"; -$a->strings["Account Settings"] = "Account Instellingen"; -$a->strings["Password Settings"] = "Wachtwoord Instellingen"; -$a->strings["New Password:"] = "Nieuw Wachtwoord:"; -$a->strings["Confirm:"] = "Bevestig:"; -$a->strings["Leave password fields blank unless changing"] = "Laat de wachtwoord-velden leeg, tenzij je het wilt veranderen"; -$a->strings["Current Password:"] = "Huidig wachtwoord:"; -$a->strings["Your current password to confirm the changes"] = "Je huidig wachtwoord om de wijzigingen te bevestigen"; -$a->strings["Password:"] = "Wachtwoord:"; -$a->strings["Basic Settings"] = "Basis Instellingen"; -$a->strings["Full Name:"] = "Volledige Naam:"; -$a->strings["Email Address:"] = "E-mailadres:"; -$a->strings["Your Timezone:"] = "Je Tijdzone:"; -$a->strings["Default Post Location:"] = "Standaard locatie:"; -$a->strings["Use Browser Location:"] = "Gebruik Webbrowser Locatie:"; -$a->strings["Security and Privacy Settings"] = "Instellingen voor Beveiliging en Privacy"; -$a->strings["Maximum Friend Requests/Day:"] = "Maximum aantal vriendschapsverzoeken per dag:"; -$a->strings["(to prevent spam abuse)"] = "(om spam misbruik te voorkomen)"; -$a->strings["Default Post Permissions"] = "Standaard rechten voor nieuwe berichten"; -$a->strings["(click to open/close)"] = "(klik om te openen/sluiten)"; -$a->strings["Show to Groups"] = "Tonen aan groepen"; -$a->strings["Show to Contacts"] = "Tonen aan contacten"; -$a->strings["Default Private Post"] = "Standaard Privé Post"; -$a->strings["Default Public Post"] = "Standaard Publieke Post"; -$a->strings["Default Permissions for New Posts"] = "Standaard rechten voor nieuwe berichten"; -$a->strings["Maximum private messages per day from unknown people:"] = "Maximum aantal privé-berichten per dag van onbekende personen:"; -$a->strings["Notification Settings"] = "Notificatie Instellingen"; -$a->strings["By default post a status message when:"] = "Post automatisch een bericht op je tijdlijn wanneer:"; -$a->strings["accepting a friend request"] = "Een vriendschapsverzoek accepteren"; -$a->strings["joining a forum/community"] = "Lid worden van een groep/forum"; -$a->strings["making an interesting profile change"] = "Een interessante verandering aan je profiel"; -$a->strings["Send a notification email when:"] = "Stuur een notificatie e-mail wanneer:"; -$a->strings["You receive an introduction"] = "Je ontvangt een vriendschaps- of connectieverzoek"; -$a->strings["Your introductions are confirmed"] = "Jouw vriendschaps- of connectieverzoeken zijn bevestigd"; -$a->strings["Someone writes on your profile wall"] = "Iemand iets op je tijdlijn schrijft"; -$a->strings["Someone writes a followup comment"] = "Iemand een reactie schrijft"; -$a->strings["You receive a private message"] = "Je een privé-bericht ontvangt"; -$a->strings["You receive a friend suggestion"] = "Je een suggestie voor een vriendschap ontvangt"; -$a->strings["You are tagged in a post"] = "Je expliciet in een bericht bent genoemd"; -$a->strings["You are poked/prodded/etc. in a post"] = "Je in een bericht bent aangestoten/gepord/etc."; -$a->strings["Text-only notification emails"] = ""; -$a->strings["Send text only notification emails, without the html part"] = ""; -$a->strings["Advanced Account/Page Type Settings"] = ""; -$a->strings["Change the behaviour of this account for special situations"] = ""; -$a->strings["Relocate"] = ""; -$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."] = ""; -$a->strings["Resend relocate message to contacts"] = ""; -$a->strings["This introduction has already been accepted."] = "Verzoek is al goedgekeurd"; -$a->strings["Profile location is not valid or does not contain profile information."] = "Profiel is ongeldig of bevat geen informatie"; -$a->strings["Warning: profile location has no identifiable owner name."] = "Waarschuwing: de profiellocatie heeft geen identificeerbare eigenaar."; -$a->strings["Warning: profile location has no profile photo."] = "Waarschuwing: Profieladres heeft geen profielfoto."; -$a->strings["%d required parameter was not found at the given location"] = array( - 0 => "De %d vereiste parameter is niet op het gegeven adres gevonden", - 1 => "De %d vereiste parameters zijn niet op het gegeven adres gevonden", -); -$a->strings["Introduction complete."] = "Verzoek voltooid."; -$a->strings["Unrecoverable protocol error."] = "Onherstelbare protocolfout. "; -$a->strings["Profile unavailable."] = "Profiel onbeschikbaar"; -$a->strings["%s has received too many connection requests today."] = "%s heeft te veel verzoeken gehad vandaag."; -$a->strings["Spam protection measures have been invoked."] = "Beveiligingsmaatregelen tegen spam zijn in werking getreden."; -$a->strings["Friends are advised to please try again in 24 hours."] = "Wij adviseren vrienden om het over 24 uur nog een keer te proberen."; -$a->strings["Invalid locator"] = "Ongeldige plaatsbepaler"; -$a->strings["Invalid email address."] = "Geen geldig e-mailadres"; -$a->strings["This account has not been configured for email. Request failed."] = "Aanvraag mislukt. Dit account is niet geconfigureerd voor e-mail."; -$a->strings["Unable to resolve your name at the provided location."] = "Ik kan jouw naam op het opgegeven adres niet vinden."; -$a->strings["You have already introduced yourself here."] = "Je hebt jezelf hier al voorgesteld."; -$a->strings["Apparently you are already friends with %s."] = "Blijkbaar bent u al bevriend met %s."; -$a->strings["Invalid profile URL."] = "Ongeldig profiel adres."; -$a->strings["Disallowed profile URL."] = "Niet toegelaten profiel adres."; -$a->strings["Your introduction has been sent."] = "Je verzoek is verzonden."; -$a->strings["Please login to confirm introduction."] = "Log in om je verzoek te bevestigen."; -$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Je huidige identiteit is niet de juiste. Log met dit profiel in."; -$a->strings["Hide this contact"] = "Verberg dit contact"; -$a->strings["Welcome home %s."] = "Welkom terug %s."; -$a->strings["Please confirm your introduction/connection request to %s."] = "Bevestig je vriendschaps-/connectieverzoek voor %s."; -$a->strings["Confirm"] = "Bevestig"; -$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Vul hier uw 'Identiteitsadres' in van een van de volgende ondersteunde communicatienetwerken:"; -$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = "Als je nog geen lid bent van het vrije sociale web, volg dan deze link om een openbare Friendica-website te vinden, en sluit je vandaag nog aan."; -$a->strings["Friend/Connection Request"] = "Vriendschaps-/connectieverzoek"; -$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Voorbeelden: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; -$a->strings["Please answer the following:"] = "Beantwoord het volgende:"; -$a->strings["Does %s know you?"] = "Kent %s jou?"; -$a->strings["Add a personal note:"] = "Voeg een persoonlijke opmerking toe:"; -$a->strings["Friendica"] = "Friendica"; -$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Gefedereerde Sociale Web"; -$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = "- Gebruik niet dit formulier. Vul %s in in je Diaspora zoekbalk."; -$a->strings["Your Identity Address:"] = "Adres van uw identiteit:"; -$a->strings["Submit Request"] = "Aanvraag indienen"; -$a->strings["Registration successful. Please check your email for further instructions."] = "Registratie geslaagd. Kijk je e-mail na voor verdere instructies."; -$a->strings["Failed to send email message. Here your accout details:
    login: %s
    password: %s

    You can change your password after login."] = ""; -$a->strings["Your registration can not be processed."] = "Je registratie kan niet verwerkt worden."; -$a->strings["Your registration is pending approval by the site owner."] = "Jouw registratie wacht op goedkeuring van de beheerder."; -$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Deze website heeft het toegelaten dagelijkse aantal registraties overschreden. Probeer morgen opnieuw."; -$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Je kunt (optioneel) dit formulier invullen via OpenID door je OpenID in te geven en op 'Registreren' te klikken."; -$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Laat dit veld leeg als je niet vertrouwd bent met OpenID, en vul de rest van de items in."; -$a->strings["Your OpenID (optional): "] = "Je OpenID (optioneel):"; -$a->strings["Include your profile in member directory?"] = "Je profiel in de ledengids opnemen?"; -$a->strings["Membership on this site is by invitation only."] = "Lidmaatschap van deze website is uitsluitend op uitnodiging."; -$a->strings["Your invitation ID: "] = "Je uitnodigingsid:"; -$a->strings["Your Full Name (e.g. Joe Smith): "] = "Je volledige naam (bijv. Jan Jansens):"; -$a->strings["Your Email Address: "] = "Je email adres:"; -$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Kies een bijnaam voor je profiel. Deze moet met een letter beginnen. Je profieladres op deze website zal dan 'bijnaam@\$sitename' zijn."; -$a->strings["Choose a nickname: "] = "Kies een bijnaam:"; -$a->strings["Register"] = "Registreer"; -$a->strings["Import"] = "Importeren"; -$a->strings["Import your profile to this friendica instance"] = ""; -$a->strings["System down for maintenance"] = "Systeem onbeschikbaar wegens onderhoud"; -$a->strings["Search"] = "Zoeken"; -$a->strings["Global Directory"] = "Globale gids"; +$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Dit kan soms gebeuren als het contact door beide personen werd gevraagd, en het werd al goedgekeurd."; +$a->strings["Response from remote site was not understood."] = "Antwoord van de website op afstand werd niet begrepen."; +$a->strings["Unexpected response from remote site: "] = "Onverwacht antwoord van website op afstand:"; +$a->strings["Confirmation completed successfully."] = "Bevestiging werd correct voltooid."; +$a->strings["Remote site reported: "] = "Website op afstand berichtte: "; +$a->strings["Temporary failure. Please wait and try again."] = "Tijdelijke fout. Wacht even en probeer opnieuw."; +$a->strings["Introduction failed or was revoked."] = "Verzoek mislukt of herroepen."; +$a->strings["Unable to set contact photo."] = "Ik kan geen contact foto instellen."; +$a->strings["No user record found for '%s' "] = "Geen gebruiker gevonden voor '%s'"; +$a->strings["Our site encryption key is apparently messed up."] = "De encryptie-sleutel van onze webstek is blijkbaar beschadigd."; +$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Er werd een lege URL gegeven, of de URL kon niet ontcijferd worden door ons."; +$a->strings["Contact record was not found for you on our site."] = "We vonden op onze webstek geen contactrecord voor jou."; +$a->strings["Site public key not available in contact record for URL %s."] = "Publieke sleutel voor webstek niet beschikbaar in contactrecord voor URL %s."; +$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Het ID dat jouw systeem aangeeft is een dubbel op ons systeem. Als je opnieuw probeert zou het moeten werken."; +$a->strings["Unable to set your contact credentials on our system."] = "Niet in staat om op dit systeem je contactreferenties in te stellen."; +$a->strings["Unable to update your contact profile details on our system"] = ""; +$a->strings["%1\$s has joined %2\$s"] = "%1\$s is toegetreden tot %2\$s"; +$a->strings["Unable to locate original post."] = "Ik kan de originele post niet meer vinden."; +$a->strings["Empty post discarded."] = "Lege post weggegooid."; +$a->strings["System error. Post not saved."] = "Systeemfout. Post niet bewaard."; +$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Dit bericht werd naar jou gestuurd door %s, een lid van het Friendica sociale netwerk."; +$a->strings["You may visit them online at %s"] = "Je kunt ze online bezoeken op %s"; +$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Contacteer de afzender door op dit bericht te antwoorden als je deze berichten niet wilt ontvangen."; +$a->strings["%s posted an update."] = "%s heeft een wijziging geplaatst."; +$a->strings["Image uploaded but image cropping failed."] = "Afbeelding opgeladen, maar bijsnijden mislukt."; +$a->strings["Image size reduction [%s] failed."] = "Verkleining van de afbeelding [%s] mislukt."; +$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Shift-herlaad de pagina, of maak de browser cache leeg als nieuwe foto's niet onmiddellijk verschijnen."; +$a->strings["Unable to process image"] = "Ik kan de afbeelding niet verwerken"; +$a->strings["Upload File:"] = "Upload bestand:"; +$a->strings["Select a profile:"] = "Kies een profiel:"; +$a->strings["Upload"] = "Uploaden"; +$a->strings["skip this step"] = "Deze stap overslaan"; +$a->strings["select a photo from your photo albums"] = "Kies een foto uit je fotoalbums"; +$a->strings["Crop Image"] = "Afbeelding bijsnijden"; +$a->strings["Please adjust the image cropping for optimum viewing."] = "Pas het afsnijden van de afbeelding aan voor het beste resultaat."; +$a->strings["Done Editing"] = "Wijzigingen compleet"; +$a->strings["Image uploaded successfully."] = "Uploaden van afbeelding gelukt."; +$a->strings["Friends of %s"] = "Vrienden van %s"; +$a->strings["No friends to display."] = "Geen vrienden om te laten zien."; $a->strings["Find on this site"] = "Op deze website zoeken"; $a->strings["Site Directory"] = "Websitegids"; -$a->strings["Age: "] = "Leeftijd:"; $a->strings["Gender: "] = "Geslacht:"; -$a->strings["Gender:"] = "Geslacht:"; -$a->strings["Status:"] = "Tijdlijn:"; -$a->strings["Homepage:"] = "Website:"; -$a->strings["About:"] = "Over:"; $a->strings["No entries (some entries may be hidden)."] = "Geen gegevens (sommige gegevens kunnen verborgen zijn)."; -$a->strings["No potential page delegates located."] = "Niemand gevonden waar het paginabeheer mogelijk aan uitbesteed kan worden."; -$a->strings["Delegate Page Management"] = "Paginabeheer uitbesteden"; -$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."] = "Personen waaraan het beheer is uitbesteed kunnen alle onderdelen van een account/pagina beheren, behalve de basisinstellingen van een account. Besteed je persoonlijke account daarom niet uit aan personen die je niet volledig vertrouwd."; -$a->strings["Existing Page Managers"] = "Bestaande paginabeheerders"; -$a->strings["Existing Page Delegates"] = "Bestaande personen waaraan het paginabeheer is uitbesteed"; -$a->strings["Potential Delegates"] = "Mogelijke personen waaraan het paginabeheer kan worden uitbesteed "; -$a->strings["Add"] = "Toevoegen"; -$a->strings["No entries."] = "Geen gegevens."; -$a->strings["Common Friends"] = "Gedeelde Vrienden"; -$a->strings["No contacts in common."] = "Geen gedeelde contacten."; -$a->strings["Export account"] = "Account exporteren"; -$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."] = "Je account informatie en contacten exporteren. Gebruik dit om een backup van je account te maken en/of om het te verhuizen naar een andere server."; -$a->strings["Export all"] = "Alles exporteren"; -$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)"] = "Je account info, contacten en al je items in json formaat exporteren. Dit kan een heel groot bestand worden, en kan lang duren. Gebruik dit om een volledige backup van je account te maken (foto's worden niet geexporteerd)"; -$a->strings["%1\$s is currently %2\$s"] = "%1\$s is op dit moment %2\$s"; -$a->strings["Mood"] = "Stemming"; -$a->strings["Set your current mood and tell your friends"] = "Stel je huidige stemming in, en vertel het je vrienden"; -$a->strings["Do you really want to delete this suggestion?"] = "Wil je echt dit voorstel verwijderen?"; -$a->strings["Friend Suggestions"] = "Vriendschapsvoorstellen"; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Geen voorstellen beschikbaar. Als dit een nieuwe website is, kun je het over 24 uur nog eens proberen."; -$a->strings["Ignore/Hide"] = "Negeren/Verbergen"; -$a->strings["Profile deleted."] = "Profiel verwijderd"; -$a->strings["Profile-"] = "Profiel-"; -$a->strings["New profile created."] = "Nieuw profiel aangemaakt."; -$a->strings["Profile unavailable to clone."] = "Profiel niet beschikbaar om te klonen."; -$a->strings["Profile Name is required."] = "Profielnaam is vereist."; -$a->strings["Marital Status"] = "Echtelijke staat"; -$a->strings["Romantic Partner"] = "Romantische Partner"; -$a->strings["Likes"] = "Houdt van"; -$a->strings["Dislikes"] = "Houdt niet van"; -$a->strings["Work/Employment"] = "Werk"; -$a->strings["Religion"] = "Godsdienst"; -$a->strings["Political Views"] = "Politieke standpunten"; -$a->strings["Gender"] = "Geslacht"; -$a->strings["Sexual Preference"] = "Seksuele Voorkeur"; -$a->strings["Homepage"] = "Tijdlijn"; -$a->strings["Interests"] = "Interesses"; -$a->strings["Address"] = "Adres"; -$a->strings["Location"] = "Plaats"; -$a->strings["Profile updated."] = "Profiel bijgewerkt."; -$a->strings[" and "] = "en"; -$a->strings["public profile"] = "publiek profiel"; -$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s veranderde %2\$s naar “%3\$s”"; -$a->strings[" - Visit %1\$s's %2\$s"] = " - Bezoek %2\$s van %1\$s"; -$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s heeft een aangepast %2\$s, %3\$s veranderd."; -$a->strings["Hide contacts and friends:"] = ""; -$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Je vrienden/contacten verbergen voor bezoekers van dit profiel?"; -$a->strings["Edit Profile Details"] = "Profieldetails bewerken"; -$a->strings["Change Profile Photo"] = "Profielfoto wijzigen"; -$a->strings["View this profile"] = "Dit profiel bekijken"; -$a->strings["Create a new profile using these settings"] = "Nieuw profiel aanmaken met deze instellingen"; -$a->strings["Clone this profile"] = "Dit profiel klonen"; -$a->strings["Delete this profile"] = "Dit profiel verwijderen"; -$a->strings["Basic information"] = ""; -$a->strings["Profile picture"] = ""; -$a->strings["Preferences"] = ""; -$a->strings["Status information"] = ""; -$a->strings["Additional information"] = ""; -$a->strings["Profile Name:"] = "Profiel Naam:"; -$a->strings["Your Full Name:"] = "Je volledige naam:"; -$a->strings["Title/Description:"] = "Titel/Beschrijving:"; -$a->strings["Your Gender:"] = "Je Geslacht:"; -$a->strings["Birthday (%s):"] = "Geboortedatum (%s):"; -$a->strings["Street Address:"] = "Postadres:"; -$a->strings["Locality/City:"] = "Gemeente/Stad:"; -$a->strings["Postal/Zip Code:"] = "Postcode:"; -$a->strings["Country:"] = "Land:"; -$a->strings["Region/State:"] = "Regio/Staat:"; -$a->strings[" Marital Status:"] = " Echtelijke Staat:"; -$a->strings["Who: (if applicable)"] = "Wie: (indien toepasbaar)"; -$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Voorbeelden: Kathleen123, Kathleen Peeters, kathleen@voorbeeld.nl"; -$a->strings["Since [date]:"] = "Sinds [datum]:"; -$a->strings["Sexual Preference:"] = "Seksuele Voorkeur:"; -$a->strings["Homepage URL:"] = "Adres tijdlijn:"; -$a->strings["Hometown:"] = "Woonplaats:"; -$a->strings["Political Views:"] = "Politieke standpunten:"; -$a->strings["Religious Views:"] = "Geloof:"; -$a->strings["Public Keywords:"] = "Publieke Sleutelwoorden:"; -$a->strings["Private Keywords:"] = "Privé Sleutelwoorden:"; -$a->strings["Likes:"] = "Houdt van:"; -$a->strings["Dislikes:"] = "Houdt niet van:"; -$a->strings["Example: fishing photography software"] = "Voorbeeld: vissen fotografie software"; -$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Gebruikt om mogelijke vrienden voor te stellen, kan door anderen gezien worden)"; -$a->strings["(Used for searching profiles, never shown to others)"] = "(Gebruikt om profielen te zoeken, nooit aan anderen getoond)"; -$a->strings["Tell us about yourself..."] = "Vertel iets over jezelf..."; -$a->strings["Hobbies/Interests"] = "Hobby's/Interesses"; -$a->strings["Contact information and Social Networks"] = "Contactinformatie en sociale netwerken"; -$a->strings["Musical interests"] = "Muzikale interesses"; -$a->strings["Books, literature"] = "Boeken, literatuur"; -$a->strings["Television"] = "Televisie"; -$a->strings["Film/dance/culture/entertainment"] = "Film/dans/cultuur/ontspanning"; -$a->strings["Love/romance"] = "Liefde/romance"; -$a->strings["Work/employment"] = "Werk"; -$a->strings["School/education"] = "School/opleiding"; -$a->strings["This is your public profile.
    It may be visible to anybody using the internet."] = "Dit is jouw publiek profiel.
    Het kan zichtbaar zijn voor iedereen op het internet."; -$a->strings["Edit/Manage Profiles"] = "Wijzig/Beheer Profielen"; -$a->strings["Change profile photo"] = "Profiel foto wijzigen"; -$a->strings["Create New Profile"] = "Maak nieuw profiel"; -$a->strings["Profile Image"] = "Profiel afbeelding"; -$a->strings["visible to everybody"] = "zichtbaar voor iedereen"; -$a->strings["Edit visibility"] = "Pas zichtbaarheid aan"; -$a->strings["Item not found"] = "Item niet gevonden"; -$a->strings["Edit post"] = "Bericht bewerken"; -$a->strings["upload photo"] = "Foto uploaden"; -$a->strings["Attach file"] = "Bestand bijvoegen"; -$a->strings["attach file"] = "bestand bijvoegen"; -$a->strings["web link"] = "webadres"; -$a->strings["Insert video link"] = "Voeg video toe"; -$a->strings["video link"] = "video adres"; -$a->strings["Insert audio link"] = "Voeg audio adres toe"; -$a->strings["audio link"] = "audio adres"; -$a->strings["Set your location"] = "Stel uw locatie in"; -$a->strings["set location"] = "Stel uw locatie in"; -$a->strings["Clear browser location"] = "Verwijder locatie uit uw webbrowser"; -$a->strings["clear location"] = "Verwijder locatie uit uw webbrowser"; -$a->strings["Permission settings"] = "Instellingen van rechten"; -$a->strings["CC: email addresses"] = "CC: e-mailadressen"; -$a->strings["Public post"] = "Openbare post"; -$a->strings["Set title"] = "Titel plaatsen"; -$a->strings["Categories (comma-separated list)"] = "Categorieën (komma-gescheiden lijst)"; -$a->strings["Example: bob@example.com, mary@example.com"] = "Voorbeeld: bob@voorbeeld.nl, an@voorbeeld.be"; -$a->strings["This is Friendica, version"] = "Dit is Friendica, versie"; -$a->strings["running at web location"] = "draaiend op web-adres"; -$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Bezoek Friendica.com om meer te leren over het Friendica project."; -$a->strings["Bug reports and issues: please visit"] = "Bug rapporten en problemen: bezoek"; -$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Suggesties, lof, donaties, enzovoort - stuur een e-mail naar \"info\" op Friendica - dot com"; -$a->strings["Installed plugins/addons/apps:"] = "Geïnstalleerde plugins/toepassingen:"; -$a->strings["No installed plugins/addons/apps"] = "Geen plugins of toepassingen geïnstalleerd"; -$a->strings["Authorize application connection"] = ""; -$a->strings["Return to your app and insert this Securty Code:"] = ""; -$a->strings["Please login to continue."] = "Log in om verder te gaan."; -$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Wil je deze toepassing toestemming geven om jouw berichten en contacten in te kijken, en/of nieuwe berichten in jouw plaats aan te maken?"; -$a->strings["Remote privacy information not available."] = "Privacyinformatie op afstand niet beschikbaar."; -$a->strings["Visible to:"] = "Zichtbaar voor:"; -$a->strings["Personal Notes"] = "Persoonlijke Nota's"; -$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; $a->strings["Time Conversion"] = "Tijdsconversie"; $a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica biedt deze dienst aan om gebeurtenissen te delen met andere netwerken en vrienden in onbekende tijdzones."; $a->strings["UTC time: %s"] = "UTC tijd: %s"; $a->strings["Current timezone: %s"] = "Huidige Tijdzone: %s"; $a->strings["Converted localtime: %s"] = "Omgerekende lokale tijd: %s"; $a->strings["Please select your timezone:"] = "Selecteer je tijdzone:"; -$a->strings["Poke/Prod"] = "Aanstoten/porren"; -$a->strings["poke, prod or do other things to somebody"] = "aanstoten, porren of andere dingen met iemand doen"; -$a->strings["Recipient"] = "Ontvanger"; -$a->strings["Choose what you wish to do to recipient"] = "Kies wat je met de ontvanger wil doen"; -$a->strings["Make this post private"] = "Dit bericht privé maken"; -$a->strings["Total invitation limit exceeded."] = "Totale uitnodigingslimiet overschreden."; -$a->strings["%s : Not a valid email address."] = "%s: Geen geldig e-mailadres."; -$a->strings["Please join us on Friendica"] = "Kom bij ons op Friendica"; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Uitnodigingslimiet overschreden. Neem contact op met de beheerder van je website."; -$a->strings["%s : Message delivery failed."] = "%s : Aflevering van bericht mislukt."; -$a->strings["%d message sent."] = array( - 0 => "%d bericht verzonden.", - 1 => "%d berichten verzonden.", -); -$a->strings["You have no more invitations available"] = "Je kunt geen uitnodigingen meer sturen"; -$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Bezoek %s voor een lijst van openbare sites waar je je kunt aansluiten. Friendica leden op andere sites kunnen allemaal met elkaar verbonden worden, en ook met leden van verschillende andere sociale netwerken."; -$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Om deze uitnodiging te accepteren kan je je op %s registreren of op een andere vrij toegankelijke Friendica-website."; -$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Friendica servers zijn allemaal onderling verbonden om een reusachtig sociaal web te maken met verbeterde privacy, dat eigendom is van en gecontroleerd door zijn leden. Ze kunnen ook verbindingen maken met verschillende traditionele sociale netwerken. Bekijk %s voor een lijst van alternatieve Friendica servers waar je aan kunt sluiten."; -$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Onze verontschuldigingen. Dit systeem is momenteel niet ingesteld om verbinding te maken met andere openbare plaatsen of leden uit te nodigen."; -$a->strings["Send invitations"] = "Verstuur uitnodigingen"; -$a->strings["Enter email addresses, one per line:"] = "Vul e-mailadressen in, één per lijn:"; -$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Ik nodig je vriendelijk uit om bij mij en andere vrienden te komen op Friendica - en ons te helpen om een beter sociaal web te bouwen."; -$a->strings["You will need to supply this invitation code: \$invite_code"] = "Je zult deze uitnodigingscode moeten invullen: \$invite_code"; -$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Eens je geregistreerd bent kun je contact leggen met mij via mijn profielpagina op:"; -$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Voor meer informatie over het Friendica project en waarom wij denken dat het belangrijk is kun je http://friendica.com/ bezoeken"; -$a->strings["Photo Albums"] = "Fotoalbums"; -$a->strings["Contact Photos"] = "Contactfoto's"; -$a->strings["Upload New Photos"] = "Nieuwe foto's uploaden"; -$a->strings["Contact information unavailable"] = "Contactinformatie niet beschikbaar"; -$a->strings["Album not found."] = "Album niet gevonden"; -$a->strings["Delete Album"] = "Verwijder album"; -$a->strings["Do you really want to delete this photo album and all its photos?"] = "Wil je echt dit fotoalbum en alle foto's erin verwijderen?"; -$a->strings["Delete Photo"] = "Verwijder foto"; -$a->strings["Do you really want to delete this photo?"] = "Wil je echt deze foto verwijderen?"; -$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s is gelabeld in %2\$s door %3\$s"; -$a->strings["a photo"] = "een foto"; -$a->strings["Image exceeds size limit of "] = "Afbeelding is groter dan de maximale afmeting van"; -$a->strings["Image file is empty."] = "Afbeeldingsbestand is leeg."; -$a->strings["No photos selected"] = "Geen foto's geselecteerd"; -$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Je hebt %1$.2f Mbytes van %2$.2f Mbytes foto-opslagruimte gebruikt."; -$a->strings["Upload Photos"] = "Upload foto's"; -$a->strings["New album name: "] = "Nieuwe albumnaam: "; -$a->strings["or existing album name: "] = "of bestaande albumnaam: "; -$a->strings["Do not show a status post for this upload"] = "Toon geen bericht op je tijdlijn van deze upload"; -$a->strings["Permissions"] = "Rechten"; -$a->strings["Private Photo"] = "Privé foto"; -$a->strings["Public Photo"] = "Publieke foto"; -$a->strings["Edit Album"] = "Album wijzigen"; -$a->strings["Show Newest First"] = "Toon niewste eerst"; -$a->strings["Show Oldest First"] = "Toon oudste eerst"; -$a->strings["View Photo"] = "Bekijk foto"; -$a->strings["Permission denied. Access to this item may be restricted."] = "Toegang geweigerd. Toegang tot dit item is mogelijk beperkt."; -$a->strings["Photo not available"] = "Foto is niet beschikbaar"; -$a->strings["View photo"] = "Bekijk foto"; -$a->strings["Edit photo"] = "Bewerk foto"; -$a->strings["Use as profile photo"] = "Gebruik als profielfoto"; -$a->strings["View Full Size"] = "Bekijk in volledig formaat"; -$a->strings["Tags: "] = "Labels: "; -$a->strings["[Remove any tag]"] = "[Alle labels verwijderen]"; -$a->strings["Rotate CW (right)"] = "Roteren met de klok mee (rechts)"; -$a->strings["Rotate CCW (left)"] = "Roteren tegen de klok in (links)"; -$a->strings["New album name"] = "Nieuwe albumnaam"; -$a->strings["Caption"] = "Onderschrift"; -$a->strings["Add a Tag"] = "Een label toevoegen"; -$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl, #Ardennen, #camping "; -$a->strings["Private photo"] = "Privé foto"; -$a->strings["Public photo"] = "Publieke foto"; -$a->strings["Share"] = "Delen"; -$a->strings["Recent Photos"] = "Recente foto's"; -$a->strings["Account approved."] = "Account goedgekeurd."; -$a->strings["Registration revoked for %s"] = "Registratie ingetrokken voor %s"; -$a->strings["Please login."] = "Inloggen."; -$a->strings["Move account"] = "Account verplaatsen"; -$a->strings["You can import an account from another Friendica server."] = "Je kunt een account van een andere Friendica server importeren."; -$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."] = "Je moet je account bij de oude server exporteren, en hier uploaden. We zullen je oude account hier opnieuw aanmaken, met al je contacten. We zullen ook proberen om je vrienden in te lichten dat je naar hier verhuisd bent."; -$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Deze functie is experimenteel. We kunnen geen contacten van het OStatus netwerk (statusnet/identi.ca) of van Diaspora importeren."; -$a->strings["Account file"] = "Account bestand"; -$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = ""; -$a->strings["Item not available."] = "Item niet beschikbaar"; -$a->strings["Item was not found."] = "Item niet gevonden"; -$a->strings["Delete this item?"] = "Dit item verwijderen?"; -$a->strings["show fewer"] = "Minder tonen"; -$a->strings["Update %s failed. See error logs."] = "Wijziging %s mislukt. Lees de error logbestanden."; -$a->strings["Create a New Account"] = "Nieuw account aanmaken"; -$a->strings["Logout"] = "Uitloggen"; -$a->strings["Nickname or Email address: "] = "Bijnaam of e-mailadres:"; -$a->strings["Password: "] = "Wachtwoord:"; -$a->strings["Remember me"] = "Onthou me"; -$a->strings["Or login using OpenID: "] = "Of log in met OpenID:"; -$a->strings["Forgot your password?"] = "Wachtwoord vergeten?"; -$a->strings["Website Terms of Service"] = "Gebruikersvoorwaarden website"; -$a->strings["terms of service"] = "servicevoorwaarden"; -$a->strings["Website Privacy Policy"] = "Privacybeleid website"; -$a->strings["privacy policy"] = "privacybeleid"; -$a->strings["Requested account is not available."] = "Gevraagde account is niet beschikbaar."; -$a->strings["Edit profile"] = "Bewerk profiel"; -$a->strings["Message"] = "Bericht"; -$a->strings["Profiles"] = "Profielen"; -$a->strings["Manage/edit profiles"] = "Beheer/wijzig profielen"; -$a->strings["Network:"] = ""; -$a->strings["g A l F d"] = "G l j F"; -$a->strings["F d"] = "d F"; -$a->strings["[today]"] = "[vandaag]"; -$a->strings["Birthday Reminders"] = "Verjaardagsherinneringen"; -$a->strings["Birthdays this week:"] = "Verjaardagen deze week:"; -$a->strings["[No description]"] = "[Geen beschrijving]"; -$a->strings["Event Reminders"] = "Gebeurtenisherinneringen"; -$a->strings["Events this week:"] = "Gebeurtenissen deze week:"; -$a->strings["Status"] = "Tijdlijn"; -$a->strings["Status Messages and Posts"] = "Berichten op jouw tijdlijn"; -$a->strings["Profile Details"] = "Profieldetails"; -$a->strings["Videos"] = "Video's"; -$a->strings["Events and Calendar"] = "Gebeurtenissen en kalender"; -$a->strings["Only You Can See This"] = "Alleen jij kunt dit zien"; -$a->strings["This entry was edited"] = ""; -$a->strings["ignore thread"] = ""; -$a->strings["unignore thread"] = ""; -$a->strings["toggle ignore status"] = ""; -$a->strings["ignored"] = ""; -$a->strings["Categories:"] = "Categorieën:"; -$a->strings["Filed under:"] = "Bewaard onder:"; -$a->strings["via"] = "via"; -$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."] = ""; -$a->strings["The error message is\n[pre]%s[/pre]"] = ""; -$a->strings["Errors encountered creating database tables."] = "Tijdens het aanmaken van databasetabellen zijn fouten vastgesteld."; -$a->strings["Errors encountered performing database changes."] = ""; -$a->strings["Logged out."] = "Uitgelogd."; -$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = ""; -$a->strings["The error message was:"] = "De foutboodschap was:"; -$a->strings["Add New Contact"] = "Nieuw Contact toevoegen"; -$a->strings["Enter address or web location"] = "Voeg een webadres of -locatie in:"; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Voorbeeld: jan@voorbeeld.be, http://voorbeeld.nl/barbara"; -$a->strings["%d invitation available"] = array( - 0 => "%d uitnodiging beschikbaar", - 1 => "%d uitnodigingen beschikbaar", -); -$a->strings["Find People"] = "Zoek mensen"; -$a->strings["Enter name or interest"] = "Vul naam of interesse in"; -$a->strings["Connect/Follow"] = "Verbind/Volg"; -$a->strings["Examples: Robert Morgenstein, Fishing"] = "Voorbeelden: Jan Peeters, Vissen"; -$a->strings["Similar Interests"] = "Dezelfde interesses"; -$a->strings["Random Profile"] = "Willekeurig Profiel"; -$a->strings["Invite Friends"] = "Vrienden uitnodigen"; -$a->strings["Networks"] = "Netwerken"; -$a->strings["All Networks"] = "Alle netwerken"; -$a->strings["Saved Folders"] = "Bewaarde Mappen"; -$a->strings["Everything"] = "Alles"; -$a->strings["Categories"] = "Categorieën"; -$a->strings["General Features"] = "Algemene functies"; -$a->strings["Multiple Profiles"] = "Meerdere profielen"; -$a->strings["Ability to create multiple profiles"] = "Mogelijkheid om meerdere profielen aan te maken"; -$a->strings["Post Composition Features"] = "Functies voor het opstellen van berichten"; -$a->strings["Richtext Editor"] = "RTF-tekstverwerker"; -$a->strings["Enable richtext editor"] = "Gebruik een tekstverwerker met eenvoudige opmaakfuncties"; -$a->strings["Post Preview"] = "Voorvertoning bericht"; -$a->strings["Allow previewing posts and comments before publishing them"] = ""; -$a->strings["Auto-mention Forums"] = ""; -$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = ""; -$a->strings["Network Sidebar Widgets"] = "Zijbalkwidgets op netwerkpagina"; -$a->strings["Search by Date"] = "Zoeken op datum"; -$a->strings["Ability to select posts by date ranges"] = "Mogelijkheid om berichten te selecteren volgens datumbereik"; -$a->strings["Group Filter"] = "Groepsfilter"; -$a->strings["Enable widget to display Network posts only from selected group"] = "Sta de widget toe om netwerkberichten te tonen van bepaalde groepen"; -$a->strings["Network Filter"] = "Netwerkfilter"; -$a->strings["Enable widget to display Network posts only from selected network"] = "Sta de widget toe om netwerkberichten te tonen van bepaalde netwerken"; -$a->strings["Save search terms for re-use"] = "Sla zoekopdrachten op voor hergebruik"; -$a->strings["Network Tabs"] = "Netwerktabs"; -$a->strings["Network Personal Tab"] = "Persoonlijke netwerktab"; -$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had"; -$a->strings["Network New Tab"] = "Nieuwe netwerktab"; -$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Laat de tab alleen nieuwe netwerkberichten tonen (van de laatste 12 uur)"; -$a->strings["Network Shared Links Tab"] = ""; -$a->strings["Enable tab to display only Network posts with links in them"] = ""; -$a->strings["Post/Comment Tools"] = "Bericht-/reactiehulpmiddelen"; -$a->strings["Multiple Deletion"] = "Meervoudige verwijdering"; -$a->strings["Select and delete multiple posts/comments at once"] = "Selecteer en verwijder meerdere berichten/reacties in een keer"; -$a->strings["Edit Sent Posts"] = "Bewerk verzonden berichten"; -$a->strings["Edit and correct posts and comments after sending"] = "Bewerk en corrigeer berichten en reacties na verzending"; -$a->strings["Tagging"] = "Labelen"; -$a->strings["Ability to tag existing posts"] = "Mogelijkheid om bestaande berichten te labelen"; -$a->strings["Post Categories"] = "Categorieën berichten"; -$a->strings["Add categories to your posts"] = "Voeg categorieën toe aan je berichten"; -$a->strings["Ability to file posts under folders"] = "Mogelijkheid om berichten in mappen te bewaren"; -$a->strings["Dislike Posts"] = "Vind berichten niet leuk"; -$a->strings["Ability to dislike posts/comments"] = "Mogelijkheid om berichten of reacties niet leuk te vinden"; -$a->strings["Star Posts"] = "Geef berichten een ster"; -$a->strings["Ability to mark special posts with a star indicator"] = ""; -$a->strings["Mute Post Notifications"] = ""; -$a->strings["Ability to mute notifications for a thread"] = ""; -$a->strings["Connect URL missing."] = ""; -$a->strings["This site is not configured to allow communications with other networks."] = "Deze website is niet geconfigureerd voor communicatie met andere netwerken."; -$a->strings["No compatible communication protocols or feeds were discovered."] = "Er werden geen compatibele communicatieprotocols of feeds ontdekt."; -$a->strings["The profile address specified does not provide adequate information."] = ""; -$a->strings["An author or name was not found."] = ""; -$a->strings["No browser URL could be matched to this address."] = ""; -$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Het @-stijl-identiteitsadres komt niet overeen met een nekend protocol of e-mailcontact."; -$a->strings["Use mailto: in front of address to force email check."] = "Gebruik mailto: voor het adres om een e-mailcontrole af te dwingen."; -$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = ""; -$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = ""; -$a->strings["Unable to retrieve contact information."] = ""; -$a->strings["following"] = "volgend"; -$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Een verwijderde groep met deze naam is weer tot leven gewekt. Bestaande itemrechten kunnen voor deze groep en toekomstige leden gelden. Wanneer je niet zo had bedoeld kan je een andere groep met een andere naam creëren. "; -$a->strings["Default privacy group for new contacts"] = ""; -$a->strings["Everybody"] = "Iedereen"; -$a->strings["edit"] = "verander"; -$a->strings["Edit group"] = "Verander groep"; -$a->strings["Create a new group"] = "Maak nieuwe groep"; -$a->strings["Contacts not in any group"] = ""; -$a->strings["Miscellaneous"] = "Diversen"; -$a->strings["year"] = "jaar"; -$a->strings["month"] = "maand"; -$a->strings["day"] = "dag"; -$a->strings["never"] = "nooit"; -$a->strings["less than a second ago"] = "minder dan een seconde geleden"; -$a->strings["years"] = "jaren"; -$a->strings["months"] = "maanden"; -$a->strings["week"] = "week"; -$a->strings["weeks"] = "weken"; -$a->strings["days"] = "dagen"; -$a->strings["hour"] = "uur"; -$a->strings["hours"] = "uren"; -$a->strings["minute"] = "minuut"; -$a->strings["minutes"] = "minuten"; -$a->strings["second"] = "seconde"; -$a->strings["seconds"] = "secondes"; -$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s geleden"; -$a->strings["%s's birthday"] = "%s's verjaardag"; -$a->strings["Happy Birthday %s"] = "Gefeliciteerd %s"; -$a->strings["Visible to everybody"] = "Zichtbaar voor iedereen"; -$a->strings["show"] = "tonen"; -$a->strings["don't show"] = "Niet tonen"; -$a->strings["[no subject]"] = "[geen onderwerp]"; -$a->strings["stopped following"] = ""; -$a->strings["Poke"] = "Aanstoten"; -$a->strings["View Status"] = "Bekijk status"; -$a->strings["View Profile"] = "Bekijk profiel"; -$a->strings["View Photos"] = "Bekijk foto's"; -$a->strings["Network Posts"] = "Netwerkberichten"; -$a->strings["Edit Contact"] = "Bewerk contact"; -$a->strings["Drop Contact"] = "Verwijder contact"; -$a->strings["Send PM"] = "Stuur een privébericht"; -$a->strings["Welcome "] = "Welkom"; -$a->strings["Please upload a profile photo."] = "Upload een profielfoto."; -$a->strings["Welcome back "] = "Welkom terug "; -$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = ""; -$a->strings["event"] = "gebeurtenis"; -$a->strings["%1\$s poked %2\$s"] = "%1\$s stootte %2\$s aan"; -$a->strings["poked"] = "aangestoten"; -$a->strings["post/item"] = "bericht/item"; -$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s markeerde %2\$s's %3\$s als favoriet"; -$a->strings["remove"] = "verwijder"; -$a->strings["Delete Selected Items"] = "Geselecteerde items verwijderen"; -$a->strings["Follow Thread"] = "Conversatie volgen"; -$a->strings["%s likes this."] = "%s vindt dit leuk."; -$a->strings["%s doesn't like this."] = "%s vindt dit niet leuk."; -$a->strings["%2\$d people like this"] = "%2\$d mensen vinden dit leuk"; -$a->strings["%2\$d people don't like this"] = "%2\$d people vinden dit niet leuk"; -$a->strings["and"] = "en"; -$a->strings[", and %d other people"] = ", en %d andere mensen"; -$a->strings["%s like this."] = "%s vindt dit leuk."; -$a->strings["%s don't like this."] = "%s vindt dit niet leuk."; -$a->strings["Visible to everybody"] = "Zichtbaar voor iedereen"; -$a->strings["Please enter a video link/URL:"] = "Vul een videolink/URL in:"; -$a->strings["Please enter an audio link/URL:"] = "Vul een audiolink/URL in:"; -$a->strings["Tag term:"] = "Label:"; -$a->strings["Where are you right now?"] = "Waar ben je nu?"; -$a->strings["Delete item(s)?"] = "Item(s) verwijderen?"; -$a->strings["Post to Email"] = "Verzenden per e-mail"; -$a->strings["Connectors disabled, since \"%s\" is enabled."] = ""; -$a->strings["permissions"] = "rechten"; -$a->strings["Post to Groups"] = "Verzenden naar Groepen"; -$a->strings["Post to Contacts"] = "Verzenden naar Contacten"; -$a->strings["Private post"] = "Privé verzending"; -$a->strings["view full size"] = "Volledig formaat"; -$a->strings["newer"] = "nieuwere berichten"; -$a->strings["older"] = "oudere berichten"; -$a->strings["prev"] = "vorige"; -$a->strings["first"] = "eerste"; -$a->strings["last"] = "laatste"; -$a->strings["next"] = "volgende"; -$a->strings["No contacts"] = "Geen contacten"; -$a->strings["%d Contact"] = array( - 0 => "%d contact", - 1 => "%d contacten", -); -$a->strings["poke"] = "aanstoten"; -$a->strings["ping"] = "ping"; -$a->strings["pinged"] = "gepingd"; -$a->strings["prod"] = "porren"; -$a->strings["prodded"] = "gepord"; -$a->strings["slap"] = "slaan"; -$a->strings["slapped"] = "geslagen"; -$a->strings["finger"] = "finger"; -$a->strings["fingered"] = "gerfingerd"; -$a->strings["rebuff"] = "afpoeieren"; -$a->strings["rebuffed"] = "afgepoeierd"; -$a->strings["happy"] = "Blij"; -$a->strings["sad"] = "Verdrietig"; -$a->strings["mellow"] = "mellow"; -$a->strings["tired"] = "vermoeid"; -$a->strings["perky"] = "parmantig"; -$a->strings["angry"] = "boos"; -$a->strings["stupified"] = "verbijsterd"; -$a->strings["puzzled"] = "onzeker"; -$a->strings["interested"] = "Geïnteresseerd"; -$a->strings["bitter"] = "bitter"; -$a->strings["cheerful"] = "vrolijk"; -$a->strings["alive"] = "levend"; -$a->strings["annoyed"] = "verveeld"; -$a->strings["anxious"] = "bezorgd"; -$a->strings["cranky"] = "humeurig "; -$a->strings["disturbed"] = "verontrust"; -$a->strings["frustrated"] = "gefrustreerd"; -$a->strings["motivated"] = "gemotiveerd"; -$a->strings["relaxed"] = "ontspannen"; -$a->strings["surprised"] = "verbaasd"; -$a->strings["Monday"] = "Maandag"; -$a->strings["Tuesday"] = "Dinsdag"; -$a->strings["Wednesday"] = "Woensdag"; -$a->strings["Thursday"] = "Donderdag"; -$a->strings["Friday"] = "Vrijdag"; -$a->strings["Saturday"] = "Zaterdag"; -$a->strings["Sunday"] = "Zondag"; -$a->strings["January"] = "Januari"; -$a->strings["February"] = "Februari"; -$a->strings["March"] = "Maart"; -$a->strings["April"] = "April"; -$a->strings["May"] = "Mei"; -$a->strings["June"] = "Juni"; -$a->strings["July"] = "Juli"; -$a->strings["August"] = "Augustus"; -$a->strings["September"] = "September"; -$a->strings["October"] = "Oktober"; -$a->strings["November"] = "November"; -$a->strings["December"] = "December"; -$a->strings["bytes"] = "bytes"; -$a->strings["Click to open/close"] = "klik om te openen/sluiten"; -$a->strings["default"] = "standaard"; -$a->strings["Select an alternate language"] = "Kies een andere taal"; -$a->strings["activity"] = "activiteit"; -$a->strings["post"] = "bericht"; -$a->strings["Item filed"] = "Item bewaard"; -$a->strings["Image/photo"] = "Afbeelding/foto"; -$a->strings["%2\$s %3\$s"] = ""; -$a->strings["%s wrote the following post"] = ""; -$a->strings["$1 wrote:"] = "$1 schreef:"; -$a->strings["Encrypted content"] = "Versleutelde inhoud"; -$a->strings["(no subject)"] = "(geen onderwerp)"; -$a->strings["noreply"] = "geen reactie"; -$a->strings["Cannot locate DNS info for database server '%s'"] = ""; -$a->strings["Unknown | Not categorised"] = "Onbekend | Niet "; -$a->strings["Block immediately"] = "Onmiddellijk blokkeren"; -$a->strings["Shady, spammer, self-marketer"] = "Onbetrouwbaar, spammer, zelfpromotor"; -$a->strings["Known to me, but no opinion"] = "Bekend, maar geen mening"; -$a->strings["OK, probably harmless"] = "OK, waarschijnlijk onschadelijk"; -$a->strings["Reputable, has my trust"] = "Gerenommeerd, heeft mijn vertrouwen"; -$a->strings["Weekly"] = "wekelijks"; -$a->strings["Monthly"] = "maandelijks"; -$a->strings["OStatus"] = "OStatus"; -$a->strings["RSS/Atom"] = "RSS/Atom"; -$a->strings["Zot!"] = "Zot!"; -$a->strings["LinkedIn"] = "Linkedln"; -$a->strings["XMPP/IM"] = "XMPP/IM"; -$a->strings["MySpace"] = "Myspace"; -$a->strings["Google+"] = "Google+"; -$a->strings["pump.io"] = "pump.io"; -$a->strings["Twitter"] = "Twitter"; -$a->strings["Diaspora Connector"] = "Diaspora-connector"; -$a->strings["Statusnet"] = "Statusnet"; -$a->strings["App.net"] = ""; -$a->strings[" on Last.fm"] = " op Last.fm"; -$a->strings["Starts:"] = "Begint:"; -$a->strings["Finishes:"] = "Eindigt:"; -$a->strings["j F, Y"] = "F j Y"; -$a->strings["j F"] = "F j"; -$a->strings["Birthday:"] = "Verjaardag:"; -$a->strings["Age:"] = "Leeftijd:"; -$a->strings["for %1\$d %2\$s"] = "voor %1\$d %2\$s"; -$a->strings["Tags:"] = "Labels:"; -$a->strings["Religion:"] = "Religie:"; -$a->strings["Hobbies/Interests:"] = "Hobby:"; -$a->strings["Contact information and Social Networks:"] = "Contactinformatie en sociale netwerken:"; -$a->strings["Musical interests:"] = "Muzikale interesse "; -$a->strings["Books, literature:"] = "Boeken, literatuur:"; -$a->strings["Television:"] = "Televisie"; -$a->strings["Film/dance/culture/entertainment:"] = "Film/dans/cultuur/ontspanning:"; -$a->strings["Love/Romance:"] = "Liefde/romance:"; -$a->strings["Work/employment:"] = "Werk/beroep:"; -$a->strings["School/education:"] = "School/opleiding:"; -$a->strings["Click here to upgrade."] = ""; -$a->strings["This action exceeds the limits set by your subscription plan."] = ""; -$a->strings["This action is not available under your subscription plan."] = ""; -$a->strings["End this session"] = "Deze sessie beëindigen"; -$a->strings["Your posts and conversations"] = "Jouw berichten en conversaties"; -$a->strings["Your profile page"] = "Jouw profiel pagina"; -$a->strings["Your photos"] = "Jouw foto's"; -$a->strings["Your videos"] = ""; -$a->strings["Your events"] = "Jouw gebeurtenissen"; -$a->strings["Personal notes"] = "Persoonlijke nota's"; -$a->strings["Your personal notes"] = ""; -$a->strings["Sign in"] = "Inloggen"; -$a->strings["Home Page"] = "Jouw tijdlijn"; -$a->strings["Create an account"] = "Maak een accoount"; -$a->strings["Help and documentation"] = "Hulp en documentatie"; -$a->strings["Apps"] = "Apps"; -$a->strings["Addon applications, utilities, games"] = "Extra toepassingen, hulpmiddelen of spelletjes"; -$a->strings["Search site content"] = "Doorzoek de inhoud van de website"; -$a->strings["Conversations on this site"] = "Conversaties op deze website"; -$a->strings["Conversations on the network"] = ""; -$a->strings["Directory"] = "Gids"; -$a->strings["People directory"] = "Personengids"; -$a->strings["Information"] = "Informatie"; -$a->strings["Information about this friendica instance"] = ""; -$a->strings["Conversations from your friends"] = "Conversaties van je vrienden"; -$a->strings["Network Reset"] = "Netwerkpagina opnieuw instellen"; -$a->strings["Load Network page with no filters"] = "Laad de netwerkpagina zonder filters"; -$a->strings["Friend Requests"] = "Vriendschapsverzoeken"; -$a->strings["See all notifications"] = "Toon alle notificaties"; -$a->strings["Mark all system notifications seen"] = "Alle systeemnotificaties als gelezen markeren"; -$a->strings["Private mail"] = "Privéberichten"; -$a->strings["Inbox"] = "Inbox"; -$a->strings["Outbox"] = "Verzonden berichten"; -$a->strings["Manage"] = "Beheren"; -$a->strings["Manage other pages"] = "Andere pagina's beheren"; -$a->strings["Account settings"] = "Account instellingen"; -$a->strings["Manage/Edit Profiles"] = "Beheer/Wijzig Profielen"; -$a->strings["Manage/edit friends and contacts"] = "Beheer/Wijzig vrienden en contacten"; -$a->strings["Site setup and configuration"] = "Website opzetten en configureren"; -$a->strings["Navigation"] = "Navigatie"; -$a->strings["Site map"] = "Sitemap"; -$a->strings["User not found."] = "Gebruiker niet gevonden"; -$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = ""; -$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = ""; -$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = ""; -$a->strings["There is no status with this id."] = "Er is geen status met dit kenmerk"; -$a->strings["There is no conversation with this id."] = ""; -$a->strings["Invalid request."] = ""; -$a->strings["Invalid item."] = ""; -$a->strings["Invalid action. "] = ""; -$a->strings["DB error"] = ""; -$a->strings["An invitation is required."] = "Een uitnodiging is vereist."; -$a->strings["Invitation could not be verified."] = "Uitnodiging kon niet geverifieerd worden."; -$a->strings["Invalid OpenID url"] = "Ongeldige OpenID url"; -$a->strings["Please enter the required information."] = "Vul de vereiste informatie in."; -$a->strings["Please use a shorter name."] = "gebruik een kortere naam"; -$a->strings["Name too short."] = "Naam te kort"; -$a->strings["That doesn't appear to be your full (First Last) name."] = "Dat lijkt niet je volledige naam (voor- en achternaam) te zijn."; -$a->strings["Your email domain is not among those allowed on this site."] = "Je e-maildomein is op deze website niet toegestaan."; -$a->strings["Not a valid email address."] = "Geen geldig e-mailadres."; -$a->strings["Cannot use that email."] = "Ik kan die e-mail niet gebruiken."; -$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Je \"bijnaam\" kan alleen \"a-z\", \"0-9\", \"-\", en \"_\" bevatten, en moet ook met een letter beginnen."; -$a->strings["Nickname is already registered. Please choose another."] = "Bijnaam is al geregistreerd. Kies een andere."; -$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Bijnaam was ooit hier geregistreerd en kan niet herbruikt worden. Kies een andere."; -$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERNSTIGE FOUT: aanmaken van beveiligingssleutels mislukt."; -$a->strings["An error occurred during registration. Please try again."] = ""; -$a->strings["An error occurred creating your default profile. Please try again."] = ""; -$a->strings["Friends"] = "Vrienden"; -$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = ""; -$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."] = ""; -$a->strings["Sharing notification from Diaspora network"] = ""; -$a->strings["Attachments:"] = "Bijlagen:"; -$a->strings["Do you really want to delete this item?"] = "Wil je echt dit item verwijderen?"; -$a->strings["Archives"] = "Archieven"; -$a->strings["Male"] = "Man"; -$a->strings["Female"] = "Vrouw"; -$a->strings["Currently Male"] = "Momenteel mannelijk"; -$a->strings["Currently Female"] = "Momenteel vrouwelijk"; -$a->strings["Mostly Male"] = "Meestal mannelijk"; -$a->strings["Mostly Female"] = "Meestal vrouwelijk"; -$a->strings["Transgender"] = "Transgender"; -$a->strings["Intersex"] = "Interseksueel"; -$a->strings["Transsexual"] = "Transseksueel"; -$a->strings["Hermaphrodite"] = "Hermafrodiet"; -$a->strings["Neuter"] = "Genderneutraal"; -$a->strings["Non-specific"] = "Niet-specifiek"; -$a->strings["Other"] = "Anders"; -$a->strings["Undecided"] = "Onbeslist"; -$a->strings["Males"] = "Manen"; -$a->strings["Females"] = "Vrouwen"; -$a->strings["Gay"] = "Homo"; -$a->strings["Lesbian"] = "Lesbie"; -$a->strings["No Preference"] = "Geen voorkeur"; -$a->strings["Bisexual"] = "Biseksueel"; -$a->strings["Autosexual"] = "Autoseksueel"; -$a->strings["Abstinent"] = "Onthouder"; -$a->strings["Virgin"] = "Maagd"; -$a->strings["Deviant"] = "Afwijkend"; -$a->strings["Fetish"] = "Fetisj"; -$a->strings["Oodles"] = "Veel"; -$a->strings["Nonsexual"] = "Niet seksueel"; -$a->strings["Single"] = "Alleenstaand"; -$a->strings["Lonely"] = "Eenzaam"; -$a->strings["Available"] = "Beschikbaar"; -$a->strings["Unavailable"] = "Onbeschikbaar"; -$a->strings["Has crush"] = "Verliefd"; -$a->strings["Infatuated"] = "Smoorverliefd"; -$a->strings["Dating"] = "Aan het daten"; -$a->strings["Unfaithful"] = "Ontrouw"; -$a->strings["Sex Addict"] = "Seksverslaafd"; -$a->strings["Friends/Benefits"] = "Vriendschap plus"; -$a->strings["Casual"] = "Ongebonden/vluchtig"; -$a->strings["Engaged"] = "Verloofd"; -$a->strings["Married"] = "Getrouwd"; -$a->strings["Imaginarily married"] = "Denkbeeldig getrouwd"; -$a->strings["Partners"] = "Partners"; -$a->strings["Cohabiting"] = "Samenwonend"; -$a->strings["Common law"] = "Common-law-huwelijk"; -$a->strings["Happy"] = "Blij"; -$a->strings["Not looking"] = ""; -$a->strings["Swinger"] = "Swinger"; -$a->strings["Betrayed"] = "Bedrogen"; -$a->strings["Separated"] = "Uit elkaar"; -$a->strings["Unstable"] = "Onstabiel"; -$a->strings["Divorced"] = "Gescheiden"; -$a->strings["Imaginarily divorced"] = "Denkbeeldig gescheiden"; -$a->strings["Widowed"] = "Weduwnaar/weduwe"; -$a->strings["Uncertain"] = "Onzeker"; -$a->strings["It's complicated"] = "Het is gecompliceerd"; -$a->strings["Don't care"] = "Kan me niet schelen"; -$a->strings["Ask me"] = "Vraag me"; -$a->strings["Friendica Notification"] = "Friendica Notificatie"; -$a->strings["Thank You,"] = "Bedankt"; -$a->strings["%s Administrator"] = "%s Beheerder"; -$a->strings["%s "] = "%s "; -$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notificatie] Nieuw bericht ontvangen op %s"; -$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s sent you a new private message at %2\$s."; -$a->strings["%1\$s sent you %2\$s."] = "%1\$s stuurde jou %2\$s."; -$a->strings["a private message"] = "een prive bericht"; -$a->strings["Please visit %s to view and/or reply to your private messages."] = "Bezoek %s om je privé-berichten te bekijken en/of te beantwoorden."; -$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s gaf een reactie op [url=%2\$s]a %3\$s[/url]"; -$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s gaf een reactie op [url=%2\$s]%3\$s's %4\$s[/url]"; -$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s gaf een reactie op [url=%2\$s]jouw %3\$s[/url]"; -$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = ""; -$a->strings["%s commented on an item/conversation you have been following."] = "%s gaf een reactie op een bericht/conversatie die jij volgt."; -$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bezoek %s om de conversatie te bekijken en/of te beantwoorden."; -$a->strings["[Friendica:Notify] %s posted to your profile wall"] = ""; -$a->strings["%1\$s posted to your profile wall at %2\$s"] = ""; -$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = ""; -$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notificatie] %s heeft jou genoemd"; -$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s heeft jou in %2\$s genoemd"; -$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]heeft jou genoemd[/url]."; -$a->strings["[Friendica:Notify] %s shared a new post"] = ""; -$a->strings["%1\$s shared a new post at %2\$s"] = ""; -$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = ""; -$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notify] %1\$s heeft jou aangestoten"; -$a->strings["%1\$s poked you at %2\$s"] = "%1\$s heeft jou aangestoten op %2\$s"; -$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = ""; -$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notificatie] %s heeft jouw bericht gelabeld"; -$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s heeft jouw bericht gelabeld in %2\$s"; -$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s labelde [url=%2\$s]jouw bericht[/url]"; -$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notificatie] Vriendschaps-/connectieverzoek ontvangen"; -$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Je hebt een vriendschaps- of connectieverzoek ontvangen van '%1\$s' om %2\$s"; -$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Je ontving [url=%1\$s]een vriendschaps- of connectieverzoek[/url] van %2\$s."; -$a->strings["You may visit their profile at %s"] = "U kunt hun profiel bezoeken op %s"; -$a->strings["Please visit %s to approve or reject the introduction."] = "Bezoek %s om het verzoek goed of af te keuren."; -$a->strings["[Friendica:Notify] A new person is sharing with you"] = ""; -$a->strings["%1\$s is sharing with you at %2\$s"] = ""; -$a->strings["[Friendica:Notify] You have a new follower"] = ""; -$a->strings["You have a new follower at %2\$s : %1\$s"] = ""; -$a->strings["[Friendica:Notify] Friend suggestion received"] = ""; -$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = ""; -$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = ""; -$a->strings["Name:"] = "Naam:"; -$a->strings["Photo:"] = "Foto: "; -$a->strings["Please visit %s to approve or reject the suggestion."] = ""; -$a->strings["[Friendica:Notify] Connection accepted"] = ""; -$a->strings["'%1\$s' has acepted your connection request at %2\$s"] = ""; -$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = ""; -$a->strings["You are now mutual friends and may exchange status updates, photos, and email\n\twithout restriction."] = ""; -$a->strings["Please visit %s if you wish to make any changes to this relationship."] = ""; -$a->strings["'%1\$s' has chosen to accept you a \"fan\", which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = ""; -$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future. "] = ""; -$a->strings["[Friendica System:Notify] registration request"] = ""; -$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = ""; -$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = ""; -$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = ""; -$a->strings["Please visit %s to approve or reject the request."] = ""; -$a->strings["Embedded content"] = "Ingebedde inhoud"; -$a->strings["Embedding disabled"] = "Inbedden uitgeschakeld"; -$a->strings["Error decoding account file"] = ""; -$a->strings["Error! No version data in file! This is not a Friendica account file?"] = ""; -$a->strings["Error! Cannot check nickname"] = ""; -$a->strings["User '%s' already exists on this server!"] = "Gebruiker '%s' bestaat al op deze server!"; -$a->strings["User creation error"] = "Fout bij het aanmaken van de gebruiker"; -$a->strings["User profile creation error"] = "Fout bij het aanmaken van het gebruikersprofiel"; -$a->strings["%d contact not imported"] = array( - 0 => "%d contact werd niet geïmporteerd", - 1 => "%d contacten werden niet geïmporteerd", -); -$a->strings["Done. You can now login with your username and password"] = "Gebeurd. Je kunt nu inloggen met je gebruikersnaam en wachtwoord"; -$a->strings["toggle mobile"] = "mobiel thema omwisselen"; -$a->strings["Theme settings"] = "Thema-instellingen"; -$a->strings["Set resize level for images in posts and comments (width and height)"] = ""; -$a->strings["Set font-size for posts and comments"] = "Stel lettergrootte voor berichten en reacties in"; -$a->strings["Set theme width"] = "Stel breedte van het thema in"; -$a->strings["Color scheme"] = "Kleurschema"; -$a->strings["Set line-height for posts and comments"] = "Stel lijnhoogte voor berichten en reacties in"; -$a->strings["Set colour scheme"] = "Stel kleurschema in"; -$a->strings["Alignment"] = "Uitlijning"; -$a->strings["Left"] = "Links"; -$a->strings["Center"] = "Gecentreerd"; -$a->strings["Posts font size"] = "Lettergrootte berichten"; -$a->strings["Textareas font size"] = "Lettergrootte tekstgebieden"; -$a->strings["Set resolution for middle column"] = "Stel resolutie in voor de middelste kolom. "; -$a->strings["Set color scheme"] = "Stel kleurenschema in"; -$a->strings["Set zoomfactor for Earth Layer"] = ""; -$a->strings["Set longitude (X) for Earth Layers"] = ""; -$a->strings["Set latitude (Y) for Earth Layers"] = ""; -$a->strings["Community Pages"] = "Forum/groepspagina's"; -$a->strings["Earth Layers"] = "Earth Layers"; -$a->strings["Community Profiles"] = "Forum/groepsprofielen"; -$a->strings["Help or @NewHere ?"] = ""; -$a->strings["Connect Services"] = "Diensten verbinden"; -$a->strings["Find Friends"] = "Zoek vrienden"; -$a->strings["Last users"] = "Laatste gebruikers"; -$a->strings["Last photos"] = "Laatste foto's"; -$a->strings["Last likes"] = "Recent leuk gevonden"; -$a->strings["Your contacts"] = "Jouw contacten"; -$a->strings["Your personal photos"] = "Jouw persoonlijke foto's"; -$a->strings["Local Directory"] = "Lokale gids"; -$a->strings["Set zoomfactor for Earth Layers"] = ""; -$a->strings["Show/hide boxes at right-hand column:"] = ""; -$a->strings["Set style"] = ""; -$a->strings["greenzero"] = ""; -$a->strings["purplezero"] = ""; -$a->strings["easterbunny"] = ""; -$a->strings["darkzero"] = ""; -$a->strings["comix"] = ""; -$a->strings["slackr"] = ""; -$a->strings["Variations"] = ""; From a9fa049659a697d92239e8a7d383bb9d513604a9 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Fri, 22 May 2015 16:58:16 +0200 Subject: [PATCH 126/306] DE update to the strings --- view/de/messages.po | 1828 ++++++++++++++++++++++--------------------- view/de/strings.php | 21 +- 2 files changed, 940 insertions(+), 909 deletions(-) diff --git a/view/de/messages.po b/view/de/messages.po index 860087e670..45a754c5d3 100644 --- a/view/de/messages.po +++ b/view/de/messages.po @@ -30,8 +30,8 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-04-04 17:54+0200\n" -"PO-Revision-Date: 2015-04-25 08:59+0000\n" +"POT-Creation-Date: 2015-05-21 10:43+0200\n" +"PO-Revision-Date: 2015-05-22 14:55+0000\n" "Last-Translator: bavatar \n" "Language-Team: German (http://www.transifex.com/projects/p/friendica/language/de/)\n" "MIME-Version: 1.0\n" @@ -46,15 +46,15 @@ msgstr "" #: ../../view/theme/diabook/config.php:148 #: ../../view/theme/diabook/theme.php:633 #: ../../view/theme/quattro/config.php:64 ../../view/theme/dispy/config.php:70 -#: ../../object/Item.php:678 ../../mod/contacts.php:492 +#: ../../object/Item.php:681 ../../mod/contacts.php:562 #: ../../mod/manage.php:110 ../../mod/fsuggest.php:107 #: ../../mod/photos.php:1084 ../../mod/photos.php:1203 #: ../../mod/photos.php:1514 ../../mod/photos.php:1565 #: ../../mod/photos.php:1609 ../../mod/photos.php:1697 -#: ../../mod/invite.php:140 ../../mod/events.php:478 ../../mod/mood.php:137 +#: ../../mod/invite.php:140 ../../mod/events.php:491 ../../mod/mood.php:137 #: ../../mod/message.php:335 ../../mod/message.php:564 #: ../../mod/profiles.php:686 ../../mod/install.php:248 -#: ../../mod/install.php:286 ../../mod/crepair.php:186 +#: ../../mod/install.php:286 ../../mod/crepair.php:190 #: ../../mod/content.php:710 ../../mod/poke.php:199 ../../mod/localtime.php:45 msgid "Submit" msgstr "Senden" @@ -90,7 +90,7 @@ msgstr "Farbschema" msgid "Set style" msgstr "Stil auswählen" -#: ../../view/theme/duepuntozero/config.php:44 ../../include/text.php:1719 +#: ../../view/theme/duepuntozero/config.php:44 ../../include/text.php:1729 #: ../../include/user.php:247 msgid "default" msgstr "Standard" @@ -225,9 +225,9 @@ msgstr "Pinnwand" msgid "Your posts and conversations" msgstr "Deine Beiträge und Unterhaltungen" -#: ../../view/theme/diabook/theme.php:124 ../../boot.php:2133 +#: ../../view/theme/diabook/theme.php:124 ../../boot.php:2132 #: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:87 -#: ../../include/nav.php:77 ../../mod/profperm.php:103 +#: ../../include/nav.php:77 ../../mod/profperm.php:104 #: ../../mod/newmember.php:32 msgid "Profile" msgstr "Profil" @@ -236,8 +236,8 @@ msgstr "Profil" msgid "Your profile page" msgstr "Deine Profilseite" -#: ../../view/theme/diabook/theme.php:125 ../../include/nav.php:177 -#: ../../mod/contacts.php:718 +#: ../../view/theme/diabook/theme.php:125 ../../include/nav.php:178 +#: ../../mod/contacts.php:788 msgid "Contacts" msgstr "Kontakte" @@ -245,7 +245,7 @@ msgstr "Kontakte" msgid "Your contacts" msgstr "Deine Kontakte" -#: ../../view/theme/diabook/theme.php:126 ../../boot.php:2140 +#: ../../view/theme/diabook/theme.php:126 ../../boot.php:2139 #: ../../include/nav.php:78 ../../mod/fbrowser.php:25 msgid "Photos" msgstr "Bilder" @@ -254,8 +254,8 @@ msgstr "Bilder" msgid "Your photos" msgstr "Deine Fotos" -#: ../../view/theme/diabook/theme.php:127 ../../boot.php:2157 -#: ../../include/nav.php:80 ../../mod/events.php:370 +#: ../../view/theme/diabook/theme.php:127 ../../boot.php:2156 +#: ../../include/nav.php:80 ../../mod/events.php:382 msgid "Events" msgstr "Veranstaltungen" @@ -277,12 +277,12 @@ msgid "Community" msgstr "Gemeinschaft" #: ../../view/theme/diabook/theme.php:463 ../../include/conversation.php:118 -#: ../../include/conversation.php:245 ../../include/text.php:1983 +#: ../../include/conversation.php:245 ../../include/text.php:1993 msgid "event" msgstr "Veranstaltung" #: ../../view/theme/diabook/theme.php:466 -#: ../../view/theme/diabook/theme.php:475 ../../include/diaspora.php:2011 +#: ../../view/theme/diabook/theme.php:475 ../../include/diaspora.php:2060 #: ../../include/conversation.php:121 ../../include/conversation.php:130 #: ../../include/conversation.php:248 ../../include/conversation.php:257 #: ../../mod/like.php:149 ../../mod/like.php:319 ../../mod/subthread.php:87 @@ -290,14 +290,14 @@ msgstr "Veranstaltung" msgid "status" msgstr "Status" -#: ../../view/theme/diabook/theme.php:471 ../../include/diaspora.php:2011 +#: ../../view/theme/diabook/theme.php:471 ../../include/diaspora.php:2060 #: ../../include/conversation.php:126 ../../include/conversation.php:253 -#: ../../include/text.php:1985 ../../mod/like.php:149 +#: ../../include/text.php:1995 ../../mod/like.php:149 #: ../../mod/subthread.php:87 ../../mod/tagger.php:62 msgid "photo" msgstr "Foto" -#: ../../view/theme/diabook/theme.php:480 ../../include/diaspora.php:2027 +#: ../../view/theme/diabook/theme.php:480 ../../include/diaspora.php:2076 #: ../../include/conversation.php:137 ../../mod/like.php:166 #, php-format msgid "%1$s likes %2$s's %3$s" @@ -342,8 +342,8 @@ msgid "Invite Friends" msgstr "Freunde einladen" #: ../../view/theme/diabook/theme.php:544 -#: ../../view/theme/diabook/theme.php:648 ../../include/nav.php:172 -#: ../../mod/settings.php:90 ../../mod/admin.php:1104 ../../mod/admin.php:1325 +#: ../../view/theme/diabook/theme.php:648 ../../include/nav.php:173 +#: ../../mod/settings.php:90 ../../mod/admin.php:1107 ../../mod/admin.php:1328 #: ../../mod/newmember.php:22 msgid "Settings" msgstr "Einstellungen" @@ -380,40 +380,42 @@ msgstr "Schriftgröße in Eingabefeldern" msgid "Set colour scheme" msgstr "Farbschema wählen" -#: ../../index.php:211 ../../mod/apps.php:7 +#: ../../index.php:225 ../../mod/apps.php:7 msgid "You must be logged in to use addons. " msgstr "Sie müssen angemeldet sein um Addons benutzen zu können." -#: ../../index.php:255 ../../mod/help.php:42 +#: ../../index.php:269 ../../mod/p.php:16 ../../mod/p.php:25 +#: ../../mod/help.php:42 msgid "Not Found" msgstr "Nicht gefunden" -#: ../../index.php:258 ../../mod/help.php:45 +#: ../../index.php:272 ../../mod/help.php:45 msgid "Page not found." msgstr "Seite nicht gefunden." -#: ../../index.php:367 ../../mod/group.php:72 ../../mod/profperm.php:19 +#: ../../index.php:381 ../../mod/group.php:72 ../../mod/profperm.php:19 msgid "Permission denied" msgstr "Zugriff verweigert" -#: ../../index.php:368 ../../include/items.php:4815 ../../mod/attach.php:33 +#: ../../index.php:382 ../../include/items.php:4838 ../../mod/attach.php:33 #: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33 #: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103 #: ../../mod/group.php:19 ../../mod/delegate.php:12 #: ../../mod/notifications.php:66 ../../mod/settings.php:20 -#: ../../mod/settings.php:107 ../../mod/settings.php:606 -#: ../../mod/contacts.php:258 ../../mod/wall_attach.php:55 +#: ../../mod/settings.php:107 ../../mod/settings.php:608 +#: ../../mod/contacts.php:322 ../../mod/wall_attach.php:55 #: ../../mod/register.php:42 ../../mod/manage.php:96 ../../mod/editpost.php:10 #: ../../mod/regmod.php:110 ../../mod/api.php:26 ../../mod/api.php:31 #: ../../mod/suggest.php:58 ../../mod/nogroup.php:25 ../../mod/fsuggest.php:78 #: ../../mod/viewcontacts.php:24 ../../mod/wall_upload.php:66 #: ../../mod/notes.php:20 ../../mod/network.php:4 ../../mod/photos.php:134 -#: ../../mod/photos.php:1050 ../../mod/follow.php:9 ../../mod/uimport.php:23 -#: ../../mod/invite.php:15 ../../mod/invite.php:101 ../../mod/events.php:140 -#: ../../mod/mood.php:114 ../../mod/message.php:38 ../../mod/message.php:174 +#: ../../mod/photos.php:1050 ../../mod/follow.php:9 ../../mod/follow.php:39 +#: ../../mod/follow.php:78 ../../mod/uimport.php:23 ../../mod/invite.php:15 +#: ../../mod/invite.php:101 ../../mod/events.php:152 ../../mod/mood.php:114 +#: ../../mod/message.php:38 ../../mod/message.php:174 #: ../../mod/profiles.php:165 ../../mod/profiles.php:618 #: ../../mod/install.php:151 ../../mod/crepair.php:119 ../../mod/poke.php:135 -#: ../../mod/display.php:499 ../../mod/dfrn_confirm.php:55 +#: ../../mod/display.php:501 ../../mod/dfrn_confirm.php:55 #: ../../mod/item.php:169 ../../mod/item.php:185 #: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169 #: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193 @@ -421,53 +423,22 @@ msgstr "Zugriff verweigert" msgid "Permission denied." msgstr "Zugriff verweigert." -#: ../../index.php:427 +#: ../../index.php:441 msgid "toggle mobile" msgstr "auf/von Mobile Ansicht wechseln" -#: ../../addon-wrk/openidserver/lib/render/trust.php:30 -#, php-format -msgid "Do you wish to confirm your identity (%s) with %s" -msgstr "Möchtest du deine Identität (%s mit %s bestätigen" - -#: ../../addon-wrk/openidserver/lib/render/trust.php:43 -#: ../../mod/dfrn_request.php:676 -msgid "Confirm" -msgstr "Bestätigen" - -#: ../../addon-wrk/openidserver/lib/render/trust.php:44 -msgid "Do not confirm" -msgstr "Nicht bestätigen" - -#: ../../addon-wrk/openidserver/lib/render/trust.php:48 -msgid "Trust This Site" -msgstr "Dieser Seite vertrauen" - -#: ../../addon-wrk/openidserver/lib/render/trust.php:53 -msgid "No Identifier Sent" -msgstr "Keine Identifikation gesendet" - -#: ../../addon-wrk/openidserver/lib/render/wronguser.php:5 -msgid "Requested identity don't match logged in user." -msgstr "Die angeforderte Identität stimmt nicht mit dem angemeldeten Nutzer überein." - -#: ../../addon-wrk/openidserver/lib/render.php:27 -#, php-format -msgid "Please wait; you are being redirected to <%s>" -msgstr "Bitte warten, Du wirst nach <%s> umgeleitet." - #: ../../boot.php:749 msgid "Delete this item?" msgstr "Diesen Beitrag löschen?" -#: ../../boot.php:750 ../../object/Item.php:361 ../../object/Item.php:677 +#: ../../boot.php:750 ../../object/Item.php:364 ../../object/Item.php:680 #: ../../mod/photos.php:1564 ../../mod/photos.php:1608 #: ../../mod/photos.php:1696 ../../mod/content.php:709 msgid "Comment" msgstr "Kommentar" #: ../../boot.php:751 ../../include/contact_widgets.php:205 -#: ../../object/Item.php:390 ../../mod/content.php:606 +#: ../../object/Item.php:393 ../../mod/content.php:606 msgid "show more" msgstr "mehr anzeigen" @@ -550,7 +521,7 @@ msgid "Edit profile" msgstr "Profil bearbeiten" #: ../../boot.php:1557 ../../include/contact_widgets.php:10 -#: ../../mod/suggest.php:90 ../../mod/match.php:58 +#: ../../mod/suggest.php:90 ../../mod/match.php:63 msgid "Connect" msgstr "Verbinden" @@ -558,7 +529,7 @@ msgstr "Verbinden" msgid "Message" msgstr "Nachricht" -#: ../../boot.php:1595 ../../include/nav.php:175 +#: ../../boot.php:1595 ../../include/nav.php:176 msgid "Profiles" msgstr "Profile" @@ -586,8 +557,8 @@ msgstr "sichtbar für jeden" msgid "Edit visibility" msgstr "Sichtbarkeit bearbeiten" -#: ../../boot.php:1637 ../../include/event.php:40 -#: ../../include/bb2diaspora.php:155 ../../mod/events.php:471 +#: ../../boot.php:1637 ../../include/event.php:42 +#: ../../include/bb2diaspora.php:155 ../../mod/events.php:483 #: ../../mod/directory.php:136 msgid "Location:" msgstr "Ort:" @@ -612,71 +583,71 @@ msgstr "Homepage:" msgid "About:" msgstr "Über:" -#: ../../boot.php:1711 +#: ../../boot.php:1710 msgid "Network:" msgstr "Netzwerk" -#: ../../boot.php:1743 ../../boot.php:1829 +#: ../../boot.php:1742 ../../boot.php:1828 msgid "g A l F d" msgstr "l, d. F G \\U\\h\\r" -#: ../../boot.php:1744 ../../boot.php:1830 +#: ../../boot.php:1743 ../../boot.php:1829 msgid "F d" msgstr "d. F" -#: ../../boot.php:1789 ../../boot.php:1877 +#: ../../boot.php:1788 ../../boot.php:1876 msgid "[today]" msgstr "[heute]" -#: ../../boot.php:1801 +#: ../../boot.php:1800 msgid "Birthday Reminders" msgstr "Geburtstagserinnerungen" -#: ../../boot.php:1802 +#: ../../boot.php:1801 msgid "Birthdays this week:" msgstr "Geburtstage diese Woche:" -#: ../../boot.php:1864 +#: ../../boot.php:1863 msgid "[No description]" msgstr "[keine Beschreibung]" -#: ../../boot.php:1888 +#: ../../boot.php:1887 msgid "Event Reminders" msgstr "Veranstaltungserinnerungen" -#: ../../boot.php:1889 +#: ../../boot.php:1888 msgid "Events this week:" msgstr "Veranstaltungen diese Woche" -#: ../../boot.php:2126 ../../include/nav.php:76 +#: ../../boot.php:2125 ../../include/nav.php:76 msgid "Status" msgstr "Status" -#: ../../boot.php:2129 +#: ../../boot.php:2128 msgid "Status Messages and Posts" msgstr "Statusnachrichten und Beiträge" -#: ../../boot.php:2136 +#: ../../boot.php:2135 msgid "Profile Details" msgstr "Profildetails" -#: ../../boot.php:2143 ../../mod/photos.php:52 +#: ../../boot.php:2142 ../../mod/photos.php:52 msgid "Photo Albums" msgstr "Fotoalben" -#: ../../boot.php:2147 ../../boot.php:2150 ../../include/nav.php:79 +#: ../../boot.php:2146 ../../boot.php:2149 ../../include/nav.php:79 msgid "Videos" msgstr "Videos" -#: ../../boot.php:2160 +#: ../../boot.php:2159 msgid "Events and Calendar" msgstr "Ereignisse und Kalender" -#: ../../boot.php:2164 ../../mod/notes.php:44 +#: ../../boot.php:2163 ../../mod/notes.php:44 msgid "Personal Notes" msgstr "Persönliche Notizen" -#: ../../boot.php:2167 +#: ../../boot.php:2166 msgid "Only You Can See This" msgstr "Nur Du kannst das sehen" @@ -854,57 +825,57 @@ msgstr "Benachrichtigungen für Beiträge Stumm schalten" msgid "Ability to mute notifications for a thread" msgstr "Möglichkeit Benachrichtigungen für einen Thread abbestellen zu können" -#: ../../include/items.php:2307 ../../include/datetime.php:477 +#: ../../include/items.php:2330 ../../include/datetime.php:477 #, php-format msgid "%s's birthday" msgstr "%ss Geburtstag" -#: ../../include/items.php:2308 ../../include/datetime.php:478 +#: ../../include/items.php:2331 ../../include/datetime.php:478 #, php-format msgid "Happy Birthday %s" msgstr "Herzlichen Glückwunsch %s" -#: ../../include/items.php:4111 ../../mod/dfrn_request.php:717 -#: ../../mod/dfrn_confirm.php:752 +#: ../../include/items.php:4135 ../../mod/dfrn_request.php:732 +#: ../../mod/dfrn_confirm.php:753 msgid "[Name Withheld]" msgstr "[Name unterdrückt]" -#: ../../include/items.php:4619 ../../mod/admin.php:169 -#: ../../mod/admin.php:1052 ../../mod/admin.php:1265 ../../mod/viewsrc.php:15 -#: ../../mod/notice.php:15 ../../mod/display.php:82 ../../mod/display.php:284 -#: ../../mod/display.php:503 +#: ../../include/items.php:4642 ../../mod/admin.php:169 +#: ../../mod/admin.php:1055 ../../mod/admin.php:1268 ../../mod/viewsrc.php:15 +#: ../../mod/notice.php:15 ../../mod/display.php:82 ../../mod/display.php:286 +#: ../../mod/display.php:505 msgid "Item not found." msgstr "Beitrag nicht gefunden." -#: ../../include/items.php:4658 +#: ../../include/items.php:4681 msgid "Do you really want to delete this item?" msgstr "Möchtest Du wirklich dieses Item löschen?" -#: ../../include/items.php:4660 ../../mod/settings.php:1015 -#: ../../mod/settings.php:1021 ../../mod/settings.php:1029 -#: ../../mod/settings.php:1033 ../../mod/settings.php:1038 -#: ../../mod/settings.php:1044 ../../mod/settings.php:1050 -#: ../../mod/settings.php:1056 ../../mod/settings.php:1086 -#: ../../mod/settings.php:1087 ../../mod/settings.php:1088 -#: ../../mod/settings.php:1089 ../../mod/settings.php:1090 -#: ../../mod/contacts.php:341 ../../mod/register.php:233 -#: ../../mod/dfrn_request.php:830 ../../mod/api.php:105 -#: ../../mod/suggest.php:29 ../../mod/message.php:209 +#: ../../include/items.php:4683 ../../mod/settings.php:1035 +#: ../../mod/settings.php:1041 ../../mod/settings.php:1049 +#: ../../mod/settings.php:1053 ../../mod/settings.php:1058 +#: ../../mod/settings.php:1064 ../../mod/settings.php:1070 +#: ../../mod/settings.php:1076 ../../mod/settings.php:1106 +#: ../../mod/settings.php:1107 ../../mod/settings.php:1108 +#: ../../mod/settings.php:1109 ../../mod/settings.php:1110 +#: ../../mod/contacts.php:411 ../../mod/register.php:233 +#: ../../mod/dfrn_request.php:845 ../../mod/api.php:105 +#: ../../mod/suggest.php:29 ../../mod/follow.php:54 ../../mod/message.php:209 #: ../../mod/profiles.php:661 ../../mod/profiles.php:664 msgid "Yes" msgstr "Ja" -#: ../../include/items.php:4663 ../../include/conversation.php:1128 -#: ../../mod/settings.php:620 ../../mod/settings.php:646 -#: ../../mod/contacts.php:344 ../../mod/editpost.php:148 -#: ../../mod/dfrn_request.php:844 ../../mod/fbrowser.php:81 +#: ../../include/items.php:4686 ../../include/conversation.php:1128 +#: ../../mod/settings.php:622 ../../mod/settings.php:648 +#: ../../mod/contacts.php:414 ../../mod/editpost.php:148 +#: ../../mod/dfrn_request.php:859 ../../mod/fbrowser.php:81 #: ../../mod/fbrowser.php:116 ../../mod/suggest.php:32 -#: ../../mod/photos.php:203 ../../mod/photos.php:292 ../../mod/tagrm.php:11 -#: ../../mod/tagrm.php:94 ../../mod/message.php:212 +#: ../../mod/photos.php:203 ../../mod/photos.php:292 ../../mod/follow.php:65 +#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/message.php:212 msgid "Cancel" msgstr "Abbrechen" -#: ../../include/items.php:4881 +#: ../../include/items.php:4904 msgid "Archives" msgstr "Archiv" @@ -939,18 +910,22 @@ msgstr "Gruppe bearbeiten" msgid "Create a new group" msgstr "Neue Gruppe erstellen" -#: ../../include/group.php:273 +#: ../../include/group.php:273 ../../mod/group.php:94 ../../mod/group.php:180 +msgid "Group Name: " +msgstr "Gruppenname:" + +#: ../../include/group.php:275 msgid "Contacts not in any group" msgstr "Kontakte in keiner Gruppe" -#: ../../include/group.php:275 ../../mod/network.php:195 +#: ../../include/group.php:277 ../../mod/network.php:195 msgid "add" msgstr "hinzufügen" #: ../../include/Photo_old.php:911 ../../include/Photo_old.php:926 #: ../../include/Photo_old.php:933 ../../include/Photo_old.php:955 -#: ../../include/Photo.php:933 ../../include/Photo.php:948 -#: ../../include/Photo.php:955 ../../include/Photo.php:977 +#: ../../include/Photo.php:951 ../../include/Photo.php:966 +#: ../../include/Photo.php:973 ../../include/Photo.php:995 #: ../../include/message.php:144 ../../mod/wall_upload.php:169 #: ../../mod/wall_upload.php:178 ../../mod/wall_upload.php:185 #: ../../mod/item.php:485 @@ -997,7 +972,7 @@ msgstr "Verbinden/Folgen" msgid "Examples: Robert Morgenstein, Fishing" msgstr "Beispiel: Robert Morgenstein, Angeln" -#: ../../include/contact_widgets.php:34 ../../mod/contacts.php:724 +#: ../../include/contact_widgets.php:34 ../../mod/contacts.php:794 #: ../../mod/directory.php:63 msgid "Find" msgstr "Finde" @@ -1022,7 +997,7 @@ msgstr "Alles" msgid "Categories" msgstr "Kategorien" -#: ../../include/contact_widgets.php:200 ../../mod/contacts.php:439 +#: ../../include/contact_widgets.php:200 ../../mod/contacts.php:509 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" @@ -1052,233 +1027,233 @@ msgstr "noreply" msgid "%s " msgstr "%s " -#: ../../include/enotify.php:68 +#: ../../include/enotify.php:78 #, php-format msgid "[Friendica:Notify] New mail received at %s" msgstr "[Friendica-Meldung] Neue Nachricht erhalten von %s" -#: ../../include/enotify.php:70 +#: ../../include/enotify.php:80 #, php-format msgid "%1$s sent you a new private message at %2$s." msgstr "%1$s hat Dir eine neue private Nachricht auf %2$s geschickt." -#: ../../include/enotify.php:71 +#: ../../include/enotify.php:81 #, php-format msgid "%1$s sent you %2$s." msgstr "%1$s schickte Dir %2$s." -#: ../../include/enotify.php:71 +#: ../../include/enotify.php:81 msgid "a private message" msgstr "eine private Nachricht" -#: ../../include/enotify.php:72 +#: ../../include/enotify.php:82 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "Bitte besuche %s, um Deine privaten Nachrichten anzusehen und/oder zu beantworten." -#: ../../include/enotify.php:124 +#: ../../include/enotify.php:134 #, php-format msgid "%1$s commented on [url=%2$s]a %3$s[/url]" msgstr "%1$s kommentierte [url=%2$s]a %3$s[/url]" -#: ../../include/enotify.php:131 +#: ../../include/enotify.php:141 #, php-format msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" msgstr "%1$s kommentierte [url=%2$s]%3$ss %4$s[/url]" -#: ../../include/enotify.php:139 +#: ../../include/enotify.php:149 #, php-format msgid "%1$s commented on [url=%2$s]your %3$s[/url]" msgstr "%1$s kommentierte [url=%2$s]Deinen %3$s[/url]" -#: ../../include/enotify.php:149 +#: ../../include/enotify.php:159 #, php-format msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" msgstr "[Friendica-Meldung] Kommentar zum Beitrag #%1$d von %2$s" -#: ../../include/enotify.php:150 +#: ../../include/enotify.php:160 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "%s hat einen Beitrag kommentiert, dem Du folgst." -#: ../../include/enotify.php:153 ../../include/enotify.php:168 -#: ../../include/enotify.php:181 ../../include/enotify.php:194 -#: ../../include/enotify.php:212 ../../include/enotify.php:225 +#: ../../include/enotify.php:163 ../../include/enotify.php:178 +#: ../../include/enotify.php:191 ../../include/enotify.php:204 +#: ../../include/enotify.php:222 ../../include/enotify.php:235 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren." -#: ../../include/enotify.php:160 +#: ../../include/enotify.php:170 #, php-format msgid "[Friendica:Notify] %s posted to your profile wall" msgstr "[Friendica-Meldung] %s hat auf Deine Pinnwand geschrieben" -#: ../../include/enotify.php:162 +#: ../../include/enotify.php:172 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "%1$s schrieb auf %2$s auf Deine Pinnwand" -#: ../../include/enotify.php:164 +#: ../../include/enotify.php:174 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "%1$s hat etwas auf [url=%2$s]Deiner Pinnwand[/url] gepostet" -#: ../../include/enotify.php:175 +#: ../../include/enotify.php:185 #, php-format msgid "[Friendica:Notify] %s tagged you" msgstr "[Friendica-Meldung] %s hat Dich erwähnt" -#: ../../include/enotify.php:176 +#: ../../include/enotify.php:186 #, php-format msgid "%1$s tagged you at %2$s" msgstr "%1$s erwähnte Dich auf %2$s" -#: ../../include/enotify.php:177 +#: ../../include/enotify.php:187 #, php-format msgid "%1$s [url=%2$s]tagged you[/url]." msgstr "%1$s [url=%2$s]erwähnte Dich[/url]." -#: ../../include/enotify.php:188 +#: ../../include/enotify.php:198 #, php-format msgid "[Friendica:Notify] %s shared a new post" msgstr "[Friendica Benachrichtigung] %s hat einen Beitrag geteilt" -#: ../../include/enotify.php:189 +#: ../../include/enotify.php:199 #, php-format msgid "%1$s shared a new post at %2$s" msgstr "%1$s hat einen neuen Beitrag auf %2$s geteilt" -#: ../../include/enotify.php:190 +#: ../../include/enotify.php:200 #, php-format msgid "%1$s [url=%2$s]shared a post[/url]." msgstr "%1$s [url=%2$s]hat einen Beitrag geteilt[/url]." -#: ../../include/enotify.php:202 +#: ../../include/enotify.php:212 #, php-format msgid "[Friendica:Notify] %1$s poked you" msgstr "[Friendica-Meldung] %1$s hat Dich angestupst" -#: ../../include/enotify.php:203 +#: ../../include/enotify.php:213 #, php-format msgid "%1$s poked you at %2$s" msgstr "%1$s hat Dich auf %2$s angestupst" -#: ../../include/enotify.php:204 +#: ../../include/enotify.php:214 #, php-format msgid "%1$s [url=%2$s]poked you[/url]." msgstr "%1$s [url=%2$s]hat Dich angestupst[/url]." -#: ../../include/enotify.php:219 +#: ../../include/enotify.php:229 #, php-format msgid "[Friendica:Notify] %s tagged your post" msgstr "[Friendica-Meldung] %s hat Deinen Beitrag getaggt" -#: ../../include/enotify.php:220 +#: ../../include/enotify.php:230 #, php-format msgid "%1$s tagged your post at %2$s" msgstr "%1$s erwähnte Deinen Beitrag auf %2$s" -#: ../../include/enotify.php:221 +#: ../../include/enotify.php:231 #, php-format msgid "%1$s tagged [url=%2$s]your post[/url]" msgstr "%1$s erwähnte [url=%2$s]Deinen Beitrag[/url]" -#: ../../include/enotify.php:232 +#: ../../include/enotify.php:242 msgid "[Friendica:Notify] Introduction received" msgstr "[Friendica-Meldung] Kontaktanfrage erhalten" -#: ../../include/enotify.php:233 +#: ../../include/enotify.php:243 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "Du hast eine Kontaktanfrage von '%1$s' auf %2$s erhalten" -#: ../../include/enotify.php:234 +#: ../../include/enotify.php:244 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "Du hast eine [url=%1$s]Kontaktanfrage[/url] von %2$s erhalten." -#: ../../include/enotify.php:237 ../../include/enotify.php:279 +#: ../../include/enotify.php:247 ../../include/enotify.php:289 #, php-format msgid "You may visit their profile at %s" msgstr "Hier kannst Du das Profil betrachten: %s" -#: ../../include/enotify.php:239 +#: ../../include/enotify.php:249 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "Bitte besuche %s, um die Kontaktanfrage anzunehmen oder abzulehnen." -#: ../../include/enotify.php:247 +#: ../../include/enotify.php:257 msgid "[Friendica:Notify] A new person is sharing with you" msgstr "[Friendica Benachrichtigung] Eine neue Person teilt mit Dir" -#: ../../include/enotify.php:248 ../../include/enotify.php:249 +#: ../../include/enotify.php:258 ../../include/enotify.php:259 #, php-format msgid "%1$s is sharing with you at %2$s" msgstr "%1$s teilt mit Dir auf %2$s" -#: ../../include/enotify.php:255 +#: ../../include/enotify.php:265 msgid "[Friendica:Notify] You have a new follower" msgstr "[Friendica Benachrichtigung] Du hast einen neuen Kontakt auf " -#: ../../include/enotify.php:256 ../../include/enotify.php:257 +#: ../../include/enotify.php:266 ../../include/enotify.php:267 #, php-format msgid "You have a new follower at %2$s : %1$s" msgstr "Du hast einen neuen Kontakt auf %2$s: %1$s" -#: ../../include/enotify.php:270 +#: ../../include/enotify.php:280 msgid "[Friendica:Notify] Friend suggestion received" msgstr "[Friendica-Meldung] Kontaktvorschlag erhalten" -#: ../../include/enotify.php:271 +#: ../../include/enotify.php:281 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "Du hast einen Freunde-Vorschlag von '%1$s' auf %2$s erhalten" -#: ../../include/enotify.php:272 +#: ../../include/enotify.php:282 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "Du hast einen [url=%1$s]Freunde-Vorschlag[/url] %2$s von %3$s erhalten." -#: ../../include/enotify.php:277 +#: ../../include/enotify.php:287 msgid "Name:" msgstr "Name:" -#: ../../include/enotify.php:278 +#: ../../include/enotify.php:288 msgid "Photo:" msgstr "Foto:" -#: ../../include/enotify.php:281 +#: ../../include/enotify.php:291 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen." -#: ../../include/enotify.php:289 ../../include/enotify.php:302 +#: ../../include/enotify.php:299 ../../include/enotify.php:312 msgid "[Friendica:Notify] Connection accepted" msgstr "[Friendica-Benachrichtigung] Kontaktanfrage bestätigt" -#: ../../include/enotify.php:290 ../../include/enotify.php:303 +#: ../../include/enotify.php:300 ../../include/enotify.php:313 #, php-format msgid "'%1$s' has acepted your connection request at %2$s" msgstr "'%1$s' hat Deine Kontaktanfrage auf %2$s bestätigt" -#: ../../include/enotify.php:291 ../../include/enotify.php:304 +#: ../../include/enotify.php:301 ../../include/enotify.php:314 #, php-format msgid "%2$s has accepted your [url=%1$s]connection request[/url]." msgstr "%2$s hat Deine [url=%1$s]Kontaktanfrage[/url] akzeptiert." -#: ../../include/enotify.php:294 +#: ../../include/enotify.php:304 msgid "" "You are now mutual friends and may exchange status updates, photos, and email\n" "\twithout restriction." msgstr "Ihr seit nun beidseitige Freunde und könnt Statusmitteilungen, Bilder und Emails ohne Einschränkungen austauschen." -#: ../../include/enotify.php:297 ../../include/enotify.php:311 +#: ../../include/enotify.php:307 ../../include/enotify.php:321 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "Bitte besuche %s, wenn Du Änderungen an eurer Beziehung vornehmen willst." -#: ../../include/enotify.php:307 +#: ../../include/enotify.php:317 #, php-format msgid "" "'%1$s' has chosen to accept you a \"fan\", which restricts some forms of " @@ -1287,83 +1262,83 @@ msgid "" "automatically." msgstr "'%1$s' hat sich entschieden Dich als \"Fan\" zu akzeptieren, dies schränkt einige Kommunikationswege - wie private Nachrichten und einige Interaktionsmöglichkeiten auf der Profilseite - ein. Wenn dies eine Berühmtheiten- oder Gemeinschaftsseite ist, werden diese Einstellungen automatisch vorgenommen." -#: ../../include/enotify.php:309 +#: ../../include/enotify.php:319 #, php-format msgid "" "'%1$s' may choose to extend this into a two-way or more permissive " "relationship in the future. " msgstr "'%1$s' kann den Kontaktstatus zu einem späteren Zeitpunkt erweitern und diese Einschränkungen aufheben. " -#: ../../include/enotify.php:322 +#: ../../include/enotify.php:332 msgid "[Friendica System:Notify] registration request" msgstr "[Friendica System:Benachrichtigung] Registrationsanfrage" -#: ../../include/enotify.php:323 +#: ../../include/enotify.php:333 #, php-format msgid "You've received a registration request from '%1$s' at %2$s" msgstr "Du hast eine Registrierungsanfrage von %2$s auf '%1$s' erhalten" -#: ../../include/enotify.php:324 +#: ../../include/enotify.php:334 #, php-format msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgstr "Du hast eine [url=%1$s]Registrierungsanfrage[/url] von %2$s erhalten." -#: ../../include/enotify.php:327 +#: ../../include/enotify.php:337 #, php-format msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" msgstr "Kompletter Name:\t%1$s\\nURL der Seite:\t%2$s\\nLogin Name:\t%3$s (%4$s)" -#: ../../include/enotify.php:330 +#: ../../include/enotify.php:340 #, php-format msgid "Please visit %s to approve or reject the request." msgstr "Bitte besuche %s um die Anfrage zu bearbeiten." -#: ../../include/api.php:304 ../../include/api.php:315 -#: ../../include/api.php:416 ../../include/api.php:1063 -#: ../../include/api.php:1065 +#: ../../include/api.php:310 ../../include/api.php:321 +#: ../../include/api.php:422 ../../include/api.php:1116 +#: ../../include/api.php:1118 msgid "User not found." msgstr "Nutzer nicht gefunden." -#: ../../include/api.php:770 +#: ../../include/api.php:776 #, 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:789 +#: ../../include/api.php:795 #, 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:808 +#: ../../include/api.php:814 #, 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/api.php:1271 +#: ../../include/api.php:1325 msgid "There is no status with this id." msgstr "Es gibt keinen Status mit dieser ID." -#: ../../include/api.php:1341 +#: ../../include/api.php:1399 msgid "There is no conversation with this id." msgstr "Es existiert keine Unterhaltung mit dieser ID." -#: ../../include/api.php:1613 +#: ../../include/api.php:1669 msgid "Invalid request." msgstr "Ungültige Anfrage" -#: ../../include/api.php:1624 +#: ../../include/api.php:1680 msgid "Invalid item." msgstr "Ungültiges Objekt" -#: ../../include/api.php:1634 +#: ../../include/api.php:1690 msgid "Invalid action. " msgstr "Ungültige Aktion" -#: ../../include/api.php:1642 +#: ../../include/api.php:1698 msgid "DB error" msgstr "DB Error" -#: ../../include/network.php:890 +#: ../../include/network.php:959 msgid "view full size" msgstr "Volle Größe anzeigen" @@ -1371,7 +1346,7 @@ msgstr "Volle Größe anzeigen" msgid " on Last.fm" msgstr " bei Last.fm" -#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1133 +#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1153 msgid "Full Name:" msgstr "Kompletter Name:" @@ -1508,8 +1483,8 @@ msgstr "Apps" msgid "Addon applications, utilities, games" msgstr "Addon Anwendungen, Dienstprogramme, Spiele" -#: ../../include/nav.php:119 ../../include/text.php:968 -#: ../../include/text.php:969 ../../mod/search.php:99 +#: ../../include/nav.php:119 ../../include/text.php:970 +#: ../../include/text.php:971 ../../mod/search.php:99 msgid "Search" msgstr "Suche" @@ -1557,87 +1532,87 @@ msgstr "Netzwerk zurücksetzen" msgid "Load Network page with no filters" msgstr "Netzwerk-Seite ohne Filter laden" -#: ../../include/nav.php:154 ../../mod/notifications.php:98 +#: ../../include/nav.php:153 ../../mod/notifications.php:98 msgid "Introductions" msgstr "Kontaktanfragen" -#: ../../include/nav.php:154 +#: ../../include/nav.php:153 msgid "Friend Requests" msgstr "Kontaktanfragen" -#: ../../include/nav.php:155 ../../mod/notifications.php:224 +#: ../../include/nav.php:156 ../../mod/notifications.php:224 msgid "Notifications" msgstr "Benachrichtigungen" -#: ../../include/nav.php:156 +#: ../../include/nav.php:157 msgid "See all notifications" msgstr "Alle Benachrichtigungen anzeigen" -#: ../../include/nav.php:157 +#: ../../include/nav.php:158 msgid "Mark all system notifications seen" msgstr "Markiere alle Systembenachrichtigungen als gelesen" -#: ../../include/nav.php:161 ../../mod/message.php:182 +#: ../../include/nav.php:162 ../../mod/message.php:182 msgid "Messages" msgstr "Nachrichten" -#: ../../include/nav.php:161 +#: ../../include/nav.php:162 msgid "Private mail" msgstr "Private E-Mail" -#: ../../include/nav.php:162 +#: ../../include/nav.php:163 msgid "Inbox" msgstr "Eingang" -#: ../../include/nav.php:163 +#: ../../include/nav.php:164 msgid "Outbox" msgstr "Ausgang" -#: ../../include/nav.php:164 ../../mod/message.php:9 +#: ../../include/nav.php:165 ../../mod/message.php:9 msgid "New Message" msgstr "Neue Nachricht" -#: ../../include/nav.php:167 +#: ../../include/nav.php:168 msgid "Manage" msgstr "Verwalten" -#: ../../include/nav.php:167 +#: ../../include/nav.php:168 msgid "Manage other pages" msgstr "Andere Seiten verwalten" -#: ../../include/nav.php:170 ../../mod/settings.php:67 +#: ../../include/nav.php:171 ../../mod/settings.php:67 msgid "Delegations" msgstr "Delegationen" -#: ../../include/nav.php:170 ../../mod/delegate.php:130 +#: ../../include/nav.php:171 ../../mod/delegate.php:130 msgid "Delegate Page Management" msgstr "Delegiere das Management für die Seite" -#: ../../include/nav.php:172 +#: ../../include/nav.php:173 msgid "Account settings" msgstr "Kontoeinstellungen" -#: ../../include/nav.php:175 +#: ../../include/nav.php:176 msgid "Manage/Edit Profiles" msgstr "Profile Verwalten/Editieren" -#: ../../include/nav.php:177 +#: ../../include/nav.php:178 msgid "Manage/edit friends and contacts" msgstr "Freunde und Kontakte verwalten/editieren" -#: ../../include/nav.php:184 ../../mod/admin.php:130 +#: ../../include/nav.php:185 ../../mod/admin.php:130 msgid "Admin" msgstr "Administration" -#: ../../include/nav.php:184 +#: ../../include/nav.php:185 msgid "Site setup and configuration" msgstr "Einstellungen der Seite und Konfiguration" -#: ../../include/nav.php:188 +#: ../../include/nav.php:189 msgid "Navigation" msgstr "Navigation" -#: ../../include/nav.php:188 +#: ../../include/nav.php:189 msgid "Site map" msgstr "Sitemap" @@ -1748,16 +1723,16 @@ msgstr[1] "%d Kontakte nicht importiert" msgid "Done. You can now login with your username and password" msgstr "Erledigt. Du kannst Dich jetzt mit Deinem Nutzernamen und Passwort anmelden" -#: ../../include/event.php:11 ../../include/bb2diaspora.php:133 +#: ../../include/event.php:13 ../../include/bb2diaspora.php:133 #: ../../mod/localtime.php:12 msgid "l F d, Y \\@ g:i A" msgstr "l, d. F Y\\, H:i" -#: ../../include/event.php:20 ../../include/bb2diaspora.php:139 +#: ../../include/event.php:22 ../../include/bb2diaspora.php:139 msgid "Starts:" msgstr "Beginnt:" -#: ../../include/event.php:30 ../../include/bb2diaspora.php:147 +#: ../../include/event.php:32 ../../include/bb2diaspora.php:147 msgid "Finishes:" msgstr "Endet:" @@ -1817,11 +1792,11 @@ msgid "" "[pre]%s[/pre]" msgstr "Die Fehlermeldung lautet\n[pre]%s[/pre]" -#: ../../include/dbstructure.php:150 +#: ../../include/dbstructure.php:152 msgid "Errors encountered creating database tables." msgstr "Fehler aufgetreten während der Erzeugung der Datenbanktabellen." -#: ../../include/dbstructure.php:208 +#: ../../include/dbstructure.php:210 msgid "Errors encountered performing database changes." msgstr "Es sind Fehler beim Bearbeiten der Datenbank aufgetreten." @@ -1930,19 +1905,19 @@ msgstr "OK, wahrscheinlich harmlos" msgid "Reputable, has my trust" msgstr "Seriös, hat mein Vertrauen" -#: ../../include/contact_selectors.php:56 ../../mod/admin.php:571 +#: ../../include/contact_selectors.php:56 ../../mod/admin.php:573 msgid "Frequently" msgstr "immer wieder" -#: ../../include/contact_selectors.php:57 ../../mod/admin.php:572 +#: ../../include/contact_selectors.php:57 ../../mod/admin.php:574 msgid "Hourly" msgstr "Stündlich" -#: ../../include/contact_selectors.php:58 ../../mod/admin.php:573 +#: ../../include/contact_selectors.php:58 ../../mod/admin.php:575 msgid "Twice daily" msgstr "Zweimal täglich" -#: ../../include/contact_selectors.php:59 ../../mod/admin.php:574 +#: ../../include/contact_selectors.php:59 ../../mod/admin.php:576 msgid "Daily" msgstr "Täglich" @@ -1954,7 +1929,7 @@ msgstr "Wöchentlich" msgid "Monthly" msgstr "Monatlich" -#: ../../include/contact_selectors.php:76 ../../mod/dfrn_request.php:836 +#: ../../include/contact_selectors.php:76 ../../mod/dfrn_request.php:851 msgid "Friendica" msgstr "Friendica" @@ -1967,13 +1942,13 @@ msgid "RSS/Atom" msgstr "RSS/Atom" #: ../../include/contact_selectors.php:79 -#: ../../include/contact_selectors.php:86 ../../mod/admin.php:1003 -#: ../../mod/admin.php:1015 ../../mod/admin.php:1016 ../../mod/admin.php:1031 +#: ../../include/contact_selectors.php:86 ../../mod/admin.php:1006 +#: ../../mod/admin.php:1018 ../../mod/admin.php:1019 ../../mod/admin.php:1034 msgid "Email" msgstr "E-Mail" -#: ../../include/contact_selectors.php:80 ../../mod/settings.php:741 -#: ../../mod/dfrn_request.php:838 +#: ../../include/contact_selectors.php:80 ../../mod/settings.php:761 +#: ../../mod/dfrn_request.php:853 msgid "Diaspora" msgstr "Diaspora" @@ -2022,17 +1997,17 @@ msgstr "StatusNet" msgid "App.net" msgstr "App.net" -#: ../../include/diaspora.php:621 ../../include/conversation.php:172 -#: ../../mod/dfrn_confirm.php:486 +#: ../../include/diaspora.php:622 ../../include/conversation.php:172 +#: ../../mod/dfrn_confirm.php:487 #, php-format msgid "%1$s is now friends with %2$s" msgstr "%1$s ist nun mit %2$s befreundet" -#: ../../include/diaspora.php:704 +#: ../../include/diaspora.php:705 msgid "Sharing notification from Diaspora network" msgstr "Freigabe-Benachrichtigung von Diaspora" -#: ../../include/diaspora.php:2444 +#: ../../include/diaspora.php:2493 msgid "Attachments:" msgstr "Anhänge:" @@ -2065,36 +2040,36 @@ msgstr "Nachricht/Beitrag" msgid "%1$s marked %2$s's %3$s as favorite" msgstr "%1$s hat %2$s\\s %3$s als Favorit markiert" -#: ../../include/conversation.php:612 ../../object/Item.php:129 +#: ../../include/conversation.php:612 ../../object/Item.php:130 #: ../../mod/photos.php:1653 ../../mod/content.php:437 #: ../../mod/content.php:740 msgid "Select" msgstr "Auswählen" -#: ../../include/conversation.php:613 ../../object/Item.php:130 -#: ../../mod/group.php:171 ../../mod/settings.php:682 -#: ../../mod/contacts.php:733 ../../mod/admin.php:1007 +#: ../../include/conversation.php:613 ../../object/Item.php:131 +#: ../../mod/group.php:171 ../../mod/settings.php:684 +#: ../../mod/contacts.php:803 ../../mod/admin.php:1010 #: ../../mod/photos.php:1654 ../../mod/content.php:438 #: ../../mod/content.php:741 msgid "Delete" msgstr "Löschen" -#: ../../include/conversation.php:653 ../../object/Item.php:326 -#: ../../object/Item.php:327 ../../mod/content.php:471 +#: ../../include/conversation.php:653 ../../object/Item.php:329 +#: ../../object/Item.php:330 ../../mod/content.php:471 #: ../../mod/content.php:852 ../../mod/content.php:853 #, php-format msgid "View %s's profile @ %s" msgstr "Das Profil von %s auf %s betrachten." -#: ../../include/conversation.php:665 ../../object/Item.php:316 +#: ../../include/conversation.php:665 ../../object/Item.php:319 msgid "Categories:" msgstr "Kategorien:" -#: ../../include/conversation.php:666 ../../object/Item.php:317 +#: ../../include/conversation.php:666 ../../object/Item.php:320 msgid "Filed under:" msgstr "Abgelegt unter:" -#: ../../include/conversation.php:673 ../../object/Item.php:340 +#: ../../include/conversation.php:673 ../../object/Item.php:343 #: ../../mod/content.php:481 ../../mod/content.php:864 #, php-format msgid "%s from %s" @@ -2105,7 +2080,7 @@ msgid "View in context" msgstr "Im Zusammenhang betrachten" #: ../../include/conversation.php:691 ../../include/conversation.php:1108 -#: ../../object/Item.php:364 ../../mod/wallmessage.php:156 +#: ../../object/Item.php:367 ../../mod/wallmessage.php:156 #: ../../mod/editpost.php:124 ../../mod/photos.php:1545 #: ../../mod/message.php:334 ../../mod/message.php:565 #: ../../mod/content.php:499 ../../mod/content.php:883 @@ -2208,7 +2183,7 @@ msgstr "An E-Mail senden" msgid "Connectors disabled, since \"%s\" is enabled." msgstr "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist." -#: ../../include/conversation.php:1056 ../../mod/settings.php:1033 +#: ../../include/conversation.php:1056 ../../mod/settings.php:1053 msgid "Hide your profile details from unknown viewers?" msgstr "Profil-Details vor unbekannten Betrachtern verbergen?" @@ -2304,10 +2279,10 @@ msgstr "Öffentlicher Beitrag" msgid "Example: bob@example.com, mary@example.com" msgstr "Z.B.: bob@example.com, mary@example.com" -#: ../../include/conversation.php:1125 ../../object/Item.php:687 +#: ../../include/conversation.php:1125 ../../object/Item.php:690 #: ../../mod/editpost.php:145 ../../mod/photos.php:1566 #: ../../mod/photos.php:1610 ../../mod/photos.php:1698 -#: ../../mod/content.php:719 +#: ../../mod/events.php:489 ../../mod/content.php:719 msgid "Preview" msgstr "Vorschau" @@ -2323,299 +2298,299 @@ msgstr "Poste an Kontakte" msgid "Private post" msgstr "Privater Beitrag" -#: ../../include/text.php:297 +#: ../../include/text.php:299 msgid "newer" msgstr "neuer" -#: ../../include/text.php:299 +#: ../../include/text.php:301 msgid "older" msgstr "älter" -#: ../../include/text.php:304 +#: ../../include/text.php:306 msgid "prev" msgstr "vorige" -#: ../../include/text.php:306 +#: ../../include/text.php:308 msgid "first" msgstr "erste" -#: ../../include/text.php:338 +#: ../../include/text.php:340 msgid "last" msgstr "letzte" -#: ../../include/text.php:341 +#: ../../include/text.php:343 msgid "next" msgstr "nächste" -#: ../../include/text.php:396 +#: ../../include/text.php:398 msgid "Loading more entries..." msgstr "lade weitere Einträge..." -#: ../../include/text.php:397 +#: ../../include/text.php:399 msgid "The end" msgstr "Das Ende" -#: ../../include/text.php:870 +#: ../../include/text.php:872 msgid "No contacts" msgstr "Keine Kontakte" -#: ../../include/text.php:879 +#: ../../include/text.php:881 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" msgstr[0] "%d Kontakt" msgstr[1] "%d Kontakte" -#: ../../include/text.php:891 ../../mod/viewcontacts.php:78 +#: ../../include/text.php:893 ../../mod/viewcontacts.php:78 msgid "View Contacts" msgstr "Kontakte anzeigen" -#: ../../include/text.php:971 ../../mod/editpost.php:109 +#: ../../include/text.php:973 ../../mod/editpost.php:109 #: ../../mod/notes.php:63 ../../mod/filer.php:31 msgid "Save" msgstr "Speichern" -#: ../../include/text.php:1020 +#: ../../include/text.php:1022 msgid "poke" msgstr "anstupsen" -#: ../../include/text.php:1020 +#: ../../include/text.php:1022 msgid "poked" msgstr "stupste" -#: ../../include/text.php:1021 +#: ../../include/text.php:1023 msgid "ping" msgstr "anpingen" -#: ../../include/text.php:1021 +#: ../../include/text.php:1023 msgid "pinged" msgstr "pingte" -#: ../../include/text.php:1022 +#: ../../include/text.php:1024 msgid "prod" msgstr "knuffen" -#: ../../include/text.php:1022 +#: ../../include/text.php:1024 msgid "prodded" msgstr "knuffte" -#: ../../include/text.php:1023 +#: ../../include/text.php:1025 msgid "slap" msgstr "ohrfeigen" -#: ../../include/text.php:1023 +#: ../../include/text.php:1025 msgid "slapped" msgstr "ohrfeigte" -#: ../../include/text.php:1024 +#: ../../include/text.php:1026 msgid "finger" msgstr "befummeln" -#: ../../include/text.php:1024 +#: ../../include/text.php:1026 msgid "fingered" msgstr "befummelte" -#: ../../include/text.php:1025 +#: ../../include/text.php:1027 msgid "rebuff" msgstr "eine Abfuhr erteilen" -#: ../../include/text.php:1025 +#: ../../include/text.php:1027 msgid "rebuffed" msgstr "abfuhrerteilte" -#: ../../include/text.php:1039 +#: ../../include/text.php:1041 msgid "happy" msgstr "glücklich" -#: ../../include/text.php:1040 +#: ../../include/text.php:1042 msgid "sad" msgstr "traurig" -#: ../../include/text.php:1041 +#: ../../include/text.php:1043 msgid "mellow" msgstr "sanft" -#: ../../include/text.php:1042 +#: ../../include/text.php:1044 msgid "tired" msgstr "müde" -#: ../../include/text.php:1043 +#: ../../include/text.php:1045 msgid "perky" msgstr "frech" -#: ../../include/text.php:1044 +#: ../../include/text.php:1046 msgid "angry" msgstr "sauer" -#: ../../include/text.php:1045 +#: ../../include/text.php:1047 msgid "stupified" msgstr "verblüfft" -#: ../../include/text.php:1046 +#: ../../include/text.php:1048 msgid "puzzled" msgstr "verwirrt" -#: ../../include/text.php:1047 +#: ../../include/text.php:1049 msgid "interested" msgstr "interessiert" -#: ../../include/text.php:1048 +#: ../../include/text.php:1050 msgid "bitter" msgstr "verbittert" -#: ../../include/text.php:1049 +#: ../../include/text.php:1051 msgid "cheerful" msgstr "fröhlich" -#: ../../include/text.php:1050 +#: ../../include/text.php:1052 msgid "alive" msgstr "lebendig" -#: ../../include/text.php:1051 +#: ../../include/text.php:1053 msgid "annoyed" msgstr "verärgert" -#: ../../include/text.php:1052 +#: ../../include/text.php:1054 msgid "anxious" msgstr "unruhig" -#: ../../include/text.php:1053 +#: ../../include/text.php:1055 msgid "cranky" msgstr "schrullig" -#: ../../include/text.php:1054 +#: ../../include/text.php:1056 msgid "disturbed" msgstr "verstört" -#: ../../include/text.php:1055 +#: ../../include/text.php:1057 msgid "frustrated" msgstr "frustriert" -#: ../../include/text.php:1056 +#: ../../include/text.php:1058 msgid "motivated" msgstr "motiviert" -#: ../../include/text.php:1057 +#: ../../include/text.php:1059 msgid "relaxed" msgstr "entspannt" -#: ../../include/text.php:1058 +#: ../../include/text.php:1060 msgid "surprised" msgstr "überrascht" -#: ../../include/text.php:1228 +#: ../../include/text.php:1230 msgid "Monday" msgstr "Montag" -#: ../../include/text.php:1228 +#: ../../include/text.php:1230 msgid "Tuesday" msgstr "Dienstag" -#: ../../include/text.php:1228 +#: ../../include/text.php:1230 msgid "Wednesday" msgstr "Mittwoch" -#: ../../include/text.php:1228 +#: ../../include/text.php:1230 msgid "Thursday" msgstr "Donnerstag" -#: ../../include/text.php:1228 +#: ../../include/text.php:1230 msgid "Friday" msgstr "Freitag" -#: ../../include/text.php:1228 +#: ../../include/text.php:1230 msgid "Saturday" msgstr "Samstag" -#: ../../include/text.php:1228 +#: ../../include/text.php:1230 msgid "Sunday" msgstr "Sonntag" -#: ../../include/text.php:1232 +#: ../../include/text.php:1234 msgid "January" msgstr "Januar" -#: ../../include/text.php:1232 +#: ../../include/text.php:1234 msgid "February" msgstr "Februar" -#: ../../include/text.php:1232 +#: ../../include/text.php:1234 msgid "March" msgstr "März" -#: ../../include/text.php:1232 +#: ../../include/text.php:1234 msgid "April" msgstr "April" -#: ../../include/text.php:1232 +#: ../../include/text.php:1234 msgid "May" msgstr "Mai" -#: ../../include/text.php:1232 +#: ../../include/text.php:1234 msgid "June" msgstr "Juni" -#: ../../include/text.php:1232 +#: ../../include/text.php:1234 msgid "July" msgstr "Juli" -#: ../../include/text.php:1232 +#: ../../include/text.php:1234 msgid "August" msgstr "August" -#: ../../include/text.php:1232 +#: ../../include/text.php:1234 msgid "September" msgstr "September" -#: ../../include/text.php:1232 +#: ../../include/text.php:1234 msgid "October" msgstr "Oktober" -#: ../../include/text.php:1232 +#: ../../include/text.php:1234 msgid "November" msgstr "November" -#: ../../include/text.php:1232 +#: ../../include/text.php:1234 msgid "December" msgstr "Dezember" -#: ../../include/text.php:1422 ../../mod/videos.php:301 +#: ../../include/text.php:1424 ../../mod/videos.php:301 msgid "View Video" msgstr "Video ansehen" -#: ../../include/text.php:1454 +#: ../../include/text.php:1456 msgid "bytes" msgstr "Byte" -#: ../../include/text.php:1478 ../../include/text.php:1490 +#: ../../include/text.php:1488 ../../include/text.php:1500 msgid "Click to open/close" msgstr "Zum öffnen/schließen klicken" -#: ../../include/text.php:1664 ../../include/text.php:1674 -#: ../../mod/events.php:335 +#: ../../include/text.php:1674 ../../include/text.php:1684 +#: ../../mod/events.php:347 msgid "link to source" msgstr "Link zum Originalbeitrag" -#: ../../include/text.php:1731 +#: ../../include/text.php:1741 msgid "Select an alternate language" msgstr "Alternative Sprache auswählen" -#: ../../include/text.php:1987 +#: ../../include/text.php:1997 msgid "activity" msgstr "Aktivität" -#: ../../include/text.php:1989 ../../object/Item.php:389 -#: ../../object/Item.php:402 ../../mod/content.php:605 +#: ../../include/text.php:1999 ../../object/Item.php:392 +#: ../../object/Item.php:405 ../../mod/content.php:605 msgid "comment" msgid_plural "comments" msgstr[0] "Kommentar" msgstr[1] "Kommentare" -#: ../../include/text.php:1990 +#: ../../include/text.php:2000 msgid "post" msgstr "Beitrag" -#: ../../include/text.php:2158 +#: ../../include/text.php:2168 msgid "Item filed" msgstr "Beitrag abgelegt" @@ -2638,28 +2613,28 @@ msgstr "Beim Versuch Dich mit der von Dir angegebenen OpenID anzumelden trat ein msgid "The error message was:" msgstr "Die Fehlermeldung lautete:" -#: ../../include/bbcode.php:433 ../../include/bbcode.php:1066 -#: ../../include/bbcode.php:1067 +#: ../../include/bbcode.php:448 ../../include/bbcode.php:1094 +#: ../../include/bbcode.php:1095 msgid "Image/photo" msgstr "Bild/Foto" -#: ../../include/bbcode.php:531 +#: ../../include/bbcode.php:546 #, php-format msgid "%2$s %3$s" msgstr "%2$s %3$s" -#: ../../include/bbcode.php:565 +#: ../../include/bbcode.php:580 #, php-format msgid "" "%s wrote the following post" msgstr "%s schrieb den folgenden Beitrag" -#: ../../include/bbcode.php:1030 ../../include/bbcode.php:1050 +#: ../../include/bbcode.php:1058 ../../include/bbcode.php:1078 msgid "$1 wrote:" msgstr "$1 hat geschrieben:" -#: ../../include/bbcode.php:1075 ../../include/bbcode.php:1076 +#: ../../include/bbcode.php:1103 ../../include/bbcode.php:1104 msgid "Encrypted content" msgstr "Verschlüsselter Inhalt" @@ -2675,17 +2650,17 @@ msgstr "Bitte lade ein Profilbild hoch." msgid "Welcome back " msgstr "Willkommen zurück " -#: ../../include/security.php:366 +#: ../../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/oembed.php:213 +#: ../../include/oembed.php:218 msgid "Embedded content" msgstr "Eingebetteter Inhalt" -#: ../../include/oembed.php:222 +#: ../../include/oembed.php:227 msgid "Embedding disabled" msgstr "Einbettungen deaktiviert" @@ -3029,7 +3004,7 @@ 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:413 ../../mod/admin.php:838 +#: ../../include/user.php:413 ../../mod/admin.php:841 #, php-format msgid "Registration details for %s" msgstr "Details der Registration von %s" @@ -3038,144 +3013,144 @@ msgstr "Details der Registration von %s" msgid "Visible to everybody" msgstr "Für jeden sichtbar" -#: ../../object/Item.php:94 +#: ../../object/Item.php:95 msgid "This entry was edited" msgstr "Dieser Beitrag wurde bearbeitet." -#: ../../object/Item.php:116 ../../mod/photos.php:1359 +#: ../../object/Item.php:117 ../../mod/photos.php:1359 #: ../../mod/content.php:620 msgid "Private Message" msgstr "Private Nachricht" -#: ../../object/Item.php:120 ../../mod/settings.php:681 +#: ../../object/Item.php:121 ../../mod/settings.php:683 #: ../../mod/content.php:728 msgid "Edit" msgstr "Bearbeiten" -#: ../../object/Item.php:133 ../../mod/content.php:763 +#: ../../object/Item.php:134 ../../mod/content.php:763 msgid "save to folder" msgstr "In Ordner speichern" -#: ../../object/Item.php:195 ../../mod/content.php:753 +#: ../../object/Item.php:196 ../../mod/content.php:753 msgid "add star" msgstr "markieren" -#: ../../object/Item.php:196 ../../mod/content.php:754 +#: ../../object/Item.php:197 ../../mod/content.php:754 msgid "remove star" msgstr "Markierung entfernen" -#: ../../object/Item.php:197 ../../mod/content.php:755 +#: ../../object/Item.php:198 ../../mod/content.php:755 msgid "toggle star status" msgstr "Markierung umschalten" -#: ../../object/Item.php:200 ../../mod/content.php:758 +#: ../../object/Item.php:201 ../../mod/content.php:758 msgid "starred" msgstr "markiert" -#: ../../object/Item.php:208 +#: ../../object/Item.php:209 msgid "ignore thread" msgstr "Thread ignorieren" -#: ../../object/Item.php:209 +#: ../../object/Item.php:210 msgid "unignore thread" msgstr "Thread nicht mehr ignorieren" -#: ../../object/Item.php:210 +#: ../../object/Item.php:211 msgid "toggle ignore status" msgstr "Ignoriert-Status ein-/ausschalten" -#: ../../object/Item.php:213 +#: ../../object/Item.php:214 msgid "ignored" msgstr "Ignoriert" -#: ../../object/Item.php:220 ../../mod/content.php:759 +#: ../../object/Item.php:221 ../../mod/content.php:759 msgid "add tag" msgstr "Tag hinzufügen" -#: ../../object/Item.php:231 ../../mod/photos.php:1542 +#: ../../object/Item.php:232 ../../mod/photos.php:1542 #: ../../mod/content.php:684 msgid "I like this (toggle)" msgstr "Ich mag das (toggle)" -#: ../../object/Item.php:231 ../../mod/content.php:684 +#: ../../object/Item.php:232 ../../mod/content.php:684 msgid "like" msgstr "mag ich" -#: ../../object/Item.php:232 ../../mod/photos.php:1543 +#: ../../object/Item.php:233 ../../mod/photos.php:1543 #: ../../mod/content.php:685 msgid "I don't like this (toggle)" msgstr "Ich mag das nicht (toggle)" -#: ../../object/Item.php:232 ../../mod/content.php:685 +#: ../../object/Item.php:233 ../../mod/content.php:685 msgid "dislike" msgstr "mag ich nicht" -#: ../../object/Item.php:234 ../../mod/content.php:687 +#: ../../object/Item.php:235 ../../mod/content.php:687 msgid "Share this" msgstr "Weitersagen" -#: ../../object/Item.php:234 ../../mod/content.php:687 +#: ../../object/Item.php:235 ../../mod/content.php:687 msgid "share" msgstr "Teilen" -#: ../../object/Item.php:328 ../../mod/content.php:854 +#: ../../object/Item.php:331 ../../mod/content.php:854 msgid "to" msgstr "zu" -#: ../../object/Item.php:329 +#: ../../object/Item.php:332 msgid "via" msgstr "via" -#: ../../object/Item.php:330 ../../mod/content.php:855 +#: ../../object/Item.php:333 ../../mod/content.php:855 msgid "Wall-to-Wall" msgstr "Wall-to-Wall" -#: ../../object/Item.php:331 ../../mod/content.php:856 +#: ../../object/Item.php:334 ../../mod/content.php:856 msgid "via Wall-To-Wall:" msgstr "via Wall-To-Wall:" -#: ../../object/Item.php:387 ../../mod/content.php:603 +#: ../../object/Item.php:390 ../../mod/content.php:603 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%d Kommentar" msgstr[1] "%d Kommentare" -#: ../../object/Item.php:675 ../../mod/photos.php:1562 +#: ../../object/Item.php:678 ../../mod/photos.php:1562 #: ../../mod/photos.php:1606 ../../mod/photos.php:1694 #: ../../mod/content.php:707 msgid "This is you" msgstr "Das bist Du" -#: ../../object/Item.php:679 ../../mod/content.php:711 +#: ../../object/Item.php:682 ../../mod/content.php:711 msgid "Bold" msgstr "Fett" -#: ../../object/Item.php:680 ../../mod/content.php:712 +#: ../../object/Item.php:683 ../../mod/content.php:712 msgid "Italic" msgstr "Kursiv" -#: ../../object/Item.php:681 ../../mod/content.php:713 +#: ../../object/Item.php:684 ../../mod/content.php:713 msgid "Underline" msgstr "Unterstrichen" -#: ../../object/Item.php:682 ../../mod/content.php:714 +#: ../../object/Item.php:685 ../../mod/content.php:714 msgid "Quote" msgstr "Zitat" -#: ../../object/Item.php:683 ../../mod/content.php:715 +#: ../../object/Item.php:686 ../../mod/content.php:715 msgid "Code" msgstr "Code" -#: ../../object/Item.php:684 ../../mod/content.php:716 +#: ../../object/Item.php:687 ../../mod/content.php:716 msgid "Image" msgstr "Bild" -#: ../../object/Item.php:685 ../../mod/content.php:717 +#: ../../object/Item.php:688 ../../mod/content.php:717 msgid "Link" msgstr "Link" -#: ../../object/Item.php:686 ../../mod/content.php:718 +#: ../../object/Item.php:689 ../../mod/content.php:718 msgid "Video" msgstr "Video" @@ -3266,10 +3241,6 @@ msgstr "Gruppe speichern" msgid "Create a group of contacts/friends." msgstr "Eine Gruppe von Kontakten/Freunden anlegen." -#: ../../mod/group.php:94 ../../mod/group.php:180 -msgid "Group Name: " -msgstr "Gruppenname:" - #: ../../mod/group.php:113 msgid "Group removed." msgstr "Gruppe entfernt." @@ -3286,11 +3257,11 @@ msgstr "Gruppeneditor" msgid "Members" msgstr "Mitglieder" -#: ../../mod/group.php:194 ../../mod/contacts.php:586 +#: ../../mod/group.php:194 ../../mod/contacts.php:656 msgid "All Contacts" msgstr "Alle Kontakte" -#: ../../mod/group.php:224 ../../mod/profperm.php:105 +#: ../../mod/group.php:224 ../../mod/profperm.php:106 msgid "Click on a contact to add or remove." msgstr "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen" @@ -3339,8 +3310,8 @@ msgid "Discard" msgstr "Verwerfen" #: ../../mod/notifications.php:51 ../../mod/notifications.php:164 -#: ../../mod/notifications.php:214 ../../mod/contacts.php:455 -#: ../../mod/contacts.php:519 ../../mod/contacts.php:731 +#: ../../mod/notifications.php:214 ../../mod/contacts.php:525 +#: ../../mod/contacts.php:589 ../../mod/contacts.php:801 msgid "Ignore" msgstr "Ignorieren" @@ -3374,7 +3345,7 @@ msgid "suggested by %s" msgstr "vorgeschlagen von %s" #: ../../mod/notifications.php:157 ../../mod/notifications.php:208 -#: ../../mod/contacts.php:525 +#: ../../mod/contacts.php:595 msgid "Hide this contact from others" msgstr "Verbirg diesen Kontakt von anderen" @@ -3387,7 +3358,7 @@ msgid "if applicable" msgstr "falls anwendbar" #: ../../mod/notifications.php:161 ../../mod/notifications.php:212 -#: ../../mod/admin.php:1005 +#: ../../mod/admin.php:1008 msgid "Approve" msgstr "Genehmigen" @@ -3510,7 +3481,7 @@ msgstr "Kein Profil" msgid "everybody" msgstr "jeder" -#: ../../mod/settings.php:41 ../../mod/admin.php:1016 +#: ../../mod/settings.php:41 ../../mod/admin.php:1019 msgid "Account" msgstr "Nutzerkonto" @@ -3522,12 +3493,12 @@ msgstr "Zusätzliche Features" msgid "Display" msgstr "Anzeige" -#: ../../mod/settings.php:57 ../../mod/settings.php:785 +#: ../../mod/settings.php:57 ../../mod/settings.php:805 msgid "Social Networks" msgstr "Soziale Netzwerke" -#: ../../mod/settings.php:62 ../../mod/admin.php:106 ../../mod/admin.php:1102 -#: ../../mod/admin.php:1155 +#: ../../mod/settings.php:62 ../../mod/admin.php:106 ../../mod/admin.php:1105 +#: ../../mod/admin.php:1158 msgid "Plugins" msgstr "Plugins" @@ -3547,620 +3518,651 @@ msgstr "Konto löschen" msgid "Missing some important data!" msgstr "Wichtige Daten fehlen!" -#: ../../mod/settings.php:137 ../../mod/settings.php:645 -#: ../../mod/contacts.php:729 +#: ../../mod/settings.php:137 ../../mod/settings.php:647 +#: ../../mod/contacts.php:799 msgid "Update" msgstr "Aktualisierungen" -#: ../../mod/settings.php:243 +#: ../../mod/settings.php:245 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:248 +#: ../../mod/settings.php:250 msgid "Email settings updated." msgstr "E-Mail Einstellungen bearbeitet." -#: ../../mod/settings.php:263 +#: ../../mod/settings.php:265 msgid "Features updated" msgstr "Features aktualisiert" -#: ../../mod/settings.php:326 +#: ../../mod/settings.php:328 msgid "Relocate message has been send to your contacts" msgstr "Die Umzugsbenachrichtigung wurde an Deine Kontakte versendet." -#: ../../mod/settings.php:340 +#: ../../mod/settings.php:342 msgid "Passwords do not match. Password unchanged." msgstr "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert." -#: ../../mod/settings.php:345 +#: ../../mod/settings.php:347 msgid "Empty passwords are not allowed. Password unchanged." msgstr "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert." -#: ../../mod/settings.php:353 +#: ../../mod/settings.php:355 msgid "Wrong password." msgstr "Falsches Passwort." -#: ../../mod/settings.php:364 +#: ../../mod/settings.php:366 msgid "Password changed." msgstr "Passwort geändert." -#: ../../mod/settings.php:366 +#: ../../mod/settings.php:368 msgid "Password update failed. Please try again." msgstr "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal." -#: ../../mod/settings.php:433 +#: ../../mod/settings.php:435 msgid " Please use a shorter name." msgstr " Bitte verwende einen kürzeren Namen." -#: ../../mod/settings.php:435 +#: ../../mod/settings.php:437 msgid " Name too short." msgstr " Name ist zu kurz." -#: ../../mod/settings.php:444 +#: ../../mod/settings.php:446 msgid "Wrong Password" msgstr "Falsches Passwort" -#: ../../mod/settings.php:449 +#: ../../mod/settings.php:451 msgid " Not valid email." msgstr " Keine gültige E-Mail." -#: ../../mod/settings.php:455 +#: ../../mod/settings.php:457 msgid " Cannot change to that email." msgstr "Ändern der E-Mail nicht möglich. " -#: ../../mod/settings.php:511 +#: ../../mod/settings.php:513 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:515 +#: ../../mod/settings.php:517 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:545 +#: ../../mod/settings.php:547 msgid "Settings updated." msgstr "Einstellungen aktualisiert." -#: ../../mod/settings.php:618 ../../mod/settings.php:644 -#: ../../mod/settings.php:680 +#: ../../mod/settings.php:620 ../../mod/settings.php:646 +#: ../../mod/settings.php:682 msgid "Add application" msgstr "Programm hinzufügen" -#: ../../mod/settings.php:619 ../../mod/settings.php:729 -#: ../../mod/settings.php:803 ../../mod/settings.php:885 -#: ../../mod/settings.php:1118 ../../mod/admin.php:620 -#: ../../mod/admin.php:1156 ../../mod/admin.php:1358 ../../mod/admin.php:1445 +#: ../../mod/settings.php:621 ../../mod/settings.php:731 +#: ../../mod/settings.php:754 ../../mod/settings.php:823 +#: ../../mod/settings.php:905 ../../mod/settings.php:1138 +#: ../../mod/admin.php:622 ../../mod/admin.php:1159 ../../mod/admin.php:1361 +#: ../../mod/admin.php:1448 msgid "Save Settings" msgstr "Einstellungen speichern" -#: ../../mod/settings.php:621 ../../mod/settings.php:647 -#: ../../mod/admin.php:1003 ../../mod/admin.php:1015 ../../mod/admin.php:1016 -#: ../../mod/admin.php:1029 ../../mod/crepair.php:165 +#: ../../mod/settings.php:623 ../../mod/settings.php:649 +#: ../../mod/admin.php:1006 ../../mod/admin.php:1018 ../../mod/admin.php:1019 +#: ../../mod/admin.php:1032 ../../mod/crepair.php:169 msgid "Name" msgstr "Name" -#: ../../mod/settings.php:622 ../../mod/settings.php:648 +#: ../../mod/settings.php:624 ../../mod/settings.php:650 msgid "Consumer Key" msgstr "Consumer Key" -#: ../../mod/settings.php:623 ../../mod/settings.php:649 +#: ../../mod/settings.php:625 ../../mod/settings.php:651 msgid "Consumer Secret" msgstr "Consumer Secret" -#: ../../mod/settings.php:624 ../../mod/settings.php:650 +#: ../../mod/settings.php:626 ../../mod/settings.php:652 msgid "Redirect" msgstr "Umleiten" -#: ../../mod/settings.php:625 ../../mod/settings.php:651 +#: ../../mod/settings.php:627 ../../mod/settings.php:653 msgid "Icon url" msgstr "Icon URL" -#: ../../mod/settings.php:636 +#: ../../mod/settings.php:638 msgid "You can't edit this application." msgstr "Du kannst dieses Programm nicht bearbeiten." -#: ../../mod/settings.php:679 +#: ../../mod/settings.php:681 msgid "Connected Apps" msgstr "Verbundene Programme" -#: ../../mod/settings.php:683 +#: ../../mod/settings.php:685 msgid "Client key starts with" msgstr "Anwenderschlüssel beginnt mit" -#: ../../mod/settings.php:684 +#: ../../mod/settings.php:686 msgid "No name" msgstr "Kein Name" -#: ../../mod/settings.php:685 +#: ../../mod/settings.php:687 msgid "Remove authorization" msgstr "Autorisierung entziehen" -#: ../../mod/settings.php:697 +#: ../../mod/settings.php:699 msgid "No Plugin settings configured" msgstr "Keine Plugin-Einstellungen konfiguriert" -#: ../../mod/settings.php:705 +#: ../../mod/settings.php:707 msgid "Plugin Settings" msgstr "Plugin-Einstellungen" -#: ../../mod/settings.php:719 +#: ../../mod/settings.php:721 msgid "Off" msgstr "Aus" -#: ../../mod/settings.php:719 +#: ../../mod/settings.php:721 msgid "On" msgstr "An" -#: ../../mod/settings.php:727 +#: ../../mod/settings.php:729 msgid "Additional Features" msgstr "Zusätzliche Features" -#: ../../mod/settings.php:741 ../../mod/settings.php:742 +#: ../../mod/settings.php:739 ../../mod/settings.php:743 +msgid "General Social Media Settings" +msgstr "Allgemeine Einstellungen zu Sozialen Medien" + +#: ../../mod/settings.php:749 +msgid "Disable intelligent shortening" +msgstr "Intelligentes Link kürzen ausschalten" + +#: ../../mod/settings.php:751 +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:761 ../../mod/settings.php:762 #, 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:741 ../../mod/settings.php:742 +#: ../../mod/settings.php:761 ../../mod/settings.php:762 msgid "enabled" msgstr "eingeschaltet" -#: ../../mod/settings.php:741 ../../mod/settings.php:742 +#: ../../mod/settings.php:761 ../../mod/settings.php:762 msgid "disabled" msgstr "ausgeschaltet" -#: ../../mod/settings.php:742 +#: ../../mod/settings.php:762 msgid "StatusNet" msgstr "StatusNet" -#: ../../mod/settings.php:778 +#: ../../mod/settings.php:798 msgid "Email access is disabled on this site." msgstr "Zugriff auf E-Mails für diese Seite deaktiviert." -#: ../../mod/settings.php:790 +#: ../../mod/settings.php:810 msgid "Email/Mailbox Setup" msgstr "E-Mail/Postfach-Einstellungen" -#: ../../mod/settings.php:791 +#: ../../mod/settings.php:811 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:792 +#: ../../mod/settings.php:812 msgid "Last successful email check:" msgstr "Letzter erfolgreicher E-Mail Check" -#: ../../mod/settings.php:794 +#: ../../mod/settings.php:814 msgid "IMAP server name:" msgstr "IMAP-Server-Name:" -#: ../../mod/settings.php:795 +#: ../../mod/settings.php:815 msgid "IMAP port:" msgstr "IMAP-Port:" -#: ../../mod/settings.php:796 +#: ../../mod/settings.php:816 msgid "Security:" msgstr "Sicherheit:" -#: ../../mod/settings.php:796 ../../mod/settings.php:801 +#: ../../mod/settings.php:816 ../../mod/settings.php:821 msgid "None" msgstr "Keine" -#: ../../mod/settings.php:797 +#: ../../mod/settings.php:817 msgid "Email login name:" msgstr "E-Mail-Login-Name:" -#: ../../mod/settings.php:798 +#: ../../mod/settings.php:818 msgid "Email password:" msgstr "E-Mail-Passwort:" -#: ../../mod/settings.php:799 +#: ../../mod/settings.php:819 msgid "Reply-to address:" msgstr "Reply-to Adresse:" -#: ../../mod/settings.php:800 +#: ../../mod/settings.php:820 msgid "Send public posts to all email contacts:" msgstr "Sende öffentliche Beiträge an alle E-Mail-Kontakte:" -#: ../../mod/settings.php:801 +#: ../../mod/settings.php:821 msgid "Action after import:" msgstr "Aktion nach Import:" -#: ../../mod/settings.php:801 +#: ../../mod/settings.php:821 msgid "Mark as seen" msgstr "Als gelesen markieren" -#: ../../mod/settings.php:801 +#: ../../mod/settings.php:821 msgid "Move to folder" msgstr "In einen Ordner verschieben" -#: ../../mod/settings.php:802 +#: ../../mod/settings.php:822 msgid "Move to folder:" msgstr "In diesen Ordner verschieben:" -#: ../../mod/settings.php:833 ../../mod/admin.php:545 +#: ../../mod/settings.php:853 ../../mod/admin.php:547 msgid "No special theme for mobile devices" msgstr "Kein spezielles Theme für mobile Geräte verwenden." -#: ../../mod/settings.php:883 +#: ../../mod/settings.php:903 msgid "Display Settings" msgstr "Anzeige-Einstellungen" -#: ../../mod/settings.php:889 ../../mod/settings.php:904 +#: ../../mod/settings.php:909 ../../mod/settings.php:924 msgid "Display Theme:" msgstr "Theme:" -#: ../../mod/settings.php:890 +#: ../../mod/settings.php:910 msgid "Mobile Theme:" msgstr "Mobiles Theme" -#: ../../mod/settings.php:891 +#: ../../mod/settings.php:911 msgid "Update browser every xx seconds" msgstr "Browser alle xx Sekunden aktualisieren" -#: ../../mod/settings.php:891 +#: ../../mod/settings.php:911 msgid "Minimum of 10 seconds, no maximum" msgstr "Minimal 10 Sekunden, kein Maximum" -#: ../../mod/settings.php:892 +#: ../../mod/settings.php:912 msgid "Number of items to display per page:" msgstr "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: " -#: ../../mod/settings.php:892 ../../mod/settings.php:893 +#: ../../mod/settings.php:912 ../../mod/settings.php:913 msgid "Maximum of 100 items" msgstr "Maximal 100 Beiträge" -#: ../../mod/settings.php:893 +#: ../../mod/settings.php:913 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:894 +#: ../../mod/settings.php:914 msgid "Don't show emoticons" msgstr "Keine Smilies anzeigen" -#: ../../mod/settings.php:895 +#: ../../mod/settings.php:915 msgid "Don't show notices" msgstr "Info-Popups nicht anzeigen" -#: ../../mod/settings.php:896 +#: ../../mod/settings.php:916 msgid "Infinite scroll" msgstr "Endloses Scrollen" -#: ../../mod/settings.php:897 +#: ../../mod/settings.php:917 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:974 +#: ../../mod/settings.php:994 msgid "User Types" msgstr "Nutzer Art" -#: ../../mod/settings.php:975 +#: ../../mod/settings.php:995 msgid "Community Types" msgstr "Gemeinschafts Art" -#: ../../mod/settings.php:976 +#: ../../mod/settings.php:996 msgid "Normal Account Page" msgstr "Normales Konto" -#: ../../mod/settings.php:977 +#: ../../mod/settings.php:997 msgid "This account is a normal personal profile" msgstr "Dieses Konto ist ein normales persönliches Profil" -#: ../../mod/settings.php:980 +#: ../../mod/settings.php:1000 msgid "Soapbox Page" msgstr "Marktschreier-Konto" -#: ../../mod/settings.php:981 +#: ../../mod/settings.php:1001 msgid "Automatically approve all connection/friend requests as read-only fans" msgstr "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert" -#: ../../mod/settings.php:984 +#: ../../mod/settings.php:1004 msgid "Community Forum/Celebrity Account" msgstr "Forum/Promi-Konto" -#: ../../mod/settings.php:985 +#: ../../mod/settings.php:1005 msgid "" "Automatically approve all connection/friend requests as read-write fans" msgstr "Kontaktanfragen werden automatisch als Lese-und-Schreib-Fans akzeptiert" -#: ../../mod/settings.php:988 +#: ../../mod/settings.php:1008 msgid "Automatic Friend Page" msgstr "Automatische Freunde Seite" -#: ../../mod/settings.php:989 +#: ../../mod/settings.php:1009 msgid "Automatically approve all connection/friend requests as friends" msgstr "Kontaktanfragen werden automatisch als Freund akzeptiert" -#: ../../mod/settings.php:992 +#: ../../mod/settings.php:1012 msgid "Private Forum [Experimental]" msgstr "Privates Forum [Versuchsstadium]" -#: ../../mod/settings.php:993 +#: ../../mod/settings.php:1013 msgid "Private forum - approved members only" msgstr "Privates Forum, nur für Mitglieder" -#: ../../mod/settings.php:1005 +#: ../../mod/settings.php:1025 msgid "OpenID:" msgstr "OpenID:" -#: ../../mod/settings.php:1005 +#: ../../mod/settings.php:1025 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:1015 +#: ../../mod/settings.php:1035 msgid "Publish your default profile in your local site directory?" msgstr "Darf Dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?" -#: ../../mod/settings.php:1015 ../../mod/settings.php:1021 -#: ../../mod/settings.php:1029 ../../mod/settings.php:1033 -#: ../../mod/settings.php:1038 ../../mod/settings.php:1044 -#: ../../mod/settings.php:1050 ../../mod/settings.php:1056 -#: ../../mod/settings.php:1086 ../../mod/settings.php:1087 -#: ../../mod/settings.php:1088 ../../mod/settings.php:1089 -#: ../../mod/settings.php:1090 ../../mod/register.php:234 -#: ../../mod/dfrn_request.php:830 ../../mod/api.php:106 -#: ../../mod/profiles.php:661 ../../mod/profiles.php:665 +#: ../../mod/settings.php:1035 ../../mod/settings.php:1041 +#: ../../mod/settings.php:1049 ../../mod/settings.php:1053 +#: ../../mod/settings.php:1058 ../../mod/settings.php:1064 +#: ../../mod/settings.php:1070 ../../mod/settings.php:1076 +#: ../../mod/settings.php:1106 ../../mod/settings.php:1107 +#: ../../mod/settings.php:1108 ../../mod/settings.php:1109 +#: ../../mod/settings.php:1110 ../../mod/register.php:234 +#: ../../mod/dfrn_request.php:845 ../../mod/api.php:106 +#: ../../mod/follow.php:54 ../../mod/profiles.php:661 +#: ../../mod/profiles.php:665 msgid "No" msgstr "Nein" -#: ../../mod/settings.php:1021 +#: ../../mod/settings.php:1041 msgid "Publish your default profile in the global social directory?" msgstr "Darf Dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?" -#: ../../mod/settings.php:1029 +#: ../../mod/settings.php:1049 msgid "Hide your contact/friend list from viewers of your default profile?" msgstr "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?" -#: ../../mod/settings.php:1033 +#: ../../mod/settings.php:1053 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:1038 +#: ../../mod/settings.php:1058 msgid "Allow friends to post to your profile page?" msgstr "Dürfen Deine Kontakte auf Deine Pinnwand schreiben?" -#: ../../mod/settings.php:1044 +#: ../../mod/settings.php:1064 msgid "Allow friends to tag your posts?" msgstr "Dürfen Deine Kontakte Deine Beiträge mit Schlagwörtern versehen?" -#: ../../mod/settings.php:1050 +#: ../../mod/settings.php:1070 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:1056 +#: ../../mod/settings.php:1076 msgid "Permit unknown people to send you private mail?" msgstr "Dürfen Dir Unbekannte private Nachrichten schicken?" -#: ../../mod/settings.php:1064 +#: ../../mod/settings.php:1084 msgid "Profile is not published." msgstr "Profil ist nicht veröffentlicht." -#: ../../mod/settings.php:1067 ../../mod/profile_photo.php:248 +#: ../../mod/settings.php:1087 ../../mod/profile_photo.php:248 msgid "or" msgstr "oder" -#: ../../mod/settings.php:1072 +#: ../../mod/settings.php:1092 msgid "Your Identity Address is" msgstr "Die Adresse Deines Profils lautet:" -#: ../../mod/settings.php:1083 +#: ../../mod/settings.php:1103 msgid "Automatically expire posts after this many days:" msgstr "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:" -#: ../../mod/settings.php:1083 +#: ../../mod/settings.php:1103 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:1084 +#: ../../mod/settings.php:1104 msgid "Advanced expiration settings" msgstr "Erweiterte Verfallseinstellungen" -#: ../../mod/settings.php:1085 +#: ../../mod/settings.php:1105 msgid "Advanced Expiration" msgstr "Erweitertes Verfallen" -#: ../../mod/settings.php:1086 +#: ../../mod/settings.php:1106 msgid "Expire posts:" msgstr "Beiträge verfallen lassen:" -#: ../../mod/settings.php:1087 +#: ../../mod/settings.php:1107 msgid "Expire personal notes:" msgstr "Persönliche Notizen verfallen lassen:" -#: ../../mod/settings.php:1088 +#: ../../mod/settings.php:1108 msgid "Expire starred posts:" msgstr "Markierte Beiträge verfallen lassen:" -#: ../../mod/settings.php:1089 +#: ../../mod/settings.php:1109 msgid "Expire photos:" msgstr "Fotos verfallen lassen:" -#: ../../mod/settings.php:1090 +#: ../../mod/settings.php:1110 msgid "Only expire posts by others:" msgstr "Nur Beiträge anderer verfallen:" -#: ../../mod/settings.php:1116 +#: ../../mod/settings.php:1136 msgid "Account Settings" msgstr "Kontoeinstellungen" -#: ../../mod/settings.php:1124 +#: ../../mod/settings.php:1144 msgid "Password Settings" msgstr "Passwort-Einstellungen" -#: ../../mod/settings.php:1125 +#: ../../mod/settings.php:1145 msgid "New Password:" msgstr "Neues Passwort:" -#: ../../mod/settings.php:1126 +#: ../../mod/settings.php:1146 msgid "Confirm:" msgstr "Bestätigen:" -#: ../../mod/settings.php:1126 +#: ../../mod/settings.php:1146 msgid "Leave password fields blank unless changing" msgstr "Lass die Passwort-Felder leer, außer Du willst das Passwort ändern" -#: ../../mod/settings.php:1127 +#: ../../mod/settings.php:1147 msgid "Current Password:" msgstr "Aktuelles Passwort:" -#: ../../mod/settings.php:1127 ../../mod/settings.php:1128 +#: ../../mod/settings.php:1147 ../../mod/settings.php:1148 msgid "Your current password to confirm the changes" msgstr "Dein aktuelles Passwort um die Änderungen zu bestätigen" -#: ../../mod/settings.php:1128 +#: ../../mod/settings.php:1148 msgid "Password:" msgstr "Passwort:" -#: ../../mod/settings.php:1132 +#: ../../mod/settings.php:1152 msgid "Basic Settings" msgstr "Grundeinstellungen" -#: ../../mod/settings.php:1134 +#: ../../mod/settings.php:1154 msgid "Email Address:" msgstr "E-Mail-Adresse:" -#: ../../mod/settings.php:1135 +#: ../../mod/settings.php:1155 msgid "Your Timezone:" msgstr "Deine Zeitzone:" -#: ../../mod/settings.php:1136 +#: ../../mod/settings.php:1156 msgid "Default Post Location:" msgstr "Standardstandort:" -#: ../../mod/settings.php:1137 +#: ../../mod/settings.php:1157 msgid "Use Browser Location:" msgstr "Standort des Browsers verwenden:" -#: ../../mod/settings.php:1140 +#: ../../mod/settings.php:1160 msgid "Security and Privacy Settings" msgstr "Sicherheits- und Privatsphäre-Einstellungen" -#: ../../mod/settings.php:1142 +#: ../../mod/settings.php:1162 msgid "Maximum Friend Requests/Day:" msgstr "Maximale Anzahl von Freundschaftsanfragen/Tag:" -#: ../../mod/settings.php:1142 ../../mod/settings.php:1172 +#: ../../mod/settings.php:1162 ../../mod/settings.php:1192 msgid "(to prevent spam abuse)" msgstr "(um SPAM zu vermeiden)" -#: ../../mod/settings.php:1143 +#: ../../mod/settings.php:1163 msgid "Default Post Permissions" msgstr "Standard-Zugriffsrechte für Beiträge" -#: ../../mod/settings.php:1144 +#: ../../mod/settings.php:1164 msgid "(click to open/close)" msgstr "(klicke zum öffnen/schließen)" -#: ../../mod/settings.php:1153 ../../mod/photos.php:1146 +#: ../../mod/settings.php:1173 ../../mod/photos.php:1146 #: ../../mod/photos.php:1519 msgid "Show to Groups" msgstr "Zeige den Gruppen" -#: ../../mod/settings.php:1154 ../../mod/photos.php:1147 +#: ../../mod/settings.php:1174 ../../mod/photos.php:1147 #: ../../mod/photos.php:1520 msgid "Show to Contacts" msgstr "Zeige den Kontakten" -#: ../../mod/settings.php:1155 +#: ../../mod/settings.php:1175 msgid "Default Private Post" msgstr "Privater Standardbeitrag" -#: ../../mod/settings.php:1156 +#: ../../mod/settings.php:1176 msgid "Default Public Post" msgstr "Öffentlicher Standardbeitrag" -#: ../../mod/settings.php:1160 +#: ../../mod/settings.php:1180 msgid "Default Permissions for New Posts" msgstr "Standardberechtigungen für neue Beiträge" -#: ../../mod/settings.php:1172 +#: ../../mod/settings.php:1192 msgid "Maximum private messages per day from unknown people:" msgstr "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:" -#: ../../mod/settings.php:1175 +#: ../../mod/settings.php:1195 msgid "Notification Settings" msgstr "Benachrichtigungseinstellungen" -#: ../../mod/settings.php:1176 +#: ../../mod/settings.php:1196 msgid "By default post a status message when:" msgstr "Standardmäßig eine Statusnachricht posten, wenn:" -#: ../../mod/settings.php:1177 +#: ../../mod/settings.php:1197 msgid "accepting a friend request" msgstr "– Du eine Kontaktanfrage akzeptierst" -#: ../../mod/settings.php:1178 +#: ../../mod/settings.php:1198 msgid "joining a forum/community" msgstr "– Du einem Forum/einer Gemeinschaftsseite beitrittst" -#: ../../mod/settings.php:1179 +#: ../../mod/settings.php:1199 msgid "making an interesting profile change" msgstr "– Du eine interessante Änderung an Deinem Profil durchführst" -#: ../../mod/settings.php:1180 +#: ../../mod/settings.php:1200 msgid "Send a notification email when:" msgstr "Benachrichtigungs-E-Mail senden wenn:" -#: ../../mod/settings.php:1181 +#: ../../mod/settings.php:1201 msgid "You receive an introduction" msgstr "– Du eine Kontaktanfrage erhältst" -#: ../../mod/settings.php:1182 +#: ../../mod/settings.php:1202 msgid "Your introductions are confirmed" msgstr "– eine Deiner Kontaktanfragen akzeptiert wurde" -#: ../../mod/settings.php:1183 +#: ../../mod/settings.php:1203 msgid "Someone writes on your profile wall" msgstr "– jemand etwas auf Deine Pinnwand schreibt" -#: ../../mod/settings.php:1184 +#: ../../mod/settings.php:1204 msgid "Someone writes a followup comment" msgstr "– jemand auch einen Kommentar verfasst" -#: ../../mod/settings.php:1185 +#: ../../mod/settings.php:1205 msgid "You receive a private message" msgstr "– Du eine private Nachricht erhältst" -#: ../../mod/settings.php:1186 +#: ../../mod/settings.php:1206 msgid "You receive a friend suggestion" msgstr "– Du eine Empfehlung erhältst" -#: ../../mod/settings.php:1187 +#: ../../mod/settings.php:1207 msgid "You are tagged in a post" msgstr "– Du in einem Beitrag erwähnt wirst" -#: ../../mod/settings.php:1188 +#: ../../mod/settings.php:1208 msgid "You are poked/prodded/etc. in a post" msgstr "– Du von jemandem angestupst oder sonstwie behandelt wirst" -#: ../../mod/settings.php:1190 +#: ../../mod/settings.php:1210 +msgid "Activate desktop notifications" +msgstr "Desktop Benachrichtigungen einschalten" + +#: ../../mod/settings.php:1211 +msgid "" +"Note: This is an experimental feature, as being not supported by each " +"browser" +msgstr "Hinweis: Dies ist ein experimentelles Feature und wird nicht von allen Browsern unterstützt." + +#: ../../mod/settings.php:1212 +msgid "You will now receive desktop notifications!" +msgstr "Du wirst nun Desktop Benachrichtigungen empfangen!" + +#: ../../mod/settings.php:1214 msgid "Text-only notification emails" msgstr "Benachrichtigungs E-Mail als Rein-Text." -#: ../../mod/settings.php:1192 +#: ../../mod/settings.php:1216 msgid "Send text only notification emails, without the html part" msgstr "Sende Benachrichtigungs E-Mail als Rein-Text - ohne HTML-Teil" -#: ../../mod/settings.php:1194 +#: ../../mod/settings.php:1218 msgid "Advanced Account/Page Type Settings" msgstr "Erweiterte Konto-/Seitentyp-Einstellungen" -#: ../../mod/settings.php:1195 +#: ../../mod/settings.php:1219 msgid "Change the behaviour of this account for special situations" msgstr "Verhalten dieses Kontos in bestimmten Situationen:" -#: ../../mod/settings.php:1198 +#: ../../mod/settings.php:1222 msgid "Relocate" msgstr "Umziehen" -#: ../../mod/settings.php:1199 +#: ../../mod/settings.php:1223 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:1200 +#: ../../mod/settings.php:1224 msgid "Resend relocate message to contacts" msgstr "Umzugsbenachrichtigung erneut an Kontakte senden" @@ -4180,337 +4182,337 @@ msgstr "Entfernte Privatsphäreneinstellungen nicht verfügbar." msgid "Visible to:" msgstr "Sichtbar für:" -#: ../../mod/contacts.php:112 +#: ../../mod/contacts.php:114 #, php-format msgid "%d contact edited." msgid_plural "%d contacts edited" msgstr[0] "%d Kontakt bearbeitet." msgstr[1] "%d Kontakte bearbeitet" -#: ../../mod/contacts.php:143 ../../mod/contacts.php:276 +#: ../../mod/contacts.php:145 ../../mod/contacts.php:340 msgid "Could not access contact record." msgstr "Konnte nicht auf die Kontaktdaten zugreifen." -#: ../../mod/contacts.php:157 +#: ../../mod/contacts.php:159 msgid "Could not locate selected profile." msgstr "Konnte das ausgewählte Profil nicht finden." -#: ../../mod/contacts.php:190 +#: ../../mod/contacts.php:192 msgid "Contact updated." msgstr "Kontakt aktualisiert." -#: ../../mod/contacts.php:192 ../../mod/dfrn_request.php:576 +#: ../../mod/contacts.php:194 ../../mod/dfrn_request.php:576 msgid "Failed to update contact record." msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen." -#: ../../mod/contacts.php:291 +#: ../../mod/contacts.php:361 msgid "Contact has been blocked" msgstr "Kontakt wurde blockiert" -#: ../../mod/contacts.php:291 +#: ../../mod/contacts.php:361 msgid "Contact has been unblocked" msgstr "Kontakt wurde wieder freigegeben" -#: ../../mod/contacts.php:302 +#: ../../mod/contacts.php:372 msgid "Contact has been ignored" msgstr "Kontakt wurde ignoriert" -#: ../../mod/contacts.php:302 +#: ../../mod/contacts.php:372 msgid "Contact has been unignored" msgstr "Kontakt wird nicht mehr ignoriert" -#: ../../mod/contacts.php:314 +#: ../../mod/contacts.php:384 msgid "Contact has been archived" msgstr "Kontakt wurde archiviert" -#: ../../mod/contacts.php:314 +#: ../../mod/contacts.php:384 msgid "Contact has been unarchived" msgstr "Kontakt wurde aus dem Archiv geholt" -#: ../../mod/contacts.php:339 ../../mod/contacts.php:727 +#: ../../mod/contacts.php:409 ../../mod/contacts.php:797 msgid "Do you really want to delete this contact?" msgstr "Möchtest Du wirklich diesen Kontakt löschen?" -#: ../../mod/contacts.php:356 +#: ../../mod/contacts.php:426 msgid "Contact has been removed." msgstr "Kontakt wurde entfernt." -#: ../../mod/contacts.php:394 +#: ../../mod/contacts.php:464 #, php-format msgid "You are mutual friends with %s" msgstr "Du hast mit %s eine beidseitige Freundschaft" -#: ../../mod/contacts.php:398 +#: ../../mod/contacts.php:468 #, php-format msgid "You are sharing with %s" msgstr "Du teilst mit %s" -#: ../../mod/contacts.php:403 +#: ../../mod/contacts.php:473 #, php-format msgid "%s is sharing with you" msgstr "%s teilt mit Dir" -#: ../../mod/contacts.php:423 +#: ../../mod/contacts.php:493 msgid "Private communications are not available for this contact." msgstr "Private Kommunikation ist für diesen Kontakt nicht verfügbar." -#: ../../mod/contacts.php:426 ../../mod/admin.php:569 +#: ../../mod/contacts.php:496 ../../mod/admin.php:571 msgid "Never" msgstr "Niemals" -#: ../../mod/contacts.php:430 +#: ../../mod/contacts.php:500 msgid "(Update was successful)" msgstr "(Aktualisierung war erfolgreich)" -#: ../../mod/contacts.php:430 +#: ../../mod/contacts.php:500 msgid "(Update was not successful)" msgstr "(Aktualisierung war nicht erfolgreich)" -#: ../../mod/contacts.php:432 +#: ../../mod/contacts.php:502 msgid "Suggest friends" msgstr "Kontakte vorschlagen" -#: ../../mod/contacts.php:436 +#: ../../mod/contacts.php:506 #, php-format msgid "Network type: %s" msgstr "Netzwerktyp: %s" -#: ../../mod/contacts.php:444 +#: ../../mod/contacts.php:514 msgid "View all contacts" msgstr "Alle Kontakte anzeigen" -#: ../../mod/contacts.php:449 ../../mod/contacts.php:518 -#: ../../mod/contacts.php:730 ../../mod/admin.php:1009 +#: ../../mod/contacts.php:519 ../../mod/contacts.php:588 +#: ../../mod/contacts.php:800 ../../mod/admin.php:1012 msgid "Unblock" msgstr "Entsperren" -#: ../../mod/contacts.php:449 ../../mod/contacts.php:518 -#: ../../mod/contacts.php:730 ../../mod/admin.php:1008 +#: ../../mod/contacts.php:519 ../../mod/contacts.php:588 +#: ../../mod/contacts.php:800 ../../mod/admin.php:1011 msgid "Block" msgstr "Sperren" -#: ../../mod/contacts.php:452 +#: ../../mod/contacts.php:522 msgid "Toggle Blocked status" msgstr "Geblockt-Status ein-/ausschalten" -#: ../../mod/contacts.php:455 ../../mod/contacts.php:519 -#: ../../mod/contacts.php:731 +#: ../../mod/contacts.php:525 ../../mod/contacts.php:589 +#: ../../mod/contacts.php:801 msgid "Unignore" msgstr "Ignorieren aufheben" -#: ../../mod/contacts.php:458 +#: ../../mod/contacts.php:528 msgid "Toggle Ignored status" msgstr "Ignoriert-Status ein-/ausschalten" -#: ../../mod/contacts.php:462 ../../mod/contacts.php:732 +#: ../../mod/contacts.php:532 ../../mod/contacts.php:802 msgid "Unarchive" msgstr "Aus Archiv zurückholen" -#: ../../mod/contacts.php:462 ../../mod/contacts.php:732 +#: ../../mod/contacts.php:532 ../../mod/contacts.php:802 msgid "Archive" msgstr "Archivieren" -#: ../../mod/contacts.php:465 +#: ../../mod/contacts.php:535 msgid "Toggle Archive status" msgstr "Archiviert-Status ein-/ausschalten" -#: ../../mod/contacts.php:468 +#: ../../mod/contacts.php:538 msgid "Repair" msgstr "Reparieren" -#: ../../mod/contacts.php:471 +#: ../../mod/contacts.php:541 msgid "Advanced Contact Settings" msgstr "Fortgeschrittene Kontakteinstellungen" -#: ../../mod/contacts.php:477 +#: ../../mod/contacts.php:547 msgid "Communications lost with this contact!" msgstr "Verbindungen mit diesem Kontakt verloren!" -#: ../../mod/contacts.php:480 +#: ../../mod/contacts.php:550 msgid "Fetch further information for feeds" msgstr "Weitere Informationen zu Feeds holen" -#: ../../mod/contacts.php:481 +#: ../../mod/contacts.php:551 msgid "Disabled" msgstr "Deaktiviert" -#: ../../mod/contacts.php:481 +#: ../../mod/contacts.php:551 msgid "Fetch information" msgstr "Beziehe Information" -#: ../../mod/contacts.php:481 +#: ../../mod/contacts.php:551 msgid "Fetch information and keywords" msgstr "Beziehe Information und Schlüsselworte" -#: ../../mod/contacts.php:490 +#: ../../mod/contacts.php:560 msgid "Contact Editor" msgstr "Kontakt Editor" -#: ../../mod/contacts.php:493 +#: ../../mod/contacts.php:563 msgid "Profile Visibility" msgstr "Profil-Sichtbarkeit" -#: ../../mod/contacts.php:494 +#: ../../mod/contacts.php:564 #, 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:495 +#: ../../mod/contacts.php:565 msgid "Contact Information / Notes" msgstr "Kontakt Informationen / Notizen" -#: ../../mod/contacts.php:496 +#: ../../mod/contacts.php:566 msgid "Edit contact notes" msgstr "Notizen zum Kontakt bearbeiten" -#: ../../mod/contacts.php:501 ../../mod/contacts.php:695 +#: ../../mod/contacts.php:571 ../../mod/contacts.php:765 #: ../../mod/nogroup.php:40 ../../mod/viewcontacts.php:64 #, php-format msgid "Visit %s's profile [%s]" msgstr "Besuche %ss Profil [%s]" -#: ../../mod/contacts.php:502 +#: ../../mod/contacts.php:572 msgid "Block/Unblock contact" msgstr "Kontakt blockieren/freischalten" -#: ../../mod/contacts.php:503 +#: ../../mod/contacts.php:573 msgid "Ignore contact" msgstr "Ignoriere den Kontakt" -#: ../../mod/contacts.php:504 +#: ../../mod/contacts.php:574 msgid "Repair URL settings" msgstr "URL Einstellungen reparieren" -#: ../../mod/contacts.php:505 +#: ../../mod/contacts.php:575 msgid "View conversations" msgstr "Unterhaltungen anzeigen" -#: ../../mod/contacts.php:507 +#: ../../mod/contacts.php:577 msgid "Delete contact" msgstr "Lösche den Kontakt" -#: ../../mod/contacts.php:511 +#: ../../mod/contacts.php:581 msgid "Last update:" msgstr "Letzte Aktualisierung: " -#: ../../mod/contacts.php:513 +#: ../../mod/contacts.php:583 msgid "Update public posts" msgstr "Öffentliche Beiträge aktualisieren" -#: ../../mod/contacts.php:515 ../../mod/admin.php:1503 +#: ../../mod/contacts.php:585 ../../mod/admin.php:1506 msgid "Update now" msgstr "Jetzt aktualisieren" -#: ../../mod/contacts.php:522 +#: ../../mod/contacts.php:592 msgid "Currently blocked" msgstr "Derzeit geblockt" -#: ../../mod/contacts.php:523 +#: ../../mod/contacts.php:593 msgid "Currently ignored" msgstr "Derzeit ignoriert" -#: ../../mod/contacts.php:524 +#: ../../mod/contacts.php:594 msgid "Currently archived" msgstr "Momentan archiviert" -#: ../../mod/contacts.php:525 +#: ../../mod/contacts.php:595 msgid "" "Replies/likes to your public posts may still be visible" msgstr "Antworten/Likes auf deine öffentlichen Beiträge könnten weiterhin sichtbar sein" -#: ../../mod/contacts.php:526 +#: ../../mod/contacts.php:596 msgid "Notification for new posts" msgstr "Benachrichtigung bei neuen Beiträgen" -#: ../../mod/contacts.php:526 +#: ../../mod/contacts.php:596 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:529 +#: ../../mod/contacts.php:599 msgid "Blacklisted keywords" msgstr "Blacklistete Schlüsselworte " -#: ../../mod/contacts.php:529 +#: ../../mod/contacts.php:599 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:580 +#: ../../mod/contacts.php:650 msgid "Suggestions" msgstr "Kontaktvorschläge" -#: ../../mod/contacts.php:583 +#: ../../mod/contacts.php:653 msgid "Suggest potential friends" msgstr "Freunde vorschlagen" -#: ../../mod/contacts.php:589 +#: ../../mod/contacts.php:659 msgid "Show all contacts" msgstr "Alle Kontakte anzeigen" -#: ../../mod/contacts.php:592 +#: ../../mod/contacts.php:662 msgid "Unblocked" msgstr "Ungeblockt" -#: ../../mod/contacts.php:595 +#: ../../mod/contacts.php:665 msgid "Only show unblocked contacts" msgstr "Nur nicht-blockierte Kontakte anzeigen" -#: ../../mod/contacts.php:599 +#: ../../mod/contacts.php:669 msgid "Blocked" msgstr "Geblockt" -#: ../../mod/contacts.php:602 +#: ../../mod/contacts.php:672 msgid "Only show blocked contacts" msgstr "Nur blockierte Kontakte anzeigen" -#: ../../mod/contacts.php:606 +#: ../../mod/contacts.php:676 msgid "Ignored" msgstr "Ignoriert" -#: ../../mod/contacts.php:609 +#: ../../mod/contacts.php:679 msgid "Only show ignored contacts" msgstr "Nur ignorierte Kontakte anzeigen" -#: ../../mod/contacts.php:613 +#: ../../mod/contacts.php:683 msgid "Archived" msgstr "Archiviert" -#: ../../mod/contacts.php:616 +#: ../../mod/contacts.php:686 msgid "Only show archived contacts" msgstr "Nur archivierte Kontakte anzeigen" -#: ../../mod/contacts.php:620 +#: ../../mod/contacts.php:690 msgid "Hidden" msgstr "Verborgen" -#: ../../mod/contacts.php:623 +#: ../../mod/contacts.php:693 msgid "Only show hidden contacts" msgstr "Nur verborgene Kontakte anzeigen" -#: ../../mod/contacts.php:671 +#: ../../mod/contacts.php:741 msgid "Mutual Friendship" msgstr "Beidseitige Freundschaft" -#: ../../mod/contacts.php:675 +#: ../../mod/contacts.php:745 msgid "is a fan of yours" msgstr "ist ein Fan von dir" -#: ../../mod/contacts.php:679 +#: ../../mod/contacts.php:749 msgid "you are a fan of" msgstr "Du bist Fan von" -#: ../../mod/contacts.php:696 ../../mod/nogroup.php:41 +#: ../../mod/contacts.php:766 ../../mod/nogroup.php:41 msgid "Edit contact" msgstr "Kontakt bearbeiten" -#: ../../mod/contacts.php:722 +#: ../../mod/contacts.php:792 msgid "Search your contacts" msgstr "Suche in deinen Kontakten" -#: ../../mod/contacts.php:723 ../../mod/directory.php:61 +#: ../../mod/contacts.php:793 ../../mod/directory.php:61 msgid "Finding: " msgstr "Funde: " @@ -4612,7 +4614,7 @@ msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung mögli msgid "Your invitation ID: " msgstr "ID Deiner Einladung: " -#: ../../mod/register.php:255 ../../mod/admin.php:621 +#: ../../mod/register.php:255 ../../mod/admin.php:623 msgid "Registration" msgstr "Registrierung" @@ -4651,7 +4653,7 @@ msgstr "Beitrag erfolgreich veröffentlicht." msgid "System down for maintenance" msgstr "System zur Wartung abgeschaltet" -#: ../../mod/profile.php:155 ../../mod/display.php:332 +#: ../../mod/profile.php:155 ../../mod/display.php:334 msgid "Access to this profile has been restricted." msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt." @@ -4659,10 +4661,10 @@ msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt." msgid "Tips for New Members" msgstr "Tipps für neue Nutzer" -#: ../../mod/videos.php:115 ../../mod/dfrn_request.php:762 +#: ../../mod/videos.php:115 ../../mod/dfrn_request.php:777 #: ../../mod/viewcontacts.php:19 ../../mod/photos.php:920 #: ../../mod/search.php:89 ../../mod/community.php:18 -#: ../../mod/display.php:212 ../../mod/directory.php:33 +#: ../../mod/display.php:214 ../../mod/directory.php:33 msgid "Public access denied." msgstr "Öffentlicher Zugriff verweigert." @@ -4712,7 +4714,7 @@ msgstr "Beitrag bearbeiten" msgid "People Search" msgstr "Personensuche" -#: ../../mod/dirfind.php:60 ../../mod/match.php:65 +#: ../../mod/dirfind.php:60 ../../mod/match.php:71 msgid "No matches" msgstr "Keine Übereinstimmungen" @@ -4820,72 +4822,76 @@ msgid "" "this profile." msgstr "Momentan bist Du mit einer anderen Identität angemeldet. Bitte melde Dich mit diesem Profil an." -#: ../../mod/dfrn_request.php:671 +#: ../../mod/dfrn_request.php:674 ../../mod/dfrn_request.php:691 +msgid "Confirm" +msgstr "Bestätigen" + +#: ../../mod/dfrn_request.php:686 msgid "Hide this contact" msgstr "Verberge diesen Kontakt" -#: ../../mod/dfrn_request.php:674 +#: ../../mod/dfrn_request.php:689 #, php-format msgid "Welcome home %s." msgstr "Willkommen zurück %s." -#: ../../mod/dfrn_request.php:675 +#: ../../mod/dfrn_request.php:690 #, php-format msgid "Please confirm your introduction/connection request to %s." msgstr "Bitte bestätige Deine Kontaktanfrage bei %s." -#: ../../mod/dfrn_request.php:804 +#: ../../mod/dfrn_request.php:819 msgid "" "Please enter your 'Identity Address' from one of the following supported " "communications networks:" msgstr "Bitte gib die Adresse Deines Profils in einem der unterstützten sozialen Netzwerke an:" -#: ../../mod/dfrn_request.php:824 +#: ../../mod/dfrn_request.php:839 msgid "" "If you are not yet a member of the free social web, follow this link to find a public" " Friendica site and join us today." msgstr "Wenn Du noch kein Mitglied dieses freien sozialen Netzwerks bist, folge diesem Link um einen öffentlichen Friendica-Server zu finden und beizutreten." -#: ../../mod/dfrn_request.php:827 +#: ../../mod/dfrn_request.php:842 msgid "Friend/Connection Request" msgstr "Freundschafts-/Kontaktanfrage" -#: ../../mod/dfrn_request.php:828 +#: ../../mod/dfrn_request.php:843 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:829 +#: ../../mod/dfrn_request.php:844 ../../mod/follow.php:53 msgid "Please answer the following:" msgstr "Bitte beantworte folgendes:" -#: ../../mod/dfrn_request.php:830 +#: ../../mod/dfrn_request.php:845 ../../mod/follow.php:54 #, php-format msgid "Does %s know you?" msgstr "Kennt %s Dich?" -#: ../../mod/dfrn_request.php:834 +#: ../../mod/dfrn_request.php:849 ../../mod/follow.php:55 msgid "Add a personal note:" msgstr "Eine persönliche Notiz beifügen:" -#: ../../mod/dfrn_request.php:837 +#: ../../mod/dfrn_request.php:852 msgid "StatusNet/Federated Social Web" msgstr "StatusNet/Federated Social Web" -#: ../../mod/dfrn_request.php:839 +#: ../../mod/dfrn_request.php:854 #, 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:840 +#: ../../mod/dfrn_request.php:855 ../../mod/follow.php:61 msgid "Your Identity Address:" msgstr "Adresse Deines Profils:" -#: ../../mod/dfrn_request.php:843 +#: ../../mod/dfrn_request.php:858 ../../mod/follow.php:64 msgid "Submit Request" msgstr "Anfrage abschicken" @@ -4947,7 +4953,7 @@ msgstr "Kontakte vorschlagen" msgid "Suggest a friend for %s" msgstr "Schlage %s einen Kontakt vor" -#: ../../mod/share.php:44 +#: ../../mod/share.php:38 msgid "link" msgstr "Link" @@ -4959,15 +4965,15 @@ msgstr "Keine Kontakte." msgid "Theme settings updated." msgstr "Themeneinstellungen aktualisiert." -#: ../../mod/admin.php:104 ../../mod/admin.php:619 +#: ../../mod/admin.php:104 ../../mod/admin.php:621 msgid "Site" msgstr "Seite" -#: ../../mod/admin.php:105 ../../mod/admin.php:998 ../../mod/admin.php:1013 +#: ../../mod/admin.php:105 ../../mod/admin.php:1001 ../../mod/admin.php:1016 msgid "Users" msgstr "Nutzer" -#: ../../mod/admin.php:107 ../../mod/admin.php:1323 ../../mod/admin.php:1357 +#: ../../mod/admin.php:107 ../../mod/admin.php:1326 ../../mod/admin.php:1360 msgid "Themes" msgstr "Themen" @@ -4975,7 +4981,7 @@ msgstr "Themen" msgid "DB updates" msgstr "DB Updates" -#: ../../mod/admin.php:123 ../../mod/admin.php:132 ../../mod/admin.php:1444 +#: ../../mod/admin.php:123 ../../mod/admin.php:132 ../../mod/admin.php:1447 msgid "Logs" msgstr "Protokolle" @@ -4999,19 +5005,19 @@ msgstr "Diagnose" msgid "User registrations waiting for confirmation" msgstr "Nutzeranmeldungen die auf Bestätigung warten" -#: ../../mod/admin.php:193 ../../mod/admin.php:952 +#: ../../mod/admin.php:193 ../../mod/admin.php:955 msgid "Normal Account" msgstr "Normales Konto" -#: ../../mod/admin.php:194 ../../mod/admin.php:953 +#: ../../mod/admin.php:194 ../../mod/admin.php:956 msgid "Soapbox Account" msgstr "Marktschreier-Konto" -#: ../../mod/admin.php:195 ../../mod/admin.php:954 +#: ../../mod/admin.php:195 ../../mod/admin.php:957 msgid "Community/Celebrity Account" msgstr "Forum/Promi-Konto" -#: ../../mod/admin.php:196 ../../mod/admin.php:955 +#: ../../mod/admin.php:196 ../../mod/admin.php:958 msgid "Automatic Friend Account" msgstr "Automatisches Freundekonto" @@ -5027,9 +5033,9 @@ msgstr "Privates Forum" msgid "Message queues" msgstr "Nachrichten-Warteschlangen" -#: ../../mod/admin.php:222 ../../mod/admin.php:618 ../../mod/admin.php:997 -#: ../../mod/admin.php:1101 ../../mod/admin.php:1154 ../../mod/admin.php:1322 -#: ../../mod/admin.php:1356 ../../mod/admin.php:1443 +#: ../../mod/admin.php:222 ../../mod/admin.php:620 ../../mod/admin.php:1000 +#: ../../mod/admin.php:1104 ../../mod/admin.php:1157 ../../mod/admin.php:1325 +#: ../../mod/admin.php:1359 ../../mod/admin.php:1446 msgid "Administration" msgstr "Administration" @@ -5057,331 +5063,331 @@ msgstr "Aktive Plugins" msgid "Can not parse base url. Must have at least ://" msgstr "Die Basis-URL konnte nicht analysiert werden. Sie muss mindestens aus :// bestehen" -#: ../../mod/admin.php:516 +#: ../../mod/admin.php:518 msgid "Site settings updated." msgstr "Seiteneinstellungen aktualisiert." -#: ../../mod/admin.php:562 +#: ../../mod/admin.php:564 msgid "No community page" msgstr "Keine Gemeinschaftsseite" -#: ../../mod/admin.php:563 +#: ../../mod/admin.php:565 msgid "Public postings from users of this site" msgstr "Öffentliche Beiträge von Nutzer_innen dieser Seite" -#: ../../mod/admin.php:564 +#: ../../mod/admin.php:566 msgid "Global community page" msgstr "Globale Gemeinschaftsseite" -#: ../../mod/admin.php:570 +#: ../../mod/admin.php:572 msgid "At post arrival" msgstr "Beim Empfang von Nachrichten" -#: ../../mod/admin.php:579 +#: ../../mod/admin.php:581 msgid "Multi user instance" msgstr "Mehrbenutzer Instanz" -#: ../../mod/admin.php:602 +#: ../../mod/admin.php:604 msgid "Closed" msgstr "Geschlossen" -#: ../../mod/admin.php:603 +#: ../../mod/admin.php:605 msgid "Requires approval" msgstr "Bedarf der Zustimmung" -#: ../../mod/admin.php:604 +#: ../../mod/admin.php:606 msgid "Open" msgstr "Offen" -#: ../../mod/admin.php:608 +#: ../../mod/admin.php:610 msgid "No SSL policy, links will track page SSL state" msgstr "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten" -#: ../../mod/admin.php:609 +#: ../../mod/admin.php:611 msgid "Force all links to use SSL" msgstr "SSL für alle Links erzwingen" -#: ../../mod/admin.php:610 +#: ../../mod/admin.php:612 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:622 +#: ../../mod/admin.php:624 msgid "File upload" msgstr "Datei hochladen" -#: ../../mod/admin.php:623 +#: ../../mod/admin.php:625 msgid "Policies" msgstr "Regeln" -#: ../../mod/admin.php:624 +#: ../../mod/admin.php:626 msgid "Advanced" msgstr "Erweitert" -#: ../../mod/admin.php:625 +#: ../../mod/admin.php:627 msgid "Performance" msgstr "Performance" -#: ../../mod/admin.php:626 +#: ../../mod/admin.php:628 msgid "" "Relocate - WARNING: advanced function. Could make this server unreachable." msgstr "Umsiedeln - WARNUNG: Könnte diesen Server unerreichbar machen." -#: ../../mod/admin.php:629 +#: ../../mod/admin.php:631 msgid "Site name" msgstr "Seitenname" -#: ../../mod/admin.php:630 +#: ../../mod/admin.php:632 msgid "Host name" msgstr "Host Name" -#: ../../mod/admin.php:631 +#: ../../mod/admin.php:633 msgid "Sender Email" msgstr "Absender für Emails" -#: ../../mod/admin.php:632 +#: ../../mod/admin.php:634 msgid "Banner/Logo" msgstr "Banner/Logo" -#: ../../mod/admin.php:633 +#: ../../mod/admin.php:635 msgid "Shortcut icon" msgstr "Shortcut Icon" -#: ../../mod/admin.php:634 +#: ../../mod/admin.php:636 msgid "Touch icon" msgstr "Touch Icon" -#: ../../mod/admin.php:635 +#: ../../mod/admin.php:637 msgid "Additional Info" msgstr "Zusätzliche Informationen" -#: ../../mod/admin.php:635 +#: ../../mod/admin.php:637 msgid "" "For public servers: you can add additional information here that will be " "listed at dir.friendica.com/siteinfo." msgstr "Für öffentliche Server kannst Du hier zusätzliche Informationen angeben, die dann auf Dir.friendica.com/siteinfo angezeigt werden." -#: ../../mod/admin.php:636 +#: ../../mod/admin.php:638 msgid "System language" msgstr "Systemsprache" -#: ../../mod/admin.php:637 +#: ../../mod/admin.php:639 msgid "System theme" msgstr "Systemweites Theme" -#: ../../mod/admin.php:637 +#: ../../mod/admin.php:639 msgid "" "Default system theme - may be over-ridden by user profiles - change theme settings" msgstr "Vorgabe für das System-Theme - kann von Benutzerprofilen überschrieben werden - Theme-Einstellungen ändern" -#: ../../mod/admin.php:638 +#: ../../mod/admin.php:640 msgid "Mobile system theme" msgstr "Systemweites mobiles Theme" -#: ../../mod/admin.php:638 +#: ../../mod/admin.php:640 msgid "Theme for mobile devices" msgstr "Thema für mobile Geräte" -#: ../../mod/admin.php:639 +#: ../../mod/admin.php:641 msgid "SSL link policy" msgstr "Regeln für SSL Links" -#: ../../mod/admin.php:639 +#: ../../mod/admin.php:641 msgid "Determines whether generated links should be forced to use SSL" msgstr "Bestimmt, ob generierte Links SSL verwenden müssen" -#: ../../mod/admin.php:640 +#: ../../mod/admin.php:642 msgid "Force SSL" msgstr "Erzwinge SSL" -#: ../../mod/admin.php:640 +#: ../../mod/admin.php:642 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:641 +#: ../../mod/admin.php:643 msgid "Old style 'Share'" msgstr "Altes \"Teilen\" Element" -#: ../../mod/admin.php:641 +#: ../../mod/admin.php:643 msgid "Deactivates the bbcode element 'share' for repeating items." msgstr "Deaktiviert das BBCode Element \"share\" beim Wiederholen von Beiträgen." -#: ../../mod/admin.php:642 +#: ../../mod/admin.php:644 msgid "Hide help entry from navigation menu" msgstr "Verberge den Menüeintrag für die Hilfe im Navigationsmenü" -#: ../../mod/admin.php:642 +#: ../../mod/admin.php:644 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:643 +#: ../../mod/admin.php:645 msgid "Single user instance" msgstr "Ein-Nutzer Instanz" -#: ../../mod/admin.php:643 +#: ../../mod/admin.php:645 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:644 +#: ../../mod/admin.php:646 msgid "Maximum image size" msgstr "Maximale Bildgröße" -#: ../../mod/admin.php:644 +#: ../../mod/admin.php:646 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:645 +#: ../../mod/admin.php:647 msgid "Maximum image length" msgstr "Maximale Bildlänge" -#: ../../mod/admin.php:645 +#: ../../mod/admin.php:647 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:646 +#: ../../mod/admin.php:648 msgid "JPEG image quality" msgstr "Qualität des JPEG Bildes" -#: ../../mod/admin.php:646 +#: ../../mod/admin.php:648 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:648 +#: ../../mod/admin.php:650 msgid "Register policy" msgstr "Registrierungsmethode" -#: ../../mod/admin.php:649 +#: ../../mod/admin.php:651 msgid "Maximum Daily Registrations" msgstr "Maximum täglicher Registrierungen" -#: ../../mod/admin.php:649 +#: ../../mod/admin.php:651 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:650 +#: ../../mod/admin.php:652 msgid "Register text" msgstr "Registrierungstext" -#: ../../mod/admin.php:650 +#: ../../mod/admin.php:652 msgid "Will be displayed prominently on the registration page." msgstr "Wird gut sichtbar auf der Registrierungsseite angezeigt." -#: ../../mod/admin.php:651 +#: ../../mod/admin.php:653 msgid "Accounts abandoned after x days" msgstr "Nutzerkonten gelten nach x Tagen als unbenutzt" -#: ../../mod/admin.php:651 +#: ../../mod/admin.php:653 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:652 +#: ../../mod/admin.php:654 msgid "Allowed friend domains" msgstr "Erlaubte Domains für Kontakte" -#: ../../mod/admin.php:652 +#: ../../mod/admin.php:654 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben." -#: ../../mod/admin.php:653 +#: ../../mod/admin.php:655 msgid "Allowed email domains" msgstr "Erlaubte Domains für E-Mails" -#: ../../mod/admin.php:653 +#: ../../mod/admin.php:655 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:654 +#: ../../mod/admin.php:656 msgid "Block public" msgstr "Öffentlichen Zugriff blockieren" -#: ../../mod/admin.php:654 +#: ../../mod/admin.php:656 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:655 +#: ../../mod/admin.php:657 msgid "Force publish" msgstr "Erzwinge Veröffentlichung" -#: ../../mod/admin.php:655 +#: ../../mod/admin.php:657 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:656 +#: ../../mod/admin.php:658 msgid "Global directory update URL" msgstr "URL für Updates beim weltweiten Verzeichnis" -#: ../../mod/admin.php:656 +#: ../../mod/admin.php:658 msgid "" "URL to update the global directory. If this is not set, the global directory" " is completely unavailable to the application." msgstr "URL für Update des globalen Verzeichnisses. Wenn nichts eingetragen ist, bleibt das globale Verzeichnis unerreichbar." -#: ../../mod/admin.php:657 +#: ../../mod/admin.php:659 msgid "Allow threaded items" msgstr "Erlaube Threads in Diskussionen" -#: ../../mod/admin.php:657 +#: ../../mod/admin.php:659 msgid "Allow infinite level threading for items on this site." msgstr "Erlaube ein unendliches Level für Threads auf dieser Seite." -#: ../../mod/admin.php:658 +#: ../../mod/admin.php:660 msgid "Private posts by default for new users" msgstr "Private Beiträge als Standard für neue Nutzer" -#: ../../mod/admin.php:658 +#: ../../mod/admin.php:660 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:659 +#: ../../mod/admin.php:661 msgid "Don't include post content in email notifications" msgstr "Inhalte von Beiträgen nicht in E-Mail-Benachrichtigungen versenden" -#: ../../mod/admin.php:659 +#: ../../mod/admin.php:661 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:660 +#: ../../mod/admin.php:662 msgid "Disallow public access to addons listed in the apps menu." msgstr "Öffentlichen Zugriff auf Addons im Apps Menü verbieten." -#: ../../mod/admin.php:660 +#: ../../mod/admin.php:662 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:661 +#: ../../mod/admin.php:663 msgid "Don't embed private images in posts" msgstr "Private Bilder nicht in Beiträgen einbetten." -#: ../../mod/admin.php:661 +#: ../../mod/admin.php:663 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 " @@ -5389,319 +5395,327 @@ 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:662 +#: ../../mod/admin.php:664 msgid "Allow Users to set remote_self" msgstr "Nutzern erlauben das remote_self Flag zu setzen" -#: ../../mod/admin.php:662 +#: ../../mod/admin.php:664 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:663 +#: ../../mod/admin.php:665 msgid "Block multiple registrations" msgstr "Unterbinde Mehrfachregistrierung" -#: ../../mod/admin.php:663 +#: ../../mod/admin.php:665 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:664 +#: ../../mod/admin.php:666 msgid "OpenID support" msgstr "OpenID Unterstützung" -#: ../../mod/admin.php:664 +#: ../../mod/admin.php:666 msgid "OpenID support for registration and logins." msgstr "OpenID-Unterstützung für Registrierung und Login." -#: ../../mod/admin.php:665 +#: ../../mod/admin.php:667 msgid "Fullname check" msgstr "Namen auf Vollständigkeit überprüfen" -#: ../../mod/admin.php:665 +#: ../../mod/admin.php:667 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:666 +#: ../../mod/admin.php:668 msgid "UTF-8 Regular expressions" msgstr "UTF-8 Reguläre Ausdrücke" -#: ../../mod/admin.php:666 +#: ../../mod/admin.php:668 msgid "Use PHP UTF8 regular expressions" msgstr "PHP UTF8 Ausdrücke verwenden" -#: ../../mod/admin.php:667 +#: ../../mod/admin.php:669 msgid "Community Page Style" msgstr "Art der Gemeinschaftsseite" -#: ../../mod/admin.php:667 +#: ../../mod/admin.php:669 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:668 +#: ../../mod/admin.php:670 msgid "Posts per user on community page" msgstr "Anzahl der Beiträge pro Benutzer auf der Gemeinschaftsseite" -#: ../../mod/admin.php:668 +#: ../../mod/admin.php:670 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:669 +#: ../../mod/admin.php:671 msgid "Enable OStatus support" msgstr "OStatus Unterstützung aktivieren" -#: ../../mod/admin.php:669 +#: ../../mod/admin.php:671 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:670 +#: ../../mod/admin.php:672 msgid "OStatus conversation completion interval" msgstr "Intervall zum Vervollständigen von OStatus Unterhaltungen" -#: ../../mod/admin.php:670 +#: ../../mod/admin.php:672 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:671 +#: ../../mod/admin.php:673 msgid "Enable Diaspora support" msgstr "Diaspora-Support aktivieren" -#: ../../mod/admin.php:671 +#: ../../mod/admin.php:673 msgid "Provide built-in Diaspora network compatibility." msgstr "Verwende die eingebaute Diaspora-Verknüpfung." -#: ../../mod/admin.php:672 +#: ../../mod/admin.php:674 msgid "Only allow Friendica contacts" msgstr "Nur Friendica-Kontakte erlauben" -#: ../../mod/admin.php:672 +#: ../../mod/admin.php:674 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:673 +#: ../../mod/admin.php:675 msgid "Verify SSL" msgstr "SSL Überprüfen" -#: ../../mod/admin.php:673 +#: ../../mod/admin.php:675 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:674 +#: ../../mod/admin.php:676 msgid "Proxy user" msgstr "Proxy Nutzer" -#: ../../mod/admin.php:675 +#: ../../mod/admin.php:677 msgid "Proxy URL" msgstr "Proxy URL" -#: ../../mod/admin.php:676 +#: ../../mod/admin.php:678 msgid "Network timeout" msgstr "Netzwerk Wartezeit" -#: ../../mod/admin.php:676 +#: ../../mod/admin.php:678 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:677 +#: ../../mod/admin.php:679 msgid "Delivery interval" msgstr "Zustellungsintervall" -#: ../../mod/admin.php:677 +#: ../../mod/admin.php:679 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:678 +#: ../../mod/admin.php:680 msgid "Poll interval" msgstr "Abfrageintervall" -#: ../../mod/admin.php:678 +#: ../../mod/admin.php:680 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:679 +#: ../../mod/admin.php:681 msgid "Maximum Load Average" msgstr "Maximum Load Average" -#: ../../mod/admin.php:679 +#: ../../mod/admin.php:681 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:681 +#: ../../mod/admin.php:682 +msgid "Maximum Load Average (Frontend)" +msgstr "Maximum Load Average (Frontend)" + +#: ../../mod/admin.php:682 +msgid "Maximum system load before the frontend quits service - default 50." +msgstr "Maximale Systemlast bevor Vordergrundprozesse pausiert werden - Standard 50." + +#: ../../mod/admin.php:684 msgid "Use MySQL full text engine" msgstr "Nutze MySQL full text engine" -#: ../../mod/admin.php:681 +#: ../../mod/admin.php:684 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:682 +#: ../../mod/admin.php:685 msgid "Suppress Language" msgstr "Sprachinformation unterdrücken" -#: ../../mod/admin.php:682 +#: ../../mod/admin.php:685 msgid "Suppress language information in meta information about a posting." msgstr "Verhindert das Erzeugen der Meta-Information zur Spracherkennung eines Beitrags." -#: ../../mod/admin.php:683 +#: ../../mod/admin.php:686 msgid "Suppress Tags" msgstr "Tags Unterdrücken" -#: ../../mod/admin.php:683 +#: ../../mod/admin.php:686 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:684 +#: ../../mod/admin.php:687 msgid "Path to item cache" msgstr "Pfad zum Eintrag Cache" -#: ../../mod/admin.php:685 +#: ../../mod/admin.php:688 msgid "Cache duration in seconds" msgstr "Cache-Dauer in Sekunden" -#: ../../mod/admin.php:685 +#: ../../mod/admin.php:688 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:686 +#: ../../mod/admin.php:689 msgid "Maximum numbers of comments per post" msgstr "Maximale Anzahl von Kommentaren pro Beitrag" -#: ../../mod/admin.php:686 +#: ../../mod/admin.php:689 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:687 +#: ../../mod/admin.php:690 msgid "Path for lock file" msgstr "Pfad für die Sperrdatei" -#: ../../mod/admin.php:688 +#: ../../mod/admin.php:691 msgid "Temp path" msgstr "Temp Pfad" -#: ../../mod/admin.php:689 +#: ../../mod/admin.php:692 msgid "Base path to installation" msgstr "Basis-Pfad zur Installation" -#: ../../mod/admin.php:690 +#: ../../mod/admin.php:693 msgid "Disable picture proxy" msgstr "Bilder Proxy deaktivieren" -#: ../../mod/admin.php:690 +#: ../../mod/admin.php:693 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 Leitung und Privatsphäre der Nutzer. Er sollte nicht auf Systemen verwendet werden, die nur über begrenzte Bandbreite verfügen." -#: ../../mod/admin.php:691 +#: ../../mod/admin.php:694 msgid "Enable old style pager" msgstr "Den Old-Style Pager aktiviren" -#: ../../mod/admin.php:691 +#: ../../mod/admin.php:694 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:692 +#: ../../mod/admin.php:695 msgid "Only search in tags" msgstr "Nur in Tags suchen" -#: ../../mod/admin.php:692 +#: ../../mod/admin.php:695 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:694 +#: ../../mod/admin.php:697 msgid "New base url" msgstr "Neue Basis-URL" -#: ../../mod/admin.php:711 +#: ../../mod/admin.php:714 msgid "Update has been marked successful" msgstr "Update wurde als erfolgreich markiert" -#: ../../mod/admin.php:719 +#: ../../mod/admin.php:722 #, php-format msgid "Database structure update %s was successfully applied." msgstr "Das Update %s der Struktur der Datenbank wurde erfolgreich angewandt." -#: ../../mod/admin.php:722 +#: ../../mod/admin.php:725 #, 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:734 +#: ../../mod/admin.php:737 #, php-format msgid "Executing %s failed with error: %s" msgstr "Die Ausführung von %s schlug fehl. Fehlermeldung: %s" -#: ../../mod/admin.php:737 +#: ../../mod/admin.php:740 #, php-format msgid "Update %s was successfully applied." msgstr "Update %s war erfolgreich." -#: ../../mod/admin.php:741 +#: ../../mod/admin.php:744 #, 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:743 +#: ../../mod/admin.php:746 #, 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:762 +#: ../../mod/admin.php:765 msgid "No failed updates." msgstr "Keine fehlgeschlagenen Updates." -#: ../../mod/admin.php:763 +#: ../../mod/admin.php:766 msgid "Check database structure" msgstr "Datenbank Struktur überprüfen" -#: ../../mod/admin.php:768 +#: ../../mod/admin.php:771 msgid "Failed Updates" msgstr "Fehlgeschlagene Updates" -#: ../../mod/admin.php:769 +#: ../../mod/admin.php:772 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:770 +#: ../../mod/admin.php:773 msgid "Mark success (if update was manually applied)" msgstr "Als erfolgreich markieren (falls das Update manuell installiert wurde)" -#: ../../mod/admin.php:771 +#: ../../mod/admin.php:774 msgid "Attempt to execute this update step automatically" msgstr "Versuchen, diesen Schritt automatisch auszuführen" -#: ../../mod/admin.php:803 +#: ../../mod/admin.php:806 #, php-format msgid "" "\n" @@ -5709,7 +5723,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:806 +#: ../../mod/admin.php:809 #, php-format msgid "" "\n" @@ -5739,208 +5753,208 @@ 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:850 +#: ../../mod/admin.php:853 #, 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:857 +#: ../../mod/admin.php:860 #, 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:896 +#: ../../mod/admin.php:899 #, php-format msgid "User '%s' deleted" msgstr "Nutzer '%s' gelöscht" -#: ../../mod/admin.php:904 +#: ../../mod/admin.php:907 #, php-format msgid "User '%s' unblocked" msgstr "Nutzer '%s' entsperrt" -#: ../../mod/admin.php:904 +#: ../../mod/admin.php:907 #, php-format msgid "User '%s' blocked" msgstr "Nutzer '%s' gesperrt" -#: ../../mod/admin.php:999 +#: ../../mod/admin.php:1002 msgid "Add User" msgstr "Nutzer hinzufügen" -#: ../../mod/admin.php:1000 +#: ../../mod/admin.php:1003 msgid "select all" msgstr "Alle auswählen" -#: ../../mod/admin.php:1001 +#: ../../mod/admin.php:1004 msgid "User registrations waiting for confirm" msgstr "Neuanmeldungen, die auf Deine Bestätigung warten" -#: ../../mod/admin.php:1002 +#: ../../mod/admin.php:1005 msgid "User waiting for permanent deletion" msgstr "Nutzer wartet auf permanente Löschung" -#: ../../mod/admin.php:1003 +#: ../../mod/admin.php:1006 msgid "Request date" msgstr "Anfragedatum" -#: ../../mod/admin.php:1004 +#: ../../mod/admin.php:1007 msgid "No registrations." msgstr "Keine Neuanmeldungen." -#: ../../mod/admin.php:1006 +#: ../../mod/admin.php:1009 msgid "Deny" msgstr "Verwehren" -#: ../../mod/admin.php:1010 +#: ../../mod/admin.php:1013 msgid "Site admin" msgstr "Seitenadministrator" -#: ../../mod/admin.php:1011 +#: ../../mod/admin.php:1014 msgid "Account expired" msgstr "Account ist abgelaufen" -#: ../../mod/admin.php:1014 +#: ../../mod/admin.php:1017 msgid "New User" msgstr "Neuer Nutzer" -#: ../../mod/admin.php:1015 ../../mod/admin.php:1016 +#: ../../mod/admin.php:1018 ../../mod/admin.php:1019 msgid "Register date" msgstr "Anmeldedatum" -#: ../../mod/admin.php:1015 ../../mod/admin.php:1016 +#: ../../mod/admin.php:1018 ../../mod/admin.php:1019 msgid "Last login" msgstr "Letzte Anmeldung" -#: ../../mod/admin.php:1015 ../../mod/admin.php:1016 +#: ../../mod/admin.php:1018 ../../mod/admin.php:1019 msgid "Last item" msgstr "Letzter Beitrag" -#: ../../mod/admin.php:1015 +#: ../../mod/admin.php:1018 msgid "Deleted since" msgstr "Gelöscht seit" -#: ../../mod/admin.php:1018 +#: ../../mod/admin.php:1021 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:1019 +#: ../../mod/admin.php:1022 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:1029 +#: ../../mod/admin.php:1032 msgid "Name of the new user." msgstr "Name des neuen Nutzers" -#: ../../mod/admin.php:1030 +#: ../../mod/admin.php:1033 msgid "Nickname" msgstr "Spitzname" -#: ../../mod/admin.php:1030 +#: ../../mod/admin.php:1033 msgid "Nickname of the new user." msgstr "Spitznamen für den neuen Nutzer" -#: ../../mod/admin.php:1031 +#: ../../mod/admin.php:1034 msgid "Email address of the new user." msgstr "Email Adresse des neuen Nutzers" -#: ../../mod/admin.php:1064 +#: ../../mod/admin.php:1067 #, php-format msgid "Plugin %s disabled." msgstr "Plugin %s deaktiviert." -#: ../../mod/admin.php:1068 +#: ../../mod/admin.php:1071 #, php-format msgid "Plugin %s enabled." msgstr "Plugin %s aktiviert." -#: ../../mod/admin.php:1078 ../../mod/admin.php:1294 +#: ../../mod/admin.php:1081 ../../mod/admin.php:1297 msgid "Disable" msgstr "Ausschalten" -#: ../../mod/admin.php:1080 ../../mod/admin.php:1296 +#: ../../mod/admin.php:1083 ../../mod/admin.php:1299 msgid "Enable" msgstr "Einschalten" -#: ../../mod/admin.php:1103 ../../mod/admin.php:1324 +#: ../../mod/admin.php:1106 ../../mod/admin.php:1327 msgid "Toggle" msgstr "Umschalten" -#: ../../mod/admin.php:1111 ../../mod/admin.php:1334 +#: ../../mod/admin.php:1114 ../../mod/admin.php:1337 msgid "Author: " msgstr "Autor:" -#: ../../mod/admin.php:1112 ../../mod/admin.php:1335 +#: ../../mod/admin.php:1115 ../../mod/admin.php:1338 msgid "Maintainer: " msgstr "Betreuer:" -#: ../../mod/admin.php:1254 +#: ../../mod/admin.php:1257 msgid "No themes found." msgstr "Keine Themen gefunden." -#: ../../mod/admin.php:1316 +#: ../../mod/admin.php:1319 msgid "Screenshot" msgstr "Bildschirmfoto" -#: ../../mod/admin.php:1362 +#: ../../mod/admin.php:1365 msgid "[Experimental]" msgstr "[Experimentell]" -#: ../../mod/admin.php:1363 +#: ../../mod/admin.php:1366 msgid "[Unsupported]" msgstr "[Nicht unterstützt]" -#: ../../mod/admin.php:1390 +#: ../../mod/admin.php:1393 msgid "Log settings updated." msgstr "Protokolleinstellungen aktualisiert." -#: ../../mod/admin.php:1446 +#: ../../mod/admin.php:1449 msgid "Clear" msgstr "löschen" -#: ../../mod/admin.php:1452 +#: ../../mod/admin.php:1455 msgid "Enable Debugging" msgstr "Protokoll führen" -#: ../../mod/admin.php:1453 +#: ../../mod/admin.php:1456 msgid "Log file" msgstr "Protokolldatei" -#: ../../mod/admin.php:1453 +#: ../../mod/admin.php:1456 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:1454 +#: ../../mod/admin.php:1457 msgid "Log level" msgstr "Protokoll-Level" -#: ../../mod/admin.php:1504 +#: ../../mod/admin.php:1507 msgid "Close" msgstr "Schließen" -#: ../../mod/admin.php:1510 +#: ../../mod/admin.php:1513 msgid "FTP Host" msgstr "FTP Host" -#: ../../mod/admin.php:1511 +#: ../../mod/admin.php:1514 msgid "FTP Path" msgstr "FTP Pfad" -#: ../../mod/admin.php:1512 +#: ../../mod/admin.php:1515 msgid "FTP User" msgstr "FTP Nutzername" -#: ../../mod/admin.php:1513 +#: ../../mod/admin.php:1516 msgid "FTP Password" msgstr "FTP Passwort" @@ -6025,7 +6039,7 @@ msgstr "Markierte" msgid "Favourite Posts" msgstr "Favorisierte Beiträge" -#: ../../mod/network.php:463 +#: ../../mod/network.php:458 #, php-format msgid "Warning: This group contains %s member from an insecure network." msgid_plural "" @@ -6033,31 +6047,31 @@ msgid_plural "" msgstr[0] "Warnung: Diese Gruppe beinhaltet %s Person aus einem unsicheren Netzwerk." msgstr[1] "Warnung: Diese Gruppe beinhaltet %s Personen aus unsicheren Netzwerken." -#: ../../mod/network.php:466 +#: ../../mod/network.php:461 msgid "Private messages to this group are at risk of public disclosure." msgstr "Private Nachrichten an diese Gruppe könnten an die Öffentlichkeit geraten." -#: ../../mod/network.php:520 ../../mod/content.php:119 +#: ../../mod/network.php:524 ../../mod/content.php:119 msgid "No such group" msgstr "Es gibt keine solche Gruppe" -#: ../../mod/network.php:537 ../../mod/content.php:130 +#: ../../mod/network.php:541 ../../mod/content.php:130 msgid "Group is empty" msgstr "Gruppe ist leer" -#: ../../mod/network.php:544 ../../mod/content.php:134 +#: ../../mod/network.php:548 ../../mod/content.php:134 msgid "Group: " msgstr "Gruppe: " -#: ../../mod/network.php:554 +#: ../../mod/network.php:558 msgid "Contact: " msgstr "Kontakt: " -#: ../../mod/network.php:556 +#: ../../mod/network.php:560 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:561 +#: ../../mod/network.php:565 msgid "Invalid contact." msgstr "Ungültiger Kontakt." @@ -6276,7 +6290,11 @@ msgstr "Neueste Fotos" msgid "The post was created" msgstr "Der Beitrag wurde angelegt" -#: ../../mod/follow.php:27 +#: ../../mod/follow.php:21 +msgid "You already added this contact." +msgstr "Du hast den Kontakt bereits hinzugefügt." + +#: ../../mod/follow.php:103 msgid "Contact added" msgstr "Kontakt hinzugefügt" @@ -6577,6 +6595,10 @@ msgstr "Originaltext (Diaspora Format): " msgid "diaspora2bb: " msgstr "diaspora2bb: " +#: ../../mod/p.php:9 +msgid "Not Extended" +msgstr "Nicht erweitert." + #: ../../mod/tagrm.php:41 msgid "Tag removed" msgstr "Tag entfernt" @@ -6603,19 +6625,19 @@ msgstr "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wie msgid "Please enter your password for verification:" msgstr "Bitte gib Dein Passwort zur Verifikation ein:" -#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 +#: ../../mod/profperm.php:25 ../../mod/profperm.php:56 msgid "Invalid profile identifier." msgstr "Ungültiger Profil-Bezeichner." -#: ../../mod/profperm.php:101 +#: ../../mod/profperm.php:102 msgid "Profile Visibility Editor" msgstr "Editor für die Profil-Sichtbarkeit" -#: ../../mod/profperm.php:114 +#: ../../mod/profperm.php:115 msgid "Visible To" msgstr "Sichtbar für" -#: ../../mod/profperm.php:130 +#: ../../mod/profperm.php:131 msgid "All Contacts (with secure profile access)" msgstr "Alle Kontakte (mit gesichertem Profilzugriff)" @@ -6627,121 +6649,121 @@ msgstr "Profilübereinstimmungen" 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:57 +#: ../../mod/match.php:62 msgid "is interested in:" msgstr "ist interessiert an:" -#: ../../mod/events.php:66 +#: ../../mod/events.php:68 ../../mod/events.php:70 msgid "Event title and start time are required." msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden." -#: ../../mod/events.php:291 +#: ../../mod/events.php:303 msgid "l, F j" msgstr "l, F j" -#: ../../mod/events.php:313 +#: ../../mod/events.php:325 msgid "Edit event" msgstr "Veranstaltung bearbeiten" -#: ../../mod/events.php:371 +#: ../../mod/events.php:383 msgid "Create New Event" msgstr "Neue Veranstaltung erstellen" -#: ../../mod/events.php:372 +#: ../../mod/events.php:384 msgid "Previous" msgstr "Vorherige" -#: ../../mod/events.php:373 ../../mod/install.php:207 +#: ../../mod/events.php:385 ../../mod/install.php:207 msgid "Next" msgstr "Nächste" -#: ../../mod/events.php:446 +#: ../../mod/events.php:458 msgid "hour:minute" msgstr "Stunde:Minute" -#: ../../mod/events.php:456 +#: ../../mod/events.php:468 msgid "Event details" msgstr "Veranstaltungsdetails" -#: ../../mod/events.php:457 +#: ../../mod/events.php:469 #, php-format msgid "Format is %s %s. Starting date and Title are required." msgstr "Das Format ist %s %s. Beginnzeitpunkt und Titel werden benötigt." -#: ../../mod/events.php:459 +#: ../../mod/events.php:471 msgid "Event Starts:" msgstr "Veranstaltungsbeginn:" -#: ../../mod/events.php:459 ../../mod/events.php:473 +#: ../../mod/events.php:471 ../../mod/events.php:485 msgid "Required" msgstr "Benötigt" -#: ../../mod/events.php:462 +#: ../../mod/events.php:474 msgid "Finish date/time is not known or not relevant" msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant" -#: ../../mod/events.php:464 +#: ../../mod/events.php:476 msgid "Event Finishes:" msgstr "Veranstaltungsende:" -#: ../../mod/events.php:467 +#: ../../mod/events.php:479 msgid "Adjust for viewer timezone" msgstr "An Zeitzone des Betrachters anpassen" -#: ../../mod/events.php:469 +#: ../../mod/events.php:481 msgid "Description:" msgstr "Beschreibung" -#: ../../mod/events.php:473 +#: ../../mod/events.php:485 msgid "Title:" msgstr "Titel:" -#: ../../mod/events.php:475 +#: ../../mod/events.php:487 msgid "Share this event" msgstr "Veranstaltung teilen" -#: ../../mod/ping.php:240 +#: ../../mod/ping.php:210 ../../mod/ping.php:234 msgid "{0} wants to be your friend" msgstr "{0} möchte mit Dir in Kontakt treten" -#: ../../mod/ping.php:245 +#: ../../mod/ping.php:215 ../../mod/ping.php:239 msgid "{0} sent you a message" msgstr "{0} schickte Dir eine Nachricht" -#: ../../mod/ping.php:250 +#: ../../mod/ping.php:220 ../../mod/ping.php:244 msgid "{0} requested registration" msgstr "{0} möchte sich registrieren" -#: ../../mod/ping.php:256 +#: ../../mod/ping.php:250 #, php-format msgid "{0} commented %s's post" msgstr "{0} kommentierte einen Beitrag von %s" -#: ../../mod/ping.php:261 +#: ../../mod/ping.php:255 #, php-format msgid "{0} liked %s's post" msgstr "{0} mag %ss Beitrag" -#: ../../mod/ping.php:266 +#: ../../mod/ping.php:260 #, php-format msgid "{0} disliked %s's post" msgstr "{0} mag %ss Beitrag nicht" -#: ../../mod/ping.php:271 +#: ../../mod/ping.php:265 #, php-format msgid "{0} is now friends with %s" msgstr "{0} ist jetzt mit %s befreundet" -#: ../../mod/ping.php:276 +#: ../../mod/ping.php:270 msgid "{0} posted" msgstr "{0} hat etwas veröffentlicht" -#: ../../mod/ping.php:281 +#: ../../mod/ping.php:275 #, php-format msgid "{0} tagged %s's post with #%s" msgstr "{0} hat %ss Beitrag mit dem Schlagwort #%s versehen" -#: ../../mod/ping.php:287 +#: ../../mod/ping.php:281 msgid "{0} mentioned you in a post" msgstr "{0} hat Dich in einem Beitrag erwähnt" @@ -7466,47 +7488,51 @@ msgstr "Spiegeln als weitergeleitete Beiträge" msgid "Mirror as my own posting" msgstr "Spiegeln als meine eigenen Beiträge" -#: ../../mod/crepair.php:166 +#: ../../mod/crepair.php:168 +msgid "Refetch contact data" +msgstr "Kontaktdaten neu laden" + +#: ../../mod/crepair.php:170 msgid "Account Nickname" msgstr "Konto-Spitzname" -#: ../../mod/crepair.php:167 +#: ../../mod/crepair.php:171 msgid "@Tagname - overrides Name/Nickname" msgstr "@Tagname - überschreibt Name/Spitzname" -#: ../../mod/crepair.php:168 +#: ../../mod/crepair.php:172 msgid "Account URL" msgstr "Konto-URL" -#: ../../mod/crepair.php:169 +#: ../../mod/crepair.php:173 msgid "Friend Request URL" msgstr "URL für Freundschaftsanfragen" -#: ../../mod/crepair.php:170 +#: ../../mod/crepair.php:174 msgid "Friend Confirm URL" msgstr "URL für Bestätigungen von Freundschaftsanfragen" -#: ../../mod/crepair.php:171 +#: ../../mod/crepair.php:175 msgid "Notification Endpoint URL" msgstr "URL-Endpunkt für Benachrichtigungen" -#: ../../mod/crepair.php:172 +#: ../../mod/crepair.php:176 msgid "Poll/Feed URL" msgstr "Pull/Feed-URL" -#: ../../mod/crepair.php:173 +#: ../../mod/crepair.php:177 msgid "New photo from this URL" msgstr "Neues Foto von dieser URL" -#: ../../mod/crepair.php:174 +#: ../../mod/crepair.php:178 msgid "Remote Self" msgstr "Entfernte Konten" -#: ../../mod/crepair.php:176 +#: ../../mod/crepair.php:180 msgid "Mirror postings from this contact" msgstr "Spiegle Beiträge dieses Kontakts" -#: ../../mod/crepair.php:176 +#: ../../mod/crepair.php:180 msgid "" "Mark this contact as remote_self, this will cause friendica to repost new " "entries from this contact." @@ -7709,7 +7735,7 @@ msgstr "Was willst Du mit dem Empfänger machen:" msgid "Make this post private" msgstr "Diesen Beitrag privat machen" -#: ../../mod/display.php:496 +#: ../../mod/display.php:498 msgid "Item has been removed." msgstr "Eintrag wurde entfernt." @@ -7754,47 +7780,47 @@ msgstr "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch msgid "Introduction failed or was revoked." msgstr "Kontaktanfrage schlug fehl oder wurde zurückgezogen." -#: ../../mod/dfrn_confirm.php:429 +#: ../../mod/dfrn_confirm.php:430 msgid "Unable to set contact photo." msgstr "Konnte das Bild des Kontakts nicht speichern." -#: ../../mod/dfrn_confirm.php:571 +#: ../../mod/dfrn_confirm.php:572 #, php-format msgid "No user record found for '%s' " msgstr "Für '%s' wurde kein Nutzer gefunden" -#: ../../mod/dfrn_confirm.php:581 +#: ../../mod/dfrn_confirm.php:582 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:592 +#: ../../mod/dfrn_confirm.php:593 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:613 +#: ../../mod/dfrn_confirm.php:614 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:627 +#: ../../mod/dfrn_confirm.php:628 #, 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:647 +#: ../../mod/dfrn_confirm.php:648 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:658 +#: ../../mod/dfrn_confirm.php:659 msgid "Unable to set your contact credentials on our system." msgstr "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden." -#: ../../mod/dfrn_confirm.php:725 +#: ../../mod/dfrn_confirm.php:726 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:797 +#: ../../mod/dfrn_confirm.php:798 #, php-format msgid "%1$s has joined %2$s" msgstr "%1$s ist %2$s beigetreten" diff --git a/view/de/strings.php b/view/de/strings.php index d67eb1b79e..c243ff5669 100644 --- a/view/de/strings.php +++ b/view/de/strings.php @@ -76,13 +76,6 @@ $a->strings["Page not found."] = "Seite nicht gefunden."; $a->strings["Permission denied"] = "Zugriff verweigert"; $a->strings["Permission denied."] = "Zugriff verweigert."; $a->strings["toggle mobile"] = "auf/von Mobile Ansicht wechseln"; -$a->strings["Do you wish to confirm your identity (%s) with %s"] = "Möchtest du deine Identität (%s mit %s bestätigen"; -$a->strings["Confirm"] = "Bestätigen"; -$a->strings["Do not confirm"] = "Nicht bestätigen"; -$a->strings["Trust This Site"] = "Dieser Seite vertrauen"; -$a->strings["No Identifier Sent"] = "Keine Identifikation gesendet"; -$a->strings["Requested identity don't match logged in user."] = "Die angeforderte Identität stimmt nicht mit dem angemeldeten Nutzer überein."; -$a->strings["Please wait; you are being redirected to <%s>"] = "Bitte warten, Du wirst nach <%s> umgeleitet."; $a->strings["Delete this item?"] = "Diesen Beitrag löschen?"; $a->strings["Comment"] = "Kommentar"; $a->strings["show more"] = "mehr anzeigen"; @@ -194,6 +187,7 @@ $a->strings["edit"] = "bearbeiten"; $a->strings["Groups"] = "Gruppen"; $a->strings["Edit group"] = "Gruppe bearbeiten"; $a->strings["Create a new group"] = "Neue Gruppe erstellen"; +$a->strings["Group Name: "] = "Gruppenname:"; $a->strings["Contacts not in any group"] = "Kontakte in keiner Gruppe"; $a->strings["add"] = "hinzufügen"; $a->strings["Wall Photos"] = "Pinnwand-Bilder"; @@ -739,7 +733,6 @@ $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 Gruppe von Kontakten/Freunden anlegen."; -$a->strings["Group Name: "] = "Gruppenname:"; $a->strings["Group removed."] = "Gruppe entfernt."; $a->strings["Unable to remove group."] = "Konnte die Gruppe nicht entfernen."; $a->strings["Group Editor"] = "Gruppeneditor"; @@ -838,6 +831,9 @@ $a->strings["Plugin Settings"] = "Plugin-Einstellungen"; $a->strings["Off"] = "Aus"; $a->strings["On"] = "An"; $a->strings["Additional Features"] = "Zusätzliche Features"; +$a->strings["General Social Media Settings"] = "Allgemeine Einstellungen zu Sozialen Medien"; +$a->strings["Disable intelligent shortening"] = "Intelligentes Link kürzen ausschalten"; +$a->strings["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."] = "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."; $a->strings["Built-in support for %s connectivity is %s"] = "Eingebaute Unterstützung für Verbindungen zu %s ist %s"; $a->strings["enabled"] = "eingeschaltet"; $a->strings["disabled"] = "ausgeschaltet"; @@ -944,6 +940,9 @@ $a->strings["You receive a private message"] = "– Du eine private Nachricht er $a->strings["You receive a friend suggestion"] = "– Du eine Empfehlung erhältst"; $a->strings["You are tagged in a post"] = "– Du in einem Beitrag erwähnt wirst"; $a->strings["You are poked/prodded/etc. in a post"] = "– Du von jemandem angestupst oder sonstwie behandelt wirst"; +$a->strings["Activate desktop notifications"] = "Desktop Benachrichtigungen einschalten"; +$a->strings["Note: This is an experimental feature, as being not supported by each browser"] = "Hinweis: Dies ist ein experimentelles Feature und wird nicht von allen Browsern unterstützt."; +$a->strings["You will now receive desktop notifications!"] = "Du wirst nun Desktop Benachrichtigungen empfangen!"; $a->strings["Text-only notification emails"] = "Benachrichtigungs E-Mail als Rein-Text."; $a->strings["Send text only notification emails, without the html part"] = "Sende Benachrichtigungs E-Mail als Rein-Text - ohne HTML-Teil"; $a->strings["Advanced Account/Page Type Settings"] = "Erweiterte Konto-/Seitentyp-Einstellungen"; @@ -1108,6 +1107,7 @@ $a->strings["Invalid profile URL."] = "Ungültige Profil-URL."; $a->strings["Your introduction has been sent."] = "Deine Kontaktanfrage wurde gesendet."; $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 this profile."] = "Momentan bist Du mit einer anderen Identität angemeldet. Bitte melde Dich mit diesem 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."; @@ -1269,6 +1269,8 @@ $a->strings["Poll interval"] = "Abfrageintervall"; $a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Verzögere Hintergrundprozesse um diese Anzahl an Sekunden, um die Systemlast zu reduzieren. Bei 0 Sekunden wird das Auslieferungsintervall verwendet."; $a->strings["Maximum Load Average"] = "Maximum Load Average"; $a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Maximale Systemlast bevor Verteil- und Empfangsprozesse verschoben werden - Standard 50"; +$a->strings["Maximum Load Average (Frontend)"] = "Maximum Load Average (Frontend)"; +$a->strings["Maximum system load before the frontend quits service - default 50."] = "Maximale Systemlast bevor Vordergrundprozesse pausiert werden - Standard 50."; $a->strings["Use MySQL full text engine"] = "Nutze MySQL full text engine"; $a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "Aktiviert die 'full text engine'. Beschleunigt die Suche - aber es kann nur nach vier oder mehr Zeichen gesucht werden."; $a->strings["Suppress Language"] = "Sprachinformation unterdrücken"; @@ -1440,6 +1442,7 @@ $a->strings["Private photo"] = "Privates Foto"; $a->strings["Public photo"] = "Öffentliches Foto"; $a->strings["Recent Photos"] = "Neueste Fotos"; $a->strings["The post was created"] = "Der Beitrag wurde angelegt"; +$a->strings["You already added this contact."] = "Du hast den Kontakt bereits hinzugefügt."; $a->strings["Contact added"] = "Kontakt hinzugefügt"; $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."; @@ -1498,6 +1501,7 @@ $a->strings["bb2dia2bb: "] = "bb2dia2bb: "; $a->strings["bb2md2html2bb: "] = "bb2md2html2bb: "; $a->strings["Source input (Diaspora format): "] = "Originaltext (Diaspora Format): "; $a->strings["diaspora2bb: "] = "diaspora2bb: "; +$a->strings["Not Extended"] = "Nicht erweitert."; $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: "; @@ -1704,6 +1708,7 @@ $a->strings["Return to contact editor"] = "Zurück zum Kontakteditor"; $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["Refetch contact data"] = "Kontaktdaten neu laden"; $a->strings["Account Nickname"] = "Konto-Spitzname"; $a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - überschreibt Name/Spitzname"; $a->strings["Account URL"] = "Konto-URL"; From 2ad8fdc40b669c39cb99a6e22e42a9ecc60e0045 Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Fri, 22 May 2015 18:53:18 +0200 Subject: [PATCH 127/306] port of red matrix datepicker implementation --- include/datetime.php | 210 +-- library/datetimepicker/MIT-LICENSE.txt | 19 + library/datetimepicker/README.md | 20 + .../datetimepicker/jquery.datetimepicker.css | 418 +++++ .../datetimepicker/jquery.datetimepicker.js | 1661 +++++++++++++++++ mod/events.php | 71 +- mod/profiles.php | 38 +- view/templates/event_form.tpl | 4 +- view/templates/head.tpl | 2 + 9 files changed, 2274 insertions(+), 169 deletions(-) create mode 100644 library/datetimepicker/MIT-LICENSE.txt create mode 100644 library/datetimepicker/README.md create mode 100644 library/datetimepicker/jquery.datetimepicker.css create mode 100644 library/datetimepicker/jquery.datetimepicker.js diff --git a/include/datetime.php b/include/datetime.php index f3236238fa..8ac8ff0f29 100644 --- a/include/datetime.php +++ b/include/datetime.php @@ -131,134 +131,114 @@ function datetime_convert($from = 'UTC', $to = 'UTC', $s = 'now', $fmt = "Y-m-d function dob($dob) { list($year,$month,$day) = sscanf($dob,'%4d-%2d-%2d'); - $y = datetime_convert('UTC',date_default_timezone_get(),'now','Y'); $f = get_config('system','birthday_input_format'); if(! $f) $f = 'ymd'; - $o = datesel($f,'',1920,$y,true,$year,$month,$day); + if($dob === '0000-00-00') + $value = ''; + else + $value = (($year) ? datetime_convert('UTC','UTC',$dob,'Y-m-d') : datetime_convert('UTC','UTC',$dob,'m-d')); + $o = ''; +// if ($dob && $dob != '0000-00-00') +// $o = datesel($f,mktime(0,0,0,0,0,1900),mktime(),mktime(0,0,0,$month,$day,$year),'dob'); +// else +// $o = datesel($f,mktime(0,0,0,0,0,1900),mktime(),false,'dob'); return $o; } - -function datesel_format($f) { - - $o = ''; - - if(strlen($f)) { - for($x = 0; $x < strlen($f); $x ++) { - switch($f[$x]) { - case 'y': - if(strlen($o)) - $o .= '-'; - $o .= t('year'); - break; - case 'm': - if(strlen($o)) - $o .= '-'; - $o .= t('month'); - break; - case 'd': - if(strlen($o)) - $o .= '-'; - $o .= t('day'); - break; - default: - break; - } - } - } - return $o; -} - - -// returns a date selector. -// $f = format string, e.g. 'ymd' or 'mdy' -// $pre = prefix (if needed) for HTML name and class fields -// $ymin = first year shown in selector dropdown -// $ymax = last year shown in selector dropdown -// $allow_blank = allow an empty response on any field -// $y = already selected year -// $m = already selected month -// $d = already selected day - +/** + * returns a date selector + * @param $format + * format string, e.g. 'ymd' or 'mdy'. Not currently supported + * @param $min + * unix timestamp of minimum date + * @param $max + * unix timestap of maximum date + * @param $default + * unix timestamp of default date + * @param $id + * id and name of datetimepicker (defaults to "datetimepicker") + */ if(! function_exists('datesel')) { -function datesel($f,$pre,$ymin,$ymax,$allow_blank,$y,$m,$d) { - - $o = ''; - - if(strlen($f)) { - for($z = 0; $z < strlen($f); $z ++) { - if($f[$z] === 'y') { - - $o .= " "; - return $o; +function datesel($format, $min, $max, $default, $id = 'datepicker') { + return datetimesel($format,$min,$max,$default,$id,true,false, '',''); }} +/** + * returns a time selector + * @param $format + * format string, e.g. 'ymd' or 'mdy'. Not currently supported + * @param $h + * already selected hour + * @param $m + * already selected minute + * @param $id + * id and name of datetimepicker (defaults to "timepicker") + */ if(! function_exists('timesel')) { -function timesel($pre,$h,$m) { - - $o = ''; - $o .= " : "; - return $o; +function timesel($format, $h, $m, $id='timepicker') { + return datetimesel($format,new DateTime(),new DateTime(),new DateTime("$h:$m"),$id,false,true); }} +/** + * @brief Returns a datetime selector. + * + * @param $format + * format string, e.g. 'ymd' or 'mdy'. Not currently supported + * @param $min + * unix timestamp of minimum date + * @param $max + * unix timestap of maximum date + * @param $default + * unix timestamp of default date + * @param string $id + * id and name of datetimepicker (defaults to "datetimepicker") + * @param boolean $pickdate + * true to show date picker (default) + * @param boolean $picktime + * true to show time picker (default) + * @param $minfrom + * set minimum date from picker with id $minfrom (none by default) + * @param $maxfrom + * set maximum date from picker with id $maxfrom (none by default) + * @param boolean $required default false + * @return string Parsed HTML output. + * + * @todo Once browser support is better this could probably be replaced with + * native HTML5 date picker. + */ +if(! function_exists('datetimesel')) { +function datetimesel($format, $min, $max, $default, $id = 'datetimepicker', $pickdate = true, $picktime = true, $minfrom = '', $maxfrom = '', $required = false) { - - - - - + $o = ''; + $dateformat = ''; + if($pickdate) $dateformat .= 'Y-m-d'; + if($pickdate && $picktime) $dateformat .= ' '; + if($picktime) $dateformat .= 'H:i'; + $minjs = $min ? ",minDate: new Date({$min->getTimestamp()}*1000), yearStart: " . $min->format('Y') : ''; + $maxjs = $max ? ",maxDate: new Date({$max->getTimestamp()}*1000), yearEnd: " . $max->format('Y') : ''; + + $input_text = $default ? 'value="' . date($dateformat, $default->getTimestamp()) . '"' : ''; + $defaultdatejs = $default ? ",defaultDate: new Date({$default->getTimestamp()}*1000)" : ''; + $pickers = ''; + if(!$pickdate) $pickers .= ',datepicker: false'; + if(!$picktime) $pickers .= ',timepicker: false'; + $extra_js = ''; + if($minfrom != '') + $extra_js .= "\$('#$minfrom').data('xdsoft_datetimepicker').setOptions({onChangeDateTime: function (currentDateTime) { \$('#$id').data('xdsoft_datetimepicker').setOptions({minDate: currentDateTime})}})"; + if($maxfrom != '') + $extra_js .= "\$('#$maxfrom').data('xdsoft_datetimepicker').setOptions({onChangeDateTime: function (currentDateTime) { \$('#$id').data('xdsoft_datetimepicker').setOptions({maxDate: currentDateTime})}})"; + $readable_format = $dateformat; + $readable_format = str_replace('Y','yyyy',$readable_format); + $readable_format = str_replace('m','mm',$readable_format); + $readable_format = str_replace('d','dd',$readable_format); + $readable_format = str_replace('H','HH',$readable_format); + $readable_format = str_replace('i','MM',$readable_format); + $o .= "
    "; + $o .= '
    '; + $o .= ""; + return $o; +}} // implements "3 seconds ago" etc. // based on $posted_date, (UTC). diff --git a/library/datetimepicker/MIT-LICENSE.txt b/library/datetimepicker/MIT-LICENSE.txt new file mode 100644 index 0000000000..2e68e7d6a1 --- /dev/null +++ b/library/datetimepicker/MIT-LICENSE.txt @@ -0,0 +1,19 @@ +Copyright (c) 2013 http://xdsoft.net + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. \ No newline at end of file diff --git a/library/datetimepicker/README.md b/library/datetimepicker/README.md new file mode 100644 index 0000000000..f0d3f40e3c --- /dev/null +++ b/library/datetimepicker/README.md @@ -0,0 +1,20 @@ +datetimepicker +============== +[Documentation][doc] + + +jQuery Plugin Date and Time Picker + +DateTimePicker + +![ScreenShot](https://raw2.github.com/xdan/datetimepicker/master/screen/1.png) + +DatePicker + +![ScreenShot](https://raw2.github.com/xdan/datetimepicker/master/screen/2.png) + +TimePicker + +![ScreenShot](https://raw2.github.com/xdan/datetimepicker/master/screen/3.png) + +[doc]: http://xdsoft.net/jqplugins/datetimepicker/ diff --git a/library/datetimepicker/jquery.datetimepicker.css b/library/datetimepicker/jquery.datetimepicker.css new file mode 100644 index 0000000000..acf674af7e --- /dev/null +++ b/library/datetimepicker/jquery.datetimepicker.css @@ -0,0 +1,418 @@ +.xdsoft_datetimepicker{ + box-shadow: 0px 5px 15px -5px rgba(0, 0, 0, 0.506); + background: #FFFFFF; + border-bottom: 1px solid #BBBBBB; + border-left: 1px solid #CCCCCC; + border-right: 1px solid #CCCCCC; + border-top: 1px solid #CCCCCC; + color: #333333; + font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif; + padding: 8px; + padding-left: 0px; + padding-top: 2px; + position: absolute; + z-index: 9999; + -moz-box-sizing: border-box; + box-sizing: border-box; + display:none; +} + +.xdsoft_datetimepicker iframe { + position: absolute; + left: 0; + top: 0; + width: 75px; + height: 210px; + background: transparent; + border:none; +} +/*For IE8 or lower*/ +.xdsoft_datetimepicker button { + border:none !important; +} + +.xdsoft_noselect{ + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + -o-user-select: none; + user-select: none; +} +.xdsoft_noselect::selection { background: transparent; } +.xdsoft_noselect::-moz-selection { background: transparent; } +.xdsoft_datetimepicker.xdsoft_inline{ + display: inline-block; + position: static; + box-shadow: none; +} +.xdsoft_datetimepicker *{ + -moz-box-sizing: border-box; + box-sizing: border-box; + padding:0px; + margin:0px; +} +.xdsoft_datetimepicker .xdsoft_datepicker, .xdsoft_datetimepicker .xdsoft_timepicker{ + display:none; +} +.xdsoft_datetimepicker .xdsoft_datepicker.active, .xdsoft_datetimepicker .xdsoft_timepicker.active{ + display:block; +} +.xdsoft_datetimepicker .xdsoft_datepicker{ + width: 224px; + float:left; + margin-left:8px; +} +.xdsoft_datetimepicker.xdsoft_showweeks .xdsoft_datepicker{ + width: 256px; +} +.xdsoft_datetimepicker .xdsoft_timepicker{ + width: 58px; + float:left; + text-align:center; + margin-left:8px; + margin-top:0px; +} +.xdsoft_datetimepicker .xdsoft_datepicker.active+.xdsoft_timepicker{ + margin-top:8px; + margin-bottom:3px +} +.xdsoft_datetimepicker .xdsoft_mounthpicker{ + position: relative; + text-align: center; +} + +.xdsoft_datetimepicker .xdsoft_label i, +.xdsoft_datetimepicker .xdsoft_prev, +.xdsoft_datetimepicker .xdsoft_next, +.xdsoft_datetimepicker .xdsoft_today_button{ + background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAAAeCAYAAADaW7vzAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6Q0NBRjI1NjM0M0UwMTFFNDk4NkFGMzJFQkQzQjEwRUIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6Q0NBRjI1NjQ0M0UwMTFFNDk4NkFGMzJFQkQzQjEwRUIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpDQ0FGMjU2MTQzRTAxMUU0OTg2QUYzMkVCRDNCMTBFQiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpDQ0FGMjU2MjQzRTAxMUU0OTg2QUYzMkVCRDNCMTBFQiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PoNEP54AAAIOSURBVHja7Jq9TsMwEMcxrZD4WpBYeKUCe+kTMCACHZh4BFfHO/AAIHZGFhYkBBsSEqxsLCAgXKhbXYOTxh9pfJVP+qutnZ5s/5Lz2Y5I03QhWji2GIcgAokWgfCxNvcOCCGKqiSqhUp0laHOne05vdEyGMfkdxJDVjgwDlEQgYQBgx+ULJaWSXXS6r/ER5FBVR8VfGftTKcITNs+a1XpcFoExREIDF14AVIFxgQUS+h520cdud6wNkC0UBw6BCO/HoCYwBhD8QCkQ/x1mwDyD4plh4D6DDV0TAGyo4HcawLIBBSLDkHeH0Mg2yVP3l4TQMZQDDsEOl/MgHQqhMNuE0D+oBh0CIr8MAKyazBH9WyBuKxDWgbXfjNf32TZ1KWm/Ap1oSk/R53UtQ5xTh3LUlMmT8gt6g51Q9p+SobxgJQ/qmsfZhWywGFSl0yBjCLJCMgXail3b7+rumdVJ2YRss4cN+r6qAHDkPWjPjdJCF4n9RmAD/V9A/Wp4NQassDjwlB6XBiCxcJQWmZZb8THFilfy/lfrTvLghq2TqTHrRMTKNJ0sIhdo15RT+RpyWwFdY96UZ/LdQKBGjcXpcc1AlSFEfLmouD+1knuxBDUVrvOBmoOC/rEcN7OQxKVeJTCiAdUzUJhA2Oez9QTkp72OTVcxDcXY8iKNkxGAJXmJCOQwOa6dhyXsOa6XwEGAKdeb5ET3rQdAAAAAElFTkSuQmCC); +} + +.xdsoft_datetimepicker .xdsoft_label i{ + opacity:0.5; + background-position:-92px -19px; + display: inline-block; + width: 9px; + height: 20px; + vertical-align: middle; +} + +.xdsoft_datetimepicker .xdsoft_prev{ + float: left; + background-position:-20px 0px; +} +.xdsoft_datetimepicker .xdsoft_today_button{ + float: left; + background-position:-70px 0px; + margin-left:5px; +} + +.xdsoft_datetimepicker .xdsoft_next{ + float: right; + background-position:0px 0px; +} + +.xdsoft_datetimepicker .xdsoft_next, +.xdsoft_datetimepicker .xdsoft_prev , +.xdsoft_datetimepicker .xdsoft_today_button{ + background-color: transparent; + background-repeat: no-repeat; + border: 0px none currentColor; + cursor: pointer; + display: block; + height: 30px; + opacity: 0.5; + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; + outline: medium none currentColor; + overflow: hidden; + padding: 0px; + position: relative; + text-indent: 100%; + white-space: nowrap; + width: 20px; +} +.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_prev, +.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_next{ + float:none; + background-position:-40px -15px; + height: 15px; + width: 30px; + display: block; + margin-left:14px; + margin-top:7px; +} +.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_prev{ + background-position:-40px 0px; + margin-bottom:7px; + margin-top:0px; +} +.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box{ + height:151px; + overflow:hidden; + border-bottom:1px solid #DDDDDD; +} +.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box >div >div{ + background: #F5F5F5; + border-top:1px solid #DDDDDD; + color: #666666; + font-size: 12px; + text-align: center; + border-collapse:collapse; + cursor:pointer; + border-bottom-width:0px; + height:25px; + line-height:25px; +} + +.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box >div > div:first-child{ + border-top-width:0px; +} +.xdsoft_datetimepicker .xdsoft_today_button:hover, +.xdsoft_datetimepicker .xdsoft_next:hover, +.xdsoft_datetimepicker .xdsoft_prev:hover { + opacity: 1; + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; +} +.xdsoft_datetimepicker .xdsoft_label{ + display: inline; + position: relative; + z-index: 9999; + margin: 0; + padding: 5px 3px; + font-size: 14px; + line-height: 20px; + font-weight: bold; + background-color: #fff; + float:left; + width:182px; + text-align:center; + cursor:pointer; +} +.xdsoft_datetimepicker .xdsoft_label:hover>span{ + text-decoration:underline; +} +.xdsoft_datetimepicker .xdsoft_label:hover i{ + opacity:1.0; +} +.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select{ + border:1px solid #ccc; + position:absolute; + right:0px; + top:30px; + z-index:101; + display:none; + background:#fff; + max-height:160px; + overflow-y:hidden; +} +.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select.xdsoft_monthselect{right:-7px;} +.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select.xdsoft_yearselect{right:2px;} +.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select > div > .xdsoft_option:hover{ + color: #fff; + background: #ff8000; +} +.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select > div > .xdsoft_option{ + padding:2px 10px 2px 5px; + text-decoration:none !important; +} +.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select > div > .xdsoft_option.xdsoft_current{ + background: #33AAFF; + box-shadow: #178FE5 0px 1px 3px 0px inset; + color:#fff; + font-weight: 700; +} +.xdsoft_datetimepicker .xdsoft_month{ + width:100px; + text-align:right; +} +.xdsoft_datetimepicker .xdsoft_calendar{ + clear:both; +} +.xdsoft_datetimepicker .xdsoft_year{ + width: 48px; + margin-left: 5px; +} +.xdsoft_datetimepicker .xdsoft_calendar table{ + border-collapse:collapse; + width:100%; + +} +.xdsoft_datetimepicker .xdsoft_calendar td > div{ + padding-right:5px; +} +.xdsoft_datetimepicker .xdsoft_calendar th{ + height: 25px; +} +.xdsoft_datetimepicker .xdsoft_calendar td,.xdsoft_datetimepicker .xdsoft_calendar th{ + width:14.2857142%; + background: #F5F5F5; + border:1px solid #DDDDDD; + color: #666666; + font-size: 12px; + text-align: right; + vertical-align: middle; + padding:0px; + border-collapse:collapse; + cursor:pointer; + height: 25px; +} +.xdsoft_datetimepicker.xdsoft_showweeks .xdsoft_calendar td,.xdsoft_datetimepicker.xdsoft_showweeks .xdsoft_calendar th{ + width:12.5%; +} +.xdsoft_datetimepicker .xdsoft_calendar th{ + background: #F1F1F1; +} +.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_today{ + color:#33AAFF; +} +.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default, +.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current, +.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box >div >div.xdsoft_current{ + background: #33AAFF; + box-shadow: #178FE5 0px 1px 3px 0px inset; + color:#fff; + font-weight: 700; +} +.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_other_month, +.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_disabled, +.xdsoft_datetimepicker .xdsoft_time_box >div >div.xdsoft_disabled{ + opacity:0.5; + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; +} +.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_other_month.xdsoft_disabled{ + opacity:0.2; + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)"; +} +.xdsoft_datetimepicker .xdsoft_calendar td:hover, +.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box >div >div:hover{ + color: #fff !important; + background: #ff8000 !important; + box-shadow: none !important; +} +.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_disabled:hover, +.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box >div >div.xdsoft_disabled:hover{ + color: inherit !important; + background: inherit !important; + box-shadow: inherit !important; +} +.xdsoft_datetimepicker .xdsoft_calendar th{ + font-weight: 700; + text-align: center; + color: #999; + cursor:default; +} +.xdsoft_datetimepicker .xdsoft_copyright{ color:#ccc !important; font-size:10px;clear:both;float:none;margin-left:8px;} +.xdsoft_datetimepicker .xdsoft_copyright a{ color:#eee !important;} +.xdsoft_datetimepicker .xdsoft_copyright a:hover{ color:#aaa !important;} + + +.xdsoft_time_box{ + position:relative; + border:1px solid #ccc; +} +.xdsoft_scrollbar >.xdsoft_scroller{ + background:#ccc !important; + height:20px; + border-radius:3px; +} +.xdsoft_scrollbar{ + position:absolute; + width:7px; + right:0px; + top:0px; + bottom:0px; + cursor:pointer; +} +.xdsoft_scroller_box{ +position:relative; +} + + +.xdsoft_datetimepicker.xdsoft_dark{ + box-shadow: 0px 5px 15px -5px rgba(255, 255, 255, 0.506); + background: #000000; + border-bottom: 1px solid #444444; + border-left: 1px solid #333333; + border-right: 1px solid #333333; + border-top: 1px solid #333333; + color: #cccccc; +} + +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box{ + border-bottom:1px solid #222222; +} +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box >div >div{ + background: #0a0a0a; + border-top:1px solid #222222; + color: #999999; +} + +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label{ + background-color: #000; +} +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label > .xdsoft_select{ + border:1px solid #333; + background:#000; +} + +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label > .xdsoft_select > div > .xdsoft_option:hover{ + color: #000; + background: #007fff; +} + +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label > .xdsoft_select > div > .xdsoft_option.xdsoft_current{ + background: #cc5500; + box-shadow: #b03e00 0px 1px 3px 0px inset; + color:#000; +} + +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label i, +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_prev, +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_next, +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_today_button{ + background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAAAeCAYAAADaW7vzAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QUExQUUzOTA0M0UyMTFFNDlBM0FFQTJENTExRDVBODYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QUExQUUzOTE0M0UyMTFFNDlBM0FFQTJENTExRDVBODYiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpBQTFBRTM4RTQzRTIxMUU0OUEzQUVBMkQ1MTFENUE4NiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpBQTFBRTM4RjQzRTIxMUU0OUEzQUVBMkQ1MTFENUE4NiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pp0VxGEAAAIASURBVHja7JrNSgMxEMebtgh+3MSLr1T1Xn2CHoSKB08+QmR8Bx9A8e7RixdB9CKCoNdexIugxFlJa7rNZneTbLIpM/CnNLsdMvNjM8l0mRCiQ9Ye61IKCAgZAUnH+mU3MMZaHYChBnJUDzWOFZdVfc5+ZFLbrWDeXPwbxIqrLLfaeS0hEBVGIRQCEiZoHQwtlGSByCCdYBl8g8egTTAWoKQMRBRBcZxYlhzhKegqMOageErsCHVkk3hXIFooDgHB1KkHIHVgzKB4ADJQ/A1jAFmAYhkQqA5TOBtocrKrgXwQA8gcFIuAIO8sQSA7hidvPwaQGZSaAYHOUWJABhWWw2EMIH9QagQERU4SArJXo0ZZL18uvaxejXt/Em8xjVBXmvFr1KVm/AJ10tRe2XnraNqaJvKE3KHuUbfK1E+VHB0q40/y3sdQSxY4FHWeKJCunP8UyDdqJZenT3ntVV5jIYCAh20vT7ioP8tpf6E2lfEMwERe+whV1MHjwZB7PBiCxcGQWwKZKD62lfGNnP/1poFAA60T7rF1UgcKd2id3KDeUS+oLWV8DfWAepOfq00CgQabi9zjcgJVYVD7PVzQUAUGAQkbNJTBICDhgwYTjDYD6XeW08ZKh+A4pYkzenOxXUbvZcWz7E8ykRMnIHGX1XPl+1m2vPYpL+2qdb8CDAARlKFEz/ZVkAAAAABJRU5ErkJggg==); +} + +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td, +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar th{ + background: #0a0a0a; + border:1px solid #222222; + color: #999999; +} + +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar th{ + background: #0e0e0e; +} +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_today{ + color:#cc5500; +} +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_default, +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_current, +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box >div >div.xdsoft_current{ + background: #cc5500; + box-shadow: #b03e00 0px 1px 3px 0px inset; + color:#000; +} + +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td:hover, +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box >div >div:hover{ + color: #000 !important; + background: #007fff !important; +} + +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar th{ + color: #666; +} +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_copyright{ color:#333 !important;} +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_copyright a{ color:#111 !important;} +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_copyright a:hover{ color:#555 !important;} + + +.xdsoft_dark .xdsoft_time_box{ + border:1px solid #333; +} +.xdsoft_dark .xdsoft_scrollbar >.xdsoft_scroller{ + background:#333 !important; +} diff --git a/library/datetimepicker/jquery.datetimepicker.js b/library/datetimepicker/jquery.datetimepicker.js new file mode 100644 index 0000000000..d4e93dd130 --- /dev/null +++ b/library/datetimepicker/jquery.datetimepicker.js @@ -0,0 +1,1661 @@ +/** + * @preserve jQuery DateTimePicker plugin v2.4.0 + * @homepage http://xdsoft.net/jqplugins/datetimepicker/ + * (c) 2014, Chupurnov Valeriy. + */ +/*global document,window,jQuery,setTimeout,clearTimeout*/ +(function ($) { + 'use strict'; + var default_options = { + i18n: { + ar: { // Arabic + months: [ + "كانون الثاني", "شباط", "آذار", "نيسان", "مايو", "حزيران", "تموز", "آب", "أيلول", "تشرين الأول", "تشرين الثاني", "كانون الأول" + ], + dayOfWeek: [ + "ن", "ث", "ع", "خ", "ج", "س", "ح" + ] + }, + ro: { // Romanian + months: [ + "ianuarie", "februarie", "martie", "aprilie", "mai", "iunie", "iulie", "august", "septembrie", "octombrie", "noiembrie", "decembrie" + ], + dayOfWeek: [ + "l", "ma", "mi", "j", "v", "s", "d" + ] + }, + id: { // Indonesian + months: [ + "Januari", "Februari", "Maret", "April", "Mei", "Juni", "Juli", "Agustus", "September", "Oktober", "November", "Desember" + ], + dayOfWeek: [ + "Sen", "Sel", "Rab", "Kam", "Jum", "Sab", "Min" + ] + }, + bg: { // Bulgarian + months: [ + "Януари", "Февруари", "Март", "Април", "Май", "Юни", "Юли", "Август", "Септември", "Октомври", "Ноември", "Декември" + ], + dayOfWeek: [ + "Нд", "Пн", "Вт", "Ср", "Чт", "Пт", "Сб" + ] + }, + fa: { // Persian/Farsi + months: [ + 'فروردین', 'اردیبهشت', 'خرداد', 'تیر', 'مرداد', 'شهریور', 'مهر', 'آبان', 'آذر', 'دی', 'بهمن', 'اسفند' + ], + dayOfWeek: [ + 'یکشنبه', 'دوشنبه', 'سه شنبه', 'چهارشنبه', 'پنجشنبه', 'جمعه', 'شنبه' + ] + }, + ru: { // Russian + months: [ + 'Январь', 'Февраль', 'Март', 'Апрель', 'Май', 'Июнь', 'Июль', 'Август', 'Сентябрь', 'Октябрь', 'Ноябрь', 'Декабрь' + ], + dayOfWeek: [ + "Вск", "Пн", "Вт", "Ср", "Чт", "Пт", "Сб" + ] + }, + uk: { // Ukrainian + months: [ + 'Січень', 'Лютий', 'Березень', 'Квітень', 'Травень', 'Червень', 'Липень', 'Серпень', 'Вересень', 'Жовтень', 'Листопад', 'Грудень' + ], + dayOfWeek: [ + "Ндл", "Пнд", "Втр", "Срд", "Чтв", "Птн", "Сбт" + ] + }, + en: { // English + months: [ + "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December" + ], + dayOfWeek: [ + "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" + ] + }, + el: { // Ελληνικά + months: [ + "Ιανουάριος", "Φεβρουάριος", "Μάρτιος", "Απρίλιος", "Μάιος", "Ιούνιος", "Ιούλιος", "Αύγουστος", "Σεπτέμβριος", "Οκτώβριος", "Νοέμβριος", "Δεκέμβριος" + ], + dayOfWeek: [ + "Κυρ", "Δευ", "Τρι", "Τετ", "Πεμ", "Παρ", "Σαβ" + ] + }, + de: { // German + months: [ + 'Januar', 'Februar', 'März', 'April', 'Mai', 'Juni', 'Juli', 'August', 'September', 'Oktober', 'November', 'Dezember' + ], + dayOfWeek: [ + "So", "Mo", "Di", "Mi", "Do", "Fr", "Sa" + ] + }, + nl: { // Dutch + months: [ + "januari", "februari", "maart", "april", "mei", "juni", "juli", "augustus", "september", "oktober", "november", "december" + ], + dayOfWeek: [ + "zo", "ma", "di", "wo", "do", "vr", "za" + ] + }, + tr: { // Turkish + months: [ + "Ocak", "Şubat", "Mart", "Nisan", "Mayıs", "Haziran", "Temmuz", "Ağustos", "Eylül", "Ekim", "Kasım", "Aralık" + ], + dayOfWeek: [ + "Paz", "Pts", "Sal", "Çar", "Per", "Cum", "Cts" + ] + }, + fr: { //French + months: [ + "Janvier", "Février", "Mars", "Avril", "Mai", "Juin", "Juillet", "Août", "Septembre", "Octobre", "Novembre", "Décembre" + ], + dayOfWeek: [ + "Dim", "Lun", "Mar", "Mer", "Jeu", "Ven", "Sam" + ] + }, + es: { // Spanish + months: [ + "Enero", "Febrero", "Marzo", "Abril", "Mayo", "Junio", "Julio", "Agosto", "Septiembre", "Octubre", "Noviembre", "Diciembre" + ], + dayOfWeek: [ + "Dom", "Lun", "Mar", "Mié", "Jue", "Vie", "Sáb" + ] + }, + th: { // Thai + months: [ + 'มกราคม', 'กุมภาพันธ์', 'มีนาคม', 'เมษายน', 'พฤษภาคม', 'มิถุนายน', 'กรกฎาคม', 'สิงหาคม', 'กันยายน', 'ตุลาคม', 'พฤศจิกายน', 'ธันวาคม' + ], + dayOfWeek: [ + 'อา.', 'จ.', 'อ.', 'พ.', 'พฤ.', 'ศ.', 'ส.' + ] + }, + pl: { // Polish + months: [ + "styczeń", "luty", "marzec", "kwiecień", "maj", "czerwiec", "lipiec", "sierpień", "wrzesień", "październik", "listopad", "grudzień" + ], + dayOfWeek: [ + "nd", "pn", "wt", "śr", "cz", "pt", "sb" + ] + }, + pt: { // Portuguese + months: [ + "Janeiro", "Fevereiro", "Março", "Abril", "Maio", "Junho", "Julho", "Agosto", "Setembro", "Outubro", "Novembro", "Dezembro" + ], + dayOfWeek: [ + "Dom", "Seg", "Ter", "Qua", "Qui", "Sex", "Sab" + ] + }, + ch: { // Simplified Chinese + months: [ + "一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月" + ], + dayOfWeek: [ + "日", "一", "二", "三", "四", "五", "六" + ] + }, + se: { // Swedish + months: [ + "Januari", "Februari", "Mars", "April", "Maj", "Juni", "Juli", "Augusti", "September", "Oktober", "November", "December" + ], + dayOfWeek: [ + "Sön", "Mån", "Tis", "Ons", "Tor", "Fre", "Lör" + ] + }, + kr: { // Korean + months: [ + "1월", "2월", "3월", "4월", "5월", "6월", "7월", "8월", "9월", "10월", "11월", "12월" + ], + dayOfWeek: [ + "일", "월", "화", "수", "목", "금", "토" + ] + }, + it: { // Italian + months: [ + "Gennaio", "Febbraio", "Marzo", "Aprile", "Maggio", "Giugno", "Luglio", "Agosto", "Settembre", "Ottobre", "Novembre", "Dicembre" + ], + dayOfWeek: [ + "Dom", "Lun", "Mar", "Mer", "Gio", "Ven", "Sab" + ] + }, + da: { // Dansk + months: [ + "January", "Februar", "Marts", "April", "Maj", "Juni", "July", "August", "September", "Oktober", "November", "December" + ], + dayOfWeek: [ + "Søn", "Man", "Tir", "Ons", "Tor", "Fre", "Lør" + ] + }, + no: { // Norwegian + months: [ + "Januar", "Februar", "Mars", "April", "Mai", "Juni", "Juli", "August", "September", "Oktober", "November", "Desember" + ], + dayOfWeek: [ + "Søn", "Man", "Tir", "Ons", "Tor", "Fre", "Lør" + ] + }, + ja: { // Japanese + months: [ + "1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月" + ], + dayOfWeek: [ + "日", "月", "火", "水", "木", "金", "土" + ] + }, + vi: { // Vietnamese + months: [ + "Tháng 1", "Tháng 2", "Tháng 3", "Tháng 4", "Tháng 5", "Tháng 6", "Tháng 7", "Tháng 8", "Tháng 9", "Tháng 10", "Tháng 11", "Tháng 12" + ], + dayOfWeek: [ + "CN", "T2", "T3", "T4", "T5", "T6", "T7" + ] + }, + sl: { // Slovenščina + months: [ + "Januar", "Februar", "Marec", "April", "Maj", "Junij", "Julij", "Avgust", "September", "Oktober", "November", "December" + ], + dayOfWeek: [ + "Ned", "Pon", "Tor", "Sre", "Čet", "Pet", "Sob" + ] + }, + cs: { // Čeština + months: [ + "Leden", "Únor", "Březen", "Duben", "Květen", "Červen", "Červenec", "Srpen", "Září", "Říjen", "Listopad", "Prosinec" + ], + dayOfWeek: [ + "Ne", "Po", "Út", "St", "Čt", "Pá", "So" + ] + }, + hu: { // Hungarian + months: [ + "Január", "Február", "Március", "Április", "Május", "Június", "Július", "Augusztus", "Szeptember", "Október", "November", "December" + ], + dayOfWeek: [ + "Va", "Hé", "Ke", "Sze", "Cs", "Pé", "Szo" + ] + } + }, + value: '', + lang: 'en', + + format: 'Y/m/d H:i', + formatTime: 'H:i', + formatDate: 'Y/m/d', + + startDate: false, // new Date(), '1986/12/08', '-1970/01/05','-1970/01/05', + step: 60, + monthChangeSpinner: true, + + closeOnDateSelect: false, + closeOnWithoutClick: true, + closeOnInputClick: true, + + timepicker: true, + datepicker: true, + weeks: false, + + defaultTime: false, // use formatTime format (ex. '10:00' for formatTime: 'H:i') + defaultDate: false, // use formatDate format (ex new Date() or '1986/12/08' or '-1970/01/05' or '-1970/01/05') + + minDate: false, + maxDate: false, + minTime: false, + maxTime: false, + + allowTimes: [], + opened: false, + initTime: true, + inline: false, + theme: '', + + onSelectDate: function () {}, + onSelectTime: function () {}, + onChangeMonth: function () {}, + onChangeYear: function () {}, + onChangeDateTime: function () {}, + onShow: function () {}, + onClose: function () {}, + onGenerate: function () {}, + + withoutCopyright: true, + inverseButton: false, + hours12: false, + next: 'xdsoft_next', + prev : 'xdsoft_prev', + dayOfWeekStart: 0, + parentID: 'body', + timeHeightInTimePicker: 25, + timepickerScrollbar: true, + todayButton: true, + defaultSelect: true, + + scrollMonth: true, + scrollTime: true, + scrollInput: true, + + lazyInit: false, + mask: false, + validateOnBlur: true, + allowBlank: true, + yearStart: 1950, + yearEnd: 2050, + style: '', + id: '', + fixed: false, + roundTime: 'round', // ceil, floor + className: '', + weekends: [], + disabledDates : [], + yearOffset: 0, + beforeShowDay: null, + + enterLikeTab: true + }; + // fix for ie8 + if (!Array.prototype.indexOf) { + Array.prototype.indexOf = function (obj, start) { + var i, j; + for (i = (start || 0), j = this.length; i < j; i += 1) { + if (this[i] === obj) { return i; } + } + return -1; + }; + } + Date.prototype.countDaysInMonth = function () { + return new Date(this.getFullYear(), this.getMonth() + 1, 0).getDate(); + }; + $.fn.xdsoftScroller = function (percent) { + return this.each(function () { + var timeboxparent = $(this), + pointerEventToXY = function (e) { + var out = {x: 0, y: 0}, + touch; + if (e.type === 'touchstart' || e.type === 'touchmove' || e.type === 'touchend' || e.type === 'touchcancel') { + touch = e.originalEvent.touches[0] || e.originalEvent.changedTouches[0]; + out.x = touch.clientX; + out.y = touch.clientY; + } else if (e.type === 'mousedown' || e.type === 'mouseup' || e.type === 'mousemove' || e.type === 'mouseover' || e.type === 'mouseout' || e.type === 'mouseenter' || e.type === 'mouseleave') { + out.x = e.clientX; + out.y = e.clientY; + } + return out; + }, + move = 0, + timebox, + parentHeight, + height, + scrollbar, + scroller, + maximumOffset = 100, + start = false, + startY = 0, + startTop = 0, + h1 = 0, + touchStart = false, + startTopScroll = 0, + calcOffset = function () {}; + if (percent === 'hide') { + timeboxparent.find('.xdsoft_scrollbar').hide(); + return; + } + if (!$(this).hasClass('xdsoft_scroller_box')) { + timebox = timeboxparent.children().eq(0); + parentHeight = timeboxparent[0].clientHeight; + height = timebox[0].offsetHeight; + scrollbar = $('
    '); + scroller = $('
    '); + scrollbar.append(scroller); + + timeboxparent.addClass('xdsoft_scroller_box').append(scrollbar); + calcOffset = function calcOffset(event) { + var offset = pointerEventToXY(event).y - startY + startTopScroll; + if (offset < 0) { + offset = 0; + } + if (offset + scroller[0].offsetHeight > h1) { + offset = h1 - scroller[0].offsetHeight; + } + timeboxparent.trigger('scroll_element.xdsoft_scroller', [maximumOffset ? offset / maximumOffset : 0]); + }; + + scroller + .on('touchstart.xdsoft_scroller mousedown.xdsoft_scroller', function (event) { + if (!parentHeight) { + timeboxparent.trigger('resize_scroll.xdsoft_scroller', [percent]); + } + + startY = pointerEventToXY(event).y; + startTopScroll = parseInt(scroller.css('margin-top'), 10); + h1 = scrollbar[0].offsetHeight; + + if (event.type === 'mousedown') { + if (document) { + $(document.body).addClass('xdsoft_noselect'); + } + $([document.body, window]).on('mouseup.xdsoft_scroller', function arguments_callee() { + $([document.body, window]).off('mouseup.xdsoft_scroller', arguments_callee) + .off('mousemove.xdsoft_scroller', calcOffset) + .removeClass('xdsoft_noselect'); + }); + $(document.body).on('mousemove.xdsoft_scroller', calcOffset); + } else { + touchStart = true; + event.stopPropagation(); + event.preventDefault(); + } + }) + .on('touchmove', function (event) { + if (touchStart) { + event.preventDefault(); + calcOffset(event); + } + }) + .on('touchend touchcancel', function (event) { + touchStart = false; + startTopScroll = 0; + }); + + timeboxparent + .on('scroll_element.xdsoft_scroller', function (event, percentage) { + if (!parentHeight) { + timeboxparent.trigger('resize_scroll.xdsoft_scroller', [percentage, true]); + } + percentage = percentage > 1 ? 1 : (percentage < 0 || isNaN(percentage)) ? 0 : percentage; + + scroller.css('margin-top', maximumOffset * percentage); + + setTimeout(function () { + timebox.css('marginTop', -parseInt((timebox[0].offsetHeight - parentHeight) * percentage, 10)); + }, 10); + }) + .on('resize_scroll.xdsoft_scroller', function (event, percentage, noTriggerScroll) { + var percent, sh; + parentHeight = timeboxparent[0].clientHeight; + height = timebox[0].offsetHeight; + percent = parentHeight / height; + sh = percent * scrollbar[0].offsetHeight; + if (percent > 1) { + scroller.hide(); + } else { + scroller.show(); + scroller.css('height', parseInt(sh > 10 ? sh : 10, 10)); + maximumOffset = scrollbar[0].offsetHeight - scroller[0].offsetHeight; + if (noTriggerScroll !== true) { + timeboxparent.trigger('scroll_element.xdsoft_scroller', [percentage || Math.abs(parseInt(timebox.css('marginTop'), 10)) / (height - parentHeight)]); + } + } + }); + + timeboxparent.on('mousewheel', function (event) { + var top = Math.abs(parseInt(timebox.css('marginTop'), 10)); + + top = top - (event.deltaY * 20); + if (top < 0) { + top = 0; + } + + timeboxparent.trigger('scroll_element.xdsoft_scroller', [top / (height - parentHeight)]); + event.stopPropagation(); + return false; + }); + + timeboxparent.on('touchstart', function (event) { + start = pointerEventToXY(event); + startTop = Math.abs(parseInt(timebox.css('marginTop'), 10)); + }); + + timeboxparent.on('touchmove', function (event) { + if (start) { + event.preventDefault(); + var coord = pointerEventToXY(event); + timeboxparent.trigger('scroll_element.xdsoft_scroller', [(startTop - (coord.y - start.y)) / (height - parentHeight)]); + } + }); + + timeboxparent.on('touchend touchcancel', function (event) { + start = false; + startTop = 0; + }); + } + timeboxparent.trigger('resize_scroll.xdsoft_scroller', [percent]); + }); + }; + + $.fn.datetimepicker = function (opt) { + var KEY0 = 48, + KEY9 = 57, + _KEY0 = 96, + _KEY9 = 105, + CTRLKEY = 17, + DEL = 46, + ENTER = 13, + ESC = 27, + BACKSPACE = 8, + ARROWLEFT = 37, + ARROWUP = 38, + ARROWRIGHT = 39, + ARROWDOWN = 40, + TAB = 9, + F5 = 116, + AKEY = 65, + CKEY = 67, + VKEY = 86, + ZKEY = 90, + YKEY = 89, + ctrlDown = false, + options = ($.isPlainObject(opt) || !opt) ? $.extend(true, {}, default_options, opt) : $.extend(true, {}, default_options), + + lazyInitTimer = 0, + createDateTimePicker, + destroyDateTimePicker, + _xdsoft_datetime, + + lazyInit = function (input) { + input + .on('open.xdsoft focusin.xdsoft mousedown.xdsoft', function initOnActionCallback(event) { + if (input.is(':disabled') || input.is(':hidden') || !input.is(':visible') || input.data('xdsoft_datetimepicker')) { + return; + } + clearTimeout(lazyInitTimer); + lazyInitTimer = setTimeout(function () { + + if (!input.data('xdsoft_datetimepicker')) { + createDateTimePicker(input); + } + input + .off('open.xdsoft focusin.xdsoft mousedown.xdsoft', initOnActionCallback) + .trigger('open.xdsoft'); + }, 100); + }); + }; + + createDateTimePicker = function (input) { + var datetimepicker = $('
    '), + xdsoft_copyright = $(''), + datepicker = $('
    '), + mounth_picker = $('
    ' + + '
    ' + + '
    ' + + '
    '), + calendar = $('
    '), + timepicker = $('
    '), + timeboxparent = timepicker.find('.xdsoft_time_box').eq(0), + timebox = $('
    '), + /*scrollbar = $('
    '), + scroller = $('
    '),*/ + monthselect = $('
    '), + yearselect = $('
    '), + triggerAfterOpen = false, + XDSoft_datetime, + //scroll_element, + xchangeTimer, + timerclick, + current_time_index, + setPos, + timer = 0, + timer1 = 0; + + mounth_picker + .find('.xdsoft_month span') + .after(monthselect); + mounth_picker + .find('.xdsoft_year span') + .after(yearselect); + + mounth_picker + .find('.xdsoft_month,.xdsoft_year') + .on('mousedown.xdsoft', function (event) { + var select = $(this).find('.xdsoft_select').eq(0), + val = 0, + top = 0, + visible = select.is(':visible'), + items, + i; + + mounth_picker + .find('.xdsoft_select') + .hide(); + if (_xdsoft_datetime.currentTime) { + val = _xdsoft_datetime.currentTime[$(this).hasClass('xdsoft_month') ? 'getMonth' : 'getFullYear'](); + } + + select[visible ? 'hide' : 'show'](); + for (items = select.find('div.xdsoft_option'), i = 0; i < items.length; i += 1) { + if (items.eq(i).data('value') === val) { + break; + } else { + top += items[0].offsetHeight; + } + } + + select.xdsoftScroller(top / (select.children()[0].offsetHeight - (select[0].clientHeight))); + event.stopPropagation(); + return false; + }); + + mounth_picker + .find('.xdsoft_select') + .xdsoftScroller() + .on('mousedown.xdsoft', function (event) { + event.stopPropagation(); + event.preventDefault(); + }) + .on('mousedown.xdsoft', '.xdsoft_option', function (event) { + var year = _xdsoft_datetime.currentTime.getFullYear(); + if (_xdsoft_datetime && _xdsoft_datetime.currentTime) { + _xdsoft_datetime.currentTime[$(this).parent().parent().hasClass('xdsoft_monthselect') ? 'setMonth' : 'setFullYear']($(this).data('value')); + } + + $(this).parent().parent().hide(); + + datetimepicker.trigger('xchange.xdsoft'); + if (options.onChangeMonth && $.isFunction(options.onChangeMonth)) { + options.onChangeMonth.call(datetimepicker, _xdsoft_datetime.currentTime, datetimepicker.data('input')); + } + + if (year !== _xdsoft_datetime.currentTime.getFullYear() && $.isFunction(options.onChangeYear)) { + options.onChangeYear.call(datetimepicker, _xdsoft_datetime.currentTime, datetimepicker.data('input')); + } + }); + + datetimepicker.setOptions = function (_options) { + options = $.extend(true, {}, options, _options); + + if (_options.allowTimes && $.isArray(_options.allowTimes) && _options.allowTimes.length) { + options.allowTimes = $.extend(true, [], _options.allowTimes); + } + + if (_options.weekends && $.isArray(_options.weekends) && _options.weekends.length) { + options.weekends = $.extend(true, [], _options.weekends); + } + + if (_options.disabledDates && $.isArray(_options.disabledDates) && _options.disabledDates.length) { + options.disabledDates = $.extend(true, [], _options.disabledDates); + } + + if ((options.open || options.opened) && (!options.inline)) { + input.trigger('open.xdsoft'); + } + + if (options.inline) { + triggerAfterOpen = true; + datetimepicker.addClass('xdsoft_inline'); + input.after(datetimepicker).hide(); + } + + if (options.inverseButton) { + options.next = 'xdsoft_prev'; + options.prev = 'xdsoft_next'; + } + + if (options.datepicker) { + datepicker.addClass('active'); + } else { + datepicker.removeClass('active'); + } + + if (options.timepicker) { + timepicker.addClass('active'); + } else { + timepicker.removeClass('active'); + } + + if (options.value) { + if (input && input.val) { + input.val(options.value); + } + _xdsoft_datetime.setCurrentTime(options.value); + } + + if (isNaN(options.dayOfWeekStart)) { + options.dayOfWeekStart = 0; + } else { + options.dayOfWeekStart = parseInt(options.dayOfWeekStart, 10) % 7; + } + + if (!options.timepickerScrollbar) { + timeboxparent.xdsoftScroller('hide'); + } + + if (options.minDate && /^-(.*)$/.test(options.minDate)) { + options.minDate = _xdsoft_datetime.strToDateTime(options.minDate).dateFormat(options.formatDate); + } + + if (options.maxDate && /^\+(.*)$/.test(options.maxDate)) { + options.maxDate = _xdsoft_datetime.strToDateTime(options.maxDate).dateFormat(options.formatDate); + } + + mounth_picker + .find('.xdsoft_today_button') + .css('visibility', !options.todayButton ? 'hidden' : 'visible'); + + if (options.mask) { + var e, + getCaretPos = function (input) { + try { + if (document.selection && document.selection.createRange) { + var range = document.selection.createRange(); + return range.getBookmark().charCodeAt(2) - 2; + } + if (input.setSelectionRange) { + return input.selectionStart; + } + } catch (e) { + return 0; + } + }, + setCaretPos = function (node, pos) { + node = (typeof node === "string" || node instanceof String) ? document.getElementById(node) : node; + if (!node) { + return false; + } + if (node.createTextRange) { + var textRange = node.createTextRange(); + textRange.collapse(true); + textRange.moveEnd('character', pos); + textRange.moveStart('character', pos); + textRange.select(); + return true; + } + if (node.setSelectionRange) { + node.setSelectionRange(pos, pos); + return true; + } + return false; + }, + isValidValue = function (mask, value) { + var reg = mask + .replace(/([\[\]\/\{\}\(\)\-\.\+]{1})/g, '\\$1') + .replace(/_/g, '{digit+}') + .replace(/([0-9]{1})/g, '{digit$1}') + .replace(/\{digit([0-9]{1})\}/g, '[0-$1_]{1}') + .replace(/\{digit[\+]\}/g, '[0-9_]{1}'); + return (new RegExp(reg)).test(value); + }; + input.off('keydown.xdsoft'); + + if (options.mask === true) { + options.mask = options.format + .replace(/Y/g, '9999') + .replace(/F/g, '9999') + .replace(/m/g, '19') + .replace(/d/g, '39') + .replace(/H/g, '29') + .replace(/i/g, '59') + .replace(/s/g, '59'); + } + + if ($.type(options.mask) === 'string') { + if (!isValidValue(options.mask, input.val())) { + input.val(options.mask.replace(/[0-9]/g, '_')); + } + + input.on('keydown.xdsoft', function (event) { + var val = this.value, + key = event.which, + pos, + digit; + + if (((key >= KEY0 && key <= KEY9) || (key >= _KEY0 && key <= _KEY9)) || (key === BACKSPACE || key === DEL)) { + pos = getCaretPos(this); + digit = (key !== BACKSPACE && key !== DEL) ? String.fromCharCode((_KEY0 <= key && key <= _KEY9) ? key - KEY0 : key) : '_'; + + if ((key === BACKSPACE || key === DEL) && pos) { + pos -= 1; + digit = '_'; + } + + while (/[^0-9_]/.test(options.mask.substr(pos, 1)) && pos < options.mask.length && pos > 0) { + pos += (key === BACKSPACE || key === DEL) ? -1 : 1; + } + + val = val.substr(0, pos) + digit + val.substr(pos + 1); + if ($.trim(val) === '') { + val = options.mask.replace(/[0-9]/g, '_'); + } else { + if (pos === options.mask.length) { + event.preventDefault(); + return false; + } + } + + pos += (key === BACKSPACE || key === DEL) ? 0 : 1; + while (/[^0-9_]/.test(options.mask.substr(pos, 1)) && pos < options.mask.length && pos > 0) { + pos += (key === BACKSPACE || key === DEL) ? -1 : 1; + } + + if (isValidValue(options.mask, val)) { + this.value = val; + setCaretPos(this, pos); + } else if ($.trim(val) === '') { + this.value = options.mask.replace(/[0-9]/g, '_'); + } else { + input.trigger('error_input.xdsoft'); + } + } else { + if (([AKEY, CKEY, VKEY, ZKEY, YKEY].indexOf(key) !== -1 && ctrlDown) || [ESC, ARROWUP, ARROWDOWN, ARROWLEFT, ARROWRIGHT, F5, CTRLKEY, TAB, ENTER].indexOf(key) !== -1) { + return true; + } + } + + event.preventDefault(); + return false; + }); + } + } + if (options.validateOnBlur) { + input + .off('blur.xdsoft') + .on('blur.xdsoft', function () { + if (options.allowBlank && !$.trim($(this).val()).length) { + $(this).val(null); + datetimepicker.data('xdsoft_datetime').empty(); + } else if (!Date.parseDate($(this).val(), options.format)) { + $(this).val((_xdsoft_datetime.now()).dateFormat(options.format)); + datetimepicker.data('xdsoft_datetime').setCurrentTime($(this).val()); + } else { + datetimepicker.data('xdsoft_datetime').setCurrentTime($(this).val()); + } + datetimepicker.trigger('changedatetime.xdsoft'); + }); + } + options.dayOfWeekStartPrev = (options.dayOfWeekStart === 0) ? 6 : options.dayOfWeekStart - 1; + + datetimepicker + .trigger('xchange.xdsoft') + .trigger('afterOpen.xdsoft'); + }; + + datetimepicker + .data('options', options) + .on('mousedown.xdsoft', function (event) { + event.stopPropagation(); + event.preventDefault(); + yearselect.hide(); + monthselect.hide(); + return false; + }); + + //scroll_element = timepicker.find('.xdsoft_time_box'); + timeboxparent.append(timebox); + timeboxparent.xdsoftScroller(); + + datetimepicker.on('afterOpen.xdsoft', function () { + timeboxparent.xdsoftScroller(); + }); + + datetimepicker + .append(datepicker) + .append(timepicker); + + if (options.withoutCopyright !== true) { + datetimepicker + .append(xdsoft_copyright); + } + + datepicker + .append(mounth_picker) + .append(calendar); + + $(options.parentID) + .append(datetimepicker); + + XDSoft_datetime = function () { + var _this = this; + _this.now = function (norecursion) { + var d = new Date(), + date, + time; + + if (!norecursion && options.defaultDate) { + date = _this.strToDate(options.defaultDate); + d.setFullYear(date.getFullYear()); + d.setMonth(date.getMonth()); + d.setDate(date.getDate()); + } + + if (options.yearOffset) { + d.setFullYear(d.getFullYear() + options.yearOffset); + } + + if (!norecursion && options.defaultTime) { + time = _this.strtotime(options.defaultTime); + d.setHours(time.getHours()); + d.setMinutes(time.getMinutes()); + } + + return d; + }; + + _this.isValidDate = function (d) { + if (Object.prototype.toString.call(d) !== "[object Date]") { + return false; + } + return !isNaN(d.getTime()); + }; + + _this.setCurrentTime = function (dTime) { + _this.currentTime = (typeof dTime === 'string') ? _this.strToDateTime(dTime) : _this.isValidDate(dTime) ? dTime : _this.now(); + datetimepicker.trigger('xchange.xdsoft'); + }; + + _this.empty = function () { + _this.currentTime = null; + }; + + _this.getCurrentTime = function (dTime) { + return _this.currentTime; + }; + + _this.nextMonth = function () { + var month = _this.currentTime.getMonth() + 1, + year; + if (month === 12) { + _this.currentTime.setFullYear(_this.currentTime.getFullYear() + 1); + month = 0; + } + + year = _this.currentTime.getFullYear(); + + _this.currentTime.setDate( + Math.min( + new Date(_this.currentTime.getFullYear(), month + 1, 0).getDate(), + _this.currentTime.getDate() + ) + ); + _this.currentTime.setMonth(month); + + if (options.onChangeMonth && $.isFunction(options.onChangeMonth)) { + options.onChangeMonth.call(datetimepicker, _xdsoft_datetime.currentTime, datetimepicker.data('input')); + } + + if (year !== _this.currentTime.getFullYear() && $.isFunction(options.onChangeYear)) { + options.onChangeYear.call(datetimepicker, _xdsoft_datetime.currentTime, datetimepicker.data('input')); + } + + datetimepicker.trigger('xchange.xdsoft'); + return month; + }; + + _this.prevMonth = function () { + var month = _this.currentTime.getMonth() - 1; + if (month === -1) { + _this.currentTime.setFullYear(_this.currentTime.getFullYear() - 1); + month = 11; + } + _this.currentTime.setDate( + Math.min( + new Date(_this.currentTime.getFullYear(), month + 1, 0).getDate(), + _this.currentTime.getDate() + ) + ); + _this.currentTime.setMonth(month); + if (options.onChangeMonth && $.isFunction(options.onChangeMonth)) { + options.onChangeMonth.call(datetimepicker, _xdsoft_datetime.currentTime, datetimepicker.data('input')); + } + datetimepicker.trigger('xchange.xdsoft'); + return month; + }; + + _this.getWeekOfYear = function (datetime) { + var onejan = new Date(datetime.getFullYear(), 0, 1); + return Math.ceil((((datetime - onejan) / 86400000) + onejan.getDay() + 1) / 7); + }; + + _this.strToDateTime = function (sDateTime) { + var tmpDate = [], timeOffset, currentTime; + + if (sDateTime && sDateTime instanceof Date && _this.isValidDate(sDateTime)) { + return sDateTime; + } + + tmpDate = /^(\+|\-)(.*)$/.exec(sDateTime); + if (tmpDate) { + tmpDate[2] = Date.parseDate(tmpDate[2], options.formatDate); + } + if (tmpDate && tmpDate[2]) { + timeOffset = tmpDate[2].getTime() - (tmpDate[2].getTimezoneOffset()) * 60000; + currentTime = new Date((_xdsoft_datetime.now()).getTime() + parseInt(tmpDate[1] + '1', 10) * timeOffset); + } else { + currentTime = sDateTime ? Date.parseDate(sDateTime, options.format) : _this.now(); + } + + if (!_this.isValidDate(currentTime)) { + currentTime = _this.now(); + } + + return currentTime; + }; + + _this.strToDate = function (sDate) { + if (sDate && sDate instanceof Date && _this.isValidDate(sDate)) { + return sDate; + } + + var currentTime = sDate ? Date.parseDate(sDate, options.formatDate) : _this.now(true); + if (!_this.isValidDate(currentTime)) { + currentTime = _this.now(true); + } + return currentTime; + }; + + _this.strtotime = function (sTime) { + if (sTime && sTime instanceof Date && _this.isValidDate(sTime)) { + return sTime; + } + var currentTime = sTime ? Date.parseDate(sTime, options.formatTime) : _this.now(true); + if (!_this.isValidDate(currentTime)) { + currentTime = _this.now(true); + } + return currentTime; + }; + + _this.str = function () { + return _this.currentTime.dateFormat(options.format); + }; + _this.currentTime = this.now(); + }; + + _xdsoft_datetime = new XDSoft_datetime(); + + mounth_picker + .find('.xdsoft_today_button') + .on('mousedown.xdsoft', function () { + datetimepicker.data('changed', true); + _xdsoft_datetime.setCurrentTime(0); + datetimepicker.trigger('afterOpen.xdsoft'); + }).on('dblclick.xdsoft', function () { + input.val(_xdsoft_datetime.str()); + datetimepicker.trigger('close.xdsoft'); + }); + mounth_picker + .find('.xdsoft_prev,.xdsoft_next') + .on('mousedown.xdsoft', function () { + var $this = $(this), + timer = 0, + stop = false; + + (function arguments_callee1(v) { + var month = _xdsoft_datetime.currentTime.getMonth(); + if ($this.hasClass(options.next)) { + _xdsoft_datetime.nextMonth(); + } else if ($this.hasClass(options.prev)) { + _xdsoft_datetime.prevMonth(); + } + if (options.monthChangeSpinner) { + if (!stop) { + timer = setTimeout(arguments_callee1, v || 100); + } + } + }(500)); + + $([document.body, window]).on('mouseup.xdsoft', function arguments_callee2() { + clearTimeout(timer); + stop = true; + $([document.body, window]).off('mouseup.xdsoft', arguments_callee2); + }); + }); + + timepicker + .find('.xdsoft_prev,.xdsoft_next') + .on('mousedown.xdsoft', function () { + var $this = $(this), + timer = 0, + stop = false, + period = 110; + (function arguments_callee4(v) { + var pheight = timeboxparent[0].clientHeight, + height = timebox[0].offsetHeight, + top = Math.abs(parseInt(timebox.css('marginTop'), 10)); + if ($this.hasClass(options.next) && (height - pheight) - options.timeHeightInTimePicker >= top) { + timebox.css('marginTop', '-' + (top + options.timeHeightInTimePicker) + 'px'); + } else if ($this.hasClass(options.prev) && top - options.timeHeightInTimePicker >= 0) { + timebox.css('marginTop', '-' + (top - options.timeHeightInTimePicker) + 'px'); + } + timeboxparent.trigger('scroll_element.xdsoft_scroller', [Math.abs(parseInt(timebox.css('marginTop'), 10) / (height - pheight))]); + period = (period > 10) ? 10 : period - 10; + if (!stop) { + timer = setTimeout(arguments_callee4, v || period); + } + }(500)); + $([document.body, window]).on('mouseup.xdsoft', function arguments_callee5() { + clearTimeout(timer); + stop = true; + $([document.body, window]) + .off('mouseup.xdsoft', arguments_callee5); + }); + }); + + xchangeTimer = 0; + // base handler - generating a calendar and timepicker + datetimepicker + .on('xchange.xdsoft', function (event) { + clearTimeout(xchangeTimer); + xchangeTimer = setTimeout(function () { + var table = '', + start = new Date(_xdsoft_datetime.currentTime.getFullYear(), _xdsoft_datetime.currentTime.getMonth(), 1, 12, 0, 0), + i = 0, + j, + today = _xdsoft_datetime.now(), + maxDate = false, + minDate = false, + d, + y, + m, + w, + classes = [], + customDateSettings, + newRow = true, + time = '', + h = '', + line_time; + + while (start.getDay() !== options.dayOfWeekStart) { + start.setDate(start.getDate() - 1); + } + + table += ''; + + if (options.weeks) { + table += ''; + } + + for (j = 0; j < 7; j += 1) { + table += ''; + } + + table += ''; + table += ''; + + if (options.maxDate !== false) { + maxDate = _xdsoft_datetime.strToDate(options.maxDate); + maxDate = new Date(maxDate.getFullYear(), maxDate.getMonth(), maxDate.getDate(), 23, 59, 59, 999); + } + + if (options.minDate !== false) { + minDate = _xdsoft_datetime.strToDate(options.minDate); + minDate = new Date(minDate.getFullYear(), minDate.getMonth(), minDate.getDate()); + } + + while (i < _xdsoft_datetime.currentTime.countDaysInMonth() || start.getDay() !== options.dayOfWeekStart || _xdsoft_datetime.currentTime.getMonth() === start.getMonth()) { + classes = []; + i += 1; + + d = start.getDate(); + y = start.getFullYear(); + m = start.getMonth(); + w = _xdsoft_datetime.getWeekOfYear(start); + + classes.push('xdsoft_date'); + + if (options.beforeShowDay && $.isFunction(options.beforeShowDay.call)) { + customDateSettings = options.beforeShowDay.call(datetimepicker, start); + } else { + customDateSettings = null; + } + + if ((maxDate !== false && start > maxDate) || (minDate !== false && start < minDate) || (customDateSettings && customDateSettings[0] === false)) { + classes.push('xdsoft_disabled'); + } else if (options.disabledDates.indexOf(start.dateFormat(options.formatDate)) !== -1) { + classes.push('xdsoft_disabled'); + } + + if (customDateSettings && customDateSettings[1] !== "") { + classes.push(customDateSettings[1]); + } + + if (_xdsoft_datetime.currentTime.getMonth() !== m) { + classes.push('xdsoft_other_month'); + } + + if ((options.defaultSelect || datetimepicker.data('changed')) && _xdsoft_datetime.currentTime.dateFormat(options.formatDate) === start.dateFormat(options.formatDate)) { + classes.push('xdsoft_current'); + } + + if (today.dateFormat(options.formatDate) === start.dateFormat(options.formatDate)) { + classes.push('xdsoft_today'); + } + + if (start.getDay() === 0 || start.getDay() === 6 || options.weekends.indexOf(start.dateFormat(options.formatDate)) === -1) { + classes.push('xdsoft_weekend'); + } + + if (options.beforeShowDay && $.isFunction(options.beforeShowDay)) { + classes.push(options.beforeShowDay(start)); + } + + if (newRow) { + table += ''; + newRow = false; + if (options.weeks) { + table += ''; + } + } + + table += ''; + + if (start.getDay() === options.dayOfWeekStartPrev) { + table += ''; + newRow = true; + } + + start.setDate(d + 1); + } + table += '
    ' + options.i18n[options.lang].dayOfWeek[(j + options.dayOfWeekStart) % 7] + '
    ' + w + '' + + '
    ' + d + '
    ' + + '
    '; + + calendar.html(table); + + mounth_picker.find('.xdsoft_label span').eq(0).text(options.i18n[options.lang].months[_xdsoft_datetime.currentTime.getMonth()]); + mounth_picker.find('.xdsoft_label span').eq(1).text(_xdsoft_datetime.currentTime.getFullYear()); + + // generate timebox + time = ''; + h = ''; + m = ''; + line_time = function line_time(h, m) { + var now = _xdsoft_datetime.now(); + now.setHours(h); + h = parseInt(now.getHours(), 10); + now.setMinutes(m); + m = parseInt(now.getMinutes(), 10); + + classes = []; + if ((options.maxTime !== false && _xdsoft_datetime.strtotime(options.maxTime).getTime() < now.getTime()) || (options.minTime !== false && _xdsoft_datetime.strtotime(options.minTime).getTime() > now.getTime())) { + classes.push('xdsoft_disabled'); + } + if ((options.initTime || options.defaultSelect || datetimepicker.data('changed')) && parseInt(_xdsoft_datetime.currentTime.getHours(), 10) === parseInt(h, 10) && (options.step > 59 || Math[options.roundTime](_xdsoft_datetime.currentTime.getMinutes() / options.step) * options.step === parseInt(m, 10))) { + if (options.defaultSelect || datetimepicker.data('changed')) { + classes.push('xdsoft_current'); + } else if (options.initTime) { + classes.push('xdsoft_init_time'); + } + } + if (parseInt(today.getHours(), 10) === parseInt(h, 10) && parseInt(today.getMinutes(), 10) === parseInt(m, 10)) { + classes.push('xdsoft_today'); + } + time += '
    ' + now.dateFormat(options.formatTime) + '
    '; + }; + + if (!options.allowTimes || !$.isArray(options.allowTimes) || !options.allowTimes.length) { + for (i = 0, j = 0; i < (options.hours12 ? 12 : 24); i += 1) { + for (j = 0; j < 60; j += options.step) { + h = (i < 10 ? '0' : '') + i; + m = (j < 10 ? '0' : '') + j; + line_time(h, m); + } + } + } else { + for (i = 0; i < options.allowTimes.length; i += 1) { + h = _xdsoft_datetime.strtotime(options.allowTimes[i]).getHours(); + m = _xdsoft_datetime.strtotime(options.allowTimes[i]).getMinutes(); + line_time(h, m); + } + } + + timebox.html(time); + + opt = ''; + i = 0; + + for (i = parseInt(options.yearStart, 10) + options.yearOffset; i <= parseInt(options.yearEnd, 10) + options.yearOffset; i += 1) { + opt += '
    ' + i + '
    '; + } + yearselect.children().eq(0) + .html(opt); + + for (i = 0, opt = ''; i <= 11; i += 1) { + opt += '
    ' + options.i18n[options.lang].months[i] + '
    '; + } + monthselect.children().eq(0).html(opt); + $(datetimepicker) + .trigger('generate.xdsoft'); + }, 10); + event.stopPropagation(); + }) + .on('afterOpen.xdsoft', function () { + if (options.timepicker) { + var classType, pheight, height, top; + if (timebox.find('.xdsoft_current').length) { + classType = '.xdsoft_current'; + } else if (timebox.find('.xdsoft_init_time').length) { + classType = '.xdsoft_init_time'; + } + if (classType) { + pheight = timeboxparent[0].clientHeight; + height = timebox[0].offsetHeight; + top = timebox.find(classType).index() * options.timeHeightInTimePicker + 1; + if ((height - pheight) < top) { + top = height - pheight; + } + timeboxparent.trigger('scroll_element.xdsoft_scroller', [parseInt(top, 10) / (height - pheight)]); + } else { + timeboxparent.trigger('scroll_element.xdsoft_scroller', [0]); + } + } + }); + + timerclick = 0; + calendar + .on('click.xdsoft', 'td', function (xdevent) { + xdevent.stopPropagation(); // Prevents closing of Pop-ups, Modals and Flyouts in Bootstrap + timerclick += 1; + var $this = $(this), + currentTime = _xdsoft_datetime.currentTime; + + if (currentTime === undefined || currentTime === null) { + _xdsoft_datetime.currentTime = _xdsoft_datetime.now(); + currentTime = _xdsoft_datetime.currentTime; + } + + if ($this.hasClass('xdsoft_disabled')) { + return false; + } + + currentTime.setDate(1); + currentTime.setFullYear($this.data('year')); + currentTime.setMonth($this.data('month')); + currentTime.setDate($this.data('date')); + + datetimepicker.trigger('select.xdsoft', [currentTime]); + + input.val(_xdsoft_datetime.str()); + if ((timerclick > 1 || (options.closeOnDateSelect === true || (options.closeOnDateSelect === 0 && !options.timepicker))) && !options.inline) { + datetimepicker.trigger('close.xdsoft'); + } + + if (options.onSelectDate && $.isFunction(options.onSelectDate)) { + options.onSelectDate.call(datetimepicker, _xdsoft_datetime.currentTime, datetimepicker.data('input'), xdevent); + } + + datetimepicker.data('changed', true); + datetimepicker.trigger('xchange.xdsoft'); + datetimepicker.trigger('changedatetime.xdsoft'); + setTimeout(function () { + timerclick = 0; + }, 200); + }); + + timebox + .on('click.xdsoft', 'div', function (xdevent) { + xdevent.stopPropagation(); + var $this = $(this), + currentTime = _xdsoft_datetime.currentTime; + + if (currentTime === undefined || currentTime === null) { + _xdsoft_datetime.currentTime = _xdsoft_datetime.now(); + currentTime = _xdsoft_datetime.currentTime; + } + + if ($this.hasClass('xdsoft_disabled')) { + return false; + } + currentTime.setHours($this.data('hour')); + currentTime.setMinutes($this.data('minute')); + datetimepicker.trigger('select.xdsoft', [currentTime]); + + datetimepicker.data('input').val(_xdsoft_datetime.str()); + if (!options.inline) { + datetimepicker.trigger('close.xdsoft'); + } + + if (options.onSelectTime && $.isFunction(options.onSelectTime)) { + options.onSelectTime.call(datetimepicker, _xdsoft_datetime.currentTime, datetimepicker.data('input'), xdevent); + } + datetimepicker.data('changed', true); + datetimepicker.trigger('xchange.xdsoft'); + datetimepicker.trigger('changedatetime.xdsoft'); + }); + + + datepicker + .on('mousewheel.xdsoft', function (event) { + if (!options.scrollMonth) { + return true; + } + if (event.deltaY < 0) { + _xdsoft_datetime.nextMonth(); + } else { + _xdsoft_datetime.prevMonth(); + } + return false; + }); + + input + .on('mousewheel.xdsoft', function (event) { + if (!options.scrollInput) { + return true; + } + if (!options.datepicker && options.timepicker) { + current_time_index = timebox.find('.xdsoft_current').length ? timebox.find('.xdsoft_current').eq(0).index() : 0; + if (current_time_index + event.deltaY >= 0 && current_time_index + event.deltaY < timebox.children().length) { + current_time_index += event.deltaY; + } + if (timebox.children().eq(current_time_index).length) { + timebox.children().eq(current_time_index).trigger('mousedown'); + } + return false; + } + if (options.datepicker && !options.timepicker) { + datepicker.trigger(event, [event.deltaY, event.deltaX, event.deltaY]); + if (input.val) { + input.val(_xdsoft_datetime.str()); + } + datetimepicker.trigger('changedatetime.xdsoft'); + return false; + } + }); + + datetimepicker + .on('changedatetime.xdsoft', function (event) { + if (options.onChangeDateTime && $.isFunction(options.onChangeDateTime)) { + var $input = datetimepicker.data('input'); + options.onChangeDateTime.call(datetimepicker, _xdsoft_datetime.currentTime, $input, event); + delete options.value; + $input.trigger('change'); + } + }) + .on('generate.xdsoft', function () { + if (options.onGenerate && $.isFunction(options.onGenerate)) { + options.onGenerate.call(datetimepicker, _xdsoft_datetime.currentTime, datetimepicker.data('input')); + } + if (triggerAfterOpen) { + datetimepicker.trigger('afterOpen.xdsoft'); + triggerAfterOpen = false; + } + }) + .on('click.xdsoft', function (xdevent) { + xdevent.stopPropagation(); + }); + + current_time_index = 0; + + setPos = function () { + var offset = datetimepicker.data('input').offset(), top = offset.top + datetimepicker.data('input')[0].offsetHeight - 1, left = offset.left, position = "absolute"; + if (options.fixed) { + top -= $(window).scrollTop(); + left -= $(window).scrollLeft(); + position = "fixed"; + } else { + if (top + datetimepicker[0].offsetHeight > $(window).height() + $(window).scrollTop()) { + top = offset.top - datetimepicker[0].offsetHeight + 1; + } + if (top < 0) { + top = 0; + } + if (left + datetimepicker[0].offsetWidth > $(window).width()) { + left = $(window).width() - datetimepicker[0].offsetWidth; + } + } + datetimepicker.css({ + left: left, + top: top, + position: position + }); + }; + datetimepicker + .on('open.xdsoft', function (event) { + var onShow = true; + if (options.onShow && $.isFunction(options.onShow)) { + onShow = options.onShow.call(datetimepicker, _xdsoft_datetime.currentTime, datetimepicker.data('input'), event); + } + if (onShow !== false) { + datetimepicker.show(); + setPos(); + $(window) + .off('resize.xdsoft', setPos) + .on('resize.xdsoft', setPos); + + if (options.closeOnWithoutClick) { + $([document.body, window]).on('mousedown.xdsoft', function arguments_callee6() { + datetimepicker.trigger('close.xdsoft'); + $([document.body, window]).off('mousedown.xdsoft', arguments_callee6); + }); + } + } + }) + .on('close.xdsoft', function (event) { + var onClose = true; + mounth_picker + .find('.xdsoft_month,.xdsoft_year') + .find('.xdsoft_select') + .hide(); + if (options.onClose && $.isFunction(options.onClose)) { + onClose = options.onClose.call(datetimepicker, _xdsoft_datetime.currentTime, datetimepicker.data('input'), event); + } + if (onClose !== false && !options.opened && !options.inline) { + datetimepicker.hide(); + } + event.stopPropagation(); + }) + .on('toggle.xdsoft', function (event) { + datetimepicker.is(':visible') ? datetimepicker.trigger('close.xdsoft') : datetimepicker.trigger('open.xdsoft'); + }) + .data('input', input); + + timer = 0; + timer1 = 0; + + datetimepicker.data('xdsoft_datetime', _xdsoft_datetime); + datetimepicker.setOptions(options); + + function getCurrentValue() { + + var ct = false, time; + + if (options.startDate) { + ct = _xdsoft_datetime.strToDate(options.startDate); + } else { + ct = options.value || ((input && input.val && input.val()) ? input.val() : ''); + if (ct) { + ct = _xdsoft_datetime.strToDateTime(ct); + } else if (options.defaultDate) { + ct = _xdsoft_datetime.strToDate(options.defaultDate); + if (options.defaultTime) { + time = _xdsoft_datetime.strtotime(options.defaultTime); + ct.setHours(time.getHours()); + ct.setMinutes(time.getMinutes()); + } + } + } + + if (ct && _xdsoft_datetime.isValidDate(ct)) { + datetimepicker.data('changed', true); + } else { + ct = ''; + } + + return ct || 0; + } + + _xdsoft_datetime.setCurrentTime(getCurrentValue()); + + input + .data('xdsoft_datetimepicker', datetimepicker) + .on('open.xdsoft focusin.xdsoft mousedown.xdsoft', function (event) { + if (input.is(':disabled') || input.is(':hidden') || !input.is(':visible') || (input.data('xdsoft_datetimepicker').is(':visible') && options.closeOnInputClick)) { + return; + } + clearTimeout(timer); + timer = setTimeout(function () { + if (input.is(':disabled') || input.is(':hidden') || !input.is(':visible')) { + return; + } + + triggerAfterOpen = true; + _xdsoft_datetime.setCurrentTime(getCurrentValue()); + + datetimepicker.trigger('open.xdsoft'); + }, 100); + }) + .on('keydown.xdsoft', function (event) { + var val = this.value, elementSelector, + key = event.which; + if ([ENTER].indexOf(key) !== -1 && options.enterLikeTab) { + elementSelector = $("input:visible,textarea:visible"); + datetimepicker.trigger('close.xdsoft'); + elementSelector.eq(elementSelector.index(this) + 1).focus(); + return false; + } + if ([TAB].indexOf(key) !== -1) { + datetimepicker.trigger('close.xdsoft'); + return true; + } + }); + }; + destroyDateTimePicker = function (input) { + var datetimepicker = input.data('xdsoft_datetimepicker'); + if (datetimepicker) { + datetimepicker.data('xdsoft_datetime', null); + datetimepicker.remove(); + input + .data('xdsoft_datetimepicker', null) + .off('.xdsoft'); + $(window).off('resize.xdsoft'); + $([window, document.body]).off('mousedown.xdsoft'); + if (input.unmousewheel) { + input.unmousewheel(); + } + } + }; + $(document) + .off('keydown.xdsoftctrl keyup.xdsoftctrl') + .on('keydown.xdsoftctrl', function (e) { + if (e.keyCode === CTRLKEY) { + ctrlDown = true; + } + }) + .on('keyup.xdsoftctrl', function (e) { + if (e.keyCode === CTRLKEY) { + ctrlDown = false; + } + }); + return this.each(function () { + var datetimepicker = $(this).data('xdsoft_datetimepicker'); + if (datetimepicker) { + if ($.type(opt) === 'string') { + switch (opt) { + case 'show': + $(this).select().focus(); + datetimepicker.trigger('open.xdsoft'); + break; + case 'hide': + datetimepicker.trigger('close.xdsoft'); + break; + case 'toggle': + datetimepicker.trigger('toggle.xdsoft'); + break; + case 'destroy': + destroyDateTimePicker($(this)); + break; + case 'reset': + this.value = this.defaultValue; + if (!this.value || !datetimepicker.data('xdsoft_datetime').isValidDate(Date.parseDate(this.value, options.format))) { + datetimepicker.data('changed', false); + } + datetimepicker.data('xdsoft_datetime').setCurrentTime(this.value); + break; + } + } else { + datetimepicker + .setOptions(opt); + } + return 0; + } + if ($.type(opt) !== 'string') { + if (!options.lazyInit || options.open || options.inline) { + createDateTimePicker($(this)); + } else { + lazyInit($(this)); + } + } + }); + }; + $.fn.datetimepicker.defaults = default_options; +}(jQuery)); +(function () { + +/*! Copyright (c) 2013 Brandon Aaron (http://brandon.aaron.sh) + * Licensed under the MIT License (LICENSE.txt). + * + * Version: 3.1.12 + * + * Requires: jQuery 1.2.2+ + */ +!function(a){"function"==typeof define&&define.amd?define(["jquery"],a):"object"==typeof exports?module.exports=a:a(jQuery)}(function(a){function b(b){var g=b||window.event,h=i.call(arguments,1),j=0,l=0,m=0,n=0,o=0,p=0;if(b=a.event.fix(g),b.type="mousewheel","detail"in g&&(m=-1*g.detail),"wheelDelta"in g&&(m=g.wheelDelta),"wheelDeltaY"in g&&(m=g.wheelDeltaY),"wheelDeltaX"in g&&(l=-1*g.wheelDeltaX),"axis"in g&&g.axis===g.HORIZONTAL_AXIS&&(l=-1*m,m=0),j=0===m?l:m,"deltaY"in g&&(m=-1*g.deltaY,j=m),"deltaX"in g&&(l=g.deltaX,0===m&&(j=-1*l)),0!==m||0!==l){if(1===g.deltaMode){var q=a.data(this,"mousewheel-line-height");j*=q,m*=q,l*=q}else if(2===g.deltaMode){var r=a.data(this,"mousewheel-page-height");j*=r,m*=r,l*=r}if(n=Math.max(Math.abs(m),Math.abs(l)),(!f||f>n)&&(f=n,d(g,n)&&(f/=40)),d(g,n)&&(j/=40,l/=40,m/=40),j=Math[j>=1?"floor":"ceil"](j/f),l=Math[l>=1?"floor":"ceil"](l/f),m=Math[m>=1?"floor":"ceil"](m/f),k.settings.normalizeOffset&&this.getBoundingClientRect){var s=this.getBoundingClientRect();o=b.clientX-s.left,p=b.clientY-s.top}return b.deltaX=l,b.deltaY=m,b.deltaFactor=f,b.offsetX=o,b.offsetY=p,b.deltaMode=0,h.unshift(b,j,l,m),e&&clearTimeout(e),e=setTimeout(c,200),(a.event.dispatch||a.event.handle).apply(this,h)}}function c(){f=null}function d(a,b){return k.settings.adjustOldDeltas&&"mousewheel"===a.type&&b%120===0}var e,f,g=["wheel","mousewheel","DOMMouseScroll","MozMousePixelScroll"],h="onwheel"in document||document.documentMode>=9?["wheel"]:["mousewheel","DomMouseScroll","MozMousePixelScroll"],i=Array.prototype.slice;if(a.event.fixHooks)for(var j=g.length;j;)a.event.fixHooks[g[--j]]=a.event.mouseHooks;var k=a.event.special.mousewheel={version:"3.1.12",setup:function(){if(this.addEventListener)for(var c=h.length;c;)this.addEventListener(h[--c],b,!1);else this.onmousewheel=b;a.data(this,"mousewheel-line-height",k.getLineHeight(this)),a.data(this,"mousewheel-page-height",k.getPageHeight(this))},teardown:function(){if(this.removeEventListener)for(var c=h.length;c;)this.removeEventListener(h[--c],b,!1);else this.onmousewheel=null;a.removeData(this,"mousewheel-line-height"),a.removeData(this,"mousewheel-page-height")},getLineHeight:function(b){var c=a(b),d=c["offsetParent"in a.fn?"offsetParent":"parent"]();return d.length||(d=a("body")),parseInt(d.css("fontSize"),10)||parseInt(c.css("fontSize"),10)||16},getPageHeight:function(b){return a(b).height()},settings:{adjustOldDeltas:!0,normalizeOffset:!0}};a.fn.extend({mousewheel:function(a){return a?this.bind("mousewheel",a):this.trigger("mousewheel")},unmousewheel:function(a){return this.unbind("mousewheel",a)}})}); + +// Parse and Format Library +//http://www.xaprb.com/blog/2005/12/12/javascript-closures-for-runtime-efficiency/ +/* + * Copyright (C) 2004 Baron Schwartz + * + * This program is free software; you can redistribute it and/or modify it + * under the terms of the GNU Lesser General Public License as published by the + * Free Software Foundation, version 2.1. + * + * This program is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more + * details. + */ +Date.parseFunctions={count:0};Date.parseRegexes=[];Date.formatFunctions={count:0};Date.prototype.dateFormat=function(b){if(b=="unixtime"){return parseInt(this.getTime()/1000);}if(Date.formatFunctions[b]==null){Date.createNewFormat(b);}var a=Date.formatFunctions[b];return this[a]();};Date.createNewFormat=function(format){var funcName="format"+Date.formatFunctions.count++;Date.formatFunctions[format]=funcName;var code="Date.prototype."+funcName+" = function() {return ";var special=false;var ch="";for(var i=0;i 0) {";var regex="";var special=false;var ch="";for(var i=0;i 0 && z > 0){\nvar doyDate = new Date(y,0);\ndoyDate.setDate(z);\nm = doyDate.getMonth();\nd = doyDate.getDate();\n}";code+="if (y > 0 && m >= 0 && d > 0 && h >= 0 && i >= 0 && s >= 0)\n{return new Date(y, m, d, h, i, s);}\nelse if (y > 0 && m >= 0 && d > 0 && h >= 0 && i >= 0)\n{return new Date(y, m, d, h, i);}\nelse if (y > 0 && m >= 0 && d > 0 && h >= 0)\n{return new Date(y, m, d, h);}\nelse if (y > 0 && m >= 0 && d > 0)\n{return new Date(y, m, d);}\nelse if (y > 0 && m >= 0)\n{return new Date(y, m);}\nelse if (y > 0)\n{return new Date(y);}\n}return null;}";Date.parseRegexes[regexNum]=new RegExp("^"+regex+"$");eval(code);};Date.formatCodeToRegex=function(b,a){switch(b){case"D":return{g:0,c:null,s:"(?:Sun|Mon|Tue|Wed|Thu|Fri|Sat)"};case"j":case"d":return{g:1,c:"d = parseInt(results["+a+"], 10);\n",s:"(\\d{1,2})"};case"l":return{g:0,c:null,s:"(?:"+Date.dayNames.join("|")+")"};case"S":return{g:0,c:null,s:"(?:st|nd|rd|th)"};case"w":return{g:0,c:null,s:"\\d"};case"z":return{g:1,c:"z = parseInt(results["+a+"], 10);\n",s:"(\\d{1,3})"};case"W":return{g:0,c:null,s:"(?:\\d{2})"};case"F":return{g:1,c:"m = parseInt(Date.monthNumbers[results["+a+"].substring(0, 3)], 10);\n",s:"("+Date.monthNames.join("|")+")"};case"M":return{g:1,c:"m = parseInt(Date.monthNumbers[results["+a+"]], 10);\n",s:"(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)"};case"n":case"m":return{g:1,c:"m = parseInt(results["+a+"], 10) - 1;\n",s:"(\\d{1,2})"};case"t":return{g:0,c:null,s:"\\d{1,2}"};case"L":return{g:0,c:null,s:"(?:1|0)"};case"Y":return{g:1,c:"y = parseInt(results["+a+"], 10);\n",s:"(\\d{4})"};case"y":return{g:1,c:"var ty = parseInt(results["+a+"], 10);\ny = ty > Date.y2kYear ? 1900 + ty : 2000 + ty;\n",s:"(\\d{1,2})"};case"a":return{g:1,c:"if (results["+a+"] == 'am') {\nif (h == 12) { h = 0; }\n} else { if (h < 12) { h += 12; }}",s:"(am|pm)"};case"A":return{g:1,c:"if (results["+a+"] == 'AM') {\nif (h == 12) { h = 0; }\n} else { if (h < 12) { h += 12; }}",s:"(AM|PM)"};case"g":case"G":case"h":case"H":return{g:1,c:"h = parseInt(results["+a+"], 10);\n",s:"(\\d{1,2})"};case"i":return{g:1,c:"i = parseInt(results["+a+"], 10);\n",s:"(\\d{2})"};case"s":return{g:1,c:"s = parseInt(results["+a+"], 10);\n",s:"(\\d{2})"};case"O":return{g:0,c:null,s:"[+-]\\d{4}"};case"T":return{g:0,c:null,s:"[A-Z]{3}"};case"Z":return{g:0,c:null,s:"[+-]\\d{1,5}"};default:return{g:0,c:null,s:String.escape(b)};}};Date.prototype.getTimezone=function(){return this.toString().replace(/^.*? ([A-Z]{3}) [0-9]{4}.*$/,"$1").replace(/^.*?\(([A-Z])[a-z]+ ([A-Z])[a-z]+ ([A-Z])[a-z]+\)$/,"$1$2$3");};Date.prototype.getGMTOffset=function(){return(this.getTimezoneOffset()>0?"-":"+")+String.leftPad(Math.floor(Math.abs(this.getTimezoneOffset())/60),2,"0")+String.leftPad(Math.abs(this.getTimezoneOffset())%60,2,"0");};Date.prototype.getDayOfYear=function(){var a=0;Date.daysInMonth[1]=this.isLeapYear()?29:28;for(var b=0;b $a->get_baseurl() . '/events', '$eid' => $eid, '$cid' => $cid, '$uri' => $uri, - + '$title' => t('Event details'), - '$desc' => sprintf( t('Format is %s %s. Starting date and Title are required.'),$dateformat,$timeformat), - + '$desc' => t('Starting date and Title are required.'), '$s_text' => t('Event Starts:') . ' *', - '$s_dsel' => datesel($f,'start',$syear+5,$syear,false,$syear,$smonth,$sday), - '$s_tsel' => timesel('start',$shour,$sminute), + '$s_dsel' => datetimesel($f,new DateTime(),DateTime::createFromFormat('Y',$syear+5),DateTime::createFromFormat('Y-m-d H:i',"$syear-$smonth-$sday $shour:$sminute"),'start_text',true,true,'','',true), '$n_text' => t('Finish date/time is not known or not relevant'), '$n_checked' => $n_checked, '$f_text' => t('Event Finishes:'), - '$f_dsel' => datesel($f,'finish',$fyear+5,$fyear,false,$fyear,$fmonth,$fday), - '$f_tsel' => timesel('finish',$fhour,$fminute), + '$f_dsel' => datetimesel($f,new DateTime(),DateTime::createFromFormat('Y',$fyear+5),DateTime::createFromFormat('Y-m-d H:i',"$fyear-$fmonth-$fday $fhour:$fminute"),'finish_text',true,true,'start_text'), '$a_text' => t('Adjust for viewer timezone'), '$a_checked' => $a_checked, '$d_text' => t('Description:'), diff --git a/mod/profiles.php b/mod/profiles.php index 2b4952c3b6..30b4195455 100644 --- a/mod/profiles.php +++ b/mod/profiles.php @@ -190,27 +190,23 @@ function profiles_post(&$a) { return; } - $year = intval($_POST['year']); - if($year < 1900 || $year > 2100 || $year < 0) - $year = 0; - $month = intval($_POST['month']); - if(($month > 12) || ($month < 0)) - $month = 0; - $mtab = array(0,31,29,31,30,31,30,31,31,30,31,30,31); - $day = intval($_POST['day']); - if(($day > $mtab[$month]) || ($day < 0)) - $day = 0; - - // It's OK to have an empty (0) year, but if you supplied a year you have to have a non-zero month and day - if($year && ! $month) - $month = 1; - if($year && ! $day) - $day = 1; - - $dob = '0000-00-00'; - $dob = sprintf('%04d-%02d-%02d',$year,$month,$day); - + $dob = $_POST['dob'] ? escape_tags(trim($_POST['dob'])) : '0000-00-00'; // FIXME: Needs to be validated? + $y = substr($dob,0,4); + if((! ctype_digit($y)) || ($y < 1900)) + $ignore_year = true; + else + $ignore_year = false; + if($dob != '0000-00-00') { + if(strpos($dob,'0000-') === 0) { + $ignore_year = true; + $dob = substr($dob,5); + } + $dob = datetime_convert('UTC','UTC',(($ignore_year) ? '1900-' . $dob : $dob),(($ignore_year) ? 'm-d' : 'Y-m-d')); + if($ignore_year) + $dob = '0000-' . $dob; + } + $name = notags(trim($_POST['name'])); if(! strlen($name)) { @@ -701,7 +697,7 @@ function profiles_content(&$a) { '$lbl_fullname' => t('Your Full Name:'), '$lbl_title' => t('Title/Description:'), '$lbl_gender' => t('Your Gender:'), - '$lbl_bd' => sprintf( t("Birthday \x28%s\x29:"),datesel_format($f)), + '$lbl_bd' => t("Birthday :"), '$lbl_address' => t('Street Address:'), '$lbl_city' => t('Locality/City:'), '$lbl_zip' => t('Postal/Zip Code:'), diff --git a/view/templates/event_form.tpl b/view/templates/event_form.tpl index 9633d19af1..1ea282b116 100644 --- a/view/templates/event_form.tpl +++ b/view/templates/event_form.tpl @@ -13,10 +13,10 @@
    {{$s_text}}
    -{{$s_dsel}} {{$s_tsel}} +{{$s_dsel}}
    {{$f_text}}
    -{{$f_dsel}} {{$f_tsel}} +{{$f_dsel}}
    diff --git a/view/templates/head.tpl b/view/templates/head.tpl index e32205fa50..f2f2d3487a 100644 --- a/view/templates/head.tpl +++ b/view/templates/head.tpl @@ -5,6 +5,7 @@ + @@ -34,6 +35,7 @@ + From ab67788b4e40e4e368ee0668bd5f54e3edd4dba6 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 23 May 2015 01:23:31 +0200 Subject: [PATCH 128/306] SQL speed increase for query and search. --- include/api.php | 2 +- mod/search.php | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/include/api.php b/include/api.php index 06dbca7f14..a9e0edc808 100644 --- a/include/api.php +++ b/include/api.php @@ -1162,7 +1162,7 @@ if ($conversation_id > 0) $sql_extra .= ' AND `item`.`parent` = '.intval($conversation_id); - $r = q("SELECT `item`.*, `item`.`id` AS `item_id`, `item`.`network` AS `item_network`, + $r = q("SELECT STRAIGHT_JOIN `item`.*, `item`.`id` AS `item_id`, `item`.`network` AS `item_network`, `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`rel`, `contact`.`network`, `contact`.`thumb`, `contact`.`dfrn-id`, `contact`.`self`, `contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid` diff --git a/mod/search.php b/mod/search.php index b9bad64059..67702ac097 100644 --- a/mod/search.php +++ b/mod/search.php @@ -7,7 +7,7 @@ function search_saved_searches() { if(! feature_enabled(local_user(),'savedsearch')) return $o; - $r = q("select `id`,`term` from `search` WHERE `uid` = %d", + $r = q("SELECT `id`,`term` FROM `search` WHERE `uid` = %d", intval(local_user()) ); @@ -45,12 +45,12 @@ function search_init(&$a) { if(local_user()) { if(x($_GET,'save') && $search) { - $r = q("select * from `search` where `uid` = %d and `term` = '%s' limit 1", + $r = q("SELECT * FROM `search` WHERE `uid` = %d AND `term` = '%s' LIMIT 1", intval(local_user()), dbesc($search) ); if(! count($r)) { - q("insert into `search` ( `uid`,`term` ) values ( %d, '%s') ", + q("INSERT INTO `search` (`uid`,`term`) VALUES ( %d, '%s')", intval(local_user()), dbesc($search) ); @@ -135,7 +135,7 @@ function search_content(&$a) { if($tag) { logger("Start tag search for '".$search."'", LOGGER_DEBUG); - $r = q("SELECT `item`.`uri`, `item`.*, `item`.`id` AS `item_id`, + $r = q("SELECT STRAIGHT_JOIN `item`.`uri`, `item`.*, `item`.`id` AS `item_id`, `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`alias`, `contact`.`rel`, `contact`.`network`, `contact`.`thumb`, `contact`.`self`, `contact`.`writable`, `contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid` @@ -156,7 +156,7 @@ function search_content(&$a) { $sql_extra = sprintf(" AND `item`.`body` REGEXP '%s' ", dbesc(protect_sprintf(preg_quote($search)))); } - $r = q("SELECT `item`.`uri`, `item`.*, `item`.`id` AS `item_id`, + $r = q("SELECT STRAIGHT_JOIN `item`.`uri`, `item`.*, `item`.`id` AS `item_id`, `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`alias`, `contact`.`rel`, `contact`.`network`, `contact`.`thumb`, `contact`.`self`, `contact`.`writable`, `contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid` From 9c803f7dbb298c5880fef690fe4f48bc38da64f7 Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Sat, 23 May 2015 17:45:44 +0200 Subject: [PATCH 129/306] quattro css changes added to the less file --- view/theme/quattro/dark/style.css | 7 ------- view/theme/quattro/green/style.css | 7 ------- view/theme/quattro/lilac/style.css | 7 ------- view/theme/quattro/quattro.less | 2 ++ 4 files changed, 2 insertions(+), 21 deletions(-) diff --git a/view/theme/quattro/dark/style.css b/view/theme/quattro/dark/style.css index a1555565d2..8ab307a1cc 100644 --- a/view/theme/quattro/dark/style.css +++ b/view/theme/quattro/dark/style.css @@ -514,7 +514,6 @@ header { margin: 0px; padding: 0px; /*width: 100%; height: 12px; */ - z-index: 110; color: #ffffff; } @@ -847,7 +846,6 @@ aside .posted-date-selector-months { overflow: auto; height: auto; /*.contact-block-div { width:60px; height: 60px; }*/ - } #contact-block .contact-block-h4 { float: left; @@ -929,7 +927,6 @@ aside .posted-date-selector-months { margin-bottom: 2em; /*.action .s10 { width: 10px; overflow: hidden; padding: 0px;} .action .s16 { width: 16px; overflow: hidden; padding: 0px;}*/ - } .widget h3 { padding: 0px; @@ -1211,7 +1208,6 @@ section { height: 32px; margin-left: 16px; /*background: url(../../../images/icons/22/user.png) no-repeat center center;*/ - } .comment-edit-preview .contact-photo-menu-button { top: 15px !important; @@ -1286,9 +1282,6 @@ section { opacity: 0.5; }*/ .wwto { - position: absolute !important; - width: 25px; - height: 25px; background: #FFFFFF; border: 2px solid #364e59; height: 25px; diff --git a/view/theme/quattro/green/style.css b/view/theme/quattro/green/style.css index ef6b16aad3..cd492d2668 100644 --- a/view/theme/quattro/green/style.css +++ b/view/theme/quattro/green/style.css @@ -514,7 +514,6 @@ header { margin: 0px; padding: 0px; /*width: 100%; height: 12px; */ - z-index: 110; color: #ffffff; } @@ -847,7 +846,6 @@ aside .posted-date-selector-months { overflow: auto; height: auto; /*.contact-block-div { width:60px; height: 60px; }*/ - } #contact-block .contact-block-h4 { float: left; @@ -929,7 +927,6 @@ aside .posted-date-selector-months { margin-bottom: 2em; /*.action .s10 { width: 10px; overflow: hidden; padding: 0px;} .action .s16 { width: 16px; overflow: hidden; padding: 0px;}*/ - } .widget h3 { padding: 0px; @@ -1211,7 +1208,6 @@ section { height: 32px; margin-left: 16px; /*background: url(../../../images/icons/22/user.png) no-repeat center center;*/ - } .comment-edit-preview .contact-photo-menu-button { top: 15px !important; @@ -1286,9 +1282,6 @@ section { opacity: 0.5; }*/ .wwto { - position: absolute !important; - width: 25px; - height: 25px; background: #FFFFFF; border: 2px solid #364e59; height: 25px; diff --git a/view/theme/quattro/lilac/style.css b/view/theme/quattro/lilac/style.css index 2d4f7cec6c..73bbd6e587 100644 --- a/view/theme/quattro/lilac/style.css +++ b/view/theme/quattro/lilac/style.css @@ -514,7 +514,6 @@ header { margin: 0px; padding: 0px; /*width: 100%; height: 12px; */ - z-index: 110; color: #ffffff; } @@ -847,7 +846,6 @@ aside .posted-date-selector-months { overflow: auto; height: auto; /*.contact-block-div { width:60px; height: 60px; }*/ - } #contact-block .contact-block-h4 { float: left; @@ -929,7 +927,6 @@ aside .posted-date-selector-months { margin-bottom: 2em; /*.action .s10 { width: 10px; overflow: hidden; padding: 0px;} .action .s16 { width: 16px; overflow: hidden; padding: 0px;}*/ - } .widget h3 { padding: 0px; @@ -1211,7 +1208,6 @@ section { height: 32px; margin-left: 16px; /*background: url(../../../images/icons/22/user.png) no-repeat center center;*/ - } .comment-edit-preview .contact-photo-menu-button { top: 15px !important; @@ -1286,9 +1282,6 @@ section { opacity: 0.5; }*/ .wwto { - position: absolute !important; - width: 25px; - height: 25px; background: #FFFFFF; border: 2px solid #364e59; height: 25px; diff --git a/view/theme/quattro/quattro.less b/view/theme/quattro/quattro.less index 172fad31b5..7309fd6d39 100644 --- a/view/theme/quattro/quattro.less +++ b/view/theme/quattro/quattro.less @@ -353,6 +353,8 @@ aside { } #profiles-menu { width: 20em; } + + .posted-date-selector-months { margin-left: 10px; } } From 76283ff205b446524f522a116347538dc3c20efb Mon Sep 17 00:00:00 2001 From: rabuzarus Date: Sat, 23 May 2015 17:50:18 +0200 Subject: [PATCH 130/306] cleanup quattro less file --- view/theme/quattro/dark/style.css | 2 +- view/theme/quattro/green/style.css | 2 +- view/theme/quattro/lilac/style.css | 2 +- view/theme/quattro/quattro.less | 206 +++++++++++++---------------- 4 files changed, 98 insertions(+), 114 deletions(-) diff --git a/view/theme/quattro/dark/style.css b/view/theme/quattro/dark/style.css index 8ab307a1cc..1ec672d227 100644 --- a/view/theme/quattro/dark/style.css +++ b/view/theme/quattro/dark/style.css @@ -1282,13 +1282,13 @@ section { opacity: 0.5; }*/ .wwto { + position: absolute !important; background: #FFFFFF; border: 2px solid #364e59; height: 25px; width: 25px; overflow: hidden; padding: 1px; - position: absolute !important; top: 40px; left: 30px; -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7); diff --git a/view/theme/quattro/green/style.css b/view/theme/quattro/green/style.css index cd492d2668..89dc3dad86 100644 --- a/view/theme/quattro/green/style.css +++ b/view/theme/quattro/green/style.css @@ -1282,13 +1282,13 @@ section { opacity: 0.5; }*/ .wwto { + position: absolute !important; background: #FFFFFF; border: 2px solid #364e59; height: 25px; width: 25px; overflow: hidden; padding: 1px; - position: absolute !important; top: 40px; left: 30px; -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7); diff --git a/view/theme/quattro/lilac/style.css b/view/theme/quattro/lilac/style.css index 73bbd6e587..11adc44b92 100644 --- a/view/theme/quattro/lilac/style.css +++ b/view/theme/quattro/lilac/style.css @@ -1282,13 +1282,13 @@ section { opacity: 0.5; }*/ .wwto { + position: absolute !important; background: #FFFFFF; border: 2px solid #364e59; height: 25px; width: 25px; overflow: hidden; padding: 1px; - position: absolute !important; top: 40px; left: 30px; -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7); diff --git a/view/theme/quattro/quattro.less b/view/theme/quattro/quattro.less index 7309fd6d39..dded1514a5 100644 --- a/view/theme/quattro/quattro.less +++ b/view/theme/quattro/quattro.less @@ -12,9 +12,9 @@ body { h4 { font-size: 1.1em } .shadow(@x: 0px, @y: 5px){ - -webkit-box-shadow:@x @y 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow:@x @y 10px rgba(0, 0, 0, 0.7); - box-shadow:@x @y 10px rgba(0, 0, 0, 0.7); + -webkit-box-shadow:@x @y 10px rgba(0, 0, 0, 0.7); + -moz-box-shadow:@x @y 10px rgba(0, 0, 0, 0.7); + box-shadow:@x @y 10px rgba(0, 0, 0, 0.7); } .rounded(@tr: 5px, @tl: 5px, @bl: 5px, @br: 5px){ @@ -52,10 +52,10 @@ a:hover {color: @LinkHover; text-decoration: underline; } .fakelink:hover { color: @LinkHover; text-decoration: underline; } blockquote { - background:@BlockquoteBackgroundColor; - padding: 1em; - margin-left: 1em; - border-left: 1em solid @BlockquoteBorderColor; + background:@BlockquoteBackgroundColor; + padding: 1em; + margin-left: 1em; + border-left: 1em solid @BlockquoteBorderColor; } @@ -86,9 +86,7 @@ code { } - /* tool */ - .tool { height: auto; overflow: auto; .label { float: left;} @@ -97,8 +95,6 @@ code { } - - /* popup notifications */ #jGrowl.top-right { top: 30px; @@ -144,6 +140,7 @@ header { #logo-text { font-size: 22px } } } + /* nav */ nav { width: 100%; height: 32px; @@ -223,7 +220,7 @@ nav { #nav-notifications-linkmenu.on .icon.s22.notify, #nav-notifications-linkmenu.selected .icon.s22.notify { background-image: url("../../../images/icons/22/notify_on.png") } - #nav-introductions-link.on .icon.s22.intro, + #nav-introductions-link.on .icon.s22.intro, #nav-introductions-link.selected .icon.s22.intro { background-image: url("icons/contacts_on.png") } #nav-messages-link.on .icon.s22.mail, #nav-messages-link.selected .icon.s22.mail { background-image: url("icons/messages_on.png") } @@ -302,8 +299,6 @@ ul.menu-popup { } - - /* aside 230px*/ aside { display: table-cell; @@ -355,8 +350,6 @@ aside { #profiles-menu { width: 20em; } .posted-date-selector-months { margin-left: 10px; } - - } #contact-block { @@ -667,72 +660,70 @@ section { }*/ .wwto { - position: absolute !important; - width: 25px; height: 25px; - background: #FFFFFF; - border: 2px solid @Metalic3; - height: 25px; - width: 25px; - overflow: hidden; - padding: 1px; - position: absolute !important; - top: 40px; - left: 30px; - - .shadow(0px, 0px) + position: absolute !important; + background: #FFFFFF; + border: 2px solid @Metalic3; + height: 25px; + width: 25px; + overflow: hidden; + padding: 1px; + top: 40px; + left: 30px; + + .shadow(0px, 0px); } .wwto .contact-photo { width: 25px; height: 25px; } /* reshare e embed */ .wall-item-container .wall-item-content .type-link img, .type-link img { - max-width: 160px; - max-height: 160px; - float: left; - margin-right: 10px; + max-width: 160px; + max-height: 160px; + float: left; + margin-right: 10px; - &.attachment-image { - max-width: 650px; - max-height: inital; - float: none; - margin-right: 0px; - } + &.attachment-image { + max-width: 650px; + max-height: inital; + float: none; + margin-right: 0px; + } } .type-link { - blockquote { - margin: 1em 0px; - max-height: 160px; - overflow: hidden; - padding-left: 1em; - } - .oembed {} + blockquote { + margin: 1em 0px; + max-height: 160px; + overflow: hidden; + padding-left: 1em; + } + .oembed {} } .type-video blockquote { padding-left: 1em; } .shared_header { - height: 32px; - color: #999; - border-top: 1px solid @ThreadBottomBorderColor; - padding-top: 5px; - margin-top: 5px; - - img { - -webkit-border-radius: 4px; - -moz-border-radius: 4px; - border-radius: 4px; - float: left; - } - - span { margin-left: 9px; } + height: 32px; + color: #999; + border-top: 1px solid @ThreadBottomBorderColor; + padding-top: 5px; + margin-top: 5px; + + img { + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; + float: left; + } + + span { margin-left: 9px; } } blockquote.shared_content { - margin-left: 32px; - color: #000; - border: none; + margin-left: 32px; + color: #000; + border: none; } @@ -800,21 +791,21 @@ blockquote.shared_content { /*.threaded .hide-comments-outer { margin-left: 20px; }*/ span[id^="showmore-teaser"]{ - background: url("showmore-bg.jpg") no-repeat center bottom; + background: url("showmore-bg.jpg") no-repeat center bottom; } span[id^="showmore-wrap"] { - border-top: 1px solid #999999; - color: #999999; - display: block; - text-align: center; - background-color: @ThreadBackgroundColor; + border-top: 1px solid #999999; + color: #999999; + display: block; + text-align: center; + background-color: @ThreadBackgroundColor; } #pause { - position: fixed; - bottom: 5px; - right: 5px; + position: fixed; + bottom: 5px; + right: 5px; } @@ -900,8 +891,7 @@ span[id^="showmore-wrap"] { #jot { width: 100%; - margin: 0px 2em 20px 0px; - + margin: 0px 2em 20px 0px; .profile-jot-text { height: 1em; width: 99%; font-size: 10px; @@ -1041,7 +1031,6 @@ span[id^="showmore-wrap"] { } - #acl-wrapper { width: 690px; float:left; @@ -1183,7 +1172,6 @@ ul.tabs { overflow: auto; width: 100%; - label { float: left; width: 200px; @@ -1205,7 +1193,6 @@ ul.tabs { } - .onoff { float: left; width: 80px; @@ -1294,7 +1281,7 @@ ul.tabs { #profile-edit-pubkeywords, #profile-edit-prvkeywords, #profile-edit-homepage { - margin-top: 5px; + margin-top: 5px; } /* oauth */ @@ -1511,8 +1498,8 @@ ul.tabs { footer { height: 100px; display: table-row; } .pager { - margin-top: 25px; - clear: both; + margin-top: 25px; + clear: both; } /** @@ -1590,7 +1577,6 @@ footer { height: 100px; display: table-row; } } /* edit buttons for comments */ - .icon.dim { opacity: 0.3;filter:alpha(opacity=30); } .comment-edit-bb { list-style: none; @@ -1606,12 +1592,12 @@ footer { height: 100px; display: table-row; } } .editicon { - display: inline-block; - width: 16px; - height: 16px; - background-image: url(icons/bbedit.png); - text-decoration: none; - :hover {background-color: #ccc;} + display: inline-block; + width: 16px; + height: 16px; + background-image: url(icons/bbedit.png); + text-decoration: none; + :hover {background-color: #ccc;} } .boldbb { background-position: 0px 0px; } .boldbb:hover { background-position: 0px -16px; } @@ -1634,37 +1620,36 @@ footer { height: 100px; display: table-row; } /** range input css **/ /* slider root element */ .slider { - height:2px; - position:relative; - cursor:pointer; - border:1px solid #333; - width:200px; - margin:10px 0px 10px 0px; - float: left; + height:2px; + position:relative; + cursor:pointer; + border:1px solid #333; + width:200px; + margin:10px 0px 10px 0px; + float: left; } /* progress bar (enabled with progress: true) */ .progress { - height:9px; - background-color:#C5FF00; - display:none; - opacity:0.6; + height:9px; + background-color:#C5FF00; + display:none; + opacity:0.6; } /* drag handle */ .handle { - background-color:#ccc; - height:16px; - width:8px; - top:-8px; - position:absolute; - display:block; - margin-top:1px; - border:1px solid #000; - cursor:move; - .roundbottom(); - .shadow(); - + background-color:#ccc; + height:16px; + width:8px; + top:-8px; + position:absolute; + display:block; + margin-top:1px; + border:1px solid #000; + cursor:move; + .roundbottom(); + .shadow(); } /* the input field */ @@ -1675,4 +1660,3 @@ footer { height: 100px; display: table-row; } border: 0px; color: @FieldHelpColor; } - From 3504b3b94fff48d38be0522545d14faaabe73f80 Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Sat, 23 May 2015 18:49:56 +0200 Subject: [PATCH 131/306] make frost + frost-mobile work with datepicker --- view/theme/frost-mobile/templates/end.tpl | 1 + view/theme/frost-mobile/templates/head.tpl | 1 + view/theme/frost/templates/end.tpl | 1 + view/theme/frost/templates/event_form.tpl | 4 ++-- view/theme/frost/templates/head.tpl | 1 + 5 files changed, 6 insertions(+), 2 deletions(-) diff --git a/view/theme/frost-mobile/templates/end.tpl b/view/theme/frost-mobile/templates/end.tpl index 38cd144b4c..8d4b26bdcb 100644 --- a/view/theme/frost-mobile/templates/end.tpl +++ b/view/theme/frost-mobile/templates/end.tpl @@ -5,6 +5,7 @@ + diff --git a/view/theme/frost-mobile/templates/head.tpl b/view/theme/frost-mobile/templates/head.tpl index 8fbd15c303..5684ca7be9 100644 --- a/view/theme/frost-mobile/templates/head.tpl +++ b/view/theme/frost-mobile/templates/head.tpl @@ -4,6 +4,7 @@ + diff --git a/view/theme/frost/templates/end.tpl b/view/theme/frost/templates/end.tpl index a7a687fadd..4242f80c81 100644 --- a/view/theme/frost/templates/end.tpl +++ b/view/theme/frost/templates/end.tpl @@ -15,6 +15,7 @@ {{**}} + diff --git a/view/theme/frost/templates/event_form.tpl b/view/theme/frost/templates/event_form.tpl index f8e1d65605..44e25f3607 100644 --- a/view/theme/frost/templates/event_form.tpl +++ b/view/theme/frost/templates/event_form.tpl @@ -12,10 +12,10 @@
    {{$s_text}}
    -{{$s_dsel}} {{$s_tsel}} +{{$s_dsel}}
    {{$f_text}}
    -{{$f_dsel}} {{$f_tsel}} +{{$f_dsel}}
    diff --git a/view/theme/frost/templates/head.tpl b/view/theme/frost/templates/head.tpl index 93f48f0922..fc56c24b78 100644 --- a/view/theme/frost/templates/head.tpl +++ b/view/theme/frost/templates/head.tpl @@ -5,6 +5,7 @@ {{**}} + From 6731ffbfc8eeeda4c60b1693e45ea0a708a4ebce Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Sat, 23 May 2015 19:23:32 +0200 Subject: [PATCH 132/306] event preview for frost theme --- view/templates/event_head.tpl | 10 +++++----- view/theme/frost/js/theme.js | 8 ++++++++ view/theme/frost/templates/event_form.tpl | 4 +++- 3 files changed, 16 insertions(+), 6 deletions(-) diff --git a/view/templates/event_head.tpl b/view/templates/event_head.tpl index 31f389d9e3..4b34ee182f 100644 --- a/view/templates/event_head.tpl +++ b/view/templates/event_head.tpl @@ -14,11 +14,11 @@ } function doEventPreview() { - $('#event-edit-preview').val(1); - $.post('events',$('#event-edit-form').serialize(), function(data) { - $.colorbox({ html: data }); - }); - $('#event-edit-preview').val(0); + $('#event-edit-preview').val(1); + $.post('events',$('#event-edit-form').serialize(), function(data) { + $.colorbox({ html: data }); + }); + $('#event-edit-preview').val(0); } diff --git a/view/theme/frost/js/theme.js b/view/theme/frost/js/theme.js index 5d61d5ae89..1de9d3a96b 100644 --- a/view/theme/frost/js/theme.js +++ b/view/theme/frost/js/theme.js @@ -353,6 +353,14 @@ function showEvent(eventid) { ); } +function doEventPreview() { + $('#event-edit-preview').val(1); + $.post('events',$('#event-edit-form').serialize(), function(data) { + $.colorbox({ html: data }); + }); + $('#event-edit-preview').val(0); +} + function initCrop() { function onEndCrop( coords, dimensions ) { $PR( 'x1' ).value = coords.x1; diff --git a/view/theme/frost/templates/event_form.tpl b/view/theme/frost/templates/event_form.tpl index f8e1d65605..f348512b45 100644 --- a/view/theme/frost/templates/event_form.tpl +++ b/view/theme/frost/templates/event_form.tpl @@ -5,11 +5,12 @@ {{$desc}}

    -
    + +
    {{$s_text}}
    {{$s_dsel}} {{$s_tsel}} @@ -45,6 +46,7 @@ {{$acl}}
    +
    From 5e6c140fc13755f63a87fc9ba25fb6cf14b300eb Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Sat, 23 May 2015 20:02:57 +0200 Subject: [PATCH 133/306] add double click on calendar day for frost theme --- view/theme/frost/js/theme.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/view/theme/frost/js/theme.js b/view/theme/frost/js/theme.js index 1de9d3a96b..a14a034bc1 100644 --- a/view/theme/frost/js/theme.js +++ b/view/theme/frost/js/theme.js @@ -159,6 +159,11 @@ $(document).ready(function() { eventClick: function(calEvent, jsEvent, view) { showEvent(calEvent.id); }, + loading: function(isLoading, view) { + if(!isLoading) { + $('td.fc-day').dblclick(function() { window.location.href='/events/new?start='+$(this).data('date'); }); + } + }, eventRender: function(event, element, view) { //console.log(view.name); From dd9f4439ce6a18b95fb62b660052f6e6d363e130 Mon Sep 17 00:00:00 2001 From: fabrixxm Date: Sat, 23 May 2015 20:08:57 +0200 Subject: [PATCH 134/306] update IT --- view/it/messages.po | 1830 ++++++++++++++++++++++--------------------- view/it/strings.php | 23 +- 2 files changed, 942 insertions(+), 911 deletions(-) diff --git a/view/it/messages.po b/view/it/messages.po index 93fb60cf59..d71f862d29 100644 --- a/view/it/messages.po +++ b/view/it/messages.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-04-04 17:54+0200\n" -"PO-Revision-Date: 2015-05-21 07:06+0000\n" +"POT-Creation-Date: 2015-05-21 10:43+0200\n" +"PO-Revision-Date: 2015-05-23 18:06+0000\n" "Last-Translator: fabrixxm \n" "Language-Team: Italian (http://www.transifex.com/projects/p/friendica/language/it/)\n" "MIME-Version: 1.0\n" @@ -30,15 +30,15 @@ msgstr "" #: ../../view/theme/diabook/config.php:148 #: ../../view/theme/diabook/theme.php:633 #: ../../view/theme/quattro/config.php:64 ../../view/theme/dispy/config.php:70 -#: ../../object/Item.php:678 ../../mod/contacts.php:492 +#: ../../object/Item.php:681 ../../mod/contacts.php:562 #: ../../mod/manage.php:110 ../../mod/fsuggest.php:107 #: ../../mod/photos.php:1084 ../../mod/photos.php:1203 #: ../../mod/photos.php:1514 ../../mod/photos.php:1565 #: ../../mod/photos.php:1609 ../../mod/photos.php:1697 -#: ../../mod/invite.php:140 ../../mod/events.php:478 ../../mod/mood.php:137 +#: ../../mod/invite.php:140 ../../mod/events.php:491 ../../mod/mood.php:137 #: ../../mod/message.php:335 ../../mod/message.php:564 #: ../../mod/profiles.php:686 ../../mod/install.php:248 -#: ../../mod/install.php:286 ../../mod/crepair.php:186 +#: ../../mod/install.php:286 ../../mod/crepair.php:190 #: ../../mod/content.php:710 ../../mod/poke.php:199 ../../mod/localtime.php:45 msgid "Submit" msgstr "Invia" @@ -74,7 +74,7 @@ msgstr "Schema colori" msgid "Set style" msgstr "Imposta stile" -#: ../../view/theme/duepuntozero/config.php:44 ../../include/text.php:1719 +#: ../../view/theme/duepuntozero/config.php:44 ../../include/text.php:1729 #: ../../include/user.php:247 msgid "default" msgstr "default" @@ -209,9 +209,9 @@ msgstr "Home" msgid "Your posts and conversations" msgstr "I tuoi messaggi e le tue conversazioni" -#: ../../view/theme/diabook/theme.php:124 ../../boot.php:2133 +#: ../../view/theme/diabook/theme.php:124 ../../boot.php:2132 #: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:87 -#: ../../include/nav.php:77 ../../mod/profperm.php:103 +#: ../../include/nav.php:77 ../../mod/profperm.php:104 #: ../../mod/newmember.php:32 msgid "Profile" msgstr "Profilo" @@ -220,8 +220,8 @@ msgstr "Profilo" msgid "Your profile page" msgstr "Pagina del tuo profilo" -#: ../../view/theme/diabook/theme.php:125 ../../include/nav.php:177 -#: ../../mod/contacts.php:718 +#: ../../view/theme/diabook/theme.php:125 ../../include/nav.php:178 +#: ../../mod/contacts.php:788 msgid "Contacts" msgstr "Contatti" @@ -229,7 +229,7 @@ msgstr "Contatti" msgid "Your contacts" msgstr "I tuoi contatti" -#: ../../view/theme/diabook/theme.php:126 ../../boot.php:2140 +#: ../../view/theme/diabook/theme.php:126 ../../boot.php:2139 #: ../../include/nav.php:78 ../../mod/fbrowser.php:25 msgid "Photos" msgstr "Foto" @@ -238,8 +238,8 @@ msgstr "Foto" msgid "Your photos" msgstr "Le tue foto" -#: ../../view/theme/diabook/theme.php:127 ../../boot.php:2157 -#: ../../include/nav.php:80 ../../mod/events.php:370 +#: ../../view/theme/diabook/theme.php:127 ../../boot.php:2156 +#: ../../include/nav.php:80 ../../mod/events.php:382 msgid "Events" msgstr "Eventi" @@ -261,12 +261,12 @@ msgid "Community" msgstr "Comunità" #: ../../view/theme/diabook/theme.php:463 ../../include/conversation.php:118 -#: ../../include/conversation.php:245 ../../include/text.php:1983 +#: ../../include/conversation.php:245 ../../include/text.php:1993 msgid "event" msgstr "l'evento" #: ../../view/theme/diabook/theme.php:466 -#: ../../view/theme/diabook/theme.php:475 ../../include/diaspora.php:2011 +#: ../../view/theme/diabook/theme.php:475 ../../include/diaspora.php:2060 #: ../../include/conversation.php:121 ../../include/conversation.php:130 #: ../../include/conversation.php:248 ../../include/conversation.php:257 #: ../../mod/like.php:149 ../../mod/like.php:319 ../../mod/subthread.php:87 @@ -274,14 +274,14 @@ msgstr "l'evento" msgid "status" msgstr "stato" -#: ../../view/theme/diabook/theme.php:471 ../../include/diaspora.php:2011 +#: ../../view/theme/diabook/theme.php:471 ../../include/diaspora.php:2060 #: ../../include/conversation.php:126 ../../include/conversation.php:253 -#: ../../include/text.php:1985 ../../mod/like.php:149 +#: ../../include/text.php:1995 ../../mod/like.php:149 #: ../../mod/subthread.php:87 ../../mod/tagger.php:62 msgid "photo" msgstr "foto" -#: ../../view/theme/diabook/theme.php:480 ../../include/diaspora.php:2027 +#: ../../view/theme/diabook/theme.php:480 ../../include/diaspora.php:2076 #: ../../include/conversation.php:137 ../../mod/like.php:166 #, php-format msgid "%1$s likes %2$s's %3$s" @@ -326,8 +326,8 @@ msgid "Invite Friends" msgstr "Invita amici" #: ../../view/theme/diabook/theme.php:544 -#: ../../view/theme/diabook/theme.php:648 ../../include/nav.php:172 -#: ../../mod/settings.php:90 ../../mod/admin.php:1104 ../../mod/admin.php:1325 +#: ../../view/theme/diabook/theme.php:648 ../../include/nav.php:173 +#: ../../mod/settings.php:90 ../../mod/admin.php:1107 ../../mod/admin.php:1328 #: ../../mod/newmember.php:22 msgid "Settings" msgstr "Impostazioni" @@ -364,40 +364,42 @@ msgstr "Dimensione caratteri nelle aree di testo" msgid "Set colour scheme" msgstr "Imposta schema colori" -#: ../../index.php:211 ../../mod/apps.php:7 +#: ../../index.php:225 ../../mod/apps.php:7 msgid "You must be logged in to use addons. " msgstr "Devi aver effettuato il login per usare gli addons." -#: ../../index.php:255 ../../mod/help.php:42 +#: ../../index.php:269 ../../mod/p.php:16 ../../mod/p.php:25 +#: ../../mod/help.php:42 msgid "Not Found" msgstr "Non trovato" -#: ../../index.php:258 ../../mod/help.php:45 +#: ../../index.php:272 ../../mod/help.php:45 msgid "Page not found." msgstr "Pagina non trovata." -#: ../../index.php:367 ../../mod/group.php:72 ../../mod/profperm.php:19 +#: ../../index.php:381 ../../mod/group.php:72 ../../mod/profperm.php:19 msgid "Permission denied" msgstr "Permesso negato" -#: ../../index.php:368 ../../include/items.php:4815 ../../mod/attach.php:33 +#: ../../index.php:382 ../../include/items.php:4838 ../../mod/attach.php:33 #: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33 #: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103 #: ../../mod/group.php:19 ../../mod/delegate.php:12 #: ../../mod/notifications.php:66 ../../mod/settings.php:20 -#: ../../mod/settings.php:107 ../../mod/settings.php:606 -#: ../../mod/contacts.php:258 ../../mod/wall_attach.php:55 +#: ../../mod/settings.php:107 ../../mod/settings.php:608 +#: ../../mod/contacts.php:322 ../../mod/wall_attach.php:55 #: ../../mod/register.php:42 ../../mod/manage.php:96 ../../mod/editpost.php:10 #: ../../mod/regmod.php:110 ../../mod/api.php:26 ../../mod/api.php:31 #: ../../mod/suggest.php:58 ../../mod/nogroup.php:25 ../../mod/fsuggest.php:78 #: ../../mod/viewcontacts.php:24 ../../mod/wall_upload.php:66 #: ../../mod/notes.php:20 ../../mod/network.php:4 ../../mod/photos.php:134 -#: ../../mod/photos.php:1050 ../../mod/follow.php:9 ../../mod/uimport.php:23 -#: ../../mod/invite.php:15 ../../mod/invite.php:101 ../../mod/events.php:140 -#: ../../mod/mood.php:114 ../../mod/message.php:38 ../../mod/message.php:174 +#: ../../mod/photos.php:1050 ../../mod/follow.php:9 ../../mod/follow.php:39 +#: ../../mod/follow.php:78 ../../mod/uimport.php:23 ../../mod/invite.php:15 +#: ../../mod/invite.php:101 ../../mod/events.php:152 ../../mod/mood.php:114 +#: ../../mod/message.php:38 ../../mod/message.php:174 #: ../../mod/profiles.php:165 ../../mod/profiles.php:618 #: ../../mod/install.php:151 ../../mod/crepair.php:119 ../../mod/poke.php:135 -#: ../../mod/display.php:499 ../../mod/dfrn_confirm.php:55 +#: ../../mod/display.php:501 ../../mod/dfrn_confirm.php:55 #: ../../mod/item.php:169 ../../mod/item.php:185 #: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169 #: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193 @@ -405,53 +407,22 @@ msgstr "Permesso negato" msgid "Permission denied." msgstr "Permesso negato." -#: ../../index.php:427 +#: ../../index.php:441 msgid "toggle mobile" msgstr "commuta tema mobile" -#: ../../addon-wrk/openidserver/lib/render/trust.php:30 -#, php-format -msgid "Do you wish to confirm your identity (%s) with %s" -msgstr "" - -#: ../../addon-wrk/openidserver/lib/render/trust.php:43 -#: ../../mod/dfrn_request.php:676 -msgid "Confirm" -msgstr "Conferma" - -#: ../../addon-wrk/openidserver/lib/render/trust.php:44 -msgid "Do not confirm" -msgstr "" - -#: ../../addon-wrk/openidserver/lib/render/trust.php:48 -msgid "Trust This Site" -msgstr "" - -#: ../../addon-wrk/openidserver/lib/render/trust.php:53 -msgid "No Identifier Sent" -msgstr "" - -#: ../../addon-wrk/openidserver/lib/render/wronguser.php:5 -msgid "Requested identity don't match logged in user." -msgstr "" - -#: ../../addon-wrk/openidserver/lib/render.php:27 -#, php-format -msgid "Please wait; you are being redirected to <%s>" -msgstr "" - #: ../../boot.php:749 msgid "Delete this item?" msgstr "Cancellare questo elemento?" -#: ../../boot.php:750 ../../object/Item.php:361 ../../object/Item.php:677 +#: ../../boot.php:750 ../../object/Item.php:364 ../../object/Item.php:680 #: ../../mod/photos.php:1564 ../../mod/photos.php:1608 #: ../../mod/photos.php:1696 ../../mod/content.php:709 msgid "Comment" msgstr "Commento" #: ../../boot.php:751 ../../include/contact_widgets.php:205 -#: ../../object/Item.php:390 ../../mod/content.php:606 +#: ../../object/Item.php:393 ../../mod/content.php:606 msgid "show more" msgstr "mostra di più" @@ -534,7 +505,7 @@ msgid "Edit profile" msgstr "Modifica il profilo" #: ../../boot.php:1557 ../../include/contact_widgets.php:10 -#: ../../mod/suggest.php:90 ../../mod/match.php:58 +#: ../../mod/suggest.php:90 ../../mod/match.php:63 msgid "Connect" msgstr "Connetti" @@ -542,7 +513,7 @@ msgstr "Connetti" msgid "Message" msgstr "Messaggio" -#: ../../boot.php:1595 ../../include/nav.php:175 +#: ../../boot.php:1595 ../../include/nav.php:176 msgid "Profiles" msgstr "Profili" @@ -570,8 +541,8 @@ msgstr "visibile a tutti" msgid "Edit visibility" msgstr "Modifica visibilità" -#: ../../boot.php:1637 ../../include/event.php:40 -#: ../../include/bb2diaspora.php:155 ../../mod/events.php:471 +#: ../../boot.php:1637 ../../include/event.php:42 +#: ../../include/bb2diaspora.php:155 ../../mod/events.php:483 #: ../../mod/directory.php:136 msgid "Location:" msgstr "Posizione:" @@ -596,71 +567,71 @@ msgstr "Homepage:" msgid "About:" msgstr "Informazioni:" -#: ../../boot.php:1711 +#: ../../boot.php:1710 msgid "Network:" msgstr "Rete:" -#: ../../boot.php:1743 ../../boot.php:1829 +#: ../../boot.php:1742 ../../boot.php:1828 msgid "g A l F d" msgstr "g A l d F" -#: ../../boot.php:1744 ../../boot.php:1830 +#: ../../boot.php:1743 ../../boot.php:1829 msgid "F d" msgstr "d F" -#: ../../boot.php:1789 ../../boot.php:1877 +#: ../../boot.php:1788 ../../boot.php:1876 msgid "[today]" msgstr "[oggi]" -#: ../../boot.php:1801 +#: ../../boot.php:1800 msgid "Birthday Reminders" msgstr "Promemoria compleanni" -#: ../../boot.php:1802 +#: ../../boot.php:1801 msgid "Birthdays this week:" msgstr "Compleanni questa settimana:" -#: ../../boot.php:1864 +#: ../../boot.php:1863 msgid "[No description]" msgstr "[Nessuna descrizione]" -#: ../../boot.php:1888 +#: ../../boot.php:1887 msgid "Event Reminders" msgstr "Promemoria" -#: ../../boot.php:1889 +#: ../../boot.php:1888 msgid "Events this week:" msgstr "Eventi di questa settimana:" -#: ../../boot.php:2126 ../../include/nav.php:76 +#: ../../boot.php:2125 ../../include/nav.php:76 msgid "Status" msgstr "Stato" -#: ../../boot.php:2129 +#: ../../boot.php:2128 msgid "Status Messages and Posts" msgstr "Messaggi di stato e post" -#: ../../boot.php:2136 +#: ../../boot.php:2135 msgid "Profile Details" msgstr "Dettagli del profilo" -#: ../../boot.php:2143 ../../mod/photos.php:52 +#: ../../boot.php:2142 ../../mod/photos.php:52 msgid "Photo Albums" msgstr "Album foto" -#: ../../boot.php:2147 ../../boot.php:2150 ../../include/nav.php:79 +#: ../../boot.php:2146 ../../boot.php:2149 ../../include/nav.php:79 msgid "Videos" msgstr "Video" -#: ../../boot.php:2160 +#: ../../boot.php:2159 msgid "Events and Calendar" msgstr "Eventi e calendario" -#: ../../boot.php:2164 ../../mod/notes.php:44 +#: ../../boot.php:2163 ../../mod/notes.php:44 msgid "Personal Notes" msgstr "Note personali" -#: ../../boot.php:2167 +#: ../../boot.php:2166 msgid "Only You Can See This" msgstr "Solo tu puoi vedere questo" @@ -838,57 +809,57 @@ msgstr "Silenzia le notifiche di nuovi post" msgid "Ability to mute notifications for a thread" msgstr "Permette di silenziare le notifiche di nuovi post in una discussione" -#: ../../include/items.php:2307 ../../include/datetime.php:477 +#: ../../include/items.php:2330 ../../include/datetime.php:477 #, php-format msgid "%s's birthday" msgstr "Compleanno di %s" -#: ../../include/items.php:2308 ../../include/datetime.php:478 +#: ../../include/items.php:2331 ../../include/datetime.php:478 #, php-format msgid "Happy Birthday %s" msgstr "Buon compleanno %s" -#: ../../include/items.php:4111 ../../mod/dfrn_request.php:717 -#: ../../mod/dfrn_confirm.php:752 +#: ../../include/items.php:4135 ../../mod/dfrn_request.php:732 +#: ../../mod/dfrn_confirm.php:753 msgid "[Name Withheld]" msgstr "[Nome Nascosto]" -#: ../../include/items.php:4619 ../../mod/admin.php:169 -#: ../../mod/admin.php:1052 ../../mod/admin.php:1265 ../../mod/viewsrc.php:15 -#: ../../mod/notice.php:15 ../../mod/display.php:82 ../../mod/display.php:284 -#: ../../mod/display.php:503 +#: ../../include/items.php:4642 ../../mod/admin.php:169 +#: ../../mod/admin.php:1055 ../../mod/admin.php:1268 ../../mod/viewsrc.php:15 +#: ../../mod/notice.php:15 ../../mod/display.php:82 ../../mod/display.php:286 +#: ../../mod/display.php:505 msgid "Item not found." msgstr "Elemento non trovato." -#: ../../include/items.php:4658 +#: ../../include/items.php:4681 msgid "Do you really want to delete this item?" msgstr "Vuoi veramente cancellare questo elemento?" -#: ../../include/items.php:4660 ../../mod/settings.php:1015 -#: ../../mod/settings.php:1021 ../../mod/settings.php:1029 -#: ../../mod/settings.php:1033 ../../mod/settings.php:1038 -#: ../../mod/settings.php:1044 ../../mod/settings.php:1050 -#: ../../mod/settings.php:1056 ../../mod/settings.php:1086 -#: ../../mod/settings.php:1087 ../../mod/settings.php:1088 -#: ../../mod/settings.php:1089 ../../mod/settings.php:1090 -#: ../../mod/contacts.php:341 ../../mod/register.php:233 -#: ../../mod/dfrn_request.php:830 ../../mod/api.php:105 -#: ../../mod/suggest.php:29 ../../mod/message.php:209 +#: ../../include/items.php:4683 ../../mod/settings.php:1035 +#: ../../mod/settings.php:1041 ../../mod/settings.php:1049 +#: ../../mod/settings.php:1053 ../../mod/settings.php:1058 +#: ../../mod/settings.php:1064 ../../mod/settings.php:1070 +#: ../../mod/settings.php:1076 ../../mod/settings.php:1106 +#: ../../mod/settings.php:1107 ../../mod/settings.php:1108 +#: ../../mod/settings.php:1109 ../../mod/settings.php:1110 +#: ../../mod/contacts.php:411 ../../mod/register.php:233 +#: ../../mod/dfrn_request.php:845 ../../mod/api.php:105 +#: ../../mod/suggest.php:29 ../../mod/follow.php:54 ../../mod/message.php:209 #: ../../mod/profiles.php:661 ../../mod/profiles.php:664 msgid "Yes" msgstr "Si" -#: ../../include/items.php:4663 ../../include/conversation.php:1128 -#: ../../mod/settings.php:620 ../../mod/settings.php:646 -#: ../../mod/contacts.php:344 ../../mod/editpost.php:148 -#: ../../mod/dfrn_request.php:844 ../../mod/fbrowser.php:81 +#: ../../include/items.php:4686 ../../include/conversation.php:1128 +#: ../../mod/settings.php:622 ../../mod/settings.php:648 +#: ../../mod/contacts.php:414 ../../mod/editpost.php:148 +#: ../../mod/dfrn_request.php:859 ../../mod/fbrowser.php:81 #: ../../mod/fbrowser.php:116 ../../mod/suggest.php:32 -#: ../../mod/photos.php:203 ../../mod/photos.php:292 ../../mod/tagrm.php:11 -#: ../../mod/tagrm.php:94 ../../mod/message.php:212 +#: ../../mod/photos.php:203 ../../mod/photos.php:292 ../../mod/follow.php:65 +#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/message.php:212 msgid "Cancel" msgstr "Annulla" -#: ../../include/items.php:4881 +#: ../../include/items.php:4904 msgid "Archives" msgstr "Archivi" @@ -923,18 +894,22 @@ msgstr "Modifica gruppo" msgid "Create a new group" msgstr "Crea un nuovo gruppo" -#: ../../include/group.php:273 +#: ../../include/group.php:273 ../../mod/group.php:94 ../../mod/group.php:180 +msgid "Group Name: " +msgstr "Nome del gruppo:" + +#: ../../include/group.php:275 msgid "Contacts not in any group" msgstr "Contatti in nessun gruppo." -#: ../../include/group.php:275 ../../mod/network.php:195 +#: ../../include/group.php:277 ../../mod/network.php:195 msgid "add" msgstr "aggiungi" #: ../../include/Photo_old.php:911 ../../include/Photo_old.php:926 #: ../../include/Photo_old.php:933 ../../include/Photo_old.php:955 -#: ../../include/Photo.php:933 ../../include/Photo.php:948 -#: ../../include/Photo.php:955 ../../include/Photo.php:977 +#: ../../include/Photo.php:951 ../../include/Photo.php:966 +#: ../../include/Photo.php:973 ../../include/Photo.php:995 #: ../../include/message.php:144 ../../mod/wall_upload.php:169 #: ../../mod/wall_upload.php:178 ../../mod/wall_upload.php:185 #: ../../mod/item.php:485 @@ -981,7 +956,7 @@ msgstr "Connetti/segui" msgid "Examples: Robert Morgenstein, Fishing" msgstr "Esempi: Mario Rossi, Pesca" -#: ../../include/contact_widgets.php:34 ../../mod/contacts.php:724 +#: ../../include/contact_widgets.php:34 ../../mod/contacts.php:794 #: ../../mod/directory.php:63 msgid "Find" msgstr "Trova" @@ -1006,7 +981,7 @@ msgstr "Tutto" msgid "Categories" msgstr "Categorie" -#: ../../include/contact_widgets.php:200 ../../mod/contacts.php:439 +#: ../../include/contact_widgets.php:200 ../../mod/contacts.php:509 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" @@ -1036,233 +1011,233 @@ msgstr "nessuna risposta" msgid "%s " msgstr "%s " -#: ../../include/enotify.php:68 +#: ../../include/enotify.php:78 #, php-format msgid "[Friendica:Notify] New mail received at %s" msgstr "[Friendica:Notifica] Nuovo messaggio privato ricevuto su %s" -#: ../../include/enotify.php:70 +#: ../../include/enotify.php:80 #, php-format msgid "%1$s sent you a new private message at %2$s." msgstr "%1$s ti ha inviato un nuovo messaggio privato su %2$s." -#: ../../include/enotify.php:71 +#: ../../include/enotify.php:81 #, php-format msgid "%1$s sent you %2$s." msgstr "%1$s ti ha inviato %2$s" -#: ../../include/enotify.php:71 +#: ../../include/enotify.php:81 msgid "a private message" msgstr "un messaggio privato" -#: ../../include/enotify.php:72 +#: ../../include/enotify.php:82 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "Visita %s per vedere e/o rispodere ai tuoi messaggi privati." -#: ../../include/enotify.php:124 +#: ../../include/enotify.php:134 #, php-format msgid "%1$s commented on [url=%2$s]a %3$s[/url]" msgstr "%1$s ha commentato [url=%2$s]%3$s[/url]" -#: ../../include/enotify.php:131 +#: ../../include/enotify.php:141 #, php-format msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" msgstr "%1$s ha commentato [url=%2$s]%4$s di %3$s[/url]" -#: ../../include/enotify.php:139 +#: ../../include/enotify.php:149 #, php-format msgid "%1$s commented on [url=%2$s]your %3$s[/url]" msgstr "%1$s ha commentato un [url=%2$s]tuo %3$s[/url]" -#: ../../include/enotify.php:149 +#: ../../include/enotify.php:159 #, php-format msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" msgstr "[Friendica:Notifica] Commento di %2$s alla conversazione #%1$d" -#: ../../include/enotify.php:150 +#: ../../include/enotify.php:160 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "%s ha commentato un elemento che stavi seguendo." -#: ../../include/enotify.php:153 ../../include/enotify.php:168 -#: ../../include/enotify.php:181 ../../include/enotify.php:194 -#: ../../include/enotify.php:212 ../../include/enotify.php:225 +#: ../../include/enotify.php:163 ../../include/enotify.php:178 +#: ../../include/enotify.php:191 ../../include/enotify.php:204 +#: ../../include/enotify.php:222 ../../include/enotify.php:235 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "Visita %s per vedere e/o commentare la conversazione" -#: ../../include/enotify.php:160 +#: ../../include/enotify.php:170 #, php-format msgid "[Friendica:Notify] %s posted to your profile wall" msgstr "[Friendica:Notifica] %s ha scritto sulla tua bacheca" -#: ../../include/enotify.php:162 +#: ../../include/enotify.php:172 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "%1$s ha scritto sulla tua bacheca su %2$s" -#: ../../include/enotify.php:164 +#: ../../include/enotify.php:174 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "%1$s ha inviato un messaggio sulla [url=%2$s]tua bacheca[/url]" -#: ../../include/enotify.php:175 +#: ../../include/enotify.php:185 #, php-format msgid "[Friendica:Notify] %s tagged you" msgstr "[Friendica:Notifica] %s ti ha taggato" -#: ../../include/enotify.php:176 +#: ../../include/enotify.php:186 #, php-format msgid "%1$s tagged you at %2$s" msgstr "%1$s ti ha taggato su %2$s" -#: ../../include/enotify.php:177 +#: ../../include/enotify.php:187 #, php-format msgid "%1$s [url=%2$s]tagged you[/url]." msgstr "%1$s [url=%2$s]ti ha taggato[/url]." -#: ../../include/enotify.php:188 +#: ../../include/enotify.php:198 #, php-format msgid "[Friendica:Notify] %s shared a new post" msgstr "[Friendica:Notifica] %s ha condiviso un nuovo messaggio" -#: ../../include/enotify.php:189 +#: ../../include/enotify.php:199 #, php-format msgid "%1$s shared a new post at %2$s" msgstr "%1$s ha condiviso un nuovo messaggio su %2$s" -#: ../../include/enotify.php:190 +#: ../../include/enotify.php:200 #, php-format msgid "%1$s [url=%2$s]shared a post[/url]." msgstr "%1$s [url=%2$s]ha condiviso un messaggio[/url]." -#: ../../include/enotify.php:202 +#: ../../include/enotify.php:212 #, php-format msgid "[Friendica:Notify] %1$s poked you" msgstr "[Friendica:Notifica] %1$s ti ha stuzzicato" -#: ../../include/enotify.php:203 +#: ../../include/enotify.php:213 #, php-format msgid "%1$s poked you at %2$s" msgstr "%1$s ti ha stuzzicato su %2$s" -#: ../../include/enotify.php:204 +#: ../../include/enotify.php:214 #, php-format msgid "%1$s [url=%2$s]poked you[/url]." msgstr "%1$s [url=%2$s]ti ha stuzzicato[/url]." -#: ../../include/enotify.php:219 +#: ../../include/enotify.php:229 #, php-format msgid "[Friendica:Notify] %s tagged your post" msgstr "[Friendica:Notifica] %s ha taggato un tuo messaggio" -#: ../../include/enotify.php:220 +#: ../../include/enotify.php:230 #, php-format msgid "%1$s tagged your post at %2$s" msgstr "%1$s ha taggato il tuo post su %2$s" -#: ../../include/enotify.php:221 +#: ../../include/enotify.php:231 #, php-format msgid "%1$s tagged [url=%2$s]your post[/url]" msgstr "%1$s ha taggato [url=%2$s]il tuo post[/url]" -#: ../../include/enotify.php:232 +#: ../../include/enotify.php:242 msgid "[Friendica:Notify] Introduction received" msgstr "[Friendica:Notifica] Hai ricevuto una presentazione" -#: ../../include/enotify.php:233 +#: ../../include/enotify.php:243 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "Hai ricevuto un'introduzione da '%1$s' su %2$s" -#: ../../include/enotify.php:234 +#: ../../include/enotify.php:244 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "Hai ricevuto [url=%1$s]un'introduzione[/url] da %2$s." -#: ../../include/enotify.php:237 ../../include/enotify.php:279 +#: ../../include/enotify.php:247 ../../include/enotify.php:289 #, php-format msgid "You may visit their profile at %s" msgstr "Puoi visitare il suo profilo presso %s" -#: ../../include/enotify.php:239 +#: ../../include/enotify.php:249 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "Visita %s per approvare o rifiutare la presentazione." -#: ../../include/enotify.php:247 +#: ../../include/enotify.php:257 msgid "[Friendica:Notify] A new person is sharing with you" msgstr "[Friendica:Notifica] Una nuova persona sta condividendo con te" -#: ../../include/enotify.php:248 ../../include/enotify.php:249 +#: ../../include/enotify.php:258 ../../include/enotify.php:259 #, php-format msgid "%1$s is sharing with you at %2$s" msgstr "%1$s sta condividendo con te su %2$s" -#: ../../include/enotify.php:255 +#: ../../include/enotify.php:265 msgid "[Friendica:Notify] You have a new follower" msgstr "[Friendica:Notifica] Una nuova persona ti segue" -#: ../../include/enotify.php:256 ../../include/enotify.php:257 +#: ../../include/enotify.php:266 ../../include/enotify.php:267 #, php-format msgid "You have a new follower at %2$s : %1$s" msgstr "Un nuovo utente ha iniziato a seguirti su %2$s : %1$s" -#: ../../include/enotify.php:270 +#: ../../include/enotify.php:280 msgid "[Friendica:Notify] Friend suggestion received" msgstr "[Friendica:Notifica] Hai ricevuto un suggerimento di amicizia" -#: ../../include/enotify.php:271 +#: ../../include/enotify.php:281 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "Hai ricevuto un suggerimento di amicizia da '%1$s' su %2$s" -#: ../../include/enotify.php:272 +#: ../../include/enotify.php:282 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "Hai ricevuto [url=%1$s]un suggerimento di amicizia[/url] per %2$s su %3$s" -#: ../../include/enotify.php:277 +#: ../../include/enotify.php:287 msgid "Name:" msgstr "Nome:" -#: ../../include/enotify.php:278 +#: ../../include/enotify.php:288 msgid "Photo:" msgstr "Foto:" -#: ../../include/enotify.php:281 +#: ../../include/enotify.php:291 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "Visita %s per approvare o rifiutare il suggerimento." -#: ../../include/enotify.php:289 ../../include/enotify.php:302 +#: ../../include/enotify.php:299 ../../include/enotify.php:312 msgid "[Friendica:Notify] Connection accepted" msgstr "[Friendica:Notifica] Connessione accettata" -#: ../../include/enotify.php:290 ../../include/enotify.php:303 +#: ../../include/enotify.php:300 ../../include/enotify.php:313 #, php-format msgid "'%1$s' has acepted your connection request at %2$s" msgstr "'%1$s' ha accettato la tua richiesta di connessione su %2$s" -#: ../../include/enotify.php:291 ../../include/enotify.php:304 +#: ../../include/enotify.php:301 ../../include/enotify.php:314 #, php-format msgid "%2$s has accepted your [url=%1$s]connection request[/url]." msgstr "%2$s ha accettato la tua [url=%1$s]richiesta di connessione[/url]" -#: ../../include/enotify.php:294 +#: ../../include/enotify.php:304 msgid "" "You are now mutual friends and may exchange status updates, photos, and email\n" "\twithout restriction." msgstr "Ora siete connessi reciprocamente e potete scambiarvi aggiornamenti di stato, foto e email\nsenza restrizioni" -#: ../../include/enotify.php:297 ../../include/enotify.php:311 +#: ../../include/enotify.php:307 ../../include/enotify.php:321 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "Visita %s se desideri modificare questo collegamento." -#: ../../include/enotify.php:307 +#: ../../include/enotify.php:317 #, php-format msgid "" "'%1$s' has chosen to accept you a \"fan\", which restricts some forms of " @@ -1271,83 +1246,83 @@ msgid "" "automatically." msgstr "'%1$s' ha scelto di accettarti come \"fan\", il che limita alcune forme di comunicazione, come i messaggi privati, e alcune possibiltà di interazione col profilo. Se è una pagina di una comunità o di una celebrità, queste impostazioni sono state applicate automaticamente." -#: ../../include/enotify.php:309 +#: ../../include/enotify.php:319 #, php-format msgid "" "'%1$s' may choose to extend this into a two-way or more permissive " "relationship in the future. " msgstr "'%1$s' può decidere in futuro di estendere la connessione in una reciproca o più permissiva." -#: ../../include/enotify.php:322 +#: ../../include/enotify.php:332 msgid "[Friendica System:Notify] registration request" msgstr "[Friendica System:Notifica] richiesta di registrazione" -#: ../../include/enotify.php:323 +#: ../../include/enotify.php:333 #, php-format msgid "You've received a registration request from '%1$s' at %2$s" msgstr "Hai ricevuto una richiesta di registrazione da '%1$s' su %2$s" -#: ../../include/enotify.php:324 +#: ../../include/enotify.php:334 #, php-format msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgstr "Hai ricevuto una [url=%1$s]richiesta di registrazione[/url] da %2$s." -#: ../../include/enotify.php:327 +#: ../../include/enotify.php:337 #, php-format msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" msgstr "Nome completo: %1$s\nIndirizzo del sito: %2$s\nNome utente: %3$s (%4$s)" -#: ../../include/enotify.php:330 +#: ../../include/enotify.php:340 #, php-format msgid "Please visit %s to approve or reject the request." msgstr "Visita %s per approvare o rifiutare la richiesta." -#: ../../include/api.php:304 ../../include/api.php:315 -#: ../../include/api.php:416 ../../include/api.php:1063 -#: ../../include/api.php:1065 +#: ../../include/api.php:310 ../../include/api.php:321 +#: ../../include/api.php:422 ../../include/api.php:1116 +#: ../../include/api.php:1118 msgid "User not found." msgstr "Utente non trovato." -#: ../../include/api.php:770 +#: ../../include/api.php:776 #, php-format msgid "Daily posting limit of %d posts reached. The post was rejected." msgstr "Limite giornaliero di %d messaggi raggiunto. Il messaggio è stato rifiutato" -#: ../../include/api.php:789 +#: ../../include/api.php:795 #, php-format msgid "Weekly posting limit of %d posts reached. The post was rejected." msgstr "Limite settimanale di %d messaggi raggiunto. Il messaggio è stato rifiutato" -#: ../../include/api.php:808 +#: ../../include/api.php:814 #, php-format msgid "Monthly posting limit of %d posts reached. The post was rejected." msgstr "Limite mensile di %d messaggi raggiunto. Il messaggio è stato rifiutato" -#: ../../include/api.php:1271 +#: ../../include/api.php:1325 msgid "There is no status with this id." msgstr "Non c'è nessuno status con questo id." -#: ../../include/api.php:1341 +#: ../../include/api.php:1399 msgid "There is no conversation with this id." msgstr "Non c'è nessuna conversazione con questo id" -#: ../../include/api.php:1613 +#: ../../include/api.php:1669 msgid "Invalid request." msgstr "Richiesta non valida." -#: ../../include/api.php:1624 +#: ../../include/api.php:1680 msgid "Invalid item." msgstr "Elemento non valido." -#: ../../include/api.php:1634 +#: ../../include/api.php:1690 msgid "Invalid action. " msgstr "Azione non valida." -#: ../../include/api.php:1642 +#: ../../include/api.php:1698 msgid "DB error" msgstr "Errore database" -#: ../../include/network.php:890 +#: ../../include/network.php:959 msgid "view full size" msgstr "vedi a schermo intero" @@ -1355,7 +1330,7 @@ msgstr "vedi a schermo intero" msgid " on Last.fm" msgstr "su Last.fm" -#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1133 +#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1153 msgid "Full Name:" msgstr "Nome completo:" @@ -1492,8 +1467,8 @@ msgstr "Applicazioni" msgid "Addon applications, utilities, games" msgstr "Applicazioni, utilità e giochi aggiuntivi" -#: ../../include/nav.php:119 ../../include/text.php:968 -#: ../../include/text.php:969 ../../mod/search.php:99 +#: ../../include/nav.php:119 ../../include/text.php:970 +#: ../../include/text.php:971 ../../mod/search.php:99 msgid "Search" msgstr "Cerca" @@ -1541,87 +1516,87 @@ msgstr "Reset pagina Rete" msgid "Load Network page with no filters" msgstr "Carica la pagina Rete senza nessun filtro" -#: ../../include/nav.php:154 ../../mod/notifications.php:98 +#: ../../include/nav.php:153 ../../mod/notifications.php:98 msgid "Introductions" msgstr "Presentazioni" -#: ../../include/nav.php:154 +#: ../../include/nav.php:153 msgid "Friend Requests" msgstr "Richieste di amicizia" -#: ../../include/nav.php:155 ../../mod/notifications.php:224 +#: ../../include/nav.php:156 ../../mod/notifications.php:224 msgid "Notifications" msgstr "Notifiche" -#: ../../include/nav.php:156 +#: ../../include/nav.php:157 msgid "See all notifications" msgstr "Vedi tutte le notifiche" -#: ../../include/nav.php:157 +#: ../../include/nav.php:158 msgid "Mark all system notifications seen" msgstr "Segna tutte le notifiche come viste" -#: ../../include/nav.php:161 ../../mod/message.php:182 +#: ../../include/nav.php:162 ../../mod/message.php:182 msgid "Messages" msgstr "Messaggi" -#: ../../include/nav.php:161 +#: ../../include/nav.php:162 msgid "Private mail" msgstr "Posta privata" -#: ../../include/nav.php:162 +#: ../../include/nav.php:163 msgid "Inbox" msgstr "In arrivo" -#: ../../include/nav.php:163 +#: ../../include/nav.php:164 msgid "Outbox" msgstr "Inviati" -#: ../../include/nav.php:164 ../../mod/message.php:9 +#: ../../include/nav.php:165 ../../mod/message.php:9 msgid "New Message" msgstr "Nuovo messaggio" -#: ../../include/nav.php:167 +#: ../../include/nav.php:168 msgid "Manage" msgstr "Gestisci" -#: ../../include/nav.php:167 +#: ../../include/nav.php:168 msgid "Manage other pages" msgstr "Gestisci altre pagine" -#: ../../include/nav.php:170 ../../mod/settings.php:67 +#: ../../include/nav.php:171 ../../mod/settings.php:67 msgid "Delegations" msgstr "Delegazioni" -#: ../../include/nav.php:170 ../../mod/delegate.php:130 +#: ../../include/nav.php:171 ../../mod/delegate.php:130 msgid "Delegate Page Management" msgstr "Gestione delegati per la pagina" -#: ../../include/nav.php:172 +#: ../../include/nav.php:173 msgid "Account settings" msgstr "Parametri account" -#: ../../include/nav.php:175 +#: ../../include/nav.php:176 msgid "Manage/Edit Profiles" msgstr "Gestisci/Modifica i profili" -#: ../../include/nav.php:177 +#: ../../include/nav.php:178 msgid "Manage/edit friends and contacts" msgstr "Gestisci/modifica amici e contatti" -#: ../../include/nav.php:184 ../../mod/admin.php:130 +#: ../../include/nav.php:185 ../../mod/admin.php:130 msgid "Admin" msgstr "Amministrazione" -#: ../../include/nav.php:184 +#: ../../include/nav.php:185 msgid "Site setup and configuration" msgstr "Configurazione del sito" -#: ../../include/nav.php:188 +#: ../../include/nav.php:189 msgid "Navigation" msgstr "Navigazione" -#: ../../include/nav.php:188 +#: ../../include/nav.php:189 msgid "Site map" msgstr "Mappa del sito" @@ -1732,16 +1707,16 @@ msgstr[1] "%d contatti non importati" msgid "Done. You can now login with your username and password" msgstr "Fatto. Ora puoi entrare con il tuo nome utente e la tua password" -#: ../../include/event.php:11 ../../include/bb2diaspora.php:133 +#: ../../include/event.php:13 ../../include/bb2diaspora.php:133 #: ../../mod/localtime.php:12 msgid "l F d, Y \\@ g:i A" msgstr "l d F Y \\@ G:i" -#: ../../include/event.php:20 ../../include/bb2diaspora.php:139 +#: ../../include/event.php:22 ../../include/bb2diaspora.php:139 msgid "Starts:" msgstr "Inizia:" -#: ../../include/event.php:30 ../../include/bb2diaspora.php:147 +#: ../../include/event.php:32 ../../include/bb2diaspora.php:147 msgid "Finishes:" msgstr "Finisce:" @@ -1801,11 +1776,11 @@ msgid "" "[pre]%s[/pre]" msgstr "Il messaggio di errore è\n[pre]%s[/pre]" -#: ../../include/dbstructure.php:150 +#: ../../include/dbstructure.php:152 msgid "Errors encountered creating database tables." msgstr "La creazione delle tabelle del database ha generato errori." -#: ../../include/dbstructure.php:208 +#: ../../include/dbstructure.php:210 msgid "Errors encountered performing database changes." msgstr "Riscontrati errori applicando le modifiche al database." @@ -1914,19 +1889,19 @@ msgstr "E' ok, probabilmente innocuo" msgid "Reputable, has my trust" msgstr "Rispettabile, ha la mia fiducia" -#: ../../include/contact_selectors.php:56 ../../mod/admin.php:571 +#: ../../include/contact_selectors.php:56 ../../mod/admin.php:573 msgid "Frequently" msgstr "Frequentemente" -#: ../../include/contact_selectors.php:57 ../../mod/admin.php:572 +#: ../../include/contact_selectors.php:57 ../../mod/admin.php:574 msgid "Hourly" msgstr "Ogni ora" -#: ../../include/contact_selectors.php:58 ../../mod/admin.php:573 +#: ../../include/contact_selectors.php:58 ../../mod/admin.php:575 msgid "Twice daily" msgstr "Due volte al dì" -#: ../../include/contact_selectors.php:59 ../../mod/admin.php:574 +#: ../../include/contact_selectors.php:59 ../../mod/admin.php:576 msgid "Daily" msgstr "Giornalmente" @@ -1938,7 +1913,7 @@ msgstr "Settimanalmente" msgid "Monthly" msgstr "Mensilmente" -#: ../../include/contact_selectors.php:76 ../../mod/dfrn_request.php:836 +#: ../../include/contact_selectors.php:76 ../../mod/dfrn_request.php:851 msgid "Friendica" msgstr "Friendica" @@ -1951,13 +1926,13 @@ msgid "RSS/Atom" msgstr "RSS / Atom" #: ../../include/contact_selectors.php:79 -#: ../../include/contact_selectors.php:86 ../../mod/admin.php:1003 -#: ../../mod/admin.php:1015 ../../mod/admin.php:1016 ../../mod/admin.php:1031 +#: ../../include/contact_selectors.php:86 ../../mod/admin.php:1006 +#: ../../mod/admin.php:1018 ../../mod/admin.php:1019 ../../mod/admin.php:1034 msgid "Email" msgstr "Email" -#: ../../include/contact_selectors.php:80 ../../mod/settings.php:741 -#: ../../mod/dfrn_request.php:838 +#: ../../include/contact_selectors.php:80 ../../mod/settings.php:761 +#: ../../mod/dfrn_request.php:853 msgid "Diaspora" msgstr "Diaspora" @@ -2006,17 +1981,17 @@ msgstr "Statusnet" msgid "App.net" msgstr "App.net" -#: ../../include/diaspora.php:621 ../../include/conversation.php:172 -#: ../../mod/dfrn_confirm.php:486 +#: ../../include/diaspora.php:622 ../../include/conversation.php:172 +#: ../../mod/dfrn_confirm.php:487 #, php-format msgid "%1$s is now friends with %2$s" msgstr "%1$s e %2$s adesso sono amici" -#: ../../include/diaspora.php:704 +#: ../../include/diaspora.php:705 msgid "Sharing notification from Diaspora network" msgstr "Notifica di condivisione dal network Diaspora*" -#: ../../include/diaspora.php:2444 +#: ../../include/diaspora.php:2493 msgid "Attachments:" msgstr "Allegati:" @@ -2049,36 +2024,36 @@ msgstr "post/elemento" msgid "%1$s marked %2$s's %3$s as favorite" msgstr "%1$s ha segnato il/la %3$s di %2$s come preferito" -#: ../../include/conversation.php:612 ../../object/Item.php:129 +#: ../../include/conversation.php:612 ../../object/Item.php:130 #: ../../mod/photos.php:1653 ../../mod/content.php:437 #: ../../mod/content.php:740 msgid "Select" msgstr "Seleziona" -#: ../../include/conversation.php:613 ../../object/Item.php:130 -#: ../../mod/group.php:171 ../../mod/settings.php:682 -#: ../../mod/contacts.php:733 ../../mod/admin.php:1007 +#: ../../include/conversation.php:613 ../../object/Item.php:131 +#: ../../mod/group.php:171 ../../mod/settings.php:684 +#: ../../mod/contacts.php:803 ../../mod/admin.php:1010 #: ../../mod/photos.php:1654 ../../mod/content.php:438 #: ../../mod/content.php:741 msgid "Delete" msgstr "Rimuovi" -#: ../../include/conversation.php:653 ../../object/Item.php:326 -#: ../../object/Item.php:327 ../../mod/content.php:471 +#: ../../include/conversation.php:653 ../../object/Item.php:329 +#: ../../object/Item.php:330 ../../mod/content.php:471 #: ../../mod/content.php:852 ../../mod/content.php:853 #, php-format msgid "View %s's profile @ %s" msgstr "Vedi il profilo di %s @ %s" -#: ../../include/conversation.php:665 ../../object/Item.php:316 +#: ../../include/conversation.php:665 ../../object/Item.php:319 msgid "Categories:" msgstr "Categorie:" -#: ../../include/conversation.php:666 ../../object/Item.php:317 +#: ../../include/conversation.php:666 ../../object/Item.php:320 msgid "Filed under:" msgstr "Archiviato in:" -#: ../../include/conversation.php:673 ../../object/Item.php:340 +#: ../../include/conversation.php:673 ../../object/Item.php:343 #: ../../mod/content.php:481 ../../mod/content.php:864 #, php-format msgid "%s from %s" @@ -2089,7 +2064,7 @@ msgid "View in context" msgstr "Vedi nel contesto" #: ../../include/conversation.php:691 ../../include/conversation.php:1108 -#: ../../object/Item.php:364 ../../mod/wallmessage.php:156 +#: ../../object/Item.php:367 ../../mod/wallmessage.php:156 #: ../../mod/editpost.php:124 ../../mod/photos.php:1545 #: ../../mod/message.php:334 ../../mod/message.php:565 #: ../../mod/content.php:499 ../../mod/content.php:883 @@ -2192,7 +2167,7 @@ msgstr "Invia a email" msgid "Connectors disabled, since \"%s\" is enabled." msgstr "Connettore disabilitato, dato che \"%s\" è abilitato." -#: ../../include/conversation.php:1056 ../../mod/settings.php:1033 +#: ../../include/conversation.php:1056 ../../mod/settings.php:1053 msgid "Hide your profile details from unknown viewers?" msgstr "Nascondi i dettagli del tuo profilo ai visitatori sconosciuti?" @@ -2288,10 +2263,10 @@ msgstr "Messaggio pubblico" msgid "Example: bob@example.com, mary@example.com" msgstr "Esempio: bob@example.com, mary@example.com" -#: ../../include/conversation.php:1125 ../../object/Item.php:687 +#: ../../include/conversation.php:1125 ../../object/Item.php:690 #: ../../mod/editpost.php:145 ../../mod/photos.php:1566 #: ../../mod/photos.php:1610 ../../mod/photos.php:1698 -#: ../../mod/content.php:719 +#: ../../mod/events.php:489 ../../mod/content.php:719 msgid "Preview" msgstr "Anteprima" @@ -2307,299 +2282,299 @@ msgstr "Invia ai Contatti" msgid "Private post" msgstr "Post privato" -#: ../../include/text.php:297 +#: ../../include/text.php:299 msgid "newer" msgstr "nuovi" -#: ../../include/text.php:299 +#: ../../include/text.php:301 msgid "older" msgstr "vecchi" -#: ../../include/text.php:304 +#: ../../include/text.php:306 msgid "prev" msgstr "prec" -#: ../../include/text.php:306 +#: ../../include/text.php:308 msgid "first" msgstr "primo" -#: ../../include/text.php:338 +#: ../../include/text.php:340 msgid "last" msgstr "ultimo" -#: ../../include/text.php:341 +#: ../../include/text.php:343 msgid "next" msgstr "succ" -#: ../../include/text.php:396 +#: ../../include/text.php:398 msgid "Loading more entries..." msgstr "Carico più elementi..." -#: ../../include/text.php:397 +#: ../../include/text.php:399 msgid "The end" msgstr "Fine" -#: ../../include/text.php:870 +#: ../../include/text.php:872 msgid "No contacts" msgstr "Nessun contatto" -#: ../../include/text.php:879 +#: ../../include/text.php:881 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" msgstr[0] "%d contatto" msgstr[1] "%d contatti" -#: ../../include/text.php:891 ../../mod/viewcontacts.php:78 +#: ../../include/text.php:893 ../../mod/viewcontacts.php:78 msgid "View Contacts" msgstr "Visualizza i contatti" -#: ../../include/text.php:971 ../../mod/editpost.php:109 +#: ../../include/text.php:973 ../../mod/editpost.php:109 #: ../../mod/notes.php:63 ../../mod/filer.php:31 msgid "Save" msgstr "Salva" -#: ../../include/text.php:1020 +#: ../../include/text.php:1022 msgid "poke" msgstr "stuzzica" -#: ../../include/text.php:1020 +#: ../../include/text.php:1022 msgid "poked" msgstr "ha stuzzicato" -#: ../../include/text.php:1021 +#: ../../include/text.php:1023 msgid "ping" msgstr "invia un ping" -#: ../../include/text.php:1021 +#: ../../include/text.php:1023 msgid "pinged" msgstr "ha inviato un ping" -#: ../../include/text.php:1022 +#: ../../include/text.php:1024 msgid "prod" msgstr "pungola" -#: ../../include/text.php:1022 +#: ../../include/text.php:1024 msgid "prodded" msgstr "ha pungolato" -#: ../../include/text.php:1023 +#: ../../include/text.php:1025 msgid "slap" msgstr "schiaffeggia" -#: ../../include/text.php:1023 +#: ../../include/text.php:1025 msgid "slapped" msgstr "ha schiaffeggiato" -#: ../../include/text.php:1024 +#: ../../include/text.php:1026 msgid "finger" msgstr "tocca" -#: ../../include/text.php:1024 +#: ../../include/text.php:1026 msgid "fingered" msgstr "ha toccato" -#: ../../include/text.php:1025 +#: ../../include/text.php:1027 msgid "rebuff" msgstr "respingi" -#: ../../include/text.php:1025 +#: ../../include/text.php:1027 msgid "rebuffed" msgstr "ha respinto" -#: ../../include/text.php:1039 +#: ../../include/text.php:1041 msgid "happy" msgstr "felice" -#: ../../include/text.php:1040 +#: ../../include/text.php:1042 msgid "sad" msgstr "triste" -#: ../../include/text.php:1041 +#: ../../include/text.php:1043 msgid "mellow" msgstr "rilassato" -#: ../../include/text.php:1042 +#: ../../include/text.php:1044 msgid "tired" msgstr "stanco" -#: ../../include/text.php:1043 +#: ../../include/text.php:1045 msgid "perky" msgstr "vivace" -#: ../../include/text.php:1044 +#: ../../include/text.php:1046 msgid "angry" msgstr "arrabbiato" -#: ../../include/text.php:1045 +#: ../../include/text.php:1047 msgid "stupified" msgstr "stupefatto" -#: ../../include/text.php:1046 +#: ../../include/text.php:1048 msgid "puzzled" msgstr "confuso" -#: ../../include/text.php:1047 +#: ../../include/text.php:1049 msgid "interested" msgstr "interessato" -#: ../../include/text.php:1048 +#: ../../include/text.php:1050 msgid "bitter" msgstr "risentito" -#: ../../include/text.php:1049 +#: ../../include/text.php:1051 msgid "cheerful" msgstr "giocoso" -#: ../../include/text.php:1050 +#: ../../include/text.php:1052 msgid "alive" msgstr "vivo" -#: ../../include/text.php:1051 +#: ../../include/text.php:1053 msgid "annoyed" msgstr "annoiato" -#: ../../include/text.php:1052 +#: ../../include/text.php:1054 msgid "anxious" msgstr "ansioso" -#: ../../include/text.php:1053 +#: ../../include/text.php:1055 msgid "cranky" msgstr "irritabile" -#: ../../include/text.php:1054 +#: ../../include/text.php:1056 msgid "disturbed" msgstr "disturbato" -#: ../../include/text.php:1055 +#: ../../include/text.php:1057 msgid "frustrated" msgstr "frustato" -#: ../../include/text.php:1056 +#: ../../include/text.php:1058 msgid "motivated" msgstr "motivato" -#: ../../include/text.php:1057 +#: ../../include/text.php:1059 msgid "relaxed" msgstr "rilassato" -#: ../../include/text.php:1058 +#: ../../include/text.php:1060 msgid "surprised" msgstr "sorpreso" -#: ../../include/text.php:1228 +#: ../../include/text.php:1230 msgid "Monday" msgstr "Lunedì" -#: ../../include/text.php:1228 +#: ../../include/text.php:1230 msgid "Tuesday" msgstr "Martedì" -#: ../../include/text.php:1228 +#: ../../include/text.php:1230 msgid "Wednesday" msgstr "Mercoledì" -#: ../../include/text.php:1228 +#: ../../include/text.php:1230 msgid "Thursday" msgstr "Giovedì" -#: ../../include/text.php:1228 +#: ../../include/text.php:1230 msgid "Friday" msgstr "Venerdì" -#: ../../include/text.php:1228 +#: ../../include/text.php:1230 msgid "Saturday" msgstr "Sabato" -#: ../../include/text.php:1228 +#: ../../include/text.php:1230 msgid "Sunday" msgstr "Domenica" -#: ../../include/text.php:1232 +#: ../../include/text.php:1234 msgid "January" msgstr "Gennaio" -#: ../../include/text.php:1232 +#: ../../include/text.php:1234 msgid "February" msgstr "Febbraio" -#: ../../include/text.php:1232 +#: ../../include/text.php:1234 msgid "March" msgstr "Marzo" -#: ../../include/text.php:1232 +#: ../../include/text.php:1234 msgid "April" msgstr "Aprile" -#: ../../include/text.php:1232 +#: ../../include/text.php:1234 msgid "May" msgstr "Maggio" -#: ../../include/text.php:1232 +#: ../../include/text.php:1234 msgid "June" msgstr "Giugno" -#: ../../include/text.php:1232 +#: ../../include/text.php:1234 msgid "July" msgstr "Luglio" -#: ../../include/text.php:1232 +#: ../../include/text.php:1234 msgid "August" msgstr "Agosto" -#: ../../include/text.php:1232 +#: ../../include/text.php:1234 msgid "September" msgstr "Settembre" -#: ../../include/text.php:1232 +#: ../../include/text.php:1234 msgid "October" msgstr "Ottobre" -#: ../../include/text.php:1232 +#: ../../include/text.php:1234 msgid "November" msgstr "Novembre" -#: ../../include/text.php:1232 +#: ../../include/text.php:1234 msgid "December" msgstr "Dicembre" -#: ../../include/text.php:1422 ../../mod/videos.php:301 +#: ../../include/text.php:1424 ../../mod/videos.php:301 msgid "View Video" msgstr "Guarda Video" -#: ../../include/text.php:1454 +#: ../../include/text.php:1456 msgid "bytes" msgstr "bytes" -#: ../../include/text.php:1478 ../../include/text.php:1490 +#: ../../include/text.php:1488 ../../include/text.php:1500 msgid "Click to open/close" msgstr "Clicca per aprire/chiudere" -#: ../../include/text.php:1664 ../../include/text.php:1674 -#: ../../mod/events.php:335 +#: ../../include/text.php:1674 ../../include/text.php:1684 +#: ../../mod/events.php:347 msgid "link to source" msgstr "Collegamento all'originale" -#: ../../include/text.php:1731 +#: ../../include/text.php:1741 msgid "Select an alternate language" msgstr "Seleziona una diversa lingua" -#: ../../include/text.php:1987 +#: ../../include/text.php:1997 msgid "activity" msgstr "attività" -#: ../../include/text.php:1989 ../../object/Item.php:389 -#: ../../object/Item.php:402 ../../mod/content.php:605 +#: ../../include/text.php:1999 ../../object/Item.php:392 +#: ../../object/Item.php:405 ../../mod/content.php:605 msgid "comment" msgid_plural "comments" msgstr[0] "" msgstr[1] "commento" -#: ../../include/text.php:1990 +#: ../../include/text.php:2000 msgid "post" msgstr "messaggio" -#: ../../include/text.php:2158 +#: ../../include/text.php:2168 msgid "Item filed" msgstr "Messaggio salvato" @@ -2622,28 +2597,28 @@ msgstr "Abbiamo incontrato un problema mentre contattavamo il server OpenID che msgid "The error message was:" msgstr "Il messaggio riportato era:" -#: ../../include/bbcode.php:433 ../../include/bbcode.php:1066 -#: ../../include/bbcode.php:1067 +#: ../../include/bbcode.php:448 ../../include/bbcode.php:1094 +#: ../../include/bbcode.php:1095 msgid "Image/photo" msgstr "Immagine/foto" -#: ../../include/bbcode.php:531 +#: ../../include/bbcode.php:546 #, php-format msgid "%2$s %3$s" msgstr "%2$s %3$s" -#: ../../include/bbcode.php:565 +#: ../../include/bbcode.php:580 #, php-format msgid "" "%s wrote the following post" msgstr "%s ha scritto il seguente messaggio" -#: ../../include/bbcode.php:1030 ../../include/bbcode.php:1050 +#: ../../include/bbcode.php:1058 ../../include/bbcode.php:1078 msgid "$1 wrote:" msgstr "$1 ha scritto:" -#: ../../include/bbcode.php:1075 ../../include/bbcode.php:1076 +#: ../../include/bbcode.php:1103 ../../include/bbcode.php:1104 msgid "Encrypted content" msgstr "Contenuto criptato" @@ -2659,17 +2634,17 @@ msgstr "Carica una foto per il profilo." msgid "Welcome back " msgstr "Ciao " -#: ../../include/security.php:366 +#: ../../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 "Il token di sicurezza della form non era corretto. Probabilmente la form è rimasta aperta troppo a lunto (più di tre ore) prima di inviarla." -#: ../../include/oembed.php:213 +#: ../../include/oembed.php:218 msgid "Embedded content" msgstr "Contenuto incorporato" -#: ../../include/oembed.php:222 +#: ../../include/oembed.php:227 msgid "Embedding disabled" msgstr "Embed disabilitato" @@ -3013,7 +2988,7 @@ msgid "" "\t\tThank you and welcome to %2$s." msgstr "\nI dettagli del tuo utente sono:\n Indirizzo del sito: %3$s\n Nome utente: %1$s\n Password: %5$s\n\nPuoi cambiare la tua password dalla pagina delle impostazioni del tuo account dopo esserti autenticato.\n\nPer favore, prenditi qualche momento per esaminare tutte le impostazioni presenti.\n\nPotresti voler aggiungere qualche informazione di base al tuo profilo predefinito (nella pagina \"Profili\"), così che le altre persone possano trovarti più facilmente.\n\nTi raccomandiamo di inserire il tuo nome completo, aggiungere una foto, aggiungere qualche parola chiave del profilo (molto utili per trovare nuovi contatti), e magari in quale nazione vivi, se non vuoi essere più specifico di così.\n\nNoi rispettiamo appieno la tua privacy, e nessuna di queste informazioni è necessaria o obbligatoria.\nSe sei nuovo e non conosci nessuno qui, possono aiutarti a trovare qualche nuovo e interessante contatto.\n\nGrazie e benvenuto su %2$s" -#: ../../include/user.php:413 ../../mod/admin.php:838 +#: ../../include/user.php:413 ../../mod/admin.php:841 #, php-format msgid "Registration details for %s" msgstr "Dettagli della registrazione di %s" @@ -3022,144 +2997,144 @@ msgstr "Dettagli della registrazione di %s" msgid "Visible to everybody" msgstr "Visibile a tutti" -#: ../../object/Item.php:94 +#: ../../object/Item.php:95 msgid "This entry was edited" msgstr "Questa voce è stata modificata" -#: ../../object/Item.php:116 ../../mod/photos.php:1359 +#: ../../object/Item.php:117 ../../mod/photos.php:1359 #: ../../mod/content.php:620 msgid "Private Message" msgstr "Messaggio privato" -#: ../../object/Item.php:120 ../../mod/settings.php:681 +#: ../../object/Item.php:121 ../../mod/settings.php:683 #: ../../mod/content.php:728 msgid "Edit" msgstr "Modifica" -#: ../../object/Item.php:133 ../../mod/content.php:763 +#: ../../object/Item.php:134 ../../mod/content.php:763 msgid "save to folder" msgstr "salva nella cartella" -#: ../../object/Item.php:195 ../../mod/content.php:753 +#: ../../object/Item.php:196 ../../mod/content.php:753 msgid "add star" msgstr "aggiungi a speciali" -#: ../../object/Item.php:196 ../../mod/content.php:754 +#: ../../object/Item.php:197 ../../mod/content.php:754 msgid "remove star" msgstr "rimuovi da speciali" -#: ../../object/Item.php:197 ../../mod/content.php:755 +#: ../../object/Item.php:198 ../../mod/content.php:755 msgid "toggle star status" msgstr "Inverti stato preferito" -#: ../../object/Item.php:200 ../../mod/content.php:758 +#: ../../object/Item.php:201 ../../mod/content.php:758 msgid "starred" msgstr "preferito" -#: ../../object/Item.php:208 +#: ../../object/Item.php:209 msgid "ignore thread" msgstr "ignora la discussione" -#: ../../object/Item.php:209 +#: ../../object/Item.php:210 msgid "unignore thread" msgstr "non ignorare la discussione" -#: ../../object/Item.php:210 +#: ../../object/Item.php:211 msgid "toggle ignore status" msgstr "inverti stato \"Ignora\"" -#: ../../object/Item.php:213 +#: ../../object/Item.php:214 msgid "ignored" msgstr "ignorato" -#: ../../object/Item.php:220 ../../mod/content.php:759 +#: ../../object/Item.php:221 ../../mod/content.php:759 msgid "add tag" msgstr "aggiungi tag" -#: ../../object/Item.php:231 ../../mod/photos.php:1542 +#: ../../object/Item.php:232 ../../mod/photos.php:1542 #: ../../mod/content.php:684 msgid "I like this (toggle)" msgstr "Mi piace (clic per cambiare)" -#: ../../object/Item.php:231 ../../mod/content.php:684 +#: ../../object/Item.php:232 ../../mod/content.php:684 msgid "like" msgstr "mi piace" -#: ../../object/Item.php:232 ../../mod/photos.php:1543 +#: ../../object/Item.php:233 ../../mod/photos.php:1543 #: ../../mod/content.php:685 msgid "I don't like this (toggle)" msgstr "Non mi piace (clic per cambiare)" -#: ../../object/Item.php:232 ../../mod/content.php:685 +#: ../../object/Item.php:233 ../../mod/content.php:685 msgid "dislike" msgstr "non mi piace" -#: ../../object/Item.php:234 ../../mod/content.php:687 +#: ../../object/Item.php:235 ../../mod/content.php:687 msgid "Share this" msgstr "Condividi questo" -#: ../../object/Item.php:234 ../../mod/content.php:687 +#: ../../object/Item.php:235 ../../mod/content.php:687 msgid "share" msgstr "condividi" -#: ../../object/Item.php:328 ../../mod/content.php:854 +#: ../../object/Item.php:331 ../../mod/content.php:854 msgid "to" msgstr "a" -#: ../../object/Item.php:329 +#: ../../object/Item.php:332 msgid "via" msgstr "via" -#: ../../object/Item.php:330 ../../mod/content.php:855 +#: ../../object/Item.php:333 ../../mod/content.php:855 msgid "Wall-to-Wall" msgstr "Da bacheca a bacheca" -#: ../../object/Item.php:331 ../../mod/content.php:856 +#: ../../object/Item.php:334 ../../mod/content.php:856 msgid "via Wall-To-Wall:" msgstr "da bacheca a bacheca" -#: ../../object/Item.php:387 ../../mod/content.php:603 +#: ../../object/Item.php:390 ../../mod/content.php:603 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%d commento" msgstr[1] "%d commenti" -#: ../../object/Item.php:675 ../../mod/photos.php:1562 +#: ../../object/Item.php:678 ../../mod/photos.php:1562 #: ../../mod/photos.php:1606 ../../mod/photos.php:1694 #: ../../mod/content.php:707 msgid "This is you" msgstr "Questo sei tu" -#: ../../object/Item.php:679 ../../mod/content.php:711 +#: ../../object/Item.php:682 ../../mod/content.php:711 msgid "Bold" msgstr "Grassetto" -#: ../../object/Item.php:680 ../../mod/content.php:712 +#: ../../object/Item.php:683 ../../mod/content.php:712 msgid "Italic" msgstr "Corsivo" -#: ../../object/Item.php:681 ../../mod/content.php:713 +#: ../../object/Item.php:684 ../../mod/content.php:713 msgid "Underline" msgstr "Sottolineato" -#: ../../object/Item.php:682 ../../mod/content.php:714 +#: ../../object/Item.php:685 ../../mod/content.php:714 msgid "Quote" msgstr "Citazione" -#: ../../object/Item.php:683 ../../mod/content.php:715 +#: ../../object/Item.php:686 ../../mod/content.php:715 msgid "Code" msgstr "Codice" -#: ../../object/Item.php:684 ../../mod/content.php:716 +#: ../../object/Item.php:687 ../../mod/content.php:716 msgid "Image" msgstr "Immagine" -#: ../../object/Item.php:685 ../../mod/content.php:717 +#: ../../object/Item.php:688 ../../mod/content.php:717 msgid "Link" msgstr "Link" -#: ../../object/Item.php:686 ../../mod/content.php:718 +#: ../../object/Item.php:689 ../../mod/content.php:718 msgid "Video" msgstr "Video" @@ -3250,10 +3225,6 @@ msgstr "Salva gruppo" msgid "Create a group of contacts/friends." msgstr "Crea un gruppo di amici/contatti." -#: ../../mod/group.php:94 ../../mod/group.php:180 -msgid "Group Name: " -msgstr "Nome del gruppo:" - #: ../../mod/group.php:113 msgid "Group removed." msgstr "Gruppo rimosso." @@ -3270,11 +3241,11 @@ msgstr "Modifica gruppo" msgid "Members" msgstr "Membri" -#: ../../mod/group.php:194 ../../mod/contacts.php:586 +#: ../../mod/group.php:194 ../../mod/contacts.php:656 msgid "All Contacts" msgstr "Tutti i contatti" -#: ../../mod/group.php:224 ../../mod/profperm.php:105 +#: ../../mod/group.php:224 ../../mod/profperm.php:106 msgid "Click on a contact to add or remove." msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo." @@ -3311,7 +3282,7 @@ msgstr "Aggiungi" #: ../../mod/delegate.php:141 msgid "No entries." -msgstr "Nessun articolo." +msgstr "Nessuna voce." #: ../../mod/notifications.php:26 msgid "Invalid request identifier." @@ -3323,8 +3294,8 @@ msgid "Discard" msgstr "Scarta" #: ../../mod/notifications.php:51 ../../mod/notifications.php:164 -#: ../../mod/notifications.php:214 ../../mod/contacts.php:455 -#: ../../mod/contacts.php:519 ../../mod/contacts.php:731 +#: ../../mod/notifications.php:214 ../../mod/contacts.php:525 +#: ../../mod/contacts.php:589 ../../mod/contacts.php:801 msgid "Ignore" msgstr "Ignora" @@ -3358,7 +3329,7 @@ msgid "suggested by %s" msgstr "sugerito da %s" #: ../../mod/notifications.php:157 ../../mod/notifications.php:208 -#: ../../mod/contacts.php:525 +#: ../../mod/contacts.php:595 msgid "Hide this contact from others" msgstr "Nascondi questo contatto agli altri" @@ -3371,7 +3342,7 @@ msgid "if applicable" msgstr "se applicabile" #: ../../mod/notifications.php:161 ../../mod/notifications.php:212 -#: ../../mod/admin.php:1005 +#: ../../mod/admin.php:1008 msgid "Approve" msgstr "Approva" @@ -3494,7 +3465,7 @@ msgstr "Nessun profilo" msgid "everybody" msgstr "tutti" -#: ../../mod/settings.php:41 ../../mod/admin.php:1016 +#: ../../mod/settings.php:41 ../../mod/admin.php:1019 msgid "Account" msgstr "Account" @@ -3506,12 +3477,12 @@ msgstr "Funzionalità aggiuntive" msgid "Display" msgstr "Visualizzazione" -#: ../../mod/settings.php:57 ../../mod/settings.php:785 +#: ../../mod/settings.php:57 ../../mod/settings.php:805 msgid "Social Networks" msgstr "Social Networks" -#: ../../mod/settings.php:62 ../../mod/admin.php:106 ../../mod/admin.php:1102 -#: ../../mod/admin.php:1155 +#: ../../mod/settings.php:62 ../../mod/admin.php:106 ../../mod/admin.php:1105 +#: ../../mod/admin.php:1158 msgid "Plugins" msgstr "Plugin" @@ -3531,620 +3502,651 @@ msgstr "Rimuovi account" msgid "Missing some important data!" msgstr "Mancano alcuni dati importanti!" -#: ../../mod/settings.php:137 ../../mod/settings.php:645 -#: ../../mod/contacts.php:729 +#: ../../mod/settings.php:137 ../../mod/settings.php:647 +#: ../../mod/contacts.php:799 msgid "Update" msgstr "Aggiorna" -#: ../../mod/settings.php:243 +#: ../../mod/settings.php:245 msgid "Failed to connect with email account using the settings provided." msgstr "Impossibile collegarsi all'account email con i parametri forniti." -#: ../../mod/settings.php:248 +#: ../../mod/settings.php:250 msgid "Email settings updated." msgstr "Impostazioni e-mail aggiornate." -#: ../../mod/settings.php:263 +#: ../../mod/settings.php:265 msgid "Features updated" msgstr "Funzionalità aggiornate" -#: ../../mod/settings.php:326 +#: ../../mod/settings.php:328 msgid "Relocate message has been send to your contacts" msgstr "Il messaggio di trasloco è stato inviato ai tuoi contatti" -#: ../../mod/settings.php:340 +#: ../../mod/settings.php:342 msgid "Passwords do not match. Password unchanged." msgstr "Le password non corrispondono. Password non cambiata." -#: ../../mod/settings.php:345 +#: ../../mod/settings.php:347 msgid "Empty passwords are not allowed. Password unchanged." msgstr "Le password non possono essere vuote. Password non cambiata." -#: ../../mod/settings.php:353 +#: ../../mod/settings.php:355 msgid "Wrong password." msgstr "Password sbagliata." -#: ../../mod/settings.php:364 +#: ../../mod/settings.php:366 msgid "Password changed." msgstr "Password cambiata." -#: ../../mod/settings.php:366 +#: ../../mod/settings.php:368 msgid "Password update failed. Please try again." msgstr "Aggiornamento password fallito. Prova ancora." -#: ../../mod/settings.php:433 +#: ../../mod/settings.php:435 msgid " Please use a shorter name." msgstr " Usa un nome più corto." -#: ../../mod/settings.php:435 +#: ../../mod/settings.php:437 msgid " Name too short." msgstr " Nome troppo corto." -#: ../../mod/settings.php:444 +#: ../../mod/settings.php:446 msgid "Wrong Password" msgstr "Password Sbagliata" -#: ../../mod/settings.php:449 +#: ../../mod/settings.php:451 msgid " Not valid email." msgstr " Email non valida." -#: ../../mod/settings.php:455 +#: ../../mod/settings.php:457 msgid " Cannot change to that email." msgstr "Non puoi usare quella email." -#: ../../mod/settings.php:511 +#: ../../mod/settings.php:513 msgid "Private forum has no privacy permissions. Using default privacy group." msgstr "Il forum privato non ha permessi di privacy. Uso il gruppo di privacy predefinito." -#: ../../mod/settings.php:515 +#: ../../mod/settings.php:517 msgid "Private forum has no privacy permissions and no default privacy group." msgstr "Il gruppo privato non ha permessi di privacy e nessun gruppo di privacy predefinito." -#: ../../mod/settings.php:545 +#: ../../mod/settings.php:547 msgid "Settings updated." msgstr "Impostazioni aggiornate." -#: ../../mod/settings.php:618 ../../mod/settings.php:644 -#: ../../mod/settings.php:680 +#: ../../mod/settings.php:620 ../../mod/settings.php:646 +#: ../../mod/settings.php:682 msgid "Add application" msgstr "Aggiungi applicazione" -#: ../../mod/settings.php:619 ../../mod/settings.php:729 -#: ../../mod/settings.php:803 ../../mod/settings.php:885 -#: ../../mod/settings.php:1118 ../../mod/admin.php:620 -#: ../../mod/admin.php:1156 ../../mod/admin.php:1358 ../../mod/admin.php:1445 +#: ../../mod/settings.php:621 ../../mod/settings.php:731 +#: ../../mod/settings.php:754 ../../mod/settings.php:823 +#: ../../mod/settings.php:905 ../../mod/settings.php:1138 +#: ../../mod/admin.php:622 ../../mod/admin.php:1159 ../../mod/admin.php:1361 +#: ../../mod/admin.php:1448 msgid "Save Settings" msgstr "Salva Impostazioni" -#: ../../mod/settings.php:621 ../../mod/settings.php:647 -#: ../../mod/admin.php:1003 ../../mod/admin.php:1015 ../../mod/admin.php:1016 -#: ../../mod/admin.php:1029 ../../mod/crepair.php:165 +#: ../../mod/settings.php:623 ../../mod/settings.php:649 +#: ../../mod/admin.php:1006 ../../mod/admin.php:1018 ../../mod/admin.php:1019 +#: ../../mod/admin.php:1032 ../../mod/crepair.php:169 msgid "Name" msgstr "Nome" -#: ../../mod/settings.php:622 ../../mod/settings.php:648 +#: ../../mod/settings.php:624 ../../mod/settings.php:650 msgid "Consumer Key" msgstr "Consumer Key" -#: ../../mod/settings.php:623 ../../mod/settings.php:649 +#: ../../mod/settings.php:625 ../../mod/settings.php:651 msgid "Consumer Secret" msgstr "Consumer Secret" -#: ../../mod/settings.php:624 ../../mod/settings.php:650 +#: ../../mod/settings.php:626 ../../mod/settings.php:652 msgid "Redirect" msgstr "Redirect" -#: ../../mod/settings.php:625 ../../mod/settings.php:651 +#: ../../mod/settings.php:627 ../../mod/settings.php:653 msgid "Icon url" msgstr "Url icona" -#: ../../mod/settings.php:636 +#: ../../mod/settings.php:638 msgid "You can't edit this application." msgstr "Non puoi modificare questa applicazione." -#: ../../mod/settings.php:679 +#: ../../mod/settings.php:681 msgid "Connected Apps" msgstr "Applicazioni Collegate" -#: ../../mod/settings.php:683 +#: ../../mod/settings.php:685 msgid "Client key starts with" msgstr "Chiave del client inizia con" -#: ../../mod/settings.php:684 +#: ../../mod/settings.php:686 msgid "No name" msgstr "Nessun nome" -#: ../../mod/settings.php:685 +#: ../../mod/settings.php:687 msgid "Remove authorization" msgstr "Rimuovi l'autorizzazione" -#: ../../mod/settings.php:697 +#: ../../mod/settings.php:699 msgid "No Plugin settings configured" msgstr "Nessun plugin ha impostazioni modificabili" -#: ../../mod/settings.php:705 +#: ../../mod/settings.php:707 msgid "Plugin Settings" msgstr "Impostazioni plugin" -#: ../../mod/settings.php:719 +#: ../../mod/settings.php:721 msgid "Off" msgstr "Spento" -#: ../../mod/settings.php:719 +#: ../../mod/settings.php:721 msgid "On" msgstr "Acceso" -#: ../../mod/settings.php:727 +#: ../../mod/settings.php:729 msgid "Additional Features" msgstr "Funzionalità aggiuntive" -#: ../../mod/settings.php:741 ../../mod/settings.php:742 +#: ../../mod/settings.php:739 ../../mod/settings.php:743 +msgid "General Social Media Settings" +msgstr "Impostazioni Media Sociali" + +#: ../../mod/settings.php:749 +msgid "Disable intelligent shortening" +msgstr "Disabilita accorciamento intelligente" + +#: ../../mod/settings.php:751 +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 "Normalmente il sistema tenta di trovare il migliore link da aggiungere a un post accorciato. Se questa opzione è abilitata, ogni post accorciato conterrà sempre un link al post originale su Friendica." + +#: ../../mod/settings.php:761 ../../mod/settings.php:762 #, php-format msgid "Built-in support for %s connectivity is %s" msgstr "Il supporto integrato per la connettività con %s è %s" -#: ../../mod/settings.php:741 ../../mod/settings.php:742 +#: ../../mod/settings.php:761 ../../mod/settings.php:762 msgid "enabled" msgstr "abilitato" -#: ../../mod/settings.php:741 ../../mod/settings.php:742 +#: ../../mod/settings.php:761 ../../mod/settings.php:762 msgid "disabled" msgstr "disabilitato" -#: ../../mod/settings.php:742 +#: ../../mod/settings.php:762 msgid "StatusNet" msgstr "StatusNet" -#: ../../mod/settings.php:778 +#: ../../mod/settings.php:798 msgid "Email access is disabled on this site." msgstr "L'accesso email è disabilitato su questo sito." -#: ../../mod/settings.php:790 +#: ../../mod/settings.php:810 msgid "Email/Mailbox Setup" msgstr "Impostazioni email" -#: ../../mod/settings.php:791 +#: ../../mod/settings.php:811 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Se vuoi comunicare con i contatti email usando questo servizio, specifica come collegarti alla tua casella di posta. (opzionale)" -#: ../../mod/settings.php:792 +#: ../../mod/settings.php:812 msgid "Last successful email check:" msgstr "Ultimo controllo email eseguito con successo:" -#: ../../mod/settings.php:794 +#: ../../mod/settings.php:814 msgid "IMAP server name:" msgstr "Nome server IMAP:" -#: ../../mod/settings.php:795 +#: ../../mod/settings.php:815 msgid "IMAP port:" msgstr "Porta IMAP:" -#: ../../mod/settings.php:796 +#: ../../mod/settings.php:816 msgid "Security:" msgstr "Sicurezza:" -#: ../../mod/settings.php:796 ../../mod/settings.php:801 +#: ../../mod/settings.php:816 ../../mod/settings.php:821 msgid "None" msgstr "Nessuna" -#: ../../mod/settings.php:797 +#: ../../mod/settings.php:817 msgid "Email login name:" msgstr "Nome utente email:" -#: ../../mod/settings.php:798 +#: ../../mod/settings.php:818 msgid "Email password:" msgstr "Password email:" -#: ../../mod/settings.php:799 +#: ../../mod/settings.php:819 msgid "Reply-to address:" msgstr "Indirizzo di risposta:" -#: ../../mod/settings.php:800 +#: ../../mod/settings.php:820 msgid "Send public posts to all email contacts:" msgstr "Invia i messaggi pubblici ai contatti email:" -#: ../../mod/settings.php:801 +#: ../../mod/settings.php:821 msgid "Action after import:" msgstr "Azione post importazione:" -#: ../../mod/settings.php:801 +#: ../../mod/settings.php:821 msgid "Mark as seen" msgstr "Segna come letto" -#: ../../mod/settings.php:801 +#: ../../mod/settings.php:821 msgid "Move to folder" msgstr "Sposta nella cartella" -#: ../../mod/settings.php:802 +#: ../../mod/settings.php:822 msgid "Move to folder:" msgstr "Sposta nella cartella:" -#: ../../mod/settings.php:833 ../../mod/admin.php:545 +#: ../../mod/settings.php:853 ../../mod/admin.php:547 msgid "No special theme for mobile devices" msgstr "Nessun tema speciale per i dispositivi mobili" -#: ../../mod/settings.php:883 +#: ../../mod/settings.php:903 msgid "Display Settings" msgstr "Impostazioni Grafiche" -#: ../../mod/settings.php:889 ../../mod/settings.php:904 +#: ../../mod/settings.php:909 ../../mod/settings.php:924 msgid "Display Theme:" msgstr "Tema:" -#: ../../mod/settings.php:890 +#: ../../mod/settings.php:910 msgid "Mobile Theme:" msgstr "Tema mobile:" -#: ../../mod/settings.php:891 +#: ../../mod/settings.php:911 msgid "Update browser every xx seconds" msgstr "Aggiorna il browser ogni x secondi" -#: ../../mod/settings.php:891 +#: ../../mod/settings.php:911 msgid "Minimum of 10 seconds, no maximum" msgstr "Minimo 10 secondi, nessun limite massimo" -#: ../../mod/settings.php:892 +#: ../../mod/settings.php:912 msgid "Number of items to display per page:" msgstr "Numero di elementi da mostrare per pagina:" -#: ../../mod/settings.php:892 ../../mod/settings.php:893 +#: ../../mod/settings.php:912 ../../mod/settings.php:913 msgid "Maximum of 100 items" msgstr "Massimo 100 voci" -#: ../../mod/settings.php:893 +#: ../../mod/settings.php:913 msgid "Number of items to display per page when viewed from mobile device:" msgstr "Numero di voci da visualizzare per pagina quando si utilizza un dispositivo mobile:" -#: ../../mod/settings.php:894 +#: ../../mod/settings.php:914 msgid "Don't show emoticons" msgstr "Non mostrare le emoticons" -#: ../../mod/settings.php:895 +#: ../../mod/settings.php:915 msgid "Don't show notices" msgstr "Non mostrare gli avvisi" -#: ../../mod/settings.php:896 +#: ../../mod/settings.php:916 msgid "Infinite scroll" msgstr "Scroll infinito" -#: ../../mod/settings.php:897 +#: ../../mod/settings.php:917 msgid "Automatic updates only at the top of the network page" msgstr "Aggiornamenti automatici solo in cima alla pagina \"rete\"" -#: ../../mod/settings.php:974 +#: ../../mod/settings.php:994 msgid "User Types" msgstr "Tipi di Utenti" -#: ../../mod/settings.php:975 +#: ../../mod/settings.php:995 msgid "Community Types" msgstr "Tipi di Comunità" -#: ../../mod/settings.php:976 +#: ../../mod/settings.php:996 msgid "Normal Account Page" msgstr "Pagina Account Normale" -#: ../../mod/settings.php:977 +#: ../../mod/settings.php:997 msgid "This account is a normal personal profile" msgstr "Questo account è un normale profilo personale" -#: ../../mod/settings.php:980 +#: ../../mod/settings.php:1000 msgid "Soapbox Page" msgstr "Pagina Sandbox" -#: ../../mod/settings.php:981 +#: ../../mod/settings.php:1001 msgid "Automatically approve all connection/friend requests as read-only fans" msgstr "Chi richiede la connessione/amicizia sarà accettato automaticamente come fan che potrà solamente leggere la bacheca" -#: ../../mod/settings.php:984 +#: ../../mod/settings.php:1004 msgid "Community Forum/Celebrity Account" msgstr "Account Celebrità/Forum comunitario" -#: ../../mod/settings.php:985 +#: ../../mod/settings.php:1005 msgid "" "Automatically approve all connection/friend requests as read-write fans" msgstr "Chi richiede la connessione/amicizia sarà accettato automaticamente come fan che potrà leggere e scrivere sulla bacheca" -#: ../../mod/settings.php:988 +#: ../../mod/settings.php:1008 msgid "Automatic Friend Page" msgstr "Pagina con amicizia automatica" -#: ../../mod/settings.php:989 +#: ../../mod/settings.php:1009 msgid "Automatically approve all connection/friend requests as friends" msgstr "Chi richiede la connessione/amicizia sarà accettato automaticamente come amico" -#: ../../mod/settings.php:992 +#: ../../mod/settings.php:1012 msgid "Private Forum [Experimental]" msgstr "Forum privato [sperimentale]" -#: ../../mod/settings.php:993 +#: ../../mod/settings.php:1013 msgid "Private forum - approved members only" msgstr "Forum privato - solo membri approvati" -#: ../../mod/settings.php:1005 +#: ../../mod/settings.php:1025 msgid "OpenID:" msgstr "OpenID:" -#: ../../mod/settings.php:1005 +#: ../../mod/settings.php:1025 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Opzionale) Consente di loggarti in questo account con questo OpenID" -#: ../../mod/settings.php:1015 +#: ../../mod/settings.php:1035 msgid "Publish your default profile in your local site directory?" msgstr "Pubblica il tuo profilo predefinito nell'elenco locale del sito" -#: ../../mod/settings.php:1015 ../../mod/settings.php:1021 -#: ../../mod/settings.php:1029 ../../mod/settings.php:1033 -#: ../../mod/settings.php:1038 ../../mod/settings.php:1044 -#: ../../mod/settings.php:1050 ../../mod/settings.php:1056 -#: ../../mod/settings.php:1086 ../../mod/settings.php:1087 -#: ../../mod/settings.php:1088 ../../mod/settings.php:1089 -#: ../../mod/settings.php:1090 ../../mod/register.php:234 -#: ../../mod/dfrn_request.php:830 ../../mod/api.php:106 -#: ../../mod/profiles.php:661 ../../mod/profiles.php:665 +#: ../../mod/settings.php:1035 ../../mod/settings.php:1041 +#: ../../mod/settings.php:1049 ../../mod/settings.php:1053 +#: ../../mod/settings.php:1058 ../../mod/settings.php:1064 +#: ../../mod/settings.php:1070 ../../mod/settings.php:1076 +#: ../../mod/settings.php:1106 ../../mod/settings.php:1107 +#: ../../mod/settings.php:1108 ../../mod/settings.php:1109 +#: ../../mod/settings.php:1110 ../../mod/register.php:234 +#: ../../mod/dfrn_request.php:845 ../../mod/api.php:106 +#: ../../mod/follow.php:54 ../../mod/profiles.php:661 +#: ../../mod/profiles.php:665 msgid "No" msgstr "No" -#: ../../mod/settings.php:1021 +#: ../../mod/settings.php:1041 msgid "Publish your default profile in the global social directory?" msgstr "Pubblica il tuo profilo predefinito nell'elenco sociale globale" -#: ../../mod/settings.php:1029 +#: ../../mod/settings.php:1049 msgid "Hide your contact/friend list from viewers of your default profile?" msgstr "Nascondi la lista dei tuoi contatti/amici dai visitatori del tuo profilo predefinito" -#: ../../mod/settings.php:1033 +#: ../../mod/settings.php:1053 msgid "" "If enabled, posting public messages to Diaspora and other networks isn't " "possible." msgstr "Se abilitato, l'invio di messaggi pubblici verso Diaspora e altri network non sarà possibile" -#: ../../mod/settings.php:1038 +#: ../../mod/settings.php:1058 msgid "Allow friends to post to your profile page?" msgstr "Permetti agli amici di scrivere sulla tua pagina profilo?" -#: ../../mod/settings.php:1044 +#: ../../mod/settings.php:1064 msgid "Allow friends to tag your posts?" msgstr "Permetti agli amici di taggare i tuoi messaggi?" -#: ../../mod/settings.php:1050 +#: ../../mod/settings.php:1070 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "Ci permetti di suggerirti come potenziale amico ai nuovi membri?" -#: ../../mod/settings.php:1056 +#: ../../mod/settings.php:1076 msgid "Permit unknown people to send you private mail?" msgstr "Permetti a utenti sconosciuti di inviarti messaggi privati?" -#: ../../mod/settings.php:1064 +#: ../../mod/settings.php:1084 msgid "Profile is not published." msgstr "Il profilo non è pubblicato." -#: ../../mod/settings.php:1067 ../../mod/profile_photo.php:248 +#: ../../mod/settings.php:1087 ../../mod/profile_photo.php:248 msgid "or" msgstr "o" -#: ../../mod/settings.php:1072 +#: ../../mod/settings.php:1092 msgid "Your Identity Address is" msgstr "L'indirizzo della tua identità è" -#: ../../mod/settings.php:1083 +#: ../../mod/settings.php:1103 msgid "Automatically expire posts after this many days:" msgstr "Fai scadere i post automaticamente dopo x giorni:" -#: ../../mod/settings.php:1083 +#: ../../mod/settings.php:1103 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Se lasciato vuoto, i messaggi non verranno cancellati." -#: ../../mod/settings.php:1084 +#: ../../mod/settings.php:1104 msgid "Advanced expiration settings" msgstr "Impostazioni avanzate di scandenza" -#: ../../mod/settings.php:1085 +#: ../../mod/settings.php:1105 msgid "Advanced Expiration" msgstr "Scadenza avanzata" -#: ../../mod/settings.php:1086 +#: ../../mod/settings.php:1106 msgid "Expire posts:" msgstr "Fai scadere i post:" -#: ../../mod/settings.php:1087 +#: ../../mod/settings.php:1107 msgid "Expire personal notes:" msgstr "Fai scadere le Note personali:" -#: ../../mod/settings.php:1088 +#: ../../mod/settings.php:1108 msgid "Expire starred posts:" msgstr "Fai scadere i post Speciali:" -#: ../../mod/settings.php:1089 +#: ../../mod/settings.php:1109 msgid "Expire photos:" msgstr "Fai scadere le foto:" -#: ../../mod/settings.php:1090 +#: ../../mod/settings.php:1110 msgid "Only expire posts by others:" msgstr "Fai scadere solo i post degli altri:" -#: ../../mod/settings.php:1116 +#: ../../mod/settings.php:1136 msgid "Account Settings" msgstr "Impostazioni account" -#: ../../mod/settings.php:1124 +#: ../../mod/settings.php:1144 msgid "Password Settings" msgstr "Impostazioni password" -#: ../../mod/settings.php:1125 +#: ../../mod/settings.php:1145 msgid "New Password:" msgstr "Nuova password:" -#: ../../mod/settings.php:1126 +#: ../../mod/settings.php:1146 msgid "Confirm:" msgstr "Conferma:" -#: ../../mod/settings.php:1126 +#: ../../mod/settings.php:1146 msgid "Leave password fields blank unless changing" msgstr "Lascia questi campi in bianco per non effettuare variazioni alla password" -#: ../../mod/settings.php:1127 +#: ../../mod/settings.php:1147 msgid "Current Password:" msgstr "Password Attuale:" -#: ../../mod/settings.php:1127 ../../mod/settings.php:1128 +#: ../../mod/settings.php:1147 ../../mod/settings.php:1148 msgid "Your current password to confirm the changes" msgstr "La tua password attuale per confermare le modifiche" -#: ../../mod/settings.php:1128 +#: ../../mod/settings.php:1148 msgid "Password:" msgstr "Password:" -#: ../../mod/settings.php:1132 +#: ../../mod/settings.php:1152 msgid "Basic Settings" msgstr "Impostazioni base" -#: ../../mod/settings.php:1134 +#: ../../mod/settings.php:1154 msgid "Email Address:" msgstr "Indirizzo Email:" -#: ../../mod/settings.php:1135 +#: ../../mod/settings.php:1155 msgid "Your Timezone:" msgstr "Il tuo fuso orario:" -#: ../../mod/settings.php:1136 +#: ../../mod/settings.php:1156 msgid "Default Post Location:" msgstr "Località predefinita:" -#: ../../mod/settings.php:1137 +#: ../../mod/settings.php:1157 msgid "Use Browser Location:" msgstr "Usa la località rilevata dal browser:" -#: ../../mod/settings.php:1140 +#: ../../mod/settings.php:1160 msgid "Security and Privacy Settings" msgstr "Impostazioni di sicurezza e privacy" -#: ../../mod/settings.php:1142 +#: ../../mod/settings.php:1162 msgid "Maximum Friend Requests/Day:" msgstr "Numero massimo di richieste di amicizia al giorno:" -#: ../../mod/settings.php:1142 ../../mod/settings.php:1172 +#: ../../mod/settings.php:1162 ../../mod/settings.php:1192 msgid "(to prevent spam abuse)" msgstr "(per prevenire lo spam)" -#: ../../mod/settings.php:1143 +#: ../../mod/settings.php:1163 msgid "Default Post Permissions" msgstr "Permessi predefiniti per i messaggi" -#: ../../mod/settings.php:1144 +#: ../../mod/settings.php:1164 msgid "(click to open/close)" msgstr "(clicca per aprire/chiudere)" -#: ../../mod/settings.php:1153 ../../mod/photos.php:1146 +#: ../../mod/settings.php:1173 ../../mod/photos.php:1146 #: ../../mod/photos.php:1519 msgid "Show to Groups" msgstr "Mostra ai gruppi" -#: ../../mod/settings.php:1154 ../../mod/photos.php:1147 +#: ../../mod/settings.php:1174 ../../mod/photos.php:1147 #: ../../mod/photos.php:1520 msgid "Show to Contacts" msgstr "Mostra ai contatti" -#: ../../mod/settings.php:1155 +#: ../../mod/settings.php:1175 msgid "Default Private Post" msgstr "Default Post Privato" -#: ../../mod/settings.php:1156 +#: ../../mod/settings.php:1176 msgid "Default Public Post" msgstr "Default Post Pubblico" -#: ../../mod/settings.php:1160 +#: ../../mod/settings.php:1180 msgid "Default Permissions for New Posts" msgstr "Permessi predefiniti per i nuovi post" -#: ../../mod/settings.php:1172 +#: ../../mod/settings.php:1192 msgid "Maximum private messages per day from unknown people:" msgstr "Numero massimo di messaggi privati da utenti sconosciuti per giorno:" -#: ../../mod/settings.php:1175 +#: ../../mod/settings.php:1195 msgid "Notification Settings" msgstr "Impostazioni notifiche" -#: ../../mod/settings.php:1176 +#: ../../mod/settings.php:1196 msgid "By default post a status message when:" msgstr "Invia un messaggio di stato quando:" -#: ../../mod/settings.php:1177 +#: ../../mod/settings.php:1197 msgid "accepting a friend request" msgstr "accetti una richiesta di amicizia" -#: ../../mod/settings.php:1178 +#: ../../mod/settings.php:1198 msgid "joining a forum/community" msgstr "ti unisci a un forum/comunità" -#: ../../mod/settings.php:1179 +#: ../../mod/settings.php:1199 msgid "making an interesting profile change" msgstr "fai un interessante modifica al profilo" -#: ../../mod/settings.php:1180 +#: ../../mod/settings.php:1200 msgid "Send a notification email when:" msgstr "Invia una mail di notifica quando:" -#: ../../mod/settings.php:1181 +#: ../../mod/settings.php:1201 msgid "You receive an introduction" msgstr "Ricevi una presentazione" -#: ../../mod/settings.php:1182 +#: ../../mod/settings.php:1202 msgid "Your introductions are confirmed" msgstr "Le tue presentazioni sono confermate" -#: ../../mod/settings.php:1183 +#: ../../mod/settings.php:1203 msgid "Someone writes on your profile wall" msgstr "Qualcuno scrive sulla bacheca del tuo profilo" -#: ../../mod/settings.php:1184 +#: ../../mod/settings.php:1204 msgid "Someone writes a followup comment" msgstr "Qualcuno scrive un commento a un tuo messaggio" -#: ../../mod/settings.php:1185 +#: ../../mod/settings.php:1205 msgid "You receive a private message" msgstr "Ricevi un messaggio privato" -#: ../../mod/settings.php:1186 +#: ../../mod/settings.php:1206 msgid "You receive a friend suggestion" msgstr "Hai ricevuto un suggerimento di amicizia" -#: ../../mod/settings.php:1187 +#: ../../mod/settings.php:1207 msgid "You are tagged in a post" msgstr "Sei stato taggato in un post" -#: ../../mod/settings.php:1188 +#: ../../mod/settings.php:1208 msgid "You are poked/prodded/etc. in a post" msgstr "Sei 'toccato'/'spronato'/ecc. in un post" -#: ../../mod/settings.php:1190 +#: ../../mod/settings.php:1210 +msgid "Activate desktop notifications" +msgstr "" + +#: ../../mod/settings.php:1211 +msgid "" +"Note: This is an experimental feature, as being not supported by each " +"browser" +msgstr "" + +#: ../../mod/settings.php:1212 +msgid "You will now receive desktop notifications!" +msgstr "" + +#: ../../mod/settings.php:1214 msgid "Text-only notification emails" msgstr "Email di notifica in solo testo" -#: ../../mod/settings.php:1192 +#: ../../mod/settings.php:1216 msgid "Send text only notification emails, without the html part" msgstr "Invia le email di notifica in solo testo, senza la parte in html" -#: ../../mod/settings.php:1194 +#: ../../mod/settings.php:1218 msgid "Advanced Account/Page Type Settings" msgstr "Impostazioni avanzate Account/Tipo di pagina" -#: ../../mod/settings.php:1195 +#: ../../mod/settings.php:1219 msgid "Change the behaviour of this account for special situations" msgstr "Modifica il comportamento di questo account in situazioni speciali" -#: ../../mod/settings.php:1198 +#: ../../mod/settings.php:1222 msgid "Relocate" msgstr "Trasloca" -#: ../../mod/settings.php:1199 +#: ../../mod/settings.php:1223 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 "Se hai spostato questo profilo da un'altro server, e alcuni dei tuoi contatti non ricevono i tuoi aggiornamenti, prova a premere questo bottone." -#: ../../mod/settings.php:1200 +#: ../../mod/settings.php:1224 msgid "Resend relocate message to contacts" msgstr "Reinvia il messaggio di trasloco" @@ -4164,337 +4166,337 @@ msgstr "Informazioni remote sulla privacy non disponibili." msgid "Visible to:" msgstr "Visibile a:" -#: ../../mod/contacts.php:112 +#: ../../mod/contacts.php:114 #, php-format msgid "%d contact edited." msgid_plural "%d contacts edited" msgstr[0] "%d contatto modificato" msgstr[1] "%d contatti modificati" -#: ../../mod/contacts.php:143 ../../mod/contacts.php:276 +#: ../../mod/contacts.php:145 ../../mod/contacts.php:340 msgid "Could not access contact record." msgstr "Non è possibile accedere al contatto." -#: ../../mod/contacts.php:157 +#: ../../mod/contacts.php:159 msgid "Could not locate selected profile." msgstr "Non riesco a trovare il profilo selezionato." -#: ../../mod/contacts.php:190 +#: ../../mod/contacts.php:192 msgid "Contact updated." msgstr "Contatto aggiornato." -#: ../../mod/contacts.php:192 ../../mod/dfrn_request.php:576 +#: ../../mod/contacts.php:194 ../../mod/dfrn_request.php:576 msgid "Failed to update contact record." msgstr "Errore nell'aggiornamento del contatto." -#: ../../mod/contacts.php:291 +#: ../../mod/contacts.php:361 msgid "Contact has been blocked" msgstr "Il contatto è stato bloccato" -#: ../../mod/contacts.php:291 +#: ../../mod/contacts.php:361 msgid "Contact has been unblocked" msgstr "Il contatto è stato sbloccato" -#: ../../mod/contacts.php:302 +#: ../../mod/contacts.php:372 msgid "Contact has been ignored" msgstr "Il contatto è ignorato" -#: ../../mod/contacts.php:302 +#: ../../mod/contacts.php:372 msgid "Contact has been unignored" msgstr "Il contatto non è più ignorato" -#: ../../mod/contacts.php:314 +#: ../../mod/contacts.php:384 msgid "Contact has been archived" msgstr "Il contatto è stato archiviato" -#: ../../mod/contacts.php:314 +#: ../../mod/contacts.php:384 msgid "Contact has been unarchived" msgstr "Il contatto è stato dearchiviato" -#: ../../mod/contacts.php:339 ../../mod/contacts.php:727 +#: ../../mod/contacts.php:409 ../../mod/contacts.php:797 msgid "Do you really want to delete this contact?" msgstr "Vuoi veramente cancellare questo contatto?" -#: ../../mod/contacts.php:356 +#: ../../mod/contacts.php:426 msgid "Contact has been removed." msgstr "Il contatto è stato rimosso." -#: ../../mod/contacts.php:394 +#: ../../mod/contacts.php:464 #, php-format msgid "You are mutual friends with %s" msgstr "Sei amico reciproco con %s" -#: ../../mod/contacts.php:398 +#: ../../mod/contacts.php:468 #, php-format msgid "You are sharing with %s" msgstr "Stai condividendo con %s" -#: ../../mod/contacts.php:403 +#: ../../mod/contacts.php:473 #, php-format msgid "%s is sharing with you" msgstr "%s sta condividendo con te" -#: ../../mod/contacts.php:423 +#: ../../mod/contacts.php:493 msgid "Private communications are not available for this contact." msgstr "Le comunicazioni private non sono disponibili per questo contatto." -#: ../../mod/contacts.php:426 ../../mod/admin.php:569 +#: ../../mod/contacts.php:496 ../../mod/admin.php:571 msgid "Never" msgstr "Mai" -#: ../../mod/contacts.php:430 +#: ../../mod/contacts.php:500 msgid "(Update was successful)" msgstr "(L'aggiornamento è stato completato)" -#: ../../mod/contacts.php:430 +#: ../../mod/contacts.php:500 msgid "(Update was not successful)" msgstr "(L'aggiornamento non è stato completato)" -#: ../../mod/contacts.php:432 +#: ../../mod/contacts.php:502 msgid "Suggest friends" msgstr "Suggerisci amici" -#: ../../mod/contacts.php:436 +#: ../../mod/contacts.php:506 #, php-format msgid "Network type: %s" msgstr "Tipo di rete: %s" -#: ../../mod/contacts.php:444 +#: ../../mod/contacts.php:514 msgid "View all contacts" msgstr "Vedi tutti i contatti" -#: ../../mod/contacts.php:449 ../../mod/contacts.php:518 -#: ../../mod/contacts.php:730 ../../mod/admin.php:1009 +#: ../../mod/contacts.php:519 ../../mod/contacts.php:588 +#: ../../mod/contacts.php:800 ../../mod/admin.php:1012 msgid "Unblock" msgstr "Sblocca" -#: ../../mod/contacts.php:449 ../../mod/contacts.php:518 -#: ../../mod/contacts.php:730 ../../mod/admin.php:1008 +#: ../../mod/contacts.php:519 ../../mod/contacts.php:588 +#: ../../mod/contacts.php:800 ../../mod/admin.php:1011 msgid "Block" msgstr "Blocca" -#: ../../mod/contacts.php:452 +#: ../../mod/contacts.php:522 msgid "Toggle Blocked status" msgstr "Inverti stato \"Blocca\"" -#: ../../mod/contacts.php:455 ../../mod/contacts.php:519 -#: ../../mod/contacts.php:731 +#: ../../mod/contacts.php:525 ../../mod/contacts.php:589 +#: ../../mod/contacts.php:801 msgid "Unignore" msgstr "Non ignorare" -#: ../../mod/contacts.php:458 +#: ../../mod/contacts.php:528 msgid "Toggle Ignored status" msgstr "Inverti stato \"Ignora\"" -#: ../../mod/contacts.php:462 ../../mod/contacts.php:732 +#: ../../mod/contacts.php:532 ../../mod/contacts.php:802 msgid "Unarchive" msgstr "Dearchivia" -#: ../../mod/contacts.php:462 ../../mod/contacts.php:732 +#: ../../mod/contacts.php:532 ../../mod/contacts.php:802 msgid "Archive" msgstr "Archivia" -#: ../../mod/contacts.php:465 +#: ../../mod/contacts.php:535 msgid "Toggle Archive status" msgstr "Inverti stato \"Archiviato\"" -#: ../../mod/contacts.php:468 +#: ../../mod/contacts.php:538 msgid "Repair" msgstr "Ripara" -#: ../../mod/contacts.php:471 +#: ../../mod/contacts.php:541 msgid "Advanced Contact Settings" msgstr "Impostazioni avanzate Contatto" -#: ../../mod/contacts.php:477 +#: ../../mod/contacts.php:547 msgid "Communications lost with this contact!" msgstr "Comunicazione con questo contatto persa!" -#: ../../mod/contacts.php:480 +#: ../../mod/contacts.php:550 msgid "Fetch further information for feeds" msgstr "Recupera maggiori infomazioni per i feed" -#: ../../mod/contacts.php:481 +#: ../../mod/contacts.php:551 msgid "Disabled" msgstr "Disabilitato" -#: ../../mod/contacts.php:481 +#: ../../mod/contacts.php:551 msgid "Fetch information" msgstr "Recupera informazioni" -#: ../../mod/contacts.php:481 +#: ../../mod/contacts.php:551 msgid "Fetch information and keywords" msgstr "Recupera informazioni e parole chiave" -#: ../../mod/contacts.php:490 +#: ../../mod/contacts.php:560 msgid "Contact Editor" msgstr "Editor dei Contatti" -#: ../../mod/contacts.php:493 +#: ../../mod/contacts.php:563 msgid "Profile Visibility" msgstr "Visibilità del profilo" -#: ../../mod/contacts.php:494 +#: ../../mod/contacts.php:564 #, php-format msgid "" "Please choose the profile you would like to display to %s when viewing your " "profile securely." msgstr "Seleziona il profilo che vuoi mostrare a %s quando visita il tuo profilo in modo sicuro." -#: ../../mod/contacts.php:495 +#: ../../mod/contacts.php:565 msgid "Contact Information / Notes" msgstr "Informazioni / Note sul contatto" -#: ../../mod/contacts.php:496 +#: ../../mod/contacts.php:566 msgid "Edit contact notes" msgstr "Modifica note contatto" -#: ../../mod/contacts.php:501 ../../mod/contacts.php:695 +#: ../../mod/contacts.php:571 ../../mod/contacts.php:765 #: ../../mod/nogroup.php:40 ../../mod/viewcontacts.php:64 #, php-format msgid "Visit %s's profile [%s]" msgstr "Visita il profilo di %s [%s]" -#: ../../mod/contacts.php:502 +#: ../../mod/contacts.php:572 msgid "Block/Unblock contact" msgstr "Blocca/Sblocca contatto" -#: ../../mod/contacts.php:503 +#: ../../mod/contacts.php:573 msgid "Ignore contact" msgstr "Ignora il contatto" -#: ../../mod/contacts.php:504 +#: ../../mod/contacts.php:574 msgid "Repair URL settings" msgstr "Impostazioni riparazione URL" -#: ../../mod/contacts.php:505 +#: ../../mod/contacts.php:575 msgid "View conversations" msgstr "Vedi conversazioni" -#: ../../mod/contacts.php:507 +#: ../../mod/contacts.php:577 msgid "Delete contact" msgstr "Rimuovi contatto" -#: ../../mod/contacts.php:511 +#: ../../mod/contacts.php:581 msgid "Last update:" msgstr "Ultimo aggiornamento:" -#: ../../mod/contacts.php:513 +#: ../../mod/contacts.php:583 msgid "Update public posts" msgstr "Aggiorna messaggi pubblici" -#: ../../mod/contacts.php:515 ../../mod/admin.php:1503 +#: ../../mod/contacts.php:585 ../../mod/admin.php:1506 msgid "Update now" msgstr "Aggiorna adesso" -#: ../../mod/contacts.php:522 +#: ../../mod/contacts.php:592 msgid "Currently blocked" msgstr "Bloccato" -#: ../../mod/contacts.php:523 +#: ../../mod/contacts.php:593 msgid "Currently ignored" msgstr "Ignorato" -#: ../../mod/contacts.php:524 +#: ../../mod/contacts.php:594 msgid "Currently archived" msgstr "Al momento archiviato" -#: ../../mod/contacts.php:525 +#: ../../mod/contacts.php:595 msgid "" "Replies/likes to your public posts may still be visible" msgstr "Risposte ai tuoi post pubblici possono essere comunque visibili" -#: ../../mod/contacts.php:526 +#: ../../mod/contacts.php:596 msgid "Notification for new posts" msgstr "Notifica per i nuovi messaggi" -#: ../../mod/contacts.php:526 +#: ../../mod/contacts.php:596 msgid "Send a notification of every new post of this contact" msgstr "Invia una notifica per ogni nuovo messaggio di questo contatto" -#: ../../mod/contacts.php:529 +#: ../../mod/contacts.php:599 msgid "Blacklisted keywords" msgstr "Parole chiave in blacklist" -#: ../../mod/contacts.php:529 +#: ../../mod/contacts.php:599 msgid "" "Comma separated list of keywords that should not be converted to hashtags, " "when \"Fetch information and keywords\" is selected" msgstr "Lista separata da virgola di parole chiave che non dovranno essere convertite in hastag, quando \"Recupera informazioni e parole chiave\" è selezionato" -#: ../../mod/contacts.php:580 +#: ../../mod/contacts.php:650 msgid "Suggestions" msgstr "Suggerimenti" -#: ../../mod/contacts.php:583 +#: ../../mod/contacts.php:653 msgid "Suggest potential friends" msgstr "Suggerisci potenziali amici" -#: ../../mod/contacts.php:589 +#: ../../mod/contacts.php:659 msgid "Show all contacts" msgstr "Mostra tutti i contatti" -#: ../../mod/contacts.php:592 +#: ../../mod/contacts.php:662 msgid "Unblocked" msgstr "Sbloccato" -#: ../../mod/contacts.php:595 +#: ../../mod/contacts.php:665 msgid "Only show unblocked contacts" msgstr "Mostra solo contatti non bloccati" -#: ../../mod/contacts.php:599 +#: ../../mod/contacts.php:669 msgid "Blocked" msgstr "Bloccato" -#: ../../mod/contacts.php:602 +#: ../../mod/contacts.php:672 msgid "Only show blocked contacts" msgstr "Mostra solo contatti bloccati" -#: ../../mod/contacts.php:606 +#: ../../mod/contacts.php:676 msgid "Ignored" msgstr "Ignorato" -#: ../../mod/contacts.php:609 +#: ../../mod/contacts.php:679 msgid "Only show ignored contacts" msgstr "Mostra solo contatti ignorati" -#: ../../mod/contacts.php:613 +#: ../../mod/contacts.php:683 msgid "Archived" msgstr "Achiviato" -#: ../../mod/contacts.php:616 +#: ../../mod/contacts.php:686 msgid "Only show archived contacts" msgstr "Mostra solo contatti archiviati" -#: ../../mod/contacts.php:620 +#: ../../mod/contacts.php:690 msgid "Hidden" msgstr "Nascosto" -#: ../../mod/contacts.php:623 +#: ../../mod/contacts.php:693 msgid "Only show hidden contacts" msgstr "Mostra solo contatti nascosti" -#: ../../mod/contacts.php:671 +#: ../../mod/contacts.php:741 msgid "Mutual Friendship" msgstr "Amicizia reciproca" -#: ../../mod/contacts.php:675 +#: ../../mod/contacts.php:745 msgid "is a fan of yours" msgstr "è un tuo fan" -#: ../../mod/contacts.php:679 +#: ../../mod/contacts.php:749 msgid "you are a fan of" msgstr "sei un fan di" -#: ../../mod/contacts.php:696 ../../mod/nogroup.php:41 +#: ../../mod/contacts.php:766 ../../mod/nogroup.php:41 msgid "Edit contact" msgstr "Modifca contatto" -#: ../../mod/contacts.php:722 +#: ../../mod/contacts.php:792 msgid "Search your contacts" msgstr "Cerca nei tuoi contatti" -#: ../../mod/contacts.php:723 ../../mod/directory.php:61 +#: ../../mod/contacts.php:793 ../../mod/directory.php:61 msgid "Finding: " msgstr "Ricerca: " @@ -4596,7 +4598,7 @@ msgstr "La registrazione su questo sito è solo su invito." msgid "Your invitation ID: " msgstr "L'ID del tuo invito:" -#: ../../mod/register.php:255 ../../mod/admin.php:621 +#: ../../mod/register.php:255 ../../mod/admin.php:623 msgid "Registration" msgstr "Registrazione" @@ -4635,7 +4637,7 @@ msgstr "Inviato!" msgid "System down for maintenance" msgstr "Sistema in manutenzione" -#: ../../mod/profile.php:155 ../../mod/display.php:332 +#: ../../mod/profile.php:155 ../../mod/display.php:334 msgid "Access to this profile has been restricted." msgstr "L'accesso a questo profilo è stato limitato." @@ -4643,10 +4645,10 @@ msgstr "L'accesso a questo profilo è stato limitato." msgid "Tips for New Members" msgstr "Consigli per i Nuovi Utenti" -#: ../../mod/videos.php:115 ../../mod/dfrn_request.php:762 +#: ../../mod/videos.php:115 ../../mod/dfrn_request.php:777 #: ../../mod/viewcontacts.php:19 ../../mod/photos.php:920 #: ../../mod/search.php:89 ../../mod/community.php:18 -#: ../../mod/display.php:212 ../../mod/directory.php:33 +#: ../../mod/display.php:214 ../../mod/directory.php:33 msgid "Public access denied." msgstr "Accesso negato." @@ -4696,7 +4698,7 @@ msgstr "Modifica messaggio" msgid "People Search" msgstr "Cerca persone" -#: ../../mod/dirfind.php:60 ../../mod/match.php:65 +#: ../../mod/dirfind.php:60 ../../mod/match.php:71 msgid "No matches" msgstr "Nessun risultato" @@ -4804,72 +4806,76 @@ msgid "" "this profile." msgstr "Non hai fatto accesso con l'identità corretta. Accedi a questo profilo." -#: ../../mod/dfrn_request.php:671 +#: ../../mod/dfrn_request.php:674 ../../mod/dfrn_request.php:691 +msgid "Confirm" +msgstr "Conferma" + +#: ../../mod/dfrn_request.php:686 msgid "Hide this contact" msgstr "Nascondi questo contatto" -#: ../../mod/dfrn_request.php:674 +#: ../../mod/dfrn_request.php:689 #, php-format msgid "Welcome home %s." msgstr "Bentornato a casa %s." -#: ../../mod/dfrn_request.php:675 +#: ../../mod/dfrn_request.php:690 #, php-format msgid "Please confirm your introduction/connection request to %s." msgstr "Conferma la tua richiesta di connessione con %s." -#: ../../mod/dfrn_request.php:804 +#: ../../mod/dfrn_request.php:819 msgid "" "Please enter your 'Identity Address' from one of the following supported " "communications networks:" msgstr "Inserisci il tuo 'Indirizzo Identità' da uno dei seguenti network supportati:" -#: ../../mod/dfrn_request.php:824 +#: ../../mod/dfrn_request.php:839 msgid "" "If you are not yet a member of the free social web, follow this link to find a public" " Friendica site and join us today." msgstr "Se non sei un membro del web sociale libero, segui questo link per trovare un sito Friendica pubblico e unisciti a noi oggi" -#: ../../mod/dfrn_request.php:827 +#: ../../mod/dfrn_request.php:842 msgid "Friend/Connection Request" msgstr "Richieste di amicizia/connessione" -#: ../../mod/dfrn_request.php:828 +#: ../../mod/dfrn_request.php:843 msgid "" "Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " "testuser@identi.ca" msgstr "Esempi: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" -#: ../../mod/dfrn_request.php:829 +#: ../../mod/dfrn_request.php:844 ../../mod/follow.php:53 msgid "Please answer the following:" msgstr "Rispondi:" -#: ../../mod/dfrn_request.php:830 +#: ../../mod/dfrn_request.php:845 ../../mod/follow.php:54 #, php-format msgid "Does %s know you?" msgstr "%s ti conosce?" -#: ../../mod/dfrn_request.php:834 +#: ../../mod/dfrn_request.php:849 ../../mod/follow.php:55 msgid "Add a personal note:" msgstr "Aggiungi una nota personale:" -#: ../../mod/dfrn_request.php:837 +#: ../../mod/dfrn_request.php:852 msgid "StatusNet/Federated Social Web" msgstr "StatusNet/Federated Social Web" -#: ../../mod/dfrn_request.php:839 +#: ../../mod/dfrn_request.php:854 #, php-format msgid "" " - please do not use this form. Instead, enter %s into your Diaspora search" " bar." msgstr " - per favore non usare questa form. Invece, inserisci %s nella tua barra di ricerca su Diaspora." -#: ../../mod/dfrn_request.php:840 +#: ../../mod/dfrn_request.php:855 ../../mod/follow.php:61 msgid "Your Identity Address:" msgstr "L'indirizzo della tua identità:" -#: ../../mod/dfrn_request.php:843 +#: ../../mod/dfrn_request.php:858 ../../mod/follow.php:64 msgid "Submit Request" msgstr "Invia richiesta" @@ -4931,7 +4937,7 @@ msgstr "Suggerisci amici" msgid "Suggest a friend for %s" msgstr "Suggerisci un amico a %s" -#: ../../mod/share.php:44 +#: ../../mod/share.php:38 msgid "link" msgstr "collegamento" @@ -4943,15 +4949,15 @@ msgstr "Nessun contatto." msgid "Theme settings updated." msgstr "Impostazioni del tema aggiornate." -#: ../../mod/admin.php:104 ../../mod/admin.php:619 +#: ../../mod/admin.php:104 ../../mod/admin.php:621 msgid "Site" msgstr "Sito" -#: ../../mod/admin.php:105 ../../mod/admin.php:998 ../../mod/admin.php:1013 +#: ../../mod/admin.php:105 ../../mod/admin.php:1001 ../../mod/admin.php:1016 msgid "Users" msgstr "Utenti" -#: ../../mod/admin.php:107 ../../mod/admin.php:1323 ../../mod/admin.php:1357 +#: ../../mod/admin.php:107 ../../mod/admin.php:1326 ../../mod/admin.php:1360 msgid "Themes" msgstr "Temi" @@ -4959,7 +4965,7 @@ msgstr "Temi" msgid "DB updates" msgstr "Aggiornamenti Database" -#: ../../mod/admin.php:123 ../../mod/admin.php:132 ../../mod/admin.php:1444 +#: ../../mod/admin.php:123 ../../mod/admin.php:132 ../../mod/admin.php:1447 msgid "Logs" msgstr "Log" @@ -4983,19 +4989,19 @@ msgstr "diagnostiche" msgid "User registrations waiting for confirmation" msgstr "Utenti registrati in attesa di conferma" -#: ../../mod/admin.php:193 ../../mod/admin.php:952 +#: ../../mod/admin.php:193 ../../mod/admin.php:955 msgid "Normal Account" msgstr "Account normale" -#: ../../mod/admin.php:194 ../../mod/admin.php:953 +#: ../../mod/admin.php:194 ../../mod/admin.php:956 msgid "Soapbox Account" msgstr "Account per comunicati e annunci" -#: ../../mod/admin.php:195 ../../mod/admin.php:954 +#: ../../mod/admin.php:195 ../../mod/admin.php:957 msgid "Community/Celebrity Account" msgstr "Account per celebrità o per comunità" -#: ../../mod/admin.php:196 ../../mod/admin.php:955 +#: ../../mod/admin.php:196 ../../mod/admin.php:958 msgid "Automatic Friend Account" msgstr "Account per amicizia automatizzato" @@ -5011,9 +5017,9 @@ msgstr "Forum Privato" msgid "Message queues" msgstr "Code messaggi" -#: ../../mod/admin.php:222 ../../mod/admin.php:618 ../../mod/admin.php:997 -#: ../../mod/admin.php:1101 ../../mod/admin.php:1154 ../../mod/admin.php:1322 -#: ../../mod/admin.php:1356 ../../mod/admin.php:1443 +#: ../../mod/admin.php:222 ../../mod/admin.php:620 ../../mod/admin.php:1000 +#: ../../mod/admin.php:1104 ../../mod/admin.php:1157 ../../mod/admin.php:1325 +#: ../../mod/admin.php:1359 ../../mod/admin.php:1446 msgid "Administration" msgstr "Amministrazione" @@ -5041,331 +5047,331 @@ msgstr "Plugin attivi" msgid "Can not parse base url. Must have at least ://" msgstr "Impossibile analizzare l'url base. Deve avere almeno [schema]://[dominio]" -#: ../../mod/admin.php:516 +#: ../../mod/admin.php:518 msgid "Site settings updated." msgstr "Impostazioni del sito aggiornate." -#: ../../mod/admin.php:562 +#: ../../mod/admin.php:564 msgid "No community page" msgstr "Nessuna pagina Comunità" -#: ../../mod/admin.php:563 +#: ../../mod/admin.php:565 msgid "Public postings from users of this site" msgstr "Messaggi pubblici dagli utenti di questo sito" -#: ../../mod/admin.php:564 +#: ../../mod/admin.php:566 msgid "Global community page" msgstr "Pagina Comunità globale" -#: ../../mod/admin.php:570 +#: ../../mod/admin.php:572 msgid "At post arrival" msgstr "All'arrivo di un messaggio" -#: ../../mod/admin.php:579 +#: ../../mod/admin.php:581 msgid "Multi user instance" msgstr "Istanza multi utente" -#: ../../mod/admin.php:602 +#: ../../mod/admin.php:604 msgid "Closed" msgstr "Chiusa" -#: ../../mod/admin.php:603 +#: ../../mod/admin.php:605 msgid "Requires approval" msgstr "Richiede l'approvazione" -#: ../../mod/admin.php:604 +#: ../../mod/admin.php:606 msgid "Open" msgstr "Aperta" -#: ../../mod/admin.php:608 +#: ../../mod/admin.php:610 msgid "No SSL policy, links will track page SSL state" msgstr "Nessuna gestione SSL, i link seguiranno lo stato SSL della pagina" -#: ../../mod/admin.php:609 +#: ../../mod/admin.php:611 msgid "Force all links to use SSL" msgstr "Forza tutti i linki ad usare SSL" -#: ../../mod/admin.php:610 +#: ../../mod/admin.php:612 msgid "Self-signed certificate, use SSL for local links only (discouraged)" msgstr "Certificato auto-firmato, usa SSL solo per i link locali (sconsigliato)" -#: ../../mod/admin.php:622 +#: ../../mod/admin.php:624 msgid "File upload" msgstr "Caricamento file" -#: ../../mod/admin.php:623 +#: ../../mod/admin.php:625 msgid "Policies" msgstr "Politiche" -#: ../../mod/admin.php:624 +#: ../../mod/admin.php:626 msgid "Advanced" msgstr "Avanzate" -#: ../../mod/admin.php:625 +#: ../../mod/admin.php:627 msgid "Performance" msgstr "Performance" -#: ../../mod/admin.php:626 +#: ../../mod/admin.php:628 msgid "" "Relocate - WARNING: advanced function. Could make this server unreachable." msgstr "Trasloca - ATTENZIONE: funzione avanzata! Puo' rendere questo server irraggiungibile." -#: ../../mod/admin.php:629 +#: ../../mod/admin.php:631 msgid "Site name" msgstr "Nome del sito" -#: ../../mod/admin.php:630 +#: ../../mod/admin.php:632 msgid "Host name" msgstr "Nome host" -#: ../../mod/admin.php:631 +#: ../../mod/admin.php:633 msgid "Sender Email" msgstr "Mittente email" -#: ../../mod/admin.php:632 +#: ../../mod/admin.php:634 msgid "Banner/Logo" msgstr "Banner/Logo" -#: ../../mod/admin.php:633 +#: ../../mod/admin.php:635 msgid "Shortcut icon" msgstr "Icona shortcut" -#: ../../mod/admin.php:634 +#: ../../mod/admin.php:636 msgid "Touch icon" msgstr "Icona touch" -#: ../../mod/admin.php:635 +#: ../../mod/admin.php:637 msgid "Additional Info" msgstr "Informazioni aggiuntive" -#: ../../mod/admin.php:635 +#: ../../mod/admin.php:637 msgid "" "For public servers: you can add additional information here that will be " "listed at dir.friendica.com/siteinfo." msgstr "Per server pubblici: puoi aggiungere informazioni extra che verrano mostrate su dir.friendica.com/siteinfo." -#: ../../mod/admin.php:636 +#: ../../mod/admin.php:638 msgid "System language" msgstr "Lingua di sistema" -#: ../../mod/admin.php:637 +#: ../../mod/admin.php:639 msgid "System theme" msgstr "Tema di sistema" -#: ../../mod/admin.php:637 +#: ../../mod/admin.php:639 msgid "" "Default system theme - may be over-ridden by user profiles - change theme settings" msgstr "Tema di sistema - puo' essere sovrascritto dalle impostazioni utente - cambia le impostazioni del tema" -#: ../../mod/admin.php:638 +#: ../../mod/admin.php:640 msgid "Mobile system theme" msgstr "Tema mobile di sistema" -#: ../../mod/admin.php:638 +#: ../../mod/admin.php:640 msgid "Theme for mobile devices" msgstr "Tema per dispositivi mobili" -#: ../../mod/admin.php:639 +#: ../../mod/admin.php:641 msgid "SSL link policy" msgstr "Gestione link SSL" -#: ../../mod/admin.php:639 +#: ../../mod/admin.php:641 msgid "Determines whether generated links should be forced to use SSL" msgstr "Determina se i link generati devono essere forzati a usare SSL" -#: ../../mod/admin.php:640 +#: ../../mod/admin.php:642 msgid "Force SSL" msgstr "Forza SSL" -#: ../../mod/admin.php:640 +#: ../../mod/admin.php:642 msgid "" "Force all Non-SSL requests to SSL - Attention: on some systems it could lead" " to endless loops." msgstr "Forza tutte le richieste non SSL su SSL - Attenzione: su alcuni sistemi puo' portare a loop senza fine" -#: ../../mod/admin.php:641 +#: ../../mod/admin.php:643 msgid "Old style 'Share'" msgstr "Ricondivisione vecchio stile" -#: ../../mod/admin.php:641 +#: ../../mod/admin.php:643 msgid "Deactivates the bbcode element 'share' for repeating items." msgstr "Disattiva l'elemento bbcode 'share' con elementi ripetuti" -#: ../../mod/admin.php:642 +#: ../../mod/admin.php:644 msgid "Hide help entry from navigation menu" msgstr "Nascondi la voce 'Guida' dal menu di navigazione" -#: ../../mod/admin.php:642 +#: ../../mod/admin.php:644 msgid "" "Hides the menu entry for the Help pages from the navigation menu. You can " "still access it calling /help directly." msgstr "Nasconde la voce per le pagine della guida dal menu di navigazione. E' comunque possibile accedervi richiamando /help direttamente." -#: ../../mod/admin.php:643 +#: ../../mod/admin.php:645 msgid "Single user instance" msgstr "Instanza a singolo utente" -#: ../../mod/admin.php:643 +#: ../../mod/admin.php:645 msgid "Make this instance multi-user or single-user for the named user" msgstr "Rendi questa istanza multi utente o a singolo utente per l'utente selezionato" -#: ../../mod/admin.php:644 +#: ../../mod/admin.php:646 msgid "Maximum image size" msgstr "Massima dimensione immagini" -#: ../../mod/admin.php:644 +#: ../../mod/admin.php:646 msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no " "limits." msgstr "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite." -#: ../../mod/admin.php:645 +#: ../../mod/admin.php:647 msgid "Maximum image length" msgstr "Massima lunghezza immagine" -#: ../../mod/admin.php:645 +#: ../../mod/admin.php:647 msgid "" "Maximum length in pixels of the longest side of uploaded images. Default is " "-1, which means no limits." msgstr "Massima lunghezza in pixel del lato più lungo delle immagini caricate. Predefinito a -1, ovvero nessun limite." -#: ../../mod/admin.php:646 +#: ../../mod/admin.php:648 msgid "JPEG image quality" msgstr "Qualità immagini JPEG" -#: ../../mod/admin.php:646 +#: ../../mod/admin.php:648 msgid "" "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " "100, which is full quality." msgstr "Le immagini JPEG caricate verranno salvate con questa qualità [0-100]. Predefinito è 100, ovvero qualità piena." -#: ../../mod/admin.php:648 +#: ../../mod/admin.php:650 msgid "Register policy" msgstr "Politica di registrazione" -#: ../../mod/admin.php:649 +#: ../../mod/admin.php:651 msgid "Maximum Daily Registrations" msgstr "Massime registrazioni giornaliere" -#: ../../mod/admin.php:649 +#: ../../mod/admin.php:651 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 "Se la registrazione è permessa, qui si definisce il massimo numero di nuovi utenti registrati da accettare giornalmente. Se la registrazione è chiusa, questa impostazione non ha effetto." -#: ../../mod/admin.php:650 +#: ../../mod/admin.php:652 msgid "Register text" msgstr "Testo registrazione" -#: ../../mod/admin.php:650 +#: ../../mod/admin.php:652 msgid "Will be displayed prominently on the registration page." msgstr "Sarà mostrato ben visibile nella pagina di registrazione." -#: ../../mod/admin.php:651 +#: ../../mod/admin.php:653 msgid "Accounts abandoned after x days" msgstr "Account abbandonati dopo x giorni" -#: ../../mod/admin.php:651 +#: ../../mod/admin.php:653 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "Non spreca risorse di sistema controllando siti esterni per gli account abbandonati. Immettere 0 per nessun limite di tempo." -#: ../../mod/admin.php:652 +#: ../../mod/admin.php:654 msgid "Allowed friend domains" msgstr "Domini amici consentiti" -#: ../../mod/admin.php:652 +#: ../../mod/admin.php:654 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "Elenco separato da virglola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio." -#: ../../mod/admin.php:653 +#: ../../mod/admin.php:655 msgid "Allowed email domains" msgstr "Domini email consentiti" -#: ../../mod/admin.php:653 +#: ../../mod/admin.php:655 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 "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio." -#: ../../mod/admin.php:654 +#: ../../mod/admin.php:656 msgid "Block public" msgstr "Blocca pagine pubbliche" -#: ../../mod/admin.php:654 +#: ../../mod/admin.php:656 msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently logged in." msgstr "Seleziona per bloccare l'accesso pubblico a tutte le pagine personali di questo sito, a meno di essere loggato." -#: ../../mod/admin.php:655 +#: ../../mod/admin.php:657 msgid "Force publish" msgstr "Forza publicazione" -#: ../../mod/admin.php:655 +#: ../../mod/admin.php:657 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "Seleziona per forzare tutti i profili di questo sito ad essere compresi nell'elenco di questo sito." -#: ../../mod/admin.php:656 +#: ../../mod/admin.php:658 msgid "Global directory update URL" msgstr "URL aggiornamento Elenco Globale" -#: ../../mod/admin.php:656 +#: ../../mod/admin.php:658 msgid "" "URL to update the global directory. If this is not set, the global directory" " is completely unavailable to the application." msgstr "URL dell'elenco globale. Se vuoto, l'elenco globale sarà completamente disabilitato." -#: ../../mod/admin.php:657 +#: ../../mod/admin.php:659 msgid "Allow threaded items" msgstr "Permetti commenti nidificati" -#: ../../mod/admin.php:657 +#: ../../mod/admin.php:659 msgid "Allow infinite level threading for items on this site." msgstr "Permette un infinito livello di nidificazione dei commenti su questo sito." -#: ../../mod/admin.php:658 +#: ../../mod/admin.php:660 msgid "Private posts by default for new users" msgstr "Post privati di default per i nuovi utenti" -#: ../../mod/admin.php:658 +#: ../../mod/admin.php:660 msgid "" "Set default post permissions for all new members to the default privacy " "group rather than public." msgstr "Imposta i permessi predefiniti dei post per tutti i nuovi utenti come privati per il gruppo predefinito, invece che pubblici." -#: ../../mod/admin.php:659 +#: ../../mod/admin.php:661 msgid "Don't include post content in email notifications" msgstr "Non includere il contenuto dei post nelle notifiche via email" -#: ../../mod/admin.php:659 +#: ../../mod/admin.php:661 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 "Non include il contenuti del post/commento/messaggio privato/etc. nelle notifiche email che sono inviate da questo sito, per privacy" -#: ../../mod/admin.php:660 +#: ../../mod/admin.php:662 msgid "Disallow public access to addons listed in the apps menu." msgstr "Disabilita l'accesso pubblico ai plugin raccolti nel menu apps." -#: ../../mod/admin.php:660 +#: ../../mod/admin.php:662 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "Selezionando questo box si limiterà ai soli membri l'accesso agli addon nel menu applicazioni" -#: ../../mod/admin.php:661 +#: ../../mod/admin.php:663 msgid "Don't embed private images in posts" msgstr "Non inglobare immagini private nei post" -#: ../../mod/admin.php:661 +#: ../../mod/admin.php:663 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 " @@ -5373,319 +5379,327 @@ msgid "" "while." msgstr "Non sostituire le foto locali nei post con una copia incorporata dell'immagine. Questo significa che i contatti che riceveranno i post contenenti foto private dovranno autenticarsi e caricare ogni immagine, cosa che puo' richiedere un po' di tempo." -#: ../../mod/admin.php:662 +#: ../../mod/admin.php:664 msgid "Allow Users to set remote_self" msgstr "Permetti agli utenti di impostare 'io remoto'" -#: ../../mod/admin.php:662 +#: ../../mod/admin.php:664 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 "Selezionando questo, a tutti gli utenti sarà permesso di impostare qualsiasi contatto come 'io remoto' nella pagina di modifica del contatto. Impostare questa opzione fa si che tutti i messaggi di quel contatto vengano ripetuti nello stream del'utente." -#: ../../mod/admin.php:663 +#: ../../mod/admin.php:665 msgid "Block multiple registrations" msgstr "Blocca registrazioni multiple" -#: ../../mod/admin.php:663 +#: ../../mod/admin.php:665 msgid "Disallow users to register additional accounts for use as pages." msgstr "Non permette all'utente di registrare account extra da usare come pagine." -#: ../../mod/admin.php:664 +#: ../../mod/admin.php:666 msgid "OpenID support" msgstr "Supporto OpenID" -#: ../../mod/admin.php:664 +#: ../../mod/admin.php:666 msgid "OpenID support for registration and logins." msgstr "Supporta OpenID per la registrazione e il login" -#: ../../mod/admin.php:665 +#: ../../mod/admin.php:667 msgid "Fullname check" msgstr "Controllo nome completo" -#: ../../mod/admin.php:665 +#: ../../mod/admin.php:667 msgid "" "Force users to register with a space between firstname and lastname in Full " "name, as an antispam measure" msgstr "Forza gli utenti a registrarsi con uno spazio tra il nome e il cognome in \"Nome completo\", come misura antispam" -#: ../../mod/admin.php:666 +#: ../../mod/admin.php:668 msgid "UTF-8 Regular expressions" msgstr "Espressioni regolari UTF-8" -#: ../../mod/admin.php:666 +#: ../../mod/admin.php:668 msgid "Use PHP UTF8 regular expressions" msgstr "Usa le espressioni regolari PHP in UTF8" -#: ../../mod/admin.php:667 +#: ../../mod/admin.php:669 msgid "Community Page Style" msgstr "Stile pagina Comunità" -#: ../../mod/admin.php:667 +#: ../../mod/admin.php:669 msgid "" "Type of community page to show. 'Global community' shows every public " "posting from an open distributed network that arrived on this server." msgstr "Tipo di pagina Comunità da mostrare. 'Comunità Globale' mostra tutti i messaggi pubblici arrivati su questo server da network aperti distribuiti." -#: ../../mod/admin.php:668 +#: ../../mod/admin.php:670 msgid "Posts per user on community page" msgstr "Messaggi per utente nella pagina Comunità" -#: ../../mod/admin.php:668 +#: ../../mod/admin.php:670 msgid "" "The maximum number of posts per user on the community page. (Not valid for " "'Global Community')" msgstr "Il numero massimo di messaggi per utente mostrato nella pagina Comuntà (non valido per 'Comunità globale')" -#: ../../mod/admin.php:669 +#: ../../mod/admin.php:671 msgid "Enable OStatus support" msgstr "Abilita supporto OStatus" -#: ../../mod/admin.php:669 +#: ../../mod/admin.php:671 msgid "" "Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " "communications in OStatus are public, so privacy warnings will be " "occasionally displayed." msgstr "Fornisce la compatibilità integrata a OStatus (StatusNet, Gnu Social, etc.). Tutte le comunicazioni su OStatus sono pubbliche, quindi un avviso di privacy verrà mostrato occasionalmente." -#: ../../mod/admin.php:670 +#: ../../mod/admin.php:672 msgid "OStatus conversation completion interval" msgstr "Intervallo completamento conversazioni OStatus" -#: ../../mod/admin.php:670 +#: ../../mod/admin.php:672 msgid "" "How often shall the poller check for new entries in OStatus conversations? " "This can be a very ressource task." msgstr "quanto spesso il poller deve controllare se esistono nuovi commenti in una conversazione OStatus? Questo è un lavoro che puo' richiedere molte risorse." -#: ../../mod/admin.php:671 +#: ../../mod/admin.php:673 msgid "Enable Diaspora support" msgstr "Abilita il supporto a Diaspora" -#: ../../mod/admin.php:671 +#: ../../mod/admin.php:673 msgid "Provide built-in Diaspora network compatibility." msgstr "Fornisce compatibilità con il network Diaspora." -#: ../../mod/admin.php:672 +#: ../../mod/admin.php:674 msgid "Only allow Friendica contacts" msgstr "Permetti solo contatti Friendica" -#: ../../mod/admin.php:672 +#: ../../mod/admin.php:674 msgid "" "All contacts must use Friendica protocols. All other built-in communication " "protocols disabled." msgstr "Tutti i contatti devono usare il protocollo di Friendica. Tutti gli altri protocolli sono disabilitati." -#: ../../mod/admin.php:673 +#: ../../mod/admin.php:675 msgid "Verify SSL" msgstr "Verifica SSL" -#: ../../mod/admin.php:673 +#: ../../mod/admin.php:675 msgid "" "If you wish, you can turn on strict certificate checking. This will mean you" " cannot connect (at all) to self-signed SSL sites." msgstr "Se vuoi, puoi abilitare il controllo rigoroso dei certificati.Questo significa che non potrai collegarti (del tutto) con siti con certificati SSL auto-firmati." -#: ../../mod/admin.php:674 +#: ../../mod/admin.php:676 msgid "Proxy user" msgstr "Utente Proxy" -#: ../../mod/admin.php:675 +#: ../../mod/admin.php:677 msgid "Proxy URL" msgstr "URL Proxy" -#: ../../mod/admin.php:676 +#: ../../mod/admin.php:678 msgid "Network timeout" msgstr "Timeout rete" -#: ../../mod/admin.php:676 +#: ../../mod/admin.php:678 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "Valore in secondi. Imposta a 0 per illimitato (non raccomandato)." -#: ../../mod/admin.php:677 +#: ../../mod/admin.php:679 msgid "Delivery interval" msgstr "Intervallo di invio" -#: ../../mod/admin.php:677 +#: ../../mod/admin.php:679 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 "Ritarda il processo di invio in background di n secondi per ridurre il carico di sistema. Raccomandato: 4-5 per host condivisit, 2-3 per VPS. 0-1 per grandi server dedicati." -#: ../../mod/admin.php:678 +#: ../../mod/admin.php:680 msgid "Poll interval" msgstr "Intervallo di poll" -#: ../../mod/admin.php:678 +#: ../../mod/admin.php:680 msgid "" "Delay background polling processes by this many seconds to reduce system " "load. If 0, use delivery interval." msgstr "Ritarda il processo di poll in background di n secondi per ridurre il carico di sistema. Se 0, usa l'intervallo di invio." -#: ../../mod/admin.php:679 +#: ../../mod/admin.php:681 msgid "Maximum Load Average" msgstr "Massimo carico medio" -#: ../../mod/admin.php:679 +#: ../../mod/admin.php:681 msgid "" "Maximum system load before delivery and poll processes are deferred - " "default 50." msgstr "Massimo carico di sistema prima che i processi di invio e di poll siano ritardati. Predefinito a 50." -#: ../../mod/admin.php:681 +#: ../../mod/admin.php:682 +msgid "Maximum Load Average (Frontend)" +msgstr "Media Massimo Carico (Frontend)" + +#: ../../mod/admin.php:682 +msgid "Maximum system load before the frontend quits service - default 50." +msgstr "Massimo carico di sistema prima che il frontend fermi il servizio - default 50." + +#: ../../mod/admin.php:684 msgid "Use MySQL full text engine" msgstr "Usa il motore MySQL full text" -#: ../../mod/admin.php:681 +#: ../../mod/admin.php:684 msgid "" "Activates the full text engine. Speeds up search - but can only search for " "four and more characters." msgstr "Attiva il motore full text. Velocizza la ricerca, ma puo' cercare solo per quattro o più caratteri." -#: ../../mod/admin.php:682 +#: ../../mod/admin.php:685 msgid "Suppress Language" msgstr "Disattiva lingua" -#: ../../mod/admin.php:682 +#: ../../mod/admin.php:685 msgid "Suppress language information in meta information about a posting." msgstr "Disattiva le informazioni sulla lingua nei meta di un post." -#: ../../mod/admin.php:683 +#: ../../mod/admin.php:686 msgid "Suppress Tags" msgstr "Sopprimi Tags" -#: ../../mod/admin.php:683 +#: ../../mod/admin.php:686 msgid "Suppress showing a list of hashtags at the end of the posting." msgstr "Non mostra la lista di hashtag in coda al messaggio" -#: ../../mod/admin.php:684 +#: ../../mod/admin.php:687 msgid "Path to item cache" msgstr "Percorso cache elementi" -#: ../../mod/admin.php:685 +#: ../../mod/admin.php:688 msgid "Cache duration in seconds" msgstr "Durata della cache in secondi" -#: ../../mod/admin.php:685 +#: ../../mod/admin.php:688 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 "Quanto a lungo devono essere mantenuti i file di cache? Il valore predefinito è 86400 secondi (un giorno). Per disabilitare la cache, imposta il valore a -1." -#: ../../mod/admin.php:686 +#: ../../mod/admin.php:689 msgid "Maximum numbers of comments per post" msgstr "Numero massimo di commenti per post" -#: ../../mod/admin.php:686 +#: ../../mod/admin.php:689 msgid "How much comments should be shown for each post? Default value is 100." msgstr "Quanti commenti devono essere mostrati per ogni post? Default : 100." -#: ../../mod/admin.php:687 +#: ../../mod/admin.php:690 msgid "Path for lock file" msgstr "Percorso al file di lock" -#: ../../mod/admin.php:688 +#: ../../mod/admin.php:691 msgid "Temp path" msgstr "Percorso file temporanei" -#: ../../mod/admin.php:689 +#: ../../mod/admin.php:692 msgid "Base path to installation" msgstr "Percorso base all'installazione" -#: ../../mod/admin.php:690 +#: ../../mod/admin.php:693 msgid "Disable picture proxy" msgstr "Disabilita il proxy immagini" -#: ../../mod/admin.php:690 +#: ../../mod/admin.php:693 msgid "" "The picture proxy increases performance and privacy. It shouldn't be used on" " systems with very low bandwith." msgstr "Il proxy immagini aumenta le performace e la privacy. Non dovrebbe essere usato su server con poca banda disponibile." -#: ../../mod/admin.php:691 +#: ../../mod/admin.php:694 msgid "Enable old style pager" msgstr "Abilita la paginazione vecchio stile" -#: ../../mod/admin.php:691 +#: ../../mod/admin.php:694 msgid "" "The old style pager has page numbers but slows down massively the page " "speed." msgstr "La paginazione vecchio stile mostra i numeri delle pagine, ma rallenta la velocità di caricamento della pagina." -#: ../../mod/admin.php:692 +#: ../../mod/admin.php:695 msgid "Only search in tags" msgstr "Cerca solo nei tag" -#: ../../mod/admin.php:692 +#: ../../mod/admin.php:695 msgid "On large systems the text search can slow down the system extremely." msgstr "Su server con molti dati, la ricerca nel testo può estremamente rallentare il sistema." -#: ../../mod/admin.php:694 +#: ../../mod/admin.php:697 msgid "New base url" msgstr "Nuovo url base" -#: ../../mod/admin.php:711 +#: ../../mod/admin.php:714 msgid "Update has been marked successful" msgstr "L'aggiornamento è stato segnato come di successo" -#: ../../mod/admin.php:719 +#: ../../mod/admin.php:722 #, php-format msgid "Database structure update %s was successfully applied." msgstr "Aggiornamento struttura database %s applicata con successo." -#: ../../mod/admin.php:722 +#: ../../mod/admin.php:725 #, php-format msgid "Executing of database structure update %s failed with error: %s" msgstr "Aggiornamento struttura database %s fallita con errore: %s" -#: ../../mod/admin.php:734 +#: ../../mod/admin.php:737 #, php-format msgid "Executing %s failed with error: %s" msgstr "Esecuzione di %s fallita con errore: %s" -#: ../../mod/admin.php:737 +#: ../../mod/admin.php:740 #, php-format msgid "Update %s was successfully applied." msgstr "L'aggiornamento %s è stato applicato con successo" -#: ../../mod/admin.php:741 +#: ../../mod/admin.php:744 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "L'aggiornamento %s non ha riportato uno stato. Non so se è andato a buon fine." -#: ../../mod/admin.php:743 +#: ../../mod/admin.php:746 #, php-format msgid "There was no additional update function %s that needed to be called." msgstr "Non ci sono altre funzioni di aggiornamento %s da richiamare." -#: ../../mod/admin.php:762 +#: ../../mod/admin.php:765 msgid "No failed updates." msgstr "Nessun aggiornamento fallito." -#: ../../mod/admin.php:763 +#: ../../mod/admin.php:766 msgid "Check database structure" msgstr "Controlla struttura database" -#: ../../mod/admin.php:768 +#: ../../mod/admin.php:771 msgid "Failed Updates" msgstr "Aggiornamenti falliti" -#: ../../mod/admin.php:769 +#: ../../mod/admin.php:772 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "Questo non include gli aggiornamenti prima del 1139, che non ritornano lo stato." -#: ../../mod/admin.php:770 +#: ../../mod/admin.php:773 msgid "Mark success (if update was manually applied)" msgstr "Segna completato (se l'update è stato applicato manualmente)" -#: ../../mod/admin.php:771 +#: ../../mod/admin.php:774 msgid "Attempt to execute this update step automatically" msgstr "Cerco di eseguire questo aggiornamento in automatico" -#: ../../mod/admin.php:803 +#: ../../mod/admin.php:806 #, php-format msgid "" "\n" @@ -5693,7 +5707,7 @@ msgid "" "\t\t\t\tthe administrator of %2$s has set up an account for you." msgstr "\nGentile %1$s,\n l'amministratore di %2$s ha impostato un account per te." -#: ../../mod/admin.php:806 +#: ../../mod/admin.php:809 #, php-format msgid "" "\n" @@ -5723,208 +5737,208 @@ msgid "" "\t\t\tThank you and welcome to %4$s." msgstr "\nI dettagli del tuo utente sono:\n Indirizzo del sito: %1$s\n Nome utente: %2$s\n Password: %3$s\n\nPuoi cambiare la tua password dalla pagina delle impostazioni del tuo account dopo esserti autenticato.\n\nPer favore, prenditi qualche momento per esaminare tutte le impostazioni presenti.\n\nPotresti voler aggiungere qualche informazione di base al tuo profilo predefinito (nella pagina \"Profili\"), così che le altre persone possano trovarti più facilmente.\n\nTi raccomandiamo di inserire il tuo nome completo, aggiungere una foto, aggiungere qualche parola chiave del profilo (molto utili per trovare nuovi contatti), e magari in quale nazione vivi, se non vuoi essere più specifico di così.\n\nNoi rispettiamo appieno la tua privacy, e nessuna di queste informazioni è necessaria o obbligatoria.\nSe sei nuovo e non conosci nessuno qui, possono aiutarti a trovare qualche nuovo e interessante contatto.\n\nGrazie e benvenuto su %4$s" -#: ../../mod/admin.php:850 +#: ../../mod/admin.php:853 #, php-format msgid "%s user blocked/unblocked" msgid_plural "%s users blocked/unblocked" msgstr[0] "%s utente bloccato/sbloccato" msgstr[1] "%s utenti bloccati/sbloccati" -#: ../../mod/admin.php:857 +#: ../../mod/admin.php:860 #, php-format msgid "%s user deleted" msgid_plural "%s users deleted" msgstr[0] "%s utente cancellato" msgstr[1] "%s utenti cancellati" -#: ../../mod/admin.php:896 +#: ../../mod/admin.php:899 #, php-format msgid "User '%s' deleted" msgstr "Utente '%s' cancellato" -#: ../../mod/admin.php:904 +#: ../../mod/admin.php:907 #, php-format msgid "User '%s' unblocked" msgstr "Utente '%s' sbloccato" -#: ../../mod/admin.php:904 +#: ../../mod/admin.php:907 #, php-format msgid "User '%s' blocked" msgstr "Utente '%s' bloccato" -#: ../../mod/admin.php:999 +#: ../../mod/admin.php:1002 msgid "Add User" msgstr "Aggiungi utente" -#: ../../mod/admin.php:1000 +#: ../../mod/admin.php:1003 msgid "select all" msgstr "seleziona tutti" -#: ../../mod/admin.php:1001 +#: ../../mod/admin.php:1004 msgid "User registrations waiting for confirm" msgstr "Richieste di registrazione in attesa di conferma" -#: ../../mod/admin.php:1002 +#: ../../mod/admin.php:1005 msgid "User waiting for permanent deletion" msgstr "Utente in attesa di cancellazione definitiva" -#: ../../mod/admin.php:1003 +#: ../../mod/admin.php:1006 msgid "Request date" msgstr "Data richiesta" -#: ../../mod/admin.php:1004 +#: ../../mod/admin.php:1007 msgid "No registrations." msgstr "Nessuna registrazione." -#: ../../mod/admin.php:1006 +#: ../../mod/admin.php:1009 msgid "Deny" msgstr "Nega" -#: ../../mod/admin.php:1010 +#: ../../mod/admin.php:1013 msgid "Site admin" msgstr "Amministrazione sito" -#: ../../mod/admin.php:1011 +#: ../../mod/admin.php:1014 msgid "Account expired" msgstr "Account scaduto" -#: ../../mod/admin.php:1014 +#: ../../mod/admin.php:1017 msgid "New User" msgstr "Nuovo Utente" -#: ../../mod/admin.php:1015 ../../mod/admin.php:1016 +#: ../../mod/admin.php:1018 ../../mod/admin.php:1019 msgid "Register date" msgstr "Data registrazione" -#: ../../mod/admin.php:1015 ../../mod/admin.php:1016 +#: ../../mod/admin.php:1018 ../../mod/admin.php:1019 msgid "Last login" msgstr "Ultimo accesso" -#: ../../mod/admin.php:1015 ../../mod/admin.php:1016 +#: ../../mod/admin.php:1018 ../../mod/admin.php:1019 msgid "Last item" msgstr "Ultimo elemento" -#: ../../mod/admin.php:1015 +#: ../../mod/admin.php:1018 msgid "Deleted since" msgstr "Rimosso da" -#: ../../mod/admin.php:1018 +#: ../../mod/admin.php:1021 msgid "" "Selected users will be deleted!\\n\\nEverything these users had posted on " "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "Gli utenti selezionati saranno cancellati!\\n\\nTutto quello che gli utenti hanno inviato su questo sito sarà permanentemente canellato!\\n\\nSei sicuro?" -#: ../../mod/admin.php:1019 +#: ../../mod/admin.php:1022 msgid "" "The user {0} will be deleted!\\n\\nEverything this user has posted on this " "site will be permanently deleted!\\n\\nAre you sure?" msgstr "L'utente {0} sarà cancellato!\\n\\nTutto quello che ha inviato su questo sito sarà permanentemente cancellato!\\n\\nSei sicuro?" -#: ../../mod/admin.php:1029 +#: ../../mod/admin.php:1032 msgid "Name of the new user." msgstr "Nome del nuovo utente." -#: ../../mod/admin.php:1030 +#: ../../mod/admin.php:1033 msgid "Nickname" msgstr "Nome utente" -#: ../../mod/admin.php:1030 +#: ../../mod/admin.php:1033 msgid "Nickname of the new user." msgstr "Nome utente del nuovo utente." -#: ../../mod/admin.php:1031 +#: ../../mod/admin.php:1034 msgid "Email address of the new user." msgstr "Indirizzo Email del nuovo utente." -#: ../../mod/admin.php:1064 +#: ../../mod/admin.php:1067 #, php-format msgid "Plugin %s disabled." msgstr "Plugin %s disabilitato." -#: ../../mod/admin.php:1068 +#: ../../mod/admin.php:1071 #, php-format msgid "Plugin %s enabled." msgstr "Plugin %s abilitato." -#: ../../mod/admin.php:1078 ../../mod/admin.php:1294 +#: ../../mod/admin.php:1081 ../../mod/admin.php:1297 msgid "Disable" msgstr "Disabilita" -#: ../../mod/admin.php:1080 ../../mod/admin.php:1296 +#: ../../mod/admin.php:1083 ../../mod/admin.php:1299 msgid "Enable" msgstr "Abilita" -#: ../../mod/admin.php:1103 ../../mod/admin.php:1324 +#: ../../mod/admin.php:1106 ../../mod/admin.php:1327 msgid "Toggle" msgstr "Inverti" -#: ../../mod/admin.php:1111 ../../mod/admin.php:1334 +#: ../../mod/admin.php:1114 ../../mod/admin.php:1337 msgid "Author: " msgstr "Autore: " -#: ../../mod/admin.php:1112 ../../mod/admin.php:1335 +#: ../../mod/admin.php:1115 ../../mod/admin.php:1338 msgid "Maintainer: " msgstr "Manutentore: " -#: ../../mod/admin.php:1254 +#: ../../mod/admin.php:1257 msgid "No themes found." msgstr "Nessun tema trovato." -#: ../../mod/admin.php:1316 +#: ../../mod/admin.php:1319 msgid "Screenshot" msgstr "Anteprima" -#: ../../mod/admin.php:1362 +#: ../../mod/admin.php:1365 msgid "[Experimental]" msgstr "[Sperimentale]" -#: ../../mod/admin.php:1363 +#: ../../mod/admin.php:1366 msgid "[Unsupported]" msgstr "[Non supportato]" -#: ../../mod/admin.php:1390 +#: ../../mod/admin.php:1393 msgid "Log settings updated." msgstr "Impostazioni Log aggiornate." -#: ../../mod/admin.php:1446 +#: ../../mod/admin.php:1449 msgid "Clear" msgstr "Pulisci" -#: ../../mod/admin.php:1452 +#: ../../mod/admin.php:1455 msgid "Enable Debugging" msgstr "Abilita Debugging" -#: ../../mod/admin.php:1453 +#: ../../mod/admin.php:1456 msgid "Log file" msgstr "File di Log" -#: ../../mod/admin.php:1453 +#: ../../mod/admin.php:1456 msgid "" "Must be writable by web server. Relative to your Friendica top-level " "directory." msgstr "Deve essere scrivibile dal server web. Relativo alla tua directory Friendica." -#: ../../mod/admin.php:1454 +#: ../../mod/admin.php:1457 msgid "Log level" msgstr "Livello di Log" -#: ../../mod/admin.php:1504 +#: ../../mod/admin.php:1507 msgid "Close" msgstr "Chiudi" -#: ../../mod/admin.php:1510 +#: ../../mod/admin.php:1513 msgid "FTP Host" msgstr "Indirizzo FTP" -#: ../../mod/admin.php:1511 +#: ../../mod/admin.php:1514 msgid "FTP Path" msgstr "Percorso FTP" -#: ../../mod/admin.php:1512 +#: ../../mod/admin.php:1515 msgid "FTP User" msgstr "Utente FTP" -#: ../../mod/admin.php:1513 +#: ../../mod/admin.php:1516 msgid "FTP Password" msgstr "Pasword FTP" @@ -6009,7 +6023,7 @@ msgstr "Preferiti" msgid "Favourite Posts" msgstr "Messaggi preferiti" -#: ../../mod/network.php:463 +#: ../../mod/network.php:458 #, php-format msgid "Warning: This group contains %s member from an insecure network." msgid_plural "" @@ -6017,31 +6031,31 @@ msgid_plural "" msgstr[0] "Attenzione: questo gruppo contiene %s membro da un network insicuro." msgstr[1] "Attenzione: questo gruppo contiene %s membri da un network insicuro." -#: ../../mod/network.php:466 +#: ../../mod/network.php:461 msgid "Private messages to this group are at risk of public disclosure." msgstr "I messaggi privati su questo gruppo potrebbero risultare visibili anche pubblicamente." -#: ../../mod/network.php:520 ../../mod/content.php:119 +#: ../../mod/network.php:524 ../../mod/content.php:119 msgid "No such group" msgstr "Nessun gruppo" -#: ../../mod/network.php:537 ../../mod/content.php:130 +#: ../../mod/network.php:541 ../../mod/content.php:130 msgid "Group is empty" msgstr "Il gruppo è vuoto" -#: ../../mod/network.php:544 ../../mod/content.php:134 +#: ../../mod/network.php:548 ../../mod/content.php:134 msgid "Group: " msgstr "Gruppo: " -#: ../../mod/network.php:554 +#: ../../mod/network.php:558 msgid "Contact: " msgstr "Contatto:" -#: ../../mod/network.php:556 +#: ../../mod/network.php:560 msgid "Private messages to this person are at risk of public disclosure." msgstr "I messaggi privati a questa persona potrebbero risultare visibili anche pubblicamente." -#: ../../mod/network.php:561 +#: ../../mod/network.php:565 msgid "Invalid contact." msgstr "Contatto non valido." @@ -6260,7 +6274,11 @@ msgstr "Foto recenti" msgid "The post was created" msgstr "Il messaggio è stato creato" -#: ../../mod/follow.php:27 +#: ../../mod/follow.php:21 +msgid "You already added this contact." +msgstr "Hai già aggiunto questo contatto." + +#: ../../mod/follow.php:103 msgid "Contact added" msgstr "Contatto aggiunto" @@ -6561,6 +6579,10 @@ msgstr "Sorgente (formato Diaspora):" msgid "diaspora2bb: " msgstr "diaspora2bb: " +#: ../../mod/p.php:9 +msgid "Not Extended" +msgstr "Not Extended" + #: ../../mod/tagrm.php:41 msgid "Tag removed" msgstr "Tag rimosso" @@ -6587,19 +6609,19 @@ msgstr "Questo comando rimuoverà completamente il tuo account. Una volta rimoss msgid "Please enter your password for verification:" msgstr "Inserisci la tua password per verifica:" -#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 +#: ../../mod/profperm.php:25 ../../mod/profperm.php:56 msgid "Invalid profile identifier." msgstr "Indentificativo del profilo non valido." -#: ../../mod/profperm.php:101 +#: ../../mod/profperm.php:102 msgid "Profile Visibility Editor" msgstr "Modifica visibilità del profilo" -#: ../../mod/profperm.php:114 +#: ../../mod/profperm.php:115 msgid "Visible To" msgstr "Visibile a" -#: ../../mod/profperm.php:130 +#: ../../mod/profperm.php:131 msgid "All Contacts (with secure profile access)" msgstr "Tutti i contatti (con profilo ad accesso sicuro)" @@ -6611,121 +6633,121 @@ msgstr "Profili corrispondenti" msgid "No keywords to match. Please add keywords to your default profile." msgstr "Nessuna parola chiave per l'abbinamento. Aggiungi parole chiave al tuo profilo predefinito." -#: ../../mod/match.php:57 +#: ../../mod/match.php:62 msgid "is interested in:" msgstr "è interessato a:" -#: ../../mod/events.php:66 +#: ../../mod/events.php:68 ../../mod/events.php:70 msgid "Event title and start time are required." msgstr "Titolo e ora di inizio dell'evento sono richiesti." -#: ../../mod/events.php:291 +#: ../../mod/events.php:303 msgid "l, F j" msgstr "l j F" -#: ../../mod/events.php:313 +#: ../../mod/events.php:325 msgid "Edit event" msgstr "Modifca l'evento" -#: ../../mod/events.php:371 +#: ../../mod/events.php:383 msgid "Create New Event" msgstr "Crea un nuovo evento" -#: ../../mod/events.php:372 +#: ../../mod/events.php:384 msgid "Previous" msgstr "Precendente" -#: ../../mod/events.php:373 ../../mod/install.php:207 +#: ../../mod/events.php:385 ../../mod/install.php:207 msgid "Next" msgstr "Successivo" -#: ../../mod/events.php:446 +#: ../../mod/events.php:458 msgid "hour:minute" msgstr "ora:minuti" -#: ../../mod/events.php:456 +#: ../../mod/events.php:468 msgid "Event details" msgstr "Dettagli dell'evento" -#: ../../mod/events.php:457 +#: ../../mod/events.php:469 #, php-format msgid "Format is %s %s. Starting date and Title are required." msgstr "Il formato è %s %s. Data di inizio e Titolo sono richiesti." -#: ../../mod/events.php:459 +#: ../../mod/events.php:471 msgid "Event Starts:" msgstr "L'evento inizia:" -#: ../../mod/events.php:459 ../../mod/events.php:473 +#: ../../mod/events.php:471 ../../mod/events.php:485 msgid "Required" msgstr "Richiesto" -#: ../../mod/events.php:462 +#: ../../mod/events.php:474 msgid "Finish date/time is not known or not relevant" msgstr "La data/ora di fine non è definita" -#: ../../mod/events.php:464 +#: ../../mod/events.php:476 msgid "Event Finishes:" msgstr "L'evento finisce:" -#: ../../mod/events.php:467 +#: ../../mod/events.php:479 msgid "Adjust for viewer timezone" msgstr "Visualizza con il fuso orario di chi legge" -#: ../../mod/events.php:469 +#: ../../mod/events.php:481 msgid "Description:" msgstr "Descrizione:" -#: ../../mod/events.php:473 +#: ../../mod/events.php:485 msgid "Title:" msgstr "Titolo:" -#: ../../mod/events.php:475 +#: ../../mod/events.php:487 msgid "Share this event" msgstr "Condividi questo evento" -#: ../../mod/ping.php:240 +#: ../../mod/ping.php:210 ../../mod/ping.php:234 msgid "{0} wants to be your friend" msgstr "{0} vuole essere tuo amico" -#: ../../mod/ping.php:245 +#: ../../mod/ping.php:215 ../../mod/ping.php:239 msgid "{0} sent you a message" msgstr "{0} ti ha inviato un messaggio" -#: ../../mod/ping.php:250 +#: ../../mod/ping.php:220 ../../mod/ping.php:244 msgid "{0} requested registration" msgstr "{0} chiede la registrazione" -#: ../../mod/ping.php:256 +#: ../../mod/ping.php:250 #, php-format msgid "{0} commented %s's post" msgstr "{0} ha commentato il post di %s" -#: ../../mod/ping.php:261 +#: ../../mod/ping.php:255 #, php-format msgid "{0} liked %s's post" msgstr "a {0} piace il post di %s" -#: ../../mod/ping.php:266 +#: ../../mod/ping.php:260 #, php-format msgid "{0} disliked %s's post" msgstr "a {0} non piace il post di %s" -#: ../../mod/ping.php:271 +#: ../../mod/ping.php:265 #, php-format msgid "{0} is now friends with %s" msgstr "{0} ora è amico di %s" -#: ../../mod/ping.php:276 +#: ../../mod/ping.php:270 msgid "{0} posted" msgstr "{0} ha inviato un nuovo messaggio" -#: ../../mod/ping.php:281 +#: ../../mod/ping.php:275 #, php-format msgid "{0} tagged %s's post with #%s" msgstr "{0} ha taggato il post di %s con #%s" -#: ../../mod/ping.php:287 +#: ../../mod/ping.php:281 msgid "{0} mentioned you in a post" msgstr "{0} ti ha citato in un post" @@ -7450,47 +7472,51 @@ msgstr "Duplica come messaggi ricondivisi" msgid "Mirror as my own posting" msgstr "Duplica come miei messaggi" -#: ../../mod/crepair.php:166 +#: ../../mod/crepair.php:168 +msgid "Refetch contact data" +msgstr "Ricarica dati contatto" + +#: ../../mod/crepair.php:170 msgid "Account Nickname" msgstr "Nome utente" -#: ../../mod/crepair.php:167 +#: ../../mod/crepair.php:171 msgid "@Tagname - overrides Name/Nickname" msgstr "@TagName - al posto del nome utente" -#: ../../mod/crepair.php:168 +#: ../../mod/crepair.php:172 msgid "Account URL" msgstr "URL dell'utente" -#: ../../mod/crepair.php:169 +#: ../../mod/crepair.php:173 msgid "Friend Request URL" msgstr "URL Richiesta Amicizia" -#: ../../mod/crepair.php:170 +#: ../../mod/crepair.php:174 msgid "Friend Confirm URL" msgstr "URL Conferma Amicizia" -#: ../../mod/crepair.php:171 +#: ../../mod/crepair.php:175 msgid "Notification Endpoint URL" msgstr "URL Notifiche" -#: ../../mod/crepair.php:172 +#: ../../mod/crepair.php:176 msgid "Poll/Feed URL" msgstr "URL Feed" -#: ../../mod/crepair.php:173 +#: ../../mod/crepair.php:177 msgid "New photo from this URL" msgstr "Nuova foto da questo URL" -#: ../../mod/crepair.php:174 +#: ../../mod/crepair.php:178 msgid "Remote Self" msgstr "Io remoto" -#: ../../mod/crepair.php:176 +#: ../../mod/crepair.php:180 msgid "Mirror postings from this contact" msgstr "Ripeti i messaggi di questo contatto" -#: ../../mod/crepair.php:176 +#: ../../mod/crepair.php:180 msgid "" "Mark this contact as remote_self, this will cause friendica to repost new " "entries from this contact." @@ -7693,7 +7719,7 @@ msgstr "Scegli cosa vuoi fare al destinatario" msgid "Make this post private" msgstr "Rendi questo post privato" -#: ../../mod/display.php:496 +#: ../../mod/display.php:498 msgid "Item has been removed." msgstr "L'oggetto è stato rimosso." @@ -7738,47 +7764,47 @@ msgstr "Problema temporaneo. Attendi e riprova." msgid "Introduction failed or was revoked." msgstr "La presentazione ha generato un errore o è stata revocata." -#: ../../mod/dfrn_confirm.php:429 +#: ../../mod/dfrn_confirm.php:430 msgid "Unable to set contact photo." msgstr "Impossibile impostare la foto del contatto." -#: ../../mod/dfrn_confirm.php:571 +#: ../../mod/dfrn_confirm.php:572 #, php-format msgid "No user record found for '%s' " msgstr "Nessun utente trovato '%s'" -#: ../../mod/dfrn_confirm.php:581 +#: ../../mod/dfrn_confirm.php:582 msgid "Our site encryption key is apparently messed up." msgstr "La nostra chiave di criptazione del sito sembra essere corrotta." -#: ../../mod/dfrn_confirm.php:592 +#: ../../mod/dfrn_confirm.php:593 msgid "Empty site URL was provided or URL could not be decrypted by us." msgstr "E' stato fornito un indirizzo vuoto o non possiamo decrittare l'indirizzo." -#: ../../mod/dfrn_confirm.php:613 +#: ../../mod/dfrn_confirm.php:614 msgid "Contact record was not found for you on our site." msgstr "Il contatto non è stato trovato sul nostro sito." -#: ../../mod/dfrn_confirm.php:627 +#: ../../mod/dfrn_confirm.php:628 #, php-format msgid "Site public key not available in contact record for URL %s." msgstr "La chiave pubblica del sito non è disponibile per l'URL %s" -#: ../../mod/dfrn_confirm.php:647 +#: ../../mod/dfrn_confirm.php:648 msgid "" "The ID provided by your system is a duplicate on our system. It should work " "if you try again." msgstr "L'ID fornito dal tuo sistema è duplicato sul nostro sistema. Se riprovi dovrebbe funzionare." -#: ../../mod/dfrn_confirm.php:658 +#: ../../mod/dfrn_confirm.php:659 msgid "Unable to set your contact credentials on our system." msgstr "Impossibile impostare le credenziali del tuo contatto sul nostro sistema." -#: ../../mod/dfrn_confirm.php:725 +#: ../../mod/dfrn_confirm.php:726 msgid "Unable to update your contact profile details on our system" msgstr "Impossibile aggiornare i dettagli del tuo contatto sul nostro sistema" -#: ../../mod/dfrn_confirm.php:797 +#: ../../mod/dfrn_confirm.php:798 #, php-format msgid "%1$s has joined %2$s" msgstr "%1$s si è unito a %2$s" diff --git a/view/it/strings.php b/view/it/strings.php index e9909effd4..6f82e70062 100644 --- a/view/it/strings.php +++ b/view/it/strings.php @@ -76,13 +76,6 @@ $a->strings["Page not found."] = "Pagina non trovata."; $a->strings["Permission denied"] = "Permesso negato"; $a->strings["Permission denied."] = "Permesso negato."; $a->strings["toggle mobile"] = "commuta tema mobile"; -$a->strings["Do you wish to confirm your identity (%s) with %s"] = ""; -$a->strings["Confirm"] = "Conferma"; -$a->strings["Do not confirm"] = ""; -$a->strings["Trust This Site"] = ""; -$a->strings["No Identifier Sent"] = ""; -$a->strings["Requested identity don't match logged in user."] = ""; -$a->strings["Please wait; you are being redirected to <%s>"] = ""; $a->strings["Delete this item?"] = "Cancellare questo elemento?"; $a->strings["Comment"] = "Commento"; $a->strings["show more"] = "mostra di più"; @@ -194,6 +187,7 @@ $a->strings["edit"] = "modifica"; $a->strings["Groups"] = "Gruppi"; $a->strings["Edit group"] = "Modifica gruppo"; $a->strings["Create a new group"] = "Crea un nuovo gruppo"; +$a->strings["Group Name: "] = "Nome del gruppo:"; $a->strings["Contacts not in any group"] = "Contatti in nessun gruppo."; $a->strings["add"] = "aggiungi"; $a->strings["Wall Photos"] = "Foto della bacheca"; @@ -739,7 +733,6 @@ $a->strings["Group not found."] = "Gruppo non trovato."; $a->strings["Group name changed."] = "Il nome del gruppo è cambiato."; $a->strings["Save Group"] = "Salva gruppo"; $a->strings["Create a group of contacts/friends."] = "Crea un gruppo di amici/contatti."; -$a->strings["Group Name: "] = "Nome del gruppo:"; $a->strings["Group removed."] = "Gruppo rimosso."; $a->strings["Unable to remove group."] = "Impossibile rimuovere il gruppo."; $a->strings["Group Editor"] = "Modifica gruppo"; @@ -753,7 +746,7 @@ $a->strings["Existing Page Delegates"] = "Delegati Pagina Esistenti"; $a->strings["Potential Delegates"] = "Delegati Potenziali"; $a->strings["Remove"] = "Rimuovi"; $a->strings["Add"] = "Aggiungi"; -$a->strings["No entries."] = "Nessun articolo."; +$a->strings["No entries."] = "Nessuna voce."; $a->strings["Invalid request identifier."] = "L'identificativo della richiesta non è valido."; $a->strings["Discard"] = "Scarta"; $a->strings["Ignore"] = "Ignora"; @@ -838,6 +831,9 @@ $a->strings["Plugin Settings"] = "Impostazioni plugin"; $a->strings["Off"] = "Spento"; $a->strings["On"] = "Acceso"; $a->strings["Additional Features"] = "Funzionalità aggiuntive"; +$a->strings["General Social Media Settings"] = "Impostazioni Media Sociali"; +$a->strings["Disable intelligent shortening"] = "Disabilita accorciamento intelligente"; +$a->strings["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."] = "Normalmente il sistema tenta di trovare il migliore link da aggiungere a un post accorciato. Se questa opzione è abilitata, ogni post accorciato conterrà sempre un link al post originale su Friendica."; $a->strings["Built-in support for %s connectivity is %s"] = "Il supporto integrato per la connettività con %s è %s"; $a->strings["enabled"] = "abilitato"; $a->strings["disabled"] = "disabilitato"; @@ -944,6 +940,9 @@ $a->strings["You receive a private message"] = "Ricevi un messaggio privato"; $a->strings["You receive a friend suggestion"] = "Hai ricevuto un suggerimento di amicizia"; $a->strings["You are tagged in a post"] = "Sei stato taggato in un post"; $a->strings["You are poked/prodded/etc. in a post"] = "Sei 'toccato'/'spronato'/ecc. in un post"; +$a->strings["Activate desktop notifications"] = ""; +$a->strings["Note: This is an experimental feature, as being not supported by each browser"] = ""; +$a->strings["You will now receive desktop notifications!"] = ""; $a->strings["Text-only notification emails"] = "Email di notifica in solo testo"; $a->strings["Send text only notification emails, without the html part"] = "Invia le email di notifica in solo testo, senza la parte in html"; $a->strings["Advanced Account/Page Type Settings"] = "Impostazioni avanzate Account/Tipo di pagina"; @@ -1108,6 +1107,7 @@ $a->strings["Invalid profile URL."] = "Indirizzo profilo non valido."; $a->strings["Your introduction has been sent."] = "La tua presentazione è stata inviata."; $a->strings["Please login to confirm introduction."] = "Accedi per confermare la presentazione."; $a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Non hai fatto accesso con l'identità corretta. Accedi a questo profilo."; +$a->strings["Confirm"] = "Conferma"; $a->strings["Hide this contact"] = "Nascondi questo contatto"; $a->strings["Welcome home %s."] = "Bentornato a casa %s."; $a->strings["Please confirm your introduction/connection request to %s."] = "Conferma la tua richiesta di connessione con %s."; @@ -1269,6 +1269,8 @@ $a->strings["Poll interval"] = "Intervallo di poll"; $a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Ritarda il processo di poll in background di n secondi per ridurre il carico di sistema. Se 0, usa l'intervallo di invio."; $a->strings["Maximum Load Average"] = "Massimo carico medio"; $a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Massimo carico di sistema prima che i processi di invio e di poll siano ritardati. Predefinito a 50."; +$a->strings["Maximum Load Average (Frontend)"] = "Media Massimo Carico (Frontend)"; +$a->strings["Maximum system load before the frontend quits service - default 50."] = "Massimo carico di sistema prima che il frontend fermi il servizio - default 50."; $a->strings["Use MySQL full text engine"] = "Usa il motore MySQL full text"; $a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "Attiva il motore full text. Velocizza la ricerca, ma puo' cercare solo per quattro o più caratteri."; $a->strings["Suppress Language"] = "Disattiva lingua"; @@ -1440,6 +1442,7 @@ $a->strings["Private photo"] = "Foto privata"; $a->strings["Public photo"] = "Foto pubblica"; $a->strings["Recent Photos"] = "Foto recenti"; $a->strings["The post was created"] = "Il messaggio è stato creato"; +$a->strings["You already added this contact."] = "Hai già aggiunto questo contatto."; $a->strings["Contact added"] = "Contatto aggiunto"; $a->strings["Move account"] = "Muovi account"; $a->strings["You can import an account from another Friendica server."] = "Puoi importare un account da un altro server Friendica."; @@ -1498,6 +1501,7 @@ $a->strings["bb2dia2bb: "] = "bb2dia2bb: "; $a->strings["bb2md2html2bb: "] = "bb2md2html2bb: "; $a->strings["Source input (Diaspora format): "] = "Sorgente (formato Diaspora):"; $a->strings["diaspora2bb: "] = "diaspora2bb: "; +$a->strings["Not Extended"] = "Not Extended"; $a->strings["Tag removed"] = "Tag rimosso"; $a->strings["Remove Item Tag"] = "Rimuovi il tag"; $a->strings["Select a tag to remove: "] = "Seleziona un tag da rimuovere: "; @@ -1704,6 +1708,7 @@ $a->strings["Return to contact editor"] = "Ritorna alla modifica contatto"; $a->strings["No mirroring"] = "Non duplicare"; $a->strings["Mirror as forwarded posting"] = "Duplica come messaggi ricondivisi"; $a->strings["Mirror as my own posting"] = "Duplica come miei messaggi"; +$a->strings["Refetch contact data"] = "Ricarica dati contatto"; $a->strings["Account Nickname"] = "Nome utente"; $a->strings["@Tagname - overrides Name/Nickname"] = "@TagName - al posto del nome utente"; $a->strings["Account URL"] = "URL dell'utente"; From 83697cf3e561ceaf0365cd2b4e56fb4bcd00d1fa Mon Sep 17 00:00:00 2001 From: fabrixxm Date: Sat, 23 May 2015 22:35:02 +0200 Subject: [PATCH 135/306] Delete attachments on item deletion Delete video from videos page --- include/items.php | 13 +++++ mod/videos.php | 96 ++++++++++++++++++++++++++++++------ view/templates/video_top.tpl | 6 +++ 3 files changed, 101 insertions(+), 14 deletions(-) diff --git a/include/items.php b/include/items.php index 5a0aa9ed51..c5de29a6de 100644 --- a/include/items.php +++ b/include/items.php @@ -4745,6 +4745,18 @@ function drop_item($id,$interactive = true) { // ignore the result } + // If item has attachments, drop them + + foreach(explode(",",$item['attach']) as $attach){ + preg_match("|attach/(\d+)|", $attach, $matches); + q("DELETE FROM `attach` WHERE `id` = %d AND `uid` = %d", + intval($matches[1]), + local_user() + ); + // ignore the result + } + + // clean up item_id and sign meta-data tables /* @@ -4821,6 +4833,7 @@ function drop_item($id,$interactive = true) { // Add a relayable_retraction signature for Diaspora. store_diaspora_retract_sig($item, $a->user, $a->get_baseurl()); } + $drop_id = intval($item['id']); // send the notification upstream/downstream as the case may be diff --git a/mod/videos.php b/mod/videos.php index 0f29e631bd..607c900eb5 100644 --- a/mod/videos.php +++ b/mod/videos.php @@ -43,12 +43,12 @@ function videos_init(&$a) { if(count($albums)) { $a->data['albums'] = $albums; - $albums_visible = ((intval($a->data['user']['hidewall']) && (! local_user()) && (! remote_user())) ? false : true); + $albums_visible = ((intval($a->data['user']['hidewall']) && (! local_user()) && (! remote_user())) ? false : true); if($albums_visible) { $o .= ' From 7c2608e07d54fe9f861cc9bcafa9e204adb05251 Mon Sep 17 00:00:00 2001 From: fabrixxm Date: Sat, 23 May 2015 22:51:34 +0200 Subject: [PATCH 136/306] quattro: style video delete button --- view/templates/video_top.tpl | 2 +- view/theme/quattro/dark/style.css | 28 ++- view/theme/quattro/green/style.css | 28 ++- view/theme/quattro/lilac/style.css | 28 ++- view/theme/quattro/quattro.less | 283 ++++++++++++++++------------- 5 files changed, 219 insertions(+), 150 deletions(-) diff --git a/view/templates/video_top.tpl b/view/templates/video_top.tpl index 207dd83f2f..8348d702cd 100644 --- a/view/templates/video_top.tpl +++ b/view/templates/video_top.tpl @@ -11,7 +11,7 @@ {{**}} {{if $delete_url }}
    - +
    {{/if}} diff --git a/view/theme/quattro/dark/style.css b/view/theme/quattro/dark/style.css index 5f4b005c8e..3c109a440e 100644 --- a/view/theme/quattro/dark/style.css +++ b/view/theme/quattro/dark/style.css @@ -514,7 +514,6 @@ header { margin: 0px; padding: 0px; /*width: 100%; height: 12px; */ - z-index: 110; color: #ffffff; } @@ -844,7 +843,6 @@ aside #profiles-menu { overflow: auto; height: auto; /*.contact-block-div { width:60px; height: 60px; }*/ - } #contact-block .contact-block-h4 { float: left; @@ -926,7 +924,6 @@ aside #profiles-menu { margin-bottom: 2em; /*.action .s10 { width: 10px; overflow: hidden; padding: 0px;} .action .s16 { width: 16px; overflow: hidden; padding: 0px;}*/ - } .widget h3 { padding: 0px; @@ -1208,7 +1205,6 @@ section { height: 32px; margin-left: 16px; /*background: url(../../../images/icons/22/user.png) no-repeat center center;*/ - } .comment-edit-preview .contact-photo-menu-button { top: 15px !important; @@ -1283,9 +1279,6 @@ section { opacity: 0.5; }*/ .wwto { - position: absolute !important; - width: 25px; - height: 25px; background: #FFFFFF; border: 2px solid #364e59; height: 25px; @@ -1969,6 +1962,27 @@ ul.tabs li .active { width: 50px; float: left; } +/* videos page */ +.videos .video-top-wrapper { + width: 200px; + float: left; + margin: 0px 10px 10px 0px; + position: relative; +} +.videos .video-top-wrapper .video-js { + width: 200px!important; + height: 132px!important; +} +.videos .video-top-wrapper .video-delete { + position: absolute; + opacity: 0; + right: 0px; + top: 0px; + transition: opacity 0.5s; +} +.videos .video-top-wrapper:hover .video-delete { + opacity: 1; +} /* photo albums */ #photo-edit-link-wrap { margin-bottom: 10px; diff --git a/view/theme/quattro/green/style.css b/view/theme/quattro/green/style.css index c2826a3c0c..5e355ffa70 100644 --- a/view/theme/quattro/green/style.css +++ b/view/theme/quattro/green/style.css @@ -514,7 +514,6 @@ header { margin: 0px; padding: 0px; /*width: 100%; height: 12px; */ - z-index: 110; color: #ffffff; } @@ -844,7 +843,6 @@ aside #profiles-menu { overflow: auto; height: auto; /*.contact-block-div { width:60px; height: 60px; }*/ - } #contact-block .contact-block-h4 { float: left; @@ -926,7 +924,6 @@ aside #profiles-menu { margin-bottom: 2em; /*.action .s10 { width: 10px; overflow: hidden; padding: 0px;} .action .s16 { width: 16px; overflow: hidden; padding: 0px;}*/ - } .widget h3 { padding: 0px; @@ -1208,7 +1205,6 @@ section { height: 32px; margin-left: 16px; /*background: url(../../../images/icons/22/user.png) no-repeat center center;*/ - } .comment-edit-preview .contact-photo-menu-button { top: 15px !important; @@ -1283,9 +1279,6 @@ section { opacity: 0.5; }*/ .wwto { - position: absolute !important; - width: 25px; - height: 25px; background: #FFFFFF; border: 2px solid #364e59; height: 25px; @@ -1969,6 +1962,27 @@ ul.tabs li .active { width: 50px; float: left; } +/* videos page */ +.videos .video-top-wrapper { + width: 200px; + float: left; + margin: 0px 10px 10px 0px; + position: relative; +} +.videos .video-top-wrapper .video-js { + width: 200px!important; + height: 132px!important; +} +.videos .video-top-wrapper .video-delete { + position: absolute; + opacity: 0; + right: 0px; + top: 0px; + transition: opacity 0.5s; +} +.videos .video-top-wrapper:hover .video-delete { + opacity: 1; +} /* photo albums */ #photo-edit-link-wrap { margin-bottom: 10px; diff --git a/view/theme/quattro/lilac/style.css b/view/theme/quattro/lilac/style.css index 28c5cd47a9..0f497d492f 100644 --- a/view/theme/quattro/lilac/style.css +++ b/view/theme/quattro/lilac/style.css @@ -514,7 +514,6 @@ header { margin: 0px; padding: 0px; /*width: 100%; height: 12px; */ - z-index: 110; color: #ffffff; } @@ -844,7 +843,6 @@ aside #profiles-menu { overflow: auto; height: auto; /*.contact-block-div { width:60px; height: 60px; }*/ - } #contact-block .contact-block-h4 { float: left; @@ -926,7 +924,6 @@ aside #profiles-menu { margin-bottom: 2em; /*.action .s10 { width: 10px; overflow: hidden; padding: 0px;} .action .s16 { width: 16px; overflow: hidden; padding: 0px;}*/ - } .widget h3 { padding: 0px; @@ -1208,7 +1205,6 @@ section { height: 32px; margin-left: 16px; /*background: url(../../../images/icons/22/user.png) no-repeat center center;*/ - } .comment-edit-preview .contact-photo-menu-button { top: 15px !important; @@ -1283,9 +1279,6 @@ section { opacity: 0.5; }*/ .wwto { - position: absolute !important; - width: 25px; - height: 25px; background: #FFFFFF; border: 2px solid #364e59; height: 25px; @@ -1969,6 +1962,27 @@ ul.tabs li .active { width: 50px; float: left; } +/* videos page */ +.videos .video-top-wrapper { + width: 200px; + float: left; + margin: 0px 10px 10px 0px; + position: relative; +} +.videos .video-top-wrapper .video-js { + width: 200px!important; + height: 132px!important; +} +.videos .video-top-wrapper .video-delete { + position: absolute; + opacity: 0; + right: 0px; + top: 0px; + transition: opacity 0.5s; +} +.videos .video-top-wrapper:hover .video-delete { + opacity: 1; +} /* photo albums */ #photo-edit-link-wrap { margin-bottom: 10px; diff --git a/view/theme/quattro/quattro.less b/view/theme/quattro/quattro.less index 172fad31b5..56eab54cc9 100644 --- a/view/theme/quattro/quattro.less +++ b/view/theme/quattro/quattro.less @@ -36,7 +36,7 @@ h4 { font-size: 1.1em } -o-transition: all @d ease-in-out; -ms-transition: all @d ease-in-out; transition: all @d ease-in-out; -} +} a, a:link { color: @Link; text-decoration: none; } @@ -56,7 +56,7 @@ blockquote { padding: 1em; margin-left: 1em; border-left: 1em solid @BlockquoteBorderColor; - + } code { @@ -68,7 +68,7 @@ code { background: #EEE; color: #444; padding: 10px; - margin-top: 20px; + margin-top: 20px; } #panel { @@ -81,8 +81,8 @@ code { list-style: none; border: 3px solid @MenuBorder; z-index: 100000; - - .shadow(); + + .shadow(); } @@ -134,7 +134,7 @@ header { #site-location { display: none; } - + #banner { overflow: hidden; text-align: center; @@ -145,7 +145,7 @@ header { } } /* nav */ -nav { +nav { width: 100%; height: 32px; position: fixed; left: 0px; top: 0px; padding: 0px; @@ -159,13 +159,13 @@ nav { ul { margin: 0px; padding: 0px 20px; - li { - list-style: none; + li { + list-style: none; margin: 0px; padding: 0px; float: left; .menu-popup{ left: 0px; right: auto; } } - + } .nav-menu-icon { @@ -174,11 +174,11 @@ nav { padding: 5px; margin: 0px 10px; .roundtop(); - + &.selected { background-color: @NavbarSelectedBg; } - + img { width: 22px; height: 22px; } .nav-notify { top: 3px; } } @@ -193,7 +193,7 @@ nav { &.selected { border-bottom: 3px solid @NavbarSelectedBorder; } - + } .nav-notify { @@ -207,26 +207,26 @@ nav { right: -10px; min-width: 15px; text-align: right; - + &.show{ display: block; } } - - + + #nav-help-link, #nav-search-link, #nav-directory-link, #nav-apps-link, - #nav-site-linkmenu { + #nav-site-linkmenu { float: right; .menu-popup{ right: 0px; left: auto; } } - + #nav-notifications-linkmenu.on .icon.s22.notify, #nav-notifications-linkmenu.selected .icon.s22.notify { background-image: url("../../../images/icons/22/notify_on.png") } #nav-introductions-link.on .icon.s22.intro, #nav-introductions-link.selected .icon.s22.intro { background-image: url("icons/contacts_on.png") } #nav-messages-link.on .icon.s22.mail, - #nav-messages-link.selected .icon.s22.mail { background-image: url("icons/messages_on.png") } + #nav-messages-link.selected .icon.s22.mail { background-image: url("icons/messages_on.png") } #nav-apps-link.selected { background-color: @NavbarSelectedBg; } } @@ -242,9 +242,9 @@ ul.menu-popup { list-style: none; border: 3px solid @MenuBorder; z-index: 100000; - + .shadow(); - + a { display: block; color: @MenuItem; padding: 5px 10px; text-decoration: none;} a:hover { background-color: @MenuItemHoverBg; } .menu-sep { border-top: 1px solid @MenuItemSeparator; } @@ -256,12 +256,12 @@ ul.menu-popup { color: @MenuEmpty; } .toolbar { - background-color: @MenuEmpty; + background-color: @MenuEmpty; height: auto; overflow: auto; a { float: right; } a:hover { background-color: @MenuBg; } } - + } /* autocomplete popup */ @@ -275,7 +275,7 @@ ul.menu-popup { z-index:100000; .shadow(); } -.autocomplete > div, +.autocomplete > div, .acpopupitem { color: @MenuItem; padding: 4px; clear:left; @@ -305,7 +305,7 @@ ul.menu-popup { /* aside 230px*/ -aside { +aside { display: table-cell; vertical-align: top; width: 200px; @@ -320,7 +320,7 @@ aside { dl { height: auto; overflow: auto; } dt {float: left; margin-left: 0px; width: 35%; text-align: right; color: @VCardLabelColor; } dd {float: left; margin-left: 4px; width: 60%;} - + } #profile-extra-links { @@ -337,7 +337,7 @@ aside { text-transform:uppercase; padding: 4px 2px 2px 35px; margin-top: 3px; - + &:hover { text-decoration: none; background-color: @AsideConnectHoverBg; } } #dfrn-request-link { @@ -348,7 +348,7 @@ aside { font-weight: bold; text-transform:uppercase; padding: 4px 2px 2px 35px; - + &:hover { text-decoration: none; background-color: @AsideConnectHoverBg; } } @@ -420,11 +420,11 @@ aside { width: 60px; height: 60px; }*/ - + /* widget */ .widget { margin-bottom: 2em; - + h3 { padding: 0px; margin: 2px;} .action { .opaque(0.1); } input.action { .opaque(0.5); } @@ -434,14 +434,14 @@ aside { ul { padding: 0px;} ul li {padding-left: 16px; min-height: 16px; list-style: none; } - + .tool.selected { background: url('../../../images/selected.png') no-repeat left center; } - + /*.action .s10 { width: 10px; overflow: hidden; padding: 0px;} .action .s16 { width: 16px; overflow: hidden; padding: 0px;}*/ - + } /* widget: search */ @@ -452,7 +452,7 @@ aside { /* section 800px */ -section { +section { display: table-cell; vertical-align: top; width: 770px; @@ -464,7 +464,7 @@ section { } /* wall item */ -.tread-wrapper { +.tread-wrapper { background-color: @ThreadBackgroundColor; position: relative; padding: 10px; @@ -478,10 +478,10 @@ section { .wall-item-container { display: table; width: 750px; - + .wall-item-item, .wall-item-bottom { display: table-row; } - + .wall-item-bottom { .opaque(0.5); } &:hover .wall-item-bottom { .opaque(1); } .wall-item-info { @@ -489,8 +489,8 @@ section { vertical-align: top; text-align: left; width: 60px; - - } + + } .wall-item-location { word-wrap: break-word; width: 50px; @@ -503,45 +503,45 @@ section { } .wall-item-content img { max-width: 700px; } .wall-item-links, - .wall-item-actions { - display: table-cell; - vertical-align: middle; - + .wall-item-actions { + display: table-cell; + vertical-align: middle; + .icon { .opaque(0.5); } .icon:hover { .opaque(1.0); - } + } } - + .wall-item-ago { padding-right: 40px; } .wall-item-name { font-weight: bold; } - + .wall-item-actions-author { float: left; width: 20em; margin-top: 0.5em; } .wall-item-actions-social { float: left; margin-top: 0.5em; a { margin-right: 3em; } } - .wall-item-actions-tools { float: right; width: 15%; + .wall-item-actions-tools { float: right; width: 15%; a { float: right; } input { float: right; } } - + } .wall-item-container.comment { .contact-photo-wrapper { margin-left: 16px; } - .contact-photo { - width: 32px; height: 32px; + .contact-photo { + width: 32px; height: 32px; } - + .contact-photo-menu-button { top: 15px !important; left: 0px !important; } .wall-item-links { padding-left: 12px; } - + .commentbox { height: 0px; overflow: hidden; @@ -551,7 +551,7 @@ section { } .transition(); } - + &:hover .commentbox { height:auto; overflow: visible; .wall-item-comment-wrapper { @@ -568,9 +568,9 @@ section { .opaque(0.5); } .contact-photo-wrapper { margin-left: 32px; } - .contact-photo { + .contact-photo { width: 16px; height: 16px; - } + } .contact-photo-menu-button { top: 15px !important; left: 15px !important; @@ -581,8 +581,8 @@ section { .wall-item-comment-wrapper { margin: 1em 2em 1em 60px; .comment-edit-photo { display: none; } - - textarea { + + textarea { height: 1em; width: 100%; font-size: 10px; color: @CommentBoxEmptyColor; border: 1px solid @CommentBoxEmptyBorderColor; @@ -593,7 +593,7 @@ section { color: @CommentBoxFullColor; border: 1px solid @CommentBoxFullBorderColor; } - + &.photo { margin: 1em 2em 1em 0px; } @@ -606,10 +606,10 @@ section { border: 1px solid @Grey5; margin-top: 10px; background-color: @JotPreviewBackgroundColor; - + .contact-photo { width: 32px; height: 32px; margin-left: 16px; /*background: url(../../../images/icons/22/user.png) no-repeat center center;*/ - } + } .contact-photo-menu-button { top: 15px !important; left: 15px !important; @@ -617,8 +617,8 @@ section { .wall-item-links { padding-left: 12px; } .wall-item-container { width: 90%; } - .tread-wrapper { - width: 90%; padding: 0; margin: 10px 0; + .tread-wrapper { + width: 90%; padding: 0; margin: 10px 0; background-color: @JotPreviewBackgroundColor; border-bottom: 0px; } @@ -664,9 +664,9 @@ section { opacity: 0.5; }*/ -.wwto { - position: absolute !important; - width: 25px; height: 25px; +.wwto { + position: absolute !important; + width: 25px; height: 25px; background: #FFFFFF; border: 2px solid @Metalic3; height: 25px; @@ -676,7 +676,7 @@ section { position: absolute !important; top: 40px; left: 30px; - + .shadow(0px, 0px) } .wwto .contact-photo { width: 25px; height: 25px; } @@ -695,7 +695,7 @@ section { float: none; margin-right: 0px; } - + } .type-link { blockquote { @@ -715,14 +715,14 @@ section { border-top: 1px solid @ThreadBottomBorderColor; padding-top: 5px; margin-top: 5px; - + img { -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; float: left; } - + span { margin-left: 9px; } } @@ -735,7 +735,7 @@ blockquote.shared_content { .oembed.video { - > a.embed_video { + > a.embed_video { display: block; float: none; > div { @@ -753,45 +753,45 @@ blockquote.shared_content { .children { margin-top: 1em; .hide-comments-outer { margin-left:60px; } - + .wwto { display: none; } - + .comment-edit-preview { width: 660px; .wall-item-container { width: 610px; } } - + & .children { - + margin-left: 40px; .wall-item-container { width: 710px; } .comment-edit-preview { width: 620px; .wall-item-container { width: 620px; } } - + & .children { .wall-item-container { width: 670px; } - .comment-edit-preview { width: 580px; + .comment-edit-preview { width: 580px; .wall-item-container { width: 580px; } } - + & .children { .wall-item-container { width: 630px; } - .comment-edit-preview { width: 540px; + .comment-edit-preview { width: 540px; .wall-item-container { width: 540px; } } & .children { .wall-item-container { width: 590px; } - .comment-edit-preview { width: 500px; + .comment-edit-preview { width: 500px; .wall-item-container { width: 500px; } } - + .children { margin-left: 0px; .hide-comments-outer { margin-left: 0px; } } } - } + } } } } @@ -820,8 +820,8 @@ span[id^="showmore-wrap"] { .contact-select { position: absolute; top:64px; left:64px; display:none; } .contact-select:checked, .contact-photo:hover .contact-select { display:block; } -#contacts-actions { - position: absolute; +#contacts-actions { + position: absolute; left: 800px; width: 200px; background-color: @MenuBg; @@ -845,12 +845,12 @@ span[id^="showmore-wrap"] { #contacts-actions { left: 40px; } } -.contact-photo { +.contact-photo { width: 48px; height: 48px; img { width: 48px; height: 48px; } overflow: hidden; display: block; - } + } .contact-photo-menu-button { display: none; position: absolute; @@ -864,30 +864,30 @@ span[id^="showmore-wrap"] { height: 90px; padding-right: 10px; margin: 0 10px 10px 0px; - .contact-photo-wrapper { - float: left; + .contact-photo-wrapper { + float: left; margin-right: 10px; } - .contact-photo { + .contact-photo { width: 80px; height: 80px; img { width: 80px; height: 80px; } } .contact-photo-menu-button { left: 0px; top: 63px; - } + } } .directory-item { float: left; width: 200px; height: 200px; - .contact-photo { + .contact-photo { width: 175px; height: 175px; img { width: 175px; height: 175px; } } } .contact-name { font-weight: bold; padding-top: 15px; } -.contact-details { +.contact-details { color: @Grey3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; @@ -899,8 +899,8 @@ span[id^="showmore-wrap"] { width: 100%; margin: 0px 2em 20px 0px; - - + + .profile-jot-text { height: 1em; width: 99%; font-size: 10px; color: @CommentBoxEmptyColor; @@ -947,7 +947,7 @@ span[id^="showmore-wrap"] { border-left: 10px solid @JotPermissionLockBackgroundColor; background-color: @JotPermissionLockBackgroundColor; } - + } li.submit { float: right; @@ -993,12 +993,12 @@ span[id^="showmore-wrap"] { &:-moz-placeholder { font-weight: normal; - } - + } + &:hover { border: 1px solid @CommentBoxEmptyBorderColor } &:focus { border: 1px solid @CommentBoxEmptyBorderColor } } - + #character-counter { width: 40px; float: right; @@ -1007,7 +1007,7 @@ span[id^="showmore-wrap"] { line-height: 20px; padding-right: 20px; } - + #jot-category { border: 0px; margin: 0px; @@ -1076,7 +1076,7 @@ span[id^="showmore-wrap"] { overflow: auto; } #acl-list-content { - + } .acl-list-item { display: block; @@ -1093,7 +1093,7 @@ span[id^="showmore-wrap"] { margin: 4px; } .acl-list-item p { height: 12px; font-size: 10px; margin: 0px; padding: 2px 0px 1px; overflow: hidden;} -.acl-list-item a { +.acl-list-item a { font-size: 8px; display: block; width: 40px; @@ -1138,12 +1138,12 @@ ul.tabs { li { float: left; margin-left: 20px; - + .active { border-bottom: 1px solid @LinkVisited; } } - + } @@ -1152,7 +1152,7 @@ ul.tabs { #group-update-wrapper{ height: auto; overflow: auto; #group { - width:300px; + width:300px; float:left; margin-right:20px; } @@ -1194,13 +1194,13 @@ ul.tabs { input[type="checkbox"], input[type="radio"]{ width: auto; } - + textarea { height: 100px; } .field_help { display: block; margin-left: 200px; color: @FieldHelpColor; - + } @@ -1275,7 +1275,7 @@ ul.tabs { } #profile-edit-profile-name, #profile-edit-name, -#gender-select, +#gender-select, #profile-edit-pdesc, #profile-edit-gender, #profile-edit-dob, @@ -1300,7 +1300,7 @@ ul.tabs { height: auto; overflow: auto; border-bottom: 2px solid #cccccc; padding-bottom: 1em; - margin-bottom: 1em; + margin-bottom: 1em; } .oauthapp img { float: left; @@ -1321,11 +1321,38 @@ ul.tabs { width: 50px; float: left; } +/* videos page */ +.videos { + .video-top-wrapper { + width: 200px; float: left; + margin: 0px 10px 10px 0px; + position: relative; + + .video-js { + width: 200px!important; + height: 132px!important; + } + + .video-delete { + position: absolute; + opacity: 0; + right: 0px; + top: 0px; + transition: opacity 0.5s; + } + + &:hover .video-delete { + opacity: 1; + } + } +} + + /* photo albums */ @photosize: 150px; #photo-edit-link-wrap { margin-bottom: 10px; } - + #album-edit-link { border-right: 1px solid @MenuBorder; float: left; @@ -1358,21 +1385,21 @@ ul.tabs { width:@photosize; height: @photosize; position: relative; overflow: hidden; - + img { width: @photosize; } - + .photo-top-album-name, .caption{ position: absolute; color: @Menu; background-color: @MenuBg; - + width: 100%; .shadow(0px, 5px); .transition(0.5s); bottom: -@photosize; } - + &:hover .photo-top-album-name, &:hover .caption { bottom: 0px; @@ -1392,8 +1419,8 @@ ul.tabs { background: url("../../../images/icons/22/image.png") no-repeat top left; padding-left: 23px; min-height: 22px; - padding-top: 6px; - /* a { display: block;}*/ + padding-top: 6px; + /* a { display: block;}*/ } #photo-caption { @@ -1441,14 +1468,14 @@ ul.tabs { top: 10px; left: -10px; } - .contact-photo { + .contact-photo { width: 80px; height: 80px; img { width: 80px; height: 80px; } } .contact-photo-menu-button { left: 0px; top: 63px; - } + } } /* messages */ @@ -1469,10 +1496,10 @@ ul.tabs { background-color: @MailListBackgroundColor; margin-bottom: 5px; width: 100%; height: auto; overflow: hidden; - + span { display: block; float: left; width: 20%; overflow: hidden;} - - .mail-subject { + + .mail-subject { width: 30%; padding:4px 0px 0px 4px; a { display: block; } @@ -1481,7 +1508,7 @@ ul.tabs { .mail-date { padding: 4px 4px 0px 4px; } .mail-from { padding: 4px 4px 0px 4px; } .mail-count { padding: 4px 4px 0px 4px; text-align: right;} - + .mail-delete { float: right; } } @@ -1493,7 +1520,7 @@ ul.tabs { span { float: left; overflow: hidden; padding: 4px 0px 0px 10px;} .mail-delete { float: right; .opaque(0.5);} &:hover .mail-delete { .opaque(1); } - + } /* theme screenshot */ @@ -1522,7 +1549,7 @@ footer { height: 100px; display: table-row; } font-weight: bold; background-color: #FF0000; padding: 0em 0.3em; - + } #adminpage { dl { @@ -1569,20 +1596,20 @@ footer { height: 100px; display: table-row; } } table { width:100%; - border-bottom: 1px solid #000000; + border-bottom: 1px solid #000000; margin: 5px 0px; - th { + th { text-align: left; } - td .icon { + td .icon { float: left; } - tr:hover { + tr:hover { background-color: #bbc7d7; } } - table#users img { - width: 16px; height: 16px; + table#users img { + width: 16px; height: 16px; } .selectall { text-align: right; } } From 646ea377acd4ed15e54b65a33c8e3a9c7b347b15 Mon Sep 17 00:00:00 2001 From: fabrixxm Date: Sun, 24 May 2015 10:28:15 +0200 Subject: [PATCH 137/306] quattro: readd video delete button styles because i'm not so good at resolving merge conflicts... --- view/theme/quattro/dark/style.css | 21 +++ view/theme/quattro/green/style.css | 21 +++ view/theme/quattro/lilac/style.css | 21 +++ view/theme/quattro/quattro.less | 270 ++++++++++++++++------------- 4 files changed, 211 insertions(+), 122 deletions(-) diff --git a/view/theme/quattro/dark/style.css b/view/theme/quattro/dark/style.css index 1ec672d227..c8bd7d406b 100644 --- a/view/theme/quattro/dark/style.css +++ b/view/theme/quattro/dark/style.css @@ -1965,6 +1965,27 @@ ul.tabs li .active { width: 50px; float: left; } +/* videos page */ +.videos .video-top-wrapper { + width: 200px; + float: left; + margin: 0px 10px 10px 0px; + position: relative; +} +.videos .video-top-wrapper .video-js { + width: 200px!important; + height: 132px!important; +} +.videos .video-top-wrapper .video-delete { + position: absolute; + opacity: 0; + right: 0px; + top: 0px; + transition: opacity 0.5s; +} +.videos .video-top-wrapper:hover .video-delete { + opacity: 1; +} /* photo albums */ #photo-edit-link-wrap { margin-bottom: 10px; diff --git a/view/theme/quattro/green/style.css b/view/theme/quattro/green/style.css index 89dc3dad86..9c18771fff 100644 --- a/view/theme/quattro/green/style.css +++ b/view/theme/quattro/green/style.css @@ -1965,6 +1965,27 @@ ul.tabs li .active { width: 50px; float: left; } +/* videos page */ +.videos .video-top-wrapper { + width: 200px; + float: left; + margin: 0px 10px 10px 0px; + position: relative; +} +.videos .video-top-wrapper .video-js { + width: 200px!important; + height: 132px!important; +} +.videos .video-top-wrapper .video-delete { + position: absolute; + opacity: 0; + right: 0px; + top: 0px; + transition: opacity 0.5s; +} +.videos .video-top-wrapper:hover .video-delete { + opacity: 1; +} /* photo albums */ #photo-edit-link-wrap { margin-bottom: 10px; diff --git a/view/theme/quattro/lilac/style.css b/view/theme/quattro/lilac/style.css index 11adc44b92..97cf540fc2 100644 --- a/view/theme/quattro/lilac/style.css +++ b/view/theme/quattro/lilac/style.css @@ -1965,6 +1965,27 @@ ul.tabs li .active { width: 50px; float: left; } +/* videos page */ +.videos .video-top-wrapper { + width: 200px; + float: left; + margin: 0px 10px 10px 0px; + position: relative; +} +.videos .video-top-wrapper .video-js { + width: 200px!important; + height: 132px!important; +} +.videos .video-top-wrapper .video-delete { + position: absolute; + opacity: 0; + right: 0px; + top: 0px; + transition: opacity 0.5s; +} +.videos .video-top-wrapper:hover .video-delete { + opacity: 1; +} /* photo albums */ #photo-edit-link-wrap { margin-bottom: 10px; diff --git a/view/theme/quattro/quattro.less b/view/theme/quattro/quattro.less index 480effd501..fbfb4bcb30 100644 --- a/view/theme/quattro/quattro.less +++ b/view/theme/quattro/quattro.less @@ -56,7 +56,7 @@ blockquote { padding: 1em; margin-left: 1em; border-left: 1em solid @BlockquoteBorderColor; - + } code { @@ -81,8 +81,8 @@ code { list-style: none; border: 3px solid @MenuBorder; z-index: 100000; - - .shadow(); + + .shadow(); } @@ -134,7 +134,7 @@ header { #site-location { display: none; } - + #banner { overflow: hidden; text-align: center; @@ -145,7 +145,7 @@ header { } } /* nav */ -nav { +nav { width: 100%; height: 32px; position: fixed; left: 0px; top: 0px; padding: 0px; @@ -159,13 +159,13 @@ nav { ul { margin: 0px; padding: 0px 20px; - li { - list-style: none; + li { + list-style: none; margin: 0px; padding: 0px; float: left; .menu-popup{ left: 0px; right: auto; } } - + } .nav-menu-icon { @@ -174,11 +174,11 @@ nav { padding: 5px; margin: 0px 10px; .roundtop(); - + &.selected { background-color: @NavbarSelectedBg; } - + img { width: 22px; height: 22px; } .nav-notify { top: 3px; } } @@ -193,7 +193,7 @@ nav { &.selected { border-bottom: 3px solid @NavbarSelectedBorder; } - + } .nav-notify { @@ -207,26 +207,26 @@ nav { right: -10px; min-width: 15px; text-align: right; - + &.show{ display: block; } } - - + + #nav-help-link, #nav-search-link, #nav-directory-link, #nav-apps-link, - #nav-site-linkmenu { + #nav-site-linkmenu { float: right; .menu-popup{ right: 0px; left: auto; } } - + #nav-notifications-linkmenu.on .icon.s22.notify, #nav-notifications-linkmenu.selected .icon.s22.notify { background-image: url("../../../images/icons/22/notify_on.png") } #nav-introductions-link.on .icon.s22.intro, #nav-introductions-link.selected .icon.s22.intro { background-image: url("icons/contacts_on.png") } #nav-messages-link.on .icon.s22.mail, - #nav-messages-link.selected .icon.s22.mail { background-image: url("icons/messages_on.png") } + #nav-messages-link.selected .icon.s22.mail { background-image: url("icons/messages_on.png") } #nav-apps-link.selected { background-color: @NavbarSelectedBg; } } @@ -242,9 +242,9 @@ ul.menu-popup { list-style: none; border: 3px solid @MenuBorder; z-index: 100000; - + .shadow(); - + a { display: block; color: @MenuItem; padding: 5px 10px; text-decoration: none;} a:hover { background-color: @MenuItemHoverBg; } .menu-sep { border-top: 1px solid @MenuItemSeparator; } @@ -256,12 +256,12 @@ ul.menu-popup { color: @MenuEmpty; } .toolbar { - background-color: @MenuEmpty; + background-color: @MenuEmpty; height: auto; overflow: auto; a { float: right; } a:hover { background-color: @MenuBg; } } - + } /* autocomplete popup */ @@ -275,7 +275,7 @@ ul.menu-popup { z-index:100000; .shadow(); } -.autocomplete > div, +.autocomplete > div, .acpopupitem { color: @MenuItem; padding: 4px; clear:left; @@ -305,7 +305,7 @@ ul.menu-popup { /* aside 230px*/ -aside { +aside { display: table-cell; vertical-align: top; width: 200px; @@ -320,7 +320,7 @@ aside { dl { height: auto; overflow: auto; } dt {float: left; margin-left: 0px; width: 35%; text-align: right; color: @VCardLabelColor; } dd {float: left; margin-left: 4px; width: 60%;} - + } #profile-extra-links { @@ -337,7 +337,7 @@ aside { text-transform:uppercase; padding: 4px 2px 2px 35px; margin-top: 3px; - + &:hover { text-decoration: none; background-color: @AsideConnectHoverBg; } } #dfrn-request-link { @@ -348,12 +348,12 @@ aside { font-weight: bold; text-transform:uppercase; padding: 4px 2px 2px 35px; - + &:hover { text-decoration: none; background-color: @AsideConnectHoverBg; } } #profiles-menu { width: 20em; } - + .posted-date-selector-months { margin-left: 10px; } } @@ -420,11 +420,11 @@ aside { width: 60px; height: 60px; }*/ - + /* widget */ .widget { margin-bottom: 2em; - + h3 { padding: 0px; margin: 2px;} .action { .opaque(0.1); } input.action { .opaque(0.5); } @@ -434,14 +434,14 @@ aside { ul { padding: 0px;} ul li {padding-left: 16px; min-height: 16px; list-style: none; } - + .tool.selected { background: url('../../../images/selected.png') no-repeat left center; } - + /*.action .s10 { width: 10px; overflow: hidden; padding: 0px;} .action .s16 { width: 16px; overflow: hidden; padding: 0px;}*/ - + } /* widget: search */ @@ -452,7 +452,7 @@ aside { /* section 800px */ -section { +section { display: table-cell; vertical-align: top; width: 770px; @@ -464,7 +464,7 @@ section { } /* wall item */ -.tread-wrapper { +.tread-wrapper { background-color: @ThreadBackgroundColor; position: relative; padding: 10px; @@ -478,10 +478,10 @@ section { .wall-item-container { display: table; width: 750px; - + .wall-item-item, .wall-item-bottom { display: table-row; } - + .wall-item-bottom { .opaque(0.5); } &:hover .wall-item-bottom { .opaque(1); } .wall-item-info { @@ -489,8 +489,8 @@ section { vertical-align: top; text-align: left; width: 60px; - - } + + } .wall-item-location { word-wrap: break-word; width: 50px; @@ -503,45 +503,45 @@ section { } .wall-item-content img { max-width: 700px; } .wall-item-links, - .wall-item-actions { - display: table-cell; - vertical-align: middle; - + .wall-item-actions { + display: table-cell; + vertical-align: middle; + .icon { .opaque(0.5); } .icon:hover { .opaque(1.0); - } + } } - + .wall-item-ago { padding-right: 40px; } .wall-item-name { font-weight: bold; } - + .wall-item-actions-author { float: left; width: 20em; margin-top: 0.5em; } .wall-item-actions-social { float: left; margin-top: 0.5em; a { margin-right: 3em; } } - .wall-item-actions-tools { float: right; width: 15%; + .wall-item-actions-tools { float: right; width: 15%; a { float: right; } input { float: right; } } - + } .wall-item-container.comment { .contact-photo-wrapper { margin-left: 16px; } - .contact-photo { - width: 32px; height: 32px; + .contact-photo { + width: 32px; height: 32px; } - + .contact-photo-menu-button { top: 15px !important; left: 0px !important; } .wall-item-links { padding-left: 12px; } - + .commentbox { height: 0px; overflow: hidden; @@ -551,7 +551,7 @@ section { } .transition(); } - + &:hover .commentbox { height:auto; overflow: visible; .wall-item-comment-wrapper { @@ -568,9 +568,9 @@ section { .opaque(0.5); } .contact-photo-wrapper { margin-left: 32px; } - .contact-photo { + .contact-photo { width: 16px; height: 16px; - } + } .contact-photo-menu-button { top: 15px !important; left: 15px !important; @@ -581,8 +581,8 @@ section { .wall-item-comment-wrapper { margin: 1em 2em 1em 60px; .comment-edit-photo { display: none; } - - textarea { + + textarea { height: 1em; width: 100%; font-size: 10px; color: @CommentBoxEmptyColor; border: 1px solid @CommentBoxEmptyBorderColor; @@ -593,7 +593,7 @@ section { color: @CommentBoxFullColor; border: 1px solid @CommentBoxFullBorderColor; } - + &.photo { margin: 1em 2em 1em 0px; } @@ -606,10 +606,10 @@ section { border: 1px solid @Grey5; margin-top: 10px; background-color: @JotPreviewBackgroundColor; - + .contact-photo { width: 32px; height: 32px; margin-left: 16px; /*background: url(../../../images/icons/22/user.png) no-repeat center center;*/ - } + } .contact-photo-menu-button { top: 15px !important; left: 15px !important; @@ -617,8 +617,8 @@ section { .wall-item-links { padding-left: 12px; } .wall-item-container { width: 90%; } - .tread-wrapper { - width: 90%; padding: 0; margin: 10px 0; + .tread-wrapper { + width: 90%; padding: 0; margin: 10px 0; background-color: @JotPreviewBackgroundColor; border-bottom: 0px; } @@ -664,7 +664,7 @@ section { opacity: 0.5; }*/ -.wwto { +.wwto { position: absolute !important; background: #FFFFFF; border: 2px solid @Metalic3; @@ -693,7 +693,7 @@ section { float: none; margin-right: 0px; } - + } .type-link { blockquote { @@ -733,7 +733,7 @@ blockquote.shared_content { .oembed.video { - > a.embed_video { + > a.embed_video { display: block; float: none; > div { @@ -751,45 +751,45 @@ blockquote.shared_content { .children { margin-top: 1em; .hide-comments-outer { margin-left:60px; } - + .wwto { display: none; } - + .comment-edit-preview { width: 660px; .wall-item-container { width: 610px; } } - + & .children { - + margin-left: 40px; .wall-item-container { width: 710px; } .comment-edit-preview { width: 620px; .wall-item-container { width: 620px; } } - + & .children { .wall-item-container { width: 670px; } - .comment-edit-preview { width: 580px; + .comment-edit-preview { width: 580px; .wall-item-container { width: 580px; } } - + & .children { .wall-item-container { width: 630px; } - .comment-edit-preview { width: 540px; + .comment-edit-preview { width: 540px; .wall-item-container { width: 540px; } } & .children { .wall-item-container { width: 590px; } - .comment-edit-preview { width: 500px; + .comment-edit-preview { width: 500px; .wall-item-container { width: 500px; } } - + .children { margin-left: 0px; .hide-comments-outer { margin-left: 0px; } } } - } + } } } } @@ -818,8 +818,8 @@ span[id^="showmore-wrap"] { .contact-select { position: absolute; top:64px; left:64px; display:none; } .contact-select:checked, .contact-photo:hover .contact-select { display:block; } -#contacts-actions { - position: absolute; +#contacts-actions { + position: absolute; left: 800px; width: 200px; background-color: @MenuBg; @@ -843,12 +843,12 @@ span[id^="showmore-wrap"] { #contacts-actions { left: 40px; } } -.contact-photo { +.contact-photo { width: 48px; height: 48px; img { width: 48px; height: 48px; } overflow: hidden; display: block; - } + } .contact-photo-menu-button { display: none; position: absolute; @@ -862,30 +862,30 @@ span[id^="showmore-wrap"] { height: 90px; padding-right: 10px; margin: 0 10px 10px 0px; - .contact-photo-wrapper { - float: left; + .contact-photo-wrapper { + float: left; margin-right: 10px; } - .contact-photo { + .contact-photo { width: 80px; height: 80px; img { width: 80px; height: 80px; } } .contact-photo-menu-button { left: 0px; top: 63px; - } + } } .directory-item { float: left; width: 200px; height: 200px; - .contact-photo { + .contact-photo { width: 175px; height: 175px; img { width: 175px; height: 175px; } } } .contact-name { font-weight: bold; padding-top: 15px; } -.contact-details { +.contact-details { color: @Grey3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; @@ -896,8 +896,8 @@ span[id^="showmore-wrap"] { #jot { width: 100%; - margin: 0px 2em 20px 0px; - + margin: 0px 2em 20px 0px; + .profile-jot-text { height: 1em; width: 99%; font-size: 10px; color: @CommentBoxEmptyColor; @@ -944,7 +944,7 @@ span[id^="showmore-wrap"] { border-left: 10px solid @JotPermissionLockBackgroundColor; background-color: @JotPermissionLockBackgroundColor; } - + } li.submit { float: right; @@ -990,12 +990,12 @@ span[id^="showmore-wrap"] { &:-moz-placeholder { font-weight: normal; - } - + } + &:hover { border: 1px solid @CommentBoxEmptyBorderColor } &:focus { border: 1px solid @CommentBoxEmptyBorderColor } } - + #character-counter { width: 40px; float: right; @@ -1004,7 +1004,7 @@ span[id^="showmore-wrap"] { line-height: 20px; padding-right: 20px; } - + #jot-category { border: 0px; margin: 0px; @@ -1073,7 +1073,7 @@ span[id^="showmore-wrap"] { overflow: auto; } #acl-list-content { - + } .acl-list-item { display: block; @@ -1090,7 +1090,7 @@ span[id^="showmore-wrap"] { margin: 4px; } .acl-list-item p { height: 12px; font-size: 10px; margin: 0px; padding: 2px 0px 1px; overflow: hidden;} -.acl-list-item a { +.acl-list-item a { font-size: 8px; display: block; width: 40px; @@ -1135,12 +1135,12 @@ ul.tabs { li { float: left; margin-left: 20px; - + .active { border-bottom: 1px solid @LinkVisited; } } - + } @@ -1149,7 +1149,7 @@ ul.tabs { #group-update-wrapper{ height: auto; overflow: auto; #group { - width:300px; + width:300px; float:left; margin-right:20px; } @@ -1191,13 +1191,13 @@ ul.tabs { input[type="checkbox"], input[type="radio"]{ width: auto; } - + textarea { height: 100px; } .field_help { display: block; margin-left: 200px; color: @FieldHelpColor; - + } @@ -1272,7 +1272,7 @@ ul.tabs { } #profile-edit-profile-name, #profile-edit-name, -#gender-select, +#gender-select, #profile-edit-pdesc, #profile-edit-gender, #profile-edit-dob, @@ -1297,7 +1297,7 @@ ul.tabs { height: auto; overflow: auto; border-bottom: 2px solid #cccccc; padding-bottom: 1em; - margin-bottom: 1em; + margin-bottom: 1em; } .oauthapp img { float: left; @@ -1318,11 +1318,37 @@ ul.tabs { width: 50px; float: left; } +/* videos page */ +.videos { + .video-top-wrapper { + width: 200px; float: left; + margin: 0px 10px 10px 0px; + position: relative; + + .video-js { + width: 200px!important; + height: 132px!important; + } + + .video-delete { + position: absolute; + opacity: 0; + right: 0px; + top: 0px; + transition: opacity 0.5s; + } + + &:hover .video-delete { + opacity: 1; + } + } +} + /* photo albums */ @photosize: 150px; #photo-edit-link-wrap { margin-bottom: 10px; } - + #album-edit-link { border-right: 1px solid @MenuBorder; float: left; @@ -1355,21 +1381,21 @@ ul.tabs { width:@photosize; height: @photosize; position: relative; overflow: hidden; - + img { width: @photosize; } - + .photo-top-album-name, .caption{ position: absolute; color: @Menu; background-color: @MenuBg; - + width: 100%; .shadow(0px, 5px); .transition(0.5s); bottom: -@photosize; } - + &:hover .photo-top-album-name, &:hover .caption { bottom: 0px; @@ -1389,8 +1415,8 @@ ul.tabs { background: url("../../../images/icons/22/image.png") no-repeat top left; padding-left: 23px; min-height: 22px; - padding-top: 6px; - /* a { display: block;}*/ + padding-top: 6px; + /* a { display: block;}*/ } #photo-caption { @@ -1438,14 +1464,14 @@ ul.tabs { top: 10px; left: -10px; } - .contact-photo { + .contact-photo { width: 80px; height: 80px; img { width: 80px; height: 80px; } } .contact-photo-menu-button { left: 0px; top: 63px; - } + } } /* messages */ @@ -1466,10 +1492,10 @@ ul.tabs { background-color: @MailListBackgroundColor; margin-bottom: 5px; width: 100%; height: auto; overflow: hidden; - + span { display: block; float: left; width: 20%; overflow: hidden;} - - .mail-subject { + + .mail-subject { width: 30%; padding:4px 0px 0px 4px; a { display: block; } @@ -1478,7 +1504,7 @@ ul.tabs { .mail-date { padding: 4px 4px 0px 4px; } .mail-from { padding: 4px 4px 0px 4px; } .mail-count { padding: 4px 4px 0px 4px; text-align: right;} - + .mail-delete { float: right; } } @@ -1490,7 +1516,7 @@ ul.tabs { span { float: left; overflow: hidden; padding: 4px 0px 0px 10px;} .mail-delete { float: right; .opaque(0.5);} &:hover .mail-delete { .opaque(1); } - + } /* theme screenshot */ @@ -1519,7 +1545,7 @@ footer { height: 100px; display: table-row; } font-weight: bold; background-color: #FF0000; padding: 0em 0.3em; - + } #adminpage { dl { @@ -1566,20 +1592,20 @@ footer { height: 100px; display: table-row; } } table { width:100%; - border-bottom: 1px solid #000000; + border-bottom: 1px solid #000000; margin: 5px 0px; - th { + th { text-align: left; } - td .icon { + td .icon { float: left; } - tr:hover { + tr:hover { background-color: #bbc7d7; } } - table#users img { - width: 16px; height: 16px; + table#users img { + width: 16px; height: 16px; } .selectall { text-align: right; } } From d204e2524b5e61f56f98ba8bfeda286c2fe79d6f Mon Sep 17 00:00:00 2001 From: fabrixxm Date: Sun, 24 May 2015 10:34:17 +0200 Subject: [PATCH 138/306] vier: style video delete button --- view/theme/vier/style.css | 77 +++++++++++++++++++++++++-------------- 1 file changed, 49 insertions(+), 28 deletions(-) diff --git a/view/theme/vier/style.css b/view/theme/vier/style.css index e75934c8c5..e36bad4e31 100644 --- a/view/theme/vier/style.css +++ b/view/theme/vier/style.css @@ -7,7 +7,7 @@ @import url("css/font-awesome.css") all; @import url("css/font2.css") all; -img { +img { border: 0px; } @@ -32,7 +32,7 @@ img { } .admin.linklist { - border: 0px; + border: 0px; padding: 0px; list-style: none; margin-top: 0px; @@ -135,7 +135,7 @@ img { padding: 1px; color: #999; vertical-align: text-top; -} +} .icon:hover { text-decoration: none; @@ -201,8 +201,8 @@ div.pager a { margin-left: 5px; margin-right: 5px; } - -span.pager_first a, span.pager_n a, + +span.pager_first a, span.pager_n a, span.pager_last a, span.pager_prev a, span.pager_next a, span.scroll_loader_text { color: darkgray; @@ -389,7 +389,7 @@ code { opacity: 1; } -.sidebar-group-li:hover, #sidebar-new-group:hover, #hide-forum-list:hover, +.sidebar-group-li:hover, #sidebar-new-group:hover, #hide-forum-list:hover, #sidebar-ungrouped:hover, .side-link:hover, .nets-ul li:hover, #forum-list div:hover, .nets-all:hover, .saved-search-li:hover, li.tool:hover, .admin.link:hover, aside h4 a:hover, #message-new:hover { /* background-color: #ddd; */ @@ -1466,7 +1466,7 @@ section.minimal { } #profile-jot-form #jot-title, #profile-jot-form #jot-category { - + border-radius: 5px 5px 5px 5px; font-weight: bold; height: 20px; @@ -1966,13 +1966,13 @@ ul.tabs a { margin-bottom: 2px; } -#event-notice:hover, #birthday-notice:hover, ul.tabs li .active, +#event-notice:hover, #birthday-notice:hover, ul.tabs li .active, .comment-edit-submit-wrapper .fakelink:hover { color: black; } -span.pager_current, span.pager_n a:hover, -span.pager_first a:hover, span.pager_last a:hover, +span.pager_current, span.pager_n a:hover, +span.pager_first a:hover, span.pager_last a:hover, span.pager_prev a:hover, span.pager_next a:hover, ul.tabs a:hover { border-bottom: 2px solid #244C5E; @@ -2092,7 +2092,7 @@ aside form .field label { .profile-edit-side-div { /* display: none; */ - float: right; + float: right; } /* aside div.clear { @@ -2169,9 +2169,9 @@ aside form .field label { .contact-photo-menu-button { position: relative; background-image: url("../../../images/icons/16/menu.png"); - background-position: top left; + background-position: top left; background-repeat: no-repeat; - margin: 0px 0px -16px 0px; + margin: 0px 0px -16px 0px; padding: 0px; width: 16px; height: 16px; @@ -2179,7 +2179,7 @@ aside form .field label { overflow: hidden; text-indent: 40px; display: none; - + } .contact-photo-menu { width: 11em; @@ -2194,13 +2194,13 @@ aside form .field label { } .contact-photo-menu ul { margin:0px; padding: 0px; list-style: none } .contact-photo-menu li a { - display: block; - padding: 5px 10px; + display: block; + padding: 5px 10px; color: #2d2d2d; text-decoration: none; } .contact-photo-menu li a:hover { - background-color: #bdcdd4; + background-color: #bdcdd4; } /* page footer */ @@ -2237,7 +2237,7 @@ blockquote { } .contact-block-textdiv { width: 150px; height: 34px; float: left; } -#contact-block-end { clear: both; } +#contact-block-end { clear: both; } #group-edit-wrapper { margin-bottom: 10px; @@ -2426,7 +2426,7 @@ a.mail-list-link { clear: both; } - + .calendar { font-family: Courier, monospace; } @@ -2574,14 +2574,14 @@ a.mail-list-link { float: left; margin-top: 15px; margin-right: 15px; - width: 200px; height: 200px; - overflow: hidden; + width: 200px; height: 200px; + overflow: hidden; } .photo-top-album-name { width: 100%; min-height: 2em; - position: absolute; - bottom: 0px; + position: absolute; + bottom: 0px; padding: 0px 3px; padding-top: 0.5em; background-color: rgb(255, 255, 255); @@ -2612,15 +2612,15 @@ a.mail-list-link { .menu-profile-list-item{ padding-left: 5px; vertical-align: middle; - } -.menu-profile-list-item:hover{ + } +.menu-profile-list-item:hover{ text-decoration: none; } .autocomplete { width: 350px; - color: black; - border: 1px solid rgb(210, 210, 210); + color: black; + border: 1px solid rgb(210, 210, 210); background-color: white; cursor: pointer; text-align: left; @@ -2628,7 +2628,7 @@ a.mail-list-link { overflow: auto; display: block; background-position: initial initial; - background-repeat: initial initial; + background-repeat: initial initial; } .mail-list-wrapper { background-color: #f6f7f8; @@ -2828,3 +2828,24 @@ a.mail-list-link { .profile-view-actions{ float:right; } +/* videos page */ +.videos .video-top-wrapper { + width: 300px; + float: left; + margin: 0px 10px 10px 0px; + position: relative; +} +.videos .video-top-wrapper .video-js { + width: 300px!important; + height: 232px!important; +} +.videos .video-top-wrapper .video-delete { + position: absolute; + opacity: 0; + right: 0px; + top: 0px; + transition: opacity 0.5s; +} +.videos .video-top-wrapper:hover .video-delete { + opacity: 1; +} From 8990a22dc066d91e1ca5613d1365a855677b4bdc Mon Sep 17 00:00:00 2001 From: fabrixxm Date: Sun, 24 May 2015 10:35:55 +0200 Subject: [PATCH 139/306] duepuntozer: style video delete button --- view/theme/duepuntozero/style.css | 140 +++++++++++++++++------------- 1 file changed, 81 insertions(+), 59 deletions(-) diff --git a/view/theme/duepuntozero/style.css b/view/theme/duepuntozero/style.css index 024e63f5f6..34d7f1c25c 100644 --- a/view/theme/duepuntozero/style.css +++ b/view/theme/duepuntozero/style.css @@ -22,7 +22,7 @@ a:hover {text-decoration: underline; } input { border: 1px solid #666666; -moz-border-radius: 3px; - border-radius: 3px; + border-radius: 3px; padding: 3px; } @@ -50,7 +50,7 @@ code { background: #EEE; color: #444; padding: 10px; - margin-top: 20px; + margin-top: 20px; } blockquote { @@ -91,7 +91,7 @@ nav { display: block; margin: 0px 10%; border-bottom: 1px solid #babdb6; - position: relative; + position: relative; } nav #site-location { color: #888a85; @@ -151,9 +151,9 @@ nav #banner #logo-text a:hover { text-decoration: none; } border: 1px solid #babdb6; border-bottom: 0px; background-color: #aec0d3; - color: #565854; + color: #565854; -moz-border-radius: 3px 3px 0px 0px; - border-radius: 3px 3px 0px 0px; + border-radius: 3px 3px 0px 0px; } nav .nav-link { float: right; @@ -173,7 +173,7 @@ nav .nav-link { .nav-ajax-left { font-size: 0.8em; float: left; - margin-top: 62px; + margin-top: 62px; } @@ -228,12 +228,12 @@ section { background-position: top right; background-repeat: no-repeat; min-height: 112px; - + } .tabs { height: 27px; background-image: url(head.jpg); - background-repeat: repeat-x; + background-repeat: repeat-x; background-position: 0px -20px; border-bottom: 1px solid #babdb6; padding:0px; @@ -248,7 +248,7 @@ section { } .tab.active { font-weight: bold; - + } @@ -278,14 +278,14 @@ div.wall-item-content-wrapper.shiny { } /* from default */ -#jot-perms-icon, +#jot-perms-icon, #profile-location, #profile-nolocation, -#profile-youtube, -#profile-video, +#profile-youtube, +#profile-video, #profile-audio, #profile-link, -#profile-title, +#profile-title, #wall-image-upload, #wall-file-upload, #profile-upload-wrapper, @@ -313,13 +313,13 @@ div.wall-item-content-wrapper.shiny { #jot-category::-webkit-input-placeholder{font-weight: normal;} #jot-title:-moz-placeholder{font-weight: normal;} #jot-category:-moz-placeholder{font-weight: normal;} - - + + #jot-title:hover, #jot-title:focus, #jot-category:hover, #jot-category:focus { - border: 1px solid #cccccc; + border: 1px solid #cccccc; } .jothidden { display:none; } @@ -343,7 +343,7 @@ div.wall-item-content-wrapper.shiny { .group-selected, .nets-selected, .fileas-selected, .categories-selected { padding: 3px; -moz-border-radius: 3px; - border-radius: 3px; + border-radius: 3px; border: 1px solid #CCCCCC; background: #F8F8F8; font-weight: bold; @@ -352,7 +352,7 @@ div.wall-item-content-wrapper.shiny { .settings-widget .selected { padding: 3px; -moz-border-radius: 3px; - border-radius: 3px; + border-radius: 3px; border: 1px solid #CCCCCC; background: #F8F8F8; font-weight: bold; @@ -813,7 +813,7 @@ input#dfrn-url { clear: left; color: #666666; display: block; - margin-bottom: 20px + margin-bottom: 20px } #profile-edit-profile-name-end, @@ -944,7 +944,7 @@ input#dfrn-url { border: 1px solid #CCC; position: relative; -moz-border-radius: 3px; - border-radius: 3px; + border-radius: 3px; } .tread-wrapper .tread-wrapper { @@ -987,7 +987,7 @@ input#dfrn-url { display: block; position: absolute; background-image: url("photo-menu.jpg"); - background-position: top left; + background-position: top left; background-repeat: no-repeat; margin: 0px; padding: 0px; width: 16px; @@ -996,7 +996,7 @@ input#dfrn-url { overflow: hidden; text-indent: 40px; display: none; - + } .wall-item-photo-menu { width: auto; @@ -1047,7 +1047,7 @@ input#dfrn-url { /*margin-top: 10px;*/ left: 105px; position: absolute; - top: 1px; + top: 1px; } .comment .wall-item-lock { left: 65px; @@ -1100,11 +1100,11 @@ input#dfrn-url { } .star-item { margin-left: 10px; - float: left; + float: left; } .tag-item { margin-left: 10px; - float: left; + float: left; } .filer-item { @@ -1141,7 +1141,7 @@ input#dfrn-url { border: none; } .comment .wall-item-photo { - width: 50px !important; + width: 50px !important; height: 50px !important; } .wall-item-content { @@ -1240,7 +1240,7 @@ blockquote.shared_content { .comment .wall-item-tools { background:none; -} +} .comment-edit-wrapper { margin-top: 15px; @@ -1270,7 +1270,7 @@ blockquote.shared_content { float: left; margin-top: 10px; -moz-border-radius: 3px; - border-radius: 3px; + border-radius: 3px; border: 1px solid #cccccc; padding: 3px 1px 1px 3px; } @@ -1676,7 +1676,7 @@ blockquote.shared_content { .contact-photo-menu-button { position: absolute; background-image: url("photo-menu.jpg"); - background-position: top left; + background-position: top left; background-repeat: no-repeat; margin: 0px; padding: 0px; width: 16px; @@ -1685,7 +1685,7 @@ blockquote.shared_content { overflow: hidden; text-indent: 40px; display: none; - + } .contact-photo-menu { width: auto; @@ -1723,7 +1723,7 @@ blockquote.shared_content { border: 1px solid #cccccc; padding: 3px 0px 0px 5px; -moz-border-radius: 3px; - border-radius: 3px; + border-radius: 3px; } @@ -1777,7 +1777,7 @@ blockquote.shared_content { overflow: auto; } #acl-list-content { - + } .acl-list-item { display: block; @@ -1794,7 +1794,7 @@ blockquote.shared_content { margin: 4px; } .acl-list-item p { height: 12px; font-size: 10px; margin: 0px; padding: 2px 0px 1px; overflow: hidden;} -.acl-list-item a { +.acl-list-item a { font-size: 8px; display: block; width: 40px; @@ -2111,15 +2111,15 @@ aside input[type='text'] { margin-top: 15px; margin-right: 15px; margin-left: 15px; -/* width: 200px; height: 200px; - overflow: hidden; +/* width: 200px; height: 200px; + overflow: hidden; position: relative; */ } .photo-album-image-wrapper .caption { - display: none; + display: none; width: 100%; /* position: absolute; */ - bottom: 0px; + bottom: 0px; padding: 0.5em 0.5em 0px 0.5em; background-color: rgba(245, 245, 255, 0.8); border-bottom: 2px solid #CCC; @@ -2141,14 +2141,14 @@ aside input[type='text'] { margin-right: 15px; margin-left: 15px; margin-bottom: 15px; -/* width: 200px; height: 200px; +/* width: 200px; height: 200px; overflow: hidden; */ } .photo-top-album-name { width: 100%; min-height: 2em; /* position: absolute; */ - bottom: 0px; + bottom: 0px; padding: 0px 3px; padding-top: 0.5em; background-color: rgb(255, 255, 255); @@ -2236,7 +2236,7 @@ aside input[type='text'] { } #profile-jot-banner-end { - /* clear: both; */ + /* clear: both; */ } #photos-upload-select-files-text { @@ -2464,7 +2464,7 @@ aside input[type='text'] { } /* end from default */ - + .fn { padding: 0px 0px 5px 12px; @@ -2483,7 +2483,7 @@ aside input[type='text'] { #birthday-title { float: left; - font-weight: bold; + font-weight: bold; } #birthday-adjust { @@ -2607,7 +2607,7 @@ aside input[type='text'] { clear: both; } - + .calendar { font-family: Courier, monospace; } @@ -2791,7 +2791,7 @@ aside input[type='text'] { #netsearch-box { - margin-top: 20px; + margin-top: 20px; } #netsearch-box #search-submit { @@ -2898,7 +2898,7 @@ aside input[type='text'] { .settings-heading { border-bottom: 1px solid #babdb6; } - + /** * Form fields @@ -2924,7 +2924,7 @@ aside input[type='text'] { display: block; margin-left: 200px; color: #666666; - + } @@ -2972,7 +2972,7 @@ aside input[type='text'] { font-weight: bold; background-color: #FF0000; padding: 0em 0.3em; - + } #adminpage dl { clear: left; @@ -3027,7 +3027,7 @@ aside input[type='text'] { /* * UPDATE */ -.popup { +.popup { width: 100%; height: 100%; top:0px; left:0px; position: absolute; @@ -3048,7 +3048,7 @@ aside input[type='text'] { border: 4px solid #000000; background-color: #FFFFFF; } -.popup .panel .panel_text { display: block; overflow: auto; height: 80%; } +.popup .panel .panel_text { display: block; overflow: auto; height: 80%; } .popup .panel .panel_in { width: 100%; height: 100%; position: relative; } .popup .panel .panel_actions { width: 100%; bottom: 4px; left: 0px; position: absolute; } .panel_text .progress { width: 50%; overflow: hidden; height: auto; border: 1px solid #cccccc; margin-bottom: 5px} @@ -3061,7 +3061,7 @@ aside input[type='text'] { height: auto; overflow: auto; border-bottom: 2px solid #cccccc; padding-bottom: 1em; - margin-bottom: 1em; + margin-bottom: 1em; } .oauthapp img { float: left; @@ -3365,7 +3365,7 @@ ul.menu-popup { } #recip { - + } .autocomplete-w1 { background: #ffffff; no-repeat bottom right; position:absolute; top:0px; left:0px; margin:6px 0 0 6px; /* IE6 fix: */ _background:none; _margin:1px 0 0 0; } .autocomplete { color:#000; border:1px solid #999; background:#FFF; cursor:default; text-align:left; max-height:350px; overflow:auto; margin:-6px 6px 6px -6px; /* IE6 specific: */ _height:350px; _margin:0; _overflow-x:hidden; } @@ -3400,10 +3400,10 @@ ul.menu-popup { } @media all and (max-width: 760px) { body { background-image: none; } - nav, aside, section, footer { - margin: 0px; - float: none; - position: relative; + nav, aside, section, footer { + margin: 0px; + float: none; + position: relative; width: 100%; padding: 0.5em; height: auto; @@ -3416,11 +3416,11 @@ ul.menu-popup { aside { overflow: hidden; min-height: 0; height: 1em;} aside:hover, aside:focus { height: auto; } - nav .nav-link { + nav .nav-link { float: left; width: 23%; min-width: 100px; - height: 15px; + height: 15px; display: block; margin: 0.4em 2px 0 0; @@ -3431,11 +3431,11 @@ ul.menu-popup { background-color: rgb(174, 192,211)!important; } .nav-commlink.selected, - .nav-commlink { + .nav-commlink { border-bottom: 0px; padding: 6px 3px; min-width: 100px; - float: left; + float: left; margin-top: 0.4em; width: 23%; bottom: auto; @@ -3446,3 +3446,25 @@ ul.menu-popup { ul.menu-popup { left: 0px; top 20px; } } + +/* videos page */ +.videos .video-top-wrapper { + width: 300px; + float: left; + margin: 0px 10px 10px 0px; + position: relative; +} +.videos .video-top-wrapper .video-js { + width: 300px!important; + height: 232px!important; +} +.videos .video-top-wrapper .video-delete { + position: absolute; + opacity: 0; + right: 0px; + top: 0px; + transition: opacity 0.5s; +} +.videos .video-top-wrapper:hover .video-delete { + opacity: 1; +} From 258612d20c799f316f9787d953302ddb8fe86c85 Mon Sep 17 00:00:00 2001 From: fabrixxm Date: Sun, 24 May 2015 10:39:36 +0200 Subject: [PATCH 140/306] update messages.po --- util/messages.po | 328 ++++++++++++++++++++++++----------------------- 1 file changed, 168 insertions(+), 160 deletions(-) diff --git a/util/messages.po b/util/messages.po index 8303b778be..bf91a8fa58 100644 --- a/util/messages.po +++ b/util/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: 3.4.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-05-21 10:43+0200\n" +"POT-Creation-Date: 2015-05-24 10:38+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -29,9 +29,9 @@ msgstr "" #: ../../mod/photos.php:1084 ../../mod/photos.php:1203 #: ../../mod/photos.php:1514 ../../mod/photos.php:1565 #: ../../mod/photos.php:1609 ../../mod/photos.php:1697 -#: ../../mod/invite.php:140 ../../mod/events.php:491 ../../mod/mood.php:137 +#: ../../mod/invite.php:140 ../../mod/events.php:500 ../../mod/mood.php:137 #: ../../mod/message.php:335 ../../mod/message.php:564 -#: ../../mod/profiles.php:686 ../../mod/install.php:248 +#: ../../mod/profiles.php:682 ../../mod/install.php:248 #: ../../mod/install.php:286 ../../mod/crepair.php:190 #: ../../mod/content.php:710 ../../mod/poke.php:199 ../../mod/localtime.php:45 msgid "Submit" @@ -233,7 +233,7 @@ msgid "Your photos" msgstr "" #: ../../view/theme/diabook/theme.php:127 ../../boot.php:2156 -#: ../../include/nav.php:80 ../../mod/events.php:382 +#: ../../include/nav.php:80 ../../mod/events.php:385 msgid "Events" msgstr "" @@ -260,7 +260,7 @@ msgid "event" msgstr "" #: ../../view/theme/diabook/theme.php:466 -#: ../../view/theme/diabook/theme.php:475 ../../include/diaspora.php:2060 +#: ../../view/theme/diabook/theme.php:475 ../../include/diaspora.php:2061 #: ../../include/conversation.php:121 ../../include/conversation.php:130 #: ../../include/conversation.php:248 ../../include/conversation.php:257 #: ../../mod/like.php:149 ../../mod/like.php:319 ../../mod/subthread.php:87 @@ -268,14 +268,14 @@ msgstr "" msgid "status" msgstr "" -#: ../../view/theme/diabook/theme.php:471 ../../include/diaspora.php:2060 +#: ../../view/theme/diabook/theme.php:471 ../../include/diaspora.php:2061 #: ../../include/conversation.php:126 ../../include/conversation.php:253 #: ../../include/text.php:1995 ../../mod/like.php:149 #: ../../mod/subthread.php:87 ../../mod/tagger.php:62 msgid "photo" msgstr "" -#: ../../view/theme/diabook/theme.php:480 ../../include/diaspora.php:2076 +#: ../../view/theme/diabook/theme.php:480 ../../include/diaspora.php:2077 #: ../../include/conversation.php:137 ../../mod/like.php:166 #, php-format msgid "%1$s likes %2$s's %3$s" @@ -375,7 +375,7 @@ msgstr "" msgid "Permission denied" msgstr "" -#: ../../index.php:382 ../../include/items.php:4838 ../../mod/attach.php:33 +#: ../../index.php:382 ../../include/items.php:4851 ../../mod/attach.php:33 #: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33 #: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103 #: ../../mod/group.php:19 ../../mod/delegate.php:12 @@ -389,9 +389,9 @@ msgstr "" #: ../../mod/notes.php:20 ../../mod/network.php:4 ../../mod/photos.php:134 #: ../../mod/photos.php:1050 ../../mod/follow.php:9 ../../mod/follow.php:39 #: ../../mod/follow.php:78 ../../mod/uimport.php:23 ../../mod/invite.php:15 -#: ../../mod/invite.php:101 ../../mod/events.php:152 ../../mod/mood.php:114 +#: ../../mod/invite.php:101 ../../mod/events.php:155 ../../mod/mood.php:114 #: ../../mod/message.php:38 ../../mod/message.php:174 -#: ../../mod/profiles.php:165 ../../mod/profiles.php:618 +#: ../../mod/profiles.php:165 ../../mod/profiles.php:614 #: ../../mod/install.php:151 ../../mod/crepair.php:119 ../../mod/poke.php:135 #: ../../mod/display.php:501 ../../mod/dfrn_confirm.php:55 #: ../../mod/item.php:169 ../../mod/item.php:185 @@ -415,8 +415,9 @@ msgstr "" msgid "Comment" msgstr "" -#: ../../boot.php:751 ../../include/contact_widgets.php:205 -#: ../../object/Item.php:393 ../../mod/content.php:606 +#: ../../boot.php:751 ../../include/items.php:4962 +#: ../../include/contact_widgets.php:205 ../../object/Item.php:393 +#: ../../mod/content.php:606 msgid "show more" msgstr "" @@ -515,28 +516,28 @@ msgstr "" msgid "Manage/edit profiles" msgstr "" -#: ../../boot.php:1600 ../../boot.php:1626 ../../mod/profiles.php:804 +#: ../../boot.php:1600 ../../boot.php:1626 ../../mod/profiles.php:800 msgid "Change profile photo" msgstr "" -#: ../../boot.php:1601 ../../mod/profiles.php:805 +#: ../../boot.php:1601 ../../mod/profiles.php:801 msgid "Create New Profile" msgstr "" -#: ../../boot.php:1611 ../../mod/profiles.php:816 +#: ../../boot.php:1611 ../../mod/profiles.php:812 msgid "Profile Image" msgstr "" -#: ../../boot.php:1614 ../../mod/profiles.php:818 +#: ../../boot.php:1614 ../../mod/profiles.php:814 msgid "visible to everybody" msgstr "" -#: ../../boot.php:1615 ../../mod/profiles.php:819 +#: ../../boot.php:1615 ../../mod/profiles.php:815 msgid "Edit visibility" msgstr "" #: ../../boot.php:1637 ../../include/event.php:42 -#: ../../include/bb2diaspora.php:155 ../../mod/events.php:483 +#: ../../include/bb2diaspora.php:155 ../../mod/events.php:492 #: ../../mod/directory.php:136 msgid "Location:" msgstr "" @@ -803,12 +804,12 @@ msgstr "" msgid "Ability to mute notifications for a thread" msgstr "" -#: ../../include/items.php:2330 ../../include/datetime.php:477 +#: ../../include/items.php:2330 ../../include/datetime.php:457 #, php-format msgid "%s's birthday" msgstr "" -#: ../../include/items.php:2331 ../../include/datetime.php:478 +#: ../../include/items.php:2331 ../../include/datetime.php:458 #, php-format msgid "Happy Birthday %s" msgstr "" @@ -839,21 +840,22 @@ msgstr "" #: ../../mod/contacts.php:411 ../../mod/register.php:233 #: ../../mod/dfrn_request.php:845 ../../mod/api.php:105 #: ../../mod/suggest.php:29 ../../mod/follow.php:54 ../../mod/message.php:209 -#: ../../mod/profiles.php:661 ../../mod/profiles.php:664 +#: ../../mod/profiles.php:657 ../../mod/profiles.php:660 msgid "Yes" msgstr "" #: ../../include/items.php:4686 ../../include/conversation.php:1128 #: ../../mod/settings.php:622 ../../mod/settings.php:648 -#: ../../mod/contacts.php:414 ../../mod/editpost.php:148 -#: ../../mod/dfrn_request.php:859 ../../mod/fbrowser.php:81 -#: ../../mod/fbrowser.php:116 ../../mod/suggest.php:32 -#: ../../mod/photos.php:203 ../../mod/photos.php:292 ../../mod/follow.php:65 -#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/message.php:212 +#: ../../mod/contacts.php:414 ../../mod/videos.php:116 +#: ../../mod/editpost.php:148 ../../mod/dfrn_request.php:859 +#: ../../mod/fbrowser.php:81 ../../mod/fbrowser.php:116 +#: ../../mod/suggest.php:32 ../../mod/photos.php:203 ../../mod/photos.php:292 +#: ../../mod/follow.php:65 ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 +#: ../../mod/message.php:212 msgid "Cancel" msgstr "" -#: ../../include/items.php:4904 +#: ../../include/items.php:4956 msgid "Archives" msgstr "" @@ -1349,11 +1351,11 @@ msgstr "" msgid "for %1$d %2$s" msgstr "" -#: ../../include/profile_advanced.php:46 ../../mod/profiles.php:714 +#: ../../include/profile_advanced.php:46 ../../mod/profiles.php:710 msgid "Sexual Preference:" msgstr "" -#: ../../include/profile_advanced.php:50 ../../mod/profiles.php:716 +#: ../../include/profile_advanced.php:50 ../../mod/profiles.php:712 msgid "Hometown:" msgstr "" @@ -1361,7 +1363,7 @@ msgstr "" msgid "Tags:" msgstr "" -#: ../../include/profile_advanced.php:54 ../../mod/profiles.php:717 +#: ../../include/profile_advanced.php:54 ../../mod/profiles.php:713 msgid "Political Views:" msgstr "" @@ -1373,11 +1375,11 @@ msgstr "" msgid "Hobbies/Interests:" msgstr "" -#: ../../include/profile_advanced.php:62 ../../mod/profiles.php:721 +#: ../../include/profile_advanced.php:62 ../../mod/profiles.php:717 msgid "Likes:" msgstr "" -#: ../../include/profile_advanced.php:64 ../../mod/profiles.php:722 +#: ../../include/profile_advanced.php:64 ../../mod/profiles.php:718 msgid "Dislikes:" msgstr "" @@ -1783,71 +1785,75 @@ msgstr "" msgid "Miscellaneous" msgstr "" -#: ../../include/datetime.php:153 ../../include/datetime.php:290 -msgid "year" +#: ../../include/datetime.php:141 +msgid "YYYY-MM-DD or MM-DD" msgstr "" -#: ../../include/datetime.php:158 ../../include/datetime.php:291 -msgid "month" -msgstr "" - -#: ../../include/datetime.php:163 ../../include/datetime.php:293 -msgid "day" -msgstr "" - -#: ../../include/datetime.php:276 +#: ../../include/datetime.php:256 msgid "never" msgstr "" -#: ../../include/datetime.php:282 +#: ../../include/datetime.php:262 msgid "less than a second ago" msgstr "" -#: ../../include/datetime.php:290 +#: ../../include/datetime.php:270 +msgid "year" +msgstr "" + +#: ../../include/datetime.php:270 msgid "years" msgstr "" -#: ../../include/datetime.php:291 +#: ../../include/datetime.php:271 +msgid "month" +msgstr "" + +#: ../../include/datetime.php:271 msgid "months" msgstr "" -#: ../../include/datetime.php:292 +#: ../../include/datetime.php:272 msgid "week" msgstr "" -#: ../../include/datetime.php:292 +#: ../../include/datetime.php:272 msgid "weeks" msgstr "" -#: ../../include/datetime.php:293 +#: ../../include/datetime.php:273 +msgid "day" +msgstr "" + +#: ../../include/datetime.php:273 msgid "days" msgstr "" -#: ../../include/datetime.php:294 +#: ../../include/datetime.php:274 msgid "hour" msgstr "" -#: ../../include/datetime.php:294 +#: ../../include/datetime.php:274 msgid "hours" msgstr "" -#: ../../include/datetime.php:295 +#: ../../include/datetime.php:275 msgid "minute" msgstr "" -#: ../../include/datetime.php:295 +#: ../../include/datetime.php:275 msgid "minutes" msgstr "" -#: ../../include/datetime.php:296 +#: ../../include/datetime.php:276 msgid "second" msgstr "" -#: ../../include/datetime.php:296 +#: ../../include/datetime.php:276 msgid "seconds" msgstr "" -#: ../../include/datetime.php:305 +#: ../../include/datetime.php:285 #, php-format msgid "%1$d %2$s ago" msgstr "" @@ -1986,7 +1992,7 @@ msgstr "" msgid "Sharing notification from Diaspora network" msgstr "" -#: ../../include/diaspora.php:2493 +#: ../../include/diaspora.php:2494 msgid "Attachments:" msgstr "" @@ -2261,7 +2267,7 @@ msgstr "" #: ../../include/conversation.php:1125 ../../object/Item.php:690 #: ../../mod/editpost.php:145 ../../mod/photos.php:1566 #: ../../mod/photos.php:1610 ../../mod/photos.php:1698 -#: ../../mod/events.php:489 ../../mod/content.php:719 +#: ../../mod/events.php:498 ../../mod/content.php:719 msgid "Preview" msgstr "" @@ -2533,7 +2539,7 @@ msgstr "" msgid "December" msgstr "" -#: ../../include/text.php:1424 ../../mod/videos.php:301 +#: ../../include/text.php:1424 ../../mod/videos.php:368 msgid "View Video" msgstr "" @@ -2546,7 +2552,7 @@ msgid "Click to open/close" msgstr "" #: ../../include/text.php:1674 ../../include/text.php:1684 -#: ../../mod/events.php:347 +#: ../../mod/events.php:350 msgid "link to source" msgstr "" @@ -3868,8 +3874,8 @@ msgstr "" #: ../../mod/settings.php:1108 ../../mod/settings.php:1109 #: ../../mod/settings.php:1110 ../../mod/register.php:234 #: ../../mod/dfrn_request.php:845 ../../mod/api.php:106 -#: ../../mod/follow.php:54 ../../mod/profiles.php:661 -#: ../../mod/profiles.php:665 +#: ../../mod/follow.php:54 ../../mod/profiles.php:657 +#: ../../mod/profiles.php:661 msgid "No" msgstr "" @@ -4643,30 +4649,38 @@ msgstr "" msgid "Tips for New Members" msgstr "" -#: ../../mod/videos.php:115 ../../mod/dfrn_request.php:777 +#: ../../mod/videos.php:108 +msgid "Do you really want to delete this video?" +msgstr "" + +#: ../../mod/videos.php:113 +msgid "Delete Video" +msgstr "" + +#: ../../mod/videos.php:182 ../../mod/dfrn_request.php:777 #: ../../mod/viewcontacts.php:19 ../../mod/photos.php:920 #: ../../mod/search.php:89 ../../mod/community.php:18 #: ../../mod/display.php:214 ../../mod/directory.php:33 msgid "Public access denied." msgstr "" -#: ../../mod/videos.php:125 +#: ../../mod/videos.php:192 msgid "No videos selected" msgstr "" -#: ../../mod/videos.php:226 ../../mod/photos.php:1031 +#: ../../mod/videos.php:293 ../../mod/photos.php:1031 msgid "Access to this item is restricted." msgstr "" -#: ../../mod/videos.php:308 ../../mod/photos.php:1808 +#: ../../mod/videos.php:375 ../../mod/photos.php:1808 msgid "View Album" msgstr "" -#: ../../mod/videos.php:317 +#: ../../mod/videos.php:384 msgid "Recent Videos" msgstr "" -#: ../../mod/videos.php:319 +#: ../../mod/videos.php:386 msgid "Upload New Videos" msgstr "" @@ -6642,72 +6656,67 @@ msgstr "" msgid "is interested in:" msgstr "" -#: ../../mod/events.php:68 ../../mod/events.php:70 +#: ../../mod/events.php:71 ../../mod/events.php:73 msgid "Event title and start time are required." msgstr "" -#: ../../mod/events.php:303 +#: ../../mod/events.php:306 msgid "l, F j" msgstr "" -#: ../../mod/events.php:325 +#: ../../mod/events.php:328 msgid "Edit event" msgstr "" -#: ../../mod/events.php:383 +#: ../../mod/events.php:386 msgid "Create New Event" msgstr "" -#: ../../mod/events.php:384 +#: ../../mod/events.php:387 msgid "Previous" msgstr "" -#: ../../mod/events.php:385 ../../mod/install.php:207 +#: ../../mod/events.php:388 ../../mod/install.php:207 msgid "Next" msgstr "" -#: ../../mod/events.php:458 -msgid "hour:minute" -msgstr "" - -#: ../../mod/events.php:468 +#: ../../mod/events.php:480 msgid "Event details" msgstr "" -#: ../../mod/events.php:469 -#, php-format -msgid "Format is %s %s. Starting date and Title are required." +#: ../../mod/events.php:481 +msgid "Starting date and Title are required." msgstr "" -#: ../../mod/events.php:471 +#: ../../mod/events.php:482 msgid "Event Starts:" msgstr "" -#: ../../mod/events.php:471 ../../mod/events.php:485 +#: ../../mod/events.php:482 ../../mod/events.php:494 msgid "Required" msgstr "" -#: ../../mod/events.php:474 +#: ../../mod/events.php:484 msgid "Finish date/time is not known or not relevant" msgstr "" -#: ../../mod/events.php:476 +#: ../../mod/events.php:486 msgid "Event Finishes:" msgstr "" -#: ../../mod/events.php:479 +#: ../../mod/events.php:488 msgid "Adjust for viewer timezone" msgstr "" -#: ../../mod/events.php:481 +#: ../../mod/events.php:490 msgid "Description:" msgstr "" -#: ../../mod/events.php:485 +#: ../../mod/events.php:494 msgid "Title:" msgstr "" -#: ../../mod/events.php:487 +#: ../../mod/events.php:496 msgid "Share this event" msgstr "" @@ -6842,7 +6851,7 @@ msgid "Not available." msgstr "" #: ../../mod/profiles.php:18 ../../mod/profiles.php:133 -#: ../../mod/profiles.php:179 ../../mod/profiles.php:630 +#: ../../mod/profiles.php:179 ../../mod/profiles.php:626 #: ../../mod/dfrn_confirm.php:64 msgid "Profile not found." msgstr "" @@ -6867,278 +6876,277 @@ msgstr "" msgid "Profile Name is required." msgstr "" -#: ../../mod/profiles.php:340 +#: ../../mod/profiles.php:336 msgid "Marital Status" msgstr "" -#: ../../mod/profiles.php:344 +#: ../../mod/profiles.php:340 msgid "Romantic Partner" msgstr "" -#: ../../mod/profiles.php:348 +#: ../../mod/profiles.php:344 msgid "Likes" msgstr "" -#: ../../mod/profiles.php:352 +#: ../../mod/profiles.php:348 msgid "Dislikes" msgstr "" -#: ../../mod/profiles.php:356 +#: ../../mod/profiles.php:352 msgid "Work/Employment" msgstr "" -#: ../../mod/profiles.php:359 +#: ../../mod/profiles.php:355 msgid "Religion" msgstr "" -#: ../../mod/profiles.php:363 +#: ../../mod/profiles.php:359 msgid "Political Views" msgstr "" -#: ../../mod/profiles.php:367 +#: ../../mod/profiles.php:363 msgid "Gender" msgstr "" -#: ../../mod/profiles.php:371 +#: ../../mod/profiles.php:367 msgid "Sexual Preference" msgstr "" -#: ../../mod/profiles.php:375 +#: ../../mod/profiles.php:371 msgid "Homepage" msgstr "" -#: ../../mod/profiles.php:379 ../../mod/profiles.php:698 +#: ../../mod/profiles.php:375 ../../mod/profiles.php:694 msgid "Interests" msgstr "" -#: ../../mod/profiles.php:383 +#: ../../mod/profiles.php:379 msgid "Address" msgstr "" -#: ../../mod/profiles.php:390 ../../mod/profiles.php:694 +#: ../../mod/profiles.php:386 ../../mod/profiles.php:690 msgid "Location" msgstr "" -#: ../../mod/profiles.php:473 +#: ../../mod/profiles.php:469 msgid "Profile updated." msgstr "" -#: ../../mod/profiles.php:568 +#: ../../mod/profiles.php:564 msgid " and " msgstr "" -#: ../../mod/profiles.php:576 +#: ../../mod/profiles.php:572 msgid "public profile" msgstr "" -#: ../../mod/profiles.php:579 +#: ../../mod/profiles.php:575 #, php-format msgid "%1$s changed %2$s to “%3$s”" msgstr "" -#: ../../mod/profiles.php:580 +#: ../../mod/profiles.php:576 #, php-format msgid " - Visit %1$s's %2$s" msgstr "" -#: ../../mod/profiles.php:583 +#: ../../mod/profiles.php:579 #, php-format msgid "%1$s has an updated %2$s, changing %3$s." msgstr "" -#: ../../mod/profiles.php:658 +#: ../../mod/profiles.php:654 msgid "Hide contacts and friends:" msgstr "" -#: ../../mod/profiles.php:663 +#: ../../mod/profiles.php:659 msgid "Hide your contact/friend list from viewers of this profile?" msgstr "" -#: ../../mod/profiles.php:685 +#: ../../mod/profiles.php:681 msgid "Edit Profile Details" msgstr "" -#: ../../mod/profiles.php:687 +#: ../../mod/profiles.php:683 msgid "Change Profile Photo" msgstr "" -#: ../../mod/profiles.php:688 +#: ../../mod/profiles.php:684 msgid "View this profile" msgstr "" -#: ../../mod/profiles.php:689 +#: ../../mod/profiles.php:685 msgid "Create a new profile using these settings" msgstr "" -#: ../../mod/profiles.php:690 +#: ../../mod/profiles.php:686 msgid "Clone this profile" msgstr "" -#: ../../mod/profiles.php:691 +#: ../../mod/profiles.php:687 msgid "Delete this profile" msgstr "" -#: ../../mod/profiles.php:692 +#: ../../mod/profiles.php:688 msgid "Basic information" msgstr "" -#: ../../mod/profiles.php:693 +#: ../../mod/profiles.php:689 msgid "Profile picture" msgstr "" -#: ../../mod/profiles.php:695 +#: ../../mod/profiles.php:691 msgid "Preferences" msgstr "" -#: ../../mod/profiles.php:696 +#: ../../mod/profiles.php:692 msgid "Status information" msgstr "" -#: ../../mod/profiles.php:697 +#: ../../mod/profiles.php:693 msgid "Additional information" msgstr "" -#: ../../mod/profiles.php:699 ../../mod/newmember.php:36 +#: ../../mod/profiles.php:695 ../../mod/newmember.php:36 #: ../../mod/profile_photo.php:244 msgid "Upload Profile Photo" msgstr "" -#: ../../mod/profiles.php:700 +#: ../../mod/profiles.php:696 msgid "Profile Name:" msgstr "" -#: ../../mod/profiles.php:701 +#: ../../mod/profiles.php:697 msgid "Your Full Name:" msgstr "" -#: ../../mod/profiles.php:702 +#: ../../mod/profiles.php:698 msgid "Title/Description:" msgstr "" -#: ../../mod/profiles.php:703 +#: ../../mod/profiles.php:699 msgid "Your Gender:" msgstr "" -#: ../../mod/profiles.php:704 -#, php-format -msgid "Birthday (%s):" +#: ../../mod/profiles.php:700 +msgid "Birthday :" msgstr "" -#: ../../mod/profiles.php:705 +#: ../../mod/profiles.php:701 msgid "Street Address:" msgstr "" -#: ../../mod/profiles.php:706 +#: ../../mod/profiles.php:702 msgid "Locality/City:" msgstr "" -#: ../../mod/profiles.php:707 +#: ../../mod/profiles.php:703 msgid "Postal/Zip Code:" msgstr "" -#: ../../mod/profiles.php:708 +#: ../../mod/profiles.php:704 msgid "Country:" msgstr "" -#: ../../mod/profiles.php:709 +#: ../../mod/profiles.php:705 msgid "Region/State:" msgstr "" -#: ../../mod/profiles.php:710 +#: ../../mod/profiles.php:706 msgid " Marital Status:" msgstr "" -#: ../../mod/profiles.php:711 +#: ../../mod/profiles.php:707 msgid "Who: (if applicable)" msgstr "" -#: ../../mod/profiles.php:712 +#: ../../mod/profiles.php:708 msgid "Examples: cathy123, Cathy Williams, cathy@example.com" msgstr "" -#: ../../mod/profiles.php:713 +#: ../../mod/profiles.php:709 msgid "Since [date]:" msgstr "" -#: ../../mod/profiles.php:715 +#: ../../mod/profiles.php:711 msgid "Homepage URL:" msgstr "" -#: ../../mod/profiles.php:718 +#: ../../mod/profiles.php:714 msgid "Religious Views:" msgstr "" -#: ../../mod/profiles.php:719 +#: ../../mod/profiles.php:715 msgid "Public Keywords:" msgstr "" -#: ../../mod/profiles.php:720 +#: ../../mod/profiles.php:716 msgid "Private Keywords:" msgstr "" -#: ../../mod/profiles.php:723 +#: ../../mod/profiles.php:719 msgid "Example: fishing photography software" msgstr "" -#: ../../mod/profiles.php:724 +#: ../../mod/profiles.php:720 msgid "(Used for suggesting potential friends, can be seen by others)" msgstr "" -#: ../../mod/profiles.php:725 +#: ../../mod/profiles.php:721 msgid "(Used for searching profiles, never shown to others)" msgstr "" -#: ../../mod/profiles.php:726 +#: ../../mod/profiles.php:722 msgid "Tell us about yourself..." msgstr "" -#: ../../mod/profiles.php:727 +#: ../../mod/profiles.php:723 msgid "Hobbies/Interests" msgstr "" -#: ../../mod/profiles.php:728 +#: ../../mod/profiles.php:724 msgid "Contact information and Social Networks" msgstr "" -#: ../../mod/profiles.php:729 +#: ../../mod/profiles.php:725 msgid "Musical interests" msgstr "" -#: ../../mod/profiles.php:730 +#: ../../mod/profiles.php:726 msgid "Books, literature" msgstr "" -#: ../../mod/profiles.php:731 +#: ../../mod/profiles.php:727 msgid "Television" msgstr "" -#: ../../mod/profiles.php:732 +#: ../../mod/profiles.php:728 msgid "Film/dance/culture/entertainment" msgstr "" -#: ../../mod/profiles.php:733 +#: ../../mod/profiles.php:729 msgid "Love/romance" msgstr "" -#: ../../mod/profiles.php:734 +#: ../../mod/profiles.php:730 msgid "Work/employment" msgstr "" -#: ../../mod/profiles.php:735 +#: ../../mod/profiles.php:731 msgid "School/education" msgstr "" -#: ../../mod/profiles.php:740 +#: ../../mod/profiles.php:736 msgid "" "This is your public profile.
    It may " "be visible to anybody using the internet." msgstr "" -#: ../../mod/profiles.php:750 ../../mod/directory.php:113 +#: ../../mod/profiles.php:746 ../../mod/directory.php:113 msgid "Age: " msgstr "" -#: ../../mod/profiles.php:803 +#: ../../mod/profiles.php:799 msgid "Edit/Manage Profiles" msgstr "" From c6e605992bdb84755d31affa6fa73c7313493d97 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 24 May 2015 11:46:20 +0200 Subject: [PATCH 141/306] Events: Query improvement --- mod/events.php | 98 +++++++++++++++++++++++++------------------------- 1 file changed, 50 insertions(+), 48 deletions(-) mode change 100755 => 100644 mod/events.php diff --git a/mod/events.php b/mod/events.php old mode 100755 new mode 100644 index ff55688202..ec6d73863b --- a/mod/events.php +++ b/mod/events.php @@ -7,16 +7,16 @@ require_once('include/items.php'); function events_post(&$a) { - logger('post: ' . print_r($_REQUEST,true)); - + logger('post: ' . print_r($_REQUEST,true)); + if(! local_user()) return; $event_id = ((x($_POST,'event_id')) ? intval($_POST['event_id']) : 0); $cid = ((x($_POST,'cid')) ? intval($_POST['cid']) : 0); $uid = local_user(); - - $start_text = escape_tags($_REQUEST['start_text']); + + $start_text = escape_tags($_REQUEST['start_text']); $finish_text = escape_tags($_REQUEST['finish_text']); $adjust = intval($_POST['adjust']); @@ -25,23 +25,23 @@ function events_post(&$a) { // The default setting for the `private` field in event_store() is false, so mirror that $private_event = false; - if($start_text) { + if($start_text) { $start = $start_text; } else { - $start = sprintf('%d-%d-%d %d:%d:0',$startyear,$startmonth,$startday,$starthour,$startminute); - } - + $start = sprintf('%d-%d-%d %d:%d:0',$startyear,$startmonth,$startday,$starthour,$startminute); + } + if($nofinish) { $finish = '0000-00-00 00:00:00'; - } - - if($finish_text) { + } + + if($finish_text) { $finish = $finish_text; } else { $finish = sprintf('%d-%d-%d %d:%d:0',$finishyear,$finishmonth,$finishday,$finishhour,$finishminute); - } + } if($adjust) { $start = datetime_convert(date_default_timezone_get(),'UTC',$start); @@ -56,8 +56,8 @@ function events_post(&$a) { // Don't allow the event to finish before it begins. // It won't hurt anything, but somebody will file a bug report - // and we'll waste a bunch of time responding to it. Time that - // could've been spent doing something else. + // and we'll waste a bunch of time responding to it. Time that + // could've been spent doing something else. if(strcmp($finish,$start) < 0) $finish = $start; @@ -69,7 +69,7 @@ function events_post(&$a) { if((! $summary) || (! $start)) { notice( t('Event title and start time are required.') . EOL); - if(intval($_REQUEST['preview'])) { + if(intval($_REQUEST['preview'])) { echo( t('Event title and start time are required.')); killme(); } @@ -133,11 +133,11 @@ function events_post(&$a) { $datarray['id'] = $event_id; $datarray['created'] = $created; $datarray['edited'] = $edited; - - if(intval($_REQUEST['preview'])) { + + if(intval($_REQUEST['preview'])) { $html = format_event_html($datarray); echo $html; - killme(); + killme(); } $item_id = event_store($datarray); @@ -189,7 +189,7 @@ function events_content(&$a) { $o =""; // tabs - $tabs = profile_tabs($a, True); + $tabs = profile_tabs($a, True); @@ -215,10 +215,10 @@ function events_content(&$a) { } if($mode == 'view') { - - - $thisyear = datetime_convert('UTC',date_default_timezone_get(),'now','Y'); - $thismonth = datetime_convert('UTC',date_default_timezone_get(),'now','m'); + + + $thisyear = datetime_convert('UTC',date_default_timezone_get(),'now','Y'); + $thismonth = datetime_convert('UTC',date_default_timezone_get(),'now','m'); if(! $y) $y = intval($thisyear); if(! $m) @@ -246,7 +246,7 @@ function events_content(&$a) { $prevmonth = 12; $prevyear --; } - + $dim = get_dim($y,$m); $start = sprintf('%d-%d-%d %d:%d:%d',$y,$m,1,0,0,0); $finish = sprintf('%d-%d-%d %d:%d:%d',$y,$m,$dim,23,59,59); @@ -256,7 +256,7 @@ function events_content(&$a) { if (x($_GET,'start')) $start = date("Y-m-d h:i:s", $_GET['start']); if (x($_GET,'end')) $finish = date("Y-m-d h:i:s", $_GET['end']); } - + $start = datetime_convert('UTC','UTC',$start); $finish = datetime_convert('UTC','UTC',$finish); @@ -266,17 +266,19 @@ function events_content(&$a) { if (x($_GET,'id')){ $r = q("SELECT `event`.*, `item`.`id` AS `itemid`,`item`.`plink`, - `item`.`author-name`, `item`.`author-avatar`, `item`.`author-link` FROM `event` LEFT JOIN `item` ON `item`.`event-id` = `event`.`id` + `item`.`author-name`, `item`.`author-avatar`, `item`.`author-link` FROM `event` + LEFT JOIN `item` ON `item`.`event-id` = `event`.`id` AND `item`.`uid` = `event`.`uid` WHERE `event`.`uid` = %d AND `event`.`id` = %d", intval(local_user()), intval($_GET['id']) ); } else { $r = q("SELECT `event`.*, `item`.`id` AS `itemid`,`item`.`plink`, - `item`.`author-name`, `item`.`author-avatar`, `item`.`author-link` FROM `event` LEFT JOIN `item` ON `item`.`event-id` = `event`.`id` + `item`.`author-name`, `item`.`author-avatar`, `item`.`author-link` FROM `event` + LEFT JOIN `item` ON `item`.`event-id` = `event`.`id` AND `item`.`uid` = `event`.`uid` WHERE `event`.`uid` = %d and event.ignore = %d - AND (( `adjust` = 0 AND ( `finish` >= '%s' OR ( nofinish AND start >= '%s' ) ) AND `start` <= '%s' ) - OR ( `adjust` = 1 AND ( `finish` >= '%s' OR ( nofinish AND start >= '%s' ) ) AND `start` <= '%s' )) ", + AND ((`adjust` = 0 AND (`finish` >= '%s' OR (nofinish AND start >= '%s')) AND `start` <= '%s') + OR (`adjust` = 1 AND (`finish` >= '%s' OR (nofinish AND start >= '%s')) AND `start` <= '%s')) ", intval(local_user()), intval($ignored), dbesc($start), @@ -294,7 +296,7 @@ function events_content(&$a) { $r = sort_by_date($r); foreach($r as $rr) { $j = (($rr['adjust']) ? datetime_convert('UTC',date_default_timezone_get(),$rr['start'], 'j') : datetime_convert('UTC','UTC',$rr['start'],'j')); - if(! x($links,$j)) + if(! x($links,$j)) $links[$j] = $a->get_baseurl() . '/' . $a->cmd . '#link-' . $j; } } @@ -308,22 +310,22 @@ function events_content(&$a) { if(count($r)) { $r = sort_by_date($r); foreach($r as $rr) { - - + + $j = (($rr['adjust']) ? datetime_convert('UTC',date_default_timezone_get(),$rr['start'], 'j') : datetime_convert('UTC','UTC',$rr['start'],'j')); $d = (($rr['adjust']) ? datetime_convert('UTC',date_default_timezone_get(),$rr['start'], $fmt) : datetime_convert('UTC','UTC',$rr['start'],$fmt)); $d = day_translate($d); - + $start = (($rr['adjust']) ? datetime_convert('UTC',date_default_timezone_get(),$rr['start'], 'c') : datetime_convert('UTC','UTC',$rr['start'],'c')); if ($rr['nofinish']){ $end = null; } else { $end = (($rr['adjust']) ? datetime_convert('UTC',date_default_timezone_get(),$rr['finish'], 'c') : datetime_convert('UTC','UTC',$rr['finish'],'c')); } - - + + $is_first = ($d !== $last_date); - + $last_date = $d; $edit = ((! $rr['cid']) ? array($a->get_baseurl().'/events/event/'.$rr['id'],t('Edit event'),'','') : null); $title = strip_tags(html_entity_decode(bbcode($rr['summary']),ENT_QUOTES,'UTF-8')); @@ -340,7 +342,7 @@ function events_content(&$a) { 'end' => $end, 'allDay' => false, 'title' => $title, - + 'j' => $j, 'd' => $d, 'edit' => $edit, @@ -353,11 +355,11 @@ function events_content(&$a) { } } - + if ($a->argv[1] === 'json'){ echo json_encode($events); killme(); } - + // links: array('href', 'text', 'extra css classes', 'title') if (x($_GET,'id')){ $tpl = get_markup_template("event.tpl"); @@ -420,7 +422,7 @@ function events_content(&$a) { if(x($_REQUEST,'start')) $orig_event['start'] = $_REQUEST['start']; if(x($_REQUEST,'finish')) $orig_event['finish'] = $_REQUEST['finish']; } - + if($mode === 'edit' || $mode === 'new') { $n_checked = ((x($orig_event) && $orig_event['nofinish']) ? ' checked="checked" ' : ''); @@ -467,18 +469,18 @@ function events_content(&$a) { if(! $f) $f = 'ymd'; - require_once('include/acl_selectors.php'); - - $tpl = get_markup_template('event_form.tpl'); + require_once('include/acl_selectors.php'); + + $tpl = get_markup_template('event_form.tpl'); $o .= replace_macros($tpl,array( '$post' => $a->get_baseurl() . '/events', - '$eid' => $eid, + '$eid' => $eid, '$cid' => $cid, '$uri' => $uri, - + '$title' => t('Event details'), - '$desc' => t('Starting date and Title are required.'), + '$desc' => t('Starting date and Title are required.'), '$s_text' => t('Event Starts:') . ' *', '$s_dsel' => datetimesel($f,new DateTime(),DateTime::createFromFormat('Y',$syear+5),DateTime::createFromFormat('Y-m-d H:i',"$syear-$smonth-$sday $shour:$sminute"),'start_text',true,true,'','',true), '$n_text' => t('Finish date/time is not known or not relevant'), @@ -487,7 +489,7 @@ function events_content(&$a) { '$f_dsel' => datetimesel($f,new DateTime(),DateTime::createFromFormat('Y',$fyear+5),DateTime::createFromFormat('Y-m-d H:i',"$fyear-$fmonth-$fday $fhour:$fminute"),'finish_text',true,true,'start_text'), '$a_text' => t('Adjust for viewer timezone'), '$a_checked' => $a_checked, - '$d_text' => t('Description:'), + '$d_text' => t('Description:'), '$d_orig' => $d_orig, '$l_text' => t('Location:'), '$l_orig' => $l_orig, @@ -495,7 +497,7 @@ function events_content(&$a) { '$t_orig' => $t_orig, '$sh_text' => t('Share this event'), '$sh_checked' => $sh_checked, - '$preview' => t('Preview'), + '$preview' => t('Preview'), '$acl' => (($cid) ? '' : populate_acl(((x($orig_event)) ? $orig_event : $a->user),false)), '$submit' => t('Submit') From b754a79968bf6f86599daf475b62ddec24449ab5 Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Sun, 24 May 2015 13:33:07 +0200 Subject: [PATCH 142/306] event can not end before it has started. --- mod/events.php | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/mod/events.php b/mod/events.php index ec6d73863b..e9e1af05d8 100644 --- a/mod/events.php +++ b/mod/events.php @@ -59,21 +59,30 @@ function events_post(&$a) { // and we'll waste a bunch of time responding to it. Time that // could've been spent doing something else. - if(strcmp($finish,$start) < 0) - $finish = $start; - $summary = escape_tags(trim($_POST['summary'])); $desc = escape_tags(trim($_POST['desc'])); $location = escape_tags(trim($_POST['location'])); $type = 'event'; + $action = ($event_id == '') ? 'new' : "event/" . $event_id; + $onerror_url = $a->get_baseurl() . "/events/" . $action . "?summary=$summary&description=$desc&location=$location&start=$start_text&finish=$finish_text&adjust=$adjust&nofinish=$nofinish"; + + if(strcmp($finish,$start) < 0 && !$nofinish) { + notice( t('Event can not end before it has started.') . EOL); + if(intval($_REQUEST['preview'])) { + echo( t('Event can not end before it has started.')); + killme(); + } + goaway($onerror_url); + } + if((! $summary) || (! $start)) { notice( t('Event title and start time are required.') . EOL); if(intval($_REQUEST['preview'])) { echo( t('Event title and start time are required.')); killme(); } - goaway($a->get_baseurl() . '/events/new'); + goaway($onerror_url); } $share = ((intval($_POST['share'])) ? intval($_POST['share']) : 0); From b3054ee9d05c37a7801f3ea1f82dd54d6ce0361e Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Sun, 24 May 2015 20:01:08 +0200 Subject: [PATCH 143/306] template for searchbox --- include/text.php | 19 +++++++++---------- view/templates/searchbox.tpl | 11 +++++++++++ 2 files changed, 20 insertions(+), 10 deletions(-) create mode 100644 view/templates/searchbox.tpl diff --git a/include/text.php b/include/text.php index dcc7308723..0f6c83234b 100644 --- a/include/text.php +++ b/include/text.php @@ -960,19 +960,18 @@ if(! function_exists('search')) { * @param string $s search query * @param string $id html id * @param string $url search url - * @param boolean $save show save search button - * @return string html for search box #FIXME: remove html + * @param boolean $savedsearch show save search button */ function search($s,$id='search-box',$url='/search',$save = false) { $a = get_app(); - $o = '
    '; - $o .= '
    '; - $o .= ''; - $o .= ''; - if($save) - $o .= ''; - $o .= '
    '; - return $o; + return replace_macros(get_markup_template('searchbox.tpl'), array( + '$s' => $s, + '$id' => $id, + '$action_url' => $a->get_baseurl((stristr($url,'network')) ? true : false) . $url, + '$search_label' => t('Search'), + '$save_label' => t('Save'), + '$savedsearch' => feature_enabled(local_user(),'savedsearch'), + )); }} if(! function_exists('valid_email')) { diff --git a/view/templates/searchbox.tpl b/view/templates/searchbox.tpl new file mode 100644 index 0000000000..ce656433bf --- /dev/null +++ b/view/templates/searchbox.tpl @@ -0,0 +1,11 @@ +
    +
    + {{strip}} + + + {{if $savedsearch}} + + {{/if}} + {{/strip}} +
    +
    From e040b60f67c4e499539e787ef3deb401e1cee160 Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Sun, 24 May 2015 20:46:40 +0200 Subject: [PATCH 144/306] make the heading of the search result translatable --- mod/search.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mod/search.php b/mod/search.php index 67702ac097..d1bd5d6310 100644 --- a/mod/search.php +++ b/mod/search.php @@ -177,9 +177,9 @@ function search_content(&$a) { if($tag) - $o .= '

    Items tagged with: ' . $search . '

    '; + $o .= '

    ' . t('Items tagged with: ') . $search . '

    '; else - $o .= '

    Search results for: ' . $search . '

    '; + $o .= '

    ' . t('Search results for: ') . $search . '

    '; logger("Start Conversation for '".$search."'", LOGGER_DEBUG); $o .= conversation($a,$r,'search',false); From 0c752a2190e5adecf4b83e6a204d3f0dddf32150 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Mon, 25 May 2015 13:27:45 +0200 Subject: [PATCH 145/306] Diaspora: Store the original XML and the object type. --- include/diaspora.php | 58 +++++++++++++++++++++++++++++++++++--------- 1 file changed, 47 insertions(+), 11 deletions(-) diff --git a/include/diaspora.php b/include/diaspora.php index 04588dffe6..c683ded1da 100755 --- a/include/diaspora.php +++ b/include/diaspora.php @@ -833,12 +833,19 @@ function diaspora_post($importer,$xml,$msg) { $body = diaspora2bb($xml->raw_message); - // Add OEmbed and other information to the body - if (!diaspora_is_redmatrix($contact['url'])) - $body = add_page_info_to_body($body, false, true); - $datarray = array(); + $datarray["object"] = json_encode($xml); + + if($xml->photo->remote_photo_path AND $xml->photo->remote_photo_name) + $datarray["object-type"] = ACTIVITY_OBJ_PHOTO; + else { + $datarray['object-type'] = ACTIVITY_OBJ_NOTE; + // Add OEmbed and other information to the body + if (!diaspora_is_redmatrix($contact['url'])) + $body = add_page_info_to_body($body, false, true); + } + $str_tags = ''; $cnt = preg_match_all('/@\[url=(.*?)\[\/url\]/ism',$body,$matches,PREG_SET_ORDER); @@ -872,7 +879,10 @@ function diaspora_post($importer,$xml,$msg) { $datarray['author-avatar'] = $contact['thumb']; $datarray['body'] = $body; $datarray['tag'] = $str_tags; - $datarray['app'] = 'Diaspora'; + if ($xml->provider_display_name) + $datarray["app"] = unxmlify($xml->provider_display_name); + else + $datarray['app'] = 'Diaspora'; // if empty content it might be a photo that hasn't arrived yet. If a photo arrives, we'll make it visible. @@ -921,6 +931,8 @@ function diaspora_store_by_guid($guid, $server, $uid = 0) { $author = $item["author"]; $guid = $item["guid"]; $private = $item["private"]; + $object = $item["object"]; + $objecttype = $item["object-type"]; $message_id = $author.':'.$guid; $r = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s' AND `guid` = '%s' LIMIT 1", @@ -954,6 +966,8 @@ function diaspora_store_by_guid($guid, $server, $uid = 0) { $datarray['tag'] = $str_tags; $datarray['app'] = $app; $datarray['visible'] = ((strlen($body)) ? 1 : 0); + $datarray['object'] = $object; + $datarray['object-type'] = $objecttype; if ($datarray['contact-id'] == 0) return false; @@ -1001,11 +1015,14 @@ function diaspora_fetch_message($guid, $server, $level = 0) { $item["guid"] = unxmlify($source_xml->post->status_message->guid); $item["private"] = (unxmlify($source_xml->post->status_message->public) == 'false'); + $item["object"] = json_encode($source_xml->post); if(strlen($source_xml->post->asphoto->objectId) && ($source_xml->post->asphoto->objectId != 0) && ($source_xml->post->asphoto->image_url)) { + $item["object-type"] = ACTIVITY_OBJ_PHOTO; $body = '[url=' . notags(unxmlify($source_xml->post->asphoto->image_url)) . '][img]' . notags(unxmlify($source_xml->post->asphoto->objectId)) . '[/img][/url]' . "\n"; $body = scale_external_images($body,false); } elseif($source_xml->post->asphoto->image_url) { + $item["object-type"] = ACTIVITY_OBJ_PHOTO; $body = '[img]' . notags(unxmlify($source_xml->post->asphoto->image_url)) . '[/img]' . "\n"; $body = scale_external_images($body); } elseif($source_xml->post->status_message) { @@ -1015,18 +1032,25 @@ function diaspora_fetch_message($guid, $server, $level = 0) { if($source_xml->post->status_message->photo->remote_photo_path AND $source_xml->post->status_message->photo->remote_photo_name) { + $item["object-type"] = ACTIVITY_OBJ_PHOTO; + $remote_photo_path = notags(unxmlify($source_xml->post->status_message->photo->remote_photo_path)); $remote_photo_name = notags(unxmlify($source_xml->post->status_message->photo->remote_photo_name)); $body = '[img]'.$remote_photo_path.$remote_photo_name.'[/img]'."\n".$body; logger('embedded picture link found: '.$body, LOGGER_DEBUG); - } + } else + $item["object-type"] = ACTIVITY_OBJ_NOTE; $body = scale_external_images($body); // Add OEmbed and other information to the body - $body = add_page_info_to_body($body, false, true); + // To-Do: It could be a repeated redmatrix item + // Then we shouldn't add further data to it + if ($item["object-type"] == ACTIVITY_OBJ_NOTE) + $body = add_page_info_to_body($body, false, true); + } elseif($source_xml->post->reshare) { // Reshare of a reshare return diaspora_fetch_message($source_xml->post->reshare->root_guid, $server, ++$level); @@ -1105,6 +1129,8 @@ function diaspora_reshare($importer,$xml,$msg) { $orig_author = $r[0]["author-link"]; $create_original_post = ($body != ""); $orig_url = $a->get_baseurl()."/display/".$orig_guid; + $object = $r[0]["object"]; + $objecttype = $r[0]["object-type"]; } } @@ -1144,6 +1170,8 @@ function diaspora_reshare($importer,$xml,$msg) { $orig_guid = $item["guid"]; $create_original_post = ($body != ""); $orig_url = $a->get_baseurl()."/display/".$orig_guid; + $object = $item["object"]; + $objecttype = $item["object-type"]; } } @@ -1184,6 +1212,9 @@ function diaspora_reshare($importer,$xml,$msg) { $datarray['body'] = $body; } + $datarray["object"] = json_encode($xml); + $datarray['object-type'] = $objecttype; + $datarray['tag'] = $str_tags; $datarray['app'] = $app; @@ -1210,6 +1241,7 @@ function diaspora_reshare($importer,$xml,$msg) { $datarray2['owner-link'] = $datarray2['author-link']; $datarray2['owner-avatar'] = $datarray2['author-avatar']; $datarray2['body'] = $body; + $datarray2["object"] = $object; DiasporaFetchGuid($datarray2); $message_id = item_store($datarray2); @@ -1295,6 +1327,8 @@ function diaspora_asphoto($importer,$xml,$msg) { $datarray['author-link'] = $contact['url']; $datarray['author-avatar'] = $contact['thumb']; $datarray['body'] = $body; + $datarray["object"] = json_encode($xml); + $datarray['object-type'] = ACTIVITY_OBJ_PHOTO; $datarray['app'] = 'Diaspora/Cubbi.es'; @@ -1464,6 +1498,8 @@ function diaspora_comment($importer,$xml,$msg) { $datarray['author-link'] = $person['url']; $datarray['author-avatar'] = ((x($person,'thumb')) ? $person['thumb'] : $person['photo']); $datarray['body'] = $body; + $datarray["object"] = json_encode($xml); + $datarray["object-type"] = ACTIVITY_OBJ_COMMENT; // We can't be certain what the original app is if the message is relayed. if(($parent_item['origin']) && (! $parent_author_signature)) @@ -1790,7 +1826,7 @@ function diaspora_message($importer,$xml,$msg) { dbesc($person['name']), dbesc($person['photo']), dbesc($person['url']), - intval($contact['id']), + intval($contact['id']), dbesc($conversation['subject']), dbesc($body), 0, @@ -2059,7 +2095,7 @@ function diaspora_like($importer,$xml,$msg) { $activity = ACTIVITY_LIKE; $post_type = (($parent_item['resource-id']) ? t('photo') : t('status')); - $objtype = (($parent_item['resource-id']) ? ACTIVITY_OBJ_PHOTO : ACTIVITY_OBJ_NOTE ); + $objtype = (($parent_item['resource-id']) ? ACTIVITY_OBJ_PHOTO : ACTIVITY_OBJ_NOTE ); $link = xmlify('' . "\n") ; $body = $parent_item['body']; @@ -2878,7 +2914,7 @@ function diaspora_send_retraction($item,$owner,$contact,$public_batch = false) { $target_type = (($item['verb'] === ACTIVITY_LIKE) ? 'Like' : 'Comment'); } else { - + $tpl = get_markup_template('diaspora_signed_retract.tpl'); $target_type = 'StatusMessage'; } @@ -2924,7 +2960,7 @@ function diaspora_send_mail($item,$owner,$contact) { $body = bb2diaspora($item['body']); $created = datetime_convert('UTC','UTC',$item['created'],'Y-m-d H:i:s \U\T\C'); - + $signed_text = $item['guid'] . ';' . $cnv['guid'] . ';' . $body . ';' . $created . ';' . $myaddr . ';' . $cnv['guid']; From 3ad674fa67b0899dee72e61c1c156e8cdec885f5 Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Mon, 25 May 2015 16:49:57 +0200 Subject: [PATCH 146/306] better space handling --- mod/search.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mod/search.php b/mod/search.php index d1bd5d6310..f759a7f991 100644 --- a/mod/search.php +++ b/mod/search.php @@ -177,9 +177,9 @@ function search_content(&$a) { if($tag) - $o .= '

    ' . t('Items tagged with: ') . $search . '

    '; + $o .= '

    ' . t('Items tagged with:') . ' ' . $search . '

    '; else - $o .= '

    ' . t('Search results for: ') . $search . '

    '; + $o .= '

    ' . t('Search results for:') . ' ' . $search . '

    '; logger("Start Conversation for '".$search."'", LOGGER_DEBUG); $o .= conversation($a,$r,'search',false); From 7e401ca199ce9c47c8b5c8ae96a476023be9a048 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Mon, 25 May 2015 19:07:59 +0200 Subject: [PATCH 147/306] Improved check for duplicates. Improvements with reshared Diaspora items. --- include/diaspora.php | 33 +++++++++++++++++++++------------ include/items.php | 15 ++++++++++++++- 2 files changed, 35 insertions(+), 13 deletions(-) diff --git a/include/diaspora.php b/include/diaspora.php index c683ded1da..68e38f8c4c 100755 --- a/include/diaspora.php +++ b/include/diaspora.php @@ -785,12 +785,21 @@ function diaspora_is_redmatrix($url) { } function diaspora_plink($addr, $guid) { - $r = q("SELECT `url`, `nick` FROM `fcontact` WHERE `addr`='%s' LIMIT 1", $addr); + $r = q("SELECT `url`, `nick`, `network` FROM `fcontact` WHERE `addr`='%s' LIMIT 1", $addr); // Fallback if (!$r) return 'https://'.substr($addr,strpos($addr,'@')+1).'/posts/'.$guid; + // Friendica contacts are often detected as Diaspora contacts in the "fcontact" table + // So we try another way as well. + $s = q("SELECT `network` FROM `gcontact` WHERE `nurl`='%s' LIMIT 1", dbesc(normalise_link($r[0]["url"]))); + if ($s) + $r[0]["network"] = $s[0]["network"]; + + if ($r[0]["network"] == NETWORK_DFRN) + return(str_replace("/profile/".$r[0]["nick"]."/", "/display/".$guid, $r[0]["url"]."/")); + if (diaspora_is_redmatrix($r[0]["url"])) return $r[0]["url"]."/?f=&mid=".$guid; @@ -1105,16 +1114,17 @@ function diaspora_reshare($importer,$xml,$msg) { $orig_author = notags(unxmlify($xml->root_diaspora_id)); $orig_guid = notags(unxmlify($xml->root_guid)); + $orig_url = $a->get_baseurl()."/display/".$orig_guid; $create_original_post = false; // Do we already have this item? - $r = q("SELECT `body`, `tag`, `app`, `created`, `author-link`, `plink` FROM `item` WHERE `guid` = '%s' AND `visible` AND NOT `deleted` AND `body` != '' LIMIT 1", + $r = q("SELECT `body`, `tag`, `app`, `created`, `plink`, `object`, `object-type`, `uri` FROM `item` WHERE `guid` = '%s' AND `visible` AND NOT `deleted` AND `body` != '' LIMIT 1", dbesc($orig_guid), dbesc(NETWORK_DIASPORA) ); if(count($r)) { - logger('reshared message '.$orig_guid." reshared by ".$guid.' already exists on system: '.$orig_url); + logger('reshared message '.$orig_guid." reshared by ".$guid.' already exists on system.'); // Maybe it is already a reshared item? // Then refetch the content, since there can be many side effects with reshared posts from other networks or reshares from reshares @@ -1126,9 +1136,9 @@ function diaspora_reshare($importer,$xml,$msg) { $str_tags = $r[0]["tag"]; $app = $r[0]["app"]; $orig_created = $r[0]["created"]; - $orig_author = $r[0]["author-link"]; + $orig_plink = $r[0]["plink"]; + $orig_uri = $r[0]["uri"]; $create_original_post = ($body != ""); - $orig_url = $a->get_baseurl()."/display/".$orig_guid; $object = $r[0]["object"]; $objecttype = $r[0]["object-type"]; } @@ -1139,8 +1149,6 @@ function diaspora_reshare($importer,$xml,$msg) { $str_tags = ""; $app = ""; - $orig_url = 'https://'.substr($orig_author,strpos($orig_author,'@')+1).'/posts/'.$orig_guid; - $server = 'https://'.substr($orig_author,strpos($orig_author,'@')+1); logger('1st try: reshared message '.$orig_guid." reshared by ".$guid.' will be fetched from original server: '.$server); $item = diaspora_fetch_message($orig_guid, $server); @@ -1168,13 +1176,16 @@ function diaspora_reshare($importer,$xml,$msg) { $orig_created = $item["created"]; $orig_author = $item["author"]; $orig_guid = $item["guid"]; + $orig_plink = diaspora_plink($orig_author, $orig_guid); + $orig_uri = $orig_author.':'.$orig_guid; $create_original_post = ($body != ""); - $orig_url = $a->get_baseurl()."/display/".$orig_guid; $object = $item["object"]; $objecttype = $item["object-type"]; } } + $plink = diaspora_plink($diaspora_handle, $guid); + $person = find_diaspora_person_by_handle($orig_author); $created = unxmlify($xml->created_at); @@ -1182,8 +1193,6 @@ function diaspora_reshare($importer,$xml,$msg) { $datarray = array(); - $plink = diaspora_plink($diaspora_handle, $guid); - $datarray['uid'] = $importer['uid']; $datarray['contact-id'] = $contact['id']; $datarray['wall'] = 0; @@ -1230,9 +1239,9 @@ function diaspora_reshare($importer,$xml,$msg) { $datarray2['uid'] = 0; $datarray2['contact-id'] = get_contact($person['url'], 0); $datarray2['guid'] = $orig_guid; - $datarray2['uri'] = $datarray2['parent-uri'] = $orig_author.':'.$orig_guid; + $datarray2['uri'] = $orig_uri; $datarray2['changed'] = $datarray2['created'] = $datarray2['edited'] = $datarray2['commented'] = $datarray2['received'] = datetime_convert('UTC','UTC',$orig_created); - $datarray2['plink'] = diaspora_plink($orig_author, $orig_guid); + $datarray2['plink'] = $orig_plink; $datarray2['author-name'] = $person['name']; $datarray2['author-link'] = $person['url']; diff --git a/include/items.php b/include/items.php index 85d02ab60d..58db71d479 100644 --- a/include/items.php +++ b/include/items.php @@ -1351,9 +1351,22 @@ function item_store($arr,$force_parent = false, $notify = false, $dontcache = fa dbesc($arr['uri']), intval($arr['uid']) ); + if($r && count($r)) { - logger('item-store: duplicate item ignored. ' . print_r($arr,true)); + logger('duplicated item with the same uri found. ' . print_r($arr,true)); return 0; + } else { + // Check for an existing post with the same content. There seems to be a problem with OStatus. + $r = q("SELECT `id` FROM `item` WHERE `body` = '%s' AND `created` = '%s' AND `contact-id` = %d AND `uid` = %d LIMIT 1", + dbesc($arr['body']), + dbesc($arr['created']), + intval($arr['contact-id']), + intval($arr['uid']) + ); + if($r && count($r)) { + logger('duplicated item with the same body found. ' . print_r($arr,true)); + return 0; + } } // Is this item available in the global items (with uid=0)? From f309f3a6810b5af5d3b778843533c1c69ddc090d Mon Sep 17 00:00:00 2001 From: rabuzarus Date: Tue, 26 May 2015 14:32:40 +0200 Subject: [PATCH 148/306] remove html and use vcard-widget.tpl --- mod/allfriends.php | 11 +++++------ mod/common.php | 11 +++++------ mod/crepair.php | 9 +++++---- mod/photos.php | 12 ++++++++---- mod/videos.php | 12 ++++++++---- view/templates/vcard-widget.tpl | 13 ++++++++----- 6 files changed, 39 insertions(+), 29 deletions(-) diff --git a/mod/allfriends.php b/mod/allfriends.php index f675b8e29c..bbdc5ef458 100644 --- a/mod/allfriends.php +++ b/mod/allfriends.php @@ -20,12 +20,11 @@ function allfriends_content(&$a) { intval(local_user()) ); - $a->page['aside'] .= '
    ' - . '
    ' . $c[0]['name'] . '
    ' - . '
    ' - . '' . $c[0]['name'] . '
    ' - . '
    '; + $a->page['aside'] .= replace_macros(get_markup_template("vcard-widget.tpl"),array( + '$name' => $c[0]['name'], + '$photo' => $c[0]['photo'], + 'url' => $a->get_baseurl() . '/contacts/' . $cid + )); if(! count($c)) diff --git a/mod/common.php b/mod/common.php index 617b5b670a..574443f483 100644 --- a/mod/common.php +++ b/mod/common.php @@ -28,12 +28,11 @@ function common_content(&$a) { ); } - $a->page['aside'] .= '
    ' - . '
    ' . $c[0]['name'] . '
    ' - . '
    ' - . '' . $c[0]['name'] . '
    ' - . '
    '; + $a->page['aside'] .= replace_macros(get_markup_template("vcard-widget.tpl"),array( + '$name' => $c[0]['name'], + '$photo' => $c[0]['photo'], + 'url' => $a->get_baseurl() . '/contacts/' . $cid + )); if(! count($c)) diff --git a/mod/crepair.php b/mod/crepair.php index 55231faf7d..7cc67d4c83 100644 --- a/mod/crepair.php +++ b/mod/crepair.php @@ -22,10 +22,11 @@ function crepair_init(&$a) { if($contact_id) { $a->data['contact'] = $r[0]; - $o .= '
    '; - $o .= '
    ' . $a->data['contact']['name'] . '
    '; - $o .= '
    ' . $a->data['contact']['name'] . '
    '; - $o .= '
    '; + $tpl = get_markup_template("vcard-widget.tpl"); + $o .= replace_macros($tpl, array( + '$name' => $a->data['contact']['name'], + '$photo' => $a->data['contact']['photo'] + )); $a->page['aside'] .= $o; } diff --git a/mod/photos.php b/mod/photos.php index f8bba01b00..657f23236d 100644 --- a/mod/photos.php +++ b/mod/photos.php @@ -30,10 +30,14 @@ function photos_init(&$a) { $a->data['user'] = $r[0]; - $o .= '
    '; - $o .= '
    ' . $a->data['user']['username'] . '
    '; - $o .= '
    ' . $a->data['user']['username'] . '
    '; - $o .= '
    '; + $profilephoto = $a->get_cached_avatar_image($a->get_baseurl() . '/photo/profile/' . $a->data['user']['uid'] . '.jpg'); + + $tpl = get_markup_template("vcard-widget.tpl"); + + $o .= replace_macros($tpl, array( + '$name' => $a->data['user']['username'], + '$photo' => $profilephoto + )); $sql_extra = permissions_sql($a->data['user']['uid']); diff --git a/mod/videos.php b/mod/videos.php index 0f29e631bd..bc076e740a 100644 --- a/mod/videos.php +++ b/mod/videos.php @@ -28,10 +28,14 @@ function videos_init(&$a) { $a->data['user'] = $r[0]; - $o .= '
    '; - $o .= '
    ' . $a->data['user']['username'] . '
    '; - $o .= '
    ' . $a->data['user']['username'] . '
    '; - $o .= '
    '; + $profilephoto = $a->get_cached_avatar_image($a->get_baseurl() . '/photo/profile/' . $a->data['user']['uid'] . '.jpg'); + + $tpl = get_markup_template("vcard-widget.tpl"); + + $o .= replace_macros($tpl, array( + '$name' => $a->data['user']['username'], + '$photo' => $profilephoto + )); /*$sql_extra = permissions_sql($a->data['user']['uid']); diff --git a/view/templates/vcard-widget.tpl b/view/templates/vcard-widget.tpl index bc1a571bea..04e26607a1 100644 --- a/view/templates/vcard-widget.tpl +++ b/view/templates/vcard-widget.tpl @@ -1,6 +1,9 @@ -
    - +
    +
    {{$name}}
    + {{if $url}} +
    {{$name}}
    + {{else}} +
    {{$name}}
    + {{/if}} +
    From 46338f5e8752f2ec1fbc0f744e3c76c1b6ef27c5 Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Tue, 26 May 2015 14:49:53 +0200 Subject: [PATCH 149/306] using sprintf --- mod/search.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mod/search.php b/mod/search.php index f759a7f991..5fc9617850 100644 --- a/mod/search.php +++ b/mod/search.php @@ -177,9 +177,9 @@ function search_content(&$a) { if($tag) - $o .= '

    ' . t('Items tagged with:') . ' ' . $search . '

    '; + $o .= '

    ' . sprintf( t('Items tagged with: %s'), $search) . '

    '; else - $o .= '

    ' . t('Search results for:') . ' ' . $search . '

    '; + $o .= '

    ' . sprintf( t('Search results for: %s'), $search) . '

    '; logger("Start Conversation for '".$search."'", LOGGER_DEBUG); $o .= conversation($a,$r,'search',false); From 03214254ff848521ec00d669006061692b02c01d Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Tue, 26 May 2015 23:33:38 +0200 Subject: [PATCH 150/306] OStatus: Improved duplicate check. --- include/diaspora.php | 4 +- include/items.php | 12 ++++- include/ostatus_conversation.php | 75 ++++++++++++++++++++++++++------ 3 files changed, 73 insertions(+), 18 deletions(-) diff --git a/include/diaspora.php b/include/diaspora.php index 68e38f8c4c..b70cffdc39 100755 --- a/include/diaspora.php +++ b/include/diaspora.php @@ -1138,7 +1138,6 @@ function diaspora_reshare($importer,$xml,$msg) { $orig_created = $r[0]["created"]; $orig_plink = $r[0]["plink"]; $orig_uri = $r[0]["uri"]; - $create_original_post = ($body != ""); $object = $r[0]["object"]; $objecttype = $r[0]["object-type"]; } @@ -1239,8 +1238,9 @@ function diaspora_reshare($importer,$xml,$msg) { $datarray2['uid'] = 0; $datarray2['contact-id'] = get_contact($person['url'], 0); $datarray2['guid'] = $orig_guid; - $datarray2['uri'] = $orig_uri; + $datarray2['uri'] = $datarray2['parent-uri'] = $orig_uri; $datarray2['changed'] = $datarray2['created'] = $datarray2['edited'] = $datarray2['commented'] = $datarray2['received'] = datetime_convert('UTC','UTC',$orig_created); + $datarray2['parent'] = 0; $datarray2['plink'] = $orig_plink; $datarray2['author-name'] = $person['name']; diff --git a/include/items.php b/include/items.php index 58db71d479..3b4a5a193d 100644 --- a/include/items.php +++ b/include/items.php @@ -864,7 +864,7 @@ function get_atom_elements($feed, $item, $contact = array()) { $conversation = array_shift($link["attribs"]); if ($conversation["rel"] == "ostatus:conversation") { - $res["ostatus_conversation"] = $conversation["href"]; + $res["ostatus_conversation"] = ostatus_convert_href($conversation["href"]); logger('get_atom_elements: found conversation url '.$res["ostatus_conversation"]); } }; @@ -1090,6 +1090,14 @@ function item_store($arr,$force_parent = false, $notify = false, $dontcache = fa unset($arr['dsprsig']); } + // Converting the plink + if ($arr['network'] == NETWORK_OSTATUS) { + if (isset($arr['plink'])) + $arr['plink'] = ostatus_convert_href($arr['plink']); + elseif (isset($arr['uri'])) + $arr['plink'] = ostatus_convert_href($arr['uri']); + } + // if an OStatus conversation url was passed in, it is stored and then // removed from the array. $ostatus_conversation = null; @@ -1115,7 +1123,7 @@ function item_store($arr,$force_parent = false, $notify = false, $dontcache = fa /* check for create date and expire time */ $uid = intval($arr['uid']); - $r = q("SELECT expire FROM user WHERE uid = %d", $uid); + $r = q("SELECT expire FROM user WHERE uid = %d", intval($uid)); if(count($r)) { $expire_interval = $r[0]['expire']; if ($expire_interval>0) { diff --git a/include/ostatus_conversation.php b/include/ostatus_conversation.php index 667f7dde42..da8dda292d 100644 --- a/include/ostatus_conversation.php +++ b/include/ostatus_conversation.php @@ -2,7 +2,30 @@ define('OSTATUS_DEFAULT_POLL_INTERVAL', 30); // given in minutes define('OSTATUS_DEFAULT_POLL_TIMEFRAME', 1440); // given in minutes -function check_conversations() { +function ostatus_convert_href($href) { + $elements = explode(":",$href); + + if ((count($elements) <= 2) OR ($elements[0] != "tag")) + return $href; + + $server = explode(",", $elements[1]); + $conversation = explode("=", $elements[2]); + + if ((count($elements) == 4) AND ($elements[2] == "post")) + return "http://".$server[0]."/notice/".$elements[3]; + + if ((count($conversation) != 2) OR ($conversation[1] =="")) + return $href; + + if ($elements[3] == "objectType=thread") + return "http://".$server[0]."/conversation/".$conversation[1]; + else + return "http://".$server[0]."/notice/".$conversation[1]; + + return $href; +} + +function check_conversations($override = false) { $last = get_config('system','ostatus_last_poll'); $poll_interval = intval(get_config('system','ostatus_poll_interval')); @@ -10,16 +33,16 @@ function check_conversations() { $poll_interval = OSTATUS_DEFAULT_POLL_INTERVAL; // Don't poll if the interval is set negative - if ($poll_interval < 0) + if (($poll_interval < 0) AND !$override) return; $poll_timeframe = intval(get_config('system','ostatus_poll_timeframe')); - if(! $poll_timeframe) + if (!$poll_timeframe) $poll_timeframe = OSTATUS_DEFAULT_POLL_TIMEFRAME; - if($last) { + if ($last AND !$override) { $next = $last + ($poll_interval * 60); - if($next > time()) { + if ($next > time()) { logger('poll interval not reached'); return; } @@ -36,7 +59,7 @@ function check_conversations() { complete_conversation($id, $url); } - logger(' cron_end'); + logger('cron_end'); set_config('system','ostatus_last_poll', time()); } @@ -44,6 +67,8 @@ function check_conversations() { function complete_conversation($itemid, $conversation_url, $only_add_conversation = false) { global $a; + $conversation_url = ostatus_convert_href($conversation_url); + if (intval(get_config('system','ostatus_poll_interval')) == -2) return; @@ -107,16 +132,24 @@ function complete_conversation($itemid, $conversation_url, $only_add_conversatio $items = array_reverse($items); foreach ($items as $single_conv) { - // status.net changed the format of the activity streams. This is a quick fix. - if (@is_string($single_conv->object->id)) + if (!isset($single_conv->id) AND isset($single_conv->object->id)) $single_conv->id = $single_conv->object->id; + elseif (!isset($single_conv->id) AND isset($single_conv->object->url)) + $single_conv->id = $single_conv->object->url; - if (@!$single_conv->id AND $single_conv->provider->url AND $single_conv->statusnet_notice_info->local_id) - $single_conv->id = $single_conv->provider->url."notice/".$single_conv->statusnet_notice_info->local_id; + $plink = ostatus_convert_href($single_conv->id); + + if (isset($single_conv->provider->url) AND isset($single_conv->statusnet_notice_info->local_id)) + $plink = $single_conv->provider->url."notice/".$single_conv->statusnet_notice_info->local_id; + elseif (isset($single_conv->provider->url) AND isset($single_conv->statusnet->notice_info->local_id)) + $plink = $single_conv->provider->url."notice/".$single_conv->statusnet->notice_info->local_id; if (@!$single_conv->id) continue; + //logger("OStatus conversation id ".$single_conv->id, LOGGER_DEBUG); + //logger("OStatus conversation data ".print_r($single_conv, true), LOGGER_DEBUG); + if ($first_id == "") { $first_id = $single_conv->id; @@ -136,8 +169,13 @@ function complete_conversation($itemid, $conversation_url, $only_add_conversatio else $parent_uri = $parent["uri"]; - $message_exists = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s' LIMIT 1", + $message_exists = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `plink` = '%s' LIMIT 1", + intval($message["uid"]), dbesc($plink)); + + if (!$message_exists) + $message_exists = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s' LIMIT 1", intval($message["uid"]), dbesc($single_conv->id)); + if ($message_exists) { if ($parent["id"] != 0) { $existing_message = $message_exists[0]; @@ -166,7 +204,7 @@ function complete_conversation($itemid, $conversation_url, $only_add_conversatio $arr = array(); $arr["network"] = NETWORK_OSTATUS; $arr["uri"] = $single_conv->id; - $arr["plink"] = $single_conv->id; + $arr["plink"] = $plink; $arr["uid"] = $message["uid"]; $arr["contact-id"] = $contact_id; if ($parent["id"] != 0) @@ -190,9 +228,16 @@ function complete_conversation($itemid, $conversation_url, $only_add_conversatio $arr["author-link"] = $single_conv->actor->id; $arr["author-avatar"] = $single_conv->actor->image->url; $arr["body"] = html2bbcode($single_conv->content); - $arr["app"] = strip_tags($single_conv->statusnet_notice_info->source); - if ($arr["app"] == "") + + if (isset($single_conv->statusnet->notice_info->source)) + $arr["app"] = strip_tags($single_conv->statusnet->notice_info->source); + elseif (isset($single_conv->statusnet_notice_info->source)) + $arr["app"] = strip_tags($single_conv->statusnet_notice_info->source); + elseif (isset($single_conv->provider->displayName)) $arr["app"] = $single_conv->provider->displayName; + else + $arr["app"] = "OStatus"; + $arr["verb"] = $parent["verb"]; $arr["visible"] = $parent["visible"]; $arr["location"] = $single_conv->location->displayName; @@ -206,6 +251,8 @@ function complete_conversation($itemid, $conversation_url, $only_add_conversatio $newitem = item_store($arr); + logger('Stored new item '.$plink.' under id '.$newitem, LOGGER_DEBUG); + // Add the conversation entry (but don't fetch the whole conversation) complete_conversation($newitem, $conversation_url, true); From 15499ff1aa7154aecddb4b801c4c0b96f6a2df76 Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Wed, 27 May 2015 03:35:29 +0200 Subject: [PATCH 151/306] first step to get html code from photos.php removed --- mod/photos.php | 53 ++++++++++++++++++++++++++++++++- view/templates/photo_albums.tpl | 13 ++++++++ 2 files changed, 65 insertions(+), 1 deletion(-) create mode 100644 view/templates/photo_albums.tpl diff --git a/mod/photos.php b/mod/photos.php index f8bba01b00..3ae5bbf392 100644 --- a/mod/photos.php +++ b/mod/photos.php @@ -41,8 +41,57 @@ function photos_init(&$a) { $albums = q("SELECT distinct(`album`) AS `album` FROM `photo` WHERE `uid` = %d $sql_extra order by created desc", intval($a->data['user']['uid']) ); + + $ret = array('success' => false); + $albums_visible = ((intval($a->data['user']['hidewall']) && (! local_user()) && (! remote_user())) ? false : true); + + foreach($albums as $k => $album) { + if( $album['album'] === 'Contact Photos') { + unset ($albums[$k]['album']); + } + } - if(count($albums)) { + if($albums) { + if ($albums_visible) { + $ret['success'] = true; + } + $ret['albums'] = array(); + foreach($albums as $k => $album) { + $entry = array( + 'text' => $album['album'], + 'total' => $album['total'], + 'url' => z_root() . '/photos/' . $channel['channel_address'] . '/album/' . bin2hex($album['album']), + 'urlencode' => urlencode($album['album']), + 'bin2hex' => bin2hex($album['album']) + ); + $ret['albums'][] = $entry; + } + } + + /*return $ret;*/ + + $o = ''; + + if(! $albums) { + if(array_key_exists('albums', get_app()->data)) + $albums = get_app()->data['albums']; + else + $albums = $ret; + } + + $albums = $ret; + + + if($albums['success']) { + $o = replace_macros(get_markup_template('photo_albums.tpl'),array( + '$nick' => $a->data['user']['nickname'], + '$title' => t('Photo Albums'), + '$albums' => $albums['albums'], + '$baseurl' => z_root() + )); + } + +/* if(count($albums)) { $a->data['albums'] = $albums; $albums_visible = ((intval($a->data['user']['hidewall']) && (! local_user()) && (! remote_user())) ? false : true); @@ -69,6 +118,8 @@ function photos_init(&$a) { $o .= ''; } + * + */ if(! x($a->page,'aside')) $a->page['aside'] = ''; diff --git a/view/templates/photo_albums.tpl b/view/templates/photo_albums.tpl new file mode 100644 index 0000000000..bbbf5c4a97 --- /dev/null +++ b/view/templates/photo_albums.tpl @@ -0,0 +1,13 @@ + From bdd5c05668fafbadbc19026b75269ff9e97dbc70 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Wed, 27 May 2015 08:16:05 +0200 Subject: [PATCH 152/306] OStatus: Don't be confused by posts from the statusnet connector. --- include/items.php | 52 +++++++++++++++++++++++--------- include/ostatus_conversation.php | 23 +++++++++----- 2 files changed, 54 insertions(+), 21 deletions(-) diff --git a/include/items.php b/include/items.php index 3b4a5a193d..69b4a0f259 100644 --- a/include/items.php +++ b/include/items.php @@ -1149,6 +1149,19 @@ function item_store($arr,$force_parent = false, $notify = false, $dontcache = fa } } + // If there is no guid then take the same guid that was taken before for the same plink + if ((trim($arr['guid']) == "") AND (trim($arr['plink']) != "")) { + logger('item_store: checking for an existing guid for plink '.$arr['plink'], LOGGER_DEBUG); + $r = q("SELECT `guid` FROM `item` WHERE `plink` = '%s' AND `guid` != '' LIMIT 1", + dbesc(trim($arr['plink'])) + ); + + if(count($r)) { + $arr['guid'] = $r[0]["guid"]; + logger('item_store: found guid '.$arr['guid'].' for plink '.$arr['plink'], LOGGER_DEBUG); + } + } + // Shouldn't happen but we want to make absolutely sure it doesn't leak from a plugin. // Deactivated, since the bbcode parser can handle with it - and it destroys posts with some smileys that contain "<" //if((strpos($arr['body'],'<') !== false) || (strpos($arr['body'],'>') !== false)) @@ -1355,26 +1368,37 @@ function item_store($arr,$force_parent = false, $notify = false, $dontcache = fa } } - $r = q("SELECT `id` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1", + $r = q("SELECT `id` FROM `item` WHERE `uri` = '%s' AND `network` = '%s' AND `uid` = %d LIMIT 1", dbesc($arr['uri']), + dbesc($arr['network']), intval($arr['uid']) ); - if($r && count($r)) { logger('duplicated item with the same uri found. ' . print_r($arr,true)); return 0; - } else { - // Check for an existing post with the same content. There seems to be a problem with OStatus. - $r = q("SELECT `id` FROM `item` WHERE `body` = '%s' AND `created` = '%s' AND `contact-id` = %d AND `uid` = %d LIMIT 1", - dbesc($arr['body']), - dbesc($arr['created']), - intval($arr['contact-id']), - intval($arr['uid']) - ); - if($r && count($r)) { - logger('duplicated item with the same body found. ' . print_r($arr,true)); - return 0; - } + } + + $r = q("SELECT `id` FROM `item` WHERE `plink` = '%s' AND `network` = '%s' AND `uid` = %d LIMIT 1", + dbesc($arr['plink']), + dbesc($arr['network']), + intval($arr['uid']) + ); + if($r && count($r)) { + logger('duplicated item with the same plink found. ' . print_r($arr,true)); + return 0; + } + + // Check for an existing post with the same content. There seems to be a problem with OStatus. + $r = q("SELECT `id` FROM `item` WHERE `body` = '%s' AND `network` = '%s' AND `created` = '%s' AND `contact-id` = %d AND `uid` = %d LIMIT 1", + dbesc($arr['body']), + dbesc($arr['network']), + dbesc($arr['created']), + intval($arr['contact-id']), + intval($arr['uid']) + ); + if($r && count($r)) { + logger('duplicated item with the same body found. ' . print_r($arr,true)); + return 0; } // Is this item available in the global items (with uid=0)? diff --git a/include/ostatus_conversation.php b/include/ostatus_conversation.php index da8dda292d..f21f8248f8 100644 --- a/include/ostatus_conversation.php +++ b/include/ostatus_conversation.php @@ -143,6 +143,8 @@ function complete_conversation($itemid, $conversation_url, $only_add_conversatio $plink = $single_conv->provider->url."notice/".$single_conv->statusnet_notice_info->local_id; elseif (isset($single_conv->provider->url) AND isset($single_conv->statusnet->notice_info->local_id)) $plink = $single_conv->provider->url."notice/".$single_conv->statusnet->notice_info->local_id; + elseif (isset($single_conv->provider->url) AND isset($single_conv->status_net->notice_info->local_id)) + $plink = $single_conv->provider->url."notice/".$single_conv->status_net->notice_info->local_id; if (@!$single_conv->id) continue; @@ -153,8 +155,9 @@ function complete_conversation($itemid, $conversation_url, $only_add_conversatio if ($first_id == "") { $first_id = $single_conv->id; - $new_parents = q("SELECT `id`, `uri`, `contact-id`, `type`, `verb`, `visible` FROM `item` WHERE `uid` = %d AND `uri` = '%s' LIMIT 1", - intval($message["uid"]), dbesc($first_id)); + $new_parents = q("SELECT `id`, `uri`, `contact-id`, `type`, `verb`, `visible` FROM `item` WHERE `uid` = %d AND `uri` = '%s' AND `network` IN ('%s','%s') LIMIT 1", + intval($message["uid"]), dbesc($first_id), + dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DFRN)); if ($new_parents) { $parent = $new_parents[0]; logger('adopting new parent '.$parent["id"].' for '.$itemid); @@ -169,17 +172,21 @@ function complete_conversation($itemid, $conversation_url, $only_add_conversatio else $parent_uri = $parent["uri"]; - $message_exists = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `plink` = '%s' LIMIT 1", - intval($message["uid"]), dbesc($plink)); + $message_exists = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `plink` = '%s' AND `network` IN ('%s','%s') LIMIT 1", + intval($message["uid"]), dbesc($plink), + dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DFRN)); if (!$message_exists) - $message_exists = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s' LIMIT 1", - intval($message["uid"]), dbesc($single_conv->id)); + $message_exists = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s' AND `network` IN ('%s','%s') LIMIT 1", + intval($message["uid"]), dbesc($single_conv->id), + dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DFRN)); if ($message_exists) { if ($parent["id"] != 0) { $existing_message = $message_exists[0]; + logger('updating id '.$existing_message["id"].' to parent '.$parent["id"].' uri '.$parent["uri"].' thread '.$parent_uri, LOGGER_DEBUG); + // This is partly bad, since the entry in the thread table isn't updated $r = q("UPDATE `item` SET `parent` = %d, `parent-uri` = '%s', `thr-parent` = '%s' WHERE `id` = %d", intval($parent["id"]), @@ -229,7 +236,9 @@ function complete_conversation($itemid, $conversation_url, $only_add_conversatio $arr["author-avatar"] = $single_conv->actor->image->url; $arr["body"] = html2bbcode($single_conv->content); - if (isset($single_conv->statusnet->notice_info->source)) + if (isset($single_conv->status_net->notice_info->source)) + $arr["app"] = strip_tags($single_conv->status_net->notice_info->source); + elseif (isset($single_conv->statusnet->notice_info->source)) $arr["app"] = strip_tags($single_conv->statusnet->notice_info->source); elseif (isset($single_conv->statusnet_notice_info->source)) $arr["app"] = strip_tags($single_conv->statusnet_notice_info->source); From bfcd3bbc9ec9b0c75ad97743167e5e6893b9bfd9 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Wed, 27 May 2015 09:58:20 +0200 Subject: [PATCH 153/306] CS update to the strings --- view/cs/messages.po | 1828 ++++++++++++++++++++++--------------------- view/cs/strings.php | 21 +- 2 files changed, 940 insertions(+), 909 deletions(-) diff --git a/view/cs/messages.po b/view/cs/messages.po index c52e3922ac..6ca450ea91 100644 --- a/view/cs/messages.po +++ b/view/cs/messages.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-04-04 17:54+0200\n" -"PO-Revision-Date: 2015-04-13 17:40+0000\n" +"POT-Creation-Date: 2015-05-21 10:43+0200\n" +"PO-Revision-Date: 2015-05-23 07:28+0000\n" "Last-Translator: Michal Šupler \n" "Language-Team: Czech (http://www.transifex.com/projects/p/friendica/language/cs/)\n" "MIME-Version: 1.0\n" @@ -25,15 +25,15 @@ msgstr "" #: ../../view/theme/diabook/config.php:148 #: ../../view/theme/diabook/theme.php:633 #: ../../view/theme/quattro/config.php:64 ../../view/theme/dispy/config.php:70 -#: ../../object/Item.php:678 ../../mod/contacts.php:492 +#: ../../object/Item.php:681 ../../mod/contacts.php:562 #: ../../mod/manage.php:110 ../../mod/fsuggest.php:107 #: ../../mod/photos.php:1084 ../../mod/photos.php:1203 #: ../../mod/photos.php:1514 ../../mod/photos.php:1565 #: ../../mod/photos.php:1609 ../../mod/photos.php:1697 -#: ../../mod/invite.php:140 ../../mod/events.php:478 ../../mod/mood.php:137 +#: ../../mod/invite.php:140 ../../mod/events.php:491 ../../mod/mood.php:137 #: ../../mod/message.php:335 ../../mod/message.php:564 #: ../../mod/profiles.php:686 ../../mod/install.php:248 -#: ../../mod/install.php:286 ../../mod/crepair.php:186 +#: ../../mod/install.php:286 ../../mod/crepair.php:190 #: ../../mod/content.php:710 ../../mod/poke.php:199 ../../mod/localtime.php:45 msgid "Submit" msgstr "Odeslat" @@ -69,7 +69,7 @@ msgstr "Barevné schéma" msgid "Set style" msgstr "Nastavit styl" -#: ../../view/theme/duepuntozero/config.php:44 ../../include/text.php:1719 +#: ../../view/theme/duepuntozero/config.php:44 ../../include/text.php:1729 #: ../../include/user.php:247 msgid "default" msgstr "standardní" @@ -204,9 +204,9 @@ msgstr "Domů" msgid "Your posts and conversations" msgstr "Vaše příspěvky a konverzace" -#: ../../view/theme/diabook/theme.php:124 ../../boot.php:2133 +#: ../../view/theme/diabook/theme.php:124 ../../boot.php:2132 #: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:87 -#: ../../include/nav.php:77 ../../mod/profperm.php:103 +#: ../../include/nav.php:77 ../../mod/profperm.php:104 #: ../../mod/newmember.php:32 msgid "Profile" msgstr "Profil" @@ -215,8 +215,8 @@ msgstr "Profil" msgid "Your profile page" msgstr "Vaše profilová stránka" -#: ../../view/theme/diabook/theme.php:125 ../../include/nav.php:177 -#: ../../mod/contacts.php:718 +#: ../../view/theme/diabook/theme.php:125 ../../include/nav.php:178 +#: ../../mod/contacts.php:788 msgid "Contacts" msgstr "Kontakty" @@ -224,7 +224,7 @@ msgstr "Kontakty" msgid "Your contacts" msgstr "Vaše kontakty" -#: ../../view/theme/diabook/theme.php:126 ../../boot.php:2140 +#: ../../view/theme/diabook/theme.php:126 ../../boot.php:2139 #: ../../include/nav.php:78 ../../mod/fbrowser.php:25 msgid "Photos" msgstr "Fotografie" @@ -233,8 +233,8 @@ msgstr "Fotografie" msgid "Your photos" msgstr "Vaše fotky" -#: ../../view/theme/diabook/theme.php:127 ../../boot.php:2157 -#: ../../include/nav.php:80 ../../mod/events.php:370 +#: ../../view/theme/diabook/theme.php:127 ../../boot.php:2156 +#: ../../include/nav.php:80 ../../mod/events.php:382 msgid "Events" msgstr "Události" @@ -256,12 +256,12 @@ msgid "Community" msgstr "Komunita" #: ../../view/theme/diabook/theme.php:463 ../../include/conversation.php:118 -#: ../../include/conversation.php:245 ../../include/text.php:1983 +#: ../../include/conversation.php:245 ../../include/text.php:1993 msgid "event" msgstr "událost" #: ../../view/theme/diabook/theme.php:466 -#: ../../view/theme/diabook/theme.php:475 ../../include/diaspora.php:2011 +#: ../../view/theme/diabook/theme.php:475 ../../include/diaspora.php:2060 #: ../../include/conversation.php:121 ../../include/conversation.php:130 #: ../../include/conversation.php:248 ../../include/conversation.php:257 #: ../../mod/like.php:149 ../../mod/like.php:319 ../../mod/subthread.php:87 @@ -269,14 +269,14 @@ msgstr "událost" msgid "status" msgstr "Stav" -#: ../../view/theme/diabook/theme.php:471 ../../include/diaspora.php:2011 +#: ../../view/theme/diabook/theme.php:471 ../../include/diaspora.php:2060 #: ../../include/conversation.php:126 ../../include/conversation.php:253 -#: ../../include/text.php:1985 ../../mod/like.php:149 +#: ../../include/text.php:1995 ../../mod/like.php:149 #: ../../mod/subthread.php:87 ../../mod/tagger.php:62 msgid "photo" msgstr "fotografie" -#: ../../view/theme/diabook/theme.php:480 ../../include/diaspora.php:2027 +#: ../../view/theme/diabook/theme.php:480 ../../include/diaspora.php:2076 #: ../../include/conversation.php:137 ../../mod/like.php:166 #, php-format msgid "%1$s likes %2$s's %3$s" @@ -321,8 +321,8 @@ msgid "Invite Friends" msgstr "Pozvat přátele" #: ../../view/theme/diabook/theme.php:544 -#: ../../view/theme/diabook/theme.php:648 ../../include/nav.php:172 -#: ../../mod/settings.php:90 ../../mod/admin.php:1104 ../../mod/admin.php:1325 +#: ../../view/theme/diabook/theme.php:648 ../../include/nav.php:173 +#: ../../mod/settings.php:90 ../../mod/admin.php:1107 ../../mod/admin.php:1328 #: ../../mod/newmember.php:22 msgid "Settings" msgstr "Nastavení" @@ -359,40 +359,42 @@ msgstr "Velikost písma textů" msgid "Set colour scheme" msgstr "Nastavit barevné schéma" -#: ../../index.php:211 ../../mod/apps.php:7 +#: ../../index.php:225 ../../mod/apps.php:7 msgid "You must be logged in to use addons. " msgstr "Musíte být přihlášeni pro použití rozšíření." -#: ../../index.php:255 ../../mod/help.php:42 +#: ../../index.php:269 ../../mod/p.php:16 ../../mod/p.php:25 +#: ../../mod/help.php:42 msgid "Not Found" msgstr "Nenalezen" -#: ../../index.php:258 ../../mod/help.php:45 +#: ../../index.php:272 ../../mod/help.php:45 msgid "Page not found." msgstr "Stránka nenalezena" -#: ../../index.php:367 ../../mod/group.php:72 ../../mod/profperm.php:19 +#: ../../index.php:381 ../../mod/group.php:72 ../../mod/profperm.php:19 msgid "Permission denied" msgstr "Nedostatečné oprávnění" -#: ../../index.php:368 ../../include/items.php:4815 ../../mod/attach.php:33 +#: ../../index.php:382 ../../include/items.php:4838 ../../mod/attach.php:33 #: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33 #: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103 #: ../../mod/group.php:19 ../../mod/delegate.php:12 #: ../../mod/notifications.php:66 ../../mod/settings.php:20 -#: ../../mod/settings.php:107 ../../mod/settings.php:606 -#: ../../mod/contacts.php:258 ../../mod/wall_attach.php:55 +#: ../../mod/settings.php:107 ../../mod/settings.php:608 +#: ../../mod/contacts.php:322 ../../mod/wall_attach.php:55 #: ../../mod/register.php:42 ../../mod/manage.php:96 ../../mod/editpost.php:10 #: ../../mod/regmod.php:110 ../../mod/api.php:26 ../../mod/api.php:31 #: ../../mod/suggest.php:58 ../../mod/nogroup.php:25 ../../mod/fsuggest.php:78 #: ../../mod/viewcontacts.php:24 ../../mod/wall_upload.php:66 #: ../../mod/notes.php:20 ../../mod/network.php:4 ../../mod/photos.php:134 -#: ../../mod/photos.php:1050 ../../mod/follow.php:9 ../../mod/uimport.php:23 -#: ../../mod/invite.php:15 ../../mod/invite.php:101 ../../mod/events.php:140 -#: ../../mod/mood.php:114 ../../mod/message.php:38 ../../mod/message.php:174 +#: ../../mod/photos.php:1050 ../../mod/follow.php:9 ../../mod/follow.php:39 +#: ../../mod/follow.php:78 ../../mod/uimport.php:23 ../../mod/invite.php:15 +#: ../../mod/invite.php:101 ../../mod/events.php:152 ../../mod/mood.php:114 +#: ../../mod/message.php:38 ../../mod/message.php:174 #: ../../mod/profiles.php:165 ../../mod/profiles.php:618 #: ../../mod/install.php:151 ../../mod/crepair.php:119 ../../mod/poke.php:135 -#: ../../mod/display.php:499 ../../mod/dfrn_confirm.php:55 +#: ../../mod/display.php:501 ../../mod/dfrn_confirm.php:55 #: ../../mod/item.php:169 ../../mod/item.php:185 #: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169 #: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193 @@ -400,53 +402,22 @@ msgstr "Nedostatečné oprávnění" msgid "Permission denied." msgstr "Přístup odmítnut." -#: ../../index.php:427 +#: ../../index.php:441 msgid "toggle mobile" msgstr "přepnout mobil" -#: ../../addon-wrk/openidserver/lib/render/trust.php:30 -#, php-format -msgid "Do you wish to confirm your identity (%s) with %s" -msgstr "Přejete si potvrdit vaši identitu (%s) s %s" - -#: ../../addon-wrk/openidserver/lib/render/trust.php:43 -#: ../../mod/dfrn_request.php:676 -msgid "Confirm" -msgstr "Potvrdit" - -#: ../../addon-wrk/openidserver/lib/render/trust.php:44 -msgid "Do not confirm" -msgstr "Nepotvrzovat" - -#: ../../addon-wrk/openidserver/lib/render/trust.php:48 -msgid "Trust This Site" -msgstr "Důvěřovat tomuto webu" - -#: ../../addon-wrk/openidserver/lib/render/trust.php:53 -msgid "No Identifier Sent" -msgstr "Nezaslán žádný identifikátor" - -#: ../../addon-wrk/openidserver/lib/render/wronguser.php:5 -msgid "Requested identity don't match logged in user." -msgstr "Požadovaná identita neodpovídá přihlášenému uživateli" - -#: ../../addon-wrk/openidserver/lib/render.php:27 -#, php-format -msgid "Please wait; you are being redirected to <%s>" -msgstr "Čekejte prosím, budete přesměrován na <%s>" - #: ../../boot.php:749 msgid "Delete this item?" msgstr "Odstranit tuto položku?" -#: ../../boot.php:750 ../../object/Item.php:361 ../../object/Item.php:677 +#: ../../boot.php:750 ../../object/Item.php:364 ../../object/Item.php:680 #: ../../mod/photos.php:1564 ../../mod/photos.php:1608 #: ../../mod/photos.php:1696 ../../mod/content.php:709 msgid "Comment" msgstr "Okomentovat" #: ../../boot.php:751 ../../include/contact_widgets.php:205 -#: ../../object/Item.php:390 ../../mod/content.php:606 +#: ../../object/Item.php:393 ../../mod/content.php:606 msgid "show more" msgstr "zobrazit více" @@ -529,7 +500,7 @@ msgid "Edit profile" msgstr "Upravit profil" #: ../../boot.php:1557 ../../include/contact_widgets.php:10 -#: ../../mod/suggest.php:90 ../../mod/match.php:58 +#: ../../mod/suggest.php:90 ../../mod/match.php:63 msgid "Connect" msgstr "Spojit" @@ -537,7 +508,7 @@ msgstr "Spojit" msgid "Message" msgstr "Zpráva" -#: ../../boot.php:1595 ../../include/nav.php:175 +#: ../../boot.php:1595 ../../include/nav.php:176 msgid "Profiles" msgstr "Profily" @@ -565,8 +536,8 @@ msgstr "viditelné pro všechny" msgid "Edit visibility" msgstr "Upravit viditelnost" -#: ../../boot.php:1637 ../../include/event.php:40 -#: ../../include/bb2diaspora.php:155 ../../mod/events.php:471 +#: ../../boot.php:1637 ../../include/event.php:42 +#: ../../include/bb2diaspora.php:155 ../../mod/events.php:483 #: ../../mod/directory.php:136 msgid "Location:" msgstr "Místo:" @@ -591,71 +562,71 @@ msgstr "Domácí stránka:" msgid "About:" msgstr "O mě:" -#: ../../boot.php:1711 +#: ../../boot.php:1710 msgid "Network:" msgstr "Síť:" -#: ../../boot.php:1743 ../../boot.php:1829 +#: ../../boot.php:1742 ../../boot.php:1828 msgid "g A l F d" msgstr "g A l F d" -#: ../../boot.php:1744 ../../boot.php:1830 +#: ../../boot.php:1743 ../../boot.php:1829 msgid "F d" msgstr "d. F" -#: ../../boot.php:1789 ../../boot.php:1877 +#: ../../boot.php:1788 ../../boot.php:1876 msgid "[today]" msgstr "[Dnes]" -#: ../../boot.php:1801 +#: ../../boot.php:1800 msgid "Birthday Reminders" msgstr "Připomínka narozenin" -#: ../../boot.php:1802 +#: ../../boot.php:1801 msgid "Birthdays this week:" msgstr "Narozeniny tento týden:" -#: ../../boot.php:1864 +#: ../../boot.php:1863 msgid "[No description]" msgstr "[Žádný popis]" -#: ../../boot.php:1888 +#: ../../boot.php:1887 msgid "Event Reminders" msgstr "Připomenutí událostí" -#: ../../boot.php:1889 +#: ../../boot.php:1888 msgid "Events this week:" msgstr "Události tohoto týdne:" -#: ../../boot.php:2126 ../../include/nav.php:76 +#: ../../boot.php:2125 ../../include/nav.php:76 msgid "Status" msgstr "Stav" -#: ../../boot.php:2129 +#: ../../boot.php:2128 msgid "Status Messages and Posts" msgstr "Statusové zprávy a příspěvky " -#: ../../boot.php:2136 +#: ../../boot.php:2135 msgid "Profile Details" msgstr "Detaily profilu" -#: ../../boot.php:2143 ../../mod/photos.php:52 +#: ../../boot.php:2142 ../../mod/photos.php:52 msgid "Photo Albums" msgstr "Fotoalba" -#: ../../boot.php:2147 ../../boot.php:2150 ../../include/nav.php:79 +#: ../../boot.php:2146 ../../boot.php:2149 ../../include/nav.php:79 msgid "Videos" msgstr "Videa" -#: ../../boot.php:2160 +#: ../../boot.php:2159 msgid "Events and Calendar" msgstr "Události a kalendář" -#: ../../boot.php:2164 ../../mod/notes.php:44 +#: ../../boot.php:2163 ../../mod/notes.php:44 msgid "Personal Notes" msgstr "Osobní poznámky" -#: ../../boot.php:2167 +#: ../../boot.php:2166 msgid "Only You Can See This" msgstr "Toto můžete vidět jen Vy" @@ -833,57 +804,57 @@ msgstr "Utlumit upozornění na přísvěvky" msgid "Ability to mute notifications for a thread" msgstr "Možnost stlumit upozornění pro vlákno" -#: ../../include/items.php:2307 ../../include/datetime.php:477 +#: ../../include/items.php:2330 ../../include/datetime.php:477 #, php-format msgid "%s's birthday" msgstr "%s má narozeniny" -#: ../../include/items.php:2308 ../../include/datetime.php:478 +#: ../../include/items.php:2331 ../../include/datetime.php:478 #, php-format msgid "Happy Birthday %s" msgstr "Veselé narozeniny %s" -#: ../../include/items.php:4111 ../../mod/dfrn_request.php:717 -#: ../../mod/dfrn_confirm.php:752 +#: ../../include/items.php:4135 ../../mod/dfrn_request.php:732 +#: ../../mod/dfrn_confirm.php:753 msgid "[Name Withheld]" msgstr "[Jméno odepřeno]" -#: ../../include/items.php:4619 ../../mod/admin.php:169 -#: ../../mod/admin.php:1052 ../../mod/admin.php:1265 ../../mod/viewsrc.php:15 -#: ../../mod/notice.php:15 ../../mod/display.php:82 ../../mod/display.php:284 -#: ../../mod/display.php:503 +#: ../../include/items.php:4642 ../../mod/admin.php:169 +#: ../../mod/admin.php:1055 ../../mod/admin.php:1268 ../../mod/viewsrc.php:15 +#: ../../mod/notice.php:15 ../../mod/display.php:82 ../../mod/display.php:286 +#: ../../mod/display.php:505 msgid "Item not found." msgstr "Položka nenalezena." -#: ../../include/items.php:4658 +#: ../../include/items.php:4681 msgid "Do you really want to delete this item?" msgstr "Opravdu chcete smazat tuto položku?" -#: ../../include/items.php:4660 ../../mod/settings.php:1015 -#: ../../mod/settings.php:1021 ../../mod/settings.php:1029 -#: ../../mod/settings.php:1033 ../../mod/settings.php:1038 -#: ../../mod/settings.php:1044 ../../mod/settings.php:1050 -#: ../../mod/settings.php:1056 ../../mod/settings.php:1086 -#: ../../mod/settings.php:1087 ../../mod/settings.php:1088 -#: ../../mod/settings.php:1089 ../../mod/settings.php:1090 -#: ../../mod/contacts.php:341 ../../mod/register.php:233 -#: ../../mod/dfrn_request.php:830 ../../mod/api.php:105 -#: ../../mod/suggest.php:29 ../../mod/message.php:209 +#: ../../include/items.php:4683 ../../mod/settings.php:1035 +#: ../../mod/settings.php:1041 ../../mod/settings.php:1049 +#: ../../mod/settings.php:1053 ../../mod/settings.php:1058 +#: ../../mod/settings.php:1064 ../../mod/settings.php:1070 +#: ../../mod/settings.php:1076 ../../mod/settings.php:1106 +#: ../../mod/settings.php:1107 ../../mod/settings.php:1108 +#: ../../mod/settings.php:1109 ../../mod/settings.php:1110 +#: ../../mod/contacts.php:411 ../../mod/register.php:233 +#: ../../mod/dfrn_request.php:845 ../../mod/api.php:105 +#: ../../mod/suggest.php:29 ../../mod/follow.php:54 ../../mod/message.php:209 #: ../../mod/profiles.php:661 ../../mod/profiles.php:664 msgid "Yes" msgstr "Ano" -#: ../../include/items.php:4663 ../../include/conversation.php:1128 -#: ../../mod/settings.php:620 ../../mod/settings.php:646 -#: ../../mod/contacts.php:344 ../../mod/editpost.php:148 -#: ../../mod/dfrn_request.php:844 ../../mod/fbrowser.php:81 +#: ../../include/items.php:4686 ../../include/conversation.php:1128 +#: ../../mod/settings.php:622 ../../mod/settings.php:648 +#: ../../mod/contacts.php:414 ../../mod/editpost.php:148 +#: ../../mod/dfrn_request.php:859 ../../mod/fbrowser.php:81 #: ../../mod/fbrowser.php:116 ../../mod/suggest.php:32 -#: ../../mod/photos.php:203 ../../mod/photos.php:292 ../../mod/tagrm.php:11 -#: ../../mod/tagrm.php:94 ../../mod/message.php:212 +#: ../../mod/photos.php:203 ../../mod/photos.php:292 ../../mod/follow.php:65 +#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/message.php:212 msgid "Cancel" msgstr "Zrušit" -#: ../../include/items.php:4881 +#: ../../include/items.php:4904 msgid "Archives" msgstr "Archív" @@ -918,18 +889,22 @@ msgstr "Editovat skupinu" msgid "Create a new group" msgstr "Vytvořit novou skupinu" -#: ../../include/group.php:273 +#: ../../include/group.php:273 ../../mod/group.php:94 ../../mod/group.php:180 +msgid "Group Name: " +msgstr "Název skupiny: " + +#: ../../include/group.php:275 msgid "Contacts not in any group" msgstr "Kontakty, které nejsou v žádné skupině" -#: ../../include/group.php:275 ../../mod/network.php:195 +#: ../../include/group.php:277 ../../mod/network.php:195 msgid "add" msgstr "přidat" #: ../../include/Photo_old.php:911 ../../include/Photo_old.php:926 #: ../../include/Photo_old.php:933 ../../include/Photo_old.php:955 -#: ../../include/Photo.php:933 ../../include/Photo.php:948 -#: ../../include/Photo.php:955 ../../include/Photo.php:977 +#: ../../include/Photo.php:951 ../../include/Photo.php:966 +#: ../../include/Photo.php:973 ../../include/Photo.php:995 #: ../../include/message.php:144 ../../mod/wall_upload.php:169 #: ../../mod/wall_upload.php:178 ../../mod/wall_upload.php:185 #: ../../mod/item.php:485 @@ -977,7 +952,7 @@ msgstr "Připojit / Následovat" msgid "Examples: Robert Morgenstein, Fishing" msgstr "Příklady: Robert Morgenstein, rybaření" -#: ../../include/contact_widgets.php:34 ../../mod/contacts.php:724 +#: ../../include/contact_widgets.php:34 ../../mod/contacts.php:794 #: ../../mod/directory.php:63 msgid "Find" msgstr "Najít" @@ -1002,7 +977,7 @@ msgstr "Všechno" msgid "Categories" msgstr "Kategorie" -#: ../../include/contact_widgets.php:200 ../../mod/contacts.php:439 +#: ../../include/contact_widgets.php:200 ../../mod/contacts.php:509 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" @@ -1033,233 +1008,233 @@ msgstr "neodpovídat" msgid "%s " msgstr "%s " -#: ../../include/enotify.php:68 +#: ../../include/enotify.php:78 #, php-format msgid "[Friendica:Notify] New mail received at %s" msgstr "[Friendica:Upozornění] Obdržena nová zpráva na %s" -#: ../../include/enotify.php:70 +#: ../../include/enotify.php:80 #, php-format msgid "%1$s sent you a new private message at %2$s." msgstr "%1$s Vám poslal novou soukromou zprávu na %2$s." -#: ../../include/enotify.php:71 +#: ../../include/enotify.php:81 #, php-format msgid "%1$s sent you %2$s." msgstr "%1$s Vám poslal %2$s." -#: ../../include/enotify.php:71 +#: ../../include/enotify.php:81 msgid "a private message" msgstr "soukromá zpráva" -#: ../../include/enotify.php:72 +#: ../../include/enotify.php:82 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "Prosím navštivte %s pro zobrazení Vašich soukromých zpráv a možnost na ně odpovědět." -#: ../../include/enotify.php:124 +#: ../../include/enotify.php:134 #, php-format msgid "%1$s commented on [url=%2$s]a %3$s[/url]" msgstr "%1$s okomentoval na [url=%2$s]%3$s[/url]" -#: ../../include/enotify.php:131 +#: ../../include/enotify.php:141 #, php-format msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" msgstr "%1$s okomentoval na [url=%2$s]%3$s's %4$s[/url]" -#: ../../include/enotify.php:139 +#: ../../include/enotify.php:149 #, php-format msgid "%1$s commented on [url=%2$s]your %3$s[/url]" msgstr "%1$s okomentoval na [url=%2$s]Váš %3$s[/url]" -#: ../../include/enotify.php:149 +#: ../../include/enotify.php:159 #, php-format msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" msgstr "[Friendica:Upozornění] Komentář ke konverzaci #%1$d od %2$s" -#: ../../include/enotify.php:150 +#: ../../include/enotify.php:160 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "Uživatel %s okomentoval vámi sledovanou položku/konverzaci." -#: ../../include/enotify.php:153 ../../include/enotify.php:168 -#: ../../include/enotify.php:181 ../../include/enotify.php:194 -#: ../../include/enotify.php:212 ../../include/enotify.php:225 +#: ../../include/enotify.php:163 ../../include/enotify.php:178 +#: ../../include/enotify.php:191 ../../include/enotify.php:204 +#: ../../include/enotify.php:222 ../../include/enotify.php:235 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "Prosím navštivte %s pro zobrazení konverzace a možnosti odpovědět." -#: ../../include/enotify.php:160 +#: ../../include/enotify.php:170 #, php-format msgid "[Friendica:Notify] %s posted to your profile wall" msgstr "[Friendica:Upozornění] %s umístěn na Vaši profilovou zeď" -#: ../../include/enotify.php:162 +#: ../../include/enotify.php:172 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "%1$s přidal příspěvek na Vaši profilovou zeď na %2$s" -#: ../../include/enotify.php:164 +#: ../../include/enotify.php:174 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "%1$s napřidáno na [url=%2$s]na Vaši zeď[/url]" -#: ../../include/enotify.php:175 +#: ../../include/enotify.php:185 #, php-format msgid "[Friendica:Notify] %s tagged you" msgstr "[Friendica:Upozornění] %s Vás označil" -#: ../../include/enotify.php:176 +#: ../../include/enotify.php:186 #, php-format msgid "%1$s tagged you at %2$s" msgstr "%1$s Vás označil na %2$s" -#: ../../include/enotify.php:177 +#: ../../include/enotify.php:187 #, php-format msgid "%1$s [url=%2$s]tagged you[/url]." msgstr "%1$s [url=%2$s]Vás označil[/url]." -#: ../../include/enotify.php:188 +#: ../../include/enotify.php:198 #, php-format msgid "[Friendica:Notify] %s shared a new post" msgstr "[Friendica:Notify] %s nasdílel nový příspěvek" -#: ../../include/enotify.php:189 +#: ../../include/enotify.php:199 #, php-format msgid "%1$s shared a new post at %2$s" msgstr "%1$s nasdílel nový příspěvek na %2$s" -#: ../../include/enotify.php:190 +#: ../../include/enotify.php:200 #, php-format msgid "%1$s [url=%2$s]shared a post[/url]." msgstr "%1$s [url=%2$s]nasdílel příspěvek[/url]." -#: ../../include/enotify.php:202 +#: ../../include/enotify.php:212 #, php-format msgid "[Friendica:Notify] %1$s poked you" msgstr "[Friendica:Upozornění] %1$s Vás šťouchnul" -#: ../../include/enotify.php:203 +#: ../../include/enotify.php:213 #, php-format msgid "%1$s poked you at %2$s" msgstr "%1$s Vás šťouchnul na %2$s" -#: ../../include/enotify.php:204 +#: ../../include/enotify.php:214 #, php-format msgid "%1$s [url=%2$s]poked you[/url]." msgstr "Uživatel %1$s [url=%2$s]Vás šťouchnul[/url]." -#: ../../include/enotify.php:219 +#: ../../include/enotify.php:229 #, php-format msgid "[Friendica:Notify] %s tagged your post" msgstr "[Friendica:Upozornění] %s označil Váš příspěvek" -#: ../../include/enotify.php:220 +#: ../../include/enotify.php:230 #, php-format msgid "%1$s tagged your post at %2$s" msgstr "%1$s označil Váš příspěvek na %2$s" -#: ../../include/enotify.php:221 +#: ../../include/enotify.php:231 #, php-format msgid "%1$s tagged [url=%2$s]your post[/url]" msgstr "%1$s označil [url=%2$s]Váš příspěvek[/url]" -#: ../../include/enotify.php:232 +#: ../../include/enotify.php:242 msgid "[Friendica:Notify] Introduction received" msgstr "[Friendica:Upozornění] Obdrženo přestavení" -#: ../../include/enotify.php:233 +#: ../../include/enotify.php:243 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "Obdržel jste žádost o spojení od '%1$s' na %2$s" -#: ../../include/enotify.php:234 +#: ../../include/enotify.php:244 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "Obdržel jste [url=%1$s]žádost o spojení[/url] od %2$s." -#: ../../include/enotify.php:237 ../../include/enotify.php:279 +#: ../../include/enotify.php:247 ../../include/enotify.php:289 #, php-format msgid "You may visit their profile at %s" msgstr "Můžete navštívit jejich profil na %s" -#: ../../include/enotify.php:239 +#: ../../include/enotify.php:249 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "Prosím navštivte %s pro schválení či zamítnutí představení." -#: ../../include/enotify.php:247 +#: ../../include/enotify.php:257 msgid "[Friendica:Notify] A new person is sharing with you" msgstr "[Friendica:Upozornění] Nový člověk s vámi sdílí" -#: ../../include/enotify.php:248 ../../include/enotify.php:249 +#: ../../include/enotify.php:258 ../../include/enotify.php:259 #, php-format msgid "%1$s is sharing with you at %2$s" msgstr "uživatel %1$s sdílí s vámi ma %2$s" -#: ../../include/enotify.php:255 +#: ../../include/enotify.php:265 msgid "[Friendica:Notify] You have a new follower" msgstr "[Friendica:Upozornění] Máte nového následovníka" -#: ../../include/enotify.php:256 ../../include/enotify.php:257 +#: ../../include/enotify.php:266 ../../include/enotify.php:267 #, php-format msgid "You have a new follower at %2$s : %1$s" msgstr "Máte nového následovníka na %2$s : %1$s" -#: ../../include/enotify.php:270 +#: ../../include/enotify.php:280 msgid "[Friendica:Notify] Friend suggestion received" msgstr "[Friendica:Upozornění] Obdržen návrh na přátelství" -#: ../../include/enotify.php:271 +#: ../../include/enotify.php:281 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "Obdržel jste návrh přátelství od '%1$s' na %2$s" -#: ../../include/enotify.php:272 +#: ../../include/enotify.php:282 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "Obdržel jste [url=%1$s]návrh přátelství[/url] s %2$s from %3$s." -#: ../../include/enotify.php:277 +#: ../../include/enotify.php:287 msgid "Name:" msgstr "Jméno:" -#: ../../include/enotify.php:278 +#: ../../include/enotify.php:288 msgid "Photo:" msgstr "Foto:" -#: ../../include/enotify.php:281 +#: ../../include/enotify.php:291 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "Prosím navštivte %s pro schválení či zamítnutí doporučení." -#: ../../include/enotify.php:289 ../../include/enotify.php:302 +#: ../../include/enotify.php:299 ../../include/enotify.php:312 msgid "[Friendica:Notify] Connection accepted" msgstr "[Friendica:Upozornění] Spojení akceptováno" -#: ../../include/enotify.php:290 ../../include/enotify.php:303 +#: ../../include/enotify.php:300 ../../include/enotify.php:313 #, php-format msgid "'%1$s' has acepted your connection request at %2$s" msgstr "'%1$s' akceptoval váš požadavek na spojení na %2$s" -#: ../../include/enotify.php:291 ../../include/enotify.php:304 +#: ../../include/enotify.php:301 ../../include/enotify.php:314 #, php-format msgid "%2$s has accepted your [url=%1$s]connection request[/url]." msgstr "%2$s akceptoval váš [url=%1$s]požadavek na spojení[/url]." -#: ../../include/enotify.php:294 +#: ../../include/enotify.php:304 msgid "" "You are now mutual friends and may exchange status updates, photos, and email\n" "\twithout restriction." msgstr "Jste nyní vzájemnými přáteli a můžete si vyměňovat aktualizace statusu, fotografií a emailů\nbez omezení." -#: ../../include/enotify.php:297 ../../include/enotify.php:311 +#: ../../include/enotify.php:307 ../../include/enotify.php:321 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "Prosím navštivte %s pokud chcete změnit tento vztah." -#: ../../include/enotify.php:307 +#: ../../include/enotify.php:317 #, php-format msgid "" "'%1$s' has chosen to accept you a \"fan\", which restricts some forms of " @@ -1268,83 +1243,83 @@ msgid "" "automatically." msgstr "'%1$s' vás přijal jako \"fanouška\", což omezuje některé formy komunikace - jako jsou soukromé zprávy a některé interakce na profilech. Pokud se jedná o celebritu, případně o komunitní stránky, pak bylo toto nastavení provedeno automaticky.." -#: ../../include/enotify.php:309 +#: ../../include/enotify.php:319 #, php-format msgid "" "'%1$s' may choose to extend this into a two-way or more permissive " "relationship in the future. " msgstr "''%1$s' se může rozhodnout rozšířit tento vztah na oboustraný nebo méně restriktivní" -#: ../../include/enotify.php:322 +#: ../../include/enotify.php:332 msgid "[Friendica System:Notify] registration request" msgstr "[Systém Friendica :Upozornění] registrační požadavek" -#: ../../include/enotify.php:323 +#: ../../include/enotify.php:333 #, php-format msgid "You've received a registration request from '%1$s' at %2$s" msgstr "Obdržel jste požadavek na registraci od '%1$s' na %2$s" -#: ../../include/enotify.php:324 +#: ../../include/enotify.php:334 #, php-format msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgstr "Obdržel jste [url=%1$s]požadavek na registraci[/url] od '%2$s'." -#: ../../include/enotify.php:327 +#: ../../include/enotify.php:337 #, php-format msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" msgstr "Plné jméno:\t%1$s\\nUmístění webu:\t%2$s\\nPřihlašovací účet:\t%3$s (%4$s)" -#: ../../include/enotify.php:330 +#: ../../include/enotify.php:340 #, php-format msgid "Please visit %s to approve or reject the request." msgstr "Prosím navštivte %s k odsouhlasení nebo k zamítnutí požadavku." -#: ../../include/api.php:304 ../../include/api.php:315 -#: ../../include/api.php:416 ../../include/api.php:1063 -#: ../../include/api.php:1065 +#: ../../include/api.php:310 ../../include/api.php:321 +#: ../../include/api.php:422 ../../include/api.php:1116 +#: ../../include/api.php:1118 msgid "User not found." msgstr "Uživatel nenalezen" -#: ../../include/api.php:770 +#: ../../include/api.php:776 #, php-format msgid "Daily posting limit of %d posts reached. The post was rejected." msgstr "Bylo dosaženo denního limitu %d odeslaných příspěvků. Příspěvek byl odmítnut." -#: ../../include/api.php:789 +#: ../../include/api.php:795 #, php-format msgid "Weekly posting limit of %d posts reached. The post was rejected." msgstr "Bylo týdenního limitu %d odeslaných příspěvků. Příspěvek byl odmítnut." -#: ../../include/api.php:808 +#: ../../include/api.php:814 #, php-format msgid "Monthly posting limit of %d posts reached. The post was rejected." msgstr "Bylo dosaženo měsíčního limitu %d odeslaných příspěvků. Příspěvek byl odmítnut." -#: ../../include/api.php:1271 +#: ../../include/api.php:1325 msgid "There is no status with this id." msgstr "Není tu žádný status s tímto id." -#: ../../include/api.php:1341 +#: ../../include/api.php:1399 msgid "There is no conversation with this id." msgstr "Nemáme žádnou konverzaci s tímto id." -#: ../../include/api.php:1613 +#: ../../include/api.php:1669 msgid "Invalid request." msgstr "Neplatný požadavek." -#: ../../include/api.php:1624 +#: ../../include/api.php:1680 msgid "Invalid item." msgstr "Neplatná položka." -#: ../../include/api.php:1634 +#: ../../include/api.php:1690 msgid "Invalid action. " msgstr "Neplatná akce" -#: ../../include/api.php:1642 +#: ../../include/api.php:1698 msgid "DB error" msgstr "DB chyba" -#: ../../include/network.php:890 +#: ../../include/network.php:959 msgid "view full size" msgstr "zobrazit v plné velikosti" @@ -1352,7 +1327,7 @@ msgstr "zobrazit v plné velikosti" msgid " on Last.fm" msgstr " na Last.fm" -#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1133 +#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1153 msgid "Full Name:" msgstr "Celé jméno:" @@ -1489,8 +1464,8 @@ msgstr "Aplikace" msgid "Addon applications, utilities, games" msgstr "Doplňkové aplikace, nástroje, hry" -#: ../../include/nav.php:119 ../../include/text.php:968 -#: ../../include/text.php:969 ../../mod/search.php:99 +#: ../../include/nav.php:119 ../../include/text.php:970 +#: ../../include/text.php:971 ../../mod/search.php:99 msgid "Search" msgstr "Vyhledávání" @@ -1538,87 +1513,87 @@ msgstr "Síťový Reset" msgid "Load Network page with no filters" msgstr "Načíst stránku Síť bez filtrů" -#: ../../include/nav.php:154 ../../mod/notifications.php:98 +#: ../../include/nav.php:153 ../../mod/notifications.php:98 msgid "Introductions" msgstr "Představení" -#: ../../include/nav.php:154 +#: ../../include/nav.php:153 msgid "Friend Requests" msgstr "Žádosti přátel" -#: ../../include/nav.php:155 ../../mod/notifications.php:224 +#: ../../include/nav.php:156 ../../mod/notifications.php:224 msgid "Notifications" msgstr "Upozornění" -#: ../../include/nav.php:156 +#: ../../include/nav.php:157 msgid "See all notifications" msgstr "Zobrazit všechny upozornění" -#: ../../include/nav.php:157 +#: ../../include/nav.php:158 msgid "Mark all system notifications seen" msgstr "Označit všechny upozornění systému jako přečtené" -#: ../../include/nav.php:161 ../../mod/message.php:182 +#: ../../include/nav.php:162 ../../mod/message.php:182 msgid "Messages" msgstr "Zprávy" -#: ../../include/nav.php:161 +#: ../../include/nav.php:162 msgid "Private mail" msgstr "Soukromá pošta" -#: ../../include/nav.php:162 +#: ../../include/nav.php:163 msgid "Inbox" msgstr "Doručená pošta" -#: ../../include/nav.php:163 +#: ../../include/nav.php:164 msgid "Outbox" msgstr "Odeslaná pošta" -#: ../../include/nav.php:164 ../../mod/message.php:9 +#: ../../include/nav.php:165 ../../mod/message.php:9 msgid "New Message" msgstr "Nová zpráva" -#: ../../include/nav.php:167 +#: ../../include/nav.php:168 msgid "Manage" msgstr "Spravovat" -#: ../../include/nav.php:167 +#: ../../include/nav.php:168 msgid "Manage other pages" msgstr "Spravovat jiné stránky" -#: ../../include/nav.php:170 ../../mod/settings.php:67 +#: ../../include/nav.php:171 ../../mod/settings.php:67 msgid "Delegations" msgstr "Delegace" -#: ../../include/nav.php:170 ../../mod/delegate.php:130 +#: ../../include/nav.php:171 ../../mod/delegate.php:130 msgid "Delegate Page Management" msgstr "Správa delegátů stránky" -#: ../../include/nav.php:172 +#: ../../include/nav.php:173 msgid "Account settings" msgstr "Nastavení účtu" -#: ../../include/nav.php:175 +#: ../../include/nav.php:176 msgid "Manage/Edit Profiles" msgstr "Spravovat/Editovat Profily" -#: ../../include/nav.php:177 +#: ../../include/nav.php:178 msgid "Manage/edit friends and contacts" msgstr "Spravovat/upravit přátelé a kontakty" -#: ../../include/nav.php:184 ../../mod/admin.php:130 +#: ../../include/nav.php:185 ../../mod/admin.php:130 msgid "Admin" msgstr "Administrace" -#: ../../include/nav.php:184 +#: ../../include/nav.php:185 msgid "Site setup and configuration" msgstr "Nastavení webu a konfigurace" -#: ../../include/nav.php:188 +#: ../../include/nav.php:189 msgid "Navigation" msgstr "Navigace" -#: ../../include/nav.php:188 +#: ../../include/nav.php:189 msgid "Site map" msgstr "Mapa webu" @@ -1730,16 +1705,16 @@ msgstr[2] "%d kontakty nenaimporovány" msgid "Done. You can now login with your username and password" msgstr "Hotovo. Nyní se můžete přihlásit se svými uživatelským účtem a heslem" -#: ../../include/event.php:11 ../../include/bb2diaspora.php:133 +#: ../../include/event.php:13 ../../include/bb2diaspora.php:133 #: ../../mod/localtime.php:12 msgid "l F d, Y \\@ g:i A" msgstr "l F d, Y \\@ g:i A" -#: ../../include/event.php:20 ../../include/bb2diaspora.php:139 +#: ../../include/event.php:22 ../../include/bb2diaspora.php:139 msgid "Starts:" msgstr "Začíná:" -#: ../../include/event.php:30 ../../include/bb2diaspora.php:147 +#: ../../include/event.php:32 ../../include/bb2diaspora.php:147 msgid "Finishes:" msgstr "Končí:" @@ -1799,11 +1774,11 @@ msgid "" "[pre]%s[/pre]" msgstr "Chybová zpráva je\n[pre]%s[/pre]" -#: ../../include/dbstructure.php:150 +#: ../../include/dbstructure.php:152 msgid "Errors encountered creating database tables." msgstr "Při vytváření databázových tabulek došlo k chybám." -#: ../../include/dbstructure.php:208 +#: ../../include/dbstructure.php:210 msgid "Errors encountered performing database changes." msgstr "Při provádění databázových změn došlo k chybám." @@ -1912,19 +1887,19 @@ msgstr "OK, pravděpodobně neškodný" msgid "Reputable, has my trust" msgstr "Renomovaný, má mou důvěru" -#: ../../include/contact_selectors.php:56 ../../mod/admin.php:571 +#: ../../include/contact_selectors.php:56 ../../mod/admin.php:573 msgid "Frequently" msgstr "Často" -#: ../../include/contact_selectors.php:57 ../../mod/admin.php:572 +#: ../../include/contact_selectors.php:57 ../../mod/admin.php:574 msgid "Hourly" msgstr "každou hodinu" -#: ../../include/contact_selectors.php:58 ../../mod/admin.php:573 +#: ../../include/contact_selectors.php:58 ../../mod/admin.php:575 msgid "Twice daily" msgstr "Dvakrát denně" -#: ../../include/contact_selectors.php:59 ../../mod/admin.php:574 +#: ../../include/contact_selectors.php:59 ../../mod/admin.php:576 msgid "Daily" msgstr "denně" @@ -1936,7 +1911,7 @@ msgstr "Týdenně" msgid "Monthly" msgstr "Měsíčně" -#: ../../include/contact_selectors.php:76 ../../mod/dfrn_request.php:836 +#: ../../include/contact_selectors.php:76 ../../mod/dfrn_request.php:851 msgid "Friendica" msgstr "Friendica" @@ -1949,13 +1924,13 @@ msgid "RSS/Atom" msgstr "RSS/Atom" #: ../../include/contact_selectors.php:79 -#: ../../include/contact_selectors.php:86 ../../mod/admin.php:1003 -#: ../../mod/admin.php:1015 ../../mod/admin.php:1016 ../../mod/admin.php:1031 +#: ../../include/contact_selectors.php:86 ../../mod/admin.php:1006 +#: ../../mod/admin.php:1018 ../../mod/admin.php:1019 ../../mod/admin.php:1034 msgid "Email" msgstr "E-mail" -#: ../../include/contact_selectors.php:80 ../../mod/settings.php:741 -#: ../../mod/dfrn_request.php:838 +#: ../../include/contact_selectors.php:80 ../../mod/settings.php:761 +#: ../../mod/dfrn_request.php:853 msgid "Diaspora" msgstr "Diaspora" @@ -2004,17 +1979,17 @@ msgstr "Statusnet" msgid "App.net" msgstr "App.net" -#: ../../include/diaspora.php:621 ../../include/conversation.php:172 -#: ../../mod/dfrn_confirm.php:486 +#: ../../include/diaspora.php:622 ../../include/conversation.php:172 +#: ../../mod/dfrn_confirm.php:487 #, php-format msgid "%1$s is now friends with %2$s" msgstr "%1$s je nyní přítel s %2$s" -#: ../../include/diaspora.php:704 +#: ../../include/diaspora.php:705 msgid "Sharing notification from Diaspora network" msgstr "Sdílení oznámení ze sítě Diaspora" -#: ../../include/diaspora.php:2444 +#: ../../include/diaspora.php:2493 msgid "Attachments:" msgstr "Přílohy:" @@ -2047,36 +2022,36 @@ msgstr "příspěvek/položka" msgid "%1$s marked %2$s's %3$s as favorite" msgstr "uživatel %1$s označil %2$s's %3$s jako oblíbeného" -#: ../../include/conversation.php:612 ../../object/Item.php:129 +#: ../../include/conversation.php:612 ../../object/Item.php:130 #: ../../mod/photos.php:1653 ../../mod/content.php:437 #: ../../mod/content.php:740 msgid "Select" msgstr "Vybrat" -#: ../../include/conversation.php:613 ../../object/Item.php:130 -#: ../../mod/group.php:171 ../../mod/settings.php:682 -#: ../../mod/contacts.php:733 ../../mod/admin.php:1007 +#: ../../include/conversation.php:613 ../../object/Item.php:131 +#: ../../mod/group.php:171 ../../mod/settings.php:684 +#: ../../mod/contacts.php:803 ../../mod/admin.php:1010 #: ../../mod/photos.php:1654 ../../mod/content.php:438 #: ../../mod/content.php:741 msgid "Delete" msgstr "Odstranit" -#: ../../include/conversation.php:653 ../../object/Item.php:326 -#: ../../object/Item.php:327 ../../mod/content.php:471 +#: ../../include/conversation.php:653 ../../object/Item.php:329 +#: ../../object/Item.php:330 ../../mod/content.php:471 #: ../../mod/content.php:852 ../../mod/content.php:853 #, php-format msgid "View %s's profile @ %s" msgstr "Zobrazit profil uživatele %s na %s" -#: ../../include/conversation.php:665 ../../object/Item.php:316 +#: ../../include/conversation.php:665 ../../object/Item.php:319 msgid "Categories:" msgstr "Kategorie:" -#: ../../include/conversation.php:666 ../../object/Item.php:317 +#: ../../include/conversation.php:666 ../../object/Item.php:320 msgid "Filed under:" msgstr "Vyplněn pod:" -#: ../../include/conversation.php:673 ../../object/Item.php:340 +#: ../../include/conversation.php:673 ../../object/Item.php:343 #: ../../mod/content.php:481 ../../mod/content.php:864 #, php-format msgid "%s from %s" @@ -2087,7 +2062,7 @@ msgid "View in context" msgstr "Pohled v kontextu" #: ../../include/conversation.php:691 ../../include/conversation.php:1108 -#: ../../object/Item.php:364 ../../mod/wallmessage.php:156 +#: ../../object/Item.php:367 ../../mod/wallmessage.php:156 #: ../../mod/editpost.php:124 ../../mod/photos.php:1545 #: ../../mod/message.php:334 ../../mod/message.php:565 #: ../../mod/content.php:499 ../../mod/content.php:883 @@ -2190,7 +2165,7 @@ msgstr "Poslat příspěvek na e-mail" msgid "Connectors disabled, since \"%s\" is enabled." msgstr "Kontektory deaktivovány, od \"%s\" je aktivován." -#: ../../include/conversation.php:1056 ../../mod/settings.php:1033 +#: ../../include/conversation.php:1056 ../../mod/settings.php:1053 msgid "Hide your profile details from unknown viewers?" msgstr "Skrýt Vaše profilové detaily před neznámými uživateli?" @@ -2286,10 +2261,10 @@ msgstr "Veřejný příspěvek" msgid "Example: bob@example.com, mary@example.com" msgstr "Příklad: bob@example.com, mary@example.com" -#: ../../include/conversation.php:1125 ../../object/Item.php:687 +#: ../../include/conversation.php:1125 ../../object/Item.php:690 #: ../../mod/editpost.php:145 ../../mod/photos.php:1566 #: ../../mod/photos.php:1610 ../../mod/photos.php:1698 -#: ../../mod/content.php:719 +#: ../../mod/events.php:489 ../../mod/content.php:719 msgid "Preview" msgstr "Náhled" @@ -2305,43 +2280,43 @@ msgstr "Zveřejnit na Groups" msgid "Private post" msgstr "Soukromý příspěvek" -#: ../../include/text.php:297 +#: ../../include/text.php:299 msgid "newer" msgstr "novější" -#: ../../include/text.php:299 +#: ../../include/text.php:301 msgid "older" msgstr "starší" -#: ../../include/text.php:304 +#: ../../include/text.php:306 msgid "prev" msgstr "předchozí" -#: ../../include/text.php:306 +#: ../../include/text.php:308 msgid "first" msgstr "první" -#: ../../include/text.php:338 +#: ../../include/text.php:340 msgid "last" msgstr "poslední" -#: ../../include/text.php:341 +#: ../../include/text.php:343 msgid "next" msgstr "další" -#: ../../include/text.php:396 +#: ../../include/text.php:398 msgid "Loading more entries..." msgstr "Načítání více záznamů..." -#: ../../include/text.php:397 +#: ../../include/text.php:399 msgid "The end" msgstr "Konec" -#: ../../include/text.php:870 +#: ../../include/text.php:872 msgid "No contacts" msgstr "Žádné kontakty" -#: ../../include/text.php:879 +#: ../../include/text.php:881 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" @@ -2349,257 +2324,257 @@ msgstr[0] "%d kontakt" msgstr[1] "%d kontaktů" msgstr[2] "%d kontaktů" -#: ../../include/text.php:891 ../../mod/viewcontacts.php:78 +#: ../../include/text.php:893 ../../mod/viewcontacts.php:78 msgid "View Contacts" msgstr "Zobrazit kontakty" -#: ../../include/text.php:971 ../../mod/editpost.php:109 +#: ../../include/text.php:973 ../../mod/editpost.php:109 #: ../../mod/notes.php:63 ../../mod/filer.php:31 msgid "Save" msgstr "Uložit" -#: ../../include/text.php:1020 +#: ../../include/text.php:1022 msgid "poke" msgstr "šťouchnout" -#: ../../include/text.php:1020 +#: ../../include/text.php:1022 msgid "poked" msgstr "šťouchnut" -#: ../../include/text.php:1021 +#: ../../include/text.php:1023 msgid "ping" msgstr "cinknout" -#: ../../include/text.php:1021 +#: ../../include/text.php:1023 msgid "pinged" msgstr "cinkut" -#: ../../include/text.php:1022 +#: ../../include/text.php:1024 msgid "prod" msgstr "pobídnout" -#: ../../include/text.php:1022 +#: ../../include/text.php:1024 msgid "prodded" msgstr "pobídnut" -#: ../../include/text.php:1023 +#: ../../include/text.php:1025 msgid "slap" msgstr "dát facku" -#: ../../include/text.php:1023 +#: ../../include/text.php:1025 msgid "slapped" msgstr "být uhozen" -#: ../../include/text.php:1024 +#: ../../include/text.php:1026 msgid "finger" msgstr "osahávat" -#: ../../include/text.php:1024 +#: ../../include/text.php:1026 msgid "fingered" msgstr "osaháván" -#: ../../include/text.php:1025 +#: ../../include/text.php:1027 msgid "rebuff" msgstr "odmítnout" -#: ../../include/text.php:1025 +#: ../../include/text.php:1027 msgid "rebuffed" msgstr "odmítnut" -#: ../../include/text.php:1039 +#: ../../include/text.php:1041 msgid "happy" msgstr "šťasný" -#: ../../include/text.php:1040 +#: ../../include/text.php:1042 msgid "sad" msgstr "smutný" -#: ../../include/text.php:1041 +#: ../../include/text.php:1043 msgid "mellow" msgstr "jemný" -#: ../../include/text.php:1042 +#: ../../include/text.php:1044 msgid "tired" msgstr "unavený" -#: ../../include/text.php:1043 +#: ../../include/text.php:1045 msgid "perky" msgstr "emergický" -#: ../../include/text.php:1044 +#: ../../include/text.php:1046 msgid "angry" msgstr "nazlobený" -#: ../../include/text.php:1045 +#: ../../include/text.php:1047 msgid "stupified" msgstr "otupen" -#: ../../include/text.php:1046 +#: ../../include/text.php:1048 msgid "puzzled" msgstr "popletený" -#: ../../include/text.php:1047 +#: ../../include/text.php:1049 msgid "interested" msgstr "zajímavý" -#: ../../include/text.php:1048 +#: ../../include/text.php:1050 msgid "bitter" msgstr "hořký" -#: ../../include/text.php:1049 +#: ../../include/text.php:1051 msgid "cheerful" msgstr "radnostný" -#: ../../include/text.php:1050 +#: ../../include/text.php:1052 msgid "alive" msgstr "naživu" -#: ../../include/text.php:1051 +#: ../../include/text.php:1053 msgid "annoyed" msgstr "otráven" -#: ../../include/text.php:1052 +#: ../../include/text.php:1054 msgid "anxious" msgstr "znepokojený" -#: ../../include/text.php:1053 +#: ../../include/text.php:1055 msgid "cranky" msgstr "mrzutý" -#: ../../include/text.php:1054 +#: ../../include/text.php:1056 msgid "disturbed" msgstr "vyrušen" -#: ../../include/text.php:1055 +#: ../../include/text.php:1057 msgid "frustrated" msgstr "frustrovaný" -#: ../../include/text.php:1056 +#: ../../include/text.php:1058 msgid "motivated" msgstr "motivovaný" -#: ../../include/text.php:1057 +#: ../../include/text.php:1059 msgid "relaxed" msgstr "uvolněný" -#: ../../include/text.php:1058 +#: ../../include/text.php:1060 msgid "surprised" msgstr "překvapený" -#: ../../include/text.php:1228 +#: ../../include/text.php:1230 msgid "Monday" msgstr "Pondělí" -#: ../../include/text.php:1228 +#: ../../include/text.php:1230 msgid "Tuesday" msgstr "Úterý" -#: ../../include/text.php:1228 +#: ../../include/text.php:1230 msgid "Wednesday" msgstr "Středa" -#: ../../include/text.php:1228 +#: ../../include/text.php:1230 msgid "Thursday" msgstr "Čtvrtek" -#: ../../include/text.php:1228 +#: ../../include/text.php:1230 msgid "Friday" msgstr "Pátek" -#: ../../include/text.php:1228 +#: ../../include/text.php:1230 msgid "Saturday" msgstr "Sobota" -#: ../../include/text.php:1228 +#: ../../include/text.php:1230 msgid "Sunday" msgstr "Neděle" -#: ../../include/text.php:1232 +#: ../../include/text.php:1234 msgid "January" msgstr "Ledna" -#: ../../include/text.php:1232 +#: ../../include/text.php:1234 msgid "February" msgstr "Února" -#: ../../include/text.php:1232 +#: ../../include/text.php:1234 msgid "March" msgstr "Března" -#: ../../include/text.php:1232 +#: ../../include/text.php:1234 msgid "April" msgstr "Dubna" -#: ../../include/text.php:1232 +#: ../../include/text.php:1234 msgid "May" msgstr "Května" -#: ../../include/text.php:1232 +#: ../../include/text.php:1234 msgid "June" msgstr "Června" -#: ../../include/text.php:1232 +#: ../../include/text.php:1234 msgid "July" msgstr "Července" -#: ../../include/text.php:1232 +#: ../../include/text.php:1234 msgid "August" msgstr "Srpna" -#: ../../include/text.php:1232 +#: ../../include/text.php:1234 msgid "September" msgstr "Září" -#: ../../include/text.php:1232 +#: ../../include/text.php:1234 msgid "October" msgstr "Října" -#: ../../include/text.php:1232 +#: ../../include/text.php:1234 msgid "November" msgstr "Listopadu" -#: ../../include/text.php:1232 +#: ../../include/text.php:1234 msgid "December" msgstr "Prosinec" -#: ../../include/text.php:1422 ../../mod/videos.php:301 +#: ../../include/text.php:1424 ../../mod/videos.php:301 msgid "View Video" msgstr "Zobrazit video" -#: ../../include/text.php:1454 +#: ../../include/text.php:1456 msgid "bytes" msgstr "bytů" -#: ../../include/text.php:1478 ../../include/text.php:1490 +#: ../../include/text.php:1488 ../../include/text.php:1500 msgid "Click to open/close" msgstr "Klikněte pro otevření/zavření" -#: ../../include/text.php:1664 ../../include/text.php:1674 -#: ../../mod/events.php:335 +#: ../../include/text.php:1674 ../../include/text.php:1684 +#: ../../mod/events.php:347 msgid "link to source" msgstr "odkaz na zdroj" -#: ../../include/text.php:1731 +#: ../../include/text.php:1741 msgid "Select an alternate language" msgstr "Vyběr alternativního jazyka" -#: ../../include/text.php:1987 +#: ../../include/text.php:1997 msgid "activity" msgstr "aktivita" -#: ../../include/text.php:1989 ../../object/Item.php:389 -#: ../../object/Item.php:402 ../../mod/content.php:605 +#: ../../include/text.php:1999 ../../object/Item.php:392 +#: ../../object/Item.php:405 ../../mod/content.php:605 msgid "comment" msgid_plural "comments" msgstr[0] "" msgstr[1] "" msgstr[2] "komentář" -#: ../../include/text.php:1990 +#: ../../include/text.php:2000 msgid "post" msgstr "příspěvek" -#: ../../include/text.php:2158 +#: ../../include/text.php:2168 msgid "Item filed" msgstr "Položka vyplněna" @@ -2622,28 +2597,28 @@ msgstr "Zaznamenali jsme problém s Vaším přihlášením prostřednictvím V msgid "The error message was:" msgstr "Chybová zpráva byla:" -#: ../../include/bbcode.php:433 ../../include/bbcode.php:1066 -#: ../../include/bbcode.php:1067 +#: ../../include/bbcode.php:448 ../../include/bbcode.php:1094 +#: ../../include/bbcode.php:1095 msgid "Image/photo" msgstr "Obrázek/fotografie" -#: ../../include/bbcode.php:531 +#: ../../include/bbcode.php:546 #, php-format msgid "%2$s %3$s" msgstr "%2$s %3$s" -#: ../../include/bbcode.php:565 +#: ../../include/bbcode.php:580 #, php-format msgid "" "%s wrote the following post" msgstr "%s napsal následující příspěvek" -#: ../../include/bbcode.php:1030 ../../include/bbcode.php:1050 +#: ../../include/bbcode.php:1058 ../../include/bbcode.php:1078 msgid "$1 wrote:" msgstr "$1 napsal:" -#: ../../include/bbcode.php:1075 ../../include/bbcode.php:1076 +#: ../../include/bbcode.php:1103 ../../include/bbcode.php:1104 msgid "Encrypted content" msgstr "Šifrovaný obsah" @@ -2659,17 +2634,17 @@ msgstr "Prosím nahrejte profilovou fotografii" msgid "Welcome back " msgstr "Vítejte zpět " -#: ../../include/security.php:366 +#: ../../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 "Formulářový bezpečnostní token nebyl správný. To pravděpodobně nastalo kvůli tom, že formulář byl otevřen příliš dlouho (>3 hodiny) před jeho odesláním." -#: ../../include/oembed.php:213 +#: ../../include/oembed.php:218 msgid "Embedded content" msgstr "vložený obsah" -#: ../../include/oembed.php:222 +#: ../../include/oembed.php:227 msgid "Embedding disabled" msgstr "Vkládání zakázáno" @@ -3013,7 +2988,7 @@ msgid "" "\t\tThank you and welcome to %2$s." msgstr "\n\t\tVaše přihlašovací údaje jsou následující:\n\t\t\tAdresa webu:\t%3$s\n\t\t\tpřihlašovací jméno:\t%1$s\n\t\t\theslo:\t%5$s\n\n\t\tHeslo si můžete změnit na stránce \"Nastavení\" vašeho účtu poté, co se přihlásíte.\n\n\t\tProsím věnujte pár chvil revizi dalšího nastavení vašeho účtu na dané stránce.\n\n\t\tTaké su můžete přidat nějaké základní informace do svého výchozího profilu (na stránce \"Profily\"), takže ostatní lidé vás snáze najdou.\n\n\t\tDoporučujeme Vám uvést celé jméno a i foto. Přidáním nějakých \"klíčových slov\" (velmi užitečné pro hledání nových přátel) a možná také zemi, ve které žijete, pokud nechcete být více konkrétní.\n\n\t\tPlně resepktujeme vaše právo na soukromí a nic z výše uvedeného není povinné.\n\t\tPokud jste zde nový a neznáte zde nikoho, uvedením daných informací můžete získat nové přátele.\n\n\n\t\tDíky a vítejte na %2$s." -#: ../../include/user.php:413 ../../mod/admin.php:838 +#: ../../include/user.php:413 ../../mod/admin.php:841 #, php-format msgid "Registration details for %s" msgstr "Registrační údaje pro %s" @@ -3022,103 +2997,103 @@ msgstr "Registrační údaje pro %s" msgid "Visible to everybody" msgstr "Viditelné pro všechny" -#: ../../object/Item.php:94 +#: ../../object/Item.php:95 msgid "This entry was edited" msgstr "Tento záznam byl editován" -#: ../../object/Item.php:116 ../../mod/photos.php:1359 +#: ../../object/Item.php:117 ../../mod/photos.php:1359 #: ../../mod/content.php:620 msgid "Private Message" msgstr "Soukromá zpráva" -#: ../../object/Item.php:120 ../../mod/settings.php:681 +#: ../../object/Item.php:121 ../../mod/settings.php:683 #: ../../mod/content.php:728 msgid "Edit" msgstr "Upravit" -#: ../../object/Item.php:133 ../../mod/content.php:763 +#: ../../object/Item.php:134 ../../mod/content.php:763 msgid "save to folder" msgstr "uložit do složky" -#: ../../object/Item.php:195 ../../mod/content.php:753 +#: ../../object/Item.php:196 ../../mod/content.php:753 msgid "add star" msgstr "přidat hvězdu" -#: ../../object/Item.php:196 ../../mod/content.php:754 +#: ../../object/Item.php:197 ../../mod/content.php:754 msgid "remove star" msgstr "odebrat hvězdu" -#: ../../object/Item.php:197 ../../mod/content.php:755 +#: ../../object/Item.php:198 ../../mod/content.php:755 msgid "toggle star status" msgstr "přepnout hvězdu" -#: ../../object/Item.php:200 ../../mod/content.php:758 +#: ../../object/Item.php:201 ../../mod/content.php:758 msgid "starred" msgstr "označeno hvězdou" -#: ../../object/Item.php:208 +#: ../../object/Item.php:209 msgid "ignore thread" msgstr "ignorovat vlákno" -#: ../../object/Item.php:209 +#: ../../object/Item.php:210 msgid "unignore thread" msgstr "přestat ignorovat vlákno" -#: ../../object/Item.php:210 +#: ../../object/Item.php:211 msgid "toggle ignore status" msgstr "přepnout stav Ignorování" -#: ../../object/Item.php:213 +#: ../../object/Item.php:214 msgid "ignored" msgstr "ignorován" -#: ../../object/Item.php:220 ../../mod/content.php:759 +#: ../../object/Item.php:221 ../../mod/content.php:759 msgid "add tag" msgstr "přidat štítek" -#: ../../object/Item.php:231 ../../mod/photos.php:1542 +#: ../../object/Item.php:232 ../../mod/photos.php:1542 #: ../../mod/content.php:684 msgid "I like this (toggle)" msgstr "Líbí se mi to (přepínač)" -#: ../../object/Item.php:231 ../../mod/content.php:684 +#: ../../object/Item.php:232 ../../mod/content.php:684 msgid "like" msgstr "má rád" -#: ../../object/Item.php:232 ../../mod/photos.php:1543 +#: ../../object/Item.php:233 ../../mod/photos.php:1543 #: ../../mod/content.php:685 msgid "I don't like this (toggle)" msgstr "Nelíbí se mi to (přepínač)" -#: ../../object/Item.php:232 ../../mod/content.php:685 +#: ../../object/Item.php:233 ../../mod/content.php:685 msgid "dislike" msgstr "nemá rád" -#: ../../object/Item.php:234 ../../mod/content.php:687 +#: ../../object/Item.php:235 ../../mod/content.php:687 msgid "Share this" msgstr "Sdílet toto" -#: ../../object/Item.php:234 ../../mod/content.php:687 +#: ../../object/Item.php:235 ../../mod/content.php:687 msgid "share" msgstr "sdílí" -#: ../../object/Item.php:328 ../../mod/content.php:854 +#: ../../object/Item.php:331 ../../mod/content.php:854 msgid "to" msgstr "pro" -#: ../../object/Item.php:329 +#: ../../object/Item.php:332 msgid "via" msgstr "přes" -#: ../../object/Item.php:330 ../../mod/content.php:855 +#: ../../object/Item.php:333 ../../mod/content.php:855 msgid "Wall-to-Wall" msgstr "Zeď-na-Zeď" -#: ../../object/Item.php:331 ../../mod/content.php:856 +#: ../../object/Item.php:334 ../../mod/content.php:856 msgid "via Wall-To-Wall:" msgstr "přes Zeď-na-Zeď " -#: ../../object/Item.php:387 ../../mod/content.php:603 +#: ../../object/Item.php:390 ../../mod/content.php:603 #, php-format msgid "%d comment" msgid_plural "%d comments" @@ -3126,41 +3101,41 @@ msgstr[0] "%d komentář" msgstr[1] "%d komentářů" msgstr[2] "%d komentářů" -#: ../../object/Item.php:675 ../../mod/photos.php:1562 +#: ../../object/Item.php:678 ../../mod/photos.php:1562 #: ../../mod/photos.php:1606 ../../mod/photos.php:1694 #: ../../mod/content.php:707 msgid "This is you" msgstr "Nastavte Vaši polohu" -#: ../../object/Item.php:679 ../../mod/content.php:711 +#: ../../object/Item.php:682 ../../mod/content.php:711 msgid "Bold" msgstr "Tučné" -#: ../../object/Item.php:680 ../../mod/content.php:712 +#: ../../object/Item.php:683 ../../mod/content.php:712 msgid "Italic" msgstr "Kurzíva" -#: ../../object/Item.php:681 ../../mod/content.php:713 +#: ../../object/Item.php:684 ../../mod/content.php:713 msgid "Underline" msgstr "Podrtžené" -#: ../../object/Item.php:682 ../../mod/content.php:714 +#: ../../object/Item.php:685 ../../mod/content.php:714 msgid "Quote" msgstr "Citovat" -#: ../../object/Item.php:683 ../../mod/content.php:715 +#: ../../object/Item.php:686 ../../mod/content.php:715 msgid "Code" msgstr "Kód" -#: ../../object/Item.php:684 ../../mod/content.php:716 +#: ../../object/Item.php:687 ../../mod/content.php:716 msgid "Image" msgstr "Obrázek" -#: ../../object/Item.php:685 ../../mod/content.php:717 +#: ../../object/Item.php:688 ../../mod/content.php:717 msgid "Link" msgstr "Odkaz" -#: ../../object/Item.php:686 ../../mod/content.php:718 +#: ../../object/Item.php:689 ../../mod/content.php:718 msgid "Video" msgstr "Video" @@ -3251,10 +3226,6 @@ msgstr "Uložit Skupinu" msgid "Create a group of contacts/friends." msgstr "Vytvořit skupinu kontaktů / přátel." -#: ../../mod/group.php:94 ../../mod/group.php:180 -msgid "Group Name: " -msgstr "Název skupiny: " - #: ../../mod/group.php:113 msgid "Group removed." msgstr "Skupina odstraněna. " @@ -3271,11 +3242,11 @@ msgstr "Editor skupin" msgid "Members" msgstr "Členové" -#: ../../mod/group.php:194 ../../mod/contacts.php:586 +#: ../../mod/group.php:194 ../../mod/contacts.php:656 msgid "All Contacts" msgstr "Všechny kontakty" -#: ../../mod/group.php:224 ../../mod/profperm.php:105 +#: ../../mod/group.php:224 ../../mod/profperm.php:106 msgid "Click on a contact to add or remove." msgstr "Klikněte na kontakt pro přidání nebo odebrání" @@ -3324,8 +3295,8 @@ msgid "Discard" msgstr "Odstranit" #: ../../mod/notifications.php:51 ../../mod/notifications.php:164 -#: ../../mod/notifications.php:214 ../../mod/contacts.php:455 -#: ../../mod/contacts.php:519 ../../mod/contacts.php:731 +#: ../../mod/notifications.php:214 ../../mod/contacts.php:525 +#: ../../mod/contacts.php:589 ../../mod/contacts.php:801 msgid "Ignore" msgstr "Ignorovat" @@ -3359,7 +3330,7 @@ msgid "suggested by %s" msgstr "navrhl %s" #: ../../mod/notifications.php:157 ../../mod/notifications.php:208 -#: ../../mod/contacts.php:525 +#: ../../mod/contacts.php:595 msgid "Hide this contact from others" msgstr "Skrýt tento kontakt před ostatními" @@ -3372,7 +3343,7 @@ msgid "if applicable" msgstr "je-li použitelné" #: ../../mod/notifications.php:161 ../../mod/notifications.php:212 -#: ../../mod/admin.php:1005 +#: ../../mod/admin.php:1008 msgid "Approve" msgstr "Schválit" @@ -3495,7 +3466,7 @@ msgstr "Žádný profil" msgid "everybody" msgstr "Žádost o připojení selhala nebo byla zrušena." -#: ../../mod/settings.php:41 ../../mod/admin.php:1016 +#: ../../mod/settings.php:41 ../../mod/admin.php:1019 msgid "Account" msgstr "Účet" @@ -3507,12 +3478,12 @@ msgstr "Další funkčnosti" msgid "Display" msgstr "Zobrazení" -#: ../../mod/settings.php:57 ../../mod/settings.php:785 +#: ../../mod/settings.php:57 ../../mod/settings.php:805 msgid "Social Networks" msgstr "Sociální sítě" -#: ../../mod/settings.php:62 ../../mod/admin.php:106 ../../mod/admin.php:1102 -#: ../../mod/admin.php:1155 +#: ../../mod/settings.php:62 ../../mod/admin.php:106 ../../mod/admin.php:1105 +#: ../../mod/admin.php:1158 msgid "Plugins" msgstr "Pluginy" @@ -3532,620 +3503,651 @@ msgstr "Odstranit účet" msgid "Missing some important data!" msgstr "Chybí některé důležité údaje!" -#: ../../mod/settings.php:137 ../../mod/settings.php:645 -#: ../../mod/contacts.php:729 +#: ../../mod/settings.php:137 ../../mod/settings.php:647 +#: ../../mod/contacts.php:799 msgid "Update" msgstr "Aktualizace" -#: ../../mod/settings.php:243 +#: ../../mod/settings.php:245 msgid "Failed to connect with email account using the settings provided." msgstr "Nepodařilo se připojit k e-mailovému účtu pomocí dodaného nastavení." -#: ../../mod/settings.php:248 +#: ../../mod/settings.php:250 msgid "Email settings updated." msgstr "Nastavení e-mailu aktualizována." -#: ../../mod/settings.php:263 +#: ../../mod/settings.php:265 msgid "Features updated" msgstr "Aktualizované funkčnosti" -#: ../../mod/settings.php:326 +#: ../../mod/settings.php:328 msgid "Relocate message has been send to your contacts" msgstr "Správa o změně umístění byla odeslána vašim kontaktům" -#: ../../mod/settings.php:340 +#: ../../mod/settings.php:342 msgid "Passwords do not match. Password unchanged." msgstr "Hesla se neshodují. Heslo nebylo změněno." -#: ../../mod/settings.php:345 +#: ../../mod/settings.php:347 msgid "Empty passwords are not allowed. Password unchanged." msgstr "Prázdné hesla nejsou povolena. Heslo nebylo změněno." -#: ../../mod/settings.php:353 +#: ../../mod/settings.php:355 msgid "Wrong password." msgstr "Špatné heslo." -#: ../../mod/settings.php:364 +#: ../../mod/settings.php:366 msgid "Password changed." msgstr "Heslo bylo změněno." -#: ../../mod/settings.php:366 +#: ../../mod/settings.php:368 msgid "Password update failed. Please try again." msgstr "Aktualizace hesla se nezdařila. Zkuste to prosím znovu." -#: ../../mod/settings.php:433 +#: ../../mod/settings.php:435 msgid " Please use a shorter name." msgstr "Prosím použijte kratší jméno." -#: ../../mod/settings.php:435 +#: ../../mod/settings.php:437 msgid " Name too short." msgstr "Jméno je příliš krátké." -#: ../../mod/settings.php:444 +#: ../../mod/settings.php:446 msgid "Wrong Password" msgstr "Špatné heslo" -#: ../../mod/settings.php:449 +#: ../../mod/settings.php:451 msgid " Not valid email." msgstr "Neplatný e-mail." -#: ../../mod/settings.php:455 +#: ../../mod/settings.php:457 msgid " Cannot change to that email." msgstr "Nelze provést změnu na tento e-mail." -#: ../../mod/settings.php:511 +#: ../../mod/settings.php:513 msgid "Private forum has no privacy permissions. Using default privacy group." msgstr "Soukromé fórum nemá nastaveno zabezpečení. Používá se defaultní soukromá skupina." -#: ../../mod/settings.php:515 +#: ../../mod/settings.php:517 msgid "Private forum has no privacy permissions and no default privacy group." msgstr "Soukromé fórum nemá nastaveno zabezpečení a ani žádnou defaultní soukromou skupinu." -#: ../../mod/settings.php:545 +#: ../../mod/settings.php:547 msgid "Settings updated." msgstr "Nastavení aktualizováno." -#: ../../mod/settings.php:618 ../../mod/settings.php:644 -#: ../../mod/settings.php:680 +#: ../../mod/settings.php:620 ../../mod/settings.php:646 +#: ../../mod/settings.php:682 msgid "Add application" msgstr "Přidat aplikaci" -#: ../../mod/settings.php:619 ../../mod/settings.php:729 -#: ../../mod/settings.php:803 ../../mod/settings.php:885 -#: ../../mod/settings.php:1118 ../../mod/admin.php:620 -#: ../../mod/admin.php:1156 ../../mod/admin.php:1358 ../../mod/admin.php:1445 +#: ../../mod/settings.php:621 ../../mod/settings.php:731 +#: ../../mod/settings.php:754 ../../mod/settings.php:823 +#: ../../mod/settings.php:905 ../../mod/settings.php:1138 +#: ../../mod/admin.php:622 ../../mod/admin.php:1159 ../../mod/admin.php:1361 +#: ../../mod/admin.php:1448 msgid "Save Settings" msgstr "Uložit Nastavení" -#: ../../mod/settings.php:621 ../../mod/settings.php:647 -#: ../../mod/admin.php:1003 ../../mod/admin.php:1015 ../../mod/admin.php:1016 -#: ../../mod/admin.php:1029 ../../mod/crepair.php:165 +#: ../../mod/settings.php:623 ../../mod/settings.php:649 +#: ../../mod/admin.php:1006 ../../mod/admin.php:1018 ../../mod/admin.php:1019 +#: ../../mod/admin.php:1032 ../../mod/crepair.php:169 msgid "Name" msgstr "Jméno" -#: ../../mod/settings.php:622 ../../mod/settings.php:648 +#: ../../mod/settings.php:624 ../../mod/settings.php:650 msgid "Consumer Key" msgstr "Consumer Key" -#: ../../mod/settings.php:623 ../../mod/settings.php:649 +#: ../../mod/settings.php:625 ../../mod/settings.php:651 msgid "Consumer Secret" msgstr "Consumer Secret" -#: ../../mod/settings.php:624 ../../mod/settings.php:650 +#: ../../mod/settings.php:626 ../../mod/settings.php:652 msgid "Redirect" msgstr "Přesměrování" -#: ../../mod/settings.php:625 ../../mod/settings.php:651 +#: ../../mod/settings.php:627 ../../mod/settings.php:653 msgid "Icon url" msgstr "URL ikony" -#: ../../mod/settings.php:636 +#: ../../mod/settings.php:638 msgid "You can't edit this application." msgstr "Nemůžete editovat tuto aplikaci." -#: ../../mod/settings.php:679 +#: ../../mod/settings.php:681 msgid "Connected Apps" msgstr "Připojené aplikace" -#: ../../mod/settings.php:683 +#: ../../mod/settings.php:685 msgid "Client key starts with" msgstr "Klienský klíč začíná" -#: ../../mod/settings.php:684 +#: ../../mod/settings.php:686 msgid "No name" msgstr "Bez názvu" -#: ../../mod/settings.php:685 +#: ../../mod/settings.php:687 msgid "Remove authorization" msgstr "Odstranit oprávnění" -#: ../../mod/settings.php:697 +#: ../../mod/settings.php:699 msgid "No Plugin settings configured" msgstr "Žádný doplněk není nastaven" -#: ../../mod/settings.php:705 +#: ../../mod/settings.php:707 msgid "Plugin Settings" msgstr "Nastavení doplňku" -#: ../../mod/settings.php:719 +#: ../../mod/settings.php:721 msgid "Off" msgstr "Vypnuto" -#: ../../mod/settings.php:719 +#: ../../mod/settings.php:721 msgid "On" msgstr "Zapnuto" -#: ../../mod/settings.php:727 +#: ../../mod/settings.php:729 msgid "Additional Features" msgstr "Další Funkčnosti" -#: ../../mod/settings.php:741 ../../mod/settings.php:742 +#: ../../mod/settings.php:739 ../../mod/settings.php:743 +msgid "General Social Media Settings" +msgstr "General Social Media nastavení" + +#: ../../mod/settings.php:749 +msgid "Disable intelligent shortening" +msgstr "Vypnout inteligentní zkracování" + +#: ../../mod/settings.php:751 +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 "Normálně se systém snaží nalézt nejlepší link pro přidání zkrácených příspěvků. Pokud je tato volba aktivní, pak každý zkrácený příspěvek bude vždy ukazovat na originální friencika příspěvek" + +#: ../../mod/settings.php:761 ../../mod/settings.php:762 #, php-format msgid "Built-in support for %s connectivity is %s" msgstr "Vestavěná podpora pro připojení s %s je %s" -#: ../../mod/settings.php:741 ../../mod/settings.php:742 +#: ../../mod/settings.php:761 ../../mod/settings.php:762 msgid "enabled" msgstr "povoleno" -#: ../../mod/settings.php:741 ../../mod/settings.php:742 +#: ../../mod/settings.php:761 ../../mod/settings.php:762 msgid "disabled" msgstr "zakázáno" -#: ../../mod/settings.php:742 +#: ../../mod/settings.php:762 msgid "StatusNet" msgstr "StatusNet" -#: ../../mod/settings.php:778 +#: ../../mod/settings.php:798 msgid "Email access is disabled on this site." msgstr "Přístup k elektronické poště je na tomto serveru zakázán." -#: ../../mod/settings.php:790 +#: ../../mod/settings.php:810 msgid "Email/Mailbox Setup" msgstr "Nastavení e-mailu" -#: ../../mod/settings.php:791 +#: ../../mod/settings.php:811 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Pokud chcete komunikovat pomocí této služby s Vašimi kontakty z e-mailu (volitelné), uveďte, jak se připojit k Vaší e-mailové schránce." -#: ../../mod/settings.php:792 +#: ../../mod/settings.php:812 msgid "Last successful email check:" msgstr "Poslední úspěšná kontrola e-mailu:" -#: ../../mod/settings.php:794 +#: ../../mod/settings.php:814 msgid "IMAP server name:" msgstr "jméno IMAP serveru:" -#: ../../mod/settings.php:795 +#: ../../mod/settings.php:815 msgid "IMAP port:" msgstr "IMAP port:" -#: ../../mod/settings.php:796 +#: ../../mod/settings.php:816 msgid "Security:" msgstr "Zabezpečení:" -#: ../../mod/settings.php:796 ../../mod/settings.php:801 +#: ../../mod/settings.php:816 ../../mod/settings.php:821 msgid "None" msgstr "Žádný" -#: ../../mod/settings.php:797 +#: ../../mod/settings.php:817 msgid "Email login name:" msgstr "přihlašovací jméno k e-mailu:" -#: ../../mod/settings.php:798 +#: ../../mod/settings.php:818 msgid "Email password:" msgstr "heslo k Vašemu e-mailu:" -#: ../../mod/settings.php:799 +#: ../../mod/settings.php:819 msgid "Reply-to address:" msgstr "Odpovědět na adresu:" -#: ../../mod/settings.php:800 +#: ../../mod/settings.php:820 msgid "Send public posts to all email contacts:" msgstr "Poslat veřejné příspěvky na všechny e-mailové kontakty:" -#: ../../mod/settings.php:801 +#: ../../mod/settings.php:821 msgid "Action after import:" msgstr "Akce po importu:" -#: ../../mod/settings.php:801 +#: ../../mod/settings.php:821 msgid "Mark as seen" msgstr "Označit jako přečtené" -#: ../../mod/settings.php:801 +#: ../../mod/settings.php:821 msgid "Move to folder" msgstr "Přesunout do složky" -#: ../../mod/settings.php:802 +#: ../../mod/settings.php:822 msgid "Move to folder:" msgstr "Přesunout do složky:" -#: ../../mod/settings.php:833 ../../mod/admin.php:545 +#: ../../mod/settings.php:853 ../../mod/admin.php:547 msgid "No special theme for mobile devices" msgstr "žádné speciální téma pro mobilní zařízení" -#: ../../mod/settings.php:883 +#: ../../mod/settings.php:903 msgid "Display Settings" msgstr "Nastavení Zobrazení" -#: ../../mod/settings.php:889 ../../mod/settings.php:904 +#: ../../mod/settings.php:909 ../../mod/settings.php:924 msgid "Display Theme:" msgstr "Vybrat grafickou šablonu:" -#: ../../mod/settings.php:890 +#: ../../mod/settings.php:910 msgid "Mobile Theme:" msgstr "Téma pro mobilní zařízení:" -#: ../../mod/settings.php:891 +#: ../../mod/settings.php:911 msgid "Update browser every xx seconds" msgstr "Aktualizovat prohlížeč každých xx sekund" -#: ../../mod/settings.php:891 +#: ../../mod/settings.php:911 msgid "Minimum of 10 seconds, no maximum" msgstr "Minimum 10 sekund, žádné maximum." -#: ../../mod/settings.php:892 +#: ../../mod/settings.php:912 msgid "Number of items to display per page:" msgstr "Počet položek zobrazených na stránce:" -#: ../../mod/settings.php:892 ../../mod/settings.php:893 +#: ../../mod/settings.php:912 ../../mod/settings.php:913 msgid "Maximum of 100 items" msgstr "Maximum 100 položek" -#: ../../mod/settings.php:893 +#: ../../mod/settings.php:913 msgid "Number of items to display per page when viewed from mobile device:" msgstr "Počet položek ke zobrazení na stránce při zobrazení na mobilním zařízení:" -#: ../../mod/settings.php:894 +#: ../../mod/settings.php:914 msgid "Don't show emoticons" msgstr "Nezobrazovat emotikony" -#: ../../mod/settings.php:895 +#: ../../mod/settings.php:915 msgid "Don't show notices" msgstr "Nezobrazovat oznámění" -#: ../../mod/settings.php:896 +#: ../../mod/settings.php:916 msgid "Infinite scroll" msgstr "Nekonečné posouvání" -#: ../../mod/settings.php:897 +#: ../../mod/settings.php:917 msgid "Automatic updates only at the top of the network page" msgstr "Automatické aktualizace pouze na hlavní stránce Síť." -#: ../../mod/settings.php:974 +#: ../../mod/settings.php:994 msgid "User Types" msgstr "Uživatelské typy" -#: ../../mod/settings.php:975 +#: ../../mod/settings.php:995 msgid "Community Types" msgstr "Komunitní typy" -#: ../../mod/settings.php:976 +#: ../../mod/settings.php:996 msgid "Normal Account Page" msgstr "Normální stránka účtu" -#: ../../mod/settings.php:977 +#: ../../mod/settings.php:997 msgid "This account is a normal personal profile" msgstr "Tento účet je běžný osobní profil" -#: ../../mod/settings.php:980 +#: ../../mod/settings.php:1000 msgid "Soapbox Page" msgstr "Stránka \"Soapbox\"" -#: ../../mod/settings.php:981 +#: ../../mod/settings.php:1001 msgid "Automatically approve all connection/friend requests as read-only fans" msgstr "Automaticky schválit všechna spojení / přátelství jako fanoušky s právem pouze ke čtení" -#: ../../mod/settings.php:984 +#: ../../mod/settings.php:1004 msgid "Community Forum/Celebrity Account" msgstr "Komunitní fórum/ účet celebrity" -#: ../../mod/settings.php:985 +#: ../../mod/settings.php:1005 msgid "" "Automatically approve all connection/friend requests as read-write fans" msgstr "Automaticky schvalovat všechny žádosti o spojení / přátelství, jako fanoušky s právem ke čtení." -#: ../../mod/settings.php:988 +#: ../../mod/settings.php:1008 msgid "Automatic Friend Page" msgstr "Automatická stránka přítele" -#: ../../mod/settings.php:989 +#: ../../mod/settings.php:1009 msgid "Automatically approve all connection/friend requests as friends" msgstr "Automaticky schvalovat všechny žádosti o spojení / přátelství jako přátele" -#: ../../mod/settings.php:992 +#: ../../mod/settings.php:1012 msgid "Private Forum [Experimental]" msgstr "Soukromé fórum [Experimentální]" -#: ../../mod/settings.php:993 +#: ../../mod/settings.php:1013 msgid "Private forum - approved members only" msgstr "Soukromé fórum - pouze pro schválené členy" -#: ../../mod/settings.php:1005 +#: ../../mod/settings.php:1025 msgid "OpenID:" msgstr "OpenID:" -#: ../../mod/settings.php:1005 +#: ../../mod/settings.php:1025 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Volitelné) Povolit OpenID pro přihlášení k tomuto účtu." -#: ../../mod/settings.php:1015 +#: ../../mod/settings.php:1035 msgid "Publish your default profile in your local site directory?" msgstr "Publikovat Váš výchozí profil v místním adresáři webu?" -#: ../../mod/settings.php:1015 ../../mod/settings.php:1021 -#: ../../mod/settings.php:1029 ../../mod/settings.php:1033 -#: ../../mod/settings.php:1038 ../../mod/settings.php:1044 -#: ../../mod/settings.php:1050 ../../mod/settings.php:1056 -#: ../../mod/settings.php:1086 ../../mod/settings.php:1087 -#: ../../mod/settings.php:1088 ../../mod/settings.php:1089 -#: ../../mod/settings.php:1090 ../../mod/register.php:234 -#: ../../mod/dfrn_request.php:830 ../../mod/api.php:106 -#: ../../mod/profiles.php:661 ../../mod/profiles.php:665 +#: ../../mod/settings.php:1035 ../../mod/settings.php:1041 +#: ../../mod/settings.php:1049 ../../mod/settings.php:1053 +#: ../../mod/settings.php:1058 ../../mod/settings.php:1064 +#: ../../mod/settings.php:1070 ../../mod/settings.php:1076 +#: ../../mod/settings.php:1106 ../../mod/settings.php:1107 +#: ../../mod/settings.php:1108 ../../mod/settings.php:1109 +#: ../../mod/settings.php:1110 ../../mod/register.php:234 +#: ../../mod/dfrn_request.php:845 ../../mod/api.php:106 +#: ../../mod/follow.php:54 ../../mod/profiles.php:661 +#: ../../mod/profiles.php:665 msgid "No" msgstr "Ne" -#: ../../mod/settings.php:1021 +#: ../../mod/settings.php:1041 msgid "Publish your default profile in the global social directory?" msgstr "Publikovat Váš výchozí profil v globální sociálním adresáři?" -#: ../../mod/settings.php:1029 +#: ../../mod/settings.php:1049 msgid "Hide your contact/friend list from viewers of your default profile?" msgstr "Skrýt Vaše kontaktní údaje a seznam přátel před návštěvníky ve Vašem výchozím profilu?" -#: ../../mod/settings.php:1033 +#: ../../mod/settings.php:1053 msgid "" "If enabled, posting public messages to Diaspora and other networks isn't " "possible." msgstr "Pokud je povoleno, není možné zasílání veřejných příspěvků do Diaspory a dalších sítí." -#: ../../mod/settings.php:1038 +#: ../../mod/settings.php:1058 msgid "Allow friends to post to your profile page?" msgstr "Povolit přátelům umisťování příspěvků na vaši profilovou stránku?" -#: ../../mod/settings.php:1044 +#: ../../mod/settings.php:1064 msgid "Allow friends to tag your posts?" msgstr "Povolit přátelům označovat Vaše příspěvky?" -#: ../../mod/settings.php:1050 +#: ../../mod/settings.php:1070 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "Chcete nám povolit abychom vás navrhovali jako přátelé pro nové členy?" -#: ../../mod/settings.php:1056 +#: ../../mod/settings.php:1076 msgid "Permit unknown people to send you private mail?" msgstr "Povolit neznámým lidem Vám zasílat soukromé zprávy?" -#: ../../mod/settings.php:1064 +#: ../../mod/settings.php:1084 msgid "Profile is not published." msgstr "Profil není zveřejněn." -#: ../../mod/settings.php:1067 ../../mod/profile_photo.php:248 +#: ../../mod/settings.php:1087 ../../mod/profile_photo.php:248 msgid "or" msgstr "nebo" -#: ../../mod/settings.php:1072 +#: ../../mod/settings.php:1092 msgid "Your Identity Address is" msgstr "Vaše adresa identity je" -#: ../../mod/settings.php:1083 +#: ../../mod/settings.php:1103 msgid "Automatically expire posts after this many days:" msgstr "Automaticky expirovat příspěvky po zadaném počtu dní:" -#: ../../mod/settings.php:1083 +#: ../../mod/settings.php:1103 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Pokud je prázdné, příspěvky nebudou nikdy expirovat. Expirované příspěvky budou vymazány" -#: ../../mod/settings.php:1084 +#: ../../mod/settings.php:1104 msgid "Advanced expiration settings" msgstr "Pokročilé nastavení expirací" -#: ../../mod/settings.php:1085 +#: ../../mod/settings.php:1105 msgid "Advanced Expiration" msgstr "Nastavení expirací" -#: ../../mod/settings.php:1086 +#: ../../mod/settings.php:1106 msgid "Expire posts:" msgstr "Expirovat příspěvky:" -#: ../../mod/settings.php:1087 +#: ../../mod/settings.php:1107 msgid "Expire personal notes:" msgstr "Expirovat osobní poznámky:" -#: ../../mod/settings.php:1088 +#: ../../mod/settings.php:1108 msgid "Expire starred posts:" msgstr "Expirovat příspěvky s hvězdou:" -#: ../../mod/settings.php:1089 +#: ../../mod/settings.php:1109 msgid "Expire photos:" msgstr "Expirovat fotografie:" -#: ../../mod/settings.php:1090 +#: ../../mod/settings.php:1110 msgid "Only expire posts by others:" msgstr "Přízpěvky expirovat pouze ostatními:" -#: ../../mod/settings.php:1116 +#: ../../mod/settings.php:1136 msgid "Account Settings" msgstr "Nastavení účtu" -#: ../../mod/settings.php:1124 +#: ../../mod/settings.php:1144 msgid "Password Settings" msgstr "Nastavení hesla" -#: ../../mod/settings.php:1125 +#: ../../mod/settings.php:1145 msgid "New Password:" msgstr "Nové heslo:" -#: ../../mod/settings.php:1126 +#: ../../mod/settings.php:1146 msgid "Confirm:" msgstr "Potvrďte:" -#: ../../mod/settings.php:1126 +#: ../../mod/settings.php:1146 msgid "Leave password fields blank unless changing" msgstr "Pokud nechcete změnit heslo, položku hesla nevyplňujte" -#: ../../mod/settings.php:1127 +#: ../../mod/settings.php:1147 msgid "Current Password:" msgstr "Stávající heslo:" -#: ../../mod/settings.php:1127 ../../mod/settings.php:1128 +#: ../../mod/settings.php:1147 ../../mod/settings.php:1148 msgid "Your current password to confirm the changes" msgstr "Vaše stávající heslo k potvrzení změn" -#: ../../mod/settings.php:1128 +#: ../../mod/settings.php:1148 msgid "Password:" msgstr "Heslo: " -#: ../../mod/settings.php:1132 +#: ../../mod/settings.php:1152 msgid "Basic Settings" msgstr "Základní nastavení" -#: ../../mod/settings.php:1134 +#: ../../mod/settings.php:1154 msgid "Email Address:" msgstr "E-mailová adresa:" -#: ../../mod/settings.php:1135 +#: ../../mod/settings.php:1155 msgid "Your Timezone:" msgstr "Vaše časové pásmo:" -#: ../../mod/settings.php:1136 +#: ../../mod/settings.php:1156 msgid "Default Post Location:" msgstr "Výchozí umístění příspěvků:" -#: ../../mod/settings.php:1137 +#: ../../mod/settings.php:1157 msgid "Use Browser Location:" msgstr "Používat umístění dle prohlížeče:" -#: ../../mod/settings.php:1140 +#: ../../mod/settings.php:1160 msgid "Security and Privacy Settings" msgstr "Nastavení zabezpečení a soukromí" -#: ../../mod/settings.php:1142 +#: ../../mod/settings.php:1162 msgid "Maximum Friend Requests/Day:" msgstr "Maximální počet žádostí o přátelství za den:" -#: ../../mod/settings.php:1142 ../../mod/settings.php:1172 +#: ../../mod/settings.php:1162 ../../mod/settings.php:1192 msgid "(to prevent spam abuse)" msgstr "(Aby se zabránilo spamu)" -#: ../../mod/settings.php:1143 +#: ../../mod/settings.php:1163 msgid "Default Post Permissions" msgstr "Výchozí oprávnění pro příspěvek" -#: ../../mod/settings.php:1144 +#: ../../mod/settings.php:1164 msgid "(click to open/close)" msgstr "(Klikněte pro otevření/zavření)" -#: ../../mod/settings.php:1153 ../../mod/photos.php:1146 +#: ../../mod/settings.php:1173 ../../mod/photos.php:1146 #: ../../mod/photos.php:1519 msgid "Show to Groups" msgstr "Zobrazit ve Skupinách" -#: ../../mod/settings.php:1154 ../../mod/photos.php:1147 +#: ../../mod/settings.php:1174 ../../mod/photos.php:1147 #: ../../mod/photos.php:1520 msgid "Show to Contacts" msgstr "Zobrazit v Kontaktech" -#: ../../mod/settings.php:1155 +#: ../../mod/settings.php:1175 msgid "Default Private Post" msgstr "Výchozí Soukromý příspěvek" -#: ../../mod/settings.php:1156 +#: ../../mod/settings.php:1176 msgid "Default Public Post" msgstr "Výchozí Veřejný příspěvek" -#: ../../mod/settings.php:1160 +#: ../../mod/settings.php:1180 msgid "Default Permissions for New Posts" msgstr "Výchozí oprávnění pro nové příspěvky" -#: ../../mod/settings.php:1172 +#: ../../mod/settings.php:1192 msgid "Maximum private messages per day from unknown people:" msgstr "Maximum soukromých zpráv od neznámých lidí:" -#: ../../mod/settings.php:1175 +#: ../../mod/settings.php:1195 msgid "Notification Settings" msgstr "Nastavení notifikací" -#: ../../mod/settings.php:1176 +#: ../../mod/settings.php:1196 msgid "By default post a status message when:" msgstr "Defaultně posílat statusové zprávy když:" -#: ../../mod/settings.php:1177 +#: ../../mod/settings.php:1197 msgid "accepting a friend request" msgstr "akceptuji požadavek na přátelství" -#: ../../mod/settings.php:1178 +#: ../../mod/settings.php:1198 msgid "joining a forum/community" msgstr "připojující se k fóru/komunitě" -#: ../../mod/settings.php:1179 +#: ../../mod/settings.php:1199 msgid "making an interesting profile change" msgstr "provedení zajímavé profilové změny" -#: ../../mod/settings.php:1180 +#: ../../mod/settings.php:1200 msgid "Send a notification email when:" msgstr "Poslat notifikaci e-mailem, když" -#: ../../mod/settings.php:1181 +#: ../../mod/settings.php:1201 msgid "You receive an introduction" msgstr "obdržíte žádost o propojení" -#: ../../mod/settings.php:1182 +#: ../../mod/settings.php:1202 msgid "Your introductions are confirmed" msgstr "Vaše žádosti jsou potvrzeny" -#: ../../mod/settings.php:1183 +#: ../../mod/settings.php:1203 msgid "Someone writes on your profile wall" msgstr "někdo Vám napíše na Vaši profilovou stránku" -#: ../../mod/settings.php:1184 +#: ../../mod/settings.php:1204 msgid "Someone writes a followup comment" msgstr "někdo Vám napíše následný komentář" -#: ../../mod/settings.php:1185 +#: ../../mod/settings.php:1205 msgid "You receive a private message" msgstr "obdržíte soukromou zprávu" -#: ../../mod/settings.php:1186 +#: ../../mod/settings.php:1206 msgid "You receive a friend suggestion" msgstr "Obdržel jste návrh přátelství" -#: ../../mod/settings.php:1187 +#: ../../mod/settings.php:1207 msgid "You are tagged in a post" msgstr "Jste označen v příspěvku" -#: ../../mod/settings.php:1188 +#: ../../mod/settings.php:1208 msgid "You are poked/prodded/etc. in a post" msgstr "Byl Jste šťouchnout v příspěvku" -#: ../../mod/settings.php:1190 +#: ../../mod/settings.php:1210 +msgid "Activate desktop notifications" +msgstr "Aktivovat upozornění na desktopu" + +#: ../../mod/settings.php:1211 +msgid "" +"Note: This is an experimental feature, as being not supported by each " +"browser" +msgstr "Poznámka: Jedná se o experimentální funkci, protože není podporovaná všemi prohlížeči" + +#: ../../mod/settings.php:1212 +msgid "You will now receive desktop notifications!" +msgstr "Nyní obdržíte notifikace na desktopu!" + +#: ../../mod/settings.php:1214 msgid "Text-only notification emails" msgstr "Pouze textové notifikační e-maily" -#: ../../mod/settings.php:1192 +#: ../../mod/settings.php:1216 msgid "Send text only notification emails, without the html part" msgstr "Posílat pouze textové notifikační e-maily, bez html části." -#: ../../mod/settings.php:1194 +#: ../../mod/settings.php:1218 msgid "Advanced Account/Page Type Settings" msgstr "Pokročilé nastavení účtu/stránky" -#: ../../mod/settings.php:1195 +#: ../../mod/settings.php:1219 msgid "Change the behaviour of this account for special situations" msgstr "Změnit chování tohoto účtu ve speciálních situacích" -#: ../../mod/settings.php:1198 +#: ../../mod/settings.php:1222 msgid "Relocate" msgstr "Změna umístění" -#: ../../mod/settings.php:1199 +#: ../../mod/settings.php:1223 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 "Pokud jste přemístil tento profil z jiného serveru a nějaký z vašich kontaktů nedostává Vaše aktualizace, zkuste stisknout toto tlačítko." -#: ../../mod/settings.php:1200 +#: ../../mod/settings.php:1224 msgid "Resend relocate message to contacts" msgstr "Znovu odeslat správu o změně umístění Vašim kontaktům" @@ -4165,7 +4167,7 @@ msgstr "Vzdálené soukromé informace nejsou k dispozici." msgid "Visible to:" msgstr "Viditelné pro:" -#: ../../mod/contacts.php:112 +#: ../../mod/contacts.php:114 #, php-format msgid "%d contact edited." msgid_plural "%d contacts edited" @@ -4173,330 +4175,330 @@ msgstr[0] "%d kontakt upraven." msgstr[1] "%d kontakty upraveny" msgstr[2] "%d kontaktů upraveno" -#: ../../mod/contacts.php:143 ../../mod/contacts.php:276 +#: ../../mod/contacts.php:145 ../../mod/contacts.php:340 msgid "Could not access contact record." msgstr "Nelze získat přístup k záznamu kontaktu." -#: ../../mod/contacts.php:157 +#: ../../mod/contacts.php:159 msgid "Could not locate selected profile." msgstr "Nelze nalézt vybraný profil." -#: ../../mod/contacts.php:190 +#: ../../mod/contacts.php:192 msgid "Contact updated." msgstr "Kontakt aktualizován." -#: ../../mod/contacts.php:192 ../../mod/dfrn_request.php:576 +#: ../../mod/contacts.php:194 ../../mod/dfrn_request.php:576 msgid "Failed to update contact record." msgstr "Nepodařilo se aktualizovat kontakt." -#: ../../mod/contacts.php:291 +#: ../../mod/contacts.php:361 msgid "Contact has been blocked" msgstr "Kontakt byl zablokován" -#: ../../mod/contacts.php:291 +#: ../../mod/contacts.php:361 msgid "Contact has been unblocked" msgstr "Kontakt byl odblokován" -#: ../../mod/contacts.php:302 +#: ../../mod/contacts.php:372 msgid "Contact has been ignored" msgstr "Kontakt bude ignorován" -#: ../../mod/contacts.php:302 +#: ../../mod/contacts.php:372 msgid "Contact has been unignored" msgstr "Kontakt přestal být ignorován" -#: ../../mod/contacts.php:314 +#: ../../mod/contacts.php:384 msgid "Contact has been archived" msgstr "Kontakt byl archivován" -#: ../../mod/contacts.php:314 +#: ../../mod/contacts.php:384 msgid "Contact has been unarchived" msgstr "Kontakt byl vrácen z archívu." -#: ../../mod/contacts.php:339 ../../mod/contacts.php:727 +#: ../../mod/contacts.php:409 ../../mod/contacts.php:797 msgid "Do you really want to delete this contact?" msgstr "Opravdu chcete smazat tento kontakt?" -#: ../../mod/contacts.php:356 +#: ../../mod/contacts.php:426 msgid "Contact has been removed." msgstr "Kontakt byl odstraněn." -#: ../../mod/contacts.php:394 +#: ../../mod/contacts.php:464 #, php-format msgid "You are mutual friends with %s" msgstr "Jste vzájemní přátelé s uživatelem %s" -#: ../../mod/contacts.php:398 +#: ../../mod/contacts.php:468 #, php-format msgid "You are sharing with %s" msgstr "Sdílíte s uživatelem %s" -#: ../../mod/contacts.php:403 +#: ../../mod/contacts.php:473 #, php-format msgid "%s is sharing with you" msgstr "uživatel %s sdílí s vámi" -#: ../../mod/contacts.php:423 +#: ../../mod/contacts.php:493 msgid "Private communications are not available for this contact." msgstr "Soukromá komunikace není dostupná pro tento kontakt." -#: ../../mod/contacts.php:426 ../../mod/admin.php:569 +#: ../../mod/contacts.php:496 ../../mod/admin.php:571 msgid "Never" msgstr "Nikdy" -#: ../../mod/contacts.php:430 +#: ../../mod/contacts.php:500 msgid "(Update was successful)" msgstr "(Aktualizace byla úspěšná)" -#: ../../mod/contacts.php:430 +#: ../../mod/contacts.php:500 msgid "(Update was not successful)" msgstr "(Aktualizace nebyla úspěšná)" -#: ../../mod/contacts.php:432 +#: ../../mod/contacts.php:502 msgid "Suggest friends" msgstr "Navrhněte přátelé" -#: ../../mod/contacts.php:436 +#: ../../mod/contacts.php:506 #, php-format msgid "Network type: %s" msgstr "Typ sítě: %s" -#: ../../mod/contacts.php:444 +#: ../../mod/contacts.php:514 msgid "View all contacts" msgstr "Zobrazit všechny kontakty" -#: ../../mod/contacts.php:449 ../../mod/contacts.php:518 -#: ../../mod/contacts.php:730 ../../mod/admin.php:1009 +#: ../../mod/contacts.php:519 ../../mod/contacts.php:588 +#: ../../mod/contacts.php:800 ../../mod/admin.php:1012 msgid "Unblock" msgstr "Odblokovat" -#: ../../mod/contacts.php:449 ../../mod/contacts.php:518 -#: ../../mod/contacts.php:730 ../../mod/admin.php:1008 +#: ../../mod/contacts.php:519 ../../mod/contacts.php:588 +#: ../../mod/contacts.php:800 ../../mod/admin.php:1011 msgid "Block" msgstr "Blokovat" -#: ../../mod/contacts.php:452 +#: ../../mod/contacts.php:522 msgid "Toggle Blocked status" msgstr "Přepnout stav Blokováno" -#: ../../mod/contacts.php:455 ../../mod/contacts.php:519 -#: ../../mod/contacts.php:731 +#: ../../mod/contacts.php:525 ../../mod/contacts.php:589 +#: ../../mod/contacts.php:801 msgid "Unignore" msgstr "Přestat ignorovat" -#: ../../mod/contacts.php:458 +#: ../../mod/contacts.php:528 msgid "Toggle Ignored status" msgstr "Přepnout stav Ignorováno" -#: ../../mod/contacts.php:462 ../../mod/contacts.php:732 +#: ../../mod/contacts.php:532 ../../mod/contacts.php:802 msgid "Unarchive" msgstr "Vrátit z archívu" -#: ../../mod/contacts.php:462 ../../mod/contacts.php:732 +#: ../../mod/contacts.php:532 ../../mod/contacts.php:802 msgid "Archive" msgstr "Archivovat" -#: ../../mod/contacts.php:465 +#: ../../mod/contacts.php:535 msgid "Toggle Archive status" msgstr "Přepnout stav Archivováno" -#: ../../mod/contacts.php:468 +#: ../../mod/contacts.php:538 msgid "Repair" msgstr "Opravit" -#: ../../mod/contacts.php:471 +#: ../../mod/contacts.php:541 msgid "Advanced Contact Settings" msgstr "Pokročilé nastavení kontaktu" -#: ../../mod/contacts.php:477 +#: ../../mod/contacts.php:547 msgid "Communications lost with this contact!" msgstr "Komunikace s tímto kontaktem byla ztracena!" -#: ../../mod/contacts.php:480 +#: ../../mod/contacts.php:550 msgid "Fetch further information for feeds" msgstr "Načítat další informace pro kanál" -#: ../../mod/contacts.php:481 +#: ../../mod/contacts.php:551 msgid "Disabled" msgstr "Zakázáno" -#: ../../mod/contacts.php:481 +#: ../../mod/contacts.php:551 msgid "Fetch information" msgstr "Načítat informace" -#: ../../mod/contacts.php:481 +#: ../../mod/contacts.php:551 msgid "Fetch information and keywords" msgstr "Načítat informace a klíčová slova" -#: ../../mod/contacts.php:490 +#: ../../mod/contacts.php:560 msgid "Contact Editor" msgstr "Editor kontaktu" -#: ../../mod/contacts.php:493 +#: ../../mod/contacts.php:563 msgid "Profile Visibility" msgstr "Viditelnost profilu" -#: ../../mod/contacts.php:494 +#: ../../mod/contacts.php:564 #, php-format msgid "" "Please choose the profile you would like to display to %s when viewing your " "profile securely." msgstr "Vyberte prosím profil, který chcete zobrazit %s při zabezpečeném prohlížení vašeho profilu." -#: ../../mod/contacts.php:495 +#: ../../mod/contacts.php:565 msgid "Contact Information / Notes" msgstr "Kontaktní informace / poznámky" -#: ../../mod/contacts.php:496 +#: ../../mod/contacts.php:566 msgid "Edit contact notes" msgstr "Editovat poznámky kontaktu" -#: ../../mod/contacts.php:501 ../../mod/contacts.php:695 +#: ../../mod/contacts.php:571 ../../mod/contacts.php:765 #: ../../mod/nogroup.php:40 ../../mod/viewcontacts.php:64 #, php-format msgid "Visit %s's profile [%s]" msgstr "Navštivte profil uživatele %s [%s]" -#: ../../mod/contacts.php:502 +#: ../../mod/contacts.php:572 msgid "Block/Unblock contact" msgstr "Blokovat / Odblokovat kontakt" -#: ../../mod/contacts.php:503 +#: ../../mod/contacts.php:573 msgid "Ignore contact" msgstr "Ignorovat kontakt" -#: ../../mod/contacts.php:504 +#: ../../mod/contacts.php:574 msgid "Repair URL settings" msgstr "Opravit nastavení adresy URL " -#: ../../mod/contacts.php:505 +#: ../../mod/contacts.php:575 msgid "View conversations" msgstr "Zobrazit konverzace" -#: ../../mod/contacts.php:507 +#: ../../mod/contacts.php:577 msgid "Delete contact" msgstr "Odstranit kontakt" -#: ../../mod/contacts.php:511 +#: ../../mod/contacts.php:581 msgid "Last update:" msgstr "Poslední aktualizace:" -#: ../../mod/contacts.php:513 +#: ../../mod/contacts.php:583 msgid "Update public posts" msgstr "Aktualizovat veřejné příspěvky" -#: ../../mod/contacts.php:515 ../../mod/admin.php:1503 +#: ../../mod/contacts.php:585 ../../mod/admin.php:1506 msgid "Update now" msgstr "Aktualizovat" -#: ../../mod/contacts.php:522 +#: ../../mod/contacts.php:592 msgid "Currently blocked" msgstr "V současnosti zablokováno" -#: ../../mod/contacts.php:523 +#: ../../mod/contacts.php:593 msgid "Currently ignored" msgstr "V současnosti ignorováno" -#: ../../mod/contacts.php:524 +#: ../../mod/contacts.php:594 msgid "Currently archived" msgstr "Aktuálně archivován" -#: ../../mod/contacts.php:525 +#: ../../mod/contacts.php:595 msgid "" "Replies/likes to your public posts may still be visible" msgstr "Odpovědi/Libí se na Vaše veřejné příspěvky mohou být stále viditelné" -#: ../../mod/contacts.php:526 +#: ../../mod/contacts.php:596 msgid "Notification for new posts" msgstr "Upozornění na nové příspěvky" -#: ../../mod/contacts.php:526 +#: ../../mod/contacts.php:596 msgid "Send a notification of every new post of this contact" msgstr "Poslat upozornění při každém novém příspěvku tohoto kontaktu" -#: ../../mod/contacts.php:529 +#: ../../mod/contacts.php:599 msgid "Blacklisted keywords" msgstr "Zakázaná klíčová slova" -#: ../../mod/contacts.php:529 +#: ../../mod/contacts.php:599 msgid "" "Comma separated list of keywords that should not be converted to hashtags, " "when \"Fetch information and keywords\" is selected" msgstr "Čárkou oddělený seznam klíčových slov, které by neměly být převáděna na hashtagy, když je zvoleno \"Načítat informace a klíčová slova\"" -#: ../../mod/contacts.php:580 +#: ../../mod/contacts.php:650 msgid "Suggestions" msgstr "Doporučení" -#: ../../mod/contacts.php:583 +#: ../../mod/contacts.php:653 msgid "Suggest potential friends" msgstr "Navrhnout potenciální přátele" -#: ../../mod/contacts.php:589 +#: ../../mod/contacts.php:659 msgid "Show all contacts" msgstr "Zobrazit všechny kontakty" -#: ../../mod/contacts.php:592 +#: ../../mod/contacts.php:662 msgid "Unblocked" msgstr "Odblokován" -#: ../../mod/contacts.php:595 +#: ../../mod/contacts.php:665 msgid "Only show unblocked contacts" msgstr "Zobrazit pouze neblokované kontakty" -#: ../../mod/contacts.php:599 +#: ../../mod/contacts.php:669 msgid "Blocked" msgstr "Blokován" -#: ../../mod/contacts.php:602 +#: ../../mod/contacts.php:672 msgid "Only show blocked contacts" msgstr "Zobrazit pouze blokované kontakty" -#: ../../mod/contacts.php:606 +#: ../../mod/contacts.php:676 msgid "Ignored" msgstr "Ignorován" -#: ../../mod/contacts.php:609 +#: ../../mod/contacts.php:679 msgid "Only show ignored contacts" msgstr "Zobrazit pouze ignorované kontakty" -#: ../../mod/contacts.php:613 +#: ../../mod/contacts.php:683 msgid "Archived" msgstr "Archivován" -#: ../../mod/contacts.php:616 +#: ../../mod/contacts.php:686 msgid "Only show archived contacts" msgstr "Zobrazit pouze archivované kontakty" -#: ../../mod/contacts.php:620 +#: ../../mod/contacts.php:690 msgid "Hidden" msgstr "Skrytý" -#: ../../mod/contacts.php:623 +#: ../../mod/contacts.php:693 msgid "Only show hidden contacts" msgstr "Zobrazit pouze skryté kontakty" -#: ../../mod/contacts.php:671 +#: ../../mod/contacts.php:741 msgid "Mutual Friendship" msgstr "Vzájemné přátelství" -#: ../../mod/contacts.php:675 +#: ../../mod/contacts.php:745 msgid "is a fan of yours" msgstr "je Váš fanoušek" -#: ../../mod/contacts.php:679 +#: ../../mod/contacts.php:749 msgid "you are a fan of" msgstr "jste fanouškem" -#: ../../mod/contacts.php:696 ../../mod/nogroup.php:41 +#: ../../mod/contacts.php:766 ../../mod/nogroup.php:41 msgid "Edit contact" msgstr "Editovat kontakt" -#: ../../mod/contacts.php:722 +#: ../../mod/contacts.php:792 msgid "Search your contacts" msgstr "Prohledat Vaše kontakty" -#: ../../mod/contacts.php:723 ../../mod/directory.php:61 +#: ../../mod/contacts.php:793 ../../mod/directory.php:61 msgid "Finding: " msgstr "Zjištění: " @@ -4598,7 +4600,7 @@ msgstr "Členství na tomto webu je pouze na pozvání." msgid "Your invitation ID: " msgstr "Vaše pozvání ID:" -#: ../../mod/register.php:255 ../../mod/admin.php:621 +#: ../../mod/register.php:255 ../../mod/admin.php:623 msgid "Registration" msgstr "Registrace" @@ -4637,7 +4639,7 @@ msgstr "Příspěvek úspěšně odeslán" msgid "System down for maintenance" msgstr "Systém vypnut z důvodů údržby" -#: ../../mod/profile.php:155 ../../mod/display.php:332 +#: ../../mod/profile.php:155 ../../mod/display.php:334 msgid "Access to this profile has been restricted." msgstr "Přístup na tento profil byl omezen." @@ -4645,10 +4647,10 @@ msgstr "Přístup na tento profil byl omezen." msgid "Tips for New Members" msgstr "Tipy pro nové členy" -#: ../../mod/videos.php:115 ../../mod/dfrn_request.php:762 +#: ../../mod/videos.php:115 ../../mod/dfrn_request.php:777 #: ../../mod/viewcontacts.php:19 ../../mod/photos.php:920 #: ../../mod/search.php:89 ../../mod/community.php:18 -#: ../../mod/display.php:212 ../../mod/directory.php:33 +#: ../../mod/display.php:214 ../../mod/directory.php:33 msgid "Public access denied." msgstr "Veřejný přístup odepřen." @@ -4698,7 +4700,7 @@ msgstr "Upravit příspěvek" msgid "People Search" msgstr "Vyhledávání lidí" -#: ../../mod/dirfind.php:60 ../../mod/match.php:65 +#: ../../mod/dirfind.php:60 ../../mod/match.php:71 msgid "No matches" msgstr "Žádné shody" @@ -4807,72 +4809,76 @@ msgid "" "this profile." msgstr "Jste přihlášeni pod nesprávnou identitou Prosím, přihlaste se do tohoto profilu." -#: ../../mod/dfrn_request.php:671 +#: ../../mod/dfrn_request.php:674 ../../mod/dfrn_request.php:691 +msgid "Confirm" +msgstr "Potvrdit" + +#: ../../mod/dfrn_request.php:686 msgid "Hide this contact" msgstr "Skrýt tento kontakt" -#: ../../mod/dfrn_request.php:674 +#: ../../mod/dfrn_request.php:689 #, php-format msgid "Welcome home %s." msgstr "Vítejte doma %s." -#: ../../mod/dfrn_request.php:675 +#: ../../mod/dfrn_request.php:690 #, php-format msgid "Please confirm your introduction/connection request to %s." msgstr "Prosím potvrďte Vaši žádost o propojení %s." -#: ../../mod/dfrn_request.php:804 +#: ../../mod/dfrn_request.php:819 msgid "" "Please enter your 'Identity Address' from one of the following supported " "communications networks:" msgstr "Prosím zadejte Vaši adresu identity jedné z následujících podporovaných komunikačních sítí:" -#: ../../mod/dfrn_request.php:824 +#: ../../mod/dfrn_request.php:839 msgid "" "If you are not yet a member of the free social web, follow this link to find a public" " Friendica site and join us today." msgstr "Pokud ještě nejste členem svobodné sociální sítě, následujte tento odkaz k nalezení veřejného Friendica serveru a přidejte se k nám ještě dnes." -#: ../../mod/dfrn_request.php:827 +#: ../../mod/dfrn_request.php:842 msgid "Friend/Connection Request" msgstr "Požadavek o přátelství / kontaktování" -#: ../../mod/dfrn_request.php:828 +#: ../../mod/dfrn_request.php:843 msgid "" "Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " "testuser@identi.ca" msgstr "Příklady: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" -#: ../../mod/dfrn_request.php:829 +#: ../../mod/dfrn_request.php:844 ../../mod/follow.php:53 msgid "Please answer the following:" msgstr "Odpovězte, prosím, následující:" -#: ../../mod/dfrn_request.php:830 +#: ../../mod/dfrn_request.php:845 ../../mod/follow.php:54 #, php-format msgid "Does %s know you?" msgstr "Zná Vás uživatel %s ?" -#: ../../mod/dfrn_request.php:834 +#: ../../mod/dfrn_request.php:849 ../../mod/follow.php:55 msgid "Add a personal note:" msgstr "Přidat osobní poznámku:" -#: ../../mod/dfrn_request.php:837 +#: ../../mod/dfrn_request.php:852 msgid "StatusNet/Federated Social Web" msgstr "StatusNet / Federativní Sociální Web" -#: ../../mod/dfrn_request.php:839 +#: ../../mod/dfrn_request.php:854 #, php-format msgid "" " - please do not use this form. Instead, enter %s into your Diaspora search" " bar." msgstr " - prosím nepoužívejte tento formulář. Místo toho zadejte %s do Vašeho Diaspora vyhledávacího pole." -#: ../../mod/dfrn_request.php:840 +#: ../../mod/dfrn_request.php:855 ../../mod/follow.php:61 msgid "Your Identity Address:" msgstr "Verze PHP pro příkazový řádek na Vašem systému nemá povolen \"register_argc_argv\"." -#: ../../mod/dfrn_request.php:843 +#: ../../mod/dfrn_request.php:858 ../../mod/follow.php:64 msgid "Submit Request" msgstr "Odeslat žádost" @@ -4934,7 +4940,7 @@ msgstr "Navrhněte přátelé" msgid "Suggest a friend for %s" msgstr "Navrhněte přátelé pro uživatele %s" -#: ../../mod/share.php:44 +#: ../../mod/share.php:38 msgid "link" msgstr "odkaz" @@ -4946,15 +4952,15 @@ msgstr "Žádné kontakty." msgid "Theme settings updated." msgstr "Nastavení téma zobrazení bylo aktualizováno." -#: ../../mod/admin.php:104 ../../mod/admin.php:619 +#: ../../mod/admin.php:104 ../../mod/admin.php:621 msgid "Site" msgstr "Web" -#: ../../mod/admin.php:105 ../../mod/admin.php:998 ../../mod/admin.php:1013 +#: ../../mod/admin.php:105 ../../mod/admin.php:1001 ../../mod/admin.php:1016 msgid "Users" msgstr "Uživatelé" -#: ../../mod/admin.php:107 ../../mod/admin.php:1323 ../../mod/admin.php:1357 +#: ../../mod/admin.php:107 ../../mod/admin.php:1326 ../../mod/admin.php:1360 msgid "Themes" msgstr "Témata" @@ -4962,7 +4968,7 @@ msgstr "Témata" msgid "DB updates" msgstr "Aktualizace databáze" -#: ../../mod/admin.php:123 ../../mod/admin.php:132 ../../mod/admin.php:1444 +#: ../../mod/admin.php:123 ../../mod/admin.php:132 ../../mod/admin.php:1447 msgid "Logs" msgstr "Logy" @@ -4986,19 +4992,19 @@ msgstr "diagnostika" msgid "User registrations waiting for confirmation" msgstr "Registrace uživatele čeká na potvrzení" -#: ../../mod/admin.php:193 ../../mod/admin.php:952 +#: ../../mod/admin.php:193 ../../mod/admin.php:955 msgid "Normal Account" msgstr "Normální účet" -#: ../../mod/admin.php:194 ../../mod/admin.php:953 +#: ../../mod/admin.php:194 ../../mod/admin.php:956 msgid "Soapbox Account" msgstr "Soapbox účet" -#: ../../mod/admin.php:195 ../../mod/admin.php:954 +#: ../../mod/admin.php:195 ../../mod/admin.php:957 msgid "Community/Celebrity Account" msgstr "Komunitní účet / Účet celebrity" -#: ../../mod/admin.php:196 ../../mod/admin.php:955 +#: ../../mod/admin.php:196 ../../mod/admin.php:958 msgid "Automatic Friend Account" msgstr "Účet s automatickým schvalováním přátel" @@ -5014,9 +5020,9 @@ msgstr "Soukromé fórum" msgid "Message queues" msgstr "Fronty zpráv" -#: ../../mod/admin.php:222 ../../mod/admin.php:618 ../../mod/admin.php:997 -#: ../../mod/admin.php:1101 ../../mod/admin.php:1154 ../../mod/admin.php:1322 -#: ../../mod/admin.php:1356 ../../mod/admin.php:1443 +#: ../../mod/admin.php:222 ../../mod/admin.php:620 ../../mod/admin.php:1000 +#: ../../mod/admin.php:1104 ../../mod/admin.php:1157 ../../mod/admin.php:1325 +#: ../../mod/admin.php:1359 ../../mod/admin.php:1446 msgid "Administration" msgstr "Administrace" @@ -5044,331 +5050,331 @@ msgstr "Aktivní pluginy" msgid "Can not parse base url. Must have at least ://" msgstr "Nelze zpracovat výchozí url adresu. Musí obsahovat alespoň ://" -#: ../../mod/admin.php:516 +#: ../../mod/admin.php:518 msgid "Site settings updated." msgstr "Nastavení webu aktualizováno." -#: ../../mod/admin.php:562 +#: ../../mod/admin.php:564 msgid "No community page" msgstr "Komunitní stránka neexistuje" -#: ../../mod/admin.php:563 +#: ../../mod/admin.php:565 msgid "Public postings from users of this site" msgstr "Počet veřejných příspěvků od uživatele na této stránce" -#: ../../mod/admin.php:564 +#: ../../mod/admin.php:566 msgid "Global community page" msgstr "Globální komunitní stránka" -#: ../../mod/admin.php:570 +#: ../../mod/admin.php:572 msgid "At post arrival" msgstr "Při obdržení příspěvku" -#: ../../mod/admin.php:579 +#: ../../mod/admin.php:581 msgid "Multi user instance" msgstr "Více uživatelská instance" -#: ../../mod/admin.php:602 +#: ../../mod/admin.php:604 msgid "Closed" msgstr "Uzavřeno" -#: ../../mod/admin.php:603 +#: ../../mod/admin.php:605 msgid "Requires approval" msgstr "Vyžaduje schválení" -#: ../../mod/admin.php:604 +#: ../../mod/admin.php:606 msgid "Open" msgstr "Otevřená" -#: ../../mod/admin.php:608 +#: ../../mod/admin.php:610 msgid "No SSL policy, links will track page SSL state" msgstr "Žádná SSL politika, odkazy budou následovat stránky SSL stav" -#: ../../mod/admin.php:609 +#: ../../mod/admin.php:611 msgid "Force all links to use SSL" msgstr "Vyžadovat u všech odkazů použití SSL" -#: ../../mod/admin.php:610 +#: ../../mod/admin.php:612 msgid "Self-signed certificate, use SSL for local links only (discouraged)" msgstr "Certifikát podepsaný sám sebou, použít SSL pouze pro lokální odkazy (nedoporučeno)" -#: ../../mod/admin.php:622 +#: ../../mod/admin.php:624 msgid "File upload" msgstr "Nahrání souborů" -#: ../../mod/admin.php:623 +#: ../../mod/admin.php:625 msgid "Policies" msgstr "Politiky" -#: ../../mod/admin.php:624 +#: ../../mod/admin.php:626 msgid "Advanced" msgstr "Pokročilé" -#: ../../mod/admin.php:625 +#: ../../mod/admin.php:627 msgid "Performance" msgstr "Výkonnost" -#: ../../mod/admin.php:626 +#: ../../mod/admin.php:628 msgid "" "Relocate - WARNING: advanced function. Could make this server unreachable." msgstr "Změna umístění - Varování: pokročilá funkčnost. Tímto můžete znepřístupnit server." -#: ../../mod/admin.php:629 +#: ../../mod/admin.php:631 msgid "Site name" msgstr "Název webu" -#: ../../mod/admin.php:630 +#: ../../mod/admin.php:632 msgid "Host name" msgstr "Jméno hostitele (host name)" -#: ../../mod/admin.php:631 +#: ../../mod/admin.php:633 msgid "Sender Email" msgstr "Email ddesílatele" -#: ../../mod/admin.php:632 +#: ../../mod/admin.php:634 msgid "Banner/Logo" msgstr "Banner/logo" -#: ../../mod/admin.php:633 +#: ../../mod/admin.php:635 msgid "Shortcut icon" msgstr "Ikona zkratky" -#: ../../mod/admin.php:634 +#: ../../mod/admin.php:636 msgid "Touch icon" msgstr "Dotyková ikona" -#: ../../mod/admin.php:635 +#: ../../mod/admin.php:637 msgid "Additional Info" msgstr "Dodatečné informace" -#: ../../mod/admin.php:635 +#: ../../mod/admin.php:637 msgid "" "For public servers: you can add additional information here that will be " "listed at dir.friendica.com/siteinfo." msgstr "Pro veřejné servery: zde můžete doplnit dodatečné informace, které budou uvedeny v seznamu na dir.friendica.com/siteinfo." -#: ../../mod/admin.php:636 +#: ../../mod/admin.php:638 msgid "System language" msgstr "Systémový jazyk" -#: ../../mod/admin.php:637 +#: ../../mod/admin.php:639 msgid "System theme" msgstr "Grafická šablona systému " -#: ../../mod/admin.php:637 +#: ../../mod/admin.php:639 msgid "" "Default system theme - may be over-ridden by user profiles - change theme settings" msgstr "Defaultní systémové téma - může být změněno v uživatelských profilech - změnit theme settings" -#: ../../mod/admin.php:638 +#: ../../mod/admin.php:640 msgid "Mobile system theme" msgstr "Systémové téma zobrazení pro mobilní zařízení" -#: ../../mod/admin.php:638 +#: ../../mod/admin.php:640 msgid "Theme for mobile devices" msgstr "Téma zobrazení pro mobilní zařízení" -#: ../../mod/admin.php:639 +#: ../../mod/admin.php:641 msgid "SSL link policy" msgstr "Politika SSL odkazů" -#: ../../mod/admin.php:639 +#: ../../mod/admin.php:641 msgid "Determines whether generated links should be forced to use SSL" msgstr "Určuje, zda-li budou generované odkazy používat SSL" -#: ../../mod/admin.php:640 +#: ../../mod/admin.php:642 msgid "Force SSL" msgstr "Vynutit SSL" -#: ../../mod/admin.php:640 +#: ../../mod/admin.php:642 msgid "" "Force all Non-SSL requests to SSL - Attention: on some systems it could lead" " to endless loops." msgstr "Vynutit SSL pro všechny ne-SSL žádosti - Upozornění: na některých systémech může dojít k nekonečnému zacyklení." -#: ../../mod/admin.php:641 +#: ../../mod/admin.php:643 msgid "Old style 'Share'" msgstr "Sdílení \"postaru\"" -#: ../../mod/admin.php:641 +#: ../../mod/admin.php:643 msgid "Deactivates the bbcode element 'share' for repeating items." msgstr "Deaktivovat bbcode element \"share\" pro opakující se položky." -#: ../../mod/admin.php:642 +#: ../../mod/admin.php:644 msgid "Hide help entry from navigation menu" msgstr "skrýt nápovědu z navigačního menu" -#: ../../mod/admin.php:642 +#: ../../mod/admin.php:644 msgid "" "Hides the menu entry for the Help pages from the navigation menu. You can " "still access it calling /help directly." msgstr "Skryje menu ze stránek Nápověda z navigačního menu. Nápovědu můžete stále zobrazit přímo zadáním /help." -#: ../../mod/admin.php:643 +#: ../../mod/admin.php:645 msgid "Single user instance" msgstr "Jednouživatelská instance" -#: ../../mod/admin.php:643 +#: ../../mod/admin.php:645 msgid "Make this instance multi-user or single-user for the named user" msgstr "Nastavit tuto instanci víceuživatelskou nebo jednouživatelskou pro pojmenovaného uživatele" -#: ../../mod/admin.php:644 +#: ../../mod/admin.php:646 msgid "Maximum image size" msgstr "Maximální velikost obrázků" -#: ../../mod/admin.php:644 +#: ../../mod/admin.php:646 msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no " "limits." msgstr "Maximální velikost v bajtech nahraných obrázků. Defaultní je 0, což znamená neomezeno." -#: ../../mod/admin.php:645 +#: ../../mod/admin.php:647 msgid "Maximum image length" msgstr "Maximální velikost obrázků" -#: ../../mod/admin.php:645 +#: ../../mod/admin.php:647 msgid "" "Maximum length in pixels of the longest side of uploaded images. Default is " "-1, which means no limits." msgstr "Maximální délka v pixelech delší stránky nahrávaných obrázků. Defaultně je -1, což označuje bez limitu" -#: ../../mod/admin.php:646 +#: ../../mod/admin.php:648 msgid "JPEG image quality" msgstr "JPEG kvalita obrázku" -#: ../../mod/admin.php:646 +#: ../../mod/admin.php:648 msgid "" "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " "100, which is full quality." msgstr "Nahrávaný JPEG bude uložen se zadanou kvalitou v rozmezí [0-100]. Defaultní je 100, což znamená plnou kvalitu." -#: ../../mod/admin.php:648 +#: ../../mod/admin.php:650 msgid "Register policy" msgstr "Politika registrace" -#: ../../mod/admin.php:649 +#: ../../mod/admin.php:651 msgid "Maximum Daily Registrations" msgstr "Maximální počet denních registrací" -#: ../../mod/admin.php:649 +#: ../../mod/admin.php:651 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 "Pokud je registrace výše povolena, zde se nastaví maximální počet registrací nových uživatelů za den.\nPokud je registrace zakázána, toto nastavení nemá žádný efekt." -#: ../../mod/admin.php:650 +#: ../../mod/admin.php:652 msgid "Register text" msgstr "Registrace textu" -#: ../../mod/admin.php:650 +#: ../../mod/admin.php:652 msgid "Will be displayed prominently on the registration page." msgstr "Bude zřetelně zobrazeno na registrační stránce." -#: ../../mod/admin.php:651 +#: ../../mod/admin.php:653 msgid "Accounts abandoned after x days" msgstr "Účet je opuštěn po x dnech" -#: ../../mod/admin.php:651 +#: ../../mod/admin.php:653 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "Neztrácejte systémové zdroje kontaktováním externích webů s opuštěnými účty. Zadejte 0 pro žádný časový limit." -#: ../../mod/admin.php:652 +#: ../../mod/admin.php:654 msgid "Allowed friend domains" msgstr "Povolené domény přátel" -#: ../../mod/admin.php:652 +#: ../../mod/admin.php:654 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "Čárkou oddělený seznam domén, kterým je povoleno navazovat přátelství s tímto webem. Zástupné znaky (wildcards) jsou povoleny. Prázné znamená libovolnou doménu." -#: ../../mod/admin.php:653 +#: ../../mod/admin.php:655 msgid "Allowed email domains" msgstr "Povolené e-mailové domény" -#: ../../mod/admin.php:653 +#: ../../mod/admin.php:655 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 "Čárkou oddělený seznam domén emalových adres, kterým je povoleno provádět registraci na tomto webu. Zástupné znaky (wildcards) jsou povoleny. Prázné znamená libovolnou doménu." -#: ../../mod/admin.php:654 +#: ../../mod/admin.php:656 msgid "Block public" msgstr "Blokovat veřejnost" -#: ../../mod/admin.php:654 +#: ../../mod/admin.php:656 msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently logged in." msgstr "Označemím přepínače zablokujete veřejný přístup ke všem jinak veřejně přístupným soukromým stránkám uživatelům, kteří nebudou přihlášeni." -#: ../../mod/admin.php:655 +#: ../../mod/admin.php:657 msgid "Force publish" msgstr "Publikovat" -#: ../../mod/admin.php:655 +#: ../../mod/admin.php:657 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "Označením přepínače budou včechny profily na tomto webu uvedeny v adresáři webu." -#: ../../mod/admin.php:656 +#: ../../mod/admin.php:658 msgid "Global directory update URL" msgstr "aktualizace URL adresy Globálního adresáře " -#: ../../mod/admin.php:656 +#: ../../mod/admin.php:658 msgid "" "URL to update the global directory. If this is not set, the global directory" " is completely unavailable to the application." msgstr "URL adresa k aktualizaci globálního adresáře. Pokud není zadáno, funkce globálního adresáře není dostupná žádné aplikaci." -#: ../../mod/admin.php:657 +#: ../../mod/admin.php:659 msgid "Allow threaded items" msgstr "Povolit vícevláknové zpracování obsahu" -#: ../../mod/admin.php:657 +#: ../../mod/admin.php:659 msgid "Allow infinite level threading for items on this site." msgstr "Povolit zpracování obsahu tohoto webu neomezeným počtem paralelních vláken." -#: ../../mod/admin.php:658 +#: ../../mod/admin.php:660 msgid "Private posts by default for new users" msgstr "Nastavit pro nové uživatele příspěvky jako soukromé" -#: ../../mod/admin.php:658 +#: ../../mod/admin.php:660 msgid "" "Set default post permissions for all new members to the default privacy " "group rather than public." msgstr "Nastavit defaultní práva pro příspěvky od všech nových členů na výchozí soukromou skupinu raději než jako veřejné." -#: ../../mod/admin.php:659 +#: ../../mod/admin.php:661 msgid "Don't include post content in email notifications" msgstr "Nezahrnovat obsah příspěvků v emailových upozorněních" -#: ../../mod/admin.php:659 +#: ../../mod/admin.php:661 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 " V mailových upozorněních, které jsou odesílány z tohoto webu jako soukromé zprávy, nejsou z důvodů bezpečnosti obsaženy příspěvky/komentáře/soukromé zprávy apod. " -#: ../../mod/admin.php:660 +#: ../../mod/admin.php:662 msgid "Disallow public access to addons listed in the apps menu." msgstr "Zakázat veřejný přístup k rozšířením uvedeným v menu aplikace." -#: ../../mod/admin.php:660 +#: ../../mod/admin.php:662 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "Označení této volby omezí rozšíření uvedená v menu aplikace pouze pro členy." -#: ../../mod/admin.php:661 +#: ../../mod/admin.php:663 msgid "Don't embed private images in posts" msgstr "Nepovolit přidávání soukromých správ v příspěvcích" -#: ../../mod/admin.php:661 +#: ../../mod/admin.php:663 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 " @@ -5376,319 +5382,327 @@ msgid "" "while." msgstr "Nereplikovat lokální soukromé fotografie v příspěvcích s přidáním kopie obrázku. To znamená, že kontakty, které obdrží příspěvek obsahující soukromé fotografie se budou muset přihlásit a načíst každý obrázek, což může zabrat nějaký čas." -#: ../../mod/admin.php:662 +#: ../../mod/admin.php:664 msgid "Allow Users to set remote_self" msgstr "Umožnit uživatelům nastavit " -#: ../../mod/admin.php:662 +#: ../../mod/admin.php:664 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 "S tímto označením má každý uživatel možnost označit jakékoliv ze svých kontakt jako \"remote_self\" v nastavení v dialogu opravit kontakt. Tímto označením se budou zrcadlit všechny správy tohoto kontaktu v uživatelově proudu." -#: ../../mod/admin.php:663 +#: ../../mod/admin.php:665 msgid "Block multiple registrations" msgstr "Blokovat více registrací" -#: ../../mod/admin.php:663 +#: ../../mod/admin.php:665 msgid "Disallow users to register additional accounts for use as pages." msgstr "Znemožnit uživatelům registraci dodatečných účtů k použití jako stránky." -#: ../../mod/admin.php:664 +#: ../../mod/admin.php:666 msgid "OpenID support" msgstr "podpora OpenID" -#: ../../mod/admin.php:664 +#: ../../mod/admin.php:666 msgid "OpenID support for registration and logins." msgstr "Podpora OpenID pro registraci a přihlašování." -#: ../../mod/admin.php:665 +#: ../../mod/admin.php:667 msgid "Fullname check" msgstr "kontrola úplného jména" -#: ../../mod/admin.php:665 +#: ../../mod/admin.php:667 msgid "" "Force users to register with a space between firstname and lastname in Full " "name, as an antispam measure" msgstr "Přimět uživatele k registraci s mezerou mezi jménu a příjmením v poli Celé jméno, jako antispamové opatření." -#: ../../mod/admin.php:666 +#: ../../mod/admin.php:668 msgid "UTF-8 Regular expressions" msgstr "UTF-8 Regulární výrazy" -#: ../../mod/admin.php:666 +#: ../../mod/admin.php:668 msgid "Use PHP UTF8 regular expressions" msgstr "Použít PHP UTF8 regulární výrazy." -#: ../../mod/admin.php:667 +#: ../../mod/admin.php:669 msgid "Community Page Style" msgstr "Styl komunitní stránky" -#: ../../mod/admin.php:667 +#: ../../mod/admin.php:669 msgid "" "Type of community page to show. 'Global community' shows every public " "posting from an open distributed network that arrived on this server." msgstr "Typ komunitní stránky k zobrazení. 'Glogální komunita' zobrazuje každý veřejný příspěvek z otevřené distribuované sítě, která dorazí na tento server." -#: ../../mod/admin.php:668 +#: ../../mod/admin.php:670 msgid "Posts per user on community page" msgstr "Počet příspěvků na komunitní stránce" -#: ../../mod/admin.php:668 +#: ../../mod/admin.php:670 msgid "" "The maximum number of posts per user on the community page. (Not valid for " "'Global Community')" msgstr "Maximální počet příspěvků na uživatele na komunitní sptránce. (neplatí pro 'Globální komunitu')" -#: ../../mod/admin.php:669 +#: ../../mod/admin.php:671 msgid "Enable OStatus support" msgstr "Zapnout podporu OStatus" -#: ../../mod/admin.php:669 +#: ../../mod/admin.php:671 msgid "" "Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " "communications in OStatus are public, so privacy warnings will be " "occasionally displayed." msgstr "Poskytnout zabudouvanou kompatibilitu s OStatus (StatusNet, GNU Social apod.). Veškerá komunikace s OStatus je veřejná, proto bude občas zobrazeno upozornění." -#: ../../mod/admin.php:670 +#: ../../mod/admin.php:672 msgid "OStatus conversation completion interval" msgstr "Interval dokončení konverzace OStatus" -#: ../../mod/admin.php:670 +#: ../../mod/admin.php:672 msgid "" "How often shall the poller check for new entries in OStatus conversations? " "This can be a very ressource task." msgstr "Jak často by mělo probíhat ověřování pro nové přísvěvky v konverzacích OStatus? Toto může být velmi výkonově náročný úkol." -#: ../../mod/admin.php:671 +#: ../../mod/admin.php:673 msgid "Enable Diaspora support" msgstr "Povolit podporu Diaspora" -#: ../../mod/admin.php:671 +#: ../../mod/admin.php:673 msgid "Provide built-in Diaspora network compatibility." msgstr "Poskytnout zabudovanou kompatibilitu sitě Diaspora." -#: ../../mod/admin.php:672 +#: ../../mod/admin.php:674 msgid "Only allow Friendica contacts" msgstr "Povolit pouze Friendica kontakty" -#: ../../mod/admin.php:672 +#: ../../mod/admin.php:674 msgid "" "All contacts must use Friendica protocols. All other built-in communication " "protocols disabled." msgstr "Všechny kontakty musí používat Friendica protokol. Všchny jiné zabudované komunikační protokoly budou zablokované." -#: ../../mod/admin.php:673 +#: ../../mod/admin.php:675 msgid "Verify SSL" msgstr "Ověřit SSL" -#: ../../mod/admin.php:673 +#: ../../mod/admin.php:675 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 "Pokud si přejete, můžete vynutit striktní ověřování certifikátů. To znamená že se nebudete moci připojit k žádnému serveru s vlastním SSL certifikátem." -#: ../../mod/admin.php:674 +#: ../../mod/admin.php:676 msgid "Proxy user" msgstr "Proxy uživatel" -#: ../../mod/admin.php:675 +#: ../../mod/admin.php:677 msgid "Proxy URL" msgstr "Proxy URL adresa" -#: ../../mod/admin.php:676 +#: ../../mod/admin.php:678 msgid "Network timeout" msgstr "čas síťového spojení vypršelo (timeout)" -#: ../../mod/admin.php:676 +#: ../../mod/admin.php:678 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "Hodnota ve vteřinách. Nastavte 0 pro neomezeno (není doporučeno)." -#: ../../mod/admin.php:677 +#: ../../mod/admin.php:679 msgid "Delivery interval" msgstr "Interval doručování" -#: ../../mod/admin.php:677 +#: ../../mod/admin.php:679 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 "Prodleva mezi doručovacími procesy běžícími na pozadí snižuje zátěž systému. Doporučené nastavení: 4-5 pro sdílené instalace, 2-3 pro virtuální soukromé servery, 0-1 pro velké dedikované servery." -#: ../../mod/admin.php:678 +#: ../../mod/admin.php:680 msgid "Poll interval" msgstr "Dotazovací interval" -#: ../../mod/admin.php:678 +#: ../../mod/admin.php:680 msgid "" "Delay background polling processes by this many seconds to reduce system " "load. If 0, use delivery interval." msgstr "Tímto nastavením ovlivníte prodlení mezi aktualizačními procesy běžícími na pozadí, čímž můžete snížit systémovou zátěž. Pokud 0, použijte doručovací interval." -#: ../../mod/admin.php:679 +#: ../../mod/admin.php:681 msgid "Maximum Load Average" msgstr "Maximální průměrné zatížení" -#: ../../mod/admin.php:679 +#: ../../mod/admin.php:681 msgid "" "Maximum system load before delivery and poll processes are deferred - " "default 50." msgstr "Maximální zatížení systému před pozastavením procesů zajišťujících doručování aktualizací - defaultně 50" -#: ../../mod/admin.php:681 +#: ../../mod/admin.php:682 +msgid "Maximum Load Average (Frontend)" +msgstr "Maximální průměrné zatížení (Frontend)" + +#: ../../mod/admin.php:682 +msgid "Maximum system load before the frontend quits service - default 50." +msgstr "Maximální zatížení systému předtím, než frontend ukončí službu - defaultně 50" + +#: ../../mod/admin.php:684 msgid "Use MySQL full text engine" msgstr "Použít fulltextový vyhledávací stroj MySQL" -#: ../../mod/admin.php:681 +#: ../../mod/admin.php:684 msgid "" "Activates the full text engine. Speeds up search - but can only search for " "four and more characters." msgstr "Aktivuje fulltextový vyhledávací stroj. Zrychluje vyhledávání ale pouze pro vyhledávání čtyř a více znaků" -#: ../../mod/admin.php:682 +#: ../../mod/admin.php:685 msgid "Suppress Language" msgstr "Potlačit Jazyk" -#: ../../mod/admin.php:682 +#: ../../mod/admin.php:685 msgid "Suppress language information in meta information about a posting." msgstr "Potlačit jazykové informace v meta informacích o příspěvcích" -#: ../../mod/admin.php:683 +#: ../../mod/admin.php:686 msgid "Suppress Tags" msgstr "Potlačit štítky" -#: ../../mod/admin.php:683 +#: ../../mod/admin.php:686 msgid "Suppress showing a list of hashtags at the end of the posting." msgstr "Potlačit zobrazení listu hastagů na konci zprávy." -#: ../../mod/admin.php:684 +#: ../../mod/admin.php:687 msgid "Path to item cache" msgstr "Cesta k položkám vyrovnávací paměti" -#: ../../mod/admin.php:685 +#: ../../mod/admin.php:688 msgid "Cache duration in seconds" msgstr "Doba platnosti vyrovnávací paměti v sekundách" -#: ../../mod/admin.php:685 +#: ../../mod/admin.php:688 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 "Jak dlouho by měla vyrovnávací paměť držet data? Výchozí hodnota je 86400 sekund (Jeden den). Pro vypnutí funkce vyrovnávací paměti nastavte hodnotu na -1." -#: ../../mod/admin.php:686 +#: ../../mod/admin.php:689 msgid "Maximum numbers of comments per post" msgstr "Maximální počet komentářů k příspěvku" -#: ../../mod/admin.php:686 +#: ../../mod/admin.php:689 msgid "How much comments should be shown for each post? Default value is 100." msgstr "Kolik komentářů by mělo být zobrazeno k každému příspěvku? Defaultní hodnota je 100." -#: ../../mod/admin.php:687 +#: ../../mod/admin.php:690 msgid "Path for lock file" msgstr "Cesta k souboru zámku" -#: ../../mod/admin.php:688 +#: ../../mod/admin.php:691 msgid "Temp path" msgstr "Cesta k dočasným souborům" -#: ../../mod/admin.php:689 +#: ../../mod/admin.php:692 msgid "Base path to installation" msgstr "Základní cesta k instalaci" -#: ../../mod/admin.php:690 +#: ../../mod/admin.php:693 msgid "Disable picture proxy" msgstr "Vypnutí obrázkové proxy" -#: ../../mod/admin.php:690 +#: ../../mod/admin.php:693 msgid "" "The picture proxy increases performance and privacy. It shouldn't be used on" " systems with very low bandwith." msgstr "Obrázková proxi zvyšuje výkonnost a soukromí. Neměla by být použita na systémech s pomalým připojením k síti." -#: ../../mod/admin.php:691 +#: ../../mod/admin.php:694 msgid "Enable old style pager" msgstr "Aktivovat \"old style\" stránkování " -#: ../../mod/admin.php:691 +#: ../../mod/admin.php:694 msgid "" "The old style pager has page numbers but slows down massively the page " "speed." msgstr " \"old style\" stránkování zobrazuje čísla stránek ale značně zpomaluje rychlost stránky." -#: ../../mod/admin.php:692 +#: ../../mod/admin.php:695 msgid "Only search in tags" msgstr "Hledat pouze ve štítkách" -#: ../../mod/admin.php:692 +#: ../../mod/admin.php:695 msgid "On large systems the text search can slow down the system extremely." msgstr "Textové vyhledávání může u rozsáhlých systémů znamenat velmi citelné zpomalení systému." -#: ../../mod/admin.php:694 +#: ../../mod/admin.php:697 msgid "New base url" msgstr "Nová výchozí url adresa" -#: ../../mod/admin.php:711 +#: ../../mod/admin.php:714 msgid "Update has been marked successful" msgstr "Aktualizace byla označena jako úspěšná." -#: ../../mod/admin.php:719 +#: ../../mod/admin.php:722 #, php-format msgid "Database structure update %s was successfully applied." msgstr "Aktualizace struktury databáze %s byla úspěšně aplikována." -#: ../../mod/admin.php:722 +#: ../../mod/admin.php:725 #, php-format msgid "Executing of database structure update %s failed with error: %s" msgstr "Provádění aktualizace databáze %s skončilo chybou: %s" -#: ../../mod/admin.php:734 +#: ../../mod/admin.php:737 #, php-format msgid "Executing %s failed with error: %s" msgstr "Vykonávání %s selhalo s chybou: %s" -#: ../../mod/admin.php:737 +#: ../../mod/admin.php:740 #, php-format msgid "Update %s was successfully applied." msgstr "Aktualizace %s byla úspěšně aplikována." -#: ../../mod/admin.php:741 +#: ../../mod/admin.php:744 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "Aktualizace %s nevrátila žádný status. Není zřejmé, jestli byla úspěšná." -#: ../../mod/admin.php:743 +#: ../../mod/admin.php:746 #, php-format msgid "There was no additional update function %s that needed to be called." msgstr "Nebyla nalezena žádná další aktualizační funkce %s která by měla být volána." -#: ../../mod/admin.php:762 +#: ../../mod/admin.php:765 msgid "No failed updates." msgstr "Žádné neúspěšné aktualizace." -#: ../../mod/admin.php:763 +#: ../../mod/admin.php:766 msgid "Check database structure" msgstr "Ověření struktury databáze" -#: ../../mod/admin.php:768 +#: ../../mod/admin.php:771 msgid "Failed Updates" msgstr "Neúspěšné aktualizace" -#: ../../mod/admin.php:769 +#: ../../mod/admin.php:772 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "To nezahrnuje aktualizace do verze 1139, které nevracejí žádný status." -#: ../../mod/admin.php:770 +#: ../../mod/admin.php:773 msgid "Mark success (if update was manually applied)" msgstr "Označit za úspěšné (pokud byla aktualizace aplikována manuálně)" -#: ../../mod/admin.php:771 +#: ../../mod/admin.php:774 msgid "Attempt to execute this update step automatically" msgstr "Pokusit se provést tuto aktualizaci automaticky." -#: ../../mod/admin.php:803 +#: ../../mod/admin.php:806 #, php-format msgid "" "\n" @@ -5696,7 +5710,7 @@ msgid "" "\t\t\t\tthe administrator of %2$s has set up an account for you." msgstr "\n\t\t\tDrahý %1$s,\n\t\t\t\tadministrátor webu %2$s pro Vás vytvořil uživatelský účet." -#: ../../mod/admin.php:806 +#: ../../mod/admin.php:809 #, php-format msgid "" "\n" @@ -5726,7 +5740,7 @@ msgid "" "\t\t\tThank you and welcome to %4$s." msgstr "\n\t\t\tVaše přihlašovací údaje jsou následující:\n\n\t\t\tAdresa webu: \t%1$s\n\t\t\tpřihlašovací jméno:\t\t%2$s\n\t\t\theslo:\t\t%3$s\n\n\t\t\tHeslo si můžete změnit na stránce \"Nastavení\" vašeho účtu poté, co se přihlásíte.\n\n\t\t\tProsím věnujte pár chvil revizi dalšího nastavení vašeho účtu na dané stránce.\n\n\t\t\tTaké su můžete přidat nějaké základní informace do svého výchozího profilu (na stránce \"Profily\"), takže ostatní lidé vás snáze najdou. \n\n\t\t\tDoporučujeme Vám uvést celé jméno a i foto. Přidáním nějakých \"klíčových slov\" (velmi užitečné pro hledání nových přátel) a možná také zemi, ve které žijete, pokud nechcete být více konkrétní.\n\n\t\t\tPlně resepktujeme vaše právo na soukromí a nic z výše uvedeného není povinné. Pokud jste zde nový a neznáte zde nikoho, uvedením daných informací můžete získat nové přátele.\n\n\t\t\tDíky a vítejte na %4$s." -#: ../../mod/admin.php:850 +#: ../../mod/admin.php:853 #, php-format msgid "%s user blocked/unblocked" msgid_plural "%s users blocked/unblocked" @@ -5734,7 +5748,7 @@ msgstr[0] "%s uživatel blokován/odblokován" msgstr[1] "%s uživatelů blokováno/odblokováno" msgstr[2] "%s uživatelů blokováno/odblokováno" -#: ../../mod/admin.php:857 +#: ../../mod/admin.php:860 #, php-format msgid "%s user deleted" msgid_plural "%s users deleted" @@ -5742,194 +5756,194 @@ msgstr[0] "%s uživatel smazán" msgstr[1] "%s uživatelů smazáno" msgstr[2] "%s uživatelů smazáno" -#: ../../mod/admin.php:896 +#: ../../mod/admin.php:899 #, php-format msgid "User '%s' deleted" msgstr "Uživatel '%s' smazán" -#: ../../mod/admin.php:904 +#: ../../mod/admin.php:907 #, php-format msgid "User '%s' unblocked" msgstr "Uživatel '%s' odblokován" -#: ../../mod/admin.php:904 +#: ../../mod/admin.php:907 #, php-format msgid "User '%s' blocked" msgstr "Uživatel '%s' blokován" -#: ../../mod/admin.php:999 +#: ../../mod/admin.php:1002 msgid "Add User" msgstr "Přidat Uživatele" -#: ../../mod/admin.php:1000 +#: ../../mod/admin.php:1003 msgid "select all" msgstr "Vybrat vše" -#: ../../mod/admin.php:1001 +#: ../../mod/admin.php:1004 msgid "User registrations waiting for confirm" msgstr "Registrace uživatele čeká na potvrzení" -#: ../../mod/admin.php:1002 +#: ../../mod/admin.php:1005 msgid "User waiting for permanent deletion" msgstr "Uživatel čeká na trvalé smazání" -#: ../../mod/admin.php:1003 +#: ../../mod/admin.php:1006 msgid "Request date" msgstr "Datum žádosti" -#: ../../mod/admin.php:1004 +#: ../../mod/admin.php:1007 msgid "No registrations." msgstr "Žádné registrace." -#: ../../mod/admin.php:1006 +#: ../../mod/admin.php:1009 msgid "Deny" msgstr "Odmítnout" -#: ../../mod/admin.php:1010 +#: ../../mod/admin.php:1013 msgid "Site admin" msgstr "Site administrátor" -#: ../../mod/admin.php:1011 +#: ../../mod/admin.php:1014 msgid "Account expired" msgstr "Účtu vypršela platnost" -#: ../../mod/admin.php:1014 +#: ../../mod/admin.php:1017 msgid "New User" msgstr "Nový uživatel" -#: ../../mod/admin.php:1015 ../../mod/admin.php:1016 +#: ../../mod/admin.php:1018 ../../mod/admin.php:1019 msgid "Register date" msgstr "Datum registrace" -#: ../../mod/admin.php:1015 ../../mod/admin.php:1016 +#: ../../mod/admin.php:1018 ../../mod/admin.php:1019 msgid "Last login" msgstr "Datum posledního přihlášení" -#: ../../mod/admin.php:1015 ../../mod/admin.php:1016 +#: ../../mod/admin.php:1018 ../../mod/admin.php:1019 msgid "Last item" msgstr "Poslední položka" -#: ../../mod/admin.php:1015 +#: ../../mod/admin.php:1018 msgid "Deleted since" msgstr "Smazán od" -#: ../../mod/admin.php:1018 +#: ../../mod/admin.php:1021 msgid "" "Selected users will be deleted!\\n\\nEverything these users had posted on " "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "Vybraní uživatelé budou smazáni!\\n\\n Vše, co tito uživatelé na těchto stránkách vytvořili, bude trvale odstraněno!\\n\\n Opravdu pokračovat?" -#: ../../mod/admin.php:1019 +#: ../../mod/admin.php:1022 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 "Uživatel {0} bude smazán!\\n\\n Vše, co tento uživatel na těchto stránkách vytvořil, bude trvale odstraněno!\\n\\n Opravdu pokračovat?" -#: ../../mod/admin.php:1029 +#: ../../mod/admin.php:1032 msgid "Name of the new user." msgstr "Jméno nového uživatele" -#: ../../mod/admin.php:1030 +#: ../../mod/admin.php:1033 msgid "Nickname" msgstr "Přezdívka" -#: ../../mod/admin.php:1030 +#: ../../mod/admin.php:1033 msgid "Nickname of the new user." msgstr "Přezdívka nového uživatele." -#: ../../mod/admin.php:1031 +#: ../../mod/admin.php:1034 msgid "Email address of the new user." msgstr "Emailová adresa nového uživatele." -#: ../../mod/admin.php:1064 +#: ../../mod/admin.php:1067 #, php-format msgid "Plugin %s disabled." msgstr "Plugin %s zakázán." -#: ../../mod/admin.php:1068 +#: ../../mod/admin.php:1071 #, php-format msgid "Plugin %s enabled." msgstr "Plugin %s povolen." -#: ../../mod/admin.php:1078 ../../mod/admin.php:1294 +#: ../../mod/admin.php:1081 ../../mod/admin.php:1297 msgid "Disable" msgstr "Zakázat" -#: ../../mod/admin.php:1080 ../../mod/admin.php:1296 +#: ../../mod/admin.php:1083 ../../mod/admin.php:1299 msgid "Enable" msgstr "Povolit" -#: ../../mod/admin.php:1103 ../../mod/admin.php:1324 +#: ../../mod/admin.php:1106 ../../mod/admin.php:1327 msgid "Toggle" msgstr "Přepnout" -#: ../../mod/admin.php:1111 ../../mod/admin.php:1334 +#: ../../mod/admin.php:1114 ../../mod/admin.php:1337 msgid "Author: " msgstr "Autor: " -#: ../../mod/admin.php:1112 ../../mod/admin.php:1335 +#: ../../mod/admin.php:1115 ../../mod/admin.php:1338 msgid "Maintainer: " msgstr "Správce: " -#: ../../mod/admin.php:1254 +#: ../../mod/admin.php:1257 msgid "No themes found." msgstr "Nenalezeny žádná témata." -#: ../../mod/admin.php:1316 +#: ../../mod/admin.php:1319 msgid "Screenshot" msgstr "Snímek obrazovky" -#: ../../mod/admin.php:1362 +#: ../../mod/admin.php:1365 msgid "[Experimental]" msgstr "[Experimentální]" -#: ../../mod/admin.php:1363 +#: ../../mod/admin.php:1366 msgid "[Unsupported]" msgstr "[Nepodporováno]" -#: ../../mod/admin.php:1390 +#: ../../mod/admin.php:1393 msgid "Log settings updated." msgstr "Nastavení protokolu aktualizováno." -#: ../../mod/admin.php:1446 +#: ../../mod/admin.php:1449 msgid "Clear" msgstr "Vyčistit" -#: ../../mod/admin.php:1452 +#: ../../mod/admin.php:1455 msgid "Enable Debugging" msgstr "Povolit ladění" -#: ../../mod/admin.php:1453 +#: ../../mod/admin.php:1456 msgid "Log file" msgstr "Soubor s logem" -#: ../../mod/admin.php:1453 +#: ../../mod/admin.php:1456 msgid "" "Must be writable by web server. Relative to your Friendica top-level " "directory." msgstr "Musí být editovatelné web serverem. Relativní cesta k vašemu kořenovému adresáři Friendica" -#: ../../mod/admin.php:1454 +#: ../../mod/admin.php:1457 msgid "Log level" msgstr "Úroveň auditu" -#: ../../mod/admin.php:1504 +#: ../../mod/admin.php:1507 msgid "Close" msgstr "Zavřít" -#: ../../mod/admin.php:1510 +#: ../../mod/admin.php:1513 msgid "FTP Host" msgstr "Hostitel FTP" -#: ../../mod/admin.php:1511 +#: ../../mod/admin.php:1514 msgid "FTP Path" msgstr "Cesta FTP" -#: ../../mod/admin.php:1512 +#: ../../mod/admin.php:1515 msgid "FTP User" msgstr "FTP uživatel" -#: ../../mod/admin.php:1513 +#: ../../mod/admin.php:1516 msgid "FTP Password" msgstr "FTP heslo" @@ -6014,7 +6028,7 @@ msgstr "S hvězdičkou" msgid "Favourite Posts" msgstr "Oblíbené přízpěvky" -#: ../../mod/network.php:463 +#: ../../mod/network.php:458 #, php-format msgid "Warning: This group contains %s member from an insecure network." msgid_plural "" @@ -6023,31 +6037,31 @@ msgstr[0] "Upozornění: Tato skupina obsahuje %s člena z nezabezpečené sít msgstr[1] "Upozornění: Tato skupina obsahuje %s členy z nezabezpečené sítě." msgstr[2] "Upozornění: Tato skupina obsahuje %s členy z nezabezpečené sítě." -#: ../../mod/network.php:466 +#: ../../mod/network.php:461 msgid "Private messages to this group are at risk of public disclosure." msgstr "Soukromé zprávy této skupině jsou vystaveny riziku prozrazení." -#: ../../mod/network.php:520 ../../mod/content.php:119 +#: ../../mod/network.php:524 ../../mod/content.php:119 msgid "No such group" msgstr "Žádná taková skupina" -#: ../../mod/network.php:537 ../../mod/content.php:130 +#: ../../mod/network.php:541 ../../mod/content.php:130 msgid "Group is empty" msgstr "Skupina je prázdná" -#: ../../mod/network.php:544 ../../mod/content.php:134 +#: ../../mod/network.php:548 ../../mod/content.php:134 msgid "Group: " msgstr "Skupina: " -#: ../../mod/network.php:554 +#: ../../mod/network.php:558 msgid "Contact: " msgstr "Kontakt: " -#: ../../mod/network.php:556 +#: ../../mod/network.php:560 msgid "Private messages to this person are at risk of public disclosure." msgstr "Soukromé zprávy této osobě jsou vystaveny riziku prozrazení." -#: ../../mod/network.php:561 +#: ../../mod/network.php:565 msgid "Invalid contact." msgstr "Neplatný kontakt." @@ -6266,7 +6280,11 @@ msgstr "Aktuální fotografie" msgid "The post was created" msgstr "Příspěvek byl vytvořen" -#: ../../mod/follow.php:27 +#: ../../mod/follow.php:21 +msgid "You already added this contact." +msgstr "Již jste si tento kontakt přidali." + +#: ../../mod/follow.php:103 msgid "Contact added" msgstr "Kontakt přidán" @@ -6568,6 +6586,10 @@ msgstr "Vstupní data (ve formátu Diaspora): " msgid "diaspora2bb: " msgstr "diaspora2bb: " +#: ../../mod/p.php:9 +msgid "Not Extended" +msgstr "Nerozšířeně" + #: ../../mod/tagrm.php:41 msgid "Tag removed" msgstr "Štítek odstraněn" @@ -6594,19 +6616,19 @@ msgstr "Tímto bude kompletně odstraněn váš účet. Jakmile bude účet odst msgid "Please enter your password for verification:" msgstr "Prosím, zadejte své heslo pro ověření:" -#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 +#: ../../mod/profperm.php:25 ../../mod/profperm.php:56 msgid "Invalid profile identifier." msgstr "Neplatný identifikátor profilu." -#: ../../mod/profperm.php:101 +#: ../../mod/profperm.php:102 msgid "Profile Visibility Editor" msgstr "Editor viditelnosti profilu " -#: ../../mod/profperm.php:114 +#: ../../mod/profperm.php:115 msgid "Visible To" msgstr "Viditelný pro" -#: ../../mod/profperm.php:130 +#: ../../mod/profperm.php:131 msgid "All Contacts (with secure profile access)" msgstr "Všechny kontakty (se zabezpečeným přístupovým profilem )" @@ -6618,121 +6640,121 @@ msgstr "Shoda profilu" msgid "No keywords to match. Please add keywords to your default profile." msgstr "Žádná klíčová slova k porovnání. Prosím, přidejte klíčová slova do Vašeho výchozího profilu." -#: ../../mod/match.php:57 +#: ../../mod/match.php:62 msgid "is interested in:" msgstr "zajímá se o:" -#: ../../mod/events.php:66 +#: ../../mod/events.php:68 ../../mod/events.php:70 msgid "Event title and start time are required." msgstr "Název události a datum začátku jsou vyžadovány." -#: ../../mod/events.php:291 +#: ../../mod/events.php:303 msgid "l, F j" msgstr "l, F j" -#: ../../mod/events.php:313 +#: ../../mod/events.php:325 msgid "Edit event" msgstr "Editovat událost" -#: ../../mod/events.php:371 +#: ../../mod/events.php:383 msgid "Create New Event" msgstr "Vytvořit novou událost" -#: ../../mod/events.php:372 +#: ../../mod/events.php:384 msgid "Previous" msgstr "Předchozí" -#: ../../mod/events.php:373 ../../mod/install.php:207 +#: ../../mod/events.php:385 ../../mod/install.php:207 msgid "Next" msgstr "Dále" -#: ../../mod/events.php:446 +#: ../../mod/events.php:458 msgid "hour:minute" msgstr "hodina:minuta" -#: ../../mod/events.php:456 +#: ../../mod/events.php:468 msgid "Event details" msgstr "Detaily události" -#: ../../mod/events.php:457 +#: ../../mod/events.php:469 #, php-format msgid "Format is %s %s. Starting date and Title are required." msgstr "Formát je %s %s. Datum začátku a Název jsou vyžadovány." -#: ../../mod/events.php:459 +#: ../../mod/events.php:471 msgid "Event Starts:" msgstr "Událost začíná:" -#: ../../mod/events.php:459 ../../mod/events.php:473 +#: ../../mod/events.php:471 ../../mod/events.php:485 msgid "Required" msgstr "Vyžadováno" -#: ../../mod/events.php:462 +#: ../../mod/events.php:474 msgid "Finish date/time is not known or not relevant" msgstr "Datum/čas konce není zadán nebo není relevantní" -#: ../../mod/events.php:464 +#: ../../mod/events.php:476 msgid "Event Finishes:" msgstr "Akce končí:" -#: ../../mod/events.php:467 +#: ../../mod/events.php:479 msgid "Adjust for viewer timezone" msgstr "Nastavit časové pásmo pro uživatele s právem pro čtení" -#: ../../mod/events.php:469 +#: ../../mod/events.php:481 msgid "Description:" msgstr "Popis:" -#: ../../mod/events.php:473 +#: ../../mod/events.php:485 msgid "Title:" msgstr "Název:" -#: ../../mod/events.php:475 +#: ../../mod/events.php:487 msgid "Share this event" msgstr "Sdílet tuto událost" -#: ../../mod/ping.php:240 +#: ../../mod/ping.php:210 ../../mod/ping.php:234 msgid "{0} wants to be your friend" msgstr "{0} chce být Vaším přítelem" -#: ../../mod/ping.php:245 +#: ../../mod/ping.php:215 ../../mod/ping.php:239 msgid "{0} sent you a message" msgstr "{0} vám poslal zprávu" -#: ../../mod/ping.php:250 +#: ../../mod/ping.php:220 ../../mod/ping.php:244 msgid "{0} requested registration" msgstr "{0} požaduje registraci" -#: ../../mod/ping.php:256 +#: ../../mod/ping.php:250 #, php-format msgid "{0} commented %s's post" msgstr "{0} komentoval příspěvek uživatele %s" -#: ../../mod/ping.php:261 +#: ../../mod/ping.php:255 #, php-format msgid "{0} liked %s's post" msgstr "{0} má rád příspěvek uživatele %s" -#: ../../mod/ping.php:266 +#: ../../mod/ping.php:260 #, php-format msgid "{0} disliked %s's post" msgstr "{0} nemá rád příspěvek uživatele %s" -#: ../../mod/ping.php:271 +#: ../../mod/ping.php:265 #, php-format msgid "{0} is now friends with %s" msgstr "{0} se skamarádil s %s" -#: ../../mod/ping.php:276 +#: ../../mod/ping.php:270 msgid "{0} posted" msgstr "{0} zasláno" -#: ../../mod/ping.php:281 +#: ../../mod/ping.php:275 #, php-format msgid "{0} tagged %s's post with #%s" msgstr "{0} označen %s' příspěvek s #%s" -#: ../../mod/ping.php:287 +#: ../../mod/ping.php:281 msgid "{0} mentioned you in a post" msgstr "{0} vás zmínil v příspěvku" @@ -7458,47 +7480,51 @@ msgstr "Zrcadlit pro přeposlané příspěvky" msgid "Mirror as my own posting" msgstr "Zrcadlit jako mé vlastní příspěvky" -#: ../../mod/crepair.php:166 +#: ../../mod/crepair.php:168 +msgid "Refetch contact data" +msgstr "Znovu načíst data kontaktu" + +#: ../../mod/crepair.php:170 msgid "Account Nickname" msgstr "Přezdívka účtu" -#: ../../mod/crepair.php:167 +#: ../../mod/crepair.php:171 msgid "@Tagname - overrides Name/Nickname" msgstr "@Tagname - upřednostněno před Jménem/Přezdívkou" -#: ../../mod/crepair.php:168 +#: ../../mod/crepair.php:172 msgid "Account URL" msgstr "URL adresa účtu" -#: ../../mod/crepair.php:169 +#: ../../mod/crepair.php:173 msgid "Friend Request URL" msgstr "Žádost o přátelství URL" -#: ../../mod/crepair.php:170 +#: ../../mod/crepair.php:174 msgid "Friend Confirm URL" msgstr "URL adresa potvrzení přátelství" -#: ../../mod/crepair.php:171 +#: ../../mod/crepair.php:175 msgid "Notification Endpoint URL" msgstr "Notifikační URL adresa" -#: ../../mod/crepair.php:172 +#: ../../mod/crepair.php:176 msgid "Poll/Feed URL" msgstr "Poll/Feed URL adresa" -#: ../../mod/crepair.php:173 +#: ../../mod/crepair.php:177 msgid "New photo from this URL" msgstr "Nové foto z této URL adresy" -#: ../../mod/crepair.php:174 +#: ../../mod/crepair.php:178 msgid "Remote Self" msgstr "Remote Self" -#: ../../mod/crepair.php:176 +#: ../../mod/crepair.php:180 msgid "Mirror postings from this contact" msgstr "Zrcadlení správ od tohoto kontaktu" -#: ../../mod/crepair.php:176 +#: ../../mod/crepair.php:180 msgid "" "Mark this contact as remote_self, this will cause friendica to repost new " "entries from this contact." @@ -7701,7 +7727,7 @@ msgstr "Vyberte, co si přejete příjemci udělat" msgid "Make this post private" msgstr "Změnit tento příspěvek na soukromý" -#: ../../mod/display.php:496 +#: ../../mod/display.php:498 msgid "Item has been removed." msgstr "Položka byla odstraněna." @@ -7746,47 +7772,47 @@ msgstr "Dočasné selhání. Prosím, vyčkejte a zkuste to znovu." msgid "Introduction failed or was revoked." msgstr "Žádost o propojení selhala nebo byla zrušena." -#: ../../mod/dfrn_confirm.php:429 +#: ../../mod/dfrn_confirm.php:430 msgid "Unable to set contact photo." msgstr "Nelze nastavit fotografii kontaktu." -#: ../../mod/dfrn_confirm.php:571 +#: ../../mod/dfrn_confirm.php:572 #, php-format msgid "No user record found for '%s' " msgstr "Pro '%s' nenalezen žádný uživatelský záznam " -#: ../../mod/dfrn_confirm.php:581 +#: ../../mod/dfrn_confirm.php:582 msgid "Our site encryption key is apparently messed up." msgstr "Náš šifrovací klíč zřejmě přestal správně fungovat." -#: ../../mod/dfrn_confirm.php:592 +#: ../../mod/dfrn_confirm.php:593 msgid "Empty site URL was provided or URL could not be decrypted by us." msgstr "Byla poskytnuta prázdná URL adresa nebo se nepodařilo URL adresu dešifrovat." -#: ../../mod/dfrn_confirm.php:613 +#: ../../mod/dfrn_confirm.php:614 msgid "Contact record was not found for you on our site." msgstr "Kontakt záznam nebyl nalezen pro vás na našich stránkách." -#: ../../mod/dfrn_confirm.php:627 +#: ../../mod/dfrn_confirm.php:628 #, php-format msgid "Site public key not available in contact record for URL %s." msgstr "V adresáři není k dispozici veřejný klíč pro URL %s." -#: ../../mod/dfrn_confirm.php:647 +#: ../../mod/dfrn_confirm.php:648 msgid "" "The ID provided by your system is a duplicate on our system. It should work " "if you try again." msgstr "Váš systém poskytl duplicitní ID vůči našemu systému. Pokuste se akci zopakovat." -#: ../../mod/dfrn_confirm.php:658 +#: ../../mod/dfrn_confirm.php:659 msgid "Unable to set your contact credentials on our system." msgstr "Nelze nastavit Vaše přihlašovací údaje v našem systému." -#: ../../mod/dfrn_confirm.php:725 +#: ../../mod/dfrn_confirm.php:726 msgid "Unable to update your contact profile details on our system" msgstr "Nelze aktualizovat Váš profil v našem systému" -#: ../../mod/dfrn_confirm.php:797 +#: ../../mod/dfrn_confirm.php:798 #, php-format msgid "%1$s has joined %2$s" msgstr "%1$s se připojil k %2$s" diff --git a/view/cs/strings.php b/view/cs/strings.php index e642279dc5..57bb382eaf 100644 --- a/view/cs/strings.php +++ b/view/cs/strings.php @@ -76,13 +76,6 @@ $a->strings["Page not found."] = "Stránka nenalezena"; $a->strings["Permission denied"] = "Nedostatečné oprávnění"; $a->strings["Permission denied."] = "Přístup odmítnut."; $a->strings["toggle mobile"] = "přepnout mobil"; -$a->strings["Do you wish to confirm your identity (%s) with %s"] = "Přejete si potvrdit vaši identitu (%s) s %s"; -$a->strings["Confirm"] = "Potvrdit"; -$a->strings["Do not confirm"] = "Nepotvrzovat"; -$a->strings["Trust This Site"] = "Důvěřovat tomuto webu"; -$a->strings["No Identifier Sent"] = "Nezaslán žádný identifikátor"; -$a->strings["Requested identity don't match logged in user."] = "Požadovaná identita neodpovídá přihlášenému uživateli"; -$a->strings["Please wait; you are being redirected to <%s>"] = "Čekejte prosím, budete přesměrován na <%s>"; $a->strings["Delete this item?"] = "Odstranit tuto položku?"; $a->strings["Comment"] = "Okomentovat"; $a->strings["show more"] = "zobrazit více"; @@ -194,6 +187,7 @@ $a->strings["edit"] = "editovat"; $a->strings["Groups"] = "Skupiny"; $a->strings["Edit group"] = "Editovat skupinu"; $a->strings["Create a new group"] = "Vytvořit novou skupinu"; +$a->strings["Group Name: "] = "Název skupiny: "; $a->strings["Contacts not in any group"] = "Kontakty, které nejsou v žádné skupině"; $a->strings["add"] = "přidat"; $a->strings["Wall Photos"] = "Fotografie na zdi"; @@ -745,7 +739,6 @@ $a->strings["Group not found."] = "Skupina nenalezena."; $a->strings["Group name changed."] = "Název skupiny byl změněn."; $a->strings["Save Group"] = "Uložit Skupinu"; $a->strings["Create a group of contacts/friends."] = "Vytvořit skupinu kontaktů / přátel."; -$a->strings["Group Name: "] = "Název skupiny: "; $a->strings["Group removed."] = "Skupina odstraněna. "; $a->strings["Unable to remove group."] = "Nelze odstranit skupinu."; $a->strings["Group Editor"] = "Editor skupin"; @@ -844,6 +837,9 @@ $a->strings["Plugin Settings"] = "Nastavení doplňku"; $a->strings["Off"] = "Vypnuto"; $a->strings["On"] = "Zapnuto"; $a->strings["Additional Features"] = "Další Funkčnosti"; +$a->strings["General Social Media Settings"] = "General Social Media nastavení"; +$a->strings["Disable intelligent shortening"] = "Vypnout inteligentní zkracování"; +$a->strings["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."] = "Normálně se systém snaží nalézt nejlepší link pro přidání zkrácených příspěvků. Pokud je tato volba aktivní, pak každý zkrácený příspěvek bude vždy ukazovat na originální friencika příspěvek"; $a->strings["Built-in support for %s connectivity is %s"] = "Vestavěná podpora pro připojení s %s je %s"; $a->strings["enabled"] = "povoleno"; $a->strings["disabled"] = "zakázáno"; @@ -950,6 +946,9 @@ $a->strings["You receive a private message"] = "obdržíte soukromou zprávu"; $a->strings["You receive a friend suggestion"] = "Obdržel jste návrh přátelství"; $a->strings["You are tagged in a post"] = "Jste označen v příspěvku"; $a->strings["You are poked/prodded/etc. in a post"] = "Byl Jste šťouchnout v příspěvku"; +$a->strings["Activate desktop notifications"] = "Aktivovat upozornění na desktopu"; +$a->strings["Note: This is an experimental feature, as being not supported by each browser"] = "Poznámka: Jedná se o experimentální funkci, protože není podporovaná všemi prohlížeči"; +$a->strings["You will now receive desktop notifications!"] = "Nyní obdržíte notifikace na desktopu!"; $a->strings["Text-only notification emails"] = "Pouze textové notifikační e-maily"; $a->strings["Send text only notification emails, without the html part"] = "Posílat pouze textové notifikační e-maily, bez html části."; $a->strings["Advanced Account/Page Type Settings"] = "Pokročilé nastavení účtu/stránky"; @@ -1116,6 +1115,7 @@ $a->strings["Invalid profile URL."] = "Neplatné URL profilu."; $a->strings["Your introduction has been sent."] = "Vaše žádost o propojení byla odeslána."; $a->strings["Please login to confirm introduction."] = "Prosím přihlašte se k potvrzení žádosti o propojení."; $a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Jste přihlášeni pod nesprávnou identitou Prosím, přihlaste se do tohoto profilu."; +$a->strings["Confirm"] = "Potvrdit"; $a->strings["Hide this contact"] = "Skrýt tento kontakt"; $a->strings["Welcome home %s."] = "Vítejte doma %s."; $a->strings["Please confirm your introduction/connection request to %s."] = "Prosím potvrďte Vaši žádost o propojení %s."; @@ -1277,6 +1277,8 @@ $a->strings["Poll interval"] = "Dotazovací interval"; $a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Tímto nastavením ovlivníte prodlení mezi aktualizačními procesy běžícími na pozadí, čímž můžete snížit systémovou zátěž. Pokud 0, použijte doručovací interval."; $a->strings["Maximum Load Average"] = "Maximální průměrné zatížení"; $a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Maximální zatížení systému před pozastavením procesů zajišťujících doručování aktualizací - defaultně 50"; +$a->strings["Maximum Load Average (Frontend)"] = "Maximální průměrné zatížení (Frontend)"; +$a->strings["Maximum system load before the frontend quits service - default 50."] = "Maximální zatížení systému předtím, než frontend ukončí službu - defaultně 50"; $a->strings["Use MySQL full text engine"] = "Použít fulltextový vyhledávací stroj MySQL"; $a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "Aktivuje fulltextový vyhledávací stroj. Zrychluje vyhledávání ale pouze pro vyhledávání čtyř a více znaků"; $a->strings["Suppress Language"] = "Potlačit Jazyk"; @@ -1451,6 +1453,7 @@ $a->strings["Private photo"] = "Soukromé fotografie"; $a->strings["Public photo"] = "Veřejné fotografie"; $a->strings["Recent Photos"] = "Aktuální fotografie"; $a->strings["The post was created"] = "Příspěvek byl vytvořen"; +$a->strings["You already added this contact."] = "Již jste si tento kontakt přidali."; $a->strings["Contact added"] = "Kontakt přidán"; $a->strings["Move account"] = "Přesunout účet"; $a->strings["You can import an account from another Friendica server."] = "Můžete importovat účet z jiného Friendica serveru."; @@ -1510,6 +1513,7 @@ $a->strings["bb2dia2bb: "] = "bb2dia2bb: "; $a->strings["bb2md2html2bb: "] = "bb2md2html2bb: "; $a->strings["Source input (Diaspora format): "] = "Vstupní data (ve formátu Diaspora): "; $a->strings["diaspora2bb: "] = "diaspora2bb: "; +$a->strings["Not Extended"] = "Nerozšířeně"; $a->strings["Tag removed"] = "Štítek odstraněn"; $a->strings["Remove Item Tag"] = "Odebrat štítek položky"; $a->strings["Select a tag to remove: "] = "Vyberte štítek k odebrání: "; @@ -1717,6 +1721,7 @@ $a->strings["Return to contact editor"] = "Návrat k editoru kontaktu"; $a->strings["No mirroring"] = "Žádné zrcadlení"; $a->strings["Mirror as forwarded posting"] = "Zrcadlit pro přeposlané příspěvky"; $a->strings["Mirror as my own posting"] = "Zrcadlit jako mé vlastní příspěvky"; +$a->strings["Refetch contact data"] = "Znovu načíst data kontaktu"; $a->strings["Account Nickname"] = "Přezdívka účtu"; $a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - upřednostněno před Jménem/Přezdívkou"; $a->strings["Account URL"] = "URL adresa účtu"; From 1067718018610cda4b544c5b106a89af109a48c9 Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Wed, 27 May 2015 12:44:40 +0200 Subject: [PATCH 154/306] little revision --- mod/allfriends.php | 7 +++++-- mod/common.php | 7 +++++-- mod/crepair.php | 4 ++-- mod/photos.php | 3 ++- mod/videos.php | 4 ++-- 5 files changed, 16 insertions(+), 9 deletions(-) diff --git a/mod/allfriends.php b/mod/allfriends.php index bbdc5ef458..b73c55c226 100644 --- a/mod/allfriends.php +++ b/mod/allfriends.php @@ -20,12 +20,15 @@ function allfriends_content(&$a) { intval(local_user()) ); - $a->page['aside'] .= replace_macros(get_markup_template("vcard-widget.tpl"),array( + $vcard_widget .= replace_macros(get_markup_template("vcard-widget.tpl"),array( '$name' => $c[0]['name'], '$photo' => $c[0]['photo'], 'url' => $a->get_baseurl() . '/contacts/' . $cid )); - + + if(! x($a->page,'aside')) + $a->page['aside'] = ''; + $a->page['aside'] .= $vcard_widget; if(! count($c)) return; diff --git a/mod/common.php b/mod/common.php index 574443f483..6a1bf4e31b 100644 --- a/mod/common.php +++ b/mod/common.php @@ -28,12 +28,15 @@ function common_content(&$a) { ); } - $a->page['aside'] .= replace_macros(get_markup_template("vcard-widget.tpl"),array( + $vcard_widget .= replace_macros(get_markup_template("vcard-widget.tpl"),array( '$name' => $c[0]['name'], '$photo' => $c[0]['photo'], 'url' => $a->get_baseurl() . '/contacts/' . $cid )); - + + if(! x($a->page,'aside')) + $a->page['aside'] = ''; + $a->page['aside'] .= $vcard_widget; if(! count($c)) return; diff --git a/mod/crepair.php b/mod/crepair.php index 7cc67d4c83..457a06685d 100644 --- a/mod/crepair.php +++ b/mod/crepair.php @@ -23,11 +23,11 @@ function crepair_init(&$a) { if($contact_id) { $a->data['contact'] = $r[0]; $tpl = get_markup_template("vcard-widget.tpl"); - $o .= replace_macros($tpl, array( + $vcard_widget .= replace_macros($tpl, array( '$name' => $a->data['contact']['name'], '$photo' => $a->data['contact']['photo'] )); - $a->page['aside'] .= $o; + $a->page['aside'] .= $vcard_widget; } } diff --git a/mod/photos.php b/mod/photos.php index 657f23236d..ebb88c7391 100644 --- a/mod/photos.php +++ b/mod/photos.php @@ -34,7 +34,7 @@ function photos_init(&$a) { $tpl = get_markup_template("vcard-widget.tpl"); - $o .= replace_macros($tpl, array( + $vcard_widget .= replace_macros($tpl, array( '$name' => $a->data['user']['username'], '$photo' => $profilephoto )); @@ -76,6 +76,7 @@ function photos_init(&$a) { if(! x($a->page,'aside')) $a->page['aside'] = ''; + $a->page['aside'] .= $vcard_widget; $a->page['aside'] .= $o; diff --git a/mod/videos.php b/mod/videos.php index bc076e740a..5553bbbeb3 100644 --- a/mod/videos.php +++ b/mod/videos.php @@ -32,7 +32,7 @@ function videos_init(&$a) { $tpl = get_markup_template("vcard-widget.tpl"); - $o .= replace_macros($tpl, array( + $vcard_widget = replace_macros($tpl, array( '$name' => $a->data['user']['username'], '$photo' => $profilephoto )); @@ -74,7 +74,7 @@ function videos_init(&$a) { if(! x($a->page,'aside')) $a->page['aside'] = ''; - $a->page['aside'] .= $o; + $a->page['aside'] .= $vcard_widget; $tpl = get_markup_template("videos_head.tpl"); From 24962f300229ffd54f88e3ec7ce58573603ed573 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Thu, 28 May 2015 07:51:12 +0200 Subject: [PATCH 155/306] OStatus completion: The id and the plink for fetched items should now have reliable values. --- include/ostatus_conversation.php | 50 +++++++++++++++++++++++--------- 1 file changed, 36 insertions(+), 14 deletions(-) diff --git a/include/ostatus_conversation.php b/include/ostatus_conversation.php index f21f8248f8..a03330a820 100644 --- a/include/ostatus_conversation.php +++ b/include/ostatus_conversation.php @@ -1,4 +1,6 @@ id) AND isset($single_conv->object->id)) + if (isset($single_conv->object->id)) $single_conv->id = $single_conv->object->id; - elseif (!isset($single_conv->id) AND isset($single_conv->object->url)) - $single_conv->id = $single_conv->object->url; + + logger("Got id ".$single_conv->id, LOGGER_DEBUG); + + //if (!isset($single_conv->id) AND isset($single_conv->object->id)) + // $single_conv->id = $single_conv->object->id; + //elseif (!isset($single_conv->id) AND isset($single_conv->object->url)) + // $single_conv->id = $single_conv->object->url; $plink = ostatus_convert_href($single_conv->id); + if (isset($single_conv->object->url)) + $plink = ostatus_convert_href($single_conv->object->url); - if (isset($single_conv->provider->url) AND isset($single_conv->statusnet_notice_info->local_id)) - $plink = $single_conv->provider->url."notice/".$single_conv->statusnet_notice_info->local_id; - elseif (isset($single_conv->provider->url) AND isset($single_conv->statusnet->notice_info->local_id)) - $plink = $single_conv->provider->url."notice/".$single_conv->statusnet->notice_info->local_id; - elseif (isset($single_conv->provider->url) AND isset($single_conv->status_net->notice_info->local_id)) - $plink = $single_conv->provider->url."notice/".$single_conv->status_net->notice_info->local_id; + logger("Got url ".$plink, LOGGER_DEBUG); + + //if (isset($single_conv->provider->url) AND isset($single_conv->statusnet_notice_info->local_id)) + // $plink = $single_conv->provider->url."notice/".$single_conv->statusnet_notice_info->local_id; + //elseif (isset($single_conv->provider->url) AND isset($single_conv->statusnet->notice_info->local_id)) + // $plink = $single_conv->provider->url."notice/".$single_conv->statusnet->notice_info->local_id; + //elseif (isset($single_conv->provider->url) AND isset($single_conv->status_net->notice_info->local_id)) + // $plink = $single_conv->provider->url."notice/".$single_conv->status_net->notice_info->local_id; if (@!$single_conv->id) continue; @@ -197,14 +208,25 @@ function complete_conversation($itemid, $conversation_url, $only_add_conversatio continue; } + $actor = $single_conv->actor->id; + if (isset($single_conv->actor->url)) + $actor = $single_conv->actor->url; + $contact = q("SELECT `id` FROM `contact` WHERE `uid` = %d AND `nurl` = '%s' AND `network` != '%s'", - $message["uid"], normalise_link($single_conv->actor->id), NETWORK_STATUSNET); + $message["uid"], normalise_link($actor), NETWORK_STATUSNET); if (count($contact)) { - logger("Found contact for url ".$single_conv->actor->id, LOGGER_DEBUG); + logger("Found contact for url ".$actor, LOGGER_DEBUG); $contact_id = $contact[0]["id"]; } else { - logger("No contact found for url ".$single_conv->actor->id, LOGGER_DEBUG); + logger("No contact found for url ".$actor, LOGGER_DEBUG); + + // Adding a global contact + // To-Do: Use this data for the post + $global_contact_id = get_contact($actor, 0); + + logger("Global contact ".$global_contact_id." found for url ".$actor, LOGGER_DEBUG); + $contact_id = $parent["contact-id"]; } @@ -227,12 +249,12 @@ function complete_conversation($itemid, $conversation_url, $only_add_conversatio if ($arr["owner-name"] == '') $arr["owner-name"] = $single_conv->actor->displayName; - $arr["owner-link"] = $single_conv->actor->id; + $arr["owner-link"] = $actor; $arr["owner-avatar"] = $single_conv->actor->image->url; //$arr["author-name"] = $single_conv->actor->contact->displayName; //$arr["author-name"] = $single_conv->actor->contact->preferredUsername; $arr["author-name"] = $arr["owner-name"]; - $arr["author-link"] = $single_conv->actor->id; + $arr["author-link"] = $actor; $arr["author-avatar"] = $single_conv->actor->image->url; $arr["body"] = html2bbcode($single_conv->content); From 487d57df4569d2be1200f0e03c0b85bdc0ee0bfe Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Thu, 28 May 2015 08:02:34 +0200 Subject: [PATCH 156/306] Fetch the author url and not the id. --- include/items.php | 30 +++++++++++++++++++++++++++--- include/ostatus_conversation.php | 15 --------------- 2 files changed, 27 insertions(+), 18 deletions(-) diff --git a/include/items.php b/include/items.php index 69b4a0f259..ef164bc2ce 100644 --- a/include/items.php +++ b/include/items.php @@ -464,12 +464,27 @@ function get_atom_elements($feed, $item, $contact = array()) { // look for a photo. We should check media size and find the best one, // but for now let's just find any author photo + // Additionally we look for an alternate author link. On OStatus this one is the one we want. + + // Search for ostatus conversation url + $authorlinks = $item->feed->data["child"][SIMPLEPIE_NAMESPACE_ATOM_10]["feed"][0]["child"][SIMPLEPIE_NAMESPACE_ATOM_10]["author"][0]["child"]["http://www.w3.org/2005/Atom"]["link"]; + if (is_array($authorlinks)) { + foreach ($authorlinks as $link) { + $linkdata = array_shift($link["attribs"]); + + if ($linkdata["rel"] == "alternate") + $res["author-link"] = $linkdata["href"]; + }; + } $rawauthor = $item->get_item_tags(SIMPLEPIE_NAMESPACE_ATOM_10,'author'); if($rawauthor && $rawauthor[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link']) { $base = $rawauthor[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link']; foreach($base as $link) { + if($link['attribs']['']['rel'] === 'alternate') + $res['author-link'] = unxmlify($link['attribs']['']['href']); + if(!x($res, 'author-avatar') || !$res['author-avatar']) { if($link['attribs']['']['rel'] === 'photo' || $link['attribs']['']['rel'] === 'avatar') $res['author-avatar'] = unxmlify($link['attribs']['']['href']); @@ -828,7 +843,7 @@ function get_atom_elements($feed, $item, $contact = array()) { logger('get_atom_elements: Looking for status.net repeated message'); $message = $child["http://activitystrea.ms/spec/1.0/"]["object"][0]["child"][SIMPLEPIE_NAMESPACE_ATOM_10]["content"][0]["data"]; - $orig_uri = $child["http://activitystrea.ms/spec/1.0/"]["object"][0]["child"][SIMPLEPIE_NAMESPACE_ATOM_10]["id"][0]["data"]; + $orig_id = ostatus_convert_href($child["http://activitystrea.ms/spec/1.0/"]["object"][0]["child"][SIMPLEPIE_NAMESPACE_ATOM_10]["id"][0]["data"]); $author = $child[SIMPLEPIE_NAMESPACE_ATOM_10]["author"][0]["child"][SIMPLEPIE_NAMESPACE_ATOM_10]; $uri = $author["uri"][0]["data"]; $name = $author["name"][0]["data"]; @@ -836,10 +851,10 @@ function get_atom_elements($feed, $item, $contact = array()) { $avatar = $avatar["href"]; if (($name != "") and ($uri != "") and ($avatar != "") and ($message != "")) { - logger('get_atom_elements: fixing sender of repeated message.'); + logger('get_atom_elements: fixing sender of repeated message. '.$orig_id, LOGGER_DEBUG); if (!intval(get_config('system','wall-to-wall_share'))) { - $prefix = share_header($name, $uri, $avatar, "", "", $orig_uri); + $prefix = share_header($name, $uri, $avatar, "", "", $orig_link); $res["body"] = $prefix.html2bbcode($message)."[/share]"; } else { @@ -866,6 +881,9 @@ function get_atom_elements($feed, $item, $contact = array()) { if ($conversation["rel"] == "ostatus:conversation") { $res["ostatus_conversation"] = ostatus_convert_href($conversation["href"]); logger('get_atom_elements: found conversation url '.$res["ostatus_conversation"]); + } elseif ($conversation["rel"] == "alternate") { + $res["plink"] = $conversation["href"]; + logger('get_atom_elements: found plink '.$res["plink"]); } }; } @@ -2212,6 +2230,12 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $pass = 0) return; } + // Test - remove before flight +// if ($contact['network'] === NETWORK_OSTATUS) { +// $tempfile = tempnam(get_temppath(), "ostatus"); +// file_put_contents($tempfile, $xml); +// } + $feed = new SimplePie(); $feed->set_raw_data($xml); if($datedir) diff --git a/include/ostatus_conversation.php b/include/ostatus_conversation.php index a03330a820..f40c4827b9 100644 --- a/include/ostatus_conversation.php +++ b/include/ostatus_conversation.php @@ -139,30 +139,15 @@ function complete_conversation($itemid, $conversation_url, $only_add_conversatio logger("Got id ".$single_conv->id, LOGGER_DEBUG); - //if (!isset($single_conv->id) AND isset($single_conv->object->id)) - // $single_conv->id = $single_conv->object->id; - //elseif (!isset($single_conv->id) AND isset($single_conv->object->url)) - // $single_conv->id = $single_conv->object->url; - $plink = ostatus_convert_href($single_conv->id); if (isset($single_conv->object->url)) $plink = ostatus_convert_href($single_conv->object->url); logger("Got url ".$plink, LOGGER_DEBUG); - //if (isset($single_conv->provider->url) AND isset($single_conv->statusnet_notice_info->local_id)) - // $plink = $single_conv->provider->url."notice/".$single_conv->statusnet_notice_info->local_id; - //elseif (isset($single_conv->provider->url) AND isset($single_conv->statusnet->notice_info->local_id)) - // $plink = $single_conv->provider->url."notice/".$single_conv->statusnet->notice_info->local_id; - //elseif (isset($single_conv->provider->url) AND isset($single_conv->status_net->notice_info->local_id)) - // $plink = $single_conv->provider->url."notice/".$single_conv->status_net->notice_info->local_id; - if (@!$single_conv->id) continue; - //logger("OStatus conversation id ".$single_conv->id, LOGGER_DEBUG); - //logger("OStatus conversation data ".print_r($single_conv, true), LOGGER_DEBUG); - if ($first_id == "") { $first_id = $single_conv->id; From 415a606a59cd68d7a2c85abaf8bae14fe76dbeef Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Thu, 28 May 2015 15:54:53 +0200 Subject: [PATCH 157/306] better solution to exclude Contact Photos and include count of Photos --- mod/photos.php | 79 +++++++++------------------------ view/templates/photo_albums.tpl | 8 +++- 2 files changed, 28 insertions(+), 59 deletions(-) diff --git a/mod/photos.php b/mod/photos.php index 3ae5bbf392..1bb380696a 100644 --- a/mod/photos.php +++ b/mod/photos.php @@ -38,29 +38,29 @@ function photos_init(&$a) { $sql_extra = permissions_sql($a->data['user']['uid']); - $albums = q("SELECT distinct(`album`) AS `album` FROM `photo` WHERE `uid` = %d $sql_extra order by created desc", - intval($a->data['user']['uid']) + $albums = q("SELECT count(distinct `resource-id`) AS `total`, `album` FROM `photo` WHERE `uid` = %d AND `album` != '%s' AND `album` != '%s' + $sql_extra group by album order by created desc", + intval($a->data['user']['uid']), + dbesc('Contact Photos'), + dbesc( t('Contact Photos')) ); - - $ret = array('success' => false); + $albums_visible = ((intval($a->data['user']['hidewall']) && (! local_user()) && (! remote_user())) ? false : true); - foreach($albums as $k => $album) { - if( $album['album'] === 'Contact Photos') { - unset ($albums[$k]['album']); - } - } - + // add various encodings to the array so we can just loop through and pick them out in a template + $ret = array('success' => false); + if($albums) { - if ($albums_visible) { + $a->data['albums'] = $albums; + if ($albums_visible) $ret['success'] = true; - } + $ret['albums'] = array(); foreach($albums as $k => $album) { $entry = array( 'text' => $album['album'], 'total' => $album['total'], - 'url' => z_root() . '/photos/' . $channel['channel_address'] . '/album/' . bin2hex($album['album']), + 'url' => z_root() . '/photos/' . $a->data['user']['nickname'] . '/album/' . bin2hex($album['album']), 'urlencode' => urlencode($album['album']), 'bin2hex' => bin2hex($album['album']) ); @@ -68,62 +68,27 @@ function photos_init(&$a) { } } - /*return $ret;*/ - - $o = ''; - - if(! $albums) { - if(array_key_exists('albums', get_app()->data)) - $albums = get_app()->data['albums']; - else - $albums = $ret; - } - - $albums = $ret; - + $albums = $ret; + + if(local_user() && $a->data['user']['uid'] == local_user()) + $can_post = true; if($albums['success']) { - $o = replace_macros(get_markup_template('photo_albums.tpl'),array( + $photo_albums_widget = replace_macros(get_markup_template('photo_albums.tpl'),array( '$nick' => $a->data['user']['nickname'], '$title' => t('Photo Albums'), '$albums' => $albums['albums'], - '$baseurl' => z_root() + '$baseurl' => z_root(), + '$upload' => array( t('Upload New Photos'), $a->get_baseurl() . '/photos/' . $a->data['user']['nickname'] . '/upload/' . bin2hex($album)), + '$can_post' => $can_post )); } -/* if(count($albums)) { - $a->data['albums'] = $albums; - - $albums_visible = ((intval($a->data['user']['hidewall']) && (! local_user()) && (! remote_user())) ? false : true); - - if($albums_visible) { - $o .= ''; - } - * - */ if(! x($a->page,'aside')) $a->page['aside'] = ''; $a->page['aside'] .= $o; + $a->page['aside'] .= $photo_albums_widget; $tpl = get_markup_template("photos_head.tpl"); diff --git a/view/templates/photo_albums.tpl b/view/templates/photo_albums.tpl index bbbf5c4a97..de8f2cd16c 100644 --- a/view/templates/photo_albums.tpl +++ b/view/templates/photo_albums.tpl @@ -1,13 +1,17 @@ From 5990d62b06c1de259e6844341c9de1c191e5a5ac Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Thu, 28 May 2015 16:15:48 +0200 Subject: [PATCH 158/306] use z_root --- mod/allfriends.php | 2 +- mod/common.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/mod/allfriends.php b/mod/allfriends.php index b73c55c226..c32a05a2ce 100644 --- a/mod/allfriends.php +++ b/mod/allfriends.php @@ -23,7 +23,7 @@ function allfriends_content(&$a) { $vcard_widget .= replace_macros(get_markup_template("vcard-widget.tpl"),array( '$name' => $c[0]['name'], '$photo' => $c[0]['photo'], - 'url' => $a->get_baseurl() . '/contacts/' . $cid + 'url' => z_root() . '/contacts/' . $cid )); if(! x($a->page,'aside')) diff --git a/mod/common.php b/mod/common.php index 6a1bf4e31b..a4320f9eb9 100644 --- a/mod/common.php +++ b/mod/common.php @@ -31,12 +31,12 @@ function common_content(&$a) { $vcard_widget .= replace_macros(get_markup_template("vcard-widget.tpl"),array( '$name' => $c[0]['name'], '$photo' => $c[0]['photo'], - 'url' => $a->get_baseurl() . '/contacts/' . $cid + 'url' => z_root() . '/contacts/' . $cid )); if(! x($a->page,'aside')) $a->page['aside'] = ''; - $a->page['aside'] .= $vcard_widget; + $a->page['aside'] .= $vcard_widget; if(! count($c)) return; From a2a8afa58360cd655f1b60c3de3b369a03f9be80 Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Thu, 28 May 2015 19:54:23 +0200 Subject: [PATCH 159/306] block local directory for public access --- htconfig.php | 4 ++++ mod/directory.php | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/htconfig.php b/htconfig.php index 4208924cfd..4c88b6e742 100644 --- a/htconfig.php +++ b/htconfig.php @@ -94,3 +94,7 @@ $a->config['system']['lockpath'] = ""; // Use the old style "share" // $a->config['system']['old_share'] = false; + +//Deny public access to the local directory +//$a->config['system']['block_local_dir'] = false; + diff --git a/mod/directory.php b/mod/directory.php index 7fab53b680..81f3c52c7c 100644 --- a/mod/directory.php +++ b/mod/directory.php @@ -29,7 +29,7 @@ function directory_content(&$a) { require_once("mod/proxy.php"); - if((get_config('system','block_public')) && (! local_user()) && (! remote_user())) { + if((get_config('system','block_public')) && (! local_user()) && (! remote_user()) || (get_config('system','block_local_dir'))) { notice( t('Public access denied.') . EOL); return; } From 3e0635992fbf66593fceb428162d27dc2124c613 Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Fri, 29 May 2015 04:05:41 +0200 Subject: [PATCH 160/306] change the conditions --- mod/directory.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mod/directory.php b/mod/directory.php index 81f3c52c7c..b13e17627a 100644 --- a/mod/directory.php +++ b/mod/directory.php @@ -29,7 +29,8 @@ function directory_content(&$a) { require_once("mod/proxy.php"); - if((get_config('system','block_public')) && (! local_user()) && (! remote_user()) || (get_config('system','block_local_dir'))) { + if((get_config('system','block_public')) && (! local_user()) && (! remote_user()) || + (get_config('system','block_local_dir')) && (! local_user()) && (! remote_user())) { notice( t('Public access denied.') . EOL); return; } From ffefc512d3c09c8851cd5f440f2999835f83f3d9 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Fri, 29 May 2015 08:46:40 +0200 Subject: [PATCH 161/306] DE update to the strings --- view/de/messages.po | 336 +++++++++++++++++++++++--------------------- view/de/strings.php | 14 +- 2 files changed, 180 insertions(+), 170 deletions(-) diff --git a/view/de/messages.po b/view/de/messages.po index 45a754c5d3..ca4b4cbb19 100644 --- a/view/de/messages.po +++ b/view/de/messages.po @@ -30,8 +30,8 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-05-21 10:43+0200\n" -"PO-Revision-Date: 2015-05-22 14:55+0000\n" +"POT-Creation-Date: 2015-05-24 10:38+0200\n" +"PO-Revision-Date: 2015-05-29 06:44+0000\n" "Last-Translator: bavatar \n" "Language-Team: German (http://www.transifex.com/projects/p/friendica/language/de/)\n" "MIME-Version: 1.0\n" @@ -51,9 +51,9 @@ msgstr "" #: ../../mod/photos.php:1084 ../../mod/photos.php:1203 #: ../../mod/photos.php:1514 ../../mod/photos.php:1565 #: ../../mod/photos.php:1609 ../../mod/photos.php:1697 -#: ../../mod/invite.php:140 ../../mod/events.php:491 ../../mod/mood.php:137 +#: ../../mod/invite.php:140 ../../mod/events.php:500 ../../mod/mood.php:137 #: ../../mod/message.php:335 ../../mod/message.php:564 -#: ../../mod/profiles.php:686 ../../mod/install.php:248 +#: ../../mod/profiles.php:682 ../../mod/install.php:248 #: ../../mod/install.php:286 ../../mod/crepair.php:190 #: ../../mod/content.php:710 ../../mod/poke.php:199 ../../mod/localtime.php:45 msgid "Submit" @@ -255,7 +255,7 @@ msgid "Your photos" msgstr "Deine Fotos" #: ../../view/theme/diabook/theme.php:127 ../../boot.php:2156 -#: ../../include/nav.php:80 ../../mod/events.php:382 +#: ../../include/nav.php:80 ../../mod/events.php:385 msgid "Events" msgstr "Veranstaltungen" @@ -282,7 +282,7 @@ msgid "event" msgstr "Veranstaltung" #: ../../view/theme/diabook/theme.php:466 -#: ../../view/theme/diabook/theme.php:475 ../../include/diaspora.php:2060 +#: ../../view/theme/diabook/theme.php:475 ../../include/diaspora.php:2061 #: ../../include/conversation.php:121 ../../include/conversation.php:130 #: ../../include/conversation.php:248 ../../include/conversation.php:257 #: ../../mod/like.php:149 ../../mod/like.php:319 ../../mod/subthread.php:87 @@ -290,14 +290,14 @@ msgstr "Veranstaltung" msgid "status" msgstr "Status" -#: ../../view/theme/diabook/theme.php:471 ../../include/diaspora.php:2060 +#: ../../view/theme/diabook/theme.php:471 ../../include/diaspora.php:2061 #: ../../include/conversation.php:126 ../../include/conversation.php:253 #: ../../include/text.php:1995 ../../mod/like.php:149 #: ../../mod/subthread.php:87 ../../mod/tagger.php:62 msgid "photo" msgstr "Foto" -#: ../../view/theme/diabook/theme.php:480 ../../include/diaspora.php:2076 +#: ../../view/theme/diabook/theme.php:480 ../../include/diaspora.php:2077 #: ../../include/conversation.php:137 ../../mod/like.php:166 #, php-format msgid "%1$s likes %2$s's %3$s" @@ -397,7 +397,7 @@ msgstr "Seite nicht gefunden." msgid "Permission denied" msgstr "Zugriff verweigert" -#: ../../index.php:382 ../../include/items.php:4838 ../../mod/attach.php:33 +#: ../../index.php:382 ../../include/items.php:4851 ../../mod/attach.php:33 #: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33 #: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103 #: ../../mod/group.php:19 ../../mod/delegate.php:12 @@ -411,9 +411,9 @@ msgstr "Zugriff verweigert" #: ../../mod/notes.php:20 ../../mod/network.php:4 ../../mod/photos.php:134 #: ../../mod/photos.php:1050 ../../mod/follow.php:9 ../../mod/follow.php:39 #: ../../mod/follow.php:78 ../../mod/uimport.php:23 ../../mod/invite.php:15 -#: ../../mod/invite.php:101 ../../mod/events.php:152 ../../mod/mood.php:114 +#: ../../mod/invite.php:101 ../../mod/events.php:155 ../../mod/mood.php:114 #: ../../mod/message.php:38 ../../mod/message.php:174 -#: ../../mod/profiles.php:165 ../../mod/profiles.php:618 +#: ../../mod/profiles.php:165 ../../mod/profiles.php:614 #: ../../mod/install.php:151 ../../mod/crepair.php:119 ../../mod/poke.php:135 #: ../../mod/display.php:501 ../../mod/dfrn_confirm.php:55 #: ../../mod/item.php:169 ../../mod/item.php:185 @@ -437,8 +437,9 @@ msgstr "Diesen Beitrag löschen?" msgid "Comment" msgstr "Kommentar" -#: ../../boot.php:751 ../../include/contact_widgets.php:205 -#: ../../object/Item.php:393 ../../mod/content.php:606 +#: ../../boot.php:751 ../../include/items.php:4962 +#: ../../include/contact_widgets.php:205 ../../object/Item.php:393 +#: ../../mod/content.php:606 msgid "show more" msgstr "mehr anzeigen" @@ -537,28 +538,28 @@ msgstr "Profile" msgid "Manage/edit profiles" msgstr "Profile verwalten/editieren" -#: ../../boot.php:1600 ../../boot.php:1626 ../../mod/profiles.php:804 +#: ../../boot.php:1600 ../../boot.php:1626 ../../mod/profiles.php:800 msgid "Change profile photo" msgstr "Profilbild ändern" -#: ../../boot.php:1601 ../../mod/profiles.php:805 +#: ../../boot.php:1601 ../../mod/profiles.php:801 msgid "Create New Profile" msgstr "Neues Profil anlegen" -#: ../../boot.php:1611 ../../mod/profiles.php:816 +#: ../../boot.php:1611 ../../mod/profiles.php:812 msgid "Profile Image" msgstr "Profilbild" -#: ../../boot.php:1614 ../../mod/profiles.php:818 +#: ../../boot.php:1614 ../../mod/profiles.php:814 msgid "visible to everybody" msgstr "sichtbar für jeden" -#: ../../boot.php:1615 ../../mod/profiles.php:819 +#: ../../boot.php:1615 ../../mod/profiles.php:815 msgid "Edit visibility" msgstr "Sichtbarkeit bearbeiten" #: ../../boot.php:1637 ../../include/event.php:42 -#: ../../include/bb2diaspora.php:155 ../../mod/events.php:483 +#: ../../include/bb2diaspora.php:155 ../../mod/events.php:492 #: ../../mod/directory.php:136 msgid "Location:" msgstr "Ort:" @@ -825,12 +826,12 @@ msgstr "Benachrichtigungen für Beiträge Stumm schalten" msgid "Ability to mute notifications for a thread" msgstr "Möglichkeit Benachrichtigungen für einen Thread abbestellen zu können" -#: ../../include/items.php:2330 ../../include/datetime.php:477 +#: ../../include/items.php:2330 ../../include/datetime.php:457 #, php-format msgid "%s's birthday" msgstr "%ss Geburtstag" -#: ../../include/items.php:2331 ../../include/datetime.php:478 +#: ../../include/items.php:2331 ../../include/datetime.php:458 #, php-format msgid "Happy Birthday %s" msgstr "Herzlichen Glückwunsch %s" @@ -861,21 +862,22 @@ msgstr "Möchtest Du wirklich dieses Item löschen?" #: ../../mod/contacts.php:411 ../../mod/register.php:233 #: ../../mod/dfrn_request.php:845 ../../mod/api.php:105 #: ../../mod/suggest.php:29 ../../mod/follow.php:54 ../../mod/message.php:209 -#: ../../mod/profiles.php:661 ../../mod/profiles.php:664 +#: ../../mod/profiles.php:657 ../../mod/profiles.php:660 msgid "Yes" msgstr "Ja" #: ../../include/items.php:4686 ../../include/conversation.php:1128 #: ../../mod/settings.php:622 ../../mod/settings.php:648 -#: ../../mod/contacts.php:414 ../../mod/editpost.php:148 -#: ../../mod/dfrn_request.php:859 ../../mod/fbrowser.php:81 -#: ../../mod/fbrowser.php:116 ../../mod/suggest.php:32 -#: ../../mod/photos.php:203 ../../mod/photos.php:292 ../../mod/follow.php:65 -#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/message.php:212 +#: ../../mod/contacts.php:414 ../../mod/videos.php:116 +#: ../../mod/editpost.php:148 ../../mod/dfrn_request.php:859 +#: ../../mod/fbrowser.php:81 ../../mod/fbrowser.php:116 +#: ../../mod/suggest.php:32 ../../mod/photos.php:203 ../../mod/photos.php:292 +#: ../../mod/follow.php:65 ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 +#: ../../mod/message.php:212 msgid "Cancel" msgstr "Abbrechen" -#: ../../include/items.php:4904 +#: ../../include/items.php:4956 msgid "Archives" msgstr "Archiv" @@ -1371,11 +1373,11 @@ msgstr "Alter:" msgid "for %1$d %2$s" msgstr "für %1$d %2$s" -#: ../../include/profile_advanced.php:46 ../../mod/profiles.php:714 +#: ../../include/profile_advanced.php:46 ../../mod/profiles.php:710 msgid "Sexual Preference:" msgstr "Sexuelle Vorlieben:" -#: ../../include/profile_advanced.php:50 ../../mod/profiles.php:716 +#: ../../include/profile_advanced.php:50 ../../mod/profiles.php:712 msgid "Hometown:" msgstr "Heimatort:" @@ -1383,7 +1385,7 @@ msgstr "Heimatort:" msgid "Tags:" msgstr "Tags" -#: ../../include/profile_advanced.php:54 ../../mod/profiles.php:717 +#: ../../include/profile_advanced.php:54 ../../mod/profiles.php:713 msgid "Political Views:" msgstr "Politische Ansichten:" @@ -1395,11 +1397,11 @@ msgstr "Religion:" msgid "Hobbies/Interests:" msgstr "Hobbies/Interessen:" -#: ../../include/profile_advanced.php:62 ../../mod/profiles.php:721 +#: ../../include/profile_advanced.php:62 ../../mod/profiles.php:717 msgid "Likes:" msgstr "Likes:" -#: ../../include/profile_advanced.php:64 ../../mod/profiles.php:722 +#: ../../include/profile_advanced.php:64 ../../mod/profiles.php:718 msgid "Dislikes:" msgstr "Dislikes:" @@ -1804,71 +1806,75 @@ msgstr "Es sind Fehler beim Bearbeiten der Datenbank aufgetreten." msgid "Miscellaneous" msgstr "Verschiedenes" -#: ../../include/datetime.php:153 ../../include/datetime.php:290 -msgid "year" -msgstr "Jahr" +#: ../../include/datetime.php:141 +msgid "YYYY-MM-DD or MM-DD" +msgstr "YYYY-MM-DD oder MM-DD" -#: ../../include/datetime.php:158 ../../include/datetime.php:291 -msgid "month" -msgstr "Monat" - -#: ../../include/datetime.php:163 ../../include/datetime.php:293 -msgid "day" -msgstr "Tag" - -#: ../../include/datetime.php:276 +#: ../../include/datetime.php:256 msgid "never" msgstr "nie" -#: ../../include/datetime.php:282 +#: ../../include/datetime.php:262 msgid "less than a second ago" msgstr "vor weniger als einer Sekunde" -#: ../../include/datetime.php:290 +#: ../../include/datetime.php:270 +msgid "year" +msgstr "Jahr" + +#: ../../include/datetime.php:270 msgid "years" msgstr "Jahre" -#: ../../include/datetime.php:291 +#: ../../include/datetime.php:271 +msgid "month" +msgstr "Monat" + +#: ../../include/datetime.php:271 msgid "months" msgstr "Monate" -#: ../../include/datetime.php:292 +#: ../../include/datetime.php:272 msgid "week" msgstr "Woche" -#: ../../include/datetime.php:292 +#: ../../include/datetime.php:272 msgid "weeks" msgstr "Wochen" -#: ../../include/datetime.php:293 +#: ../../include/datetime.php:273 +msgid "day" +msgstr "Tag" + +#: ../../include/datetime.php:273 msgid "days" msgstr "Tage" -#: ../../include/datetime.php:294 +#: ../../include/datetime.php:274 msgid "hour" msgstr "Stunde" -#: ../../include/datetime.php:294 +#: ../../include/datetime.php:274 msgid "hours" msgstr "Stunden" -#: ../../include/datetime.php:295 +#: ../../include/datetime.php:275 msgid "minute" msgstr "Minute" -#: ../../include/datetime.php:295 +#: ../../include/datetime.php:275 msgid "minutes" msgstr "Minuten" -#: ../../include/datetime.php:296 +#: ../../include/datetime.php:276 msgid "second" msgstr "Sekunde" -#: ../../include/datetime.php:296 +#: ../../include/datetime.php:276 msgid "seconds" msgstr "Sekunden" -#: ../../include/datetime.php:305 +#: ../../include/datetime.php:285 #, php-format msgid "%1$d %2$s ago" msgstr "%1$d %2$s her" @@ -2007,7 +2013,7 @@ msgstr "%1$s ist nun mit %2$s befreundet" msgid "Sharing notification from Diaspora network" msgstr "Freigabe-Benachrichtigung von Diaspora" -#: ../../include/diaspora.php:2493 +#: ../../include/diaspora.php:2494 msgid "Attachments:" msgstr "Anhänge:" @@ -2282,7 +2288,7 @@ msgstr "Z.B.: bob@example.com, mary@example.com" #: ../../include/conversation.php:1125 ../../object/Item.php:690 #: ../../mod/editpost.php:145 ../../mod/photos.php:1566 #: ../../mod/photos.php:1610 ../../mod/photos.php:1698 -#: ../../mod/events.php:489 ../../mod/content.php:719 +#: ../../mod/events.php:498 ../../mod/content.php:719 msgid "Preview" msgstr "Vorschau" @@ -2554,7 +2560,7 @@ msgstr "November" msgid "December" msgstr "Dezember" -#: ../../include/text.php:1424 ../../mod/videos.php:301 +#: ../../include/text.php:1424 ../../mod/videos.php:368 msgid "View Video" msgstr "Video ansehen" @@ -2567,7 +2573,7 @@ msgid "Click to open/close" msgstr "Zum öffnen/schließen klicken" #: ../../include/text.php:1674 ../../include/text.php:1684 -#: ../../mod/events.php:347 +#: ../../mod/events.php:350 msgid "link to source" msgstr "Link zum Originalbeitrag" @@ -3885,8 +3891,8 @@ msgstr "Darf Dein Standardprofil im Verzeichnis dieses Servers veröffentlicht w #: ../../mod/settings.php:1108 ../../mod/settings.php:1109 #: ../../mod/settings.php:1110 ../../mod/register.php:234 #: ../../mod/dfrn_request.php:845 ../../mod/api.php:106 -#: ../../mod/follow.php:54 ../../mod/profiles.php:661 -#: ../../mod/profiles.php:665 +#: ../../mod/follow.php:54 ../../mod/profiles.php:657 +#: ../../mod/profiles.php:661 msgid "No" msgstr "Nein" @@ -4661,30 +4667,38 @@ msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt." msgid "Tips for New Members" msgstr "Tipps für neue Nutzer" -#: ../../mod/videos.php:115 ../../mod/dfrn_request.php:777 +#: ../../mod/videos.php:108 +msgid "Do you really want to delete this video?" +msgstr "Möchtest Du dieses Video wirklich löschen?" + +#: ../../mod/videos.php:113 +msgid "Delete Video" +msgstr "Video Löschen" + +#: ../../mod/videos.php:182 ../../mod/dfrn_request.php:777 #: ../../mod/viewcontacts.php:19 ../../mod/photos.php:920 #: ../../mod/search.php:89 ../../mod/community.php:18 #: ../../mod/display.php:214 ../../mod/directory.php:33 msgid "Public access denied." msgstr "Öffentlicher Zugriff verweigert." -#: ../../mod/videos.php:125 +#: ../../mod/videos.php:192 msgid "No videos selected" msgstr "Keine Videos ausgewählt" -#: ../../mod/videos.php:226 ../../mod/photos.php:1031 +#: ../../mod/videos.php:293 ../../mod/photos.php:1031 msgid "Access to this item is restricted." msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt." -#: ../../mod/videos.php:308 ../../mod/photos.php:1808 +#: ../../mod/videos.php:375 ../../mod/photos.php:1808 msgid "View Album" msgstr "Album betrachten" -#: ../../mod/videos.php:317 +#: ../../mod/videos.php:384 msgid "Recent Videos" msgstr "Neueste Videos" -#: ../../mod/videos.php:319 +#: ../../mod/videos.php:386 msgid "Upload New Videos" msgstr "Neues Video hochladen" @@ -6653,72 +6667,67 @@ msgstr "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schl msgid "is interested in:" msgstr "ist interessiert an:" -#: ../../mod/events.php:68 ../../mod/events.php:70 +#: ../../mod/events.php:71 ../../mod/events.php:73 msgid "Event title and start time are required." msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden." -#: ../../mod/events.php:303 +#: ../../mod/events.php:306 msgid "l, F j" msgstr "l, F j" -#: ../../mod/events.php:325 +#: ../../mod/events.php:328 msgid "Edit event" msgstr "Veranstaltung bearbeiten" -#: ../../mod/events.php:383 +#: ../../mod/events.php:386 msgid "Create New Event" msgstr "Neue Veranstaltung erstellen" -#: ../../mod/events.php:384 +#: ../../mod/events.php:387 msgid "Previous" msgstr "Vorherige" -#: ../../mod/events.php:385 ../../mod/install.php:207 +#: ../../mod/events.php:388 ../../mod/install.php:207 msgid "Next" msgstr "Nächste" -#: ../../mod/events.php:458 -msgid "hour:minute" -msgstr "Stunde:Minute" - -#: ../../mod/events.php:468 +#: ../../mod/events.php:480 msgid "Event details" msgstr "Veranstaltungsdetails" -#: ../../mod/events.php:469 -#, php-format -msgid "Format is %s %s. Starting date and Title are required." -msgstr "Das Format ist %s %s. Beginnzeitpunkt und Titel werden benötigt." +#: ../../mod/events.php:481 +msgid "Starting date and Title are required." +msgstr "Anfangszeitpunkt und Titel werden benötigt" -#: ../../mod/events.php:471 +#: ../../mod/events.php:482 msgid "Event Starts:" msgstr "Veranstaltungsbeginn:" -#: ../../mod/events.php:471 ../../mod/events.php:485 +#: ../../mod/events.php:482 ../../mod/events.php:494 msgid "Required" msgstr "Benötigt" -#: ../../mod/events.php:474 +#: ../../mod/events.php:484 msgid "Finish date/time is not known or not relevant" msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant" -#: ../../mod/events.php:476 +#: ../../mod/events.php:486 msgid "Event Finishes:" msgstr "Veranstaltungsende:" -#: ../../mod/events.php:479 +#: ../../mod/events.php:488 msgid "Adjust for viewer timezone" msgstr "An Zeitzone des Betrachters anpassen" -#: ../../mod/events.php:481 +#: ../../mod/events.php:490 msgid "Description:" msgstr "Beschreibung" -#: ../../mod/events.php:485 +#: ../../mod/events.php:494 msgid "Title:" msgstr "Titel:" -#: ../../mod/events.php:487 +#: ../../mod/events.php:496 msgid "Share this event" msgstr "Veranstaltung teilen" @@ -6853,7 +6862,7 @@ msgid "Not available." msgstr "Nicht verfügbar." #: ../../mod/profiles.php:18 ../../mod/profiles.php:133 -#: ../../mod/profiles.php:179 ../../mod/profiles.php:630 +#: ../../mod/profiles.php:179 ../../mod/profiles.php:626 #: ../../mod/dfrn_confirm.php:64 msgid "Profile not found." msgstr "Profil nicht gefunden." @@ -6878,278 +6887,277 @@ msgstr "Profil nicht zum Duplizieren verfügbar." msgid "Profile Name is required." msgstr "Profilname ist erforderlich." -#: ../../mod/profiles.php:340 +#: ../../mod/profiles.php:336 msgid "Marital Status" msgstr "Familienstand" -#: ../../mod/profiles.php:344 +#: ../../mod/profiles.php:340 msgid "Romantic Partner" msgstr "Romanze" -#: ../../mod/profiles.php:348 +#: ../../mod/profiles.php:344 msgid "Likes" msgstr "Likes" -#: ../../mod/profiles.php:352 +#: ../../mod/profiles.php:348 msgid "Dislikes" msgstr "Dislikes" -#: ../../mod/profiles.php:356 +#: ../../mod/profiles.php:352 msgid "Work/Employment" msgstr "Arbeit / Beschäftigung" -#: ../../mod/profiles.php:359 +#: ../../mod/profiles.php:355 msgid "Religion" msgstr "Religion" -#: ../../mod/profiles.php:363 +#: ../../mod/profiles.php:359 msgid "Political Views" msgstr "Politische Ansichten" -#: ../../mod/profiles.php:367 +#: ../../mod/profiles.php:363 msgid "Gender" msgstr "Geschlecht" -#: ../../mod/profiles.php:371 +#: ../../mod/profiles.php:367 msgid "Sexual Preference" msgstr "Sexuelle Vorlieben" -#: ../../mod/profiles.php:375 +#: ../../mod/profiles.php:371 msgid "Homepage" msgstr "Webseite" -#: ../../mod/profiles.php:379 ../../mod/profiles.php:698 +#: ../../mod/profiles.php:375 ../../mod/profiles.php:694 msgid "Interests" msgstr "Interessen" -#: ../../mod/profiles.php:383 +#: ../../mod/profiles.php:379 msgid "Address" msgstr "Adresse" -#: ../../mod/profiles.php:390 ../../mod/profiles.php:694 +#: ../../mod/profiles.php:386 ../../mod/profiles.php:690 msgid "Location" msgstr "Wohnort" -#: ../../mod/profiles.php:473 +#: ../../mod/profiles.php:469 msgid "Profile updated." msgstr "Profil aktualisiert." -#: ../../mod/profiles.php:568 +#: ../../mod/profiles.php:564 msgid " and " msgstr " und " -#: ../../mod/profiles.php:576 +#: ../../mod/profiles.php:572 msgid "public profile" msgstr "öffentliches Profil" -#: ../../mod/profiles.php:579 +#: ../../mod/profiles.php:575 #, php-format msgid "%1$s changed %2$s to “%3$s”" msgstr "%1$s hat %2$s geändert auf “%3$s”" -#: ../../mod/profiles.php:580 +#: ../../mod/profiles.php:576 #, php-format msgid " - Visit %1$s's %2$s" msgstr " – %1$ss %2$s besuchen" -#: ../../mod/profiles.php:583 +#: ../../mod/profiles.php:579 #, 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:658 +#: ../../mod/profiles.php:654 msgid "Hide contacts and friends:" msgstr "Kontakte und Freunde verbergen" -#: ../../mod/profiles.php:663 +#: ../../mod/profiles.php:659 msgid "Hide your contact/friend list from viewers of this profile?" msgstr "Liste der Kontakte vor Betrachtern dieses Profils verbergen?" -#: ../../mod/profiles.php:685 +#: ../../mod/profiles.php:681 msgid "Edit Profile Details" msgstr "Profil bearbeiten" -#: ../../mod/profiles.php:687 +#: ../../mod/profiles.php:683 msgid "Change Profile Photo" msgstr "Profilbild ändern" -#: ../../mod/profiles.php:688 +#: ../../mod/profiles.php:684 msgid "View this profile" msgstr "Dieses Profil anzeigen" -#: ../../mod/profiles.php:689 +#: ../../mod/profiles.php:685 msgid "Create a new profile using these settings" msgstr "Neues Profil anlegen und diese Einstellungen verwenden" -#: ../../mod/profiles.php:690 +#: ../../mod/profiles.php:686 msgid "Clone this profile" msgstr "Dieses Profil duplizieren" -#: ../../mod/profiles.php:691 +#: ../../mod/profiles.php:687 msgid "Delete this profile" msgstr "Dieses Profil löschen" -#: ../../mod/profiles.php:692 +#: ../../mod/profiles.php:688 msgid "Basic information" msgstr "Grundinformationen" -#: ../../mod/profiles.php:693 +#: ../../mod/profiles.php:689 msgid "Profile picture" msgstr "Profilbild" -#: ../../mod/profiles.php:695 +#: ../../mod/profiles.php:691 msgid "Preferences" msgstr "Vorlieben" -#: ../../mod/profiles.php:696 +#: ../../mod/profiles.php:692 msgid "Status information" msgstr "Status Informationen" -#: ../../mod/profiles.php:697 +#: ../../mod/profiles.php:693 msgid "Additional information" msgstr "Zusätzliche Informationen" -#: ../../mod/profiles.php:699 ../../mod/newmember.php:36 +#: ../../mod/profiles.php:695 ../../mod/newmember.php:36 #: ../../mod/profile_photo.php:244 msgid "Upload Profile Photo" msgstr "Profilbild hochladen" -#: ../../mod/profiles.php:700 +#: ../../mod/profiles.php:696 msgid "Profile Name:" msgstr "Profilname:" -#: ../../mod/profiles.php:701 +#: ../../mod/profiles.php:697 msgid "Your Full Name:" msgstr "Dein kompletter Name:" -#: ../../mod/profiles.php:702 +#: ../../mod/profiles.php:698 msgid "Title/Description:" msgstr "Titel/Beschreibung:" -#: ../../mod/profiles.php:703 +#: ../../mod/profiles.php:699 msgid "Your Gender:" msgstr "Dein Geschlecht:" -#: ../../mod/profiles.php:704 -#, php-format -msgid "Birthday (%s):" -msgstr "Geburtstag (%s):" +#: ../../mod/profiles.php:700 +msgid "Birthday :" +msgstr "Geburtstag :" -#: ../../mod/profiles.php:705 +#: ../../mod/profiles.php:701 msgid "Street Address:" msgstr "Adresse:" -#: ../../mod/profiles.php:706 +#: ../../mod/profiles.php:702 msgid "Locality/City:" msgstr "Wohnort:" -#: ../../mod/profiles.php:707 +#: ../../mod/profiles.php:703 msgid "Postal/Zip Code:" msgstr "Postleitzahl:" -#: ../../mod/profiles.php:708 +#: ../../mod/profiles.php:704 msgid "Country:" msgstr "Land:" -#: ../../mod/profiles.php:709 +#: ../../mod/profiles.php:705 msgid "Region/State:" msgstr "Region/Bundesstaat:" -#: ../../mod/profiles.php:710 +#: ../../mod/profiles.php:706 msgid " Marital Status:" msgstr " Beziehungsstatus:" -#: ../../mod/profiles.php:711 +#: ../../mod/profiles.php:707 msgid "Who: (if applicable)" msgstr "Wer: (falls anwendbar)" -#: ../../mod/profiles.php:712 +#: ../../mod/profiles.php:708 msgid "Examples: cathy123, Cathy Williams, cathy@example.com" msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com" -#: ../../mod/profiles.php:713 +#: ../../mod/profiles.php:709 msgid "Since [date]:" msgstr "Seit [Datum]:" -#: ../../mod/profiles.php:715 +#: ../../mod/profiles.php:711 msgid "Homepage URL:" msgstr "Adresse der Homepage:" -#: ../../mod/profiles.php:718 +#: ../../mod/profiles.php:714 msgid "Religious Views:" msgstr "Religiöse Ansichten:" -#: ../../mod/profiles.php:719 +#: ../../mod/profiles.php:715 msgid "Public Keywords:" msgstr "Öffentliche Schlüsselwörter:" -#: ../../mod/profiles.php:720 +#: ../../mod/profiles.php:716 msgid "Private Keywords:" msgstr "Private Schlüsselwörter:" -#: ../../mod/profiles.php:723 +#: ../../mod/profiles.php:719 msgid "Example: fishing photography software" msgstr "Beispiel: Fischen Fotografie Software" -#: ../../mod/profiles.php:724 +#: ../../mod/profiles.php:720 msgid "(Used for suggesting potential friends, can be seen by others)" msgstr "(Wird verwendet, um potentielle Freunde zu finden, kann von Fremden eingesehen werden)" -#: ../../mod/profiles.php:725 +#: ../../mod/profiles.php:721 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:726 +#: ../../mod/profiles.php:722 msgid "Tell us about yourself..." msgstr "Erzähle uns ein bisschen von Dir …" -#: ../../mod/profiles.php:727 +#: ../../mod/profiles.php:723 msgid "Hobbies/Interests" msgstr "Hobbies/Interessen" -#: ../../mod/profiles.php:728 +#: ../../mod/profiles.php:724 msgid "Contact information and Social Networks" msgstr "Kontaktinformationen und Soziale Netzwerke" -#: ../../mod/profiles.php:729 +#: ../../mod/profiles.php:725 msgid "Musical interests" msgstr "Musikalische Interessen" -#: ../../mod/profiles.php:730 +#: ../../mod/profiles.php:726 msgid "Books, literature" msgstr "Bücher, Literatur" -#: ../../mod/profiles.php:731 +#: ../../mod/profiles.php:727 msgid "Television" msgstr "Fernsehen" -#: ../../mod/profiles.php:732 +#: ../../mod/profiles.php:728 msgid "Film/dance/culture/entertainment" msgstr "Filme/Tänze/Kultur/Unterhaltung" -#: ../../mod/profiles.php:733 +#: ../../mod/profiles.php:729 msgid "Love/romance" msgstr "Liebe/Romantik" -#: ../../mod/profiles.php:734 +#: ../../mod/profiles.php:730 msgid "Work/employment" msgstr "Arbeit/Anstellung" -#: ../../mod/profiles.php:735 +#: ../../mod/profiles.php:731 msgid "School/education" msgstr "Schule/Ausbildung" -#: ../../mod/profiles.php:740 +#: ../../mod/profiles.php:736 msgid "" "This is your public profile.
    It may " "be visible to anybody using the internet." msgstr "Dies ist Dein öffentliches Profil.
    Es könnte für jeden Nutzer des Internets sichtbar sein." -#: ../../mod/profiles.php:750 ../../mod/directory.php:113 +#: ../../mod/profiles.php:746 ../../mod/directory.php:113 msgid "Age: " msgstr "Alter: " -#: ../../mod/profiles.php:803 +#: ../../mod/profiles.php:799 msgid "Edit/Manage Profiles" msgstr "Bearbeite/Verwalte Profile" diff --git a/view/de/strings.php b/view/de/strings.php index c243ff5669..e0f1a9f89c 100644 --- a/view/de/strings.php +++ b/view/de/strings.php @@ -394,15 +394,16 @@ $a->strings["The error message is\n[pre]%s[/pre]"] = "Die Fehlermeldung lautet\n $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["Miscellaneous"] = "Verschiedenes"; -$a->strings["year"] = "Jahr"; -$a->strings["month"] = "Monat"; -$a->strings["day"] = "Tag"; +$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"; @@ -1067,6 +1068,8 @@ $a->strings["Post successful."] = "Beitrag erfolgreich veröffentlicht."; $a->strings["System down for maintenance"] = "System zur Wartung abgeschaltet"; $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["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["Public access denied."] = "Öffentlicher Zugriff verweigert."; $a->strings["No videos selected"] = "Keine Videos ausgewählt"; $a->strings["Access to this item is restricted."] = "Zugriff zu diesem Eintrag wurde eingeschränkt."; @@ -1521,9 +1524,8 @@ $a->strings["Edit event"] = "Veranstaltung bearbeiten"; $a->strings["Create New Event"] = "Neue Veranstaltung erstellen"; $a->strings["Previous"] = "Vorherige"; $a->strings["Next"] = "Nächste"; -$a->strings["hour:minute"] = "Stunde:Minute"; $a->strings["Event details"] = "Veranstaltungsdetails"; -$a->strings["Format is %s %s. Starting date and Title are required."] = "Das Format ist %s %s. Beginnzeitpunkt und Titel werden benötigt."; +$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"; @@ -1607,7 +1609,7 @@ $a->strings["Profile Name:"] = "Profilname:"; $a->strings["Your Full Name:"] = "Dein kompletter Name:"; $a->strings["Title/Description:"] = "Titel/Beschreibung:"; $a->strings["Your Gender:"] = "Dein Geschlecht:"; -$a->strings["Birthday (%s):"] = "Geburtstag (%s):"; +$a->strings["Birthday :"] = "Geburtstag :"; $a->strings["Street Address:"] = "Adresse:"; $a->strings["Locality/City:"] = "Wohnort:"; $a->strings["Postal/Zip Code:"] = "Postleitzahl:"; From b763c810fb02ba322e9232bfd23da3a04ecd271e Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Fri, 29 May 2015 10:35:13 +0200 Subject: [PATCH 162/306] OStatus: Trying to deliver a comment to all contacts - not only the thread owner. (Not working by now) --- include/delivery.php | 47 ++++++++++++++++++++++---------------------- include/notifier.php | 32 ++++++++++++++++++++---------- include/salmon.php | 2 +- include/text.php | 8 +++++++- 4 files changed, 54 insertions(+), 35 deletions(-) diff --git a/include/delivery.php b/include/delivery.php index a913e13170..e3e477bf64 100644 --- a/include/delivery.php +++ b/include/delivery.php @@ -88,25 +88,23 @@ function delivery_run(&$argv, &$argc){ if($cmd === 'expire') { $normal_mode = false; $expire = true; - $items = q("SELECT * FROM `item` WHERE `uid` = %d AND `wall` = 1 + $items = q("SELECT * FROM `item` WHERE `uid` = %d AND `wall` = 1 AND `deleted` = 1 AND `changed` > UTC_TIMESTAMP() - INTERVAL 30 MINUTE", intval($item_id) ); $uid = $item_id; $item_id = 0; if(! count($items)) - continue; + continue; } else { - // find ancestors $r = q("SELECT * FROM `item` WHERE `id` = %d and visible = 1 and moderated = 0 LIMIT 1", intval($item_id) ); - if((! count($r)) || (! intval($r[0]['parent']))) { + if((! count($r)) || (! intval($r[0]['parent']))) continue; - } $target_item = $r[0]; $parent_id = intval($r[0]['parent']); @@ -118,14 +116,13 @@ function delivery_run(&$argv, &$argc){ continue; - $items = q("SELECT `item`.*, `sign`.`signed_text`,`sign`.`signature`,`sign`.`signer` + $items = q("SELECT `item`.*, `sign`.`signed_text`,`sign`.`signature`,`sign`.`signer` FROM `item` LEFT JOIN `sign` ON `sign`.`iid` = `item`.`id` WHERE `parent` = %d and visible = 1 and moderated = 0 ORDER BY `id` ASC", intval($parent_id) ); - if(! count($items)) { + if(! count($items)) continue; - } $icontacts = null; $contacts_arr = array(); @@ -133,8 +130,8 @@ function delivery_run(&$argv, &$argc){ if(! in_array($item['contact-id'],$contacts_arr)) $contacts_arr[] = intval($item['contact-id']); if(count($contacts_arr)) { - $str_contacts = implode(',',$contacts_arr); - $icontacts = q("SELECT * FROM `contact` + $str_contacts = implode(',',$contacts_arr); + $icontacts = q("SELECT * FROM `contact` WHERE `id` IN ( $str_contacts ) " ); } @@ -154,10 +151,10 @@ function delivery_run(&$argv, &$argc){ } } - $r = q("SELECT `contact`.*, `user`.`pubkey` AS `upubkey`, `user`.`prvkey` AS `uprvkey`, - `user`.`timezone`, `user`.`nickname`, `user`.`sprvkey`, `user`.`spubkey`, + $r = q("SELECT `contact`.*, `user`.`pubkey` AS `upubkey`, `user`.`prvkey` AS `uprvkey`, + `user`.`timezone`, `user`.`nickname`, `user`.`sprvkey`, `user`.`spubkey`, `user`.`page-flags`, `user`.`prvnets` - FROM `contact` INNER JOIN `user` ON `user`.`uid` = `contact`.`uid` + FROM `contact` INNER JOIN `user` ON `user`.`uid` = `contact`.`uid` WHERE `contact`.`uid` = %d AND `contact`.`self` = 1 LIMIT 1", intval($uid) ); @@ -201,6 +198,13 @@ function delivery_run(&$argv, &$argc){ if(strpos($localhost,':')) $localhost = substr($localhost,0,strpos($localhost,':')); + $r = q("SELECT * FROM `contact` WHERE `id` = %d AND `blocked` = 0 AND `pending` = 0", + intval($contact_id) + ); + + if(count($r)) + $contact = $r[0]; + /** * * Be VERY CAREFUL if you make any changes to the following line. Seemingly innocuous changes @@ -209,7 +213,7 @@ function delivery_run(&$argv, &$argc){ * */ - if((! $top_level) && ($parent['wall'] == 0) && (! $expire) && (stristr($target_item['uri'],$localhost))) { + if(!$top_level && ($parent["network"] != NETWORK_OSTATUS) && ($parent['wall'] == 0) && (! $expire) && (stristr($target_item['uri'],$localhost))) { logger('relay denied for delivery agent.'); /* no relay allowed for direct contact delivery */ @@ -223,13 +227,6 @@ function delivery_run(&$argv, &$argc){ $public_message = false; // private recipients, not public } - $r = q("SELECT * FROM `contact` WHERE `id` = %d AND `blocked` = 0 AND `pending` = 0", - intval($contact_id) - ); - - if(count($r)) - $contact = $r[0]; - $hubxml = feed_hublinks(); logger('notifier: slaps: ' . print_r($slaps,true), LOGGER_DATA); @@ -390,11 +387,15 @@ function delivery_run(&$argv, &$argc){ if(! $item_contact) continue; - if(($top_level) && ($public_message) && ($item['author-link'] === $item['owner-link']) && (! $expire)) + // For OStatus don't notify all contacts in the thread + if (!$top_level AND ($parent["network"] == NETWORK_OSTATUS) AND ($item["id"] != $item["parent"])) + continue; + + if(($top_level OR ($parent["network"] == NETWORK_OSTATUS)) && ($public_message) && ($item['author-link'] === $item['owner-link']) && (! $expire)) $slaps[] = atom_entry($item,'html',null,$owner,true); } - logger('notifier: slapdelivery: ' . $contact['name']); + logger('slapdelivery item '.$item_id.' to ' . $contact['name']); foreach($slaps as $slappy) { if($contact['notify']) { if(! was_recently_delayed($contact['id'])) diff --git a/include/notifier.php b/include/notifier.php index 067251b429..9084bcb475 100644 --- a/include/notifier.php +++ b/include/notifier.php @@ -114,7 +114,7 @@ function notifier_run(&$argv, &$argc){ elseif($cmd === 'expire') { $normal_mode = false; $expire = true; - $items = q("SELECT * FROM `item` WHERE `uid` = %d AND `wall` = 1 + $items = q("SELECT * FROM `item` WHERE `uid` = %d AND `wall` = 1 AND `deleted` = 1 AND `changed` > UTC_TIMESTAMP() - INTERVAL 10 MINUTE", intval($item_id) ); @@ -178,7 +178,7 @@ function notifier_run(&$argv, &$argc){ if(! $parent_id) return; - $items = q("SELECT `item`.*, `sign`.`signed_text`,`sign`.`signature`,`sign`.`signer` + $items = q("SELECT `item`.*, `sign`.`signed_text`,`sign`.`signature`,`sign`.`signer` FROM `item` LEFT JOIN `sign` ON `sign`.`iid` = `item`.`id` WHERE `parent` = %d and visible = 1 and moderated = 0 ORDER BY `id` ASC", intval($parent_id) ); @@ -224,6 +224,9 @@ function notifier_run(&$argv, &$argc){ // fill this in with a single salmon slap if applicable $slap = ''; + // List of OStatus receiptians of follow up messages + $ostatus_recip_str = ""; + if(! ($mail || $fsuggest || $relocate)) { require_once('include/group.php'); @@ -284,8 +287,6 @@ function notifier_run(&$argv, &$argc){ if($parent['origin']) $relay_to_owner = false; - - if($relay_to_owner) { logger('notifier: followup', LOGGER_DEBUG); // local followup to remote post @@ -295,6 +296,15 @@ function notifier_run(&$argv, &$argc){ $recipients = array($parent['contact-id']); if ($parent['network'] == NETWORK_OSTATUS) { + $ostatus_recipients = array(); + + $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `network` = '%s'", intval($uid), dbesc(NETWORK_OSTATUS)); + if(count($r)) { + foreach($r as $rr) + $ostatus_recipients[] = $rr['id']; + + $ostatus_recip_str = ", ".implode(', ', $ostatus_recipients); + } // Check if the recipient isn't in your contact list $r = q("SELECT `url` FROM `contact` WHERE `id` = %d", $parent['contact-id']); @@ -553,7 +563,7 @@ function notifier_run(&$argv, &$argc){ } if($followup) - $recip_str = $parent['contact-id']; + $recip_str = $parent['contact-id'].$ostatus_recip_str; else $recip_str = implode(', ', $recipients); @@ -574,7 +584,7 @@ function notifier_run(&$argv, &$argc){ if(count($r)) { foreach($r as $contact) { - if((! $mail) && (! $fsuggest) && (! $followup) && (!$relocate) && (! $contact['self'])) { + if((! $mail) && (! $fsuggest) && (!$followup OR ($parent['contact-id'] != $contact['id'])) && (!$relocate) && (! $contact['self'])) { if(($contact['network'] === NETWORK_DIASPORA) && ($public_message)) continue; q("insert into deliverq ( `cmd`,`item`,`contact` ) values ('%s', %d, %d )", @@ -608,10 +618,12 @@ function notifier_run(&$argv, &$argc){ if($contact['self']) continue; + logger("Deliver to ".$contact['url'], LOGGER_DEBUG); + // potentially more than one recipient. Start a new process and space them out a bit. // we will deliver single recipient types of message and email recipients here. - if((! $mail) && (! $fsuggest) && (!$relocate) && (! $followup)) { + if((! $mail) && (! $fsuggest) && (!$relocate) && (!$followup OR ($parent['contact-id'] != $contact['id']))) { $this_batch[] = $contact['id']; @@ -713,7 +725,7 @@ function notifier_run(&$argv, &$argc){ break; if($followup && $contact['notify']) { - logger('notifier: slapdelivery: ' . $contact['name']); + logger('slapdelivery followup item '.$item_id.' to ' . $contact['name']); $deliver_status = slapper($owner,$contact['notify'],$slap); if($deliver_status == (-1)) { @@ -726,7 +738,7 @@ function notifier_run(&$argv, &$argc){ // a public hub, it's ok to send a salmon if((count($slaps)) && ($public_message) && (! $expire)) { - logger('notifier: slapdelivery: ' . $contact['name']); + logger('slapdelivery item '.$item_id.' to ' . $contact['name']); foreach($slaps as $slappy) { if($contact['notify']) { $deliver_status = slapper($owner,$contact['notify'],$slappy); @@ -938,7 +950,7 @@ function notifier_run(&$argv, &$argc){ // throw everything into the queue in case we get killed foreach($r as $rr) { - if((! $mail) && (! $fsuggest) && (! $followup)) { + if((! $mail) && (! $fsuggest) && (!$followup OR ($parent['contact-id'] != $contact['id']))) { q("insert into deliverq ( `cmd`,`item`,`contact` ) values ('%s', %d, %d )", dbesc($cmd), intval($item_id), diff --git a/include/salmon.php b/include/salmon.php index 3d525f51ad..aeb14adc8c 100644 --- a/include/salmon.php +++ b/include/salmon.php @@ -66,7 +66,7 @@ function get_salmon_key($uri,$keyhash) { function slapper($owner,$url,$slap) { - logger('slapper called. Data: ' . $slap); + logger('slapper called for '.$owner['url'].' to '.$url.' . Data: ' . $slap); // does contact have a salmon endpoint? diff --git a/include/text.php b/include/text.php index 0f6c83234b..f8bbfcee24 100644 --- a/include/text.php +++ b/include/text.php @@ -835,10 +835,16 @@ function get_mentions($item) { foreach($arr as $x) { $matches = null; if(preg_match('/@\[url=([^\]]*)\]/',$x,$matches)) { - $o .= "\t\t" . '' . "\r\n"; $o .= "\t\t" . '' . "\r\n"; + $o .= "\t\t" . '' . "\r\n"; } } + + if (!$item['private']) { + $o .= "\t\t".''."\r\n"; + $o .= "\t\t".''."\r\n"; + } + return $o; }} From 5cbb5b140c62c07a512861217ee61058580d6901 Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Fri, 29 May 2015 16:08:17 +0200 Subject: [PATCH 163/306] css work --- mod/photos.php | 17 +++++++++-------- view/templates/photo_albums.tpl | 2 +- view/theme/duepuntozero/style.css | 6 ++++-- view/theme/frost/style.css | 6 ++++-- view/theme/quattro/dark/style.css | 3 ++- view/theme/quattro/green/style.css | 3 ++- view/theme/quattro/lilac/style.css | 3 ++- view/theme/quattro/quattro.less | 2 +- view/theme/smoothly/style.css | 2 ++ 9 files changed, 27 insertions(+), 17 deletions(-) diff --git a/mod/photos.php b/mod/photos.php index 1bb380696a..8ec83b622b 100644 --- a/mod/photos.php +++ b/mod/photos.php @@ -58,11 +58,11 @@ function photos_init(&$a) { $ret['albums'] = array(); foreach($albums as $k => $album) { $entry = array( - 'text' => $album['album'], - 'total' => $album['total'], - 'url' => z_root() . '/photos/' . $a->data['user']['nickname'] . '/album/' . bin2hex($album['album']), + 'text' => $album['album'], + 'total' => $album['total'], + 'url' => z_root() . '/photos/' . $a->data['user']['nickname'] . '/album/' . bin2hex($album['album']), 'urlencode' => urlencode($album['album']), - 'bin2hex' => bin2hex($album['album']) + 'bin2hex' => bin2hex($album['album']) ); $ret['albums'][] = $entry; } @@ -75,10 +75,11 @@ function photos_init(&$a) { if($albums['success']) { $photo_albums_widget = replace_macros(get_markup_template('photo_albums.tpl'),array( - '$nick' => $a->data['user']['nickname'], - '$title' => t('Photo Albums'), - '$albums' => $albums['albums'], - '$baseurl' => z_root(), + '$nick' => $a->data['user']['nickname'], + '$title' => t('Photo Albums'), + 'recent' => t('Recent Photos'), + '$albums' => $albums['albums'], + '$baseurl' => z_root(), '$upload' => array( t('Upload New Photos'), $a->get_baseurl() . '/photos/' . $a->data['user']['nickname'] . '/upload/' . bin2hex($album)), '$can_post' => $can_post )); diff --git a/view/templates/photo_albums.tpl b/view/templates/photo_albums.tpl index de8f2cd16c..02b4392957 100644 --- a/view/templates/photo_albums.tpl +++ b/view/templates/photo_albums.tpl @@ -1,7 +1,7 @@